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