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