FD.io VPP  v19.04.2-12-g66b1689
Vector Packet Processing
init.c
Go to the documentation of this file.
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 
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)
57  else if (dev_info->speed_capa & ETH_LINK_SPEED_56G)
59  else if (dev_info->speed_capa & ETH_LINK_SPEED_50G)
61  else if (dev_info->speed_capa & ETH_LINK_SPEED_40G)
63  else if (dev_info->speed_capa & ETH_LINK_SPEED_25G)
65  else if (dev_info->speed_capa & ETH_LINK_SPEED_20G)
67  else if (dev_info->speed_capa & ETH_LINK_SPEED_10G)
69  else if (dev_info->speed_capa & ETH_LINK_SPEED_5G)
71  else if (dev_info->speed_capa & ETH_LINK_SPEED_2_5G)
73  else if (dev_info->speed_capa & ETH_LINK_SPEED_1G)
75 
77 }
78 
79 static dpdk_port_type_t
81 {
82  switch (link_speed)
83  {
84  case ETH_SPEED_NUM_1G:
86  case ETH_SPEED_NUM_2_5G:
88  case ETH_SPEED_NUM_5G:
90  case ETH_SPEED_NUM_10G:
92  case ETH_SPEED_NUM_20G:
94  case ETH_SPEED_NUM_25G:
96  case ETH_SPEED_NUM_40G:
98  case ETH_SPEED_NUM_50G:
100  case ETH_SPEED_NUM_56G:
102  case ETH_SPEED_NUM_100G:
104  default:
106  }
107 }
108 
109 static u32
111 {
112  dpdk_main_t *dm = &dpdk_main;
114  u32 old = 0;
115 
117  {
118  old = (xd->flags & DPDK_DEVICE_FLAG_PROMISC) != 0;
119 
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
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  {
150  clib_memset ((void *) xd->lockp[q], 0, CLIB_CACHE_LINE_BYTES);
151  }
152 }
153 
154 static int
156 {
157  return !(xd->port_conf.rxmode.offloads & DEV_RX_OFFLOAD_KEEP_CRC);
158 }
159 
160 static clib_error_t *
162 {
163  u32 nports;
164  u32 mtu, max_rx_frame;
165  int i;
166  clib_error_t *error;
172  dpdk_device_t *xd;
173  vlib_pci_addr_t last_pci_addr;
174  u32 last_pci_addr_port = 0;
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 
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 */
216  for (i = 0; i < tm->n_vlib_mains; i++)
217  {
219  clib_memset (&ptd->buffer_template, 0, sizeof (vlib_buffer_t));
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;
258  pci_addr.as_u32);
259  }
260 
261 
262  /* Create vnet interface */
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  {
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  ;
376 #undef _
377  else
379 
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  case VNET_DPDK_PMD_ICE:
392  xd->port_type = port_type_from_speed_capa (&dev_info);
393  xd->supported_flow_actions = VNET_FLOW_ACTION_MARK |
394  VNET_FLOW_ACTION_REDIRECT_TO_NODE |
395  VNET_FLOW_ACTION_BUFFER_ADVANCE |
396  VNET_FLOW_ACTION_COUNT | VNET_FLOW_ACTION_DROP;
397 
398  if (dm->conf->no_tx_checksum_offload == 0)
399  {
400  xd->port_conf.txmode.offloads |= DEV_TX_OFFLOAD_TCP_CKSUM;
401  xd->port_conf.txmode.offloads |= DEV_TX_OFFLOAD_UDP_CKSUM;
402  xd->flags |=
403  DPDK_DEVICE_FLAG_TX_OFFLOAD |
404  DPDK_DEVICE_FLAG_INTEL_PHDR_CKSUM;
405  }
406 
407 
408  break;
409  case VNET_DPDK_PMD_CXGBE:
410  case VNET_DPDK_PMD_MLX4:
411  case VNET_DPDK_PMD_MLX5:
412  case VNET_DPDK_PMD_QEDE:
413  xd->port_type = port_type_from_speed_capa (&dev_info);
414  break;
415 
416  /* SR-IOV VFs */
417  case VNET_DPDK_PMD_IGBVF:
418  case VNET_DPDK_PMD_IXGBEVF:
419  case VNET_DPDK_PMD_I40EVF:
421  break;
422 
423  case VNET_DPDK_PMD_THUNDERX:
425 
426  if (dm->conf->no_tx_checksum_offload == 0)
427  {
428  xd->port_conf.txmode.offloads |= DEV_TX_OFFLOAD_TCP_CKSUM;
429  xd->port_conf.txmode.offloads |= DEV_TX_OFFLOAD_UDP_CKSUM;
430  xd->flags |= DPDK_DEVICE_FLAG_TX_OFFLOAD;
431  }
432  break;
433 
434  case VNET_DPDK_PMD_ENA:
436  xd->port_conf.rxmode.offloads &= ~DEV_RX_OFFLOAD_SCATTER;
437  break;
438 
439  case VNET_DPDK_PMD_DPAA2:
441  break;
442 
443  /* Cisco VIC */
444  case VNET_DPDK_PMD_ENIC:
445  xd->port_type = port_type_from_link_speed (l.link_speed);
446  break;
447 
448  /* Intel Red Rock Canyon */
449  case VNET_DPDK_PMD_FM10K:
451  break;
452 
453  /* virtio */
454  case VNET_DPDK_PMD_VIRTIO:
458  break;
459 
460  /* vmxnet3 */
461  case VNET_DPDK_PMD_VMXNET3:
463  xd->port_conf.txmode.offloads |= DEV_TX_OFFLOAD_MULTI_SEGS;
464  break;
465 
466  case VNET_DPDK_PMD_AF_PACKET:
468  xd->af_packet_instance_num = af_packet_instance_num++;
469  break;
470 
471  case VNET_DPDK_PMD_BOND:
473  xd->bond_instance_num = bond_ether_instance_num++;
474  break;
475 
476  case VNET_DPDK_PMD_VIRTIO_USER:
478  break;
479 
480  case VNET_DPDK_PMD_VHOST_ETHER:
482  break;
483 
484  case VNET_DPDK_PMD_LIOVF_ETHER:
486  break;
487 
488  case VNET_DPDK_PMD_FAILSAFE:
490  xd->port_conf.intr_conf.lsc = 1;
491  break;
492 
493  case VNET_DPDK_PMD_NETVSC:
494  xd->port_type = port_type_from_link_speed (l.link_speed);
495  break;
496 
497  default:
499  }
500 
501  if (devconf->num_rx_desc)
502  xd->nb_rx_desc = devconf->num_rx_desc;
503 
504  if (devconf->num_tx_desc)
505  xd->nb_tx_desc = devconf->num_tx_desc;
506  }
507 
508  if (xd->pmd == VNET_DPDK_PMD_AF_PACKET)
509  {
510  f64 now = vlib_time_now (vm);
511  u32 rnd;
512  rnd = (u32) (now * 1e6);
513  rnd = random_u32 (&rnd);
514  clib_memcpy (addr + 2, &rnd, sizeof (rnd));
515  addr[0] = 2;
516  addr[1] = 0xfe;
517  }
518  else
519  rte_eth_macaddr_get (i, (struct ether_addr *) addr);
520 
521  if (xd->tx_q_used < tm->n_vlib_mains)
523 
524  xd->port_id = i;
525  xd->device_index = xd - dm->devices;
526  xd->per_interface_next_index = ~0;
527 
528  /* assign interface to input thread */
529  int q;
530 
531  if (devconf->hqos_enabled)
532  {
533  xd->flags |= DPDK_DEVICE_FLAG_HQOS;
534 
535  int cpu;
536  if (devconf->hqos.hqos_thread_valid)
537  {
538  if (devconf->hqos.hqos_thread >= dm->hqos_cpu_count)
539  return clib_error_return (0, "invalid HQoS thread index");
540 
541  cpu = dm->hqos_cpu_first_index + devconf->hqos.hqos_thread;
542  }
543  else
544  {
545  if (dm->hqos_cpu_count == 0)
546  return clib_error_return (0, "no HQoS threads available");
547 
548  cpu = dm->hqos_cpu_first_index + next_hqos_cpu;
549 
550  next_hqos_cpu++;
551  if (next_hqos_cpu == dm->hqos_cpu_count)
552  next_hqos_cpu = 0;
553 
554  devconf->hqos.hqos_thread_valid = 1;
555  devconf->hqos.hqos_thread = cpu;
556  }
557 
559  vec_add2 (dm->devices_by_hqos_cpu[cpu], dq, 1);
560  dq->device = xd->device_index;
561  dq->queue_id = 0;
562  }
563 
565  (dm->vnet_main, dpdk_device_class.index, xd->device_index,
566  /* ethernet address */ addr,
568  if (error)
569  return error;
570 
571  /*
572  * Ensure default mtu is not > the mtu read from the hardware.
573  * Otherwise rte_eth_dev_configure() will fail and the port will
574  * not be available.
575  * Calculate max_frame_size and mtu supported by NIC
576  */
577  if (ETHERNET_MAX_PACKET_BYTES > dev_info.max_rx_pktlen)
578  {
579  /*
580  * This device does not support the platforms's max frame
581  * size. Use it's advertised mru instead.
582  */
583  max_rx_frame = dev_info.max_rx_pktlen;
584  mtu = dev_info.max_rx_pktlen - sizeof (ethernet_header_t);
585  }
586  else
587  {
588  /* VPP treats MTU and max_rx_pktlen both equal to
589  * ETHERNET_MAX_PACKET_BYTES, if dev_info.max_rx_pktlen >=
590  * ETHERNET_MAX_PACKET_BYTES + sizeof(ethernet_header_t)
591  */
592  if (dev_info.max_rx_pktlen >= (ETHERNET_MAX_PACKET_BYTES +
593  sizeof (ethernet_header_t)))
594  {
596  max_rx_frame = ETHERNET_MAX_PACKET_BYTES;
597 
598  /*
599  * Some platforms do not account for Ethernet FCS (4 bytes) in
600  * MTU calculations. To interop with them increase mru but only
601  * if the device's settings can support it.
602  */
603  if (dpdk_port_crc_strip_enabled (xd) &&
604  (dev_info.max_rx_pktlen >= (ETHERNET_MAX_PACKET_BYTES +
605  sizeof (ethernet_header_t) +
606  4)))
607  {
608  max_rx_frame += 4;
609  }
610  }
611  else
612  {
613  max_rx_frame = ETHERNET_MAX_PACKET_BYTES;
615 
616  if (dpdk_port_crc_strip_enabled (xd) &&
617  (dev_info.max_rx_pktlen >= (ETHERNET_MAX_PACKET_BYTES + 4)))
618  {
619  max_rx_frame += 4;
620  }
621  }
622  }
623 
624  if (xd->pmd == VNET_DPDK_PMD_FAILSAFE)
625  {
626  /* failsafe device numerables are reported with active device only,
627  * need to query the mtu for current device setup to overwrite
628  * reported value.
629  */
630  uint16_t dev_mtu;
631  if (!rte_eth_dev_get_mtu (i, &dev_mtu))
632  {
633  mtu = dev_mtu;
634  max_rx_frame = mtu + sizeof (ethernet_header_t);
635 
637  {
638  max_rx_frame += 4;
639  }
640  }
641  }
642 
643  /*Set port rxmode config */
644  xd->port_conf.rxmode.max_rx_pkt_len = max_rx_frame;
645 
647  xd->sw_if_index = sw->sw_if_index;
649  dpdk_input_node.index);
650 
651  if (devconf->workers)
652  {
653  int i;
654  q = 0;
655  clib_bitmap_foreach (i, devconf->workers, ({
656  vnet_hw_interface_assign_rx_thread (dm->vnet_main, xd->hw_if_index, q++,
657  vdm->first_worker_thread_index + i);
658  }));
659  }
660  else
661  for (q = 0; q < xd->rx_q_used; q++)
662  {
664  ~1);
665  }
666 
667  /*Get vnet hardware interface */
669 
670  /*Override default max_packet_bytes and max_supported_bytes set in
671  * ethernet_register_interface() above*/
672  if (hi)
673  {
674  hi->max_packet_bytes = mtu;
675  hi->max_supported_packet_bytes = max_rx_frame;
676  }
677 
678  if (dm->conf->no_tx_checksum_offload == 0)
679  if (xd->flags & DPDK_DEVICE_FLAG_TX_OFFLOAD && hi != NULL)
681 
682  dpdk_device_setup (xd);
683 
684  if (vec_len (xd->errors))
685  dpdk_log_err ("setup failed for device %U. Errors:\n %U",
688 
689  if (devconf->hqos_enabled)
690  {
691  clib_error_t *rv;
692  rv = dpdk_port_setup_hqos (xd, &devconf->hqos);
693  if (rv)
694  return rv;
695  }
696 
697  /*
698  * A note on Cisco VIC (PMD_ENIC) and VLAN:
699  *
700  * With Cisco VIC vNIC, every ingress packet is tagged. On a
701  * trunk vNIC (C series "standalone" server), packets on no VLAN
702  * are tagged with vlan 0. On an access vNIC (standalone or B
703  * series "blade" server), packets on the default/native VLAN
704  * are tagged with that vNIC's VLAN. VPP expects these packets
705  * to be untagged, and previously enabled VLAN strip on VIC by
706  * default. But it also broke vlan sub-interfaces.
707  *
708  * The VIC adapter has "untag default vlan" ingress VLAN rewrite
709  * mode, which removes tags from these packets. VPP now includes
710  * a local patch for the enic driver to use this untag mode, so
711  * enabling vlan stripping is no longer needed. In future, the
712  * driver + dpdk will have an API to set the mode after
713  * rte_eal_init. Then, this note and local patch will be
714  * removed.
715  */
716 
717  /*
718  * VLAN stripping: default to VLAN strip disabled, unless specified
719  * otherwise in the startup config.
720  */
721  if (devconf->vlan_strip_offload == DPDK_DEVICE_VLAN_STRIP_ON)
722  vlan_strip = 1;
723 
724  if (vlan_strip)
725  {
726  int vlan_off;
727  vlan_off = rte_eth_dev_get_vlan_offload (xd->port_id);
728  vlan_off |= ETH_VLAN_STRIP_OFFLOAD;
729  if (vlan_off)
730  xd->port_conf.rxmode.offloads |= DEV_RX_OFFLOAD_VLAN_STRIP;
731  else
732  xd->port_conf.rxmode.offloads &= ~DEV_RX_OFFLOAD_VLAN_STRIP;
733  if (rte_eth_dev_set_vlan_offload (xd->port_id, vlan_off) == 0)
734  dpdk_log_info ("VLAN strip enabled for interface\n");
735  else
736  dpdk_log_warn ("VLAN strip cannot be supported by interface\n");
737  }
738 
739  if (hi)
740  hi->max_packet_bytes = xd->port_conf.rxmode.max_rx_pkt_len
741  - sizeof (ethernet_header_t);
742  else
743  clib_warning ("hi NULL");
744 
745  if (dm->conf->no_multi_seg)
746  mtu = mtu > ETHER_MAX_LEN ? ETHER_MAX_LEN : mtu;
747 
748  rte_eth_dev_set_mtu (xd->port_id, mtu);
749  }
750  /* *INDENT-ON* */
751 
752  return 0;
753 }
754 
755 static void
757 {
759  clib_error_t *error;
760  u8 *pci_addr = 0;
761  int num_whitelisted = vec_len (conf->dev_confs);
762  vlib_pci_device_info_t *d = 0;
763  vlib_pci_addr_t *addr = 0, *addrs;
764  int i;
765 
766  addrs = vlib_pci_get_all_dev_addrs ();
767  /* *INDENT-OFF* */
768  vec_foreach (addr, addrs)
769  {
770  dpdk_device_config_t * devconf = 0;
771  vec_reset_length (pci_addr);
772  pci_addr = format (pci_addr, "%U%c", format_vlib_pci_addr, addr, 0);
773  if (d)
774  {
776  d = 0;
777  }
778  d = vlib_pci_get_device_info (vm, addr, &error);
779  if (error)
780  {
781  clib_error_report (error);
782  continue;
783  }
784 
786  continue;
787 
788  if (num_whitelisted)
789  {
790  uword * p = hash_get (conf->device_config_index_by_pci_addr, addr->as_u32);
791 
792  if (!p)
793  {
794  skipped:
795  continue;
796  }
797 
798  devconf = pool_elt_at_index (conf->dev_confs, p[0]);
799  }
800 
801  /* Enforce Device blacklist by vendor and device */
802  for (i = 0; i < vec_len (conf->blacklist_by_pci_vendor_and_device); i++)
803  {
804  u16 vendor, device;
805  vendor = (u16)(conf->blacklist_by_pci_vendor_and_device[i] >> 16);
806  device = (u16)(conf->blacklist_by_pci_vendor_and_device[i] & 0xFFFF);
807  if (d->vendor_id == vendor && d->device_id == device)
808  {
809  /*
810  * Expected case: device isn't whitelisted,
811  * so blacklist it...
812  */
813  if (devconf == 0)
814  {
815  /* Device is blacklisted */
816  pool_get (conf->dev_confs, devconf);
817  hash_set (conf->device_config_index_by_pci_addr, addr->as_u32,
818  devconf - conf->dev_confs);
819  devconf->pci_addr.as_u32 = addr->as_u32;
820  devconf->is_blacklisted = 1;
821  goto skipped;
822  }
823  else /* explicitly whitelisted, ignore the device blacklist */
824  break;
825  }
826  }
827 
828  /* virtio */
829  if (d->vendor_id == 0x1af4 &&
832  ;
833  /* vmxnet3 */
834  else if (d->vendor_id == 0x15ad && d->device_id == 0x07b0)
835  {
836  /*
837  * For vmxnet3 PCI, unless it is explicitly specified in the whitelist,
838  * the default is to put it in the blacklist.
839  */
840  if (devconf == 0)
841  {
842  pool_get (conf->dev_confs, devconf);
843  hash_set (conf->device_config_index_by_pci_addr, addr->as_u32,
844  devconf - conf->dev_confs);
845  devconf->pci_addr.as_u32 = addr->as_u32;
846  devconf->is_blacklisted = 1;
847  }
848  }
849  /* all Intel network devices */
850  else if (d->vendor_id == 0x8086 && d->device_class == PCI_CLASS_NETWORK_ETHERNET)
851  ;
852  /* all Intel QAT devices VFs */
853  else if (d->vendor_id == 0x8086 && d->device_class == PCI_CLASS_PROCESSOR_CO &&
854  (d->device_id == 0x0443 || d->device_id == 0x37c9 || d->device_id == 0x19e3))
855  ;
856  /* Cisco VIC */
857  else if (d->vendor_id == 0x1137 &&
858  (d->device_id == 0x0043 || d->device_id == 0x0071))
859  ;
860  /* Chelsio T4/T5 */
861  else if (d->vendor_id == 0x1425 && (d->device_id & 0xe000) == 0x4000)
862  ;
863  /* Amazen Elastic Network Adapter */
864  else if (d->vendor_id == 0x1d0f && d->device_id >= 0xec20 && d->device_id <= 0xec21)
865  ;
866  /* Cavium Network Adapter */
867  else if (d->vendor_id == 0x177d && d->device_id == 0x9712)
868  ;
869  /* Cavium FastlinQ QL41000 Series */
870  else if (d->vendor_id == 0x1077 && d->device_id >= 0x8070 && d->device_id <= 0x8090)
871  ;
872  /* Mellanox mlx4 */
873  else if (d->vendor_id == 0x15b3 && d->device_id >= 0x1003 && d->device_id <= 0x1004)
874  {
875  continue;
876  }
877  /* Mellanox mlx5 */
878  else if (d->vendor_id == 0x15b3 && d->device_id >= 0x1013 && d->device_id <= 0x101a)
879  {
880  continue;
881  }
882  else
883  {
884  dpdk_log_warn ("Unsupported PCI device 0x%04x:0x%04x found "
885  "at PCI address %s\n", (u16) d->vendor_id, (u16) d->device_id,
886  pci_addr);
887  continue;
888  }
889 
890  error = vlib_pci_bind_to_uio (vm, addr, (char *) conf->uio_driver_name);
891 
892  if (error)
893  {
894  if (devconf == 0)
895  {
896  pool_get (conf->dev_confs, devconf);
897  hash_set (conf->device_config_index_by_pci_addr, addr->as_u32,
898  devconf - conf->dev_confs);
899  devconf->pci_addr.as_u32 = addr->as_u32;
900  }
901  devconf->is_blacklisted = 1;
902  clib_error_report (error);
903  }
904  }
905  /* *INDENT-ON* */
906  vec_free (pci_addr);
908 }
909 
910 static void
912 {
913  clib_error_t *error;
914  vlib_vmbus_addr_t *addrs, *addr = 0;
915 
916  addrs = vlib_vmbus_get_all_dev_addrs ();
917 
918  /* *INDENT-OFF* */
919  vec_foreach (addr, addrs)
920  {
921  error = vlib_vmbus_bind_to_uio (addr);
922 
923  if (error)
924  {
925  clib_error_report (error);
926  }
927  }
928  /* *INDENT-ON* */
929 }
930 
931 static clib_error_t *
932 dpdk_device_config (dpdk_config_main_t * conf, vlib_pci_addr_t pci_addr,
933  unformat_input_t * input, u8 is_default)
934 {
935  clib_error_t *error = 0;
936  uword *p;
937  dpdk_device_config_t *devconf;
938  unformat_input_t sub_input;
939 
940  if (is_default)
941  {
942  devconf = &conf->default_devconf;
943  }
944  else
945  {
946  p = hash_get (conf->device_config_index_by_pci_addr, pci_addr.as_u32);
947 
948  if (!p)
949  {
950  pool_get (conf->dev_confs, devconf);
951  hash_set (conf->device_config_index_by_pci_addr, pci_addr.as_u32,
952  devconf - conf->dev_confs);
953  }
954  else
955  return clib_error_return (0,
956  "duplicate configuration for PCI address %U",
957  format_vlib_pci_addr, &pci_addr);
958  }
959 
960  devconf->pci_addr.as_u32 = pci_addr.as_u32;
961  devconf->hqos_enabled = 0;
962 #if 0
964 #endif
965 
966  if (!input)
967  return 0;
968 
971  {
972  if (unformat (input, "num-rx-queues %u", &devconf->num_rx_queues))
973  ;
974  else if (unformat (input, "num-tx-queues %u", &devconf->num_tx_queues))
975  ;
976  else if (unformat (input, "num-rx-desc %u", &devconf->num_rx_desc))
977  ;
978  else if (unformat (input, "num-tx-desc %u", &devconf->num_tx_desc))
979  ;
980  else if (unformat (input, "name %s", &devconf->name))
981  ;
982  else if (unformat (input, "workers %U", unformat_bitmap_list,
983  &devconf->workers))
984  ;
985  else
986  if (unformat
987  (input, "rss %U", unformat_vlib_cli_sub_input, &sub_input))
988  {
989  error = unformat_rss_fn (&sub_input, &devconf->rss_fn);
990  if (error)
991  break;
992  }
993  else if (unformat (input, "vlan-strip-offload off"))
995  else if (unformat (input, "vlan-strip-offload on"))
997  else
998  if (unformat
999  (input, "hqos %U", unformat_vlib_cli_sub_input, &sub_input))
1000  {
1001  devconf->hqos_enabled = 1;
1002  error = unformat_hqos (&sub_input, &devconf->hqos);
1003  if (error)
1004  break;
1005  }
1006  else if (unformat (input, "hqos"))
1007  {
1008  devconf->hqos_enabled = 1;
1009  }
1010  else
1011  {
1012  error = clib_error_return (0, "unknown input `%U'",
1013  format_unformat_error, input);
1014  break;
1015  }
1016  }
1017 
1018  if (error)
1019  return error;
1020 
1021  if (devconf->workers && devconf->num_rx_queues == 0)
1022  devconf->num_rx_queues = clib_bitmap_count_set_bits (devconf->workers);
1023  else if (devconf->workers &&
1024  clib_bitmap_count_set_bits (devconf->workers) !=
1025  devconf->num_rx_queues)
1026  error =
1027  clib_error_return (0,
1028  "%U: number of worker threads must be "
1029  "equal to number of rx queues", format_vlib_pci_addr,
1030  &pci_addr);
1031 
1032  return error;
1033 }
1034 
1035 static clib_error_t *
1037 {
1038  unformat_input_t input;
1039  u8 *line, *s = 0;
1040  int n, n_try;
1041 
1042  n = n_try = 4096;
1043  while (n == n_try)
1044  {
1045  uword len = vec_len (s);
1046  vec_resize (s, len + n_try);
1047 
1048  n = read (uf->file_descriptor, s + len, n_try);
1049  if (n < 0 && errno != EAGAIN)
1050  return clib_error_return_unix (0, "read");
1051  _vec_len (s) = len + (n < 0 ? 0 : n);
1052  }
1053 
1054  unformat_init_vector (&input, s);
1055 
1056  while (unformat_user (&input, unformat_line, &line))
1057  {
1058  dpdk_log_notice ("%v", line);
1059  vec_free (line);
1060  }
1061 
1062  unformat_free (&input);
1063  return 0;
1064 }
1065 
1066 static clib_error_t *
1068 {
1069  clib_error_t *error = 0;
1072  dpdk_device_config_t *devconf;
1073  vlib_pci_addr_t pci_addr;
1074  unformat_input_t sub_input;
1075  uword default_hugepage_sz, x;
1076  u8 *s, *tmp = 0;
1077  int ret, i;
1078  int num_whitelisted = 0;
1079  u8 no_pci = 0;
1080  u8 no_vmbus = 0;
1081  u8 file_prefix = 0;
1082  u8 *socket_mem = 0;
1083  u8 *huge_dir_path = 0;
1084  u32 vendor, device;
1085 
1086  huge_dir_path =
1087  format (0, "%s/hugepages%c", vlib_unix_get_runtime_dir (), 0);
1088 
1089  conf->device_config_index_by_pci_addr = hash_create (0, sizeof (uword));
1090 
1091  while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
1092  {
1093  /* Prime the pump */
1094  if (unformat (input, "no-hugetlb"))
1095  {
1096  vec_add1 (conf->eal_init_args, (u8 *) "--no-huge");
1097  }
1098 
1099  else if (unformat (input, "enable-tcp-udp-checksum"))
1100  conf->enable_tcp_udp_checksum = 1;
1101 
1102  else if (unformat (input, "no-tx-checksum-offload"))
1103  conf->no_tx_checksum_offload = 1;
1104 
1105  else if (unformat (input, "decimal-interface-names"))
1107 
1108  else if (unformat (input, "no-multi-seg"))
1109  conf->no_multi_seg = 1;
1110 
1111  else if (unformat (input, "dev default %U", unformat_vlib_cli_sub_input,
1112  &sub_input))
1113  {
1114  error =
1115  dpdk_device_config (conf, (vlib_pci_addr_t) (u32) ~ 1, &sub_input,
1116  1);
1117 
1118  if (error)
1119  return error;
1120  }
1121  else
1122  if (unformat
1123  (input, "dev %U %U", unformat_vlib_pci_addr, &pci_addr,
1124  unformat_vlib_cli_sub_input, &sub_input))
1125  {
1126  error = dpdk_device_config (conf, pci_addr, &sub_input, 0);
1127 
1128  if (error)
1129  return error;
1130 
1131  num_whitelisted++;
1132  }
1133  else if (unformat (input, "dev %U", unformat_vlib_pci_addr, &pci_addr))
1134  {
1135  error = dpdk_device_config (conf, pci_addr, 0, 0);
1136 
1137  if (error)
1138  return error;
1139 
1140  num_whitelisted++;
1141  }
1142  else if (unformat (input, "num-mem-channels %d", &conf->nchannels))
1143  conf->nchannels_set_manually = 0;
1144  else if (unformat (input, "num-crypto-mbufs %d",
1145  &conf->num_crypto_mbufs))
1146  ;
1147  else if (unformat (input, "uio-driver %s", &conf->uio_driver_name))
1148  ;
1149  else if (unformat (input, "socket-mem %s", &socket_mem))
1150  ;
1151  else if (unformat (input, "no-pci"))
1152  {
1153  no_pci = 1;
1154  tmp = format (0, "--no-pci%c", 0);
1155  vec_add1 (conf->eal_init_args, tmp);
1156  }
1157  else if (unformat (input, "blacklist %x:%x", &vendor, &device))
1158  {
1159  u32 blacklist_entry;
1160  if (vendor > 0xFFFF)
1161  return clib_error_return (0, "blacklist PCI vendor out of range");
1162  if (device > 0xFFFF)
1163  return clib_error_return (0, "blacklist PCI device out of range");
1164  blacklist_entry = (vendor << 16) | (device & 0xffff);
1166  blacklist_entry);
1167  }
1168  else if (unformat (input, "no-vmbus"))
1169  {
1170  no_vmbus = 1;
1171  tmp = format (0, "--no-vmbus%c", 0);
1172  vec_add1 (conf->eal_init_args, tmp);
1173  }
1174 
1175 #define _(a) \
1176  else if (unformat(input, #a)) \
1177  { \
1178  tmp = format (0, "--%s%c", #a, 0); \
1179  vec_add1 (conf->eal_init_args, tmp); \
1180  }
1182 #undef _
1183 #define _(a) \
1184  else if (unformat(input, #a " %s", &s)) \
1185  { \
1186  if (!strncmp(#a, "file-prefix", 11)) \
1187  file_prefix = 1; \
1188  tmp = format (0, "--%s%c", #a, 0); \
1189  vec_add1 (conf->eal_init_args, tmp); \
1190  vec_add1 (s, 0); \
1191  if (!strncmp(#a, "vdev", 4)) \
1192  if (strstr((char*)s, "af_packet")) \
1193  clib_warning ("af_packet obsoleted. Use CLI 'create host-interface'."); \
1194  vec_add1 (conf->eal_init_args, s); \
1195  }
1197 #undef _
1198 #define _(a,b) \
1199  else if (unformat(input, #a " %s", &s)) \
1200  { \
1201  tmp = format (0, "-%s%c", #b, 0); \
1202  vec_add1 (conf->eal_init_args, tmp); \
1203  vec_add1 (s, 0); \
1204  vec_add1 (conf->eal_init_args, s); \
1205  }
1207 #undef _
1208 #define _(a,b) \
1209  else if (unformat(input, #a " %s", &s)) \
1210  { \
1211  tmp = format (0, "-%s%c", #b, 0); \
1212  vec_add1 (conf->eal_init_args, tmp); \
1213  vec_add1 (s, 0); \
1214  vec_add1 (conf->eal_init_args, s); \
1215  conf->a##_set_manually = 1; \
1216  }
1218 #undef _
1219  else if (unformat (input, "default"))
1220  ;
1221 
1222  else if (unformat_skip_white_space (input))
1223  ;
1224  else
1225  {
1226  error = clib_error_return (0, "unknown input `%U'",
1227  format_unformat_error, input);
1228  goto done;
1229  }
1230  }
1231 
1232  if (!conf->uio_driver_name)
1233  conf->uio_driver_name = format (0, "auto%c", 0);
1234 
1235  default_hugepage_sz = clib_mem_get_default_hugepage_size ();
1236 
1237  /* *INDENT-OFF* */
1239  {
1240  clib_error_t *e;
1241  uword n_pages;
1242  /* preallocate at least 16MB of hugepages per socket,
1243  if more is needed it is up to consumer to preallocate more */
1244  n_pages = round_pow2 ((uword) 16 << 20, default_hugepage_sz);
1245  n_pages /= default_hugepage_sz;
1246 
1247  if ((e = clib_sysfs_prealloc_hugepages(x, 0, n_pages)))
1248  clib_error_report (e);
1249  }));
1250  /* *INDENT-ON* */
1251 
1252  if (!file_prefix)
1253  {
1254  tmp = format (0, "--file-prefix%c", 0);
1255  vec_add1 (conf->eal_init_args, tmp);
1256  tmp = format (0, "vpp%c", 0);
1257  vec_add1 (conf->eal_init_args, tmp);
1258  }
1259 
1260  if (error)
1261  return error;
1262 
1263  /* I'll bet that -c and -n must be the first and second args... */
1264  if (!conf->coremask_set_manually)
1265  {
1267  uword *coremask = 0;
1268  int i;
1269 
1270  /* main thread core */
1271  coremask = clib_bitmap_set (coremask, tm->main_lcore, 1);
1272 
1273  for (i = 0; i < vec_len (tm->registrations); i++)
1274  {
1275  tr = tm->registrations[i];
1276  coremask = clib_bitmap_or (coremask, tr->coremask);
1277  }
1278 
1279  vec_insert (conf->eal_init_args, 2, 1);
1280  conf->eal_init_args[1] = (u8 *) "-c";
1281  tmp = format (0, "%U%c", format_bitmap_hex, coremask, 0);
1282  conf->eal_init_args[2] = tmp;
1283  clib_bitmap_free (coremask);
1284  }
1285 
1286  if (!conf->nchannels_set_manually)
1287  {
1288  vec_insert (conf->eal_init_args, 2, 3);
1289  conf->eal_init_args[3] = (u8 *) "-n";
1290  tmp = format (0, "%d", conf->nchannels);
1291  conf->eal_init_args[4] = tmp;
1292  }
1293 
1294  if (no_pci == 0 && geteuid () == 0)
1295  dpdk_bind_devices_to_uio (conf);
1296 
1297  if (no_vmbus == 0 && geteuid () == 0)
1299 
1300 #define _(x) \
1301  if (devconf->x == 0 && conf->default_devconf.x > 0) \
1302  devconf->x = conf->default_devconf.x ;
1303 
1304  /* *INDENT-OFF* */
1305  pool_foreach (devconf, conf->dev_confs, ({
1306 
1307  /* default per-device config items */
1308  foreach_dpdk_device_config_item
1309 
1310  /* add DPDK EAL whitelist/blacklist entry */
1311  if (num_whitelisted > 0 && devconf->is_blacklisted == 0)
1312  {
1313  tmp = format (0, "-w%c", 0);
1314  vec_add1 (conf->eal_init_args, tmp);
1315  tmp = format (0, "%U%c", format_vlib_pci_addr, &devconf->pci_addr, 0);
1316  vec_add1 (conf->eal_init_args, tmp);
1317  }
1318  else if (num_whitelisted == 0 && devconf->is_blacklisted != 0)
1319  {
1320  tmp = format (0, "-b%c", 0);
1321  vec_add1 (conf->eal_init_args, tmp);
1322  tmp = format (0, "%U%c", format_vlib_pci_addr, &devconf->pci_addr, 0);
1323  vec_add1 (conf->eal_init_args, tmp);
1324  }
1325  }));
1326  /* *INDENT-ON* */
1327 
1328 #undef _
1329 
1330  /* set master-lcore */
1331  tmp = format (0, "--master-lcore%c", 0);
1332  vec_add1 (conf->eal_init_args, tmp);
1333  tmp = format (0, "%u%c", tm->main_lcore, 0);
1334  vec_add1 (conf->eal_init_args, tmp);
1335 
1336 
1337  if (socket_mem)
1338  clib_warning ("socket-mem argument is deprecated");
1339 
1340  /* NULL terminate the "argv" vector, in case of stupidity */
1341  vec_add1 (conf->eal_init_args, 0);
1342  _vec_len (conf->eal_init_args) -= 1;
1343 
1344  /* Set up DPDK eal and packet mbuf pool early. */
1345 
1346  int log_fds[2] = { 0 };
1347  if (pipe (log_fds) == 0)
1348  {
1349  if (fcntl (log_fds[1], F_SETFL, O_NONBLOCK) == 0)
1350  {
1351  FILE *f = fdopen (log_fds[1], "a");
1352  if (f && rte_openlog_stream (f) == 0)
1353  {
1354  clib_file_t t = { 0 };
1356  t.file_descriptor = log_fds[0];
1357  t.description = format (0, "DPDK logging pipe");
1358  clib_file_add (&file_main, &t);
1359  }
1360  }
1361  else
1362  {
1363  close (log_fds[0]);
1364  close (log_fds[1]);
1365  }
1366  }
1367 
1368  vm = vlib_get_main ();
1369 
1370  /* make copy of args as rte_eal_init tends to mess up with arg array */
1371  for (i = 1; i < vec_len (conf->eal_init_args); i++)
1372  conf->eal_init_args_str = format (conf->eal_init_args_str, "%s ",
1373  conf->eal_init_args[i]);
1374 
1375  dpdk_log_warn ("EAL init args: %s", conf->eal_init_args_str);
1376  ret = rte_eal_init (vec_len (conf->eal_init_args),
1377  (char **) conf->eal_init_args);
1378 
1379  /* lazy umount hugepages */
1380  umount2 ((char *) huge_dir_path, MNT_DETACH);
1381  rmdir ((char *) huge_dir_path);
1382  vec_free (huge_dir_path);
1383 
1384  if (ret < 0)
1385  return clib_error_return (0, "rte_eal_init returned %d", ret);
1386 
1387  /* main thread 1st */
1388  if ((error = dpdk_buffer_pools_create (vm)))
1389  return error;
1390 
1391 done:
1392  return error;
1393 }
1394 
1396 
1397 void
1399 {
1400  vnet_main_t *vnm = vnet_get_main ();
1401  struct rte_eth_link prev_link = xd->link;
1402  u32 hw_flags = 0;
1403  u8 hw_flags_chg = 0;
1404 
1405  /* only update link state for PMD interfaces */
1406  if ((xd->flags & DPDK_DEVICE_FLAG_PMD) == 0)
1407  return;
1408 
1409  xd->time_last_link_update = now ? now : xd->time_last_link_update;
1410  clib_memset (&xd->link, 0, sizeof (xd->link));
1411  rte_eth_link_get_nowait (xd->port_id, &xd->link);
1412 
1413  if (LINK_STATE_ELOGS)
1414  {
1416  ELOG_TYPE_DECLARE (e) =
1417  {
1418  .format =
1419  "update-link-state: sw_if_index %d, admin_up %d,"
1420  "old link_state %d new link_state %d",.format_args = "i4i1i1i1",};
1421 
1422  struct
1423  {
1424  u32 sw_if_index;
1425  u8 admin_up;
1426  u8 old_link_state;
1427  u8 new_link_state;
1428  } *ed;
1429  ed = ELOG_DATA (&vm->elog_main, e);
1430  ed->sw_if_index = xd->sw_if_index;
1431  ed->admin_up = (xd->flags & DPDK_DEVICE_FLAG_ADMIN_UP) != 0;
1432  ed->old_link_state = (u8)
1434  ed->new_link_state = (u8) xd->link.link_status;
1435  }
1436 
1437  if ((xd->flags & (DPDK_DEVICE_FLAG_ADMIN_UP | DPDK_DEVICE_FLAG_BOND_SLAVE))
1438  && ((xd->link.link_status != 0) ^
1440  {
1441  hw_flags_chg = 1;
1442  hw_flags |= (xd->link.link_status ? VNET_HW_INTERFACE_FLAG_LINK_UP : 0);
1443  }
1444 
1445  if (hw_flags_chg || (xd->link.link_duplex != prev_link.link_duplex))
1446  {
1447  hw_flags_chg = 1;
1448  switch (xd->link.link_duplex)
1449  {
1450  case ETH_LINK_HALF_DUPLEX:
1452  break;
1453  case ETH_LINK_FULL_DUPLEX:
1455  break;
1456  default:
1457  break;
1458  }
1459  }
1460  if (xd->link.link_speed != prev_link.link_speed)
1462  xd->link.link_speed * 1000);
1463 
1464  if (hw_flags_chg)
1465  {
1466  if (LINK_STATE_ELOGS)
1467  {
1469 
1470  ELOG_TYPE_DECLARE (e) =
1471  {
1472  .format =
1473  "update-link-state: sw_if_index %d, new flags %d",.format_args
1474  = "i4i4",};
1475 
1476  struct
1477  {
1478  u32 sw_if_index;
1479  u32 flags;
1480  } *ed;
1481  ed = ELOG_DATA (&vm->elog_main, e);
1482  ed->sw_if_index = xd->sw_if_index;
1483  ed->flags = hw_flags;
1484  }
1485  vnet_hw_interface_set_flags (vnm, xd->hw_if_index, hw_flags);
1486  }
1487 }
1488 
1489 static uword
1491 {
1492  clib_error_t *error;
1493  vnet_main_t *vnm = vnet_get_main ();
1494  dpdk_main_t *dm = &dpdk_main;
1496  dpdk_device_t *xd;
1498  int i;
1499  int j;
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_avail ();
1524  if (nports > 0)
1525  {
1526  /* *INDENT-OFF* */
1527  RTE_ETH_FOREACH_DEV(i)
1528  {
1529  xd = NULL;
1530  for (j = 0; j < nports; j++)
1531  {
1532  if (dm->devices[j].port_id == i)
1533  {
1534  xd = &dm->devices[j];
1535  }
1536  }
1537  if (xd != NULL && xd->pmd == VNET_DPDK_PMD_BOND)
1538  {
1539  u8 addr[6];
1540  dpdk_portid_t slink[16];
1541  int nlink = rte_eth_bond_slaves_get (i, slink, 16);
1542  if (nlink > 0)
1543  {
1544  vnet_hw_interface_t *bhi;
1545  ethernet_interface_t *bei;
1546  int rv;
1547 
1548  /* Get MAC of 1st slave link */
1549  rte_eth_macaddr_get
1550  (slink[0], (struct ether_addr *) addr);
1551 
1552  /* Set MAC of bounded interface to that of 1st slave link */
1553  dpdk_log_info ("Set MAC for bond port %d BondEthernet%d",
1554  i, xd->bond_instance_num);
1555  rv = rte_eth_bond_mac_address_set
1556  (i, (struct ether_addr *) addr);
1557  if (rv)
1558  dpdk_log_warn ("Set MAC addr failure rv=%d", rv);
1559 
1560  /* Populate MAC of bonded interface in VPP hw tables */
1561  bhi = vnet_get_hw_interface
1562  (vnm, dm->devices[i].hw_if_index);
1563  bei = pool_elt_at_index
1564  (em->interfaces, bhi->hw_instance);
1565  clib_memcpy (bhi->hw_address, addr, 6);
1566  clib_memcpy (bei->address, addr, 6);
1567 
1568  /* Init l3 packet size allowed on bonded interface */
1570  while (nlink >= 1)
1571  { /* for all slave links */
1572  int slave = slink[--nlink];
1573  dpdk_device_t *sdev = &dm->devices[slave];
1574  vnet_hw_interface_t *shi;
1575  vnet_sw_interface_t *ssi;
1576  ethernet_interface_t *sei;
1577  /* Add MAC to all slave links except the first one */
1578  if (nlink)
1579  {
1580  dpdk_log_info ("Add MAC for slave port %d",
1581  slave);
1582  rv = rte_eth_dev_mac_addr_add
1583  (slave, (struct ether_addr *) addr, 0);
1584  if (rv)
1585  dpdk_log_warn ("Add MAC addr failure rv=%d",
1586  rv);
1587  }
1588  /* Setup slave link state change callback handling */
1589  rte_eth_dev_callback_register
1590  (slave, RTE_ETH_EVENT_INTR_LSC,
1592  dpdk_device_t *sxd = &dm->devices[slave];
1593  sxd->flags |= DPDK_DEVICE_FLAG_BOND_SLAVE;
1594  sxd->bond_port = i;
1595  /* Set slaves bitmap for bonded interface */
1596  bhi->bond_info = clib_bitmap_set
1597  (bhi->bond_info, sdev->hw_if_index, 1);
1598  /* Set MACs and slave link flags on slave interface */
1599  shi = vnet_get_hw_interface (vnm, sdev->hw_if_index);
1600  ssi = vnet_get_sw_interface (vnm, sdev->sw_if_index);
1601  sei = pool_elt_at_index
1602  (em->interfaces, shi->hw_instance);
1605  clib_memcpy (shi->hw_address, addr, 6);
1606  clib_memcpy (sei->address, addr, 6);
1607  /* Set l3 packet size allowed as the lowest of slave */
1608  if (bhi->max_packet_bytes > shi->max_packet_bytes)
1609  bhi->max_packet_bytes = shi->max_packet_bytes;
1610  }
1611  }
1612  }
1613  }
1614  /* *INDENT-ON* */
1615  }
1616  }
1617 
1618  while (1)
1619  {
1620  /*
1621  * check each time through the loop in case intervals are changed
1622  */
1623  f64 min_wait = dm->link_state_poll_interval < dm->stat_poll_interval ?
1625 
1626  vlib_process_wait_for_event_or_clock (vm, min_wait);
1627 
1628  if (dm->admin_up_down_in_progress)
1629  /* skip the poll if an admin up down is in progress (on any interface) */
1630  continue;
1631 
1632  vec_foreach (xd, dm->devices)
1633  {
1634  f64 now = vlib_time_now (vm);
1635  if ((now - xd->time_last_stats_update) >= dm->stat_poll_interval)
1636  dpdk_update_counters (xd, now);
1637  if ((now - xd->time_last_link_update) >= dm->link_state_poll_interval)
1638  dpdk_update_link_state (xd, now);
1639 
1640  }
1641  }
1642 
1643  return 0;
1644 }
1645 
1646 /* *INDENT-OFF* */
1648  .function = dpdk_process,
1649  .type = VLIB_NODE_TYPE_PROCESS,
1650  .name = "dpdk-process",
1651  .process_log2_n_stack_bytes = 17,
1652 };
1653 /* *INDENT-ON* */
1654 
1655 static clib_error_t *
1657 {
1658  dpdk_main_t *dm = &dpdk_main;
1659  clib_error_t *error = 0;
1660 
1661  /* verify that structs are cacheline aligned */
1662  STATIC_ASSERT (offsetof (dpdk_device_t, cacheline0) == 0,
1663  "Cache line marker must be 1st element in dpdk_device_t");
1664  STATIC_ASSERT (offsetof (dpdk_device_t, cacheline1) ==
1666  "Data in cache line 0 is bigger than cache line size");
1667  STATIC_ASSERT (offsetof (frame_queue_trace_t, cacheline0) == 0,
1668  "Cache line marker must be 1st element in frame_queue_trace_t");
1669  STATIC_ASSERT (RTE_CACHE_LINE_SIZE == 1 << CLIB_LOG2_CACHE_LINE_BYTES,
1670  "DPDK RTE CACHE LINE SIZE does not match with 1<<CLIB_LOG2_CACHE_LINE_BYTES");
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  vec_add1 (dm->conf->eal_init_args, (u8 *) "vnet");
1678  vec_add1 (dm->conf->eal_init_args, (u8 *) "--in-memory");
1679 
1680  /* Default vlib_buffer_t flags, DISABLES tcp/udp checksumming... */
1681  dm->buffer_flags_template = (VLIB_BUFFER_TOTAL_LENGTH_VALID |
1682  VLIB_BUFFER_EXT_HDR_VALID |
1683  VNET_BUFFER_F_L4_CHECKSUM_COMPUTED |
1684  VNET_BUFFER_F_L4_CHECKSUM_CORRECT);
1685 
1688 
1689  /* init CLI */
1690  if ((error = vlib_call_init_function (vm, dpdk_cli_init)))
1691  return error;
1692 
1693  dm->log_default = vlib_log_register_class ("dpdk", 0);
1694 
1695  return error;
1696 }
1697 
1699 
1700 
1701 /*
1702  * fd.io coding-style-patch-verification: ON
1703  *
1704  * Local Variables:
1705  * eval: (c-set-style "gnu")
1706  * End:
1707  */
vlib_log_class_t vlib_log_register_class(char *class, char *subclass)
Definition: log.c:227
#define vec_validate(V, I)
Make sure vector is long enough for given index (no header, unspecified alignment) ...
Definition: vec.h:439
u32 sw_if_index
Definition: ipsec_gre.api:37
u32 flags
buffer flags: VLIB_BUFFER_FREE_LIST_INDEX_MASK: bits used to store free list index, VLIB_BUFFER_IS_TRACED: trace this buffer.
Definition: buffer.h:124
static void dpdk_bind_devices_to_uio(dpdk_config_main_t *conf)
Definition: init.c:756
f64 time_last_link_update
Definition: dpdk.h:255
vmrglw vmrglh hi
#define hash_set(h, key, value)
Definition: hash.h:255
#define VIRTIO_PCI_MODERN_DEVICEID_NET
Definition: pci_config.h:169
u32 flags
Definition: vhost_user.h:115
#define clib_min(x, y)
Definition: clib.h:295
ethernet_main_t ethernet_main
Definition: init.c:45
static f64 vlib_process_wait_for_event_or_clock(vlib_main_t *vm, f64 dt)
Suspend a cooperative multi-tasking thread Waits for an event, or for the indicated number of seconds...
Definition: node_funcs.h:703
u8 interface_name_format_decimal
Definition: dpdk.h:373
clib_error_t * vlib_vmbus_bind_to_uio(vlib_vmbus_addr_t *addr)
Definition: vmbus.c:213
vnet_main_t * vnet_get_main(void)
Definition: misc.c:47
Optimized string handling code, including c11-compliant "safe C library" variants.
vnet_device_class_t dpdk_device_class
unsigned long u64
Definition: types.h:89
u32 sw_if_index
Definition: dpdk.h:206
#define DPDK_DEVICE_VLAN_STRIP_OFF
Definition: dpdk.h:340
#define NULL
Definition: clib.h:58
static f64 vlib_time_now(vlib_main_t *vm)
Definition: main.h:255
#define vec_add2_aligned(V, P, N, A)
Add N elements to end of vector V, return pointer to new elements in P.
Definition: vec.h:572
static uword * clib_bitmap_or(uword *ai, uword *bi)
Logical operator across two bitmaps.
static u32 dpdk_flag_change(vnet_main_t *vnm, vnet_hw_interface_t *hi, u32 flags)
Definition: init.c:110
struct rte_pci_device * dpdk_get_pci_device(const struct rte_eth_dev_info *info)
Definition: common.c:348
void dpdk_update_link_state(dpdk_device_t *xd, f64 now)
Definition: init.c:1398
u16 flags
Definition: dpdk.h:214
static vnet_hw_interface_t * vnet_get_hw_interface(vnet_main_t *vnm, u32 hw_if_index)
#define LINK_STATE_ELOGS
Definition: init.c:47
#define CLIB_LOG2_CACHE_LINE_BYTES
Definition: cache.h:50
u32 file_descriptor
Definition: file.h:54
#define vec_add1(V, E)
Add 1 element to end of vector (unspecified alignment).
Definition: vec.h:522
dpdk_device_and_queue_t ** devices_by_hqos_cpu
Definition: dpdk.h:405
static void vlib_pci_free_device_info(vlib_pci_device_info_t *di)
Definition: pci.h:114
#define DPDK_NB_RX_DESC_VIRTIO
Definition: dpdk_priv.h:18
clib_error_t * errors
Definition: dpdk.h:269
#define vec_add2(V, P, N)
Add N elements to end of vector V, return pointer to new elements in P.
Definition: vec.h:560
int i
u32 per_interface_next_index
Definition: dpdk.h:209
u8 enable_tcp_udp_checksum
Definition: dpdk.h:359
static uword * clib_bitmap_set(uword *ai, uword i, uword value)
Sets the ith bit of a bitmap to new_value Removes trailing zeros from the bitmap. ...
Definition: bitmap.h:167
uword unformat_user(unformat_input_t *input, unformat_function_t *func,...)
Definition: unformat.c:983
clib_memset(h->entries, 0, sizeof(h->entries[0])*entries)
#define DPDK_DEVICE_VLAN_STRIP_ON
Definition: dpdk.h:341
static vnet_sw_interface_t * vnet_get_sw_interface(vnet_main_t *vnm, u32 sw_if_index)
u8 * format(u8 *s, const char *fmt,...)
Definition: format.c:424
#define DPDK_NB_TX_DESC_DEFAULT
Definition: dpdk_priv.h:17
u32 supported_flow_actions
Definition: dpdk.h:235
#define foreach_eal_double_hyphen_predicate_arg
Definition: dpdk_priv.h:29
int dpdk_port_state_callback(dpdk_portid_t port_id, enum rte_eth_event_type type, void *param, void *ret_param)
Definition: common.c:338
u16 bond_instance_num
Definition: dpdk.h:248
#define vec_validate_aligned(V, I, A)
Make sure vector is long enough for given index (no header, specified alignment)
Definition: vec.h:450
dpdk_device_config_hqos_t hqos
Definition: dpdk.h:348
#define pool_get(P, E)
Allocate an object E from a pool P (unspecified alignment).
Definition: pool.h:236
vhost_vring_addr_t addr
Definition: vhost_user.h:121
u32 * blacklist_by_pci_vendor_and_device
Definition: dpdk.h:381
unsigned char u8
Definition: types.h:56
dpdk_config_main_t dpdk_config_main
Definition: init.c:45
#define vec_reset_length(v)
Reset vector length to zero NULL-pointer tolerant.
clib_file_function_t * read_function
Definition: file.h:67
#define ETHER_MAX_LEN
Maximum frame len, including CRC.
Definition: init.c:42
double f64
Definition: types.h:142
static vnet_sw_interface_t * vnet_get_hw_sw_interface(vnet_main_t *vnm, u32 hw_if_index)
#define clib_memcpy(d, s, n)
Definition: string.h:180
foreach_dpdk_device_config_item clib_bitmap_t * workers
Definition: dpdk.h:346
#define dpdk_log_warn(...)
Definition: dpdk.h:487
#define pool_foreach(VAR, POOL, BODY)
Iterate through pool.
Definition: pool.h:493
static clib_error_t * dpdk_log_read_ready(clib_file_t *uf)
Definition: init.c:1036
#define VLIB_INIT_FUNCTION(x)
Definition: init.h:163
dpdk_portid_t port_id
Definition: dpdk.h:203
vlib_node_registration_t dpdk_input_node
(constructor) VLIB_REGISTER_NODE (dpdk_input_node)
Definition: node.c:478
dpdk_device_config_t default_devconf
Definition: dpdk.h:376
f64 stat_poll_interval
Definition: dpdk.h:423
static char * vlib_unix_get_runtime_dir(void)
Definition: unix.h:139
static dpdk_port_type_t port_type_from_speed_capa(struct rte_eth_dev_info *dev_info)
Definition: init.c:52
vnet_hw_interface_flags_t flags
Definition: interface.h:494
#define vec_elt_at_index(v, i)
Get vector value at index i checking that i is in bounds.
#define clib_error_return(e, args...)
Definition: error.h:99
u16 rx_q_used
Definition: dpdk.h:227
vlib_pci_addr_t * vlib_pci_get_all_dev_addrs()
Definition: pci.c:1430
clib_file_main_t file_main
Definition: main.c:63
#define vec_resize(V, N)
Resize a vector (no header, unspecified alignment) Add N elements to end of given vector V...
Definition: vec.h:242
unsigned int u32
Definition: types.h:88
void dpdk_device_setup(dpdk_device_t *xd)
Definition: common.c:40
#define vlib_call_init_function(vm, x)
Definition: init.h:260
clib_error_t * unformat_rss_fn(unformat_input_t *input, uword *rss_fn)
Definition: format.c:896
#define DPDK_NB_TX_DESC_VIRTIO
Definition: dpdk_priv.h:19
struct rte_eth_conf port_conf
Definition: dpdk.h:231
static clib_error_t * dpdk_init(vlib_main_t *vm)
Definition: init.c:1656
u32 max_supported_packet_bytes
Definition: interface.h:533
f64 time_last_stats_update
Definition: dpdk.h:262
vlib_pci_device_info_t * vlib_pci_get_device_info(vlib_main_t *vm, vlib_pci_addr_t *addr, clib_error_t **error)
Definition: pci.c:202
struct rte_eth_txconf tx_conf
Definition: dpdk.h:232
u8 * description
Definition: file.h:70
#define hash_get(h, key)
Definition: hash.h:249
#define clib_bitmap_foreach(i, ai, body)
Macro to iterate across set bits in a bitmap.
Definition: bitmap.h:361
#define pool_elt_at_index(p, i)
Returns pointer to element at given index.
Definition: pool.h:514
#define vec_insert(V, N, M)
Insert N vector elements starting at element M, initialize new elements to zero (no header...
Definition: vec.h:685
vlib_pci_addr_t pci_addr
Definition: dpdk.h:335
static clib_error_t * dpdk_config(vlib_main_t *vm, unformat_input_t *input)
Definition: init.c:1067
#define foreach_eal_double_hyphen_arg
Definition: dpdk_priv.h:45
dpdk_portid_t bond_port
Definition: dpdk.h:252
#define ETHERNET_INTERFACE_FLAG_CONFIG_MTU(flags)
Definition: ethernet.h:147
u8 ** eal_init_args
Definition: dpdk.h:355
dpdk_per_thread_data_t * per_thread_data
Definition: dpdk.h:406
clib_error_t * vlib_pci_bind_to_uio(vlib_main_t *vm, vlib_pci_addr_t *addr, char *uio_drv_name)
Definition: pci.c:386
#define foreach_eal_single_hyphen_mandatory_arg
Definition: dpdk_priv.h:35
static dpdk_port_type_t port_type_from_link_speed(u32 link_speed)
Definition: init.c:80
struct _unformat_input_t unformat_input_t
unsigned short u16
Definition: types.h:57
#define clib_error_return_unix(e, args...)
Definition: error.h:102
#define foreach_dpdk_pmd
Definition: dpdk.h:62
vlib_buffer_t buffer_template
Definition: dpdk.h:397
unformat_function_t unformat_vlib_pci_addr
Definition: pci.h:323
#define ELOG_DATA(em, f)
Definition: elog.h:484
#define VIRTIO_PCI_LEGACY_DEVICEID_NET
Definition: pci_config.h:168
dpdk_port_type_t port_type
Definition: dpdk.h:263
#define VLIB_CONFIG_FUNCTION(x, n,...)
Definition: init.h:172
vnet_sw_interface_flags_t flags
Definition: interface.h:684
signed char i8
Definition: types.h:45
u16 tx_q_used
Definition: dpdk.h:226
u16 nb_rx_desc
Definition: dpdk.h:228
uint16_t dpdk_portid_t
Definition: dpdk.h:122
#define dpdk_log_info(...)
Definition: dpdk.h:491
u32 hw_if_index
Definition: dpdk.h:205
u8 len
Definition: ip_types.api:49
void unformat_init_vector(unformat_input_t *input, u8 *vector_string)
Definition: unformat.c:1031
#define VNET_HW_INTERFACE_BOND_INFO_SLAVE
Definition: interface.h:553
u16 af_packet_instance_num
Definition: dpdk.h:247
#define foreach_eal_single_hyphen_arg
Definition: dpdk_priv.h:39
#define VLIB_REGISTER_NODE(x,...)
Definition: node.h:169
u32 num_crypto_mbufs
Definition: dpdk.h:367
#define DPDK_NB_RX_DESC_DEFAULT
Definition: dpdk_priv.h:16
#define UNFORMAT_END_OF_INPUT
Definition: format.h:144
static clib_error_t * dpdk_device_config(dpdk_config_main_t *conf, vlib_pci_addr_t pci_addr, unformat_input_t *input, u8 is_default)
Definition: init.c:932
dpdk_device_t * devices
Definition: dpdk.h:404
vlib_main_t * vm
Definition: buffer.c:312
static void dpdk_update_counters(dpdk_device_t *xd, f64 now)
Definition: dpdk_priv.h:77
u8 nchannels_set_manually
Definition: dpdk.h:364
#define vec_free(V)
Free vector&#39;s memory (no header).
Definition: vec.h:341
#define dpdk_log_err(...)
Definition: dpdk.h:485
volatile u32 ** lockp
Definition: dpdk.h:197
dpdk_device_config_t * dev_confs
Definition: dpdk.h:377
#define clib_warning(format, args...)
Definition: error.h:59
dpdk_pmd_t pmd
Definition: dpdk.h:211
format_function_t format_dpdk_device_errors
Definition: dpdk.h:498
elog_main_t elog_main
Definition: main.h:172
#define ETHERNET_INTERFACE_FLAG_ACCEPT_ALL
Definition: ethernet.h:141
u8 coremask_set_manually
Definition: dpdk.h:363
#define ELOG_TYPE_DECLARE(f)
Definition: elog.h:442
static void dpdk_device_lock_init(dpdk_device_t *xd)
Definition: init.c:142
format_function_t format_dpdk_rss_hf_name
Definition: dpdk.h:504
static void dpdk_bind_vmbus_devices_to_uio(dpdk_config_main_t *conf)
Definition: init.c:911
u8 * interface_name_suffix
Definition: dpdk.h:220
#define hash_create(elts, value_bytes)
Definition: hash.h:696
#define ASSERT(truth)
format_function_t format_dpdk_device_name
Definition: dpdk.h:496
int hqos_cpu_count
Definition: dpdk.h:419
void vnet_hw_interface_assign_rx_thread(vnet_main_t *vnm, u32 hw_if_index, u16 queue_id, uword thread_index)
Definition: devices.c:139
static uword clib_file_add(clib_file_main_t *um, clib_file_t *template)
Definition: file.h:96
vlib_log_class_t log_default
Definition: dpdk.h:434
static uword dpdk_process(vlib_main_t *vm, vlib_node_runtime_t *rt, vlib_frame_t *f)
Definition: init.c:1490
Bitmaps built as vectors of machine words.
#define clib_error_report(e)
Definition: error.h:113
#define clib_bitmap_free(v)
Free a bitmap.
Definition: bitmap.h:92
uword clib_mem_get_default_hugepage_size(void)
Definition: mem.c:57
#define DPDK_LINK_POLL_INTERVAL
Definition: dpdk.h:275
dpdk_main_t dpdk_main
Definition: init.c:44
uword * thread_registrations_by_name
Definition: threads.h:288
clib_error_t * dpdk_cli_init(vlib_main_t *vm)
Definition: cli.c:1741
dpdk_portid_t device_index
Definition: dpdk.h:200
struct rte_eth_link link
Definition: dpdk.h:254
u8 * name
Definition: dpdk.h:219
static vlib_main_t * vlib_get_main(void)
Definition: global_funcs.h:23
clib_error_t * dpdk_port_setup_hqos(dpdk_device_t *xd, dpdk_device_config_hqos_t *hqos)
Definition: hqos.c:247
dpdk_port_type_t
Definition: dpdk.h:99
static int dpdk_port_crc_strip_enabled(dpdk_device_t *xd)
Definition: init.c:155
static uword clib_bitmap_count_set_bits(uword *ai)
Return the number of set bits in a bitmap.
Definition: bitmap.h:462
void dpdk_device_config_hqos_default(dpdk_device_config_hqos_t *hqos)
Definition: hqos.c:205
Definition: defs.h:47
#define DPDK_STATS_POLL_INTERVAL
Definition: dpdk.h:272
vlib_vmbus_addr_t * vlib_vmbus_get_all_dev_addrs()
Definition: vmbus.c:384
unformat_function_t unformat_line
Definition: format.h:279
static vlib_node_registration_t dpdk_process_node
(constructor) VLIB_REGISTER_NODE (dpdk_process_node)
Definition: init.c:1647
clib_error_t * dpdk_buffer_pools_create(vlib_main_t *vm)
Definition: buffer.c:412
#define vec_len(v)
Number of elements in vector (rvalue-only, NULL tolerant)
uword unformat_vlib_cli_sub_input(unformat_input_t *i, va_list *args)
Definition: cli.c:158
u8 admin_up_down_in_progress
Definition: dpdk.h:415
clib_error_t * ethernet_register_interface(vnet_main_t *vnm, u32 dev_class_index, u32 dev_instance, const u8 *address, u32 *hw_if_index_return, ethernet_flag_change_function_t flag_change)
Definition: interface.c:278
#define STATIC_ASSERT(truth,...)
clib_error_t * vnet_hw_interface_set_flags(vnet_main_t *vnm, u32 hw_if_index, vnet_hw_interface_flags_t flags)
Definition: interface.c:504
u8 no_tx_checksum_offload
Definition: dpdk.h:360
VLIB buffer representation.
Definition: buffer.h:102
u64 uword
Definition: types.h:112
static void unformat_free(unformat_input_t *i)
Definition: format.h:162
static clib_error_t * dpdk_lib_init(dpdk_main_t *dm)
Definition: init.c:161
#define hash_get_mem(h, key)
Definition: hash.h:269
u32 buffer_flags_template
Definition: dpdk.h:409
static void * clib_mem_alloc_aligned(uword size, uword align)
Definition: mem.h:140
#define vnet_buffer(b)
Definition: buffer.h:369
static u32 random_u32(u32 *seed)
32-bit random number generator
Definition: random.h:69
u8 * format_unformat_error(u8 *s, va_list *va)
Definition: unformat.c:91
int hqos_cpu_first_index
Definition: dpdk.h:418
static vlib_thread_main_t * vlib_get_thread_main()
Definition: global_funcs.h:32
#define ETHERNET_MAX_PACKET_BYTES
Definition: ethernet.h:133
#define vec_foreach(var, vec)
Vector iterator.
i8 cpu_socket
Definition: dpdk.h:212
#define ETHERNET_INTERFACE_FLAG_CONFIG_PROMISC(flags)
Definition: ethernet.h:142
uword * cpu_socket_bitmap
Definition: threads.h:323
Definition: file.h:51
u8 * uio_driver_name
Definition: dpdk.h:357
vlib_thread_registration_t ** registrations
Definition: threads.h:286
#define CLIB_CACHE_LINE_BYTES
Definition: cache.h:59
ethernet_interface_t * interfaces
Definition: ethernet.h:272
vnet_main_t * vnet_main
Definition: dpdk.h:427
u16 nb_tx_desc
Definition: dpdk.h:216
clib_error_t * unformat_hqos(unformat_input_t *input, dpdk_device_config_hqos_t *hqos)
Definition: format.c:919
u16 device_class
Definition: pci.h:72
uword * device_config_index_by_pci_addr
Definition: dpdk.h:378
uword unformat_skip_white_space(unformat_input_t *input)
Definition: unformat.c:815
static uword vnet_hw_interface_is_link_up(vnet_main_t *vnm, u32 hw_if_index)
volatile u32 worker_thread_release
Definition: threads.h:329
#define dpdk_log_notice(...)
Definition: dpdk.h:489
static void vnet_hw_interface_set_link_speed(vnet_main_t *vnm, u32 hw_if_index, u32 link_speed)
static void vnet_hw_interface_set_input_node(vnet_main_t *vnm, u32 hw_if_index, u32 node_index)
Definition: devices.h:79
vnet_device_main_t vnet_device_main
Definition: devices.c:22
format_function_t format_vlib_pci_addr
Definition: pci.h:324
uword unformat(unformat_input_t *i, const char *fmt,...)
Definition: unformat.c:972
f64 link_state_poll_interval
Definition: dpdk.h:422
CLIB vectors are ubiquitous dynamically resized arrays with by user defined "headers".
static uword unformat_check_input(unformat_input_t *i)
Definition: format.h:170
dpdk_config_main_t * conf
Definition: dpdk.h:428
vlib_main_t * vlib_main
Definition: dpdk.h:426