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