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