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