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