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