b91fe3c1a94eb65fcb018c43212bebfa7b6ad7c5
[vpp.git] / vnet / vnet / devices / dpdk / 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
20 #include <vnet/ethernet/ethernet.h>
21 #include <vnet/devices/dpdk/dpdk.h>
22 #include <vlib/unix/physmem.h>
23
24 #include <stdio.h>
25 #include <stdlib.h>
26 #include <unistd.h>
27 #include <sys/stat.h>
28 #include <sys/mount.h>
29 #include <string.h>
30 #include <fcntl.h>
31
32 #include "dpdk_priv.h"
33
34 dpdk_main_t dpdk_main;
35
36 /* force linker to link functions used by vlib and declared weak */
37 void *vlib_weakly_linked_functions[] = {
38   &rte_pktmbuf_init,
39   &rte_pktmbuf_pool_init,
40 };
41
42 #define LINK_STATE_ELOGS        0
43
44 #define DEFAULT_HUGE_DIR "/run/vpp/hugepages"
45 #define VPP_RUN_DIR "/run/vpp"
46
47 /* Port configuration, mildly modified Intel app values */
48
49 static struct rte_eth_conf port_conf_template = {
50   .rxmode = {
51     .split_hdr_size = 0,
52     .header_split   = 0, /**< Header Split disabled */
53     .hw_ip_checksum = 0, /**< IP checksum offload disabled */
54     .hw_vlan_filter = 0, /**< VLAN filtering disabled */
55     .hw_strip_crc   = 1, /**< CRC stripped by hardware */
56   },
57   .txmode = {
58     .mq_mode = ETH_MQ_TX_NONE,
59   },
60 };
61
62 clib_error_t *
63 dpdk_port_setup (dpdk_main_t * dm, dpdk_device_t * xd)
64 {
65   vlib_main_t * vm = vlib_get_main();
66   vlib_buffer_main_t * bm = vm->buffer_main;
67   int rv;
68   int j;
69
70   ASSERT(os_get_cpu_number() == 0);
71
72   if (xd->admin_up) {
73     vnet_hw_interface_set_flags (dm->vnet_main, xd->vlib_hw_if_index, 0);
74     rte_eth_dev_stop (xd->device_index);
75   }
76
77   rv = rte_eth_dev_configure (xd->device_index, xd->rx_q_used,
78                               xd->tx_q_used, &xd->port_conf);
79
80   if (rv < 0)
81     return clib_error_return (0, "rte_eth_dev_configure[%d]: err %d",
82                               xd->device_index, rv);
83
84   /* Set up one TX-queue per worker thread */
85   for (j = 0; j < xd->tx_q_used; j++)
86     {
87       rv = rte_eth_tx_queue_setup(xd->device_index, j, xd->nb_tx_desc,
88                                  xd->cpu_socket, &xd->tx_conf);
89       if (rv < 0)
90         break;
91     }
92
93     if (rv < 0)
94       return clib_error_return (0, "rte_eth_tx_queue_setup[%d]: err %d",
95                                 xd->device_index, rv);
96
97   for (j = 0; j < xd->rx_q_used; j++)
98     {
99
100       rv = rte_eth_rx_queue_setup(xd->device_index, j, xd->nb_rx_desc,
101                                   xd->cpu_socket, 0,
102                                   bm->pktmbuf_pools[xd->cpu_socket_id_by_queue[j]]);
103       if (rv < 0)
104         return clib_error_return (0, "rte_eth_rx_queue_setup[%d]: err %d",
105                                   xd->device_index, rv);
106     }
107
108   if (xd->admin_up) {
109     rte_eth_dev_start (xd->device_index);
110   }
111   return 0;
112 }
113
114 static u32 dpdk_flag_change (vnet_main_t * vnm, 
115                              vnet_hw_interface_t * hi,
116                              u32 flags)
117 {
118   dpdk_main_t * dm = &dpdk_main;
119   dpdk_device_t * xd = vec_elt_at_index (dm->devices, hi->dev_instance);
120   u32 old = 0;
121
122   if (ETHERNET_INTERFACE_FLAG_CONFIG_PROMISC(flags))
123     {
124       old = xd->promisc;
125       xd->promisc = flags & ETHERNET_INTERFACE_FLAG_ACCEPT_ALL;
126       
127       if (xd->admin_up)
128         {
129           if (xd->promisc)
130             rte_eth_promiscuous_enable(xd->device_index);
131           else
132             rte_eth_promiscuous_disable(xd->device_index);
133         }
134     }
135   else if (ETHERNET_INTERFACE_FLAG_CONFIG_MTU(flags))
136     {
137       /*
138        * DAW-FIXME: The Cisco VIC firmware does not provide an api for a
139        *            driver to dynamically change the mtu.  If/when the 
140        *            VIC firmware gets fixed, then this should be removed.
141        */
142       if (xd->pmd == VNET_DPDK_PMD_VICE ||
143           xd->pmd == VNET_DPDK_PMD_ENIC)
144         {
145           struct rte_eth_dev_info dev_info;
146
147           /*
148            * Restore mtu to what has been set by CIMC in the firmware cfg.
149            */
150           rte_eth_dev_info_get(xd->device_index, &dev_info);
151           hi->max_packet_bytes = dev_info.max_rx_pktlen;
152
153           vlib_cli_output (vlib_get_main(), 
154                            "Cisco VIC mtu can only be changed "
155                            "using CIMC then rebooting the server!");
156         }
157       else
158         {
159           int rv;
160       
161           /*
162            * DAW-FIXME: The DPDK VMXNET3 driver does not currently support
163            *            multi-buffer packets.  Max out at 1518 bytes for now.
164            *
165            *            If/when the driver gets fixed, then this should be
166            *            removed.
167            */
168           if ((xd->pmd == VNET_DPDK_PMD_VMXNET3) &&
169               (hi->max_packet_bytes > 1518))
170             {
171               hi->max_packet_bytes = 1518;
172
173               vlib_cli_output (vlib_get_main(), 
174                                "VMXNET3 driver does not  support jumbo frames "
175                                "yet -- setting mtu to 1518!");
176             }
177
178           xd->port_conf.rxmode.max_rx_pkt_len = hi->max_packet_bytes;
179
180           if (xd->admin_up)
181             rte_eth_dev_stop (xd->device_index);
182
183     rv = rte_eth_dev_configure
184       (xd->device_index,
185        xd->rx_q_used,
186        xd->tx_q_used,
187        &xd->port_conf);
188
189           if (rv < 0)
190             vlib_cli_output (vlib_get_main(), 
191                              "rte_eth_dev_configure[%d]: err %d",
192                              xd->device_index, rv);
193
194           rte_eth_dev_set_mtu(xd->device_index, hi->max_packet_bytes);
195
196           if (xd->admin_up)
197             rte_eth_dev_start (xd->device_index);
198         }
199     }
200   return old;
201 }
202
203 #ifdef NETMAP
204 extern int rte_netmap_probe(void);
205 #endif
206
207 void
208 dpdk_device_lock_init(dpdk_device_t * xd)
209 {
210   int q;
211   vec_validate(xd->lockp, xd->tx_q_used - 1);
212   for (q = 0; q < xd->tx_q_used; q++)
213     {
214       xd->lockp[q] = clib_mem_alloc_aligned (CLIB_CACHE_LINE_BYTES,
215                                              CLIB_CACHE_LINE_BYTES);
216       memset ((void *) xd->lockp[q], 0, CLIB_CACHE_LINE_BYTES);
217   }
218 }
219
220 void
221 dpdk_device_lock_free(dpdk_device_t * xd)
222 {
223   int q;
224
225   for (q = 0; q < vec_len(xd->lockp); q++)
226     clib_mem_free((void *) xd->lockp[q]);
227   vec_free(xd->lockp);
228   xd->lockp = 0;
229 }
230
231 static clib_error_t *
232 dpdk_lib_init (dpdk_main_t * dm)
233 {
234   u32 nports;
235   u32 nb_desc = 0;
236   int i;
237   clib_error_t * error;
238   vlib_main_t * vm = vlib_get_main();
239   vlib_thread_main_t * tm = vlib_get_thread_main();
240   vnet_sw_interface_t * sw;
241   vnet_hw_interface_t * hi;
242   dpdk_device_t * xd;
243   vlib_thread_registration_t * tr;
244   uword * p;
245
246   u32 next_cpu = 0;
247   u8 af_packet_port_id = 0;
248
249   dm->input_cpu_first_index = 0;
250   dm->input_cpu_count = 1;
251
252   /* find out which cpus will be used for input */
253   p = hash_get_mem (tm->thread_registrations_by_name, "io");
254   tr = p ? (vlib_thread_registration_t *) p[0] : 0;
255
256   if (!tr || tr->count == 0)
257     {
258       /* no io threads, workers doing input */
259       p = hash_get_mem (tm->thread_registrations_by_name, "workers");
260       tr = p ? (vlib_thread_registration_t *) p[0] : 0;
261     }
262   else
263     {
264       dm->have_io_threads = 1;
265     }
266
267   if (tr && tr->count > 0)
268     {
269       dm->input_cpu_first_index = tr->first_index;
270       dm->input_cpu_count = tr->count;
271     }
272
273   vec_validate_aligned (dm->devices_by_cpu, tm->n_vlib_mains - 1,
274                         CLIB_CACHE_LINE_BYTES);
275
276   vec_validate_aligned (dm->workers, tm->n_vlib_mains - 1,
277                         CLIB_CACHE_LINE_BYTES);
278
279 #ifdef NETMAP
280   if(rte_netmap_probe() < 0)
281     return clib_error_return (0, "rte netmap probe failed");
282 #endif
283
284   nports = rte_eth_dev_count();
285   if (nports < 1) 
286     {
287       clib_warning ("DPDK drivers found no ports...");
288     }
289
290   if (CLIB_DEBUG > 0)
291     clib_warning ("DPDK drivers found %d ports...", nports);
292
293   /* 
294    * All buffers are all allocated from the same rte_mempool.
295    * Thus they all have the same number of data bytes.
296    */
297   dm->vlib_buffer_free_list_index = 
298       vlib_buffer_get_or_create_free_list (
299           vm, VLIB_BUFFER_DEFAULT_FREE_LIST_BYTES, "dpdk rx");
300
301   for (i = 0; i < nports; i++)
302     {
303       u8 addr[6];
304       int j;
305       struct rte_eth_dev_info dev_info;
306       clib_error_t * rv;
307       struct rte_eth_link l;
308
309       /* Create vnet interface */
310       vec_add2_aligned (dm->devices, xd, 1, CLIB_CACHE_LINE_BYTES);
311       xd->nb_rx_desc = DPDK_NB_RX_DESC_DEFAULT;
312       xd->nb_tx_desc = DPDK_NB_TX_DESC_DEFAULT;
313       xd->cpu_socket = (i8) rte_eth_dev_socket_id(i);
314       rte_eth_dev_info_get(i, &dev_info);
315
316       memcpy(&xd->tx_conf, &dev_info.default_txconf,
317              sizeof(struct rte_eth_txconf));
318       if (dm->no_multi_seg)
319         {
320           xd->tx_conf.txq_flags |= ETH_TXQ_FLAGS_NOMULTSEGS;
321           port_conf_template.rxmode.jumbo_frame = 0;
322         }
323       else
324         {
325           xd->tx_conf.txq_flags &= ~ETH_TXQ_FLAGS_NOMULTSEGS;
326           port_conf_template.rxmode.jumbo_frame = 1;
327         }
328
329       memcpy(&xd->port_conf, &port_conf_template, sizeof(struct rte_eth_conf));
330
331       xd->tx_q_used = clib_min(dev_info.max_tx_queues, tm->n_vlib_mains);
332
333       if (dm->max_tx_queues)
334         xd->tx_q_used = clib_min(xd->tx_q_used, dm->max_tx_queues);
335
336       if (dm->use_rss > 1 && dev_info.max_rx_queues >= dm->use_rss)
337         {
338           xd->rx_q_used = dm->use_rss;
339           xd->port_conf.rxmode.mq_mode = ETH_MQ_RX_RSS;
340           xd->port_conf.rx_adv_conf.rss_conf.rss_hf = ETH_RSS_IP | ETH_RSS_UDP | ETH_RSS_TCP;
341         }
342       else
343         xd->rx_q_used = 1;
344
345       xd->dev_type = VNET_DPDK_DEV_ETH;
346
347       /* workaround for drivers not setting driver_name */
348       if (!dev_info.driver_name)
349         dev_info.driver_name = dev_info.pci_dev->driver->name;
350       ASSERT(dev_info.driver_name);
351
352       if (!xd->pmd) {
353
354
355 #define _(s,f) else if (!strcmp(dev_info.driver_name, s)) \
356                  xd->pmd = VNET_DPDK_PMD_##f;
357         if (0)
358           ;
359         foreach_dpdk_pmd
360 #undef _
361         else
362           xd->pmd = VNET_DPDK_PMD_UNKNOWN;
363
364
365         switch (xd->pmd) {
366           /* 1G adapters */
367           case VNET_DPDK_PMD_E1000EM:
368           case VNET_DPDK_PMD_IGB:
369           case VNET_DPDK_PMD_IGBVF:
370             xd->port_type = VNET_DPDK_PORT_TYPE_ETH_1G;
371             break;
372
373           /* 10G adapters */
374           case VNET_DPDK_PMD_IXGBE:
375           case VNET_DPDK_PMD_IXGBEVF:
376           case VNET_DPDK_PMD_THUNDERX:
377             xd->port_type = VNET_DPDK_PORT_TYPE_ETH_10G;
378             xd->nb_rx_desc = DPDK_NB_RX_DESC_10GE;
379             xd->nb_tx_desc = DPDK_NB_TX_DESC_10GE;
380             break;
381
382           /* Cisco VIC */
383           case VNET_DPDK_PMD_VICE:
384           case VNET_DPDK_PMD_ENIC:
385             rte_eth_link_get_nowait(xd->device_index, &l);
386             if (l.link_speed == 40000)
387               {
388                 xd->port_type = VNET_DPDK_PORT_TYPE_ETH_40G;
389                 xd->nb_rx_desc = DPDK_NB_RX_DESC_40GE;
390                 xd->nb_tx_desc = DPDK_NB_TX_DESC_40GE;
391               }
392             else
393               {
394                 xd->port_type = VNET_DPDK_PORT_TYPE_ETH_10G;
395                 xd->nb_rx_desc = DPDK_NB_RX_DESC_10GE;
396                 xd->nb_tx_desc = DPDK_NB_TX_DESC_10GE;
397               }
398             break;
399
400           /* Intel Fortville */
401           case VNET_DPDK_PMD_I40E:
402           case VNET_DPDK_PMD_I40EVF:
403             xd->port_type = VNET_DPDK_PORT_TYPE_ETH_40G;
404             xd->nb_rx_desc = DPDK_NB_RX_DESC_40GE;
405             xd->nb_tx_desc = DPDK_NB_TX_DESC_40GE;
406
407             switch (dev_info.pci_dev->id.device_id) {
408               case I40E_DEV_ID_10G_BASE_T:
409               case I40E_DEV_ID_SFP_XL710:
410                 xd->port_type = VNET_DPDK_PORT_TYPE_ETH_10G;
411                 break;
412               case I40E_DEV_ID_QSFP_A:
413               case I40E_DEV_ID_QSFP_B:
414               case I40E_DEV_ID_QSFP_C:
415                 xd->port_type = VNET_DPDK_PORT_TYPE_ETH_40G;
416                 break;
417               case I40E_DEV_ID_VF:
418                 rte_eth_link_get_nowait(xd->device_index, &l);
419                 xd->port_type = l.link_speed == 10000 ?
420                   VNET_DPDK_PORT_TYPE_ETH_10G : VNET_DPDK_PORT_TYPE_ETH_40G;
421                 break;
422               default:
423                 xd->port_type = VNET_DPDK_PORT_TYPE_UNKNOWN;
424             }
425             break;
426
427           case VNET_DPDK_PMD_CXGBE:
428             switch (dev_info.pci_dev->id.device_id) {
429               case 0x5410: /* T580-LP-cr */
430                 xd->nb_rx_desc = DPDK_NB_RX_DESC_40GE;
431                 xd->nb_tx_desc = DPDK_NB_TX_DESC_40GE;
432                 xd->port_type = VNET_DPDK_PORT_TYPE_ETH_40G;
433                 break;
434               default:
435                 xd->nb_rx_desc = DPDK_NB_RX_DESC_10GE;
436                 xd->nb_tx_desc = DPDK_NB_TX_DESC_10GE;
437                 xd->port_type = VNET_DPDK_PORT_TYPE_UNKNOWN;
438             }
439             break;
440
441           /* Intel Red Rock Canyon */
442           case VNET_DPDK_PMD_FM10K:
443             xd->port_type = VNET_DPDK_PORT_TYPE_ETH_SWITCH;
444             xd->nb_rx_desc = DPDK_NB_RX_DESC_40GE;
445             xd->nb_tx_desc = DPDK_NB_TX_DESC_40GE;
446             break;
447
448           /* virtio */
449           case VNET_DPDK_PMD_VIRTIO:
450             xd->port_type = VNET_DPDK_PORT_TYPE_ETH_1G;
451             xd->nb_rx_desc = DPDK_NB_RX_DESC_VIRTIO;
452             xd->nb_tx_desc = DPDK_NB_TX_DESC_VIRTIO;
453             break;
454
455           /* vmxnet3 */
456           case VNET_DPDK_PMD_VMXNET3:
457             xd->port_type = VNET_DPDK_PORT_TYPE_ETH_1G;
458             xd->tx_conf.txq_flags |= ETH_TXQ_FLAGS_NOMULTSEGS;
459             break;
460
461           case VNET_DPDK_PMD_AF_PACKET:
462             xd->port_type = VNET_DPDK_PORT_TYPE_AF_PACKET;
463             xd->af_packet_port_id = af_packet_port_id++;
464             break;
465
466           default:
467             xd->port_type = VNET_DPDK_PORT_TYPE_UNKNOWN;
468         }
469
470   #ifdef NETMAP
471         if(strncmp(dev_info.driver_name, "vale", 4) == 0
472              || strncmp(dev_info.driver_name, "netmap", 6) == 0)
473           {
474             xd->pmd = VNET_DPDK_PMD_NETMAP;
475             xd->port_type = VNET_DPDK_PORT_TYPE_NETMAP;
476           }
477   #endif
478
479       }
480
481       /*
482        * Ensure default mtu is not > the mtu read from the hardware.
483        * Otherwise rte_eth_dev_configure() will fail and the port will
484        * not be available.
485        */
486       xd->port_conf.rxmode.max_rx_pkt_len = 
487               (ETHERNET_MAX_PACKET_BYTES > dev_info.max_rx_pktlen) ? 
488               dev_info.max_rx_pktlen : ETHERNET_MAX_PACKET_BYTES;
489
490       /*
491        * DAW-FIXME: VMXNET3 driver doesn't support jumbo / multi-buffer pkts
492        */
493       if (xd->pmd == VNET_DPDK_PMD_VMXNET3)
494         {
495           xd->port_conf.rxmode.max_rx_pkt_len = 1518;
496           xd->port_conf.rxmode.jumbo_frame = 0;
497         }
498
499       if (xd->pmd == VNET_DPDK_PMD_AF_PACKET)
500         {
501           f64 now = vlib_time_now(vm);
502           u32 rnd;
503           rnd = (u32) (now * 1e6);
504           rnd = random_u32 (&rnd);
505           memcpy (addr+2, &rnd, sizeof(rnd));
506           addr[0] = 2;
507           addr[1] = 0xfe;
508         }
509       else
510         rte_eth_macaddr_get(i,(struct ether_addr *)addr);
511
512       if (xd->tx_q_used < tm->n_vlib_mains)
513         dpdk_device_lock_init(xd);
514
515       xd->device_index = xd - dm->devices;
516       ASSERT(i == xd->device_index);
517       xd->per_interface_next_index = ~0;
518
519       /* assign interface to input thread */
520       dpdk_device_and_queue_t * dq;
521       int q;
522
523       for (q = 0; q < xd->rx_q_used; q++)
524         {
525           int cpu = dm->input_cpu_first_index + next_cpu;
526           unsigned lcore = vlib_worker_threads[cpu].dpdk_lcore_id;
527
528           /*
529            * numa node for worker thread handling this queue
530            * needed for taking buffers from the right mempool
531            */
532           vec_validate(xd->cpu_socket_id_by_queue, q);
533           xd->cpu_socket_id_by_queue[q] = rte_lcore_to_socket_id(lcore);
534
535           /*
536            * construct vector of (device,queue) pairs for each worker thread
537            */
538           vec_add2(dm->devices_by_cpu[cpu], dq, 1);
539           dq->device = xd->device_index;
540           dq->queue_id = q;
541
542           next_cpu++;
543           if (next_cpu == dm->input_cpu_count)
544             next_cpu = 0;
545         }
546
547       vec_validate_aligned (xd->tx_vectors, tm->n_vlib_mains,
548                             CLIB_CACHE_LINE_BYTES);
549       for (j = 0; j < tm->n_vlib_mains; j++)
550         {
551           vec_validate_ha (xd->tx_vectors[j], DPDK_TX_RING_SIZE, 
552                            sizeof(tx_ring_hdr_t), CLIB_CACHE_LINE_BYTES);
553           vec_reset_length (xd->tx_vectors[j]);
554         }
555
556       vec_validate_aligned (xd->rx_vectors, xd->rx_q_used,
557                             CLIB_CACHE_LINE_BYTES);
558       for (j = 0; j< xd->rx_q_used; j++)
559         {
560           vec_validate_aligned (xd->rx_vectors[j], VLIB_FRAME_SIZE-1,
561                                 CLIB_CACHE_LINE_BYTES);
562           vec_reset_length (xd->rx_vectors[j]);
563         }
564
565       vec_validate_aligned (xd->frames, tm->n_vlib_mains,
566                             CLIB_CACHE_LINE_BYTES);
567
568       rv = dpdk_port_setup(dm, xd);
569
570       if (rv < 0)
571         return rv;
572
573       /* count the number of descriptors used for this device */
574       nb_desc += xd->nb_rx_desc + xd->nb_tx_desc * xd->tx_q_used;
575
576       error = ethernet_register_interface
577         (dm->vnet_main,
578          dpdk_device_class.index,
579          xd->device_index,
580          /* ethernet address */ addr,
581          &xd->vlib_hw_if_index, 
582          dpdk_flag_change);
583       if (error)
584         return error;
585       
586       sw = vnet_get_hw_sw_interface (dm->vnet_main, xd->vlib_hw_if_index);
587       xd->vlib_sw_if_index = sw->sw_if_index;
588       hi = vnet_get_hw_interface (dm->vnet_main, xd->vlib_hw_if_index);
589
590       /*
591        * DAW-FIXME: The Cisco VIC firmware does not provide an api for a
592        *            driver to dynamically change the mtu.  If/when the 
593        *            VIC firmware gets fixed, then this should be removed.
594        */
595       if (xd->pmd == VNET_DPDK_PMD_VICE ||
596           xd->pmd == VNET_DPDK_PMD_ENIC)
597         {
598           /*
599            * Initialize mtu to what has been set by CIMC in the firmware cfg.
600            */
601           hi->max_packet_bytes = dev_info.max_rx_pktlen;
602           /*
603            * remove vlan tag from VIC port to fix VLAN0 issue.
604            * TODO Handle VLAN tagged traffic
605            */
606           int vlan_off;
607           vlan_off = rte_eth_dev_get_vlan_offload(xd->device_index);
608           vlan_off |= ETH_VLAN_STRIP_OFFLOAD;
609           rte_eth_dev_set_vlan_offload(xd->device_index, vlan_off);
610         }
611       /*
612        * DAW-FIXME: VMXNET3 driver doesn't support jumbo / multi-buffer pkts
613        */
614       else if (xd->pmd == VNET_DPDK_PMD_VMXNET3)
615           hi->max_packet_bytes = 1518;
616
617       hi->max_l3_packet_bytes[VLIB_RX] = hi->max_l3_packet_bytes[VLIB_TX] = 
618               xd->port_conf.rxmode.max_rx_pkt_len - sizeof(ethernet_header_t);
619
620      rte_eth_dev_set_mtu(xd->device_index, hi->max_packet_bytes);
621     }
622
623   if (dm->num_kni) {
624     clib_warning("Initializing KNI interfaces...");
625     rte_kni_init(dm->num_kni);
626     for (i = 0; i < dm->num_kni; i++)
627     {
628       u8 addr[6];
629       int j;
630
631       /* Create vnet interface */
632       vec_add2_aligned (dm->devices, xd, 1, CLIB_CACHE_LINE_BYTES);
633       xd->dev_type = VNET_DPDK_DEV_KNI;
634
635       xd->device_index = xd - dm->devices;
636       ASSERT(nports + i == xd->device_index);
637       xd->per_interface_next_index = ~0;
638       xd->kni_port_id = i;
639       xd->cpu_socket = -1;
640       hash_set (dm->dpdk_device_by_kni_port_id, i, xd - dm->devices);
641       xd->rx_q_used = 1;
642
643       /* assign interface to input thread */
644       dpdk_device_and_queue_t * dq;
645       vec_add2(dm->devices_by_cpu[dm->input_cpu_first_index], dq, 1);
646       dq->device = xd->device_index;
647       dq->queue_id = 0;
648
649       vec_validate_aligned (xd->tx_vectors, tm->n_vlib_mains,
650                             CLIB_CACHE_LINE_BYTES);
651       for (j = 0; j < tm->n_vlib_mains; j++)
652         {
653           vec_validate_ha (xd->tx_vectors[j], DPDK_TX_RING_SIZE, 
654                            sizeof(tx_ring_hdr_t), CLIB_CACHE_LINE_BYTES);
655           vec_reset_length (xd->tx_vectors[j]);
656         }
657
658       vec_validate_aligned (xd->rx_vectors, xd->rx_q_used,
659                             CLIB_CACHE_LINE_BYTES);
660       for (j = 0; j< xd->rx_q_used; j++)
661         {
662           vec_validate_aligned (xd->rx_vectors[j], VLIB_FRAME_SIZE-1,
663                                 CLIB_CACHE_LINE_BYTES);
664           vec_reset_length (xd->rx_vectors[j]);
665         }
666
667       vec_validate_aligned (xd->frames, tm->n_vlib_mains,
668                             CLIB_CACHE_LINE_BYTES);
669
670       /* FIXME Set up one TX-queue per worker thread */
671
672       {
673         f64 now = vlib_time_now(vm);
674         u32 rnd;
675         rnd = (u32) (now * 1e6);
676         rnd = random_u32 (&rnd);
677
678         memcpy (addr+2, &rnd, sizeof(rnd));
679         addr[0] = 2;
680         addr[1] = 0xfe;
681       }
682
683       error = ethernet_register_interface
684         (dm->vnet_main,
685          dpdk_device_class.index,
686          xd->device_index,
687          /* ethernet address */ addr,
688          &xd->vlib_hw_if_index, 
689          dpdk_flag_change);
690
691       if (error)
692         return error;
693
694       sw = vnet_get_hw_sw_interface (dm->vnet_main, xd->vlib_hw_if_index);
695       xd->vlib_sw_if_index = sw->sw_if_index;
696       hi = vnet_get_hw_interface (dm->vnet_main, xd->vlib_hw_if_index);
697     }
698   }
699
700   if (nb_desc > dm->num_mbufs) 
701     clib_warning ("%d mbufs allocated but total rx/tx ring size is %d\n",
702                   dm->num_mbufs, nb_desc);
703
704   /* init next vhost-user if index */
705   dm->next_vu_if_id = 0;
706
707   return 0;
708 }
709
710 /*
711  * Tell the vlib physical memory allocator that we've handled
712  * the initialization. We don't actually do so until
713  * vlib_main(...) callls the dpdk config function.
714  */
715 int vlib_app_physmem_init (vlib_main_t * vm, physmem_main_t * pm,
716                            int physmem_required)
717 {
718   return 1;
719 }
720
721 static clib_error_t *
722 write_sys_fs (char * file_name, char * fmt, ...)
723 {
724   u8 * s;
725   int fd;
726
727   fd = open (file_name, O_WRONLY);
728   if (fd < 0)
729     return clib_error_return_unix (0, "open `%s'", file_name);
730
731   va_list va;
732   va_start (va, fmt);
733   s = va_format (0, fmt, &va);
734   va_end (va);
735   vec_add1 (s, 0); // terminate c string
736
737   if (write (fd, s, vec_len (s)) < 0)
738       return clib_error_return_unix (0, "write '%s' to '%s'", s, file_name);
739
740   vec_free (s);
741   close (fd);
742   return 0;
743 }
744
745 #define VIRTIO_PCI_NAME  "virtio-pci"
746
747 static clib_error_t * dpdk_bind_eth_kernel_drivers (vlib_main_t * vm,
748                                                     char * pci_dev_id,
749                                                     char * kernel_driver)
750 {
751   dpdk_main_t * dm = &dpdk_main;
752   unformat_input_t _in;
753   unformat_input_t * in = &_in;
754   clib_error_t * error = 0;
755   u8 * line = 0, * modcmd = 0, * path = 0;
756   u8 * pci_vid = 0, *pci_did = 0, * devname = 0;
757   char *driver_name = kernel_driver;
758   FILE * fp;
759
760   /* 
761    * Bail out now if we're not running as root.
762    * This allows non-privileged use of the packet generator, etc.
763    */
764   if (geteuid() != 0)
765     return 0;
766
767   /*
768    * Get all ethernet pci device numbers for the device type specified.
769    */
770   modcmd = format (0, "lspci -nDd %s | grep 0200 | "
771                    "awk '{ print $1, $3 }'%c", pci_dev_id, 0);
772   if ((fp = popen ((const char *)modcmd, "r")) == NULL)
773     {
774       error = clib_error_return_unix (0, 
775                                       "Unable to get %s ethernet pci devices.",
776                                       pci_dev_id);
777       goto done;
778     }
779
780   vec_validate (line, BUFSIZ);
781   vec_validate (path, BUFSIZ);
782   while (fgets ((char *)line, BUFSIZ, fp) != NULL)
783     {
784       struct stat st;
785       u8 bind_uio = 1;
786       line[strlen ((char *)line) - 1] = 0; // chomp trailing newline.
787
788       unformat_init_string (in, (char *)line, strlen((char *)line) + 1);
789       unformat(in, "%s %s:%s", &devname, &pci_vid, &pci_did);
790       unformat_free (in);
791
792       /*
793        * Blacklist all ethernet interfaces in the 
794        * linux IP routing tables (route --inet --inet6)
795        */
796       if (strstr ((char *)dm->eth_if_blacklist, (char *)devname))
797         continue;
798
799       /*
800        * If there are any devices whitelisted, then blacklist all devices
801        * which are not explicitly whitelisted.
802        */
803       if (dm->eth_if_whitelist && 
804           !strstr ((char *)dm->eth_if_whitelist, (char *)devname))
805         continue;
806
807 #ifdef NETMAP
808       /*
809        * Optimistically open the device as a netmap device.
810        */
811       if (eth_nm_open((char *)devname))
812         continue;
813 #endif
814
815       _vec_len (path) = 0;
816       path = format (path, "/sys/bus/pci/devices/%s/driver/unbind%c",
817                      devname, 0);
818
819       /*
820        * If the device is bound to a driver...
821        */
822       if (stat ((const char *)path, &st) == 0)
823         {
824           u8 * device_path;
825
826           /*
827            * If the interface is not a virtio...
828            */
829          if (!driver_name || strcmp(driver_name, VIRTIO_PCI_NAME))
830            {
831               /*
832                * If it is already bound to driver, don't unbind/bind it.
833                */
834               device_path = format (0, "/sys/bus/pci/drivers/%s/%s/device%c",
835                                     driver_name, devname, 0);
836               if (stat ((const char *)device_path, &st) == 0)
837                 bind_uio = 0;
838
839               vec_free (device_path);
840            }
841           
842           /*
843            * unbind it from the current driver
844            */
845           if (bind_uio)
846             {
847               _vec_len (path) -= 1;
848               path = format (path, "%c", 0);
849               error = write_sys_fs ((char *)path, "%s", devname);
850               if (error)
851                 goto done;
852             }
853         }
854
855       /*
856        * DAW-FIXME: The following bind/unbind dance is necessary for the dpdk
857        *            virtio poll-mode driver to work.  
858        */
859  
860       if (driver_name && !strcmp(driver_name, VIRTIO_PCI_NAME))
861         {
862           /*
863            * bind interface to the native kernel module
864            */
865           _vec_len (path) = 0;
866           path = format (path, "/sys/bus/pci/drivers/%s/bind%c",
867                          driver_name, 0);
868           error = write_sys_fs ((char *)path, "%s", devname);
869           if (error)
870             goto done;
871
872           /*
873            * unbind interface from the native kernel module
874            */
875           _vec_len (path) -= 5;
876           path = format (path, "unbind%c", 0);
877           error = write_sys_fs ((char *)path, "%s", devname);
878           if (error)
879             goto done;
880         }
881
882       /*
883        * bind the interface to igb_uio
884        */
885       if (bind_uio)
886         {
887           _vec_len (path) = 0;
888           path = format (path, "/sys/bus/pci/drivers/%s/new_id%c", driver_name, 0);
889           error = write_sys_fs ((char *) path, "%s %s", pci_vid, pci_did);
890           if (error)
891             continue;
892
893           _vec_len (path) = 0;
894           path = format (path, "/sys/bus/pci/drivers/%s/bind%c", driver_name, 0);
895           error = write_sys_fs ((char *) path, "%s", devname);
896           if (error)
897             {
898               error = 0;
899               continue;
900             }
901         }
902     }
903   
904  done:
905   vec_free (line);
906   vec_free (path);
907   vec_free (devname);
908   vec_free (pci_vid);
909   vec_free (pci_did);
910   vec_free (modcmd);
911   pclose (fp);
912   return error;
913 }
914
915 static uword
916 unformat_socket_mem (unformat_input_t * input, va_list * va)
917 {
918   uword ** r = va_arg (* va, uword **);
919   int i = 0;
920   u32 mem;
921
922   while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
923     {
924       if (unformat (input, ","))
925         hash_set (*r, i, 1024);
926       else if (unformat (input, "%u,", &mem))
927         hash_set (*r, i, mem);
928       else if (unformat (input, "%u", &mem))
929         hash_set (*r, i, mem);
930       else
931         {
932           unformat_put_input (input);
933           goto done;
934         }
935       i++;
936     }
937
938 done:
939   return 1;
940 }
941
942 static u32
943 get_node_free_hugepages_num (u32 node, u32 page_size)
944 {
945   FILE * fp;
946   u8 * tmp;
947
948   tmp = format (0, "/sys/devices/system/node/node%u/hugepages/hugepages-%ukB/"
949                 "free_hugepages%c", node, page_size, 0);
950   fp = fopen ((char *) tmp, "r");
951   vec_free(tmp);
952
953   if (fp != NULL)
954     {
955       u8 * buffer = 0;
956       u32 pages_avail = 0;
957
958       vec_validate (buffer, 256-1);
959       if (fgets ((char *)buffer, 256, fp))
960         {
961           unformat_input_t in;
962           unformat_init_string (&in, (char *) buffer, strlen ((char *) buffer));
963           unformat(&in, "%u", &pages_avail);
964           unformat_free (&in);
965         }
966       vec_free(buffer);
967       fclose(fp);
968       return pages_avail;
969     }
970
971   return 0;
972 }
973
974 static clib_error_t *
975 dpdk_config (vlib_main_t * vm, unformat_input_t * input)
976 {
977   clib_error_t * error = 0;
978   dpdk_main_t * dm = &dpdk_main;
979   vlib_thread_main_t * tm = vlib_get_thread_main();
980   u8 * s, * tmp = 0;
981   u8 * pci_dev_id = 0;
982   u8 * rte_cmd = 0, * ethname = 0;
983   FILE * rte_fp;
984   u32 log_level;
985   int ret, i;
986   char * fmt;
987 #ifdef NETMAP
988   int rxrings, txrings, rxslots, txslots, txburst;
989   char * nmnam;
990 #endif
991   unformat_input_t _in;
992   unformat_input_t * in = &_in;
993   u8 no_pci = 0;
994   u8 no_huge = 0;
995   u8 huge_dir = 0;
996   u8 file_prefix = 0;
997   u8 * socket_mem = 0;
998
999   // MATT-FIXME: inverted virtio-vhost logic to use virtio by default
1000   dm->use_virtio_vhost = 1;
1001
1002   while (unformat_check_input(input) != UNFORMAT_END_OF_INPUT)
1003     {
1004       /* Prime the pump */
1005       if (unformat (input, "no-hugetlb"))
1006         {
1007           vec_add1 (dm->eal_init_args, (u8 *) "no-huge");
1008           no_huge = 1;
1009         }
1010
1011       else if (unformat (input, "decimal-interface-names"))
1012         dm->interface_name_format_decimal = 1;
1013
1014       else if (unformat (input, "no-multi-seg"))
1015         dm->no_multi_seg = 1;
1016
1017       else if (unformat (input, "dev %s", &pci_dev_id))
1018         {
1019           if (dm->eth_if_whitelist)
1020             {
1021               /*
1022                * Don't add duplicate device id's.
1023                */
1024               if (strstr ((char *)dm->eth_if_whitelist, (char *)pci_dev_id))
1025                 continue;
1026
1027               _vec_len (dm->eth_if_whitelist) -= 1; // chomp trailing NULL.
1028               dm->eth_if_whitelist = format (dm->eth_if_whitelist, " %s%c",
1029                                              pci_dev_id, 0);
1030             }
1031           else
1032             dm->eth_if_whitelist = format (0, "%s%c", pci_dev_id, 0);
1033         }
1034
1035 #ifdef NETMAP
1036      else if (unformat(input, "netmap %s/%d:%d/%d:%d/%d",
1037                   &nmname, &rxrings, &rxslots, &txrings, &txslots, &txburst)) {
1038         char * rv;
1039         rv = (char *)
1040           eth_nm_args(nmname, rxrings, rxslots, txrings, txslots, txburst);
1041         if (rv) {
1042           error = clib_error_return (0, "%s", rv);
1043           goto done;
1044         }
1045       }else if (unformat(input, "netmap %s", &nmname)) {
1046         char * rv;
1047         rv = (char *)
1048           eth_nm_args(nmname, 0, 0, 0, 0, 0);
1049         if (rv) {
1050           error = clib_error_return (0, "%s", rv);
1051           goto done;
1052         }
1053       }
1054 #endif
1055
1056       else if (unformat (input, "num-mbufs %d", &dm->num_mbufs))
1057         ;
1058       else if (unformat (input, "max-tx-queues %d", &dm->max_tx_queues))
1059         ;
1060       else if (unformat (input, "kni %d", &dm->num_kni))
1061         ;
1062       else if (unformat (input, "uio-driver %s", &dm->uio_driver_name))
1063         ;
1064       else if (unformat (input, "vhost-user-coalesce-frames %d", &dm->vhost_coalesce_frames))
1065         ;
1066       else if (unformat (input, "vhost-user-coalesce-time %f", &dm->vhost_coalesce_time))
1067         ;
1068       else if (unformat (input, "enable-vhost-user"))
1069         dm->use_virtio_vhost = 0;
1070       else if (unformat (input, "rss %d", &dm->use_rss))
1071         ;
1072
1073 #define _(a)                                    \
1074       else if (unformat(input, #a))             \
1075         {                                       \
1076           if (!strncmp(#a, "no-pci", 6))        \
1077             no_pci = 1;                         \
1078           tmp = format (0, "--%s%c", #a, 0);    \
1079           vec_add1 (dm->eal_init_args, tmp);    \
1080         }
1081       foreach_eal_double_hyphen_predicate_arg
1082 #undef _
1083
1084 #define _(a)                                          \
1085         else if (unformat(input, #a " %s", &s))       \
1086           {                                           \
1087             if (!strncmp(#a, "huge-dir", 8))          \
1088               huge_dir = 1;                           \
1089             else if (!strncmp(#a, "file-prefix", 11)) \
1090               file_prefix = 1;                        \
1091             else if (!strncmp(#a, "socket-mem", 10))  \
1092               socket_mem = vec_dup (s);               \
1093             tmp = format (0, "--%s%c", #a, 0);        \
1094             vec_add1 (dm->eal_init_args, tmp);        \
1095             vec_add1 (s, 0);                          \
1096             vec_add1 (dm->eal_init_args, s);          \
1097           }
1098         foreach_eal_double_hyphen_arg
1099 #undef _
1100
1101 #define _(a,b)                                          \
1102           else if (unformat(input, #a " %s", &s))       \
1103             {                                           \
1104               tmp = format (0, "-%s%c", #b, 0);         \
1105               vec_add1 (dm->eal_init_args, tmp);        \
1106               vec_add1 (s, 0);                          \
1107               vec_add1 (dm->eal_init_args, s);          \
1108             }
1109           foreach_eal_single_hyphen_arg
1110 #undef _
1111
1112 #define _(a,b)                                          \
1113             else if (unformat(input, #a " %s", &s))     \
1114               {                                         \
1115                 tmp = format (0, "-%s%c", #b, 0);       \
1116                 vec_add1 (dm->eal_init_args, tmp);      \
1117                 vec_add1 (s, 0);                        \
1118                 vec_add1 (dm->eal_init_args, s);        \
1119                 dm->a##_set_manually = 1;               \
1120               }
1121             foreach_eal_single_hyphen_mandatory_arg
1122 #undef _
1123
1124           else if (unformat(input, "default"))
1125             ;
1126
1127           else
1128             {
1129               error = clib_error_return (0, "unknown input `%U'",
1130                                          format_unformat_error, input);
1131               goto done;
1132             }
1133     }
1134
1135   if (!dm->uio_driver_name)
1136     dm->uio_driver_name = format (0, "igb_uio");
1137
1138   /*
1139    * Use 1G huge pages if available.
1140    */
1141   if (!no_huge && !huge_dir)
1142     {
1143       uword * mem_by_socket = hash_create (0, sizeof (uword));
1144       uword c;
1145       u8 use_1g = 1;
1146       u8 use_2m = 1;
1147       int rv;
1148
1149       umount(DEFAULT_HUGE_DIR);
1150
1151       /* Process "socket-mem" parameter value */
1152       if (vec_len (socket_mem))
1153         {
1154           unformat_input_t in;
1155           unformat_init_vector(&in, socket_mem);
1156           unformat(&in, "%U", unformat_socket_mem, &mem_by_socket);
1157           unformat_free(&in);
1158         }
1159       else
1160         use_1g = 0;
1161
1162       /* check if available enough 1GB pages for each socket */
1163       clib_bitmap_foreach (c, tm->cpu_socket_bitmap, ({
1164          uword * p = hash_get (mem_by_socket, c);
1165          if (p)
1166            {
1167              u32 mem = p[0];
1168              if (mem)
1169                {
1170                  u32 pages_num_1g = mem / 1024;
1171                  u32 pages_num_2m = mem / 2;
1172                  u32 pages_avail;
1173
1174                  pages_avail = get_node_free_hugepages_num(c, 1048576);
1175                  if (!(pages_avail >= pages_num_1g))
1176                    use_1g = 0;
1177
1178                  pages_avail = get_node_free_hugepages_num(c, 2048);
1179                  if (!(pages_avail >= pages_num_2m))
1180                    use_2m = 0;
1181               }
1182            }
1183       }));
1184
1185       hash_free (mem_by_socket);
1186
1187       rv = mkdir(VPP_RUN_DIR, 0755);
1188       if (rv && errno != EEXIST)
1189         {
1190           error = clib_error_return (0, "mkdir '%s' failed errno %d",
1191                                      VPP_RUN_DIR, errno);
1192           goto done;
1193         }
1194
1195       rv = mkdir(DEFAULT_HUGE_DIR, 0755);
1196       if (rv && errno != EEXIST)
1197         {
1198           error = clib_error_return (0, "mkdir '%s' failed errno %d",
1199                                      DEFAULT_HUGE_DIR, errno);
1200           goto done;
1201         }
1202
1203       if (use_1g)
1204         {
1205           rv = mount("none", DEFAULT_HUGE_DIR, "hugetlbfs", 0, "pagesize=1G");
1206         }
1207       else if (use_2m)
1208         {
1209           rv = mount("none", DEFAULT_HUGE_DIR, "hugetlbfs", 0, NULL);
1210         }
1211       else
1212         {
1213           return clib_error_return (0, "not enough free huge pages");
1214         }
1215
1216       if (rv)
1217         {
1218           error = clib_error_return (0, "mount failed %d", errno);
1219           goto done;
1220         }
1221
1222       tmp = format (0, "--huge-dir%c", 0);
1223       vec_add1 (dm->eal_init_args, tmp);
1224       tmp = format (0, "%s%c", DEFAULT_HUGE_DIR, 0);
1225       vec_add1 (dm->eal_init_args, tmp);
1226       if (!file_prefix)
1227         {
1228           tmp = format (0, "--file-prefix%c", 0);
1229           vec_add1 (dm->eal_init_args, tmp);
1230           tmp = format (0, "vpp%c", 0);
1231           vec_add1 (dm->eal_init_args, tmp);
1232         }
1233     }
1234
1235   /*
1236    * Blacklist all ethernet interfaces in the linux IP routing tables.
1237    */
1238   dm->eth_if_blacklist = format (0, "%c", 0);
1239   rte_cmd = format (0, "route --inet --inet6 -n|awk '{print $7}'|sort -u|"
1240                     "egrep $(echo $(ls -1d /sys/class/net/*/device|"
1241                     "cut -d/ -f5)|sed -s 's/ /|/g')%c", 0);
1242   if ((rte_fp = popen ((const char *)rte_cmd, "r")) == NULL)
1243     {
1244       error = clib_error_return_unix (0, "Unable to find blacklist ethernet"
1245                                       " interface(s) in linux routing tables.");
1246       goto rte_cmd_err;
1247
1248     }
1249
1250   vec_validate (ethname, BUFSIZ);
1251   while (fgets ((char *)ethname, BUFSIZ, rte_fp) != NULL)
1252     {
1253       FILE *rlnk_fp;
1254       u8 * rlnk_cmd = 0, * devname = 0;
1255
1256       ethname[strlen ((char *)ethname) - 1] = 0; // chomp trailing newline.
1257
1258       rlnk_cmd = format (0, "readlink /sys/class/net/%s%c",
1259                          ethname, 0);
1260
1261       if ((rlnk_fp = popen ((const char *)rlnk_cmd, "r")) == NULL)
1262         {
1263           error = clib_error_return_unix (0, "Unable to read %s link.",
1264                                           ethname);
1265           goto rlnk_cmd_err;
1266         }
1267
1268       vec_validate (devname, BUFSIZ);
1269       while (fgets ((char *)devname, BUFSIZ, rlnk_fp) != NULL)
1270         {
1271           char * pci_id = 0;
1272           
1273           /*
1274            * Extract the device PCI ID name from the link. It is the first
1275            * PCI ID searching backwards from the end of the link pathname.
1276            * For example:
1277            *     readlink /sys/class/net/eth0
1278            *     ../../devices/pci0000:00/0000:00:0a.0/virtio4/net/eth0
1279            */
1280           for (pci_id = (char *)((devname + strlen((char *)devname)));
1281                ((u8 *)pci_id > devname) && *pci_id != '.'; pci_id--)
1282             ;
1283
1284           /*
1285            * Verify that the field found is a valid PCI ID.
1286            */
1287           if ((*(pci_id - 1) == '.') || ((u8 *)(pci_id - 11) < devname) || 
1288               (*(pci_id - 11) != '/') || (*(pci_id - 3) != ':') ||
1289               (*(pci_id - 6) != ':'))
1290             {
1291               devname[strlen ((char *)devname) - 1] = 0; // chomp trailing newline.
1292               clib_warning ("Unable to extract %s PCI ID (0x%llx \"%s\") "
1293                             "from 0x%llx \"%s\"", ethname, pci_id, pci_id,
1294                             devname, devname);
1295               continue;
1296             }
1297
1298           pci_id[2] = 0;
1299           pci_id -= 10;
1300
1301           /* Don't blacklist any interfaces which have been whitelisted.
1302            */
1303           if (dm->eth_if_whitelist &&
1304               strstr ((char *)dm->eth_if_whitelist, (char *)pci_id))
1305               continue;
1306
1307           _vec_len (dm->eth_if_blacklist) -= 1; // chomp trailing NULL.
1308           dm->eth_if_blacklist = format (dm->eth_if_blacklist, " %s%c",
1309                                          pci_id, 0);
1310         }
1311   
1312     rlnk_cmd_err:
1313       pclose (rlnk_fp);
1314       vec_free (rlnk_cmd);
1315       vec_free (devname);
1316     }
1317
1318  rte_cmd_err:
1319   pclose (rte_fp);
1320   vec_free (rte_cmd);
1321   vec_free (ethname);
1322
1323   if (error)
1324     return error;
1325
1326   /* I'll bet that -c and -n must be the first and second args... */
1327   if (!dm->coremask_set_manually)
1328     {
1329       vlib_thread_registration_t * tr;
1330       uword * coremask = 0;
1331       int i;
1332
1333       /* main thread core */
1334       coremask = clib_bitmap_set(coremask, tm->main_lcore, 1);
1335
1336       for (i = 0; i < vec_len (tm->registrations); i++)
1337         {
1338           tr = tm->registrations[i];
1339           coremask = clib_bitmap_or(coremask, tr->coremask);
1340         }
1341
1342       vec_insert (dm->eal_init_args, 2, 1);
1343       dm->eal_init_args[1] = (u8 *) "-c";
1344       tmp = format (0, "%U%c", format_bitmap_hex, coremask, 0);
1345       dm->eal_init_args[2] = tmp;
1346       clib_bitmap_free(coremask);
1347     }
1348
1349   if (!dm->nchannels_set_manually)
1350     {
1351       vec_insert (dm->eal_init_args, 2, 3);
1352       dm->eal_init_args[3] = (u8 *) "-n";
1353       tmp = format (0, "%d", dm->nchannels);
1354       dm->eal_init_args[4] = tmp;
1355     }
1356
1357   /*
1358    * If there are whitelisted devices,
1359    * add the whitelist option & device list to the dpdk arg list...
1360    */
1361   if (dm->eth_if_whitelist)
1362     {
1363       unformat_init_string (in, (char *)dm->eth_if_whitelist,
1364                             vec_len(dm->eth_if_whitelist) - 1);
1365       fmt = "-w%c";
1366     }
1367
1368   /*
1369    * Otherwise add the blacklisted devices to the dpdk arg list.
1370    */
1371   else
1372     {
1373       unformat_init_string (in, (char *)dm->eth_if_blacklist,
1374                             vec_len(dm->eth_if_blacklist) - 1);
1375       fmt = "-b%c";
1376     }
1377
1378   while (unformat_check_input (in) != UNFORMAT_END_OF_INPUT)
1379     {
1380       tmp = format (0, fmt, 0);
1381       vec_add1 (dm->eal_init_args, tmp);
1382       unformat (in, "%s", &pci_dev_id);
1383       vec_add1 (dm->eal_init_args, pci_dev_id);
1384     }
1385
1386   if (no_pci == 0)
1387     {
1388       /*
1389        * Bind Virtio pci devices to the igb_uio kernel driver.
1390        */
1391       error = dpdk_bind_eth_kernel_drivers (vm, "1af4:1000", VIRTIO_PCI_NAME);
1392       if (error)
1393         return error;
1394
1395       /*
1396        * Bind vmxnet3 pci devices to the igb_uio kernel driver.
1397        */
1398       error = dpdk_bind_eth_kernel_drivers (vm, "15ad:07b0",
1399                                             (char *) dm->uio_driver_name);
1400       if (error)
1401         return error;
1402
1403       /*
1404        * Bind Intel ethernet pci devices to igb_uio kernel driver.
1405        */
1406       error = dpdk_bind_eth_kernel_drivers (vm, "8086:",
1407                                             (char *) dm->uio_driver_name);
1408       /*
1409        * Bind Cisco VIC ethernet pci devices to igb_uio kernel driver.
1410        */
1411       error = dpdk_bind_eth_kernel_drivers (vm, "1137:0043",
1412                                             (char *) dm->uio_driver_name);
1413     }
1414
1415   /* set master-lcore */
1416   tmp = format (0, "--master-lcore%c", 0);
1417   vec_add1 (dm->eal_init_args, tmp);
1418   tmp = format (0, "%u%c", tm->main_lcore, 0);
1419   vec_add1 (dm->eal_init_args, tmp);
1420
1421   /* NULL terminate the "argv" vector, in case of stupidity */
1422   vec_add1 (dm->eal_init_args, 0);
1423   _vec_len(dm->eal_init_args) -= 1;
1424
1425   /* Set up DPDK eal and packet mbuf pool early. */
1426
1427   log_level = (CLIB_DEBUG > 0) ? RTE_LOG_DEBUG : RTE_LOG_NOTICE;
1428
1429   rte_set_log_level (log_level);
1430
1431   vm = dm->vlib_main;
1432
1433   ret = rte_eal_init(vec_len(dm->eal_init_args), (char **) dm->eal_init_args);
1434
1435   /* lazy umount hugepages */
1436   umount2(DEFAULT_HUGE_DIR, MNT_DETACH);
1437
1438   if (ret < 0)
1439     return clib_error_return (0, "rte_eal_init returned %d", ret);
1440
1441   /* main thread 1st */
1442   error = vlib_buffer_pool_create(vm, dm->num_mbufs, MBUF_SIZE, rte_socket_id());
1443   if (error)
1444     return error;
1445
1446   for (i = 0; i < RTE_MAX_LCORE; i++)
1447     {
1448       error = vlib_buffer_pool_create(vm, dm->num_mbufs, MBUF_SIZE,
1449                                       rte_lcore_to_socket_id(i));
1450       if (error)
1451         return error;
1452     }
1453
1454   if (dm->use_rss)
1455     {
1456       vlib_node_runtime_t * rt = vlib_node_get_runtime (vm, dpdk_input_node.index);
1457       rt->function = dpdk_input_rss;
1458     }
1459  done:
1460   return error;
1461 }
1462
1463 VLIB_CONFIG_FUNCTION (dpdk_config, "dpdk");
1464
1465 void dpdk_update_link_state (dpdk_device_t * xd, f64 now)
1466 {
1467     vnet_main_t * vnm = vnet_get_main();
1468     struct rte_eth_link prev_link = xd->link;
1469     u32 hw_flags =  0;
1470     u8 hw_flags_chg = 0;
1471
1472     /* only update link state for PMD interfaces */
1473     if (xd->dev_type != VNET_DPDK_DEV_ETH)
1474       return;
1475
1476     xd->time_last_link_update = now ? now : xd->time_last_link_update;
1477     memset(&xd->link, 0, sizeof(xd->link));
1478     rte_eth_link_get_nowait (xd->device_index, &xd->link);
1479
1480     if (LINK_STATE_ELOGS)
1481       {
1482         vlib_main_t * vm = vlib_get_main();
1483         ELOG_TYPE_DECLARE(e) = {
1484           .format = 
1485           "update-link-state: sw_if_index %d, admin_up %d,"
1486           "old link_state %d new link_state %d",
1487           .format_args = "i4i1i1i1",
1488         };
1489
1490         struct { u32 sw_if_index; u8 admin_up; 
1491           u8 old_link_state; u8 new_link_state;} *ed;
1492         ed = ELOG_DATA (&vm->elog_main, e);
1493         ed->sw_if_index = xd->vlib_sw_if_index;
1494         ed->admin_up = xd->admin_up;
1495         ed->old_link_state = (u8)
1496           vnet_hw_interface_is_link_up (vnm, xd->vlib_hw_if_index);
1497         ed->new_link_state = (u8) xd->link.link_status;
1498       }
1499
1500     if ((xd->admin_up == 1) && 
1501         ((xd->link.link_status != 0) ^ 
1502          vnet_hw_interface_is_link_up (vnm, xd->vlib_hw_if_index)))
1503       {
1504         hw_flags_chg = 1;
1505         hw_flags |= (xd->link.link_status ? 
1506                      VNET_HW_INTERFACE_FLAG_LINK_UP: 0);
1507       }
1508
1509     if (hw_flags_chg || (xd->link.link_duplex != prev_link.link_duplex))
1510       {
1511         hw_flags_chg = 1;
1512         switch (xd->link.link_duplex)
1513           {
1514           case ETH_LINK_HALF_DUPLEX:
1515             hw_flags |= VNET_HW_INTERFACE_FLAG_HALF_DUPLEX;
1516             break;
1517           case ETH_LINK_FULL_DUPLEX:
1518             hw_flags |= VNET_HW_INTERFACE_FLAG_FULL_DUPLEX;
1519             break;
1520           default:
1521             break;
1522           }
1523       }
1524     if (hw_flags_chg || (xd->link.link_speed != prev_link.link_speed))
1525       {
1526         hw_flags_chg = 1;
1527         switch (xd->link.link_speed)
1528           {
1529           case ETH_LINK_SPEED_10:
1530             hw_flags |= VNET_HW_INTERFACE_FLAG_SPEED_10M;
1531             break;
1532           case ETH_LINK_SPEED_100:
1533             hw_flags |= VNET_HW_INTERFACE_FLAG_SPEED_100M;
1534             break;
1535           case ETH_LINK_SPEED_1000:
1536             hw_flags |= VNET_HW_INTERFACE_FLAG_SPEED_1G;
1537             break;
1538           case ETH_LINK_SPEED_10000:
1539             hw_flags |= VNET_HW_INTERFACE_FLAG_SPEED_10G;
1540             break;
1541           case ETH_LINK_SPEED_40G:
1542             hw_flags |= VNET_HW_INTERFACE_FLAG_SPEED_40G;
1543             break;
1544     case 0:
1545       break;
1546     default:
1547       clib_warning("unknown link speed %d", xd->link.link_speed);
1548             break;
1549           }
1550       }
1551     if (hw_flags_chg)
1552       {
1553         if (LINK_STATE_ELOGS)
1554           {
1555             vlib_main_t * vm = vlib_get_main();
1556
1557             ELOG_TYPE_DECLARE(e) = {
1558               .format = "update-link-state: sw_if_index %d, new flags %d",
1559               .format_args = "i4i4",
1560             };
1561
1562             struct { u32 sw_if_index; u32 flags; } *ed;
1563             ed = ELOG_DATA (&vm->elog_main, e);
1564             ed->sw_if_index = xd->vlib_sw_if_index;
1565             ed->flags = hw_flags;
1566           }
1567         vnet_hw_interface_set_flags (vnm, xd->vlib_hw_if_index, hw_flags);
1568       }
1569 }
1570
1571 static uword
1572 dpdk_process (vlib_main_t * vm,
1573               vlib_node_runtime_t * rt,
1574               vlib_frame_t * f)
1575 {
1576   clib_error_t * error;
1577   dpdk_main_t * dm = &dpdk_main;
1578   dpdk_device_t * xd;
1579   vlib_thread_main_t * tm = vlib_get_thread_main();
1580   void *vu_state;
1581   int i;
1582
1583   error = dpdk_lib_init (dm);
1584
1585   /* 
1586    * Turn on the input node if we found some devices to drive
1587    * and we're not running worker threads or i/o threads
1588    */
1589
1590   if (error == 0 && vec_len(dm->devices) > 0)
1591     {
1592         if (tm->n_vlib_mains == 1)
1593           vlib_node_set_state (vm, dpdk_input_node.index,
1594                                VLIB_NODE_STATE_POLLING);
1595         else if (tm->main_thread_is_io_node)
1596           vlib_node_set_state (vm, dpdk_io_input_node.index,
1597                                VLIB_NODE_STATE_POLLING);
1598         else if (!dm->have_io_threads)
1599           for (i=0; i < tm->n_vlib_mains; i++)
1600             if (vec_len(dm->devices_by_cpu[i]) > 0)
1601               vlib_node_set_state (vlib_mains[i], dpdk_input_node.index,
1602                                    VLIB_NODE_STATE_POLLING);
1603     }
1604
1605   if (error)
1606     clib_error_report (error);
1607
1608   dpdk_vhost_user_process_init(&vu_state);
1609
1610   dm->io_thread_release = 1;
1611
1612   f64 now = vlib_time_now (vm);
1613   vec_foreach (xd, dm->devices)
1614     {
1615       dpdk_update_link_state (xd, now);
1616     }
1617
1618   while (1)
1619     {
1620       vlib_process_wait_for_event_or_clock (vm, 5.0);
1621
1622       if (dpdk_get_admin_up_down_in_progress())
1623           /* skip the poll if an admin up down is in progress (on any interface) */
1624           continue;
1625
1626       vec_foreach (xd, dm->devices)
1627         {
1628           f64 now = vlib_time_now (vm);
1629           if ((now - xd->time_last_stats_update) >= DPDK_STATS_POLL_INTERVAL)
1630             dpdk_update_counters (xd, now);
1631           if ((now - xd->time_last_link_update) >= DPDK_LINK_POLL_INTERVAL)
1632             dpdk_update_link_state (xd, now);
1633
1634       if (xd->dev_type == VNET_DPDK_DEV_VHOST_USER)
1635           if (dpdk_vhost_user_process_if(vm, xd, vu_state) != 0)
1636               continue;
1637         }
1638     }
1639
1640   dpdk_vhost_user_process_cleanup(vu_state);
1641
1642   return 0; 
1643 }
1644
1645 VLIB_REGISTER_NODE (dpdk_process_node,static) = {
1646     .function = dpdk_process,
1647     .type = VLIB_NODE_TYPE_PROCESS,
1648     .name = "dpdk-process",
1649     .process_log2_n_stack_bytes = 17,
1650 };
1651
1652 clib_error_t *
1653 dpdk_init (vlib_main_t * vm)
1654 {
1655   dpdk_main_t * dm = &dpdk_main;
1656   vlib_node_t * ei;
1657   clib_error_t * error = 0;
1658   vlib_thread_main_t * tm = vlib_get_thread_main();
1659
1660   /* verify that structs are cacheline aligned */
1661   ASSERT(offsetof(dpdk_device_t, cacheline0) == 0);
1662   ASSERT(offsetof(dpdk_device_t, cacheline1) == CLIB_CACHE_LINE_BYTES);
1663   ASSERT(offsetof(dpdk_worker_t, cacheline0) == 0);
1664   ASSERT(offsetof(frame_queue_trace_t, cacheline0) == 0);
1665
1666   /* Add references to DPDK Driver Constructor functions to get the dynamic
1667    * loader to pull in the driver library & run the constructors.
1668    */
1669 #define _(d)                                          \
1670 do {                                                  \
1671   void devinitfn_ ##d(void);                          \
1672   __attribute__((unused)) void (* volatile pf)(void); \
1673   pf = devinitfn_ ##d;                                \
1674 } while(0);
1675
1676 #ifdef RTE_LIBRTE_EM_PMD
1677   _(em_pmd_drv)
1678 #endif
1679
1680 #ifdef RTE_LIBRTE_IGB_PMD
1681   _(pmd_igb_drv)
1682 #endif
1683
1684 #ifdef RTE_LIBRTE_IXGBE_PMD
1685   _(rte_ixgbe_driver)
1686 #endif
1687
1688 #ifdef RTE_LIBRTE_I40E_PMD
1689   _(rte_i40e_driver)
1690   _(rte_i40evf_driver)
1691 #endif
1692
1693 #ifdef RTE_LIBRTE_FM10K_PMD
1694   _(rte_fm10k_driver)
1695 #endif
1696
1697 #ifdef RTE_LIBRTE_VIRTIO_PMD
1698   _(rte_virtio_driver)
1699 #endif
1700
1701 #ifdef RTE_LIBRTE_VMXNET3_PMD
1702   _(rte_vmxnet3_driver)
1703 #endif
1704
1705 #ifdef RTE_LIBRTE_VICE_PMD
1706   _(rte_vice_driver)
1707 #endif
1708
1709 #ifdef RTE_LIBRTE_ENIC_PMD
1710   _(rte_enic_driver)
1711 #endif
1712
1713 #ifdef RTE_LIBRTE_PMD_AF_PACKET
1714   _(pmd_af_packet_drv)
1715 #endif
1716
1717 #ifdef RTE_LIBRTE_CXGBE_PMD
1718   _(rte_cxgbe_driver)
1719 #endif
1720
1721 #undef _
1722
1723 /* 
1724  * At the moment, the ThunderX NIC driver doesn't have
1725  * an entry point named "devinitfn_rte_xxx_driver"
1726  */
1727 #define _(d)                                          \
1728 do {                                                  \
1729   void d(void);                                       \
1730   __attribute__((unused)) void (* volatile pf)(void); \
1731   pf = d;                                             \
1732 } while(0);
1733
1734 #ifdef RTE_LIBRTE_THUNDERVNIC_PMD
1735 _(rte_nicvf_pmd_init)
1736 #endif
1737 #undef _
1738
1739   dm->vlib_main = vm;
1740   dm->vnet_main = vnet_get_main();
1741
1742   ei = vlib_get_node_by_name (vm, (u8 *) "ethernet-input");
1743   if (ei == 0)
1744       return clib_error_return (0, "ethernet-input node AWOL");
1745
1746   dm->ethernet_input_node_index = ei->index;
1747
1748   dm->nchannels = 4;
1749   dm->num_mbufs = dm->num_mbufs ? dm->num_mbufs : NB_MBUF;
1750   vec_add1 (dm->eal_init_args, (u8 *) "vnet");
1751
1752   dm->dpdk_device_by_kni_port_id = hash_create (0, sizeof (uword));
1753   dm->vu_sw_if_index_by_listener_fd = hash_create (0, sizeof (uword));
1754   dm->vu_sw_if_index_by_sock_fd = hash_create (0, sizeof (uword));
1755
1756   /* $$$ use n_thread_stacks since it's known-good at this point */
1757   vec_validate (dm->recycle, tm->n_thread_stacks - 1);
1758
1759   /* initialize EFD (early fast discard) default settings */
1760   dm->efd.enabled = DPDK_EFD_DISABLED;
1761   dm->efd.queue_hi_thresh = ((DPDK_EFD_DEFAULT_DEVICE_QUEUE_HI_THRESH_PCT *
1762                               DPDK_NB_RX_DESC_10GE)/100);
1763   dm->efd.consec_full_frames_hi_thresh =
1764       DPDK_EFD_DEFAULT_CONSEC_FULL_FRAMES_HI_THRESH;
1765
1766   /* vhost-user coalescence frames defaults */
1767   dm->vhost_coalesce_frames = 32;
1768   dm->vhost_coalesce_time = 1e-3;
1769
1770   /* init CLI */
1771   if ((error = vlib_call_init_function (vm, dpdk_cli_init)))
1772     return error;
1773
1774   return error;
1775 }
1776
1777 VLIB_INIT_FUNCTION (dpdk_init);
1778