Add direct packets to specific flow action in dpdk flow
[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             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_REDIRECT_TO_QUEUE |
396                 VNET_FLOW_ACTION_BUFFER_ADVANCE |
397                 VNET_FLOW_ACTION_COUNT | VNET_FLOW_ACTION_DROP;
398
399               if (dm->conf->no_tx_checksum_offload == 0)
400                 {
401                   xd->port_conf.txmode.offloads |= DEV_TX_OFFLOAD_TCP_CKSUM;
402                   xd->port_conf.txmode.offloads |= DEV_TX_OFFLOAD_UDP_CKSUM;
403                   xd->flags |=
404                     DPDK_DEVICE_FLAG_TX_OFFLOAD |
405                     DPDK_DEVICE_FLAG_INTEL_PHDR_CKSUM;
406                 }
407
408
409               break;
410             case VNET_DPDK_PMD_CXGBE:
411             case VNET_DPDK_PMD_MLX4:
412             case VNET_DPDK_PMD_MLX5:
413             case VNET_DPDK_PMD_QEDE:
414               xd->port_type = port_type_from_speed_capa (&dev_info);
415               break;
416
417               /* SR-IOV VFs */
418             case VNET_DPDK_PMD_IGBVF:
419             case VNET_DPDK_PMD_IXGBEVF:
420             case VNET_DPDK_PMD_I40EVF:
421               xd->port_type = VNET_DPDK_PORT_TYPE_ETH_VF;
422               break;
423
424             case VNET_DPDK_PMD_THUNDERX:
425               xd->port_type = VNET_DPDK_PORT_TYPE_ETH_VF;
426
427               if (dm->conf->no_tx_checksum_offload == 0)
428                 {
429                   xd->port_conf.txmode.offloads |= DEV_TX_OFFLOAD_TCP_CKSUM;
430                   xd->port_conf.txmode.offloads |= DEV_TX_OFFLOAD_UDP_CKSUM;
431                   xd->flags |= DPDK_DEVICE_FLAG_TX_OFFLOAD;
432                 }
433               break;
434
435             case VNET_DPDK_PMD_ENA:
436               xd->port_type = VNET_DPDK_PORT_TYPE_ETH_VF;
437               xd->port_conf.rxmode.offloads &= ~DEV_RX_OFFLOAD_SCATTER;
438               break;
439
440             case VNET_DPDK_PMD_DPAA2:
441               xd->port_type = VNET_DPDK_PORT_TYPE_ETH_10G;
442               break;
443
444               /* Cisco VIC */
445             case VNET_DPDK_PMD_ENIC:
446               xd->port_type = port_type_from_link_speed (l.link_speed);
447               break;
448
449               /* Intel Red Rock Canyon */
450             case VNET_DPDK_PMD_FM10K:
451               xd->port_type = VNET_DPDK_PORT_TYPE_ETH_SWITCH;
452               break;
453
454               /* virtio */
455             case VNET_DPDK_PMD_VIRTIO:
456               xd->port_type = VNET_DPDK_PORT_TYPE_ETH_1G;
457               xd->nb_rx_desc = DPDK_NB_RX_DESC_VIRTIO;
458               xd->nb_tx_desc = DPDK_NB_TX_DESC_VIRTIO;
459               break;
460
461               /* vmxnet3 */
462             case VNET_DPDK_PMD_VMXNET3:
463               xd->port_type = VNET_DPDK_PORT_TYPE_ETH_1G;
464               xd->port_conf.txmode.offloads |= DEV_TX_OFFLOAD_MULTI_SEGS;
465               break;
466
467             case VNET_DPDK_PMD_AF_PACKET:
468               xd->port_type = VNET_DPDK_PORT_TYPE_AF_PACKET;
469               xd->af_packet_instance_num = af_packet_instance_num++;
470               break;
471
472             case VNET_DPDK_PMD_BOND:
473               xd->port_type = VNET_DPDK_PORT_TYPE_ETH_BOND;
474               xd->bond_instance_num = bond_ether_instance_num++;
475               break;
476
477             case VNET_DPDK_PMD_VIRTIO_USER:
478               xd->port_type = VNET_DPDK_PORT_TYPE_VIRTIO_USER;
479               break;
480
481             case VNET_DPDK_PMD_VHOST_ETHER:
482               xd->port_type = VNET_DPDK_PORT_TYPE_VHOST_ETHER;
483               break;
484
485             case VNET_DPDK_PMD_LIOVF_ETHER:
486               xd->port_type = VNET_DPDK_PORT_TYPE_ETH_VF;
487               break;
488
489             case VNET_DPDK_PMD_FAILSAFE:
490               xd->port_type = VNET_DPDK_PORT_TYPE_FAILSAFE;
491               xd->port_conf.intr_conf.lsc = 1;
492               break;
493
494             case VNET_DPDK_PMD_NETVSC:
495               xd->port_type = port_type_from_link_speed (l.link_speed);
496               break;
497
498             default:
499               xd->port_type = VNET_DPDK_PORT_TYPE_UNKNOWN;
500             }
501
502           if (devconf->num_rx_desc)
503             xd->nb_rx_desc = devconf->num_rx_desc;
504
505           if (devconf->num_tx_desc)
506             xd->nb_tx_desc = devconf->num_tx_desc;
507         }
508
509       if (xd->pmd == VNET_DPDK_PMD_AF_PACKET)
510         {
511           f64 now = vlib_time_now (vm);
512           u32 rnd;
513           rnd = (u32) (now * 1e6);
514           rnd = random_u32 (&rnd);
515           clib_memcpy (addr + 2, &rnd, sizeof (rnd));
516           addr[0] = 2;
517           addr[1] = 0xfe;
518         }
519       else
520         rte_eth_macaddr_get (i, (struct ether_addr *) addr);
521
522       if (xd->tx_q_used < tm->n_vlib_mains)
523         dpdk_device_lock_init (xd);
524
525       xd->port_id = i;
526       xd->device_index = xd - dm->devices;
527       xd->per_interface_next_index = ~0;
528
529       /* assign interface to input thread */
530       int q;
531
532       if (devconf->hqos_enabled)
533         {
534           xd->flags |= DPDK_DEVICE_FLAG_HQOS;
535
536           int cpu;
537           if (devconf->hqos.hqos_thread_valid)
538             {
539               if (devconf->hqos.hqos_thread >= dm->hqos_cpu_count)
540                 return clib_error_return (0, "invalid HQoS thread index");
541
542               cpu = dm->hqos_cpu_first_index + devconf->hqos.hqos_thread;
543             }
544           else
545             {
546               if (dm->hqos_cpu_count == 0)
547                 return clib_error_return (0, "no HQoS threads available");
548
549               cpu = dm->hqos_cpu_first_index + next_hqos_cpu;
550
551               next_hqos_cpu++;
552               if (next_hqos_cpu == dm->hqos_cpu_count)
553                 next_hqos_cpu = 0;
554
555               devconf->hqos.hqos_thread_valid = 1;
556               devconf->hqos.hqos_thread = cpu;
557             }
558
559           dpdk_device_and_queue_t *dq;
560           vec_add2 (dm->devices_by_hqos_cpu[cpu], dq, 1);
561           dq->device = xd->device_index;
562           dq->queue_id = 0;
563         }
564
565       error = ethernet_register_interface
566         (dm->vnet_main, dpdk_device_class.index, xd->device_index,
567          /* ethernet address */ addr,
568          &xd->hw_if_index, dpdk_flag_change);
569       if (error)
570         return error;
571
572       /*
573        * Ensure default mtu is not > the mtu read from the hardware.
574        * Otherwise rte_eth_dev_configure() will fail and the port will
575        * not be available.
576        * Calculate max_frame_size and mtu supported by NIC
577        */
578       if (ETHERNET_MAX_PACKET_BYTES > dev_info.max_rx_pktlen)
579         {
580           /*
581            * This device does not support the platforms's max frame
582            * size. Use it's advertised mru instead.
583            */
584           max_rx_frame = dev_info.max_rx_pktlen;
585           mtu = dev_info.max_rx_pktlen - sizeof (ethernet_header_t);
586         }
587       else
588         {
589           /* VPP treats MTU and max_rx_pktlen both equal to
590            * ETHERNET_MAX_PACKET_BYTES, if dev_info.max_rx_pktlen >=
591            * ETHERNET_MAX_PACKET_BYTES + sizeof(ethernet_header_t)
592            */
593           if (dev_info.max_rx_pktlen >= (ETHERNET_MAX_PACKET_BYTES +
594                                          sizeof (ethernet_header_t)))
595             {
596               mtu = ETHERNET_MAX_PACKET_BYTES;
597               max_rx_frame = ETHERNET_MAX_PACKET_BYTES;
598
599               /*
600                * Some platforms do not account for Ethernet FCS (4 bytes) in
601                * MTU calculations. To interop with them increase mru but only
602                * if the device's settings can support it.
603                */
604               if (dpdk_port_crc_strip_enabled (xd) &&
605                   (dev_info.max_rx_pktlen >= (ETHERNET_MAX_PACKET_BYTES +
606                                               sizeof (ethernet_header_t) +
607                                               4)))
608                 {
609                   max_rx_frame += 4;
610                 }
611             }
612           else
613             {
614               max_rx_frame = ETHERNET_MAX_PACKET_BYTES;
615               mtu = ETHERNET_MAX_PACKET_BYTES - sizeof (ethernet_header_t);
616
617               if (dpdk_port_crc_strip_enabled (xd) &&
618                   (dev_info.max_rx_pktlen >= (ETHERNET_MAX_PACKET_BYTES + 4)))
619                 {
620                   max_rx_frame += 4;
621                 }
622             }
623         }
624
625       if (xd->pmd == VNET_DPDK_PMD_FAILSAFE)
626         {
627           /* failsafe device numerables are reported with active device only,
628            * need to query the mtu for current device setup to overwrite
629            * reported value.
630            */
631           uint16_t dev_mtu;
632           if (!rte_eth_dev_get_mtu (i, &dev_mtu))
633             {
634               mtu = dev_mtu;
635               max_rx_frame = mtu + sizeof (ethernet_header_t);
636
637               if (dpdk_port_crc_strip_enabled (xd))
638                 {
639                   max_rx_frame += 4;
640                 }
641             }
642         }
643
644       /*Set port rxmode config */
645       xd->port_conf.rxmode.max_rx_pkt_len = max_rx_frame;
646
647       sw = vnet_get_hw_sw_interface (dm->vnet_main, xd->hw_if_index);
648       xd->sw_if_index = sw->sw_if_index;
649       vnet_hw_interface_set_input_node (dm->vnet_main, xd->hw_if_index,
650                                         dpdk_input_node.index);
651
652       if (devconf->workers)
653         {
654           int i;
655           q = 0;
656           clib_bitmap_foreach (i, devconf->workers, ({
657             vnet_hw_interface_assign_rx_thread (dm->vnet_main, xd->hw_if_index, q++,
658                                              vdm->first_worker_thread_index + i);
659           }));
660         }
661       else
662         for (q = 0; q < xd->rx_q_used; q++)
663           {
664             vnet_hw_interface_assign_rx_thread (dm->vnet_main, xd->hw_if_index, q,      /* any */
665                                                 ~1);
666           }
667
668       /*Get vnet hardware interface */
669       hi = vnet_get_hw_interface (dm->vnet_main, xd->hw_if_index);
670
671       /*Override default max_packet_bytes and max_supported_bytes set in
672        * ethernet_register_interface() above*/
673       if (hi)
674         {
675           hi->max_packet_bytes = mtu;
676           hi->max_supported_packet_bytes = max_rx_frame;
677         }
678
679       if (dm->conf->no_tx_checksum_offload == 0)
680         if (xd->flags & DPDK_DEVICE_FLAG_TX_OFFLOAD && hi != NULL)
681           hi->flags |= VNET_HW_INTERFACE_FLAG_SUPPORTS_TX_L4_CKSUM_OFFLOAD;
682
683       dpdk_device_setup (xd);
684
685       if (vec_len (xd->errors))
686         dpdk_log_err ("setup failed for device %U. Errors:\n  %U",
687                       format_dpdk_device_name, i,
688                       format_dpdk_device_errors, xd);
689
690       if (devconf->hqos_enabled)
691         {
692           clib_error_t *rv;
693           rv = dpdk_port_setup_hqos (xd, &devconf->hqos);
694           if (rv)
695             return rv;
696         }
697
698       /*
699        * A note on Cisco VIC (PMD_ENIC) and VLAN:
700        *
701        * With Cisco VIC vNIC, every ingress packet is tagged. On a
702        * trunk vNIC (C series "standalone" server), packets on no VLAN
703        * are tagged with vlan 0. On an access vNIC (standalone or B
704        * series "blade" server), packets on the default/native VLAN
705        * are tagged with that vNIC's VLAN. VPP expects these packets
706        * to be untagged, and previously enabled VLAN strip on VIC by
707        * default. But it also broke vlan sub-interfaces.
708        *
709        * The VIC adapter has "untag default vlan" ingress VLAN rewrite
710        * mode, which removes tags from these packets. VPP now includes
711        * a local patch for the enic driver to use this untag mode, so
712        * enabling vlan stripping is no longer needed. In future, the
713        * driver + dpdk will have an API to set the mode after
714        * rte_eal_init. Then, this note and local patch will be
715        * removed.
716        */
717
718       /*
719        * VLAN stripping: default to VLAN strip disabled, unless specified
720        * otherwise in the startup config.
721        */
722       if (devconf->vlan_strip_offload == DPDK_DEVICE_VLAN_STRIP_ON)
723         vlan_strip = 1;
724
725       if (vlan_strip)
726         {
727           int vlan_off;
728           vlan_off = rte_eth_dev_get_vlan_offload (xd->port_id);
729           vlan_off |= ETH_VLAN_STRIP_OFFLOAD;
730           if (vlan_off)
731             xd->port_conf.rxmode.offloads |= DEV_RX_OFFLOAD_VLAN_STRIP;
732           else
733             xd->port_conf.rxmode.offloads &= ~DEV_RX_OFFLOAD_VLAN_STRIP;
734           if (rte_eth_dev_set_vlan_offload (xd->port_id, vlan_off) == 0)
735             dpdk_log_info ("VLAN strip enabled for interface\n");
736           else
737             dpdk_log_warn ("VLAN strip cannot be supported by interface\n");
738         }
739
740       if (hi)
741         hi->max_packet_bytes = xd->port_conf.rxmode.max_rx_pkt_len
742           - sizeof (ethernet_header_t);
743       else
744         clib_warning ("hi NULL");
745
746       if (dm->conf->no_multi_seg)
747         mtu = mtu > ETHER_MAX_LEN ? ETHER_MAX_LEN : mtu;
748
749       rte_eth_dev_set_mtu (xd->port_id, mtu);
750     }
751   /* *INDENT-ON* */
752
753   return 0;
754 }
755
756 static void
757 dpdk_bind_devices_to_uio (dpdk_config_main_t * conf)
758 {
759   vlib_main_t *vm = vlib_get_main ();
760   clib_error_t *error;
761   u8 *pci_addr = 0;
762   int num_whitelisted = vec_len (conf->dev_confs);
763   vlib_pci_device_info_t *d = 0;
764   vlib_pci_addr_t *addr = 0, *addrs;
765   int i;
766
767   addrs = vlib_pci_get_all_dev_addrs ();
768   /* *INDENT-OFF* */
769   vec_foreach (addr, addrs)
770     {
771     dpdk_device_config_t * devconf = 0;
772     vec_reset_length (pci_addr);
773     pci_addr = format (pci_addr, "%U%c", format_vlib_pci_addr, addr, 0);
774     if (d)
775     {
776       vlib_pci_free_device_info (d);
777       d = 0;
778       }
779     d = vlib_pci_get_device_info (vm, addr, &error);
780     if (error)
781     {
782       clib_error_report (error);
783       continue;
784     }
785
786     if (d->device_class != PCI_CLASS_NETWORK_ETHERNET && d->device_class != PCI_CLASS_PROCESSOR_CO)
787       continue;
788
789     if (num_whitelisted)
790       {
791         uword * p = hash_get (conf->device_config_index_by_pci_addr, addr->as_u32);
792
793         if (!p)
794           {
795           skipped:
796             continue;
797           }
798
799         devconf = pool_elt_at_index (conf->dev_confs, p[0]);
800       }
801
802     /* Enforce Device blacklist by vendor and device */
803     for (i = 0; i < vec_len (conf->blacklist_by_pci_vendor_and_device); i++)
804       {
805         u16 vendor, device;
806         vendor = (u16)(conf->blacklist_by_pci_vendor_and_device[i] >> 16);
807         device = (u16)(conf->blacklist_by_pci_vendor_and_device[i] & 0xFFFF);
808         if (d->vendor_id == vendor && d->device_id == device)
809           {
810             /*
811              * Expected case: device isn't whitelisted,
812              * so blacklist it...
813              */
814             if (devconf == 0)
815               {
816                 /* Device is blacklisted */
817                 pool_get (conf->dev_confs, devconf);
818                 hash_set (conf->device_config_index_by_pci_addr, addr->as_u32,
819                           devconf - conf->dev_confs);
820                 devconf->pci_addr.as_u32 = addr->as_u32;
821                 devconf->is_blacklisted = 1;
822                 goto skipped;
823               }
824             else /* explicitly whitelisted, ignore the device blacklist  */
825               break;
826           }
827       }
828
829     /* virtio */
830     if (d->vendor_id == 0x1af4 &&
831             (d->device_id == VIRTIO_PCI_LEGACY_DEVICEID_NET ||
832              d->device_id == VIRTIO_PCI_MODERN_DEVICEID_NET))
833       ;
834     /* vmxnet3 */
835     else if (d->vendor_id == 0x15ad && d->device_id == 0x07b0)
836       {
837         /*
838          * For vmxnet3 PCI, unless it is explicitly specified in the whitelist,
839          * the default is to put it in the blacklist.
840          */
841         if (devconf == 0)
842           {
843             pool_get (conf->dev_confs, devconf);
844             hash_set (conf->device_config_index_by_pci_addr, addr->as_u32,
845                       devconf - conf->dev_confs);
846             devconf->pci_addr.as_u32 = addr->as_u32;
847             devconf->is_blacklisted = 1;
848           }
849       }
850     /* all Intel network devices */
851     else if (d->vendor_id == 0x8086 && d->device_class == PCI_CLASS_NETWORK_ETHERNET)
852       ;
853     /* all Intel QAT devices VFs */
854     else if (d->vendor_id == 0x8086 && d->device_class == PCI_CLASS_PROCESSOR_CO &&
855         (d->device_id == 0x0443 || d->device_id == 0x37c9 || d->device_id == 0x19e3))
856       ;
857     /* Cisco VIC */
858     else if (d->vendor_id == 0x1137 &&
859         (d->device_id == 0x0043 || d->device_id == 0x0071))
860       ;
861     /* Chelsio T4/T5 */
862     else if (d->vendor_id == 0x1425 && (d->device_id & 0xe000) == 0x4000)
863       ;
864     /* Amazen Elastic Network Adapter */
865     else if (d->vendor_id == 0x1d0f && d->device_id >= 0xec20 && d->device_id <= 0xec21)
866       ;
867     /* Cavium Network Adapter */
868     else if (d->vendor_id == 0x177d && d->device_id == 0x9712)
869       ;
870     /* Cavium FastlinQ QL41000 Series */
871     else if (d->vendor_id == 0x1077 && d->device_id >= 0x8070 && d->device_id <= 0x8090)
872       ;
873     /* Mellanox mlx4 */
874     else if (d->vendor_id == 0x15b3 && d->device_id >= 0x1003 && d->device_id <= 0x1004)
875       {
876         continue;
877       }
878     /* Mellanox mlx5 */
879     else if (d->vendor_id == 0x15b3 && d->device_id >= 0x1013 && d->device_id <= 0x101a)
880       {
881         continue;
882       }
883     else
884       {
885         dpdk_log_warn ("Unsupported PCI device 0x%04x:0x%04x found "
886                       "at PCI address %s\n", (u16) d->vendor_id, (u16) d->device_id,
887                       pci_addr);
888         continue;
889       }
890
891     error = vlib_pci_bind_to_uio (vm, addr, (char *) conf->uio_driver_name);
892
893     if (error)
894       {
895         if (devconf == 0)
896           {
897             pool_get (conf->dev_confs, devconf);
898             hash_set (conf->device_config_index_by_pci_addr, addr->as_u32,
899                       devconf - conf->dev_confs);
900             devconf->pci_addr.as_u32 = addr->as_u32;
901           }
902         devconf->is_blacklisted = 1;
903         clib_error_report (error);
904       }
905   }
906   /* *INDENT-ON* */
907   vec_free (pci_addr);
908   vlib_pci_free_device_info (d);
909 }
910
911 static void
912 dpdk_bind_vmbus_devices_to_uio (dpdk_config_main_t * conf)
913 {
914   clib_error_t *error;
915   vlib_vmbus_addr_t *addrs, *addr = 0;
916
917   addrs = vlib_vmbus_get_all_dev_addrs ();
918
919   /* *INDENT-OFF* */
920   vec_foreach (addr, addrs)
921     {
922       error = vlib_vmbus_bind_to_uio (addr);
923
924       if (error)
925         {
926           clib_error_report (error);
927         }
928     }
929   /* *INDENT-ON* */
930 }
931
932 static clib_error_t *
933 dpdk_device_config (dpdk_config_main_t * conf, vlib_pci_addr_t pci_addr,
934                     unformat_input_t * input, u8 is_default)
935 {
936   clib_error_t *error = 0;
937   uword *p;
938   dpdk_device_config_t *devconf;
939   unformat_input_t sub_input;
940
941   if (is_default)
942     {
943       devconf = &conf->default_devconf;
944     }
945   else
946     {
947       p = hash_get (conf->device_config_index_by_pci_addr, pci_addr.as_u32);
948
949       if (!p)
950         {
951           pool_get (conf->dev_confs, devconf);
952           hash_set (conf->device_config_index_by_pci_addr, pci_addr.as_u32,
953                     devconf - conf->dev_confs);
954         }
955       else
956         return clib_error_return (0,
957                                   "duplicate configuration for PCI address %U",
958                                   format_vlib_pci_addr, &pci_addr);
959     }
960
961   devconf->pci_addr.as_u32 = pci_addr.as_u32;
962   devconf->hqos_enabled = 0;
963 #if 0
964   dpdk_device_config_hqos_default (&devconf->hqos);
965 #endif
966
967   if (!input)
968     return 0;
969
970   unformat_skip_white_space (input);
971   while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
972     {
973       if (unformat (input, "num-rx-queues %u", &devconf->num_rx_queues))
974         ;
975       else if (unformat (input, "num-tx-queues %u", &devconf->num_tx_queues))
976         ;
977       else if (unformat (input, "num-rx-desc %u", &devconf->num_rx_desc))
978         ;
979       else if (unformat (input, "num-tx-desc %u", &devconf->num_tx_desc))
980         ;
981       else if (unformat (input, "name %s", &devconf->name))
982         ;
983       else if (unformat (input, "workers %U", unformat_bitmap_list,
984                          &devconf->workers))
985         ;
986       else
987         if (unformat
988             (input, "rss %U", unformat_vlib_cli_sub_input, &sub_input))
989         {
990           error = unformat_rss_fn (&sub_input, &devconf->rss_fn);
991           if (error)
992             break;
993         }
994       else if (unformat (input, "vlan-strip-offload off"))
995         devconf->vlan_strip_offload = DPDK_DEVICE_VLAN_STRIP_OFF;
996       else if (unformat (input, "vlan-strip-offload on"))
997         devconf->vlan_strip_offload = DPDK_DEVICE_VLAN_STRIP_ON;
998       else
999         if (unformat
1000             (input, "hqos %U", unformat_vlib_cli_sub_input, &sub_input))
1001         {
1002           devconf->hqos_enabled = 1;
1003           error = unformat_hqos (&sub_input, &devconf->hqos);
1004           if (error)
1005             break;
1006         }
1007       else if (unformat (input, "hqos"))
1008         {
1009           devconf->hqos_enabled = 1;
1010         }
1011       else
1012         {
1013           error = clib_error_return (0, "unknown input `%U'",
1014                                      format_unformat_error, input);
1015           break;
1016         }
1017     }
1018
1019   if (error)
1020     return error;
1021
1022   if (devconf->workers && devconf->num_rx_queues == 0)
1023     devconf->num_rx_queues = clib_bitmap_count_set_bits (devconf->workers);
1024   else if (devconf->workers &&
1025            clib_bitmap_count_set_bits (devconf->workers) !=
1026            devconf->num_rx_queues)
1027     error =
1028       clib_error_return (0,
1029                          "%U: number of worker threads must be "
1030                          "equal to number of rx queues", format_vlib_pci_addr,
1031                          &pci_addr);
1032
1033   return error;
1034 }
1035
1036 static clib_error_t *
1037 dpdk_log_read_ready (clib_file_t * uf)
1038 {
1039   unformat_input_t input;
1040   u8 *line, *s = 0;
1041   int n, n_try;
1042
1043   n = n_try = 4096;
1044   while (n == n_try)
1045     {
1046       uword len = vec_len (s);
1047       vec_resize (s, len + n_try);
1048
1049       n = read (uf->file_descriptor, s + len, n_try);
1050       if (n < 0 && errno != EAGAIN)
1051         return clib_error_return_unix (0, "read");
1052       _vec_len (s) = len + (n < 0 ? 0 : n);
1053     }
1054
1055   unformat_init_vector (&input, s);
1056
1057   while (unformat_user (&input, unformat_line, &line))
1058     {
1059       dpdk_log_notice ("%v", line);
1060       vec_free (line);
1061     }
1062
1063   unformat_free (&input);
1064   return 0;
1065 }
1066
1067 static clib_error_t *
1068 dpdk_config (vlib_main_t * vm, unformat_input_t * input)
1069 {
1070   clib_error_t *error = 0;
1071   dpdk_config_main_t *conf = &dpdk_config_main;
1072   vlib_thread_main_t *tm = vlib_get_thread_main ();
1073   dpdk_device_config_t *devconf;
1074   vlib_pci_addr_t pci_addr;
1075   unformat_input_t sub_input;
1076   uword default_hugepage_sz, x;
1077   u8 *s, *tmp = 0;
1078   int ret, i;
1079   int num_whitelisted = 0;
1080   u8 no_pci = 0;
1081   u8 no_vmbus = 0;
1082   u8 file_prefix = 0;
1083   u8 *socket_mem = 0;
1084   u8 *huge_dir_path = 0;
1085   u32 vendor, device;
1086
1087   huge_dir_path =
1088     format (0, "%s/hugepages%c", vlib_unix_get_runtime_dir (), 0);
1089
1090   conf->device_config_index_by_pci_addr = hash_create (0, sizeof (uword));
1091
1092   while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
1093     {
1094       /* Prime the pump */
1095       if (unformat (input, "no-hugetlb"))
1096         {
1097           vec_add1 (conf->eal_init_args, (u8 *) "--no-huge");
1098         }
1099
1100       else if (unformat (input, "enable-tcp-udp-checksum"))
1101         conf->enable_tcp_udp_checksum = 1;
1102
1103       else if (unformat (input, "no-tx-checksum-offload"))
1104         conf->no_tx_checksum_offload = 1;
1105
1106       else if (unformat (input, "decimal-interface-names"))
1107         conf->interface_name_format_decimal = 1;
1108
1109       else if (unformat (input, "no-multi-seg"))
1110         conf->no_multi_seg = 1;
1111
1112       else if (unformat (input, "dev default %U", unformat_vlib_cli_sub_input,
1113                          &sub_input))
1114         {
1115           error =
1116             dpdk_device_config (conf, (vlib_pci_addr_t) (u32) ~ 1, &sub_input,
1117                                 1);
1118
1119           if (error)
1120             return error;
1121         }
1122       else
1123         if (unformat
1124             (input, "dev %U %U", unformat_vlib_pci_addr, &pci_addr,
1125              unformat_vlib_cli_sub_input, &sub_input))
1126         {
1127           error = dpdk_device_config (conf, pci_addr, &sub_input, 0);
1128
1129           if (error)
1130             return error;
1131
1132           num_whitelisted++;
1133         }
1134       else if (unformat (input, "dev %U", unformat_vlib_pci_addr, &pci_addr))
1135         {
1136           error = dpdk_device_config (conf, pci_addr, 0, 0);
1137
1138           if (error)
1139             return error;
1140
1141           num_whitelisted++;
1142         }
1143       else if (unformat (input, "num-mem-channels %d", &conf->nchannels))
1144         conf->nchannels_set_manually = 0;
1145       else if (unformat (input, "num-crypto-mbufs %d",
1146                          &conf->num_crypto_mbufs))
1147         ;
1148       else if (unformat (input, "uio-driver %s", &conf->uio_driver_name))
1149         ;
1150       else if (unformat (input, "socket-mem %s", &socket_mem))
1151         ;
1152       else if (unformat (input, "no-pci"))
1153         {
1154           no_pci = 1;
1155           tmp = format (0, "--no-pci%c", 0);
1156           vec_add1 (conf->eal_init_args, tmp);
1157         }
1158       else if (unformat (input, "blacklist %x:%x", &vendor, &device))
1159         {
1160           u32 blacklist_entry;
1161           if (vendor > 0xFFFF)
1162             return clib_error_return (0, "blacklist PCI vendor out of range");
1163           if (device > 0xFFFF)
1164             return clib_error_return (0, "blacklist PCI device out of range");
1165           blacklist_entry = (vendor << 16) | (device & 0xffff);
1166           vec_add1 (conf->blacklist_by_pci_vendor_and_device,
1167                     blacklist_entry);
1168         }
1169       else if (unformat (input, "no-vmbus"))
1170         {
1171           no_vmbus = 1;
1172           tmp = format (0, "--no-vmbus%c", 0);
1173           vec_add1 (conf->eal_init_args, tmp);
1174         }
1175
1176 #define _(a)                                    \
1177       else if (unformat(input, #a))             \
1178         {                                       \
1179           tmp = format (0, "--%s%c", #a, 0);    \
1180           vec_add1 (conf->eal_init_args, tmp);    \
1181         }
1182       foreach_eal_double_hyphen_predicate_arg
1183 #undef _
1184 #define _(a)                                          \
1185         else if (unformat(input, #a " %s", &s))       \
1186           {                                           \
1187             if (!strncmp(#a, "file-prefix", 11)) \
1188               file_prefix = 1;                        \
1189             tmp = format (0, "--%s%c", #a, 0);        \
1190             vec_add1 (conf->eal_init_args, tmp);      \
1191             vec_add1 (s, 0);                          \
1192             if (!strncmp(#a, "vdev", 4))              \
1193               if (strstr((char*)s, "af_packet"))      \
1194                 clib_warning ("af_packet obsoleted. Use CLI 'create host-interface'."); \
1195             vec_add1 (conf->eal_init_args, s);        \
1196           }
1197         foreach_eal_double_hyphen_arg
1198 #undef _
1199 #define _(a,b)                                          \
1200           else if (unformat(input, #a " %s", &s))       \
1201             {                                           \
1202               tmp = format (0, "-%s%c", #b, 0);         \
1203               vec_add1 (conf->eal_init_args, tmp);      \
1204               vec_add1 (s, 0);                          \
1205               vec_add1 (conf->eal_init_args, s);        \
1206             }
1207         foreach_eal_single_hyphen_arg
1208 #undef _
1209 #define _(a,b)                                          \
1210             else if (unformat(input, #a " %s", &s))     \
1211               {                                         \
1212                 tmp = format (0, "-%s%c", #b, 0);       \
1213                 vec_add1 (conf->eal_init_args, tmp);    \
1214                 vec_add1 (s, 0);                        \
1215                 vec_add1 (conf->eal_init_args, s);      \
1216                 conf->a##_set_manually = 1;             \
1217               }
1218         foreach_eal_single_hyphen_mandatory_arg
1219 #undef _
1220         else if (unformat (input, "default"))
1221         ;
1222
1223       else if (unformat_skip_white_space (input))
1224         ;
1225       else
1226         {
1227           error = clib_error_return (0, "unknown input `%U'",
1228                                      format_unformat_error, input);
1229           goto done;
1230         }
1231     }
1232
1233   if (!conf->uio_driver_name)
1234     conf->uio_driver_name = format (0, "auto%c", 0);
1235
1236   default_hugepage_sz = clib_mem_get_default_hugepage_size ();
1237
1238   /* *INDENT-OFF* */
1239   clib_bitmap_foreach (x, tm->cpu_socket_bitmap, (
1240     {
1241       clib_error_t *e;
1242       uword n_pages;
1243       /* preallocate at least 16MB of hugepages per socket,
1244          if more is needed it is up to consumer to preallocate more */
1245       n_pages = round_pow2 ((uword) 16 << 20, default_hugepage_sz);
1246       n_pages /= default_hugepage_sz;
1247
1248       if ((e = clib_sysfs_prealloc_hugepages(x, 0, n_pages)))
1249         clib_error_report (e);
1250   }));
1251   /* *INDENT-ON* */
1252
1253   if (!file_prefix)
1254     {
1255       tmp = format (0, "--file-prefix%c", 0);
1256       vec_add1 (conf->eal_init_args, tmp);
1257       tmp = format (0, "vpp%c", 0);
1258       vec_add1 (conf->eal_init_args, tmp);
1259     }
1260
1261   if (error)
1262     return error;
1263
1264   /* I'll bet that -c and -n must be the first and second args... */
1265   if (!conf->coremask_set_manually)
1266     {
1267       vlib_thread_registration_t *tr;
1268       uword *coremask = 0;
1269       int i;
1270
1271       /* main thread core */
1272       coremask = clib_bitmap_set (coremask, tm->main_lcore, 1);
1273
1274       for (i = 0; i < vec_len (tm->registrations); i++)
1275         {
1276           tr = tm->registrations[i];
1277           coremask = clib_bitmap_or (coremask, tr->coremask);
1278         }
1279
1280       vec_insert (conf->eal_init_args, 2, 1);
1281       conf->eal_init_args[1] = (u8 *) "-c";
1282       tmp = format (0, "%U%c", format_bitmap_hex, coremask, 0);
1283       conf->eal_init_args[2] = tmp;
1284       clib_bitmap_free (coremask);
1285     }
1286
1287   if (!conf->nchannels_set_manually)
1288     {
1289       vec_insert (conf->eal_init_args, 2, 3);
1290       conf->eal_init_args[3] = (u8 *) "-n";
1291       tmp = format (0, "%d", conf->nchannels);
1292       conf->eal_init_args[4] = tmp;
1293     }
1294
1295   if (no_pci == 0 && geteuid () == 0)
1296     dpdk_bind_devices_to_uio (conf);
1297
1298   if (no_vmbus == 0 && geteuid () == 0)
1299     dpdk_bind_vmbus_devices_to_uio (conf);
1300
1301 #define _(x) \
1302     if (devconf->x == 0 && conf->default_devconf.x > 0) \
1303       devconf->x = conf->default_devconf.x ;
1304
1305   /* *INDENT-OFF* */
1306   pool_foreach (devconf, conf->dev_confs, ({
1307
1308     /* default per-device config items */
1309     foreach_dpdk_device_config_item
1310
1311     /* add DPDK EAL whitelist/blacklist entry */
1312     if (num_whitelisted > 0 && devconf->is_blacklisted == 0)
1313       {
1314         tmp = format (0, "-w%c", 0);
1315         vec_add1 (conf->eal_init_args, tmp);
1316         tmp = format (0, "%U%c", format_vlib_pci_addr, &devconf->pci_addr, 0);
1317         vec_add1 (conf->eal_init_args, tmp);
1318       }
1319     else if (num_whitelisted == 0 && devconf->is_blacklisted != 0)
1320       {
1321         tmp = format (0, "-b%c", 0);
1322         vec_add1 (conf->eal_init_args, tmp);
1323         tmp = format (0, "%U%c", format_vlib_pci_addr, &devconf->pci_addr, 0);
1324         vec_add1 (conf->eal_init_args, tmp);
1325       }
1326   }));
1327   /* *INDENT-ON* */
1328
1329 #undef _
1330
1331   /* set master-lcore */
1332   tmp = format (0, "--master-lcore%c", 0);
1333   vec_add1 (conf->eal_init_args, tmp);
1334   tmp = format (0, "%u%c", tm->main_lcore, 0);
1335   vec_add1 (conf->eal_init_args, tmp);
1336
1337
1338   if (socket_mem)
1339     clib_warning ("socket-mem argument is deprecated");
1340
1341   /* NULL terminate the "argv" vector, in case of stupidity */
1342   vec_add1 (conf->eal_init_args, 0);
1343   _vec_len (conf->eal_init_args) -= 1;
1344
1345   /* Set up DPDK eal and packet mbuf pool early. */
1346
1347   int log_fds[2] = { 0 };
1348   if (pipe (log_fds) == 0)
1349     {
1350       if (fcntl (log_fds[1], F_SETFL, O_NONBLOCK) == 0)
1351         {
1352           FILE *f = fdopen (log_fds[1], "a");
1353           if (f && rte_openlog_stream (f) == 0)
1354             {
1355               clib_file_t t = { 0 };
1356               t.read_function = dpdk_log_read_ready;
1357               t.file_descriptor = log_fds[0];
1358               t.description = format (0, "DPDK logging pipe");
1359               clib_file_add (&file_main, &t);
1360             }
1361         }
1362       else
1363         {
1364           close (log_fds[0]);
1365           close (log_fds[1]);
1366         }
1367     }
1368
1369   vm = vlib_get_main ();
1370
1371   /* make copy of args as rte_eal_init tends to mess up with arg array */
1372   for (i = 1; i < vec_len (conf->eal_init_args); i++)
1373     conf->eal_init_args_str = format (conf->eal_init_args_str, "%s ",
1374                                       conf->eal_init_args[i]);
1375
1376   dpdk_log_warn ("EAL init args: %s", conf->eal_init_args_str);
1377   ret = rte_eal_init (vec_len (conf->eal_init_args),
1378                       (char **) conf->eal_init_args);
1379
1380   /* lazy umount hugepages */
1381   umount2 ((char *) huge_dir_path, MNT_DETACH);
1382   rmdir ((char *) huge_dir_path);
1383   vec_free (huge_dir_path);
1384
1385   if (ret < 0)
1386     return clib_error_return (0, "rte_eal_init returned %d", ret);
1387
1388   /* main thread 1st */
1389   if ((error = dpdk_buffer_pools_create (vm)))
1390     return error;
1391
1392 done:
1393   return error;
1394 }
1395
1396 VLIB_CONFIG_FUNCTION (dpdk_config, "dpdk");
1397
1398 void
1399 dpdk_update_link_state (dpdk_device_t * xd, f64 now)
1400 {
1401   vnet_main_t *vnm = vnet_get_main ();
1402   struct rte_eth_link prev_link = xd->link;
1403   u32 hw_flags = 0;
1404   u8 hw_flags_chg = 0;
1405
1406   /* only update link state for PMD interfaces */
1407   if ((xd->flags & DPDK_DEVICE_FLAG_PMD) == 0)
1408     return;
1409
1410   xd->time_last_link_update = now ? now : xd->time_last_link_update;
1411   clib_memset (&xd->link, 0, sizeof (xd->link));
1412   rte_eth_link_get_nowait (xd->port_id, &xd->link);
1413
1414   if (LINK_STATE_ELOGS)
1415     {
1416       vlib_main_t *vm = vlib_get_main ();
1417       ELOG_TYPE_DECLARE (e) =
1418       {
1419       .format =
1420           "update-link-state: sw_if_index %d, admin_up %d,"
1421           "old link_state %d new link_state %d",.format_args = "i4i1i1i1",};
1422
1423       struct
1424       {
1425         u32 sw_if_index;
1426         u8 admin_up;
1427         u8 old_link_state;
1428         u8 new_link_state;
1429       } *ed;
1430       ed = ELOG_DATA (&vm->elog_main, e);
1431       ed->sw_if_index = xd->sw_if_index;
1432       ed->admin_up = (xd->flags & DPDK_DEVICE_FLAG_ADMIN_UP) != 0;
1433       ed->old_link_state = (u8)
1434         vnet_hw_interface_is_link_up (vnm, xd->hw_if_index);
1435       ed->new_link_state = (u8) xd->link.link_status;
1436     }
1437
1438   if ((xd->flags & (DPDK_DEVICE_FLAG_ADMIN_UP | DPDK_DEVICE_FLAG_BOND_SLAVE))
1439       && ((xd->link.link_status != 0) ^
1440           vnet_hw_interface_is_link_up (vnm, xd->hw_if_index)))
1441     {
1442       hw_flags_chg = 1;
1443       hw_flags |= (xd->link.link_status ? VNET_HW_INTERFACE_FLAG_LINK_UP : 0);
1444     }
1445
1446   if (hw_flags_chg || (xd->link.link_duplex != prev_link.link_duplex))
1447     {
1448       hw_flags_chg = 1;
1449       switch (xd->link.link_duplex)
1450         {
1451         case ETH_LINK_HALF_DUPLEX:
1452           hw_flags |= VNET_HW_INTERFACE_FLAG_HALF_DUPLEX;
1453           break;
1454         case ETH_LINK_FULL_DUPLEX:
1455           hw_flags |= VNET_HW_INTERFACE_FLAG_FULL_DUPLEX;
1456           break;
1457         default:
1458           break;
1459         }
1460     }
1461   if (xd->link.link_speed != prev_link.link_speed)
1462     vnet_hw_interface_set_link_speed (vnm, xd->hw_if_index,
1463                                       xd->link.link_speed * 1000);
1464
1465   if (hw_flags_chg)
1466     {
1467       if (LINK_STATE_ELOGS)
1468         {
1469           vlib_main_t *vm = vlib_get_main ();
1470
1471           ELOG_TYPE_DECLARE (e) =
1472           {
1473           .format =
1474               "update-link-state: sw_if_index %d, new flags %d",.format_args
1475               = "i4i4",};
1476
1477           struct
1478           {
1479             u32 sw_if_index;
1480             u32 flags;
1481           } *ed;
1482           ed = ELOG_DATA (&vm->elog_main, e);
1483           ed->sw_if_index = xd->sw_if_index;
1484           ed->flags = hw_flags;
1485         }
1486       vnet_hw_interface_set_flags (vnm, xd->hw_if_index, hw_flags);
1487     }
1488 }
1489
1490 static uword
1491 dpdk_process (vlib_main_t * vm, vlib_node_runtime_t * rt, vlib_frame_t * f)
1492 {
1493   clib_error_t *error;
1494   vnet_main_t *vnm = vnet_get_main ();
1495   dpdk_main_t *dm = &dpdk_main;
1496   ethernet_main_t *em = &ethernet_main;
1497   dpdk_device_t *xd;
1498   vlib_thread_main_t *tm = vlib_get_thread_main ();
1499   int i;
1500   int j;
1501
1502   error = dpdk_lib_init (dm);
1503
1504   if (error)
1505     clib_error_report (error);
1506
1507   tm->worker_thread_release = 1;
1508
1509   f64 now = vlib_time_now (vm);
1510   vec_foreach (xd, dm->devices)
1511   {
1512     dpdk_update_link_state (xd, now);
1513   }
1514
1515   {
1516     /*
1517      * Extra set up for bond interfaces:
1518      *  1. Setup MACs for bond interfaces and their slave links which was set
1519      *     in dpdk_device_setup() but needs to be done again here to take
1520      *     effect.
1521      *  2. Set up info and register slave link state change callback handling.
1522      *  3. Set up info for bond interface related CLI support.
1523      */
1524     int nports = rte_eth_dev_count_avail ();
1525     if (nports > 0)
1526       {
1527         /* *INDENT-OFF* */
1528         RTE_ETH_FOREACH_DEV(i)
1529           {
1530             xd = NULL;
1531             for (j = 0; j < nports; j++)
1532               {
1533                 if (dm->devices[j].port_id == i)
1534                   {
1535                     xd = &dm->devices[j];
1536                   }
1537               }
1538             if (xd != NULL && xd->pmd == VNET_DPDK_PMD_BOND)
1539               {
1540                 u8 addr[6];
1541                 dpdk_portid_t slink[16];
1542                 int nlink = rte_eth_bond_slaves_get (i, slink, 16);
1543                 if (nlink > 0)
1544                   {
1545                     vnet_hw_interface_t *bhi;
1546                     ethernet_interface_t *bei;
1547                     int rv;
1548
1549                     /* Get MAC of 1st slave link */
1550                     rte_eth_macaddr_get
1551                       (slink[0], (struct ether_addr *) addr);
1552
1553                     /* Set MAC of bounded interface to that of 1st slave link */
1554                     dpdk_log_info ("Set MAC for bond port %d BondEthernet%d",
1555                                    i, xd->bond_instance_num);
1556                     rv = rte_eth_bond_mac_address_set
1557                       (i, (struct ether_addr *) addr);
1558                     if (rv)
1559                       dpdk_log_warn ("Set MAC addr failure rv=%d", rv);
1560
1561                     /* Populate MAC of bonded interface in VPP hw tables */
1562                     bhi = vnet_get_hw_interface
1563                       (vnm, dm->devices[i].hw_if_index);
1564                     bei = pool_elt_at_index
1565                       (em->interfaces, bhi->hw_instance);
1566                     clib_memcpy (bhi->hw_address, addr, 6);
1567                     clib_memcpy (bei->address, addr, 6);
1568
1569                     /* Init l3 packet size allowed on bonded interface */
1570                     bhi->max_packet_bytes = ETHERNET_MAX_PACKET_BYTES;
1571                     while (nlink >= 1)
1572                       {         /* for all slave links */
1573                         int slave = slink[--nlink];
1574                         dpdk_device_t *sdev = &dm->devices[slave];
1575                         vnet_hw_interface_t *shi;
1576                         vnet_sw_interface_t *ssi;
1577                         ethernet_interface_t *sei;
1578                         /* Add MAC to all slave links except the first one */
1579                         if (nlink)
1580                           {
1581                             dpdk_log_info ("Add MAC for slave port %d",
1582                                            slave);
1583                             rv = rte_eth_dev_mac_addr_add
1584                               (slave, (struct ether_addr *) addr, 0);
1585                             if (rv)
1586                               dpdk_log_warn ("Add MAC addr failure rv=%d",
1587                                              rv);
1588                           }
1589                         /* Setup slave link state change callback handling */
1590                         rte_eth_dev_callback_register
1591                           (slave, RTE_ETH_EVENT_INTR_LSC,
1592                            dpdk_port_state_callback, NULL);
1593                         dpdk_device_t *sxd = &dm->devices[slave];
1594                         sxd->flags |= DPDK_DEVICE_FLAG_BOND_SLAVE;
1595                         sxd->bond_port = i;
1596                         /* Set slaves bitmap for bonded interface */
1597                         bhi->bond_info = clib_bitmap_set
1598                           (bhi->bond_info, sdev->hw_if_index, 1);
1599                         /* Set MACs and slave link flags on slave interface */
1600                         shi = vnet_get_hw_interface (vnm, sdev->hw_if_index);
1601                         ssi = vnet_get_sw_interface (vnm, sdev->sw_if_index);
1602                         sei = pool_elt_at_index
1603                           (em->interfaces, shi->hw_instance);
1604                         shi->bond_info = VNET_HW_INTERFACE_BOND_INFO_SLAVE;
1605                         ssi->flags |= VNET_SW_INTERFACE_FLAG_BOND_SLAVE;
1606                         clib_memcpy (shi->hw_address, addr, 6);
1607                         clib_memcpy (sei->address, addr, 6);
1608                         /* Set l3 packet size allowed as the lowest of slave */
1609                         if (bhi->max_packet_bytes > shi->max_packet_bytes)
1610                           bhi->max_packet_bytes = shi->max_packet_bytes;
1611                       }
1612                   }
1613               }
1614           }
1615         /* *INDENT-ON* */
1616       }
1617   }
1618
1619   while (1)
1620     {
1621       /*
1622        * check each time through the loop in case intervals are changed
1623        */
1624       f64 min_wait = dm->link_state_poll_interval < dm->stat_poll_interval ?
1625         dm->link_state_poll_interval : dm->stat_poll_interval;
1626
1627       vlib_process_wait_for_event_or_clock (vm, min_wait);
1628
1629       if (dm->admin_up_down_in_progress)
1630         /* skip the poll if an admin up down is in progress (on any interface) */
1631         continue;
1632
1633       vec_foreach (xd, dm->devices)
1634       {
1635         f64 now = vlib_time_now (vm);
1636         if ((now - xd->time_last_stats_update) >= dm->stat_poll_interval)
1637           dpdk_update_counters (xd, now);
1638         if ((now - xd->time_last_link_update) >= dm->link_state_poll_interval)
1639           dpdk_update_link_state (xd, now);
1640
1641       }
1642     }
1643
1644   return 0;
1645 }
1646
1647 /* *INDENT-OFF* */
1648 VLIB_REGISTER_NODE (dpdk_process_node,static) = {
1649     .function = dpdk_process,
1650     .type = VLIB_NODE_TYPE_PROCESS,
1651     .name = "dpdk-process",
1652     .process_log2_n_stack_bytes = 17,
1653 };
1654 /* *INDENT-ON* */
1655
1656 static clib_error_t *
1657 dpdk_init (vlib_main_t * vm)
1658 {
1659   dpdk_main_t *dm = &dpdk_main;
1660   clib_error_t *error = 0;
1661
1662   /* verify that structs are cacheline aligned */
1663   STATIC_ASSERT (offsetof (dpdk_device_t, cacheline0) == 0,
1664                  "Cache line marker must be 1st element in dpdk_device_t");
1665   STATIC_ASSERT (offsetof (dpdk_device_t, cacheline1) ==
1666                  CLIB_CACHE_LINE_BYTES,
1667                  "Data in cache line 0 is bigger than cache line size");
1668   STATIC_ASSERT (offsetof (frame_queue_trace_t, cacheline0) == 0,
1669                  "Cache line marker must be 1st element in frame_queue_trace_t");
1670   STATIC_ASSERT (RTE_CACHE_LINE_SIZE == 1 << CLIB_LOG2_CACHE_LINE_BYTES,
1671                  "DPDK RTE CACHE LINE SIZE does not match with 1<<CLIB_LOG2_CACHE_LINE_BYTES");
1672
1673   dm->vlib_main = vm;
1674   dm->vnet_main = vnet_get_main ();
1675   dm->conf = &dpdk_config_main;
1676
1677   dm->conf->nchannels = 4;
1678   vec_add1 (dm->conf->eal_init_args, (u8 *) "vnet");
1679   vec_add1 (dm->conf->eal_init_args, (u8 *) "--in-memory");
1680
1681   /* Default vlib_buffer_t flags, DISABLES tcp/udp checksumming... */
1682   dm->buffer_flags_template = (VLIB_BUFFER_TOTAL_LENGTH_VALID |
1683                                VLIB_BUFFER_EXT_HDR_VALID |
1684                                VNET_BUFFER_F_L4_CHECKSUM_COMPUTED |
1685                                VNET_BUFFER_F_L4_CHECKSUM_CORRECT);
1686
1687   dm->stat_poll_interval = DPDK_STATS_POLL_INTERVAL;
1688   dm->link_state_poll_interval = DPDK_LINK_POLL_INTERVAL;
1689
1690   /* init CLI */
1691   if ((error = vlib_call_init_function (vm, dpdk_cli_init)))
1692     return error;
1693
1694   dm->log_default = vlib_log_register_class ("dpdk", 0);
1695
1696   return error;
1697 }
1698
1699 VLIB_INIT_FUNCTION (dpdk_init);
1700
1701
1702 /*
1703  * fd.io coding-style-patch-verification: ON
1704  *
1705  * Local Variables:
1706  * eval: (c-set-style "gnu")
1707  * End:
1708  */