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