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