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