dpdk: complete rework of the dpdk-input node
[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       int j;
260       struct rte_eth_dev_info dev_info;
261       struct rte_eth_link l;
262       dpdk_device_config_t *devconf = 0;
263       vlib_pci_addr_t pci_addr;
264       uword *p = 0;
265
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 (dm->conf->no_tx_checksum_offload == 0)
390                 {
391                   xd->tx_conf.txq_flags &= ~ETH_TXQ_FLAGS_NOXSUMS;
392                   xd->flags |=
393                     DPDK_DEVICE_FLAG_TX_OFFLOAD |
394                     DPDK_DEVICE_FLAG_INTEL_PHDR_CKSUM;
395                 }
396
397
398               break;
399             case VNET_DPDK_PMD_CXGBE:
400             case VNET_DPDK_PMD_MLX4:
401             case VNET_DPDK_PMD_MLX5:
402               xd->port_type = port_type_from_speed_capa (&dev_info);
403               break;
404
405               /* SR-IOV VFs */
406             case VNET_DPDK_PMD_IGBVF:
407             case VNET_DPDK_PMD_IXGBEVF:
408             case VNET_DPDK_PMD_I40EVF:
409               xd->port_type = VNET_DPDK_PORT_TYPE_ETH_VF;
410               xd->port_conf.rxmode.hw_strip_crc = 1;
411               break;
412
413             case VNET_DPDK_PMD_THUNDERX:
414               xd->port_type = VNET_DPDK_PORT_TYPE_ETH_VF;
415               xd->port_conf.rxmode.hw_strip_crc = 1;
416               break;
417
418             case VNET_DPDK_PMD_ENA:
419               xd->port_type = VNET_DPDK_PORT_TYPE_ETH_VF;
420               xd->port_conf.rxmode.enable_scatter = 0;
421               break;
422
423             case VNET_DPDK_PMD_DPAA2:
424               xd->port_type = VNET_DPDK_PORT_TYPE_ETH_10G;
425               break;
426
427               /* Cisco VIC */
428             case VNET_DPDK_PMD_ENIC:
429               rte_eth_link_get_nowait (i, &l);
430               if (l.link_speed == 40000)
431                 xd->port_type = VNET_DPDK_PORT_TYPE_ETH_40G;
432               else
433                 xd->port_type = VNET_DPDK_PORT_TYPE_ETH_10G;
434               break;
435
436               /* Intel Red Rock Canyon */
437             case VNET_DPDK_PMD_FM10K:
438               xd->port_type = VNET_DPDK_PORT_TYPE_ETH_SWITCH;
439               xd->port_conf.rxmode.hw_strip_crc = 1;
440               break;
441
442               /* virtio */
443             case VNET_DPDK_PMD_VIRTIO:
444               xd->port_type = VNET_DPDK_PORT_TYPE_ETH_1G;
445               xd->nb_rx_desc = DPDK_NB_RX_DESC_VIRTIO;
446               xd->nb_tx_desc = DPDK_NB_TX_DESC_VIRTIO;
447               break;
448
449               /* vmxnet3 */
450             case VNET_DPDK_PMD_VMXNET3:
451               xd->port_type = VNET_DPDK_PORT_TYPE_ETH_1G;
452               xd->tx_conf.txq_flags |= ETH_TXQ_FLAGS_NOMULTSEGS;
453               break;
454
455             case VNET_DPDK_PMD_AF_PACKET:
456               xd->port_type = VNET_DPDK_PORT_TYPE_AF_PACKET;
457               xd->port_id = af_packet_port_id++;
458               break;
459
460             case VNET_DPDK_PMD_BOND:
461               xd->port_type = VNET_DPDK_PORT_TYPE_ETH_BOND;
462               xd->port_id = bond_ether_port_id++;
463               break;
464
465             case VNET_DPDK_PMD_VIRTIO_USER:
466               xd->port_type = VNET_DPDK_PORT_TYPE_VIRTIO_USER;
467               break;
468
469             case VNET_DPDK_PMD_VHOST_ETHER:
470               xd->port_type = VNET_DPDK_PORT_TYPE_VHOST_ETHER;
471               break;
472
473             default:
474               xd->port_type = VNET_DPDK_PORT_TYPE_UNKNOWN;
475             }
476
477           if (devconf->num_rx_desc)
478             xd->nb_rx_desc = devconf->num_rx_desc;
479
480           if (devconf->num_tx_desc)
481             xd->nb_tx_desc = devconf->num_tx_desc;
482         }
483
484       if (xd->pmd == VNET_DPDK_PMD_AF_PACKET)
485         {
486           f64 now = vlib_time_now (vm);
487           u32 rnd;
488           rnd = (u32) (now * 1e6);
489           rnd = random_u32 (&rnd);
490           clib_memcpy (addr + 2, &rnd, sizeof (rnd));
491           addr[0] = 2;
492           addr[1] = 0xfe;
493         }
494       else
495         rte_eth_macaddr_get (i, (struct ether_addr *) addr);
496
497       if (xd->tx_q_used < tm->n_vlib_mains)
498         dpdk_device_lock_init (xd);
499
500       xd->device_index = xd - dm->devices;
501       ASSERT (i == xd->device_index);
502       xd->per_interface_next_index = ~0;
503
504       /* assign interface to input thread */
505       int q;
506
507       if (devconf->hqos_enabled)
508         {
509           xd->flags |= DPDK_DEVICE_FLAG_HQOS;
510
511           int cpu;
512           if (devconf->hqos.hqos_thread_valid)
513             {
514               if (devconf->hqos.hqos_thread >= dm->hqos_cpu_count)
515                 return clib_error_return (0, "invalid HQoS thread index");
516
517               cpu = dm->hqos_cpu_first_index + devconf->hqos.hqos_thread;
518             }
519           else
520             {
521               if (dm->hqos_cpu_count == 0)
522                 return clib_error_return (0, "no HQoS threads available");
523
524               cpu = dm->hqos_cpu_first_index + next_hqos_cpu;
525
526               next_hqos_cpu++;
527               if (next_hqos_cpu == dm->hqos_cpu_count)
528                 next_hqos_cpu = 0;
529
530               devconf->hqos.hqos_thread_valid = 1;
531               devconf->hqos.hqos_thread = cpu;
532             }
533
534           dpdk_device_and_queue_t *dq;
535           vec_add2 (dm->devices_by_hqos_cpu[cpu], dq, 1);
536           dq->device = xd->device_index;
537           dq->queue_id = 0;
538         }
539
540       vec_validate_aligned (xd->tx_vectors, tm->n_vlib_mains,
541                             CLIB_CACHE_LINE_BYTES);
542       for (j = 0; j < tm->n_vlib_mains; j++)
543         {
544           vec_validate_ha (xd->tx_vectors[j], xd->nb_tx_desc,
545                            sizeof (tx_ring_hdr_t), CLIB_CACHE_LINE_BYTES);
546           vec_reset_length (xd->tx_vectors[j]);
547         }
548
549       /* count the number of descriptors used for this device */
550       nb_desc += xd->nb_rx_desc + xd->nb_tx_desc * xd->tx_q_used;
551
552       error = ethernet_register_interface
553         (dm->vnet_main, dpdk_device_class.index, xd->device_index,
554          /* ethernet address */ addr,
555          &xd->hw_if_index, dpdk_flag_change);
556       if (error)
557         return error;
558
559       /*
560        * Ensure default mtu is not > the mtu read from the hardware.
561        * Otherwise rte_eth_dev_configure() will fail and the port will
562        * not be available.
563        * Calculate max_frame_size and mtu supported by NIC
564        */
565       if (ETHERNET_MAX_PACKET_BYTES > dev_info.max_rx_pktlen)
566         {
567           /*
568            * This device does not support the platforms's max frame
569            * size. Use it's advertised mru instead.
570            */
571           max_rx_frame = dev_info.max_rx_pktlen;
572           mtu = dev_info.max_rx_pktlen - sizeof (ethernet_header_t);
573         }
574       else
575         {
576           /* VPP treats MTU and max_rx_pktlen both equal to
577            * ETHERNET_MAX_PACKET_BYTES, if dev_info.max_rx_pktlen >=
578            * ETHERNET_MAX_PACKET_BYTES + sizeof(ethernet_header_t)
579            */
580           if (dev_info.max_rx_pktlen >= (ETHERNET_MAX_PACKET_BYTES +
581                                          sizeof (ethernet_header_t)))
582             {
583               mtu = ETHERNET_MAX_PACKET_BYTES;
584               max_rx_frame = ETHERNET_MAX_PACKET_BYTES;
585
586               /*
587                * Some platforms do not account for Ethernet FCS (4 bytes) in
588                * MTU calculations. To interop with them increase mru but only
589                * if the device's settings can support it.
590                */
591               if (xd->port_conf.rxmode.hw_strip_crc &&
592                   (dev_info.max_rx_pktlen >= (ETHERNET_MAX_PACKET_BYTES +
593                                               sizeof (ethernet_header_t) +
594                                               4)))
595                 {
596                   max_rx_frame += 4;
597                 }
598             }
599           else
600             {
601               max_rx_frame = ETHERNET_MAX_PACKET_BYTES;
602               mtu = ETHERNET_MAX_PACKET_BYTES - sizeof (ethernet_header_t);
603
604               if (xd->port_conf.rxmode.hw_strip_crc &&
605                   (dev_info.max_rx_pktlen >= (ETHERNET_MAX_PACKET_BYTES + 4)))
606                 {
607                   max_rx_frame += 4;
608                 }
609             }
610         }
611       /*Set port rxmode config */
612       xd->port_conf.rxmode.max_rx_pkt_len = max_rx_frame;
613
614       sw = vnet_get_hw_sw_interface (dm->vnet_main, xd->hw_if_index);
615       xd->sw_if_index = sw->sw_if_index;
616       vnet_hw_interface_set_input_node (dm->vnet_main, xd->hw_if_index,
617                                         dpdk_input_node.index);
618
619       if (devconf->workers)
620         {
621           int i;
622           q = 0;
623           /* *INDENT-OFF* */
624           clib_bitmap_foreach (i, devconf->workers, ({
625             vnet_hw_interface_assign_rx_thread (dm->vnet_main, xd->hw_if_index, q++,
626                                              vdm->first_worker_thread_index + i);
627           }));
628           /* *INDENT-ON* */
629         }
630       else
631         for (q = 0; q < xd->rx_q_used; q++)
632           {
633             vnet_hw_interface_assign_rx_thread (dm->vnet_main, xd->hw_if_index, q,      /* any */
634                                                 ~1);
635           }
636
637       /*Get vnet hardware interface */
638       hi = vnet_get_hw_interface (dm->vnet_main, xd->hw_if_index);
639
640       /*Override default max_packet_bytes and max_supported_bytes set in
641        * ethernet_register_interface() above*/
642       if (hi)
643         {
644           hi->max_packet_bytes = max_rx_frame;
645           hi->max_supported_packet_bytes = max_rx_frame;
646         }
647
648       if (dm->conf->no_tx_checksum_offload == 0)
649         if (xd->flags & DPDK_DEVICE_FLAG_TX_OFFLOAD)
650           hi->flags |= VNET_HW_INTERFACE_FLAG_SUPPORTS_TX_L4_CKSUM_OFFLOAD;
651
652       dpdk_device_setup (xd);
653
654       if (vec_len (xd->errors))
655         dpdk_log_err ("setup failed for device %U. Errors:\n  %U",
656                       format_dpdk_device_name, i,
657                       format_dpdk_device_errors, xd);
658
659       if (devconf->hqos_enabled)
660         {
661           clib_error_t *rv;
662           rv = dpdk_port_setup_hqos (xd, &devconf->hqos);
663           if (rv)
664             return rv;
665         }
666
667       /*
668        * For cisco VIC vNIC, set default to VLAN strip enabled, unless
669        * specified otherwise in the startup config.
670        * For other NICs default to VLAN strip disabled, unless specified
671        * otherwis in the startup config.
672        */
673       if (xd->pmd == VNET_DPDK_PMD_ENIC)
674         {
675           if (devconf->vlan_strip_offload != DPDK_DEVICE_VLAN_STRIP_OFF)
676             vlan_strip = 1;     /* remove vlan tag from VIC port by default */
677           else
678             dpdk_log_warn ("VLAN strip disabled for interface\n");
679         }
680       else if (devconf->vlan_strip_offload == DPDK_DEVICE_VLAN_STRIP_ON)
681         vlan_strip = 1;
682
683       if (vlan_strip)
684         {
685           int vlan_off;
686           vlan_off = rte_eth_dev_get_vlan_offload (xd->device_index);
687           vlan_off |= ETH_VLAN_STRIP_OFFLOAD;
688           xd->port_conf.rxmode.hw_vlan_strip = vlan_off;
689           if (rte_eth_dev_set_vlan_offload (xd->device_index, vlan_off) == 0)
690             dpdk_log_info ("VLAN strip enabled for interface\n");
691           else
692             dpdk_log_warn ("VLAN strip cannot be supported by interface\n");
693         }
694
695       if (hi)
696         hi->max_l3_packet_bytes[VLIB_RX] = hi->max_l3_packet_bytes[VLIB_TX] =
697           xd->port_conf.rxmode.max_rx_pkt_len - sizeof (ethernet_header_t);
698       else
699         clib_warning ("hi NULL");
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  */