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