dpdk: fix coverity
[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 dpdk_port_type_t
84 port_type_from_link_speed (u32 link_speed)
85 {
86   switch (link_speed)
87     {
88     case ETH_SPEED_NUM_1G:
89       return VNET_DPDK_PORT_TYPE_ETH_1G;
90     case ETH_SPEED_NUM_2_5G:
91       return VNET_DPDK_PORT_TYPE_ETH_2_5G;
92     case ETH_SPEED_NUM_5G:
93       return VNET_DPDK_PORT_TYPE_ETH_5G;
94     case ETH_SPEED_NUM_10G:
95       return VNET_DPDK_PORT_TYPE_ETH_10G;
96     case ETH_SPEED_NUM_20G:
97       return VNET_DPDK_PORT_TYPE_ETH_20G;
98     case ETH_SPEED_NUM_25G:
99       return VNET_DPDK_PORT_TYPE_ETH_25G;
100     case ETH_SPEED_NUM_40G:
101       return VNET_DPDK_PORT_TYPE_ETH_40G;
102     case ETH_SPEED_NUM_50G:
103       return VNET_DPDK_PORT_TYPE_ETH_50G;
104     case ETH_SPEED_NUM_56G:
105       return VNET_DPDK_PORT_TYPE_ETH_56G;
106     case ETH_SPEED_NUM_100G:
107       return VNET_DPDK_PORT_TYPE_ETH_100G;
108     default:
109       return VNET_DPDK_PORT_TYPE_UNKNOWN;
110     }
111 }
112
113 static u32
114 dpdk_flag_change (vnet_main_t * vnm, vnet_hw_interface_t * hi, u32 flags)
115 {
116   dpdk_main_t *dm = &dpdk_main;
117   dpdk_device_t *xd = vec_elt_at_index (dm->devices, hi->dev_instance);
118   u32 old = (xd->flags & DPDK_DEVICE_FLAG_PROMISC) != 0;
119
120   switch (flags)
121     {
122     case ETHERNET_INTERFACE_FLAG_DEFAULT_L3:
123       /* set to L3/non-promisc mode */
124       xd->flags &= ~DPDK_DEVICE_FLAG_PROMISC;
125       break;
126     case ETHERNET_INTERFACE_FLAG_ACCEPT_ALL:
127       xd->flags |= DPDK_DEVICE_FLAG_PROMISC;
128       break;
129     case ETHERNET_INTERFACE_FLAG_MTU:
130       xd->port_conf.rxmode.max_rx_pkt_len = hi->max_packet_bytes;
131       dpdk_device_setup (xd);
132       return 0;
133     default:
134       return ~0;
135     }
136
137   if (xd->flags & DPDK_DEVICE_FLAG_ADMIN_UP)
138     {
139       if (xd->flags & DPDK_DEVICE_FLAG_PROMISC)
140         rte_eth_promiscuous_enable (xd->port_id);
141       else
142         rte_eth_promiscuous_disable (xd->port_id);
143     }
144
145   return old;
146 }
147
148 static int
149 dpdk_port_crc_strip_enabled (dpdk_device_t * xd)
150 {
151   return !(xd->port_conf.rxmode.offloads & DEV_RX_OFFLOAD_KEEP_CRC);
152 }
153
154 /* The function check_l3cache helps check if Level 3 cache exists or not on current CPUs
155   return value 1: exist.
156   return value 0: not exist.
157 */
158 static int
159 check_l3cache ()
160 {
161
162   struct dirent *dp;
163   clib_error_t *err;
164   const char *sys_cache_dir = "/sys/devices/system/cpu/cpu0/cache";
165   DIR *dir_cache = opendir (sys_cache_dir);
166
167   if (dir_cache == NULL)
168     return -1;
169
170   while ((dp = readdir (dir_cache)) != NULL)
171     {
172       if (dp->d_type == DT_DIR)
173         {
174           u8 *p = NULL;
175           int level_cache = -1;
176
177           p = format (p, "%s/%s/%s%c", sys_cache_dir, dp->d_name, "level", 0);
178           if ((err = clib_sysfs_read ((char *) p, "%d", &level_cache)))
179             clib_error_free (err);
180
181           if (level_cache == 3)
182             {
183               closedir (dir_cache);
184               return 1;
185             }
186         }
187     }
188
189   if (dir_cache != NULL)
190     closedir (dir_cache);
191
192   return 0;
193 }
194
195 static void
196 dpdk_enable_l4_csum_offload (dpdk_device_t * xd)
197 {
198   xd->port_conf.txmode.offloads |= DEV_TX_OFFLOAD_TCP_CKSUM;
199   xd->port_conf.txmode.offloads |= DEV_TX_OFFLOAD_UDP_CKSUM;
200   xd->flags |= DPDK_DEVICE_FLAG_TX_OFFLOAD |
201     DPDK_DEVICE_FLAG_INTEL_PHDR_CKSUM;
202 }
203
204 static clib_error_t *
205 dpdk_lib_init (dpdk_main_t * dm)
206 {
207   u32 nports;
208   u32 mtu, max_rx_frame;
209   int i;
210   clib_error_t *error;
211   vlib_main_t *vm = vlib_get_main ();
212   vlib_thread_main_t *tm = vlib_get_thread_main ();
213   vnet_device_main_t *vdm = &vnet_device_main;
214   vnet_sw_interface_t *sw;
215   vnet_hw_interface_t *hi;
216   dpdk_device_t *xd;
217   vlib_pci_addr_t last_pci_addr;
218   u32 last_pci_addr_port = 0;
219   u8 af_packet_instance_num = 0;
220   last_pci_addr.as_u32 = ~0;
221
222   nports = rte_eth_dev_count_avail ();
223
224   if (nports < 1)
225     {
226       dpdk_log_notice ("DPDK drivers found no Ethernet devices...");
227     }
228
229   if (CLIB_DEBUG > 0)
230     dpdk_log_notice ("DPDK drivers found %d ports...", nports);
231
232   if (dm->conf->enable_tcp_udp_checksum)
233     dm->buffer_flags_template &= ~(VNET_BUFFER_F_L4_CHECKSUM_CORRECT
234                                    | VNET_BUFFER_F_L4_CHECKSUM_COMPUTED);
235
236   /* vlib_buffer_t template */
237   vec_validate_aligned (dm->per_thread_data, tm->n_vlib_mains - 1,
238                         CLIB_CACHE_LINE_BYTES);
239   for (i = 0; i < tm->n_vlib_mains; i++)
240     {
241       dpdk_per_thread_data_t *ptd = vec_elt_at_index (dm->per_thread_data, i);
242       clib_memset (&ptd->buffer_template, 0, sizeof (vlib_buffer_t));
243       ptd->buffer_template.flags = dm->buffer_flags_template;
244       vnet_buffer (&ptd->buffer_template)->sw_if_index[VLIB_TX] = (u32) ~ 0;
245     }
246
247   /* *INDENT-OFF* */
248   RTE_ETH_FOREACH_DEV(i)
249     {
250       u8 addr[6];
251       int vlan_off;
252       struct rte_eth_dev_info dev_info;
253       struct rte_pci_device *pci_dev;
254       struct rte_vmbus_device *vmbus_dev;
255       dpdk_portid_t next_port_id;
256       dpdk_device_config_t *devconf = 0;
257       vlib_pci_addr_t pci_addr;
258       vlib_vmbus_addr_t vmbus_addr;
259       uword *p = 0;
260
261       if (!rte_eth_dev_is_valid_port(i))
262         continue;
263
264       rte_eth_dev_info_get (i, &dev_info);
265
266       if (dev_info.device == 0)
267         {
268           dpdk_log_notice ("DPDK bug: missing device info. Skipping %s device",
269                         dev_info.driver_name);
270           continue;
271         }
272
273       pci_dev = dpdk_get_pci_device (&dev_info);
274
275       if (pci_dev)
276         {
277           pci_addr.domain = pci_dev->addr.domain;
278           pci_addr.bus = pci_dev->addr.bus;
279           pci_addr.slot = pci_dev->addr.devid;
280           pci_addr.function = pci_dev->addr.function;
281           p = hash_get (dm->conf->device_config_index_by_pci_addr,
282                         pci_addr.as_u32);
283         }
284
285       vmbus_dev = dpdk_get_vmbus_device (&dev_info);
286
287       if (vmbus_dev)
288         {
289           unformat_input_t input_vmbus;
290
291           unformat_init_vector (&input_vmbus, (u8 *) dev_info.device->name);
292           if (unformat (&input_vmbus, "%U", unformat_vlib_vmbus_addr,
293                         &vmbus_addr))
294             {
295               p = mhash_get (&dm->conf->device_config_index_by_vmbus_addr,
296                              &vmbus_addr);
297             }
298         }
299
300       if (p)
301         {
302           devconf = pool_elt_at_index (dm->conf->dev_confs, p[0]);
303           /* If device is blacklisted, we should skip it */
304           if (devconf->is_blacklisted)
305             {
306               continue;
307             }
308         }
309       else
310         devconf = &dm->conf->default_devconf;
311
312       /* Create vnet interface */
313       vec_add2_aligned (dm->devices, xd, 1, CLIB_CACHE_LINE_BYTES);
314       xd->nb_rx_desc = DPDK_NB_RX_DESC_DEFAULT;
315       xd->nb_tx_desc = DPDK_NB_TX_DESC_DEFAULT;
316       xd->cpu_socket = (i8) rte_eth_dev_socket_id (i);
317       if (p)
318         {
319           xd->name = devconf->name;
320         }
321
322       /* Handle representor devices that share the same PCI ID */
323       if (dev_info.switch_info.domain_id != RTE_ETH_DEV_SWITCH_DOMAIN_ID_INVALID)
324         {
325           if (dev_info.switch_info.port_id != (uint16_t)-1)
326             xd->interface_name_suffix = format (0, "%d", dev_info.switch_info.port_id);
327         }
328       /* Handle interface naming for devices with multiple ports sharing same PCI ID */
329       else if (pci_dev &&
330           ((next_port_id = rte_eth_find_next (i + 1)) != RTE_MAX_ETHPORTS))
331         {
332           struct rte_eth_dev_info di = { 0 };
333           struct rte_pci_device *next_pci_dev;
334           rte_eth_dev_info_get (next_port_id, &di);
335           next_pci_dev = di.device ? RTE_DEV_TO_PCI (di.device) : 0;
336           if (next_pci_dev &&
337               pci_addr.as_u32 != last_pci_addr.as_u32 &&
338               memcmp (&pci_dev->addr, &next_pci_dev->addr,
339                       sizeof (struct rte_pci_addr)) == 0)
340             {
341               xd->interface_name_suffix = format (0, "0");
342               last_pci_addr.as_u32 = pci_addr.as_u32;
343               last_pci_addr_port = i;
344             }
345           else if (pci_addr.as_u32 == last_pci_addr.as_u32)
346             {
347               xd->interface_name_suffix =
348                 format (0, "%u", i - last_pci_addr_port);
349             }
350           else
351             {
352               last_pci_addr.as_u32 = ~0;
353             }
354         }
355       else
356         last_pci_addr.as_u32 = ~0;
357
358       clib_memcpy (&xd->tx_conf, &dev_info.default_txconf,
359                    sizeof (struct rte_eth_txconf));
360
361       if (dev_info.rx_offload_capa & DEV_RX_OFFLOAD_IPV4_CKSUM)
362         {
363           xd->port_conf.rxmode.offloads |= DEV_RX_OFFLOAD_IPV4_CKSUM;
364           xd->flags |= DPDK_DEVICE_FLAG_RX_IP4_CKSUM;
365         }
366
367       if (dm->conf->enable_tcp_udp_checksum)
368         {
369           if (dev_info.rx_offload_capa & DEV_RX_OFFLOAD_UDP_CKSUM)
370             xd->port_conf.rxmode.offloads |= DEV_RX_OFFLOAD_UDP_CKSUM;
371           if (dev_info.rx_offload_capa & DEV_RX_OFFLOAD_TCP_CKSUM)
372             xd->port_conf.rxmode.offloads |= DEV_RX_OFFLOAD_TCP_CKSUM;
373         }
374
375       if (dm->conf->enable_lro)
376         {
377           if (dev_info.rx_offload_capa & DEV_RX_OFFLOAD_TCP_LRO)
378             {
379               xd->port_conf.rxmode.offloads |= DEV_RX_OFFLOAD_TCP_LRO;
380               if (devconf->max_lro_pkt_size)
381                 xd->port_conf.rxmode.max_lro_pkt_size =
382                   devconf->max_lro_pkt_size;
383               else
384                 xd->port_conf.rxmode.max_lro_pkt_size =
385                   DPDK_MAX_LRO_SIZE_DEFAULT;
386             }
387         }
388       if (dm->conf->no_multi_seg)
389         {
390           xd->port_conf.txmode.offloads &= ~DEV_TX_OFFLOAD_MULTI_SEGS;
391           xd->port_conf.rxmode.offloads &= ~DEV_RX_OFFLOAD_JUMBO_FRAME;
392           xd->port_conf.rxmode.offloads &= ~DEV_RX_OFFLOAD_SCATTER;
393         }
394       else
395         {
396           xd->port_conf.txmode.offloads |= DEV_TX_OFFLOAD_MULTI_SEGS;
397           xd->port_conf.rxmode.offloads |= DEV_RX_OFFLOAD_JUMBO_FRAME;
398           xd->port_conf.rxmode.offloads |= DEV_RX_OFFLOAD_SCATTER;
399           xd->flags |= DPDK_DEVICE_FLAG_MAYBE_MULTISEG;
400         }
401
402       xd->tx_q_used = clib_min (dev_info.max_tx_queues, tm->n_vlib_mains);
403
404       if (devconf->num_tx_queues > 0
405           && devconf->num_tx_queues < xd->tx_q_used)
406         xd->tx_q_used = clib_min (xd->tx_q_used, devconf->num_tx_queues);
407
408       if (devconf->num_rx_queues > 1
409           && dev_info.max_rx_queues >= devconf->num_rx_queues)
410         {
411           xd->rx_q_used = devconf->num_rx_queues;
412           xd->port_conf.rxmode.mq_mode = ETH_MQ_RX_RSS;
413           if (devconf->rss_fn == 0)
414             xd->port_conf.rx_adv_conf.rss_conf.rss_hf =
415               ETH_RSS_IP | ETH_RSS_UDP | ETH_RSS_TCP;
416           else
417             {
418               u64 unsupported_bits;
419               xd->port_conf.rx_adv_conf.rss_conf.rss_hf = devconf->rss_fn;
420               unsupported_bits = xd->port_conf.rx_adv_conf.rss_conf.rss_hf;
421               unsupported_bits &= ~dev_info.flow_type_rss_offloads;
422               if (unsupported_bits)
423                 dpdk_log_warn ("Unsupported RSS hash functions: %U",
424                                format_dpdk_rss_hf_name, unsupported_bits);
425             }
426           xd->port_conf.rx_adv_conf.rss_conf.rss_hf &=
427             dev_info.flow_type_rss_offloads;
428         }
429       else
430         xd->rx_q_used = 1;
431
432       vec_validate_aligned (xd->rx_queues, xd->rx_q_used - 1,
433                             CLIB_CACHE_LINE_BYTES);
434
435       xd->flags |= DPDK_DEVICE_FLAG_PMD;
436
437       /* workaround for drivers not setting driver_name */
438       if ((!dev_info.driver_name) && (pci_dev))
439         dev_info.driver_name = pci_dev->driver->driver.name;
440
441       ASSERT (dev_info.driver_name);
442
443       if (!xd->pmd)
444         {
445
446
447 #define _(s,f) else if (dev_info.driver_name &&                 \
448                         !strcmp(dev_info.driver_name, s))       \
449                  xd->pmd = VNET_DPDK_PMD_##f;
450           if (0)
451             ;
452           foreach_dpdk_pmd
453 #undef _
454             else
455             xd->pmd = VNET_DPDK_PMD_UNKNOWN;
456
457           xd->port_type = VNET_DPDK_PORT_TYPE_UNKNOWN;
458           xd->nb_rx_desc = DPDK_NB_RX_DESC_DEFAULT;
459           xd->nb_tx_desc = DPDK_NB_TX_DESC_DEFAULT;
460
461           switch (xd->pmd)
462             {
463               /* Drivers with valid speed_capa set */
464             case VNET_DPDK_PMD_I40E:
465               xd->flags |= DPDK_DEVICE_FLAG_INT_UNMASKABLE;
466             case VNET_DPDK_PMD_E1000EM:
467             case VNET_DPDK_PMD_IGB:
468             case VNET_DPDK_PMD_IGC:
469             case VNET_DPDK_PMD_IXGBE:
470             case VNET_DPDK_PMD_ICE:
471               xd->port_type = port_type_from_speed_capa (&dev_info);
472               xd->supported_flow_actions = VNET_FLOW_ACTION_MARK |
473                 VNET_FLOW_ACTION_REDIRECT_TO_NODE |
474                 VNET_FLOW_ACTION_REDIRECT_TO_QUEUE |
475                 VNET_FLOW_ACTION_BUFFER_ADVANCE |
476                 VNET_FLOW_ACTION_COUNT | VNET_FLOW_ACTION_DROP |
477                 VNET_FLOW_ACTION_RSS;
478
479               if (dm->conf->no_tx_checksum_offload == 0)
480                 {
481                   xd->port_conf.txmode.offloads |= DEV_TX_OFFLOAD_TCP_CKSUM;
482                   xd->port_conf.txmode.offloads |= DEV_TX_OFFLOAD_UDP_CKSUM;
483                   xd->flags |=
484                     DPDK_DEVICE_FLAG_TX_OFFLOAD |
485                     DPDK_DEVICE_FLAG_INTEL_PHDR_CKSUM;
486                 }
487
488               xd->port_conf.intr_conf.rxq = 1;
489               break;
490             case VNET_DPDK_PMD_MLX5:
491               if (dm->conf->no_tx_checksum_offload == 0)
492                 {
493                   xd->port_conf.txmode.offloads |= DEV_TX_OFFLOAD_TCP_CKSUM;
494                   xd->port_conf.txmode.offloads |= DEV_TX_OFFLOAD_UDP_CKSUM;
495                   xd->flags |= DPDK_DEVICE_FLAG_TX_OFFLOAD |
496                                DPDK_DEVICE_FLAG_INTEL_PHDR_CKSUM;
497                 }
498               xd->port_type = port_type_from_speed_capa (&dev_info);
499               break;
500             case VNET_DPDK_PMD_CXGBE:
501             case VNET_DPDK_PMD_MLX4:
502             case VNET_DPDK_PMD_QEDE:
503             case VNET_DPDK_PMD_BNXT:
504               xd->port_type = port_type_from_speed_capa (&dev_info);
505               break;
506
507               /* SR-IOV VFs */
508             case VNET_DPDK_PMD_I40EVF:
509               xd->flags |= DPDK_DEVICE_FLAG_INT_UNMASKABLE;
510             case VNET_DPDK_PMD_IGBVF:
511             case VNET_DPDK_PMD_IXGBEVF:
512               xd->port_type = VNET_DPDK_PORT_TYPE_ETH_VF;
513               if (dm->conf->no_tx_checksum_offload == 0)
514                 {
515                   xd->port_conf.txmode.offloads |= DEV_TX_OFFLOAD_TCP_CKSUM;
516                   xd->port_conf.txmode.offloads |= DEV_TX_OFFLOAD_UDP_CKSUM;
517                   xd->flags |=
518                     DPDK_DEVICE_FLAG_TX_OFFLOAD |
519                     DPDK_DEVICE_FLAG_INTEL_PHDR_CKSUM;
520                 }
521               /* DPDK bug in multiqueue... */
522               /* xd->port_conf.intr_conf.rxq = 1; */
523               break;
524
525               /* iAVF */
526             case VNET_DPDK_PMD_IAVF:
527               xd->flags |= DPDK_DEVICE_FLAG_INT_UNMASKABLE;
528               xd->port_type = VNET_DPDK_PORT_TYPE_ETH_VF;
529               xd->supported_flow_actions =
530                 VNET_FLOW_ACTION_MARK | VNET_FLOW_ACTION_REDIRECT_TO_NODE |
531                 VNET_FLOW_ACTION_REDIRECT_TO_QUEUE |
532                 VNET_FLOW_ACTION_BUFFER_ADVANCE | VNET_FLOW_ACTION_COUNT |
533                 VNET_FLOW_ACTION_DROP | VNET_FLOW_ACTION_RSS;
534
535               if (dm->conf->no_tx_checksum_offload == 0)
536                 {
537                   xd->port_conf.txmode.offloads |= DEV_TX_OFFLOAD_TCP_CKSUM;
538                   xd->port_conf.txmode.offloads |= DEV_TX_OFFLOAD_UDP_CKSUM;
539                   xd->flags |=
540                     DPDK_DEVICE_FLAG_TX_OFFLOAD |
541                     DPDK_DEVICE_FLAG_INTEL_PHDR_CKSUM;
542                 }
543               /* DPDK bug in multiqueue... */
544               /* xd->port_conf.intr_conf.rxq = 1; */
545               break;
546
547             case VNET_DPDK_PMD_THUNDERX:
548               xd->port_type = VNET_DPDK_PORT_TYPE_ETH_VF;
549
550               if (dm->conf->no_tx_checksum_offload == 0)
551                 {
552                   xd->port_conf.txmode.offloads |= DEV_TX_OFFLOAD_TCP_CKSUM;
553                   xd->port_conf.txmode.offloads |= DEV_TX_OFFLOAD_UDP_CKSUM;
554                   xd->flags |= DPDK_DEVICE_FLAG_TX_OFFLOAD;
555                 }
556               break;
557
558             case VNET_DPDK_PMD_ENA:
559               xd->port_type = VNET_DPDK_PORT_TYPE_ETH_VF;
560               xd->port_conf.rxmode.offloads &= ~DEV_RX_OFFLOAD_SCATTER;
561               xd->port_conf.intr_conf.rxq = 1;
562               break;
563
564             case VNET_DPDK_PMD_DPAA2:
565               xd->port_type = VNET_DPDK_PORT_TYPE_ETH_10G;
566               break;
567
568               /* Cisco VIC */
569             case VNET_DPDK_PMD_ENIC:
570                 {
571                   struct rte_eth_link l;
572                   rte_eth_link_get_nowait (i, &l);
573                   xd->port_type = port_type_from_link_speed (l.link_speed);
574                   if (dm->conf->enable_tcp_udp_checksum)
575                     dpdk_enable_l4_csum_offload (xd);
576                 }
577               break;
578
579               /* Intel Red Rock Canyon */
580             case VNET_DPDK_PMD_FM10K:
581               xd->port_type = VNET_DPDK_PORT_TYPE_ETH_SWITCH;
582               break;
583
584               /* virtio */
585             case VNET_DPDK_PMD_VIRTIO:
586               xd->port_conf.rxmode.mq_mode = ETH_MQ_RX_NONE;
587               xd->port_type = VNET_DPDK_PORT_TYPE_ETH_1G;
588               xd->nb_rx_desc = DPDK_NB_RX_DESC_VIRTIO;
589               xd->nb_tx_desc = DPDK_NB_TX_DESC_VIRTIO;
590               /*
591                * Enable use of RX interrupts if supported.
592                *
593                * There is no device flag or capability for this, so
594                * use the same check that the virtio driver does.
595                */
596               if (pci_dev && rte_intr_cap_multiple (&pci_dev->intr_handle))
597                 xd->port_conf.intr_conf.rxq = 1;
598               break;
599
600               /* vmxnet3 */
601             case VNET_DPDK_PMD_VMXNET3:
602               xd->port_type = VNET_DPDK_PORT_TYPE_ETH_1G;
603               xd->port_conf.txmode.offloads |= DEV_TX_OFFLOAD_MULTI_SEGS;
604               break;
605
606             case VNET_DPDK_PMD_AF_PACKET:
607               xd->port_type = VNET_DPDK_PORT_TYPE_AF_PACKET;
608               xd->af_packet_instance_num = af_packet_instance_num++;
609               break;
610
611             case VNET_DPDK_PMD_VIRTIO_USER:
612               xd->port_type = VNET_DPDK_PORT_TYPE_VIRTIO_USER;
613               break;
614
615             case VNET_DPDK_PMD_VHOST_ETHER:
616               xd->port_type = VNET_DPDK_PORT_TYPE_VHOST_ETHER;
617               break;
618
619             case VNET_DPDK_PMD_LIOVF_ETHER:
620               xd->port_type = VNET_DPDK_PORT_TYPE_ETH_VF;
621               break;
622
623             case VNET_DPDK_PMD_FAILSAFE:
624               xd->port_type = VNET_DPDK_PORT_TYPE_FAILSAFE;
625               xd->port_conf.intr_conf.lsc = 1;
626               break;
627
628             case VNET_DPDK_PMD_NETVSC:
629                 {
630                   struct rte_eth_link l;
631                   rte_eth_link_get_nowait (i, &l);
632                   xd->port_type = VNET_DPDK_PORT_TYPE_ETH_VF;
633                 }
634               break;
635
636             default:
637               xd->port_type = VNET_DPDK_PORT_TYPE_UNKNOWN;
638             }
639
640           if (devconf->num_rx_desc)
641             xd->nb_rx_desc = devconf->num_rx_desc;
642           else {
643
644             /* If num_rx_desc is not specified by VPP user, the current CPU is working
645             with 2M page and has no L3 cache, default num_rx_desc is changed to 512
646             from original 1024 to help reduce TLB misses.
647             */
648             if ((clib_mem_get_default_hugepage_size () == 2 << 20)
649               && check_l3cache() == 0)
650               xd->nb_rx_desc = 512;
651           }
652
653           if (devconf->num_tx_desc)
654             xd->nb_tx_desc = devconf->num_tx_desc;
655           else {
656
657             /* If num_tx_desc is not specified by VPP user, the current CPU is working
658             with 2M page and has no L3 cache, default num_tx_desc is changed to 512
659             from original 1024 to help reduce TLB misses.
660             */
661             if ((clib_mem_get_default_hugepage_size () == 2 << 20)
662               && check_l3cache() == 0)
663               xd->nb_tx_desc = 512;
664           }
665        }
666
667       if (xd->pmd == VNET_DPDK_PMD_AF_PACKET)
668         {
669           f64 now = vlib_time_now (vm);
670           u32 rnd;
671           rnd = (u32) (now * 1e6);
672           rnd = random_u32 (&rnd);
673           clib_memcpy (addr + 2, &rnd, sizeof (rnd));
674           addr[0] = 2;
675           addr[1] = 0xfe;
676         }
677       else
678         rte_eth_macaddr_get (i, (void *) addr);
679
680       xd->port_id = i;
681       xd->device_index = xd - dm->devices;
682       xd->per_interface_next_index = ~0;
683
684       /* assign interface to input thread */
685       int q;
686
687       error = ethernet_register_interface
688         (dm->vnet_main, dpdk_device_class.index, xd->device_index,
689          /* ethernet address */ addr,
690          &xd->hw_if_index, dpdk_flag_change);
691       if (error)
692         return error;
693
694       /*
695        * Ensure default mtu is not > the mtu read from the hardware.
696        * Otherwise rte_eth_dev_configure() will fail and the port will
697        * not be available.
698        * Calculate max_frame_size and mtu supported by NIC
699        */
700       if (ETHERNET_MAX_PACKET_BYTES > dev_info.max_rx_pktlen)
701         {
702           /*
703            * This device does not support the platforms's max frame
704            * size. Use it's advertised mru instead.
705            */
706           max_rx_frame = dev_info.max_rx_pktlen;
707           mtu = dev_info.max_rx_pktlen - sizeof (ethernet_header_t);
708         }
709       else
710         {
711           /* VPP treats MTU and max_rx_pktlen both equal to
712            * ETHERNET_MAX_PACKET_BYTES, if dev_info.max_rx_pktlen >=
713            * ETHERNET_MAX_PACKET_BYTES + sizeof(ethernet_header_t)
714            */
715           if (dev_info.max_rx_pktlen >= (ETHERNET_MAX_PACKET_BYTES +
716                                          sizeof (ethernet_header_t)))
717             {
718               mtu = ETHERNET_MAX_PACKET_BYTES;
719               max_rx_frame = ETHERNET_MAX_PACKET_BYTES;
720
721               /*
722                * Some platforms do not account for Ethernet FCS (4 bytes) in
723                * MTU calculations. To interop with them increase mru but only
724                * if the device's settings can support it.
725                */
726               if (dpdk_port_crc_strip_enabled (xd) &&
727                   (dev_info.max_rx_pktlen >= (ETHERNET_MAX_PACKET_BYTES +
728                                               sizeof (ethernet_header_t) +
729                                               4)))
730                 {
731                   max_rx_frame += 4;
732                 }
733             }
734           else
735             {
736               max_rx_frame = ETHERNET_MAX_PACKET_BYTES;
737               mtu = ETHERNET_MAX_PACKET_BYTES - sizeof (ethernet_header_t);
738
739               if (dpdk_port_crc_strip_enabled (xd) &&
740                   (dev_info.max_rx_pktlen >= (ETHERNET_MAX_PACKET_BYTES + 4)))
741                 {
742                   max_rx_frame += 4;
743                 }
744             }
745         }
746
747       if (xd->pmd == VNET_DPDK_PMD_FAILSAFE)
748         {
749           /* failsafe device numerables are reported with active device only,
750            * need to query the mtu for current device setup to overwrite
751            * reported value.
752            */
753           uint16_t dev_mtu;
754           if (!rte_eth_dev_get_mtu (i, &dev_mtu))
755             {
756               mtu = dev_mtu;
757               max_rx_frame = mtu + sizeof (ethernet_header_t);
758
759               if (dpdk_port_crc_strip_enabled (xd))
760                 {
761                   max_rx_frame += 4;
762                 }
763             }
764         }
765
766       /*Set port rxmode config */
767       xd->port_conf.rxmode.max_rx_pkt_len = max_rx_frame;
768
769       sw = vnet_get_hw_sw_interface (dm->vnet_main, xd->hw_if_index);
770       xd->sw_if_index = sw->sw_if_index;
771       vnet_hw_if_set_input_node (dm->vnet_main, xd->hw_if_index,
772                                  dpdk_input_node.index);
773
774       if (devconf->workers)
775         {
776           int i;
777           q = 0;
778           clib_bitmap_foreach (i, devconf->workers)  {
779               dpdk_rx_queue_t *rxq = vec_elt_at_index (xd->rx_queues, q);
780               rxq->queue_index = vnet_hw_if_register_rx_queue (
781                 dm->vnet_main, xd->hw_if_index, q++,
782                 vdm->first_worker_thread_index + i);
783           }
784         }
785       else
786         for (q = 0; q < xd->rx_q_used; q++)
787           {
788             dpdk_rx_queue_t *rxq = vec_elt_at_index (xd->rx_queues, q);
789             rxq->queue_index = vnet_hw_if_register_rx_queue (
790               dm->vnet_main, xd->hw_if_index, q, VNET_HW_IF_RXQ_THREAD_ANY);
791           }
792
793       vnet_hw_if_update_runtime_data (dm->vnet_main, xd->hw_if_index);
794
795       /*Get vnet hardware interface */
796       hi = vnet_get_hw_interface (dm->vnet_main, xd->hw_if_index);
797
798       /*Override default max_packet_bytes and max_supported_bytes set in
799        * ethernet_register_interface() above*/
800       if (hi)
801         {
802           hi->max_packet_bytes = mtu;
803           hi->max_supported_packet_bytes = max_rx_frame;
804           hi->numa_node = xd->cpu_socket;
805
806           /* Indicate ability to support L3 DMAC filtering and
807            * initialize interface to L3 non-promisc mode */
808           hi->caps |= VNET_HW_INTERFACE_CAP_SUPPORTS_MAC_FILTER;
809           ethernet_set_flags (dm->vnet_main, xd->hw_if_index,
810                              ETHERNET_INTERFACE_FLAG_DEFAULT_L3);
811         }
812
813       if (dm->conf->no_tx_checksum_offload == 0)
814         if (xd->flags & DPDK_DEVICE_FLAG_TX_OFFLOAD && hi != NULL)
815           {
816             hi->caps |= VNET_HW_INTERFACE_CAP_SUPPORTS_TX_IP4_CKSUM |
817                         VNET_HW_INTERFACE_CAP_SUPPORTS_TX_TCP_CKSUM |
818                         VNET_HW_INTERFACE_CAP_SUPPORTS_TX_UDP_CKSUM;
819           }
820       if (devconf->tso == DPDK_DEVICE_TSO_ON && hi != NULL)
821         {
822           /*tcp_udp checksum must be enabled*/
823           if ((dm->conf->enable_tcp_udp_checksum) &&
824               (hi->caps & VNET_HW_INTERFACE_CAP_SUPPORTS_TX_CKSUM))
825             {
826               hi->caps |= VNET_HW_INTERFACE_CAP_SUPPORTS_TCP_GSO |
827                           VNET_HW_INTERFACE_CAP_SUPPORTS_UDP_GSO;
828               xd->port_conf.txmode.offloads |=
829                 DEV_TX_OFFLOAD_TCP_TSO | DEV_TX_OFFLOAD_UDP_TSO;
830             }
831           else
832             clib_warning ("%s: TCP/UDP checksum offload must be enabled",
833               hi->name);
834         }
835
836       dpdk_device_setup (xd);
837
838       /* rss queues should be configured after dpdk_device_setup() */
839       if ((hi != NULL) && (devconf->rss_queues != NULL))
840         {
841           if (vnet_hw_interface_set_rss_queues
842               (vnet_get_main (), hi, devconf->rss_queues))
843           {
844             clib_warning ("%s: Failed to set rss queues", hi->name);
845           }
846         }
847
848       if (vec_len (xd->errors))
849         dpdk_log_err ("setup failed for device %U. Errors:\n  %U",
850                       format_dpdk_device_name, i,
851                       format_dpdk_device_errors, xd);
852
853       /*
854        * A note on Cisco VIC (PMD_ENIC) and VLAN:
855        *
856        * With Cisco VIC vNIC, every ingress packet is tagged. On a
857        * trunk vNIC (C series "standalone" server), packets on no VLAN
858        * are tagged with vlan 0. On an access vNIC (standalone or B
859        * series "blade" server), packets on the default/native VLAN
860        * are tagged with that vNIC's VLAN. VPP expects these packets
861        * to be untagged, and previously enabled VLAN strip on VIC by
862        * default. But it also broke vlan sub-interfaces.
863        *
864        * The VIC adapter has "untag default vlan" ingress VLAN rewrite
865        * mode, which removes tags from these packets. VPP now includes
866        * a local patch for the enic driver to use this untag mode, so
867        * enabling vlan stripping is no longer needed. In future, the
868        * driver + dpdk will have an API to set the mode after
869        * rte_eal_init. Then, this note and local patch will be
870        * removed.
871        */
872
873       /*
874        * VLAN stripping: default to VLAN strip disabled, unless specified
875        * otherwise in the startup config.
876        */
877
878         vlan_off = rte_eth_dev_get_vlan_offload (xd->port_id);
879         if (devconf->vlan_strip_offload == DPDK_DEVICE_VLAN_STRIP_ON)
880           {
881             vlan_off |= ETH_VLAN_STRIP_OFFLOAD;
882             if (rte_eth_dev_set_vlan_offload (xd->port_id, vlan_off) >= 0)
883               dpdk_log_info ("VLAN strip enabled for interface\n");
884             else
885               dpdk_log_warn ("VLAN strip cannot be supported by interface\n");
886             xd->port_conf.rxmode.offloads |= DEV_RX_OFFLOAD_VLAN_STRIP;
887           }
888         else
889           {
890             if (vlan_off & ETH_VLAN_STRIP_OFFLOAD)
891               {
892                 vlan_off &= ~ETH_VLAN_STRIP_OFFLOAD;
893                 if (rte_eth_dev_set_vlan_offload (xd->port_id, vlan_off) >= 0)
894                   dpdk_log_warn ("set VLAN offload failed\n");
895               }
896             xd->port_conf.rxmode.offloads &= ~DEV_RX_OFFLOAD_VLAN_STRIP;
897           }
898
899         if (hi)
900           hi->max_packet_bytes = xd->port_conf.rxmode.max_rx_pkt_len
901             - sizeof (ethernet_header_t);
902         else
903           dpdk_log_warn ("hi NULL");
904
905         if (dm->conf->no_multi_seg)
906           mtu = mtu > ETHER_MAX_LEN ? ETHER_MAX_LEN : mtu;
907
908         rte_eth_dev_set_mtu (xd->port_id, mtu);
909 }
910
911   /* *INDENT-ON* */
912
913   return 0;
914 }
915
916 static void
917 dpdk_bind_devices_to_uio (dpdk_config_main_t * conf)
918 {
919   vlib_main_t *vm = vlib_get_main ();
920   clib_error_t *error;
921   u8 *pci_addr = 0;
922   int num_whitelisted = vec_len (conf->dev_confs);
923   vlib_pci_device_info_t *d = 0;
924   vlib_pci_addr_t *addr = 0, *addrs;
925   int i;
926
927   addrs = vlib_pci_get_all_dev_addrs ();
928   /* *INDENT-OFF* */
929   vec_foreach (addr, addrs)
930     {
931     dpdk_device_config_t * devconf = 0;
932     vec_reset_length (pci_addr);
933     pci_addr = format (pci_addr, "%U%c", format_vlib_pci_addr, addr, 0);
934     if (d)
935     {
936       vlib_pci_free_device_info (d);
937       d = 0;
938       }
939     d = vlib_pci_get_device_info (vm, addr, &error);
940     if (error)
941     {
942       vlib_log_warn (dpdk_main.log_default, "%U", format_clib_error, error);
943       clib_error_free (error);
944       continue;
945     }
946
947     if (d->device_class != PCI_CLASS_NETWORK_ETHERNET && d->device_class != PCI_CLASS_PROCESSOR_CO)
948       continue;
949
950     if (num_whitelisted)
951       {
952         uword * p = hash_get (conf->device_config_index_by_pci_addr, addr->as_u32);
953
954         if (!p)
955           {
956           skipped_pci:
957             continue;
958           }
959
960         devconf = pool_elt_at_index (conf->dev_confs, p[0]);
961       }
962
963     /* Enforce Device blacklist by vendor and device */
964     for (i = 0; i < vec_len (conf->blacklist_by_pci_vendor_and_device); i++)
965       {
966         u16 vendor, device;
967         vendor = (u16)(conf->blacklist_by_pci_vendor_and_device[i] >> 16);
968         device = (u16)(conf->blacklist_by_pci_vendor_and_device[i] & 0xFFFF);
969         if (d->vendor_id == vendor && d->device_id == device)
970           {
971             /*
972              * Expected case: device isn't whitelisted,
973              * so blacklist it...
974              */
975             if (devconf == 0)
976               {
977                 /* Device is blacklisted */
978                 pool_get (conf->dev_confs, devconf);
979                 hash_set (conf->device_config_index_by_pci_addr, addr->as_u32,
980                           devconf - conf->dev_confs);
981                 devconf->pci_addr.as_u32 = addr->as_u32;
982                 devconf->dev_addr_type = VNET_DEV_ADDR_PCI;
983                 devconf->is_blacklisted = 1;
984                 goto skipped_pci;
985               }
986             else /* explicitly whitelisted, ignore the device blacklist  */
987               break;
988           }
989       }
990
991     /* virtio */
992     if (d->vendor_id == 0x1af4 &&
993             (d->device_id == VIRTIO_PCI_LEGACY_DEVICEID_NET ||
994              d->device_id == VIRTIO_PCI_MODERN_DEVICEID_NET))
995       ;
996     /* vmxnet3 */
997     else if (d->vendor_id == 0x15ad && d->device_id == 0x07b0)
998       {
999         /*
1000          * For vmxnet3 PCI, unless it is explicitly specified in the whitelist,
1001          * the default is to put it in the blacklist.
1002          */
1003         if (devconf == 0)
1004           {
1005             pool_get (conf->dev_confs, devconf);
1006             hash_set (conf->device_config_index_by_pci_addr, addr->as_u32,
1007                       devconf - conf->dev_confs);
1008             devconf->pci_addr.as_u32 = addr->as_u32;
1009             devconf->is_blacklisted = 1;
1010           }
1011       }
1012     /* all Intel network devices */
1013     else if (d->vendor_id == 0x8086 && d->device_class == PCI_CLASS_NETWORK_ETHERNET)
1014       ;
1015     /* all Intel QAT devices VFs */
1016     else if (d->vendor_id == 0x8086 && d->device_class == PCI_CLASS_PROCESSOR_CO &&
1017         (d->device_id == 0x0443 || d->device_id == 0x18a1 || d->device_id == 0x19e3 ||
1018         d->device_id == 0x37c9 || d->device_id == 0x6f55))
1019       ;
1020     /* Cisco VIC */
1021     else if (d->vendor_id == 0x1137 &&
1022         (d->device_id == 0x0043 || d->device_id == 0x0071))
1023       ;
1024     /* Chelsio T4/T5 */
1025     else if (d->vendor_id == 0x1425 && (d->device_id & 0xe000) == 0x4000)
1026       ;
1027     /* Amazon Elastic Network Adapter */
1028     else if (d->vendor_id == 0x1d0f && d->device_id >= 0xec20 && d->device_id <= 0xec21)
1029       ;
1030     /* Cavium Network Adapter */
1031     else if (d->vendor_id == 0x177d && d->device_id == 0x9712)
1032       ;
1033     /* Cavium FastlinQ QL41000 Series */
1034     else if (d->vendor_id == 0x1077 && d->device_id >= 0x8070 && d->device_id <= 0x8090)
1035       ;
1036     /* Mellanox CX3, CX3VF */
1037     else if (d->vendor_id == 0x15b3 && d->device_id >= 0x1003 && d->device_id <= 0x1004)
1038       {
1039         continue;
1040       }
1041     /* Mellanox CX4, CX4VF, CX4LX, CX4LXVF, CX5, CX5VF, CX5EX, CX5EXVF */
1042     else if (d->vendor_id == 0x15b3 && d->device_id >= 0x1013 && d->device_id <= 0x101a)
1043       {
1044         continue;
1045       }
1046     /* Mellanox CX6, CX6VF, CX6DX, CX6DXVF */
1047     else if (d->vendor_id == 0x15b3 && d->device_id >= 0x101b && d->device_id <= 0x101e)
1048       {
1049         continue;
1050       }
1051     /* Broadcom NetXtreme S, and E series only */
1052     else if (d->vendor_id == 0x14e4 &&
1053         ((d->device_id >= 0x16c0 &&
1054                 d->device_id != 0x16c6 && d->device_id != 0x16c7 &&
1055                 d->device_id != 0x16dd && d->device_id != 0x16f7 &&
1056                 d->device_id != 0x16fd && d->device_id != 0x16fe &&
1057                 d->device_id != 0x170d && d->device_id != 0x170c &&
1058                 d->device_id != 0x170e && d->device_id != 0x1712 &&
1059                 d->device_id != 0x1713) ||
1060         (d->device_id == 0x1604 || d->device_id == 0x1605 ||
1061          d->device_id == 0x1614 || d->device_id == 0x1606 ||
1062          d->device_id == 0x1609 || d->device_id == 0x1614)))
1063       ;
1064     else
1065       {
1066         dpdk_log_warn ("Unsupported PCI device 0x%04x:0x%04x found "
1067                       "at PCI address %s\n", (u16) d->vendor_id, (u16) d->device_id,
1068                       pci_addr);
1069         continue;
1070       }
1071
1072     error = vlib_pci_bind_to_uio (vm, addr, (char *) conf->uio_driver_name);
1073
1074     if (error)
1075       {
1076         if (devconf == 0)
1077           {
1078             pool_get (conf->dev_confs, devconf);
1079             hash_set (conf->device_config_index_by_pci_addr, addr->as_u32,
1080                       devconf - conf->dev_confs);
1081             devconf->pci_addr.as_u32 = addr->as_u32;
1082           }
1083         devconf->dev_addr_type = VNET_DEV_ADDR_PCI;
1084         devconf->is_blacklisted = 1;
1085         clib_error_report (error);
1086       }
1087   }
1088   /* *INDENT-ON* */
1089   vec_free (pci_addr);
1090   vlib_pci_free_device_info (d);
1091 }
1092
1093 static void
1094 dpdk_bind_vmbus_devices_to_uio (dpdk_config_main_t * conf)
1095 {
1096   clib_error_t *error;
1097   vlib_vmbus_addr_t *addrs, *addr = 0;
1098   int num_whitelisted = vec_len (conf->dev_confs);
1099   int i;
1100
1101   addrs = vlib_vmbus_get_all_dev_addrs ();
1102
1103   /* *INDENT-OFF* */
1104   vec_foreach (addr, addrs)
1105     {
1106       dpdk_device_config_t *devconf = 0;
1107       if (num_whitelisted)
1108         {
1109           uword *p =
1110             mhash_get (&conf->device_config_index_by_vmbus_addr, addr);
1111           if (!p)
1112             {
1113               /* No devices blacklisted, but have whitelisted. blacklist all
1114                * non-whitelisted */
1115               pool_get (conf->dev_confs, devconf);
1116               mhash_set (&conf->device_config_index_by_vmbus_addr, addr,
1117                          devconf - conf->dev_confs, 0);
1118               devconf->vmbus_addr = *addr;
1119               devconf->dev_addr_type = VNET_DEV_ADDR_VMBUS;
1120               devconf->is_blacklisted = 1;
1121             skipped_vmbus:
1122               continue;
1123             }
1124
1125           devconf = pool_elt_at_index (conf->dev_confs, p[0]);
1126         }
1127
1128       /* Enforce Device blacklist by vmbus_addr */
1129       for (i = 0; i < vec_len (conf->blacklist_by_vmbus_addr); i++)
1130         {
1131           vlib_vmbus_addr_t *a1 = &conf->blacklist_by_vmbus_addr[i];
1132           vlib_vmbus_addr_t *a2 = addr;
1133           if (memcmp (a1, a2, sizeof (vlib_vmbus_addr_t)) == 0)
1134             {
1135               if (devconf == 0)
1136                 {
1137                   /* Device not whitelisted */
1138                   pool_get (conf->dev_confs, devconf);
1139                   mhash_set (&conf->device_config_index_by_vmbus_addr, addr,
1140                              devconf - conf->dev_confs, 0);
1141                   devconf->vmbus_addr = *addr;
1142                   devconf->dev_addr_type = VNET_DEV_ADDR_VMBUS;
1143                   devconf->is_blacklisted = 1;
1144                   goto skipped_vmbus;
1145                 }
1146               else
1147                 {
1148                   break;
1149                 }
1150             }
1151         }
1152
1153       error = vlib_vmbus_bind_to_uio (addr);
1154       if (error)
1155         {
1156           if (devconf == 0)
1157             {
1158               pool_get (conf->dev_confs, devconf);
1159               mhash_set (&conf->device_config_index_by_vmbus_addr, addr,
1160                          devconf - conf->dev_confs, 0);
1161               devconf->vmbus_addr = *addr;
1162             }
1163           devconf->dev_addr_type = VNET_DEV_ADDR_VMBUS;
1164           devconf->is_blacklisted = 1;
1165           clib_error_report (error);
1166         }
1167     }
1168   /* *INDENT-ON* */
1169 }
1170
1171 uword
1172 unformat_max_simd_bitwidth (unformat_input_t *input, va_list *va)
1173 {
1174   uword *max_simd_bitwidth = va_arg (*va, uword *);
1175
1176   while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
1177     {
1178       if (!unformat (input, "%u", max_simd_bitwidth))
1179         goto error;
1180
1181       if (*max_simd_bitwidth != DPDK_MAX_SIMD_BITWIDTH_256 &&
1182           *max_simd_bitwidth != DPDK_MAX_SIMD_BITWIDTH_512)
1183         goto error;
1184     }
1185   return 1;
1186 error:
1187   return 0;
1188 }
1189
1190 static clib_error_t *
1191 dpdk_device_config (dpdk_config_main_t *conf, void *addr,
1192                     dpdk_device_addr_type_t addr_type, unformat_input_t *input,
1193                     u8 is_default)
1194 {
1195   clib_error_t *error = 0;
1196   uword *p;
1197   dpdk_device_config_t *devconf = 0;
1198   unformat_input_t sub_input;
1199
1200   if (is_default)
1201     {
1202       devconf = &conf->default_devconf;
1203     }
1204   else if (addr_type == VNET_DEV_ADDR_PCI)
1205     {
1206       p = hash_get (conf->device_config_index_by_pci_addr,
1207                     ((vlib_pci_addr_t *) (addr))->as_u32);
1208
1209       if (!p)
1210         {
1211           pool_get (conf->dev_confs, devconf);
1212           hash_set (conf->device_config_index_by_pci_addr,
1213                     ((vlib_pci_addr_t *) (addr))->as_u32,
1214                     devconf - conf->dev_confs);
1215         }
1216       else
1217         return clib_error_return (0,
1218                                   "duplicate configuration for PCI address %U",
1219                                   format_vlib_pci_addr, addr);
1220     }
1221   else if (addr_type == VNET_DEV_ADDR_VMBUS)
1222     {
1223       p = mhash_get (&conf->device_config_index_by_vmbus_addr,
1224                      (vlib_vmbus_addr_t *) (addr));
1225
1226       if (!p)
1227         {
1228           pool_get (conf->dev_confs, devconf);
1229           mhash_set (&conf->device_config_index_by_vmbus_addr, addr,
1230                      devconf - conf->dev_confs, 0);
1231         }
1232       else
1233         return clib_error_return (
1234           0, "duplicate configuration for VMBUS address %U",
1235           format_vlib_vmbus_addr, addr);
1236     }
1237
1238   if (addr_type == VNET_DEV_ADDR_PCI)
1239     {
1240       devconf->pci_addr.as_u32 = ((vlib_pci_addr_t *) (addr))->as_u32;
1241       devconf->tso = DPDK_DEVICE_TSO_DEFAULT;
1242       devconf->dev_addr_type = VNET_DEV_ADDR_PCI;
1243     }
1244   else if (addr_type == VNET_DEV_ADDR_VMBUS)
1245     {
1246       devconf->vmbus_addr = *((vlib_vmbus_addr_t *) (addr));
1247       devconf->tso = DPDK_DEVICE_TSO_DEFAULT;
1248       devconf->dev_addr_type = VNET_DEV_ADDR_VMBUS;
1249     }
1250
1251   if (!input)
1252     return 0;
1253
1254   unformat_skip_white_space (input);
1255   while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
1256     {
1257       if (unformat (input, "num-rx-queues %u", &devconf->num_rx_queues))
1258         ;
1259       else if (unformat (input, "num-tx-queues %u", &devconf->num_tx_queues))
1260         ;
1261       else if (unformat (input, "num-rx-desc %u", &devconf->num_rx_desc))
1262         ;
1263       else if (unformat (input, "num-tx-desc %u", &devconf->num_tx_desc))
1264         ;
1265       else if (unformat (input, "name %s", &devconf->name))
1266         ;
1267       else if (unformat (input, "workers %U", unformat_bitmap_list,
1268                          &devconf->workers))
1269         ;
1270       else
1271         if (unformat
1272             (input, "rss %U", unformat_vlib_cli_sub_input, &sub_input))
1273         {
1274           error = unformat_rss_fn (&sub_input, &devconf->rss_fn);
1275           if (error)
1276             break;
1277         }
1278       else if (unformat (input, "vlan-strip-offload off"))
1279         devconf->vlan_strip_offload = DPDK_DEVICE_VLAN_STRIP_OFF;
1280       else if (unformat (input, "vlan-strip-offload on"))
1281         devconf->vlan_strip_offload = DPDK_DEVICE_VLAN_STRIP_ON;
1282       else if (unformat (input, "tso on"))
1283         {
1284           devconf->tso = DPDK_DEVICE_TSO_ON;
1285         }
1286       else if (unformat (input, "tso off"))
1287         {
1288           devconf->tso = DPDK_DEVICE_TSO_OFF;
1289         }
1290       else if (unformat (input, "devargs %s", &devconf->devargs))
1291         ;
1292       else if (unformat (input, "rss-queues %U",
1293                          unformat_bitmap_list, &devconf->rss_queues))
1294         ;
1295       else if (unformat (input, "max-lro-pkt-size %u",
1296                          &devconf->max_lro_pkt_size))
1297         ;
1298       else
1299         {
1300           error = clib_error_return (0, "unknown input `%U'",
1301                                      format_unformat_error, input);
1302           break;
1303         }
1304     }
1305
1306   if (error)
1307     return error;
1308
1309   if (devconf->workers && devconf->num_rx_queues == 0)
1310     devconf->num_rx_queues = clib_bitmap_count_set_bits (devconf->workers);
1311   else if (devconf->workers &&
1312            clib_bitmap_count_set_bits (devconf->workers) !=
1313            devconf->num_rx_queues)
1314     error = clib_error_return (0,
1315                                "%U: number of worker threads must be "
1316                                "equal to number of rx queues",
1317                                format_vlib_pci_addr, addr);
1318
1319   return error;
1320 }
1321
1322 static clib_error_t *
1323 dpdk_log_read_ready (clib_file_t * uf)
1324 {
1325   unformat_input_t input;
1326   u8 *line, *s = 0;
1327   int n, n_try;
1328
1329   n = n_try = 4096;
1330   while (n == n_try)
1331     {
1332       uword len = vec_len (s);
1333       vec_resize (s, len + n_try);
1334
1335       n = read (uf->file_descriptor, s + len, n_try);
1336       if (n < 0 && errno != EAGAIN)
1337         return clib_error_return_unix (0, "read");
1338       _vec_len (s) = len + (n < 0 ? 0 : n);
1339     }
1340
1341   unformat_init_vector (&input, s);
1342
1343   while (unformat_user (&input, unformat_line, &line))
1344     {
1345       dpdk_log_notice ("%v", line);
1346       vec_free (line);
1347     }
1348
1349   unformat_free (&input);
1350   return 0;
1351 }
1352
1353 static clib_error_t *
1354 dpdk_config (vlib_main_t * vm, unformat_input_t * input)
1355 {
1356   clib_error_t *error = 0;
1357   dpdk_config_main_t *conf = &dpdk_config_main;
1358   vlib_thread_main_t *tm = vlib_get_thread_main ();
1359   dpdk_device_config_t *devconf;
1360   vlib_pci_addr_t pci_addr = { 0 };
1361   vlib_vmbus_addr_t vmbus_addr = { 0 };
1362   unformat_input_t sub_input;
1363   uword default_hugepage_sz, x;
1364   u8 *s, *tmp = 0;
1365   int ret, i;
1366   int num_whitelisted = 0;
1367   int eal_no_hugetlb = 0;
1368   u8 no_pci = 0;
1369   u8 no_vmbus = 0;
1370   u8 file_prefix = 0;
1371   u8 *socket_mem = 0;
1372   u8 *huge_dir_path = 0;
1373   u32 vendor, device, domain, bus, func;
1374
1375   huge_dir_path =
1376     format (0, "%s/hugepages%c", vlib_unix_get_runtime_dir (), 0);
1377
1378   conf->device_config_index_by_pci_addr = hash_create (0, sizeof (uword));
1379   mhash_init (&conf->device_config_index_by_vmbus_addr, sizeof (uword),
1380               sizeof (vlib_vmbus_addr_t));
1381
1382   while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
1383     {
1384       /* Prime the pump */
1385       if (unformat (input, "no-hugetlb"))
1386         {
1387           vec_add1 (conf->eal_init_args, (u8 *) "--no-huge");
1388           eal_no_hugetlb = 1;
1389         }
1390       else if (unformat (input, "telemetry"))
1391         conf->enable_telemetry = 1;
1392
1393       else if (unformat (input, "enable-tcp-udp-checksum"))
1394         conf->enable_tcp_udp_checksum = 1;
1395
1396       else if (unformat (input, "no-tx-checksum-offload"))
1397         conf->no_tx_checksum_offload = 1;
1398
1399       else if (unformat (input, "decimal-interface-names"))
1400         conf->interface_name_format_decimal = 1;
1401
1402       else if (unformat (input, "no-multi-seg"))
1403         conf->no_multi_seg = 1;
1404       else if (unformat (input, "enable-lro"))
1405         conf->enable_lro = 1;
1406       else if (unformat (input, "max-simd-bitwidth %U",
1407                          unformat_max_simd_bitwidth, &conf->max_simd_bitwidth))
1408         ;
1409       else if (unformat (input, "dev default %U", unformat_vlib_cli_sub_input,
1410                          &sub_input))
1411         {
1412           error =
1413             dpdk_device_config (conf, 0, VNET_DEV_ADDR_ANY, &sub_input, 1);
1414
1415           if (error)
1416             return error;
1417         }
1418       else
1419         if (unformat
1420             (input, "dev %U %U", unformat_vlib_pci_addr, &pci_addr,
1421              unformat_vlib_cli_sub_input, &sub_input))
1422         {
1423           error = dpdk_device_config (conf, &pci_addr, VNET_DEV_ADDR_PCI,
1424                                       &sub_input, 0);
1425
1426           if (error)
1427             return error;
1428
1429           num_whitelisted++;
1430         }
1431       else if (unformat (input, "dev %U", unformat_vlib_pci_addr, &pci_addr))
1432         {
1433           error =
1434             dpdk_device_config (conf, &pci_addr, VNET_DEV_ADDR_PCI, 0, 0);
1435
1436           if (error)
1437             return error;
1438
1439           num_whitelisted++;
1440         }
1441       else if (unformat (input, "dev %U %U", unformat_vlib_vmbus_addr,
1442                          &vmbus_addr, unformat_vlib_cli_sub_input, &sub_input))
1443         {
1444           error = dpdk_device_config (conf, &vmbus_addr, VNET_DEV_ADDR_VMBUS,
1445                                       &sub_input, 0);
1446
1447           if (error)
1448             return error;
1449
1450           num_whitelisted++;
1451         }
1452       else if (unformat (input, "dev %U", unformat_vlib_vmbus_addr,
1453                          &vmbus_addr))
1454         {
1455           error =
1456             dpdk_device_config (conf, &vmbus_addr, VNET_DEV_ADDR_VMBUS, 0, 0);
1457
1458           if (error)
1459             return error;
1460
1461           num_whitelisted++;
1462         }
1463       else if (unformat (input, "num-mem-channels %d", &conf->nchannels))
1464         conf->nchannels_set_manually = 0;
1465       else if (unformat (input, "num-crypto-mbufs %d",
1466                          &conf->num_crypto_mbufs))
1467         ;
1468       else if (unformat (input, "uio-driver %s", &conf->uio_driver_name))
1469         ;
1470       else if (unformat (input, "socket-mem %s", &socket_mem))
1471         ;
1472       else if (unformat (input, "no-pci"))
1473         {
1474           no_pci = 1;
1475           tmp = format (0, "--no-pci%c", 0);
1476           vec_add1 (conf->eal_init_args, tmp);
1477         }
1478       else if (unformat (input, "blacklist %U", unformat_vlib_vmbus_addr,
1479                          &vmbus_addr))
1480         {
1481           vec_add1 (conf->blacklist_by_vmbus_addr, vmbus_addr);
1482         }
1483       else
1484         if (unformat
1485             (input, "blacklist %x:%x:%x.%x", &domain, &bus, &device, &func))
1486         {
1487           tmp = format (0, "-b%c", 0);
1488           vec_add1 (conf->eal_init_args, tmp);
1489           tmp =
1490             format (0, "%04x:%02x:%02x.%x%c", domain, bus, device, func, 0);
1491           vec_add1 (conf->eal_init_args, tmp);
1492         }
1493       else if (unformat (input, "blacklist %x:%x", &vendor, &device))
1494         {
1495           u32 blacklist_entry;
1496           if (vendor > 0xFFFF)
1497             return clib_error_return (0, "blacklist PCI vendor out of range");
1498           if (device > 0xFFFF)
1499             return clib_error_return (0, "blacklist PCI device out of range");
1500           blacklist_entry = (vendor << 16) | (device & 0xffff);
1501           vec_add1 (conf->blacklist_by_pci_vendor_and_device,
1502                     blacklist_entry);
1503         }
1504       else if (unformat (input, "no-vmbus"))
1505         {
1506           no_vmbus = 1;
1507           tmp = format (0, "--no-vmbus%c", 0);
1508           vec_add1 (conf->eal_init_args, tmp);
1509         }
1510
1511 #define _(a)                                    \
1512       else if (unformat(input, #a))             \
1513         {                                       \
1514           tmp = format (0, "--%s%c", #a, 0);    \
1515           vec_add1 (conf->eal_init_args, tmp);    \
1516         }
1517       foreach_eal_double_hyphen_predicate_arg
1518 #undef _
1519 #define _(a)                                          \
1520         else if (unformat(input, #a " %s", &s))       \
1521           {                                           \
1522             if (!strncmp(#a, "file-prefix", 11)) \
1523               file_prefix = 1;                        \
1524             tmp = format (0, "--%s%c", #a, 0);        \
1525             vec_add1 (conf->eal_init_args, tmp);      \
1526             vec_add1 (s, 0);                          \
1527             if (!strncmp(#a, "vdev", 4))              \
1528               if (strstr((char*)s, "af_packet"))      \
1529                 clib_warning ("af_packet obsoleted. Use CLI 'create host-interface'."); \
1530             vec_add1 (conf->eal_init_args, s);        \
1531           }
1532         foreach_eal_double_hyphen_arg
1533 #undef _
1534 #define _(a,b)                                          \
1535           else if (unformat(input, #a " %s", &s))       \
1536             {                                           \
1537               tmp = format (0, "-%s%c", #b, 0);         \
1538               vec_add1 (conf->eal_init_args, tmp);      \
1539               vec_add1 (s, 0);                          \
1540               vec_add1 (conf->eal_init_args, s);        \
1541             }
1542         foreach_eal_single_hyphen_arg
1543 #undef _
1544 #define _(a,b)                                          \
1545             else if (unformat(input, #a " %s", &s))     \
1546               {                                         \
1547                 tmp = format (0, "-%s%c", #b, 0);       \
1548                 vec_add1 (conf->eal_init_args, tmp);    \
1549                 vec_add1 (s, 0);                        \
1550                 vec_add1 (conf->eal_init_args, s);      \
1551                 conf->a##_set_manually = 1;             \
1552               }
1553         foreach_eal_single_hyphen_mandatory_arg
1554 #undef _
1555         else if (unformat (input, "default"))
1556         ;
1557
1558       else if (unformat_skip_white_space (input))
1559         ;
1560       else
1561         {
1562           error = clib_error_return (0, "unknown input `%U'",
1563                                      format_unformat_error, input);
1564           goto done;
1565         }
1566     }
1567
1568   if (!conf->uio_driver_name)
1569     conf->uio_driver_name = format (0, "auto%c", 0);
1570
1571   if (eal_no_hugetlb == 0)
1572     {
1573       vec_add1 (conf->eal_init_args, (u8 *) "--in-memory");
1574
1575       default_hugepage_sz = clib_mem_get_default_hugepage_size ();
1576
1577       /* *INDENT-OFF* */
1578       clib_bitmap_foreach (x, tm->cpu_socket_bitmap)
1579         {
1580           clib_error_t *e;
1581           uword n_pages;
1582           /* preallocate at least 16MB of hugepages per socket,
1583             if more is needed it is up to consumer to preallocate more */
1584           n_pages = round_pow2 ((uword) 16 << 20, default_hugepage_sz);
1585           n_pages /= default_hugepage_sz;
1586
1587           if ((e = clib_sysfs_prealloc_hugepages(x, 0, n_pages)))
1588             clib_error_report (e);
1589         }
1590       /* *INDENT-ON* */
1591     }
1592
1593   /* on/off dpdk's telemetry thread */
1594   if (conf->enable_telemetry == 0)
1595     {
1596       vec_add1 (conf->eal_init_args, (u8 *) "--no-telemetry");
1597     }
1598
1599   if (!file_prefix)
1600     {
1601       tmp = format (0, "--file-prefix%c", 0);
1602       vec_add1 (conf->eal_init_args, tmp);
1603       tmp = format (0, "vpp%c", 0);
1604       vec_add1 (conf->eal_init_args, tmp);
1605     }
1606
1607   if (error)
1608     return error;
1609
1610   /* I'll bet that -c and -n must be the first and second args... */
1611   if (!conf->coremask_set_manually)
1612     {
1613       vlib_thread_registration_t *tr;
1614       uword *coremask = 0;
1615       int i;
1616
1617       /* main thread core */
1618       coremask = clib_bitmap_set (coremask, tm->main_lcore, 1);
1619
1620       for (i = 0; i < vec_len (tm->registrations); i++)
1621         {
1622           tr = tm->registrations[i];
1623           coremask = clib_bitmap_or (coremask, tr->coremask);
1624         }
1625
1626       vec_insert (conf->eal_init_args, 2, 1);
1627       conf->eal_init_args[1] = (u8 *) "-c";
1628       tmp = format (0, "%U%c", format_bitmap_hex, coremask, 0);
1629       conf->eal_init_args[2] = tmp;
1630       clib_bitmap_free (coremask);
1631     }
1632
1633   if (!conf->nchannels_set_manually)
1634     {
1635       vec_insert (conf->eal_init_args, 2, 3);
1636       conf->eal_init_args[3] = (u8 *) "-n";
1637       tmp = format (0, "%d", conf->nchannels);
1638       vec_terminate_c_string (tmp);
1639       conf->eal_init_args[4] = tmp;
1640     }
1641
1642   if (no_pci == 0 && geteuid () == 0)
1643     dpdk_bind_devices_to_uio (conf);
1644
1645   if (no_vmbus == 0 && geteuid () == 0)
1646     dpdk_bind_vmbus_devices_to_uio (conf);
1647
1648 #define _(x) \
1649     if (devconf->x == 0 && conf->default_devconf.x > 0) \
1650       devconf->x = conf->default_devconf.x ;
1651
1652   /* *INDENT-OFF* */
1653   pool_foreach (devconf, conf->dev_confs)  {
1654
1655     /* default per-device config items */
1656     foreach_dpdk_device_config_item
1657
1658       /* copy vlan_strip config from default device */
1659       _ (vlan_strip_offload)
1660
1661       /* copy tso config from default device */
1662       _ (tso)
1663
1664       /* copy tso config from default device */
1665       _ (devargs)
1666
1667       /* copy rss_queues config from default device */
1668       _ (rss_queues)
1669
1670       /* add DPDK EAL whitelist/blacklist entry */
1671       if (num_whitelisted > 0 && devconf->is_blacklisted == 0 &&
1672           devconf->dev_addr_type == VNET_DEV_ADDR_PCI)
1673     {
1674           tmp = format (0, "-a%c", 0);
1675           vec_add1 (conf->eal_init_args, tmp);
1676           if (devconf->devargs)
1677           {
1678             tmp = format (0, "%U,%s%c", format_vlib_pci_addr,
1679                           &devconf->pci_addr, devconf->devargs, 0);
1680           }
1681           else
1682           {
1683             tmp = format (0, "%U%c", format_vlib_pci_addr, &devconf->pci_addr, 0);
1684           }
1685           vec_add1 (conf->eal_init_args, tmp);
1686     }
1687     else if (num_whitelisted == 0 && devconf->is_blacklisted != 0 &&
1688              devconf->dev_addr_type == VNET_DEV_ADDR_PCI)
1689     {
1690           tmp = format (0, "-b%c", 0);
1691           vec_add1 (conf->eal_init_args, tmp);
1692           tmp = format (0, "%U%c", format_vlib_pci_addr, &devconf->pci_addr, 0);
1693           vec_add1 (conf->eal_init_args, tmp);
1694     }
1695   }
1696   /* *INDENT-ON* */
1697
1698 #undef _
1699
1700   /* set master-lcore */
1701   tmp = format (0, "--main-lcore%c", 0);
1702   vec_add1 (conf->eal_init_args, tmp);
1703   tmp = format (0, "%u%c", tm->main_lcore, 0);
1704   vec_add1 (conf->eal_init_args, tmp);
1705
1706
1707   if (socket_mem)
1708     clib_warning ("socket-mem argument is deprecated");
1709
1710   /* NULL terminate the "argv" vector, in case of stupidity */
1711   vec_add1 (conf->eal_init_args, 0);
1712   _vec_len (conf->eal_init_args) -= 1;
1713
1714   /* Set up DPDK eal and packet mbuf pool early. */
1715
1716   int log_fds[2] = { 0 };
1717   if (pipe (log_fds) == 0)
1718     {
1719       if (fcntl (log_fds[1], F_SETFL, O_NONBLOCK) == 0)
1720         {
1721           FILE *f = fdopen (log_fds[1], "a");
1722           if (f && rte_openlog_stream (f) == 0)
1723             {
1724               clib_file_t t = { 0 };
1725               t.read_function = dpdk_log_read_ready;
1726               t.file_descriptor = log_fds[0];
1727               t.description = format (0, "DPDK logging pipe");
1728               clib_file_add (&file_main, &t);
1729             }
1730         }
1731       else
1732         {
1733           close (log_fds[0]);
1734           close (log_fds[1]);
1735         }
1736     }
1737
1738   vm = vlib_get_main ();
1739
1740   /* make copy of args as rte_eal_init tends to mess up with arg array */
1741   for (i = 1; i < vec_len (conf->eal_init_args); i++)
1742     conf->eal_init_args_str = format (conf->eal_init_args_str, "%s ",
1743                                       conf->eal_init_args[i]);
1744
1745   vec_terminate_c_string (conf->eal_init_args_str);
1746
1747   dpdk_log_notice ("EAL init args: %s", conf->eal_init_args_str);
1748   ret = rte_eal_init (vec_len (conf->eal_init_args),
1749                       (char **) conf->eal_init_args);
1750
1751   /* enable the AVX-512 vPMDs in DPDK */
1752   if (clib_cpu_supports_avx512_bitalg () &&
1753       conf->max_simd_bitwidth == DPDK_MAX_SIMD_BITWIDTH_DEFAULT)
1754     rte_vect_set_max_simd_bitwidth (RTE_VECT_SIMD_512);
1755   else if (conf->max_simd_bitwidth != DPDK_MAX_SIMD_BITWIDTH_DEFAULT)
1756     rte_vect_set_max_simd_bitwidth (conf->max_simd_bitwidth ==
1757                                         DPDK_MAX_SIMD_BITWIDTH_256 ?
1758                                       RTE_VECT_SIMD_256 :
1759                                       RTE_VECT_SIMD_512);
1760
1761   /* lazy umount hugepages */
1762   umount2 ((char *) huge_dir_path, MNT_DETACH);
1763   rmdir ((char *) huge_dir_path);
1764   vec_free (huge_dir_path);
1765
1766   if (ret < 0)
1767     return clib_error_return (0, "rte_eal_init returned %d", ret);
1768
1769   /* main thread 1st */
1770   if ((error = dpdk_buffer_pools_create (vm)))
1771     return error;
1772
1773 done:
1774   return error;
1775 }
1776
1777 VLIB_CONFIG_FUNCTION (dpdk_config, "dpdk");
1778
1779 void
1780 dpdk_update_link_state (dpdk_device_t * xd, f64 now)
1781 {
1782   vnet_main_t *vnm = vnet_get_main ();
1783   struct rte_eth_link prev_link = xd->link;
1784   u32 hw_flags = 0;
1785   u8 hw_flags_chg = 0;
1786
1787   /* only update link state for PMD interfaces */
1788   if ((xd->flags & DPDK_DEVICE_FLAG_PMD) == 0)
1789     return;
1790
1791   xd->time_last_link_update = now ? now : xd->time_last_link_update;
1792   clib_memset (&xd->link, 0, sizeof (xd->link));
1793   rte_eth_link_get_nowait (xd->port_id, &xd->link);
1794
1795   if (LINK_STATE_ELOGS)
1796     {
1797       ELOG_TYPE_DECLARE (e) =
1798       {
1799       .format =
1800           "update-link-state: sw_if_index %d, admin_up %d,"
1801           "old link_state %d new link_state %d",.format_args = "i4i1i1i1",};
1802
1803       struct
1804       {
1805         u32 sw_if_index;
1806         u8 admin_up;
1807         u8 old_link_state;
1808         u8 new_link_state;
1809       } *ed;
1810       ed = ELOG_DATA (&vlib_global_main.elog_main, e);
1811       ed->sw_if_index = xd->sw_if_index;
1812       ed->admin_up = (xd->flags & DPDK_DEVICE_FLAG_ADMIN_UP) != 0;
1813       ed->old_link_state = (u8)
1814         vnet_hw_interface_is_link_up (vnm, xd->hw_if_index);
1815       ed->new_link_state = (u8) xd->link.link_status;
1816     }
1817
1818   if ((xd->link.link_duplex != prev_link.link_duplex))
1819     {
1820       hw_flags_chg = 1;
1821       switch (xd->link.link_duplex)
1822         {
1823         case ETH_LINK_HALF_DUPLEX:
1824           hw_flags |= VNET_HW_INTERFACE_FLAG_HALF_DUPLEX;
1825           break;
1826         case ETH_LINK_FULL_DUPLEX:
1827           hw_flags |= VNET_HW_INTERFACE_FLAG_FULL_DUPLEX;
1828           break;
1829         default:
1830           break;
1831         }
1832     }
1833   if (xd->link.link_speed != prev_link.link_speed)
1834     vnet_hw_interface_set_link_speed (vnm, xd->hw_if_index,
1835                                       xd->link.link_speed * 1000);
1836
1837   if (xd->link.link_status != prev_link.link_status)
1838     {
1839       hw_flags_chg = 1;
1840
1841       if (xd->link.link_status)
1842         hw_flags |= VNET_HW_INTERFACE_FLAG_LINK_UP;
1843     }
1844
1845   if (hw_flags_chg)
1846     {
1847       if (LINK_STATE_ELOGS)
1848         {
1849           ELOG_TYPE_DECLARE (e) =
1850           {
1851           .format =
1852               "update-link-state: sw_if_index %d, new flags %d",.format_args
1853               = "i4i4",};
1854
1855           struct
1856           {
1857             u32 sw_if_index;
1858             u32 flags;
1859           } *ed;
1860           ed = ELOG_DATA (&vlib_global_main.elog_main, e);
1861           ed->sw_if_index = xd->sw_if_index;
1862           ed->flags = hw_flags;
1863         }
1864       vnet_hw_interface_set_flags (vnm, xd->hw_if_index, hw_flags);
1865     }
1866 }
1867
1868 static uword
1869 dpdk_process (vlib_main_t * vm, vlib_node_runtime_t * rt, vlib_frame_t * f)
1870 {
1871   clib_error_t *error;
1872   dpdk_main_t *dm = &dpdk_main;
1873   dpdk_device_t *xd;
1874   vlib_thread_main_t *tm = vlib_get_thread_main ();
1875
1876   error = dpdk_lib_init (dm);
1877
1878   if (error)
1879     clib_error_report (error);
1880
1881   if (dpdk_cryptodev_init)
1882     {
1883       error = dpdk_cryptodev_init (vm);
1884       if (error)
1885         {
1886           vlib_log_warn (dpdk_main.log_cryptodev, "%U", format_clib_error,
1887                          error);
1888           clib_error_free (error);
1889         }
1890     }
1891
1892   tm->worker_thread_release = 1;
1893
1894   f64 now = vlib_time_now (vm);
1895   vec_foreach (xd, dm->devices)
1896   {
1897     dpdk_update_link_state (xd, now);
1898   }
1899
1900   while (1)
1901     {
1902       /*
1903        * check each time through the loop in case intervals are changed
1904        */
1905       f64 min_wait = dm->link_state_poll_interval < dm->stat_poll_interval ?
1906         dm->link_state_poll_interval : dm->stat_poll_interval;
1907
1908       vlib_process_wait_for_event_or_clock (vm, min_wait);
1909
1910       if (dm->admin_up_down_in_progress)
1911         /* skip the poll if an admin up down is in progress (on any interface) */
1912         continue;
1913
1914       vec_foreach (xd, dm->devices)
1915       {
1916         f64 now = vlib_time_now (vm);
1917         if ((now - xd->time_last_stats_update) >= dm->stat_poll_interval)
1918           dpdk_update_counters (xd, now);
1919         if ((now - xd->time_last_link_update) >= dm->link_state_poll_interval)
1920           dpdk_update_link_state (xd, now);
1921
1922       }
1923     }
1924
1925   return 0;
1926 }
1927
1928 /* *INDENT-OFF* */
1929 VLIB_REGISTER_NODE (dpdk_process_node,static) = {
1930     .function = dpdk_process,
1931     .type = VLIB_NODE_TYPE_PROCESS,
1932     .name = "dpdk-process",
1933     .process_log2_n_stack_bytes = 17,
1934 };
1935 /* *INDENT-ON* */
1936
1937 static clib_error_t *
1938 dpdk_init (vlib_main_t * vm)
1939 {
1940   dpdk_main_t *dm = &dpdk_main;
1941   clib_error_t *error = 0;
1942
1943   /* verify that structs are cacheline aligned */
1944   STATIC_ASSERT (offsetof (dpdk_device_t, cacheline0) == 0,
1945                  "Cache line marker must be 1st element in dpdk_device_t");
1946   STATIC_ASSERT (offsetof (dpdk_device_t, cacheline1) ==
1947                  CLIB_CACHE_LINE_BYTES,
1948                  "Data in cache line 0 is bigger than cache line size");
1949   STATIC_ASSERT (offsetof (frame_queue_trace_t, cacheline0) == 0,
1950                  "Cache line marker must be 1st element in frame_queue_trace_t");
1951
1952   dpdk_cli_reference ();
1953
1954   dm->vlib_main = vm;
1955   dm->vnet_main = vnet_get_main ();
1956   dm->conf = &dpdk_config_main;
1957
1958   dm->conf->nchannels = 4;
1959   vec_add1 (dm->conf->eal_init_args, (u8 *) "vnet");
1960
1961   /* Default vlib_buffer_t flags, DISABLES tcp/udp checksumming... */
1962   dm->buffer_flags_template = (VLIB_BUFFER_TOTAL_LENGTH_VALID |
1963                                VLIB_BUFFER_EXT_HDR_VALID |
1964                                VNET_BUFFER_F_L4_CHECKSUM_COMPUTED |
1965                                VNET_BUFFER_F_L4_CHECKSUM_CORRECT);
1966
1967   dm->stat_poll_interval = DPDK_STATS_POLL_INTERVAL;
1968   dm->link_state_poll_interval = DPDK_LINK_POLL_INTERVAL;
1969
1970   dm->log_default = vlib_log_register_class ("dpdk", 0);
1971   dm->log_cryptodev = vlib_log_register_class ("dpdk", "cryptodev");
1972   dm->log_ipsec = vlib_log_register_class ("dpdk", "ipsec");
1973
1974   return error;
1975 }
1976
1977 VLIB_INIT_FUNCTION (dpdk_init);
1978
1979 /*
1980  * fd.io coding-style-patch-verification: ON
1981  *
1982  * Local Variables:
1983  * eval: (c-set-style "gnu")
1984  * End:
1985  */