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