VPP-1204: Fix coverity warning
[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       if (hi)
700         hi->max_l3_packet_bytes[VLIB_RX] = hi->max_l3_packet_bytes[VLIB_TX] =
701           xd->port_conf.rxmode.max_rx_pkt_len - sizeof (ethernet_header_t);
702       else
703         clib_warning ("hi NULL");
704
705       rte_eth_dev_set_mtu (xd->device_index, mtu);
706     }
707
708   if (nb_desc > dm->conf->num_mbufs)
709     clib_warning ("%d mbufs allocated but total rx/tx ring size is %d\n",
710                   dm->conf->num_mbufs, nb_desc);
711
712   return 0;
713 }
714
715 static void
716 dpdk_bind_devices_to_uio (dpdk_config_main_t * conf)
717 {
718   clib_error_t *error;
719   u8 *pci_addr = 0;
720   int num_whitelisted = vec_len (conf->dev_confs);
721   vlib_pci_device_info_t *d = 0;
722   vlib_pci_addr_t *addr = 0, *addrs;
723
724   addrs = vlib_pci_get_all_dev_addrs ();
725   /* *INDENT-OFF* */
726   vec_foreach (addr, addrs)
727     {
728     dpdk_device_config_t * devconf = 0;
729     vec_reset_length (pci_addr);
730     pci_addr = format (pci_addr, "%U%c", format_vlib_pci_addr, addr, 0);
731     if (d)
732     {
733       vlib_pci_free_device_info (d);
734       d = 0;
735       }
736     d = vlib_pci_get_device_info (addr, &error);
737     if (error)
738     {
739       clib_error_report (error);
740       continue;
741     }
742
743     if (d->device_class != PCI_CLASS_NETWORK_ETHERNET && d->device_class != PCI_CLASS_PROCESSOR_CO)
744       continue;
745
746     if (num_whitelisted)
747       {
748         uword * p = hash_get (conf->device_config_index_by_pci_addr, addr->as_u32);
749
750         if (!p)
751           continue;
752
753         devconf = pool_elt_at_index (conf->dev_confs, p[0]);
754       }
755
756     /* virtio */
757     if (d->vendor_id == 0x1af4 &&
758             (d->device_id == VIRTIO_PCI_LEGACY_DEVICEID_NET ||
759              d->device_id == VIRTIO_PCI_MODERN_DEVICEID_NET))
760       ;
761     /* vmxnet3 */
762     else if (d->vendor_id == 0x15ad && d->device_id == 0x07b0)
763       ;
764     /* all Intel network devices */
765     else if (d->vendor_id == 0x8086 && d->device_class == PCI_CLASS_NETWORK_ETHERNET)
766       ;
767     /* all Intel QAT devices VFs */
768     else if (d->vendor_id == 0x8086 && d->device_class == PCI_CLASS_PROCESSOR_CO &&
769         (d->device_id == 0x0443 || d->device_id == 0x37c9 || d->device_id == 0x19e3))
770       ;
771     /* Cisco VIC */
772     else if (d->vendor_id == 0x1137 && d->device_id == 0x0043)
773       ;
774     /* Chelsio T4/T5 */
775     else if (d->vendor_id == 0x1425 && (d->device_id & 0xe000) == 0x4000)
776       ;
777     /* Amazen Elastic Network Adapter */
778     else if (d->vendor_id == 0x1d0f && d->device_id >= 0xec20 && d->device_id <= 0xec21)
779       ;
780     /* Mellanox  */
781     else if (d->vendor_id == 0x15b3 && d->device_id >= 0x1013 && d->device_id <= 0x101a)
782       {
783         continue;
784       }
785     else
786       {
787         clib_warning ("Unsupported PCI device 0x%04x:0x%04x found "
788                       "at PCI address %s\n", (u16) d->vendor_id, (u16) d->device_id,
789                       pci_addr);
790         continue;
791       }
792
793     error = vlib_pci_bind_to_uio (addr, (char *) conf->uio_driver_name);
794
795     if (error)
796       {
797         if (devconf == 0)
798           {
799             pool_get (conf->dev_confs, devconf);
800             hash_set (conf->device_config_index_by_pci_addr, addr->as_u32,
801                       devconf - conf->dev_confs);
802             devconf->pci_addr.as_u32 = addr->as_u32;
803           }
804         devconf->is_blacklisted = 1;
805         clib_error_report (error);
806       }
807   }
808   /* *INDENT-ON* */
809   vec_free (pci_addr);
810   vlib_pci_free_device_info (d);
811 }
812
813 static clib_error_t *
814 dpdk_device_config (dpdk_config_main_t * conf, vlib_pci_addr_t pci_addr,
815                     unformat_input_t * input, u8 is_default)
816 {
817   clib_error_t *error = 0;
818   uword *p;
819   dpdk_device_config_t *devconf;
820   unformat_input_t sub_input;
821
822   if (is_default)
823     {
824       devconf = &conf->default_devconf;
825     }
826   else
827     {
828       p = hash_get (conf->device_config_index_by_pci_addr, pci_addr.as_u32);
829
830       if (!p)
831         {
832           pool_get (conf->dev_confs, devconf);
833           hash_set (conf->device_config_index_by_pci_addr, pci_addr.as_u32,
834                     devconf - conf->dev_confs);
835         }
836       else
837         return clib_error_return (0,
838                                   "duplicate configuration for PCI address %U",
839                                   format_vlib_pci_addr, &pci_addr);
840     }
841
842   devconf->pci_addr.as_u32 = pci_addr.as_u32;
843   devconf->hqos_enabled = 0;
844   dpdk_device_config_hqos_default (&devconf->hqos);
845
846   if (!input)
847     return 0;
848
849   unformat_skip_white_space (input);
850   while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
851     {
852       if (unformat (input, "num-rx-queues %u", &devconf->num_rx_queues))
853         ;
854       else if (unformat (input, "num-tx-queues %u", &devconf->num_tx_queues))
855         ;
856       else if (unformat (input, "num-rx-desc %u", &devconf->num_rx_desc))
857         ;
858       else if (unformat (input, "num-tx-desc %u", &devconf->num_tx_desc))
859         ;
860       else if (unformat (input, "workers %U", unformat_bitmap_list,
861                          &devconf->workers))
862         ;
863       else
864         if (unformat
865             (input, "rss %U", unformat_vlib_cli_sub_input, &sub_input))
866         {
867           error = unformat_rss_fn (&sub_input, &devconf->rss_fn);
868           if (error)
869             break;
870         }
871       else if (unformat (input, "vlan-strip-offload off"))
872         devconf->vlan_strip_offload = DPDK_DEVICE_VLAN_STRIP_OFF;
873       else if (unformat (input, "vlan-strip-offload on"))
874         devconf->vlan_strip_offload = DPDK_DEVICE_VLAN_STRIP_ON;
875       else
876         if (unformat
877             (input, "hqos %U", unformat_vlib_cli_sub_input, &sub_input))
878         {
879           devconf->hqos_enabled = 1;
880           error = unformat_hqos (&sub_input, &devconf->hqos);
881           if (error)
882             break;
883         }
884       else if (unformat (input, "hqos"))
885         {
886           devconf->hqos_enabled = 1;
887         }
888       else
889         {
890           error = clib_error_return (0, "unknown input `%U'",
891                                      format_unformat_error, input);
892           break;
893         }
894     }
895
896   if (error)
897     return error;
898
899   if (devconf->workers && devconf->num_rx_queues == 0)
900     devconf->num_rx_queues = clib_bitmap_count_set_bits (devconf->workers);
901   else if (devconf->workers &&
902            clib_bitmap_count_set_bits (devconf->workers) !=
903            devconf->num_rx_queues)
904     error =
905       clib_error_return (0,
906                          "%U: number of worker threadds must be "
907                          "equal to number of rx queues", format_vlib_pci_addr,
908                          &pci_addr);
909
910   return error;
911 }
912
913 static clib_error_t *
914 dpdk_config (vlib_main_t * vm, unformat_input_t * input)
915 {
916   clib_error_t *error = 0;
917   dpdk_main_t *dm = &dpdk_main;
918   dpdk_config_main_t *conf = &dpdk_config_main;
919   vlib_thread_main_t *tm = vlib_get_thread_main ();
920   dpdk_device_config_t *devconf;
921   vlib_pci_addr_t pci_addr;
922   unformat_input_t sub_input;
923   uword x;
924   u8 *s, *tmp = 0;
925   u8 *rte_cmd = 0, *ethname = 0;
926   u32 log_level;
927   int ret, i;
928   int num_whitelisted = 0;
929   u8 no_pci = 0;
930   u8 no_huge = 0;
931   u8 huge_dir = 0;
932   u8 file_prefix = 0;
933   u8 *socket_mem = 0;
934   u8 *huge_dir_path = 0;
935
936   huge_dir_path =
937     format (0, "%s/hugepages%c", vlib_unix_get_runtime_dir (), 0);
938
939   conf->device_config_index_by_pci_addr = hash_create (0, sizeof (uword));
940   log_level = RTE_LOG_NOTICE;
941
942   while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
943     {
944       /* Prime the pump */
945       if (unformat (input, "no-hugetlb"))
946         {
947           vec_add1 (conf->eal_init_args, (u8 *) "no-huge");
948           no_huge = 1;
949         }
950
951       else if (unformat (input, "enable-tcp-udp-checksum"))
952         conf->enable_tcp_udp_checksum = 1;
953
954       else if (unformat (input, "no-tx-checksum-offload"))
955         conf->no_tx_checksum_offload = 1;
956
957       else if (unformat (input, "decimal-interface-names"))
958         conf->interface_name_format_decimal = 1;
959
960       else if (unformat (input, "log-level %U", unformat_dpdk_log_level, &x))
961         log_level = x;
962
963       else if (unformat (input, "no-multi-seg"))
964         conf->no_multi_seg = 1;
965
966       else if (unformat (input, "dev default %U", unformat_vlib_cli_sub_input,
967                          &sub_input))
968         {
969           error =
970             dpdk_device_config (conf, (vlib_pci_addr_t) (u32) ~ 1, &sub_input,
971                                 1);
972
973           if (error)
974             return error;
975         }
976       else
977         if (unformat
978             (input, "dev %U %U", unformat_vlib_pci_addr, &pci_addr,
979              unformat_vlib_cli_sub_input, &sub_input))
980         {
981           error = dpdk_device_config (conf, pci_addr, &sub_input, 0);
982
983           if (error)
984             return error;
985
986           num_whitelisted++;
987         }
988       else if (unformat (input, "dev %U", unformat_vlib_pci_addr, &pci_addr))
989         {
990           error = dpdk_device_config (conf, pci_addr, 0, 0);
991
992           if (error)
993             return error;
994
995           num_whitelisted++;
996         }
997       else if (unformat (input, "num-mbufs %d", &conf->num_mbufs))
998         ;
999       else if (unformat (input, "uio-driver %s", &conf->uio_driver_name))
1000         ;
1001       else if (unformat (input, "socket-mem %s", &socket_mem))
1002         ;
1003       else if (unformat (input, "no-pci"))
1004         {
1005           no_pci = 1;
1006           tmp = format (0, "--no-pci%c", 0);
1007           vec_add1 (conf->eal_init_args, tmp);
1008         }
1009       else if (unformat (input, "poll-sleep %d", &dm->poll_sleep_usec))
1010         ;
1011
1012 #define _(a)                                    \
1013       else if (unformat(input, #a))             \
1014         {                                       \
1015           tmp = format (0, "--%s%c", #a, 0);    \
1016           vec_add1 (conf->eal_init_args, tmp);    \
1017         }
1018       foreach_eal_double_hyphen_predicate_arg
1019 #undef _
1020 #define _(a)                                          \
1021         else if (unformat(input, #a " %s", &s))       \
1022           {                                           \
1023             if (!strncmp(#a, "huge-dir", 8))          \
1024               huge_dir = 1;                           \
1025             else if (!strncmp(#a, "file-prefix", 11)) \
1026               file_prefix = 1;                        \
1027             tmp = format (0, "--%s%c", #a, 0);        \
1028             vec_add1 (conf->eal_init_args, tmp);      \
1029             vec_add1 (s, 0);                          \
1030             if (!strncmp(#a, "vdev", 4))              \
1031               if (strstr((char*)s, "af_packet"))      \
1032                 clib_warning ("af_packet obsoleted. Use CLI 'create host-interface'."); \
1033             vec_add1 (conf->eal_init_args, s);        \
1034           }
1035         foreach_eal_double_hyphen_arg
1036 #undef _
1037 #define _(a,b)                                          \
1038           else if (unformat(input, #a " %s", &s))       \
1039             {                                           \
1040               tmp = format (0, "-%s%c", #b, 0);         \
1041               vec_add1 (conf->eal_init_args, tmp);      \
1042               vec_add1 (s, 0);                          \
1043               vec_add1 (conf->eal_init_args, s);        \
1044             }
1045         foreach_eal_single_hyphen_arg
1046 #undef _
1047 #define _(a,b)                                          \
1048             else if (unformat(input, #a " %s", &s))     \
1049               {                                         \
1050                 tmp = format (0, "-%s%c", #b, 0);       \
1051                 vec_add1 (conf->eal_init_args, tmp);    \
1052                 vec_add1 (s, 0);                        \
1053                 vec_add1 (conf->eal_init_args, s);      \
1054                 conf->a##_set_manually = 1;             \
1055               }
1056         foreach_eal_single_hyphen_mandatory_arg
1057 #undef _
1058         else if (unformat (input, "default"))
1059         ;
1060
1061       else if (unformat_skip_white_space (input))
1062         ;
1063       else
1064         {
1065           error = clib_error_return (0, "unknown input `%U'",
1066                                      format_unformat_error, input);
1067           goto done;
1068         }
1069     }
1070
1071   if (!conf->uio_driver_name)
1072     conf->uio_driver_name = format (0, "auto%c", 0);
1073
1074   /*
1075    * Use 1G huge pages if available.
1076    */
1077   if (!no_huge && !huge_dir)
1078     {
1079       u32 x, *mem_by_socket = 0;
1080       uword c = 0;
1081       int rv;
1082
1083       umount ((char *) huge_dir_path);
1084
1085       /* Process "socket-mem" parameter value */
1086       if (vec_len (socket_mem))
1087         {
1088           unformat_input_t in;
1089           unformat_init_vector (&in, socket_mem);
1090           while (unformat_check_input (&in) != UNFORMAT_END_OF_INPUT)
1091             {
1092               if (unformat (&in, "%u,", &x))
1093                 ;
1094               else if (unformat (&in, "%u", &x))
1095                 ;
1096               else if (unformat (&in, ","))
1097                 x = 0;
1098               else
1099                 break;
1100
1101               vec_add1 (mem_by_socket, x);
1102             }
1103           /* Note: unformat_free vec_frees(in.buffer), aka socket_mem... */
1104           unformat_free (&in);
1105           socket_mem = 0;
1106         }
1107       else
1108         {
1109           /* *INDENT-OFF* */
1110           clib_bitmap_foreach (c, tm->cpu_socket_bitmap, (
1111             {
1112               vec_validate(mem_by_socket, c);
1113               mem_by_socket[c] = 64; /* default per-socket mem */
1114             }
1115           ));
1116           /* *INDENT-ON* */
1117         }
1118
1119       /* *INDENT-OFF* */
1120       clib_bitmap_foreach (c, tm->cpu_socket_bitmap, (
1121         {
1122           clib_error_t *e;
1123
1124           vec_validate(mem_by_socket, c);
1125
1126           e = clib_sysfs_prealloc_hugepages(c, 2 << 10, mem_by_socket[c] / 2);
1127           if (e)
1128             clib_error_report (e);
1129       }));
1130       /* *INDENT-ON* */
1131
1132       if (mem_by_socket == 0)
1133         {
1134           error = clib_error_return (0, "mem_by_socket NULL");
1135           goto done;
1136         }
1137       _vec_len (mem_by_socket) = c + 1;
1138
1139       /* regenerate socket_mem string */
1140       vec_foreach_index (x, mem_by_socket)
1141         socket_mem = format (socket_mem, "%s%u",
1142                              socket_mem ? "," : "", mem_by_socket[x]);
1143       socket_mem = format (socket_mem, "%c", 0);
1144
1145       vec_free (mem_by_socket);
1146
1147       error = vlib_unix_recursive_mkdir ((char *) huge_dir_path);
1148       if (error)
1149         {
1150           goto done;
1151         }
1152
1153       rv = mount ("none", (char *) huge_dir_path, "hugetlbfs", 0, NULL);
1154
1155       if (rv)
1156         {
1157           error = clib_error_return (0, "mount failed %d", errno);
1158           goto done;
1159         }
1160
1161       tmp = format (0, "--huge-dir%c", 0);
1162       vec_add1 (conf->eal_init_args, tmp);
1163       tmp = format (0, "%s%c", huge_dir_path, 0);
1164       vec_add1 (conf->eal_init_args, tmp);
1165       if (!file_prefix)
1166         {
1167           tmp = format (0, "--file-prefix%c", 0);
1168           vec_add1 (conf->eal_init_args, tmp);
1169           tmp = format (0, "vpp%c", 0);
1170           vec_add1 (conf->eal_init_args, tmp);
1171         }
1172     }
1173
1174   vec_free (rte_cmd);
1175   vec_free (ethname);
1176
1177   if (error)
1178     return error;
1179
1180   /* I'll bet that -c and -n must be the first and second args... */
1181   if (!conf->coremask_set_manually)
1182     {
1183       vlib_thread_registration_t *tr;
1184       uword *coremask = 0;
1185       int i;
1186
1187       /* main thread core */
1188       coremask = clib_bitmap_set (coremask, tm->main_lcore, 1);
1189
1190       for (i = 0; i < vec_len (tm->registrations); i++)
1191         {
1192           tr = tm->registrations[i];
1193           coremask = clib_bitmap_or (coremask, tr->coremask);
1194         }
1195
1196       vec_insert (conf->eal_init_args, 2, 1);
1197       conf->eal_init_args[1] = (u8 *) "-c";
1198       tmp = format (0, "%U%c", format_bitmap_hex, coremask, 0);
1199       conf->eal_init_args[2] = tmp;
1200       clib_bitmap_free (coremask);
1201     }
1202
1203   if (!conf->nchannels_set_manually)
1204     {
1205       vec_insert (conf->eal_init_args, 2, 3);
1206       conf->eal_init_args[3] = (u8 *) "-n";
1207       tmp = format (0, "%d", conf->nchannels);
1208       conf->eal_init_args[4] = tmp;
1209     }
1210
1211   if (no_pci == 0 && geteuid () == 0)
1212     dpdk_bind_devices_to_uio (conf);
1213
1214 #define _(x) \
1215     if (devconf->x == 0 && conf->default_devconf.x > 0) \
1216       devconf->x = conf->default_devconf.x ;
1217
1218   /* *INDENT-OFF* */
1219   pool_foreach (devconf, conf->dev_confs, ({
1220
1221     /* default per-device config items */
1222     foreach_dpdk_device_config_item
1223
1224     /* add DPDK EAL whitelist/blacklist entry */
1225     if (num_whitelisted > 0 && devconf->is_blacklisted == 0)
1226       {
1227         tmp = format (0, "-w%c", 0);
1228         vec_add1 (conf->eal_init_args, tmp);
1229         tmp = format (0, "%U%c", format_vlib_pci_addr, &devconf->pci_addr, 0);
1230         vec_add1 (conf->eal_init_args, tmp);
1231       }
1232     else if (num_whitelisted == 0 && devconf->is_blacklisted != 0)
1233       {
1234         tmp = format (0, "-b%c", 0);
1235         vec_add1 (conf->eal_init_args, tmp);
1236         tmp = format (0, "%U%c", format_vlib_pci_addr, &devconf->pci_addr, 0);
1237         vec_add1 (conf->eal_init_args, tmp);
1238       }
1239   }));
1240   /* *INDENT-ON* */
1241
1242 #undef _
1243
1244   /* set master-lcore */
1245   tmp = format (0, "--master-lcore%c", 0);
1246   vec_add1 (conf->eal_init_args, tmp);
1247   tmp = format (0, "%u%c", tm->main_lcore, 0);
1248   vec_add1 (conf->eal_init_args, tmp);
1249
1250   /* set socket-mem */
1251   tmp = format (0, "--socket-mem%c", 0);
1252   vec_add1 (conf->eal_init_args, tmp);
1253   tmp = format (0, "%s%c", socket_mem, 0);
1254   vec_add1 (conf->eal_init_args, tmp);
1255
1256   /* NULL terminate the "argv" vector, in case of stupidity */
1257   vec_add1 (conf->eal_init_args, 0);
1258   _vec_len (conf->eal_init_args) -= 1;
1259
1260   /* Set up DPDK eal and packet mbuf pool early. */
1261
1262   rte_log_set_global_level (log_level);
1263
1264   vm = vlib_get_main ();
1265
1266   /* make copy of args as rte_eal_init tends to mess up with arg array */
1267   for (i = 1; i < vec_len (conf->eal_init_args); i++)
1268     conf->eal_init_args_str = format (conf->eal_init_args_str, "%s ",
1269                                       conf->eal_init_args[i]);
1270
1271   clib_warning ("EAL init args: %s", conf->eal_init_args_str);
1272   ret =
1273     rte_eal_init (vec_len (conf->eal_init_args),
1274                   (char **) conf->eal_init_args);
1275
1276   /* lazy umount hugepages */
1277   umount2 ((char *) huge_dir_path, MNT_DETACH);
1278   rmdir ((char *) huge_dir_path);
1279   vec_free (huge_dir_path);
1280
1281   if (ret < 0)
1282     return clib_error_return (0, "rte_eal_init returned %d", ret);
1283
1284   /* Dump the physical memory layout prior to creating the mbuf_pool */
1285   fprintf (stdout, "DPDK physical memory layout:\n");
1286   rte_dump_physmem_layout (stdout);
1287
1288   /* set custom ring memory allocator */
1289   {
1290     struct rte_mempool_ops *ops = NULL;
1291
1292     ops = get_ops_by_name ("ring_sp_sc");
1293     ops->alloc = dpdk_ring_alloc;
1294
1295     ops = get_ops_by_name ("ring_mp_sc");
1296     ops->alloc = dpdk_ring_alloc;
1297
1298     ops = get_ops_by_name ("ring_sp_mc");
1299     ops->alloc = dpdk_ring_alloc;
1300
1301     ops = get_ops_by_name ("ring_mp_mc");
1302     ops->alloc = dpdk_ring_alloc;
1303   }
1304
1305   /* main thread 1st */
1306   error = dpdk_buffer_pool_create (vm, conf->num_mbufs, rte_socket_id ());
1307   if (error)
1308     return error;
1309
1310   for (i = 0; i < RTE_MAX_LCORE; i++)
1311     {
1312       error = dpdk_buffer_pool_create (vm, conf->num_mbufs,
1313                                        rte_lcore_to_socket_id (i));
1314       if (error)
1315         return error;
1316     }
1317
1318 done:
1319   return error;
1320 }
1321
1322 VLIB_CONFIG_FUNCTION (dpdk_config, "dpdk");
1323
1324 void
1325 dpdk_update_link_state (dpdk_device_t * xd, f64 now)
1326 {
1327   vnet_main_t *vnm = vnet_get_main ();
1328   struct rte_eth_link prev_link = xd->link;
1329   u32 hw_flags = 0;
1330   u8 hw_flags_chg = 0;
1331
1332   /* only update link state for PMD interfaces */
1333   if ((xd->flags & DPDK_DEVICE_FLAG_PMD) == 0)
1334     return;
1335
1336   xd->time_last_link_update = now ? now : xd->time_last_link_update;
1337   memset (&xd->link, 0, sizeof (xd->link));
1338   rte_eth_link_get_nowait (xd->device_index, &xd->link);
1339
1340   if (LINK_STATE_ELOGS)
1341     {
1342       vlib_main_t *vm = vlib_get_main ();
1343       ELOG_TYPE_DECLARE (e) =
1344       {
1345       .format =
1346           "update-link-state: sw_if_index %d, admin_up %d,"
1347           "old link_state %d new link_state %d",.format_args = "i4i1i1i1",};
1348
1349       struct
1350       {
1351         u32 sw_if_index;
1352         u8 admin_up;
1353         u8 old_link_state;
1354         u8 new_link_state;
1355       } *ed;
1356       ed = ELOG_DATA (&vm->elog_main, e);
1357       ed->sw_if_index = xd->vlib_sw_if_index;
1358       ed->admin_up = (xd->flags & DPDK_DEVICE_FLAG_ADMIN_UP) != 0;
1359       ed->old_link_state = (u8)
1360         vnet_hw_interface_is_link_up (vnm, xd->hw_if_index);
1361       ed->new_link_state = (u8) xd->link.link_status;
1362     }
1363
1364   if ((xd->flags & (DPDK_DEVICE_FLAG_ADMIN_UP | DPDK_DEVICE_FLAG_BOND_SLAVE))
1365       && ((xd->link.link_status != 0) ^
1366           vnet_hw_interface_is_link_up (vnm, xd->hw_if_index)))
1367     {
1368       hw_flags_chg = 1;
1369       hw_flags |= (xd->link.link_status ? VNET_HW_INTERFACE_FLAG_LINK_UP : 0);
1370     }
1371
1372   if (hw_flags_chg || (xd->link.link_duplex != prev_link.link_duplex))
1373     {
1374       hw_flags_chg = 1;
1375       switch (xd->link.link_duplex)
1376         {
1377         case ETH_LINK_HALF_DUPLEX:
1378           hw_flags |= VNET_HW_INTERFACE_FLAG_HALF_DUPLEX;
1379           break;
1380         case ETH_LINK_FULL_DUPLEX:
1381           hw_flags |= VNET_HW_INTERFACE_FLAG_FULL_DUPLEX;
1382           break;
1383         default:
1384           break;
1385         }
1386     }
1387   if (hw_flags_chg || (xd->link.link_speed != prev_link.link_speed))
1388     {
1389       hw_flags_chg = 1;
1390       switch (xd->link.link_speed)
1391         {
1392         case ETH_SPEED_NUM_10M:
1393           hw_flags |= VNET_HW_INTERFACE_FLAG_SPEED_10M;
1394           break;
1395         case ETH_SPEED_NUM_100M:
1396           hw_flags |= VNET_HW_INTERFACE_FLAG_SPEED_100M;
1397           break;
1398         case ETH_SPEED_NUM_1G:
1399           hw_flags |= VNET_HW_INTERFACE_FLAG_SPEED_1G;
1400           break;
1401         case ETH_SPEED_NUM_2_5G:
1402           hw_flags |= VNET_HW_INTERFACE_FLAG_SPEED_2_5G;
1403           break;
1404         case ETH_SPEED_NUM_5G:
1405           hw_flags |= VNET_HW_INTERFACE_FLAG_SPEED_5G;
1406           break;
1407         case ETH_SPEED_NUM_10G:
1408           hw_flags |= VNET_HW_INTERFACE_FLAG_SPEED_10G;
1409           break;
1410         case ETH_SPEED_NUM_20G:
1411           hw_flags |= VNET_HW_INTERFACE_FLAG_SPEED_20G;
1412           break;
1413         case ETH_SPEED_NUM_25G:
1414           hw_flags |= VNET_HW_INTERFACE_FLAG_SPEED_25G;
1415           break;
1416         case ETH_SPEED_NUM_40G:
1417           hw_flags |= VNET_HW_INTERFACE_FLAG_SPEED_40G;
1418           break;
1419         case ETH_SPEED_NUM_50G:
1420           hw_flags |= VNET_HW_INTERFACE_FLAG_SPEED_50G;
1421           break;
1422         case ETH_SPEED_NUM_56G:
1423           hw_flags |= VNET_HW_INTERFACE_FLAG_SPEED_56G;
1424           break;
1425         case ETH_SPEED_NUM_100G:
1426           hw_flags |= VNET_HW_INTERFACE_FLAG_SPEED_100G;
1427           break;
1428         case 0:
1429           break;
1430         default:
1431           clib_warning ("unknown link speed %d", xd->link.link_speed);
1432           break;
1433         }
1434     }
1435   if (hw_flags_chg)
1436     {
1437       if (LINK_STATE_ELOGS)
1438         {
1439           vlib_main_t *vm = vlib_get_main ();
1440
1441           ELOG_TYPE_DECLARE (e) =
1442           {
1443           .format =
1444               "update-link-state: sw_if_index %d, new flags %d",.format_args
1445               = "i4i4",};
1446
1447           struct
1448           {
1449             u32 sw_if_index;
1450             u32 flags;
1451           } *ed;
1452           ed = ELOG_DATA (&vm->elog_main, e);
1453           ed->sw_if_index = xd->vlib_sw_if_index;
1454           ed->flags = hw_flags;
1455         }
1456       vnet_hw_interface_set_flags (vnm, xd->hw_if_index, hw_flags);
1457     }
1458 }
1459
1460 static uword
1461 dpdk_process (vlib_main_t * vm, vlib_node_runtime_t * rt, vlib_frame_t * f)
1462 {
1463   clib_error_t *error;
1464   vnet_main_t *vnm = vnet_get_main ();
1465   dpdk_main_t *dm = &dpdk_main;
1466   ethernet_main_t *em = &ethernet_main;
1467   dpdk_device_t *xd;
1468   vlib_thread_main_t *tm = vlib_get_thread_main ();
1469   int i;
1470
1471   error = dpdk_lib_init (dm);
1472
1473   if (error)
1474     clib_error_report (error);
1475
1476   tm->worker_thread_release = 1;
1477
1478   f64 now = vlib_time_now (vm);
1479   vec_foreach (xd, dm->devices)
1480   {
1481     dpdk_update_link_state (xd, now);
1482   }
1483
1484   {
1485     /*
1486      * Extra set up for bond interfaces:
1487      *  1. Setup MACs for bond interfaces and their slave links which was set
1488      *     in dpdk_device_setup() but needs to be done again here to take
1489      *     effect.
1490      *  2. Set up info and register slave link state change callback handling.
1491      *  3. Set up info for bond interface related CLI support.
1492      */
1493     int nports = rte_eth_dev_count ();
1494     if (nports > 0)
1495       {
1496         for (i = 0; i < nports; i++)
1497           {
1498             xd = &dm->devices[i];
1499             ASSERT (i == xd->device_index);
1500             if (xd->pmd == VNET_DPDK_PMD_BOND)
1501               {
1502                 u8 addr[6];
1503                 dpdk_portid_t slink[16];
1504                 int nlink = rte_eth_bond_slaves_get (i, slink, 16);
1505                 if (nlink > 0)
1506                   {
1507                     vnet_hw_interface_t *bhi;
1508                     ethernet_interface_t *bei;
1509                     int rv;
1510
1511                     /* Get MAC of 1st slave link */
1512                     rte_eth_macaddr_get
1513                       (slink[0], (struct ether_addr *) addr);
1514
1515                     /* Set MAC of bounded interface to that of 1st slave link */
1516                     clib_warning ("Set MAC for bond port %d BondEthernet%d",
1517                                   i, xd->port_id);
1518                     rv = rte_eth_bond_mac_address_set
1519                       (i, (struct ether_addr *) addr);
1520                     if (rv)
1521                       clib_warning ("Set MAC addr failure rv=%d", rv);
1522
1523                     /* Populate MAC of bonded interface in VPP hw tables */
1524                     bhi = vnet_get_hw_interface
1525                       (vnm, dm->devices[i].hw_if_index);
1526                     bei = pool_elt_at_index
1527                       (em->interfaces, bhi->hw_instance);
1528                     clib_memcpy (bhi->hw_address, addr, 6);
1529                     clib_memcpy (bei->address, addr, 6);
1530
1531                     /* Init l3 packet size allowed on bonded interface */
1532                     bhi->max_packet_bytes = ETHERNET_MAX_PACKET_BYTES;
1533                     bhi->max_l3_packet_bytes[VLIB_RX] =
1534                       bhi->max_l3_packet_bytes[VLIB_TX] =
1535                       ETHERNET_MAX_PACKET_BYTES - sizeof (ethernet_header_t);
1536                     while (nlink >= 1)
1537                       {         /* for all slave links */
1538                         int slave = slink[--nlink];
1539                         dpdk_device_t *sdev = &dm->devices[slave];
1540                         vnet_hw_interface_t *shi;
1541                         vnet_sw_interface_t *ssi;
1542                         ethernet_interface_t *sei;
1543                         /* Add MAC to all slave links except the first one */
1544                         if (nlink)
1545                           {
1546                             clib_warning ("Add MAC for slave port %d", slave);
1547                             rv = rte_eth_dev_mac_addr_add
1548                               (slave, (struct ether_addr *) addr, 0);
1549                             if (rv)
1550                               clib_warning ("Add MAC addr failure rv=%d", rv);
1551                           }
1552                         /* Setup slave link state change callback handling */
1553                         rte_eth_dev_callback_register
1554                           (slave, RTE_ETH_EVENT_INTR_LSC,
1555                            dpdk_port_state_callback, NULL);
1556                         dpdk_device_t *sxd = &dm->devices[slave];
1557                         sxd->flags |= DPDK_DEVICE_FLAG_BOND_SLAVE;
1558                         sxd->bond_port = i;
1559                         /* Set slaves bitmap for bonded interface */
1560                         bhi->bond_info = clib_bitmap_set
1561                           (bhi->bond_info, sdev->hw_if_index, 1);
1562                         /* Set MACs and slave link flags on slave interface */
1563                         shi = vnet_get_hw_interface (vnm, sdev->hw_if_index);
1564                         ssi = vnet_get_sw_interface
1565                           (vnm, sdev->vlib_sw_if_index);
1566                         sei = pool_elt_at_index
1567                           (em->interfaces, shi->hw_instance);
1568                         shi->bond_info = VNET_HW_INTERFACE_BOND_INFO_SLAVE;
1569                         ssi->flags |= VNET_SW_INTERFACE_FLAG_BOND_SLAVE;
1570                         clib_memcpy (shi->hw_address, addr, 6);
1571                         clib_memcpy (sei->address, addr, 6);
1572                         /* Set l3 packet size allowed as the lowest of slave */
1573                         if (bhi->max_l3_packet_bytes[VLIB_RX] >
1574                             shi->max_l3_packet_bytes[VLIB_RX])
1575                           bhi->max_l3_packet_bytes[VLIB_RX] =
1576                             bhi->max_l3_packet_bytes[VLIB_TX] =
1577                             shi->max_l3_packet_bytes[VLIB_RX];
1578                         /* Set max packet size allowed as the lowest of slave */
1579                         if (bhi->max_packet_bytes > shi->max_packet_bytes)
1580                           bhi->max_packet_bytes = shi->max_packet_bytes;
1581                       }
1582                   }
1583               }
1584           }
1585       }
1586   }
1587
1588   while (1)
1589     {
1590       /*
1591        * check each time through the loop in case intervals are changed
1592        */
1593       f64 min_wait = dm->link_state_poll_interval < dm->stat_poll_interval ?
1594         dm->link_state_poll_interval : dm->stat_poll_interval;
1595
1596       vlib_process_wait_for_event_or_clock (vm, min_wait);
1597
1598       if (dm->admin_up_down_in_progress)
1599         /* skip the poll if an admin up down is in progress (on any interface) */
1600         continue;
1601
1602       vec_foreach (xd, dm->devices)
1603       {
1604         f64 now = vlib_time_now (vm);
1605         if ((now - xd->time_last_stats_update) >= dm->stat_poll_interval)
1606           dpdk_update_counters (xd, now);
1607         if ((now - xd->time_last_link_update) >= dm->link_state_poll_interval)
1608           dpdk_update_link_state (xd, now);
1609
1610       }
1611     }
1612
1613   return 0;
1614 }
1615
1616 /* *INDENT-OFF* */
1617 VLIB_REGISTER_NODE (dpdk_process_node,static) = {
1618     .function = dpdk_process,
1619     .type = VLIB_NODE_TYPE_PROCESS,
1620     .name = "dpdk-process",
1621     .process_log2_n_stack_bytes = 17,
1622 };
1623 /* *INDENT-ON* */
1624
1625 static clib_error_t *
1626 dpdk_init (vlib_main_t * vm)
1627 {
1628   dpdk_main_t *dm = &dpdk_main;
1629   clib_error_t *error = 0;
1630   vlib_thread_main_t *tm = vlib_get_thread_main ();
1631
1632   /* verify that structs are cacheline aligned */
1633   STATIC_ASSERT (offsetof (dpdk_device_t, cacheline0) == 0,
1634                  "Cache line marker must be 1st element in dpdk_device_t");
1635   STATIC_ASSERT (offsetof (dpdk_device_t, cacheline1) ==
1636                  CLIB_CACHE_LINE_BYTES,
1637                  "Data in cache line 0 is bigger than cache line size");
1638   STATIC_ASSERT (offsetof (frame_queue_trace_t, cacheline0) == 0,
1639                  "Cache line marker must be 1st element in frame_queue_trace_t");
1640
1641   dm->vlib_main = vm;
1642   dm->vnet_main = vnet_get_main ();
1643   dm->conf = &dpdk_config_main;
1644
1645   dm->conf->nchannels = 4;
1646   dm->conf->num_mbufs = dm->conf->num_mbufs ? dm->conf->num_mbufs : NB_MBUF;
1647   vec_add1 (dm->conf->eal_init_args, (u8 *) "vnet");
1648
1649   vec_validate (dm->recycle, tm->n_thread_stacks - 1);
1650
1651   /* Default vlib_buffer_t flags, DISABLES tcp/udp checksumming... */
1652   dm->buffer_flags_template =
1653     (VLIB_BUFFER_TOTAL_LENGTH_VALID | VLIB_BUFFER_EXT_HDR_VALID
1654      | VNET_BUFFER_F_L4_CHECKSUM_COMPUTED |
1655      VNET_BUFFER_F_L4_CHECKSUM_CORRECT | VNET_BUFFER_F_L2_HDR_OFFSET_VALID);
1656
1657   dm->stat_poll_interval = DPDK_STATS_POLL_INTERVAL;
1658   dm->link_state_poll_interval = DPDK_LINK_POLL_INTERVAL;
1659
1660   /* init CLI */
1661   if ((error = vlib_call_init_function (vm, dpdk_cli_init)))
1662     return error;
1663
1664   return error;
1665 }
1666
1667 VLIB_INIT_FUNCTION (dpdk_init);
1668
1669
1670 /*
1671  * fd.io coding-style-patch-verification: ON
1672  *
1673  * Local Variables:
1674  * eval: (c-set-style "gnu")
1675  * End:
1676  */