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