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