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