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