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