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