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