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