netdev-dpdk: Fix a typo.
[cascardo/ovs.git] / lib / netdev-dpdk.c
1 /*
2  * Copyright (c) 2014 Nicira, Inc.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at:
7  *
8  *     http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 #include <config.h>
18
19 #include <stdio.h>
20 #include <string.h>
21 #include <signal.h>
22 #include <stdlib.h>
23 #include <pthread.h>
24 #include <config.h>
25 #include <errno.h>
26 #include <sched.h>
27 #include <stdlib.h>
28 #include <unistd.h>
29 #include <stdio.h>
30
31 #include "dpif-netdev.h"
32 #include "list.h"
33 #include "netdev-dpdk.h"
34 #include "netdev-provider.h"
35 #include "netdev-vport.h"
36 #include "odp-util.h"
37 #include "ofp-print.h"
38 #include "ofpbuf.h"
39 #include "ovs-numa.h"
40 #include "ovs-thread.h"
41 #include "ovs-rcu.h"
42 #include "packet-dpif.h"
43 #include "packets.h"
44 #include "shash.h"
45 #include "sset.h"
46 #include "unaligned.h"
47 #include "timeval.h"
48 #include "unixctl.h"
49 #include "vlog.h"
50
51 VLOG_DEFINE_THIS_MODULE(dpdk);
52 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(5, 20);
53
54 #define DPDK_PORT_WATCHDOG_INTERVAL 5
55
56 #define OVS_CACHE_LINE_SIZE CACHE_LINE_SIZE
57 #define OVS_VPORT_DPDK "ovs_dpdk"
58
59 /*
60  * need to reserve tons of extra space in the mbufs so we can align the
61  * DMA addresses to 4KB.
62  */
63
64 #define MTU_TO_MAX_LEN(mtu)  ((mtu) + ETHER_HDR_LEN + ETHER_CRC_LEN)
65 #define MBUF_SIZE(mtu)       (MTU_TO_MAX_LEN(mtu) + (512) + \
66                              sizeof(struct rte_mbuf) + RTE_PKTMBUF_HEADROOM)
67
68 /* XXX: mempool size should be based on system resources. */
69 #define NB_MBUF              (4096 * 64)
70 #define MP_CACHE_SZ          (256 * 2)
71 #define SOCKET0              0
72
73 #define NIC_PORT_RX_Q_SIZE 2048  /* Size of Physical NIC RX Queue, Max (n+32<=4096)*/
74 #define NIC_PORT_TX_Q_SIZE 2048  /* Size of Physical NIC TX Queue, Max (n+32<=4096)*/
75
76 /* XXX: Needs per NIC value for these constants. */
77 #define RX_PTHRESH 32 /* Default values of RX prefetch threshold reg. */
78 #define RX_HTHRESH 32 /* Default values of RX host threshold reg. */
79 #define RX_WTHRESH 16 /* Default values of RX write-back threshold reg. */
80
81 #define TX_PTHRESH 36 /* Default values of TX prefetch threshold reg. */
82 #define TX_HTHRESH 0  /* Default values of TX host threshold reg. */
83 #define TX_WTHRESH 0  /* Default values of TX write-back threshold reg. */
84
85 static const struct rte_eth_conf port_conf = {
86     .rxmode = {
87         .mq_mode = ETH_MQ_RX_RSS,
88         .split_hdr_size = 0,
89         .header_split   = 0, /* Header Split disabled */
90         .hw_ip_checksum = 0, /* IP checksum offload disabled */
91         .hw_vlan_filter = 0, /* VLAN filtering disabled */
92         .jumbo_frame    = 0, /* Jumbo Frame Support disabled */
93         .hw_strip_crc   = 0,
94     },
95     .rx_adv_conf = {
96         .rss_conf = {
97             .rss_key = NULL,
98             .rss_hf = ETH_RSS_IPV4_TCP | ETH_RSS_IPV4 | ETH_RSS_IPV6
99                     | ETH_RSS_IPV4_UDP | ETH_RSS_IPV6_TCP | ETH_RSS_IPV6_UDP,
100         },
101     },
102     .txmode = {
103         .mq_mode = ETH_MQ_TX_NONE,
104     },
105 };
106
107 static const struct rte_eth_rxconf rx_conf = {
108     .rx_thresh = {
109         .pthresh = RX_PTHRESH,
110         .hthresh = RX_HTHRESH,
111         .wthresh = RX_WTHRESH,
112     },
113 };
114
115 static const struct rte_eth_txconf tx_conf = {
116     .tx_thresh = {
117         .pthresh = TX_PTHRESH,
118         .hthresh = TX_HTHRESH,
119         .wthresh = TX_WTHRESH,
120     },
121     .tx_free_thresh = 0,
122     .tx_rs_thresh = 0,
123     .txq_flags = ETH_TXQ_FLAGS_NOMULTSEGS|ETH_TXQ_FLAGS_NOOFFLOADS,
124 };
125
126 enum { MAX_RX_QUEUE_LEN = 192 };
127 enum { MAX_TX_QUEUE_LEN = 384 };
128 enum { DPDK_RING_SIZE = 256 };
129 BUILD_ASSERT_DECL(IS_POW2(DPDK_RING_SIZE));
130 enum { DRAIN_TSC = 200000ULL };
131
132 static int rte_eal_init_ret = ENODEV;
133
134 static struct ovs_mutex dpdk_mutex = OVS_MUTEX_INITIALIZER;
135
136 /* Contains all 'struct dpdk_dev's. */
137 static struct list dpdk_list OVS_GUARDED_BY(dpdk_mutex)
138     = LIST_INITIALIZER(&dpdk_list);
139
140 static struct list dpdk_mp_list OVS_GUARDED_BY(dpdk_mutex)
141     = LIST_INITIALIZER(&dpdk_mp_list);
142
143 /* This mutex must be used by non pmd threads when allocating or freeing
144  * mbufs through mempools. Since dpdk_queue_pkts() and dpdk_queue_flush() may
145  * use mempools, a non pmd thread should hold this mutex while calling them */
146 struct ovs_mutex nonpmd_mempool_mutex = OVS_MUTEX_INITIALIZER;
147
148 struct dpdk_mp {
149     struct rte_mempool *mp;
150     int mtu;
151     int socket_id;
152     int refcount;
153     struct list list_node OVS_GUARDED_BY(dpdk_mutex);
154 };
155
156 /* There should be one 'struct dpdk_tx_queue' created for
157  * each cpu core. */
158 struct dpdk_tx_queue {
159     bool flush_tx;                 /* Set to true to flush queue everytime */
160                                    /* pkts are queued. */
161     int count;
162     uint64_t tsc;
163     struct rte_mbuf *burst_pkts[MAX_TX_QUEUE_LEN];
164 };
165
166 /* dpdk has no way to remove dpdk ring ethernet devices
167    so we have to keep them around once they've been created
168 */
169
170 static struct list dpdk_ring_list OVS_GUARDED_BY(dpdk_mutex)
171     = LIST_INITIALIZER(&dpdk_ring_list);
172
173 struct dpdk_ring {
174     /* For the client rings */
175     struct rte_ring *cring_tx;
176     struct rte_ring *cring_rx;
177     int user_port_id; /* User given port no, parsed from port name */
178     int eth_port_id; /* ethernet device port id */
179     struct list list_node OVS_GUARDED_BY(dpdk_mutex);
180 };
181
182 struct netdev_dpdk {
183     struct netdev up;
184     int port_id;
185     int max_packet_len;
186
187     struct dpdk_tx_queue *tx_q;
188
189     struct ovs_mutex mutex OVS_ACQ_AFTER(dpdk_mutex);
190
191     struct dpdk_mp *dpdk_mp;
192     int mtu;
193     int socket_id;
194     int buf_size;
195     struct netdev_stats stats;
196
197     uint8_t hwaddr[ETH_ADDR_LEN];
198     enum netdev_flags flags;
199
200     struct rte_eth_link link;
201     int link_reset_cnt;
202
203     /* In dpdk_list. */
204     struct list list_node OVS_GUARDED_BY(dpdk_mutex);
205 };
206
207 struct netdev_rxq_dpdk {
208     struct netdev_rxq up;
209     int port_id;
210 };
211
212 static bool thread_is_pmd(void);
213
214 static int netdev_dpdk_construct(struct netdev *);
215
216 static bool
217 is_dpdk_class(const struct netdev_class *class)
218 {
219     return class->construct == netdev_dpdk_construct;
220 }
221
222 /* XXX: use dpdk malloc for entire OVS. infact huge page shld be used
223  * for all other sengments data, bss and text. */
224
225 static void *
226 dpdk_rte_mzalloc(size_t sz)
227 {
228     void *ptr;
229
230     ptr = rte_zmalloc(OVS_VPORT_DPDK, sz, OVS_CACHE_LINE_SIZE);
231     if (ptr == NULL) {
232         out_of_memory();
233     }
234     return ptr;
235 }
236
237 /* XXX this function should be called only by pmd threads (or by non pmd
238  * threads holding the nonpmd_mempool_mutex) */
239 void
240 free_dpdk_buf(struct dpif_packet *p)
241 {
242     struct rte_mbuf *pkt = (struct rte_mbuf *) p;
243
244     rte_pktmbuf_free_seg(pkt);
245 }
246
247 static void
248 __rte_pktmbuf_init(struct rte_mempool *mp,
249                    void *opaque_arg OVS_UNUSED,
250                    void *_m,
251                    unsigned i OVS_UNUSED)
252 {
253     struct rte_mbuf *m = _m;
254     uint32_t buf_len = mp->elt_size - sizeof(struct dpif_packet);
255
256     RTE_MBUF_ASSERT(mp->elt_size >= sizeof(struct dpif_packet));
257
258     memset(m, 0, mp->elt_size);
259
260     /* start of buffer is just after mbuf structure */
261     m->buf_addr = (char *)m + sizeof(struct dpif_packet);
262     m->buf_physaddr = rte_mempool_virt2phy(mp, m) +
263                     sizeof(struct dpif_packet);
264     m->buf_len = (uint16_t)buf_len;
265
266     /* keep some headroom between start of buffer and data */
267     m->pkt.data = (char*) m->buf_addr + RTE_MIN(RTE_PKTMBUF_HEADROOM, m->buf_len);
268
269     /* init some constant fields */
270     m->type = RTE_MBUF_PKT;
271     m->pool = mp;
272     m->pkt.nb_segs = 1;
273     m->pkt.in_port = 0xff;
274 }
275
276 static void
277 ovs_rte_pktmbuf_init(struct rte_mempool *mp,
278                      void *opaque_arg OVS_UNUSED,
279                      void *_m,
280                      unsigned i OVS_UNUSED)
281 {
282     struct rte_mbuf *m = _m;
283
284     __rte_pktmbuf_init(mp, opaque_arg, _m, i);
285
286     ofpbuf_init_dpdk((struct ofpbuf *) m, m->buf_len);
287 }
288
289 static struct dpdk_mp *
290 dpdk_mp_get(int socket_id, int mtu) OVS_REQUIRES(dpdk_mutex)
291 {
292     struct dpdk_mp *dmp = NULL;
293     char mp_name[RTE_MEMPOOL_NAMESIZE];
294
295     LIST_FOR_EACH (dmp, list_node, &dpdk_mp_list) {
296         if (dmp->socket_id == socket_id && dmp->mtu == mtu) {
297             dmp->refcount++;
298             return dmp;
299         }
300     }
301
302     dmp = dpdk_rte_mzalloc(sizeof *dmp);
303     dmp->socket_id = socket_id;
304     dmp->mtu = mtu;
305     dmp->refcount = 1;
306
307     if (snprintf(mp_name, RTE_MEMPOOL_NAMESIZE, "ovs_mp_%d_%d", dmp->mtu,
308                  dmp->socket_id) < 0) {
309         return NULL;
310     }
311
312     dmp->mp = rte_mempool_create(mp_name, NB_MBUF, MBUF_SIZE(mtu),
313                                  MP_CACHE_SZ,
314                                  sizeof(struct rte_pktmbuf_pool_private),
315                                  rte_pktmbuf_pool_init, NULL,
316                                  ovs_rte_pktmbuf_init, NULL,
317                                  socket_id, 0);
318
319     if (dmp->mp == NULL) {
320         return NULL;
321     }
322
323     list_push_back(&dpdk_mp_list, &dmp->list_node);
324     return dmp;
325 }
326
327 static void
328 dpdk_mp_put(struct dpdk_mp *dmp)
329 {
330
331     if (!dmp) {
332         return;
333     }
334
335     dmp->refcount--;
336     ovs_assert(dmp->refcount >= 0);
337
338 #if 0
339     /* I could not find any API to destroy mp. */
340     if (dmp->refcount == 0) {
341         list_delete(dmp->list_node);
342         /* destroy mp-pool. */
343     }
344 #endif
345 }
346
347 static void
348 check_link_status(struct netdev_dpdk *dev)
349 {
350     struct rte_eth_link link;
351
352     rte_eth_link_get_nowait(dev->port_id, &link);
353
354     if (dev->link.link_status != link.link_status) {
355         netdev_change_seq_changed(&dev->up);
356
357         dev->link_reset_cnt++;
358         dev->link = link;
359         if (dev->link.link_status) {
360             VLOG_DBG_RL(&rl, "Port %d Link Up - speed %u Mbps - %s",
361                         dev->port_id, (unsigned)dev->link.link_speed,
362                         (dev->link.link_duplex == ETH_LINK_FULL_DUPLEX) ?
363                          ("full-duplex") : ("half-duplex"));
364         } else {
365             VLOG_DBG_RL(&rl, "Port %d Link Down", dev->port_id);
366         }
367     }
368 }
369
370 static void *
371 dpdk_watchdog(void *dummy OVS_UNUSED)
372 {
373     struct netdev_dpdk *dev;
374
375     pthread_detach(pthread_self());
376
377     for (;;) {
378         ovs_mutex_lock(&dpdk_mutex);
379         LIST_FOR_EACH (dev, list_node, &dpdk_list) {
380             ovs_mutex_lock(&dev->mutex);
381             check_link_status(dev);
382             ovs_mutex_unlock(&dev->mutex);
383         }
384         ovs_mutex_unlock(&dpdk_mutex);
385         xsleep(DPDK_PORT_WATCHDOG_INTERVAL);
386     }
387
388     return NULL;
389 }
390
391 static int
392 dpdk_eth_dev_init(struct netdev_dpdk *dev) OVS_REQUIRES(dpdk_mutex)
393 {
394     struct rte_pktmbuf_pool_private *mbp_priv;
395     struct ether_addr eth_addr;
396     int diag;
397     int i;
398
399     if (dev->port_id < 0 || dev->port_id >= rte_eth_dev_count()) {
400         return ENODEV;
401     }
402
403     diag = rte_eth_dev_configure(dev->port_id, dev->up.n_rxq, dev->up.n_txq,
404                                  &port_conf);
405     if (diag) {
406         VLOG_ERR("eth dev config error %d",diag);
407         return -diag;
408     }
409
410     for (i = 0; i < dev->up.n_txq; i++) {
411         diag = rte_eth_tx_queue_setup(dev->port_id, i, NIC_PORT_TX_Q_SIZE,
412                                       dev->socket_id, &tx_conf);
413         if (diag) {
414             VLOG_ERR("eth dev tx queue setup error %d",diag);
415             return -diag;
416         }
417     }
418
419     for (i = 0; i < dev->up.n_rxq; i++) {
420         diag = rte_eth_rx_queue_setup(dev->port_id, i, NIC_PORT_RX_Q_SIZE,
421                                       dev->socket_id,
422                                       &rx_conf, dev->dpdk_mp->mp);
423         if (diag) {
424             VLOG_ERR("eth dev rx queue setup error %d",diag);
425             return -diag;
426         }
427     }
428
429     diag = rte_eth_dev_start(dev->port_id);
430     if (diag) {
431         VLOG_ERR("eth dev start error %d",diag);
432         return -diag;
433     }
434
435     rte_eth_promiscuous_enable(dev->port_id);
436     rte_eth_allmulticast_enable(dev->port_id);
437
438     memset(&eth_addr, 0x0, sizeof(eth_addr));
439     rte_eth_macaddr_get(dev->port_id, &eth_addr);
440     VLOG_INFO_RL(&rl, "Port %d: "ETH_ADDR_FMT"",
441                     dev->port_id, ETH_ADDR_ARGS(eth_addr.addr_bytes));
442
443     memcpy(dev->hwaddr, eth_addr.addr_bytes, ETH_ADDR_LEN);
444     rte_eth_link_get_nowait(dev->port_id, &dev->link);
445
446     mbp_priv = rte_mempool_get_priv(dev->dpdk_mp->mp);
447     dev->buf_size = mbp_priv->mbuf_data_room_size - RTE_PKTMBUF_HEADROOM;
448
449     dev->flags = NETDEV_UP | NETDEV_PROMISC;
450     return 0;
451 }
452
453 static struct netdev_dpdk *
454 netdev_dpdk_cast(const struct netdev *netdev)
455 {
456     return CONTAINER_OF(netdev, struct netdev_dpdk, up);
457 }
458
459 static struct netdev *
460 netdev_dpdk_alloc(void)
461 {
462     struct netdev_dpdk *netdev = dpdk_rte_mzalloc(sizeof *netdev);
463     return &netdev->up;
464 }
465
466 static void
467 netdev_dpdk_set_txq(struct netdev_dpdk *netdev, unsigned int n_txqs)
468 {
469     int i;
470
471     netdev->tx_q = dpdk_rte_mzalloc(n_txqs * sizeof *netdev->tx_q);
472     /* Each index is considered as a cpu core id, since there should
473      * be one tx queue for each cpu core. */
474     for (i = 0; i < n_txqs; i++) {
475         int numa_id = ovs_numa_get_numa_id(i);
476
477         /* If the corresponding core is not on the same numa node
478          * as 'netdev', flags the 'flush_tx'. */
479         netdev->tx_q[i].flush_tx = netdev->socket_id == numa_id;
480     }
481 }
482
483 static int
484 netdev_dpdk_init(struct netdev *netdev_, unsigned int port_no)
485     OVS_REQUIRES(dpdk_mutex)
486 {
487     struct netdev_dpdk *netdev = netdev_dpdk_cast(netdev_);
488     int err = 0;
489
490     ovs_mutex_init(&netdev->mutex);
491
492     ovs_mutex_lock(&netdev->mutex);
493
494     netdev->socket_id = rte_eth_dev_socket_id(port_no);
495     netdev_dpdk_set_txq(netdev, NR_QUEUE);
496     netdev->port_id = port_no;
497     netdev->flags = 0;
498     netdev->mtu = ETHER_MTU;
499     netdev->max_packet_len = MTU_TO_MAX_LEN(netdev->mtu);
500
501     netdev->dpdk_mp = dpdk_mp_get(netdev->socket_id, netdev->mtu);
502     if (!netdev->dpdk_mp) {
503         err = ENOMEM;
504         goto unlock;
505     }
506
507     netdev_->n_txq = NR_QUEUE;
508     netdev_->n_rxq = NR_QUEUE;
509     err = dpdk_eth_dev_init(netdev);
510     if (err) {
511         goto unlock;
512     }
513
514     list_push_back(&dpdk_list, &netdev->list_node);
515
516 unlock:
517     if (err) {
518         rte_free(netdev->tx_q);
519     }
520     ovs_mutex_unlock(&netdev->mutex);
521     return err;
522 }
523
524 static int
525 dpdk_dev_parse_name(const char dev_name[], const char prefix[],
526                     unsigned int *port_no)
527 {
528     const char *cport;
529
530     if (strncmp(dev_name, prefix, strlen(prefix))) {
531         return ENODEV;
532     }
533
534     cport = dev_name + strlen(prefix);
535     *port_no = strtol(cport, 0, 0); /* string must be null terminated */
536     return 0;
537 }
538
539 static int
540 netdev_dpdk_construct(struct netdev *netdev)
541 {
542     unsigned int port_no;
543     int err;
544
545     if (rte_eal_init_ret) {
546         return rte_eal_init_ret;
547     }
548
549     /* Names always start with "dpdk" */
550     err = dpdk_dev_parse_name(netdev->name, "dpdk", &port_no);
551     if (err) {
552         return err;
553     }
554
555     ovs_mutex_lock(&dpdk_mutex);
556     err = netdev_dpdk_init(netdev, port_no);
557     ovs_mutex_unlock(&dpdk_mutex);
558     return err;
559 }
560
561 static void
562 netdev_dpdk_destruct(struct netdev *netdev_)
563 {
564     struct netdev_dpdk *dev = netdev_dpdk_cast(netdev_);
565
566     ovs_mutex_lock(&dev->mutex);
567     rte_eth_dev_stop(dev->port_id);
568     ovs_mutex_unlock(&dev->mutex);
569
570     ovs_mutex_lock(&dpdk_mutex);
571     rte_free(dev->tx_q);
572     list_remove(&dev->list_node);
573     dpdk_mp_put(dev->dpdk_mp);
574     ovs_mutex_unlock(&dpdk_mutex);
575
576     ovs_mutex_destroy(&dev->mutex);
577 }
578
579 static void
580 netdev_dpdk_dealloc(struct netdev *netdev_)
581 {
582     struct netdev_dpdk *netdev = netdev_dpdk_cast(netdev_);
583
584     rte_free(netdev);
585 }
586
587 static int
588 netdev_dpdk_get_config(const struct netdev *netdev_, struct smap *args)
589 {
590     struct netdev_dpdk *dev = netdev_dpdk_cast(netdev_);
591
592     ovs_mutex_lock(&dev->mutex);
593
594     smap_add_format(args, "configured_rx_queues", "%d", netdev_->n_rxq);
595     smap_add_format(args, "configured_tx_queues", "%d", netdev_->n_txq);
596     ovs_mutex_unlock(&dev->mutex);
597
598     return 0;
599 }
600
601 static int
602 netdev_dpdk_get_numa_id(const struct netdev *netdev_)
603 {
604     struct netdev_dpdk *netdev = netdev_dpdk_cast(netdev_);
605
606     return netdev->socket_id;
607 }
608
609 /* Sets the number of tx queues and rx queues for the dpdk interface.
610  * If the configuration fails, do not try restoring its old configuration
611  * and just returns the error. */
612 static int
613 netdev_dpdk_set_multiq(struct netdev *netdev_, unsigned int n_txq,
614                        unsigned int n_rxq)
615 {
616     struct netdev_dpdk *netdev = netdev_dpdk_cast(netdev_);
617     int err = 0;
618
619     if (netdev->up.n_txq == n_txq && netdev->up.n_rxq == n_rxq) {
620         return err;
621     }
622
623     ovs_mutex_lock(&dpdk_mutex);
624     ovs_mutex_lock(&netdev->mutex);
625     rte_eth_dev_stop(netdev->port_id);
626     netdev->up.n_txq = n_txq;
627     netdev->up.n_rxq = n_rxq;
628     err = dpdk_eth_dev_init(netdev);
629     if (!err && netdev->up.n_txq != n_txq) {
630         rte_free(netdev->tx_q);
631         netdev_dpdk_set_txq(netdev, n_txq);
632     }
633     ovs_mutex_unlock(&netdev->mutex);
634     ovs_mutex_unlock(&dpdk_mutex);
635
636     return err;
637 }
638
639 static struct netdev_rxq *
640 netdev_dpdk_rxq_alloc(void)
641 {
642     struct netdev_rxq_dpdk *rx = dpdk_rte_mzalloc(sizeof *rx);
643
644     return &rx->up;
645 }
646
647 static struct netdev_rxq_dpdk *
648 netdev_rxq_dpdk_cast(const struct netdev_rxq *rx)
649 {
650     return CONTAINER_OF(rx, struct netdev_rxq_dpdk, up);
651 }
652
653 static int
654 netdev_dpdk_rxq_construct(struct netdev_rxq *rxq_)
655 {
656     struct netdev_rxq_dpdk *rx = netdev_rxq_dpdk_cast(rxq_);
657     struct netdev_dpdk *netdev = netdev_dpdk_cast(rx->up.netdev);
658
659     ovs_mutex_lock(&netdev->mutex);
660     rx->port_id = netdev->port_id;
661     ovs_mutex_unlock(&netdev->mutex);
662
663     return 0;
664 }
665
666 static void
667 netdev_dpdk_rxq_destruct(struct netdev_rxq *rxq_ OVS_UNUSED)
668 {
669 }
670
671 static void
672 netdev_dpdk_rxq_dealloc(struct netdev_rxq *rxq_)
673 {
674     struct netdev_rxq_dpdk *rx = netdev_rxq_dpdk_cast(rxq_);
675
676     rte_free(rx);
677 }
678
679 static inline void
680 dpdk_queue_flush__(struct netdev_dpdk *dev, int qid)
681 {
682     struct dpdk_tx_queue *txq = &dev->tx_q[qid];
683     uint32_t nb_tx = 0;
684
685     while (nb_tx != txq->count) {
686         uint32_t ret;
687
688         ret = rte_eth_tx_burst(dev->port_id, qid, txq->burst_pkts + nb_tx,
689                                txq->count - nb_tx);
690         if (!ret) {
691             break;
692         }
693
694         nb_tx += ret;
695     }
696
697     if (OVS_UNLIKELY(nb_tx != txq->count)) {
698         /* free buffers, which we couldn't transmit, one at a time (each
699          * packet could come from a different mempool) */
700         int i;
701
702         for (i = nb_tx; i < txq->count; i++) {
703             rte_pktmbuf_free_seg(txq->burst_pkts[i]);
704         }
705         ovs_mutex_lock(&dev->mutex);
706         dev->stats.tx_dropped += txq->count-nb_tx;
707         ovs_mutex_unlock(&dev->mutex);
708     }
709
710     txq->count = 0;
711     txq->tsc = rte_get_timer_cycles();
712 }
713
714 static inline void
715 dpdk_queue_flush(struct netdev_dpdk *dev, int qid)
716 {
717     struct dpdk_tx_queue *txq = &dev->tx_q[qid];
718
719     if (txq->count == 0) {
720         return;
721     }
722     dpdk_queue_flush__(dev, qid);
723 }
724
725 static int
726 netdev_dpdk_rxq_recv(struct netdev_rxq *rxq_, struct dpif_packet **packets,
727                      int *c)
728 {
729     struct netdev_rxq_dpdk *rx = netdev_rxq_dpdk_cast(rxq_);
730     struct netdev *netdev = rx->up.netdev;
731     struct netdev_dpdk *dev = netdev_dpdk_cast(netdev);
732     int nb_rx;
733
734     /* There is only one tx queue for this core.  Do not flush other
735      * queueus. */
736     if (rxq_->queue_id == rte_lcore_id()) {
737         dpdk_queue_flush(dev, rxq_->queue_id);
738     }
739
740     nb_rx = rte_eth_rx_burst(rx->port_id, rxq_->queue_id,
741                              (struct rte_mbuf **) packets,
742                              MIN((int)NETDEV_MAX_RX_BATCH,
743                                  (int)MAX_RX_QUEUE_LEN));
744     if (!nb_rx) {
745         return EAGAIN;
746     }
747
748     *c = nb_rx;
749
750     return 0;
751 }
752
753 inline static void
754 dpdk_queue_pkts(struct netdev_dpdk *dev, int qid,
755                struct rte_mbuf **pkts, int cnt)
756 {
757     struct dpdk_tx_queue *txq = &dev->tx_q[qid];
758     uint64_t diff_tsc;
759
760     int i = 0;
761
762     while (i < cnt) {
763         int freeslots = MAX_TX_QUEUE_LEN - txq->count;
764         int tocopy = MIN(freeslots, cnt-i);
765
766         memcpy(&txq->burst_pkts[txq->count], &pkts[i],
767                tocopy * sizeof (struct rte_mbuf *));
768
769         txq->count += tocopy;
770         i += tocopy;
771
772         if (txq->count == MAX_TX_QUEUE_LEN || txq->flush_tx) {
773             dpdk_queue_flush__(dev, qid);
774         }
775         diff_tsc = rte_get_timer_cycles() - txq->tsc;
776         if (diff_tsc >= DRAIN_TSC) {
777             dpdk_queue_flush__(dev, qid);
778         }
779     }
780 }
781
782 /* Tx function. Transmit packets indefinitely */
783 static void
784 dpdk_do_tx_copy(struct netdev *netdev, int qid, struct dpif_packet ** pkts,
785                 int cnt)
786     OVS_NO_THREAD_SAFETY_ANALYSIS
787 {
788     struct netdev_dpdk *dev = netdev_dpdk_cast(netdev);
789     struct rte_mbuf *mbufs[cnt];
790     int dropped = 0;
791     int newcnt = 0;
792     int i;
793
794     /* If we are on a non pmd thread we have to use the mempool mutex, because
795      * every non pmd thread shares the same mempool cache */
796
797     if (!thread_is_pmd()) {
798         ovs_mutex_lock(&nonpmd_mempool_mutex);
799     }
800
801     for (i = 0; i < cnt; i++) {
802         int size = ofpbuf_size(&pkts[i]->ofpbuf);
803
804         if (OVS_UNLIKELY(size > dev->max_packet_len)) {
805             VLOG_WARN_RL(&rl, "Too big size %d max_packet_len %d",
806                          (int)size , dev->max_packet_len);
807
808             dropped++;
809             continue;
810         }
811
812         mbufs[newcnt] = rte_pktmbuf_alloc(dev->dpdk_mp->mp);
813
814         if (!mbufs[newcnt]) {
815             dropped += cnt - i;
816             break;
817         }
818
819         /* We have to do a copy for now */
820         memcpy(mbufs[newcnt]->pkt.data, ofpbuf_data(&pkts[i]->ofpbuf), size);
821
822         rte_pktmbuf_data_len(mbufs[newcnt]) = size;
823         rte_pktmbuf_pkt_len(mbufs[newcnt]) = size;
824
825         newcnt++;
826     }
827
828     if (OVS_UNLIKELY(dropped)) {
829         ovs_mutex_lock(&dev->mutex);
830         dev->stats.tx_dropped += dropped;
831         ovs_mutex_unlock(&dev->mutex);
832     }
833
834     dpdk_queue_pkts(dev, qid, mbufs, newcnt);
835     dpdk_queue_flush(dev, qid);
836
837     if (!thread_is_pmd()) {
838         ovs_mutex_unlock(&nonpmd_mempool_mutex);
839     }
840 }
841
842 static int
843 netdev_dpdk_send(struct netdev *netdev, int qid, struct dpif_packet **pkts,
844                  int cnt, bool may_steal)
845 {
846     struct netdev_dpdk *dev = netdev_dpdk_cast(netdev);
847     int ret;
848     int i;
849
850     if (!may_steal || pkts[0]->ofpbuf.source != OFPBUF_DPDK) {
851         dpdk_do_tx_copy(netdev, qid, pkts, cnt);
852
853         if (may_steal) {
854             for (i = 0; i < cnt; i++) {
855                 dpif_packet_delete(pkts[i]);
856             }
857         }
858     } else {
859         int next_tx_idx = 0;
860         int dropped = 0;
861
862         for (i = 0; i < cnt; i++) {
863             int size = ofpbuf_size(&pkts[i]->ofpbuf);
864             if (OVS_UNLIKELY(size > dev->max_packet_len)) {
865                 if (next_tx_idx != i) {
866                     dpdk_queue_pkts(dev, qid,
867                                     (struct rte_mbuf **)&pkts[next_tx_idx],
868                                     i-next_tx_idx);
869                 }
870
871                 VLOG_WARN_RL(&rl, "Too big size %d max_packet_len %d",
872                              (int)size , dev->max_packet_len);
873
874                 dpif_packet_delete(pkts[i]);
875                 dropped++;
876                 next_tx_idx = i + 1;
877             }
878         }
879         if (next_tx_idx != cnt) {
880            dpdk_queue_pkts(dev, qid,
881                             (struct rte_mbuf **)&pkts[next_tx_idx],
882                             cnt-next_tx_idx);
883         }
884
885         if (OVS_UNLIKELY(dropped)) {
886             ovs_mutex_lock(&dev->mutex);
887             dev->stats.tx_dropped += dropped;
888             ovs_mutex_unlock(&dev->mutex);
889         }
890     }
891     ret = 0;
892
893     return ret;
894 }
895
896 static int
897 netdev_dpdk_set_etheraddr(struct netdev *netdev,
898                           const uint8_t mac[ETH_ADDR_LEN])
899 {
900     struct netdev_dpdk *dev = netdev_dpdk_cast(netdev);
901
902     ovs_mutex_lock(&dev->mutex);
903     if (!eth_addr_equals(dev->hwaddr, mac)) {
904         memcpy(dev->hwaddr, mac, ETH_ADDR_LEN);
905         netdev_change_seq_changed(netdev);
906     }
907     ovs_mutex_unlock(&dev->mutex);
908
909     return 0;
910 }
911
912 static int
913 netdev_dpdk_get_etheraddr(const struct netdev *netdev,
914                           uint8_t mac[ETH_ADDR_LEN])
915 {
916     struct netdev_dpdk *dev = netdev_dpdk_cast(netdev);
917
918     ovs_mutex_lock(&dev->mutex);
919     memcpy(mac, dev->hwaddr, ETH_ADDR_LEN);
920     ovs_mutex_unlock(&dev->mutex);
921
922     return 0;
923 }
924
925 static int
926 netdev_dpdk_get_mtu(const struct netdev *netdev, int *mtup)
927 {
928     struct netdev_dpdk *dev = netdev_dpdk_cast(netdev);
929
930     ovs_mutex_lock(&dev->mutex);
931     *mtup = dev->mtu;
932     ovs_mutex_unlock(&dev->mutex);
933
934     return 0;
935 }
936
937 static int
938 netdev_dpdk_set_mtu(const struct netdev *netdev, int mtu)
939 {
940     struct netdev_dpdk *dev = netdev_dpdk_cast(netdev);
941     int old_mtu, err;
942     struct dpdk_mp *old_mp;
943     struct dpdk_mp *mp;
944
945     ovs_mutex_lock(&dpdk_mutex);
946     ovs_mutex_lock(&dev->mutex);
947     if (dev->mtu == mtu) {
948         err = 0;
949         goto out;
950     }
951
952     mp = dpdk_mp_get(dev->socket_id, dev->mtu);
953     if (!mp) {
954         err = ENOMEM;
955         goto out;
956     }
957
958     rte_eth_dev_stop(dev->port_id);
959
960     old_mtu = dev->mtu;
961     old_mp = dev->dpdk_mp;
962     dev->dpdk_mp = mp;
963     dev->mtu = mtu;
964     dev->max_packet_len = MTU_TO_MAX_LEN(dev->mtu);
965
966     err = dpdk_eth_dev_init(dev);
967     if (err) {
968         dpdk_mp_put(mp);
969         dev->mtu = old_mtu;
970         dev->dpdk_mp = old_mp;
971         dev->max_packet_len = MTU_TO_MAX_LEN(dev->mtu);
972         dpdk_eth_dev_init(dev);
973         goto out;
974     }
975
976     dpdk_mp_put(old_mp);
977     netdev_change_seq_changed(netdev);
978 out:
979     ovs_mutex_unlock(&dev->mutex);
980     ovs_mutex_unlock(&dpdk_mutex);
981     return err;
982 }
983
984 static int
985 netdev_dpdk_get_carrier(const struct netdev *netdev_, bool *carrier);
986
987 static int
988 netdev_dpdk_get_stats(const struct netdev *netdev, struct netdev_stats *stats)
989 {
990     struct netdev_dpdk *dev = netdev_dpdk_cast(netdev);
991     struct rte_eth_stats rte_stats;
992     bool gg;
993
994     netdev_dpdk_get_carrier(netdev, &gg);
995     ovs_mutex_lock(&dev->mutex);
996     rte_eth_stats_get(dev->port_id, &rte_stats);
997
998     memset(stats, 0, sizeof(*stats));
999
1000     stats->rx_packets = rte_stats.ipackets;
1001     stats->tx_packets = rte_stats.opackets;
1002     stats->rx_bytes = rte_stats.ibytes;
1003     stats->tx_bytes = rte_stats.obytes;
1004     stats->rx_errors = rte_stats.ierrors;
1005     stats->tx_errors = rte_stats.oerrors;
1006     stats->multicast = rte_stats.imcasts;
1007
1008     stats->tx_dropped = dev->stats.tx_dropped;
1009     ovs_mutex_unlock(&dev->mutex);
1010
1011     return 0;
1012 }
1013
1014 static int
1015 netdev_dpdk_get_features(const struct netdev *netdev_,
1016                          enum netdev_features *current,
1017                          enum netdev_features *advertised OVS_UNUSED,
1018                          enum netdev_features *supported OVS_UNUSED,
1019                          enum netdev_features *peer OVS_UNUSED)
1020 {
1021     struct netdev_dpdk *dev = netdev_dpdk_cast(netdev_);
1022     struct rte_eth_link link;
1023
1024     ovs_mutex_lock(&dev->mutex);
1025     link = dev->link;
1026     ovs_mutex_unlock(&dev->mutex);
1027
1028     if (link.link_duplex == ETH_LINK_AUTONEG_DUPLEX) {
1029         if (link.link_speed == ETH_LINK_SPEED_AUTONEG) {
1030             *current = NETDEV_F_AUTONEG;
1031         }
1032     } else if (link.link_duplex == ETH_LINK_HALF_DUPLEX) {
1033         if (link.link_speed == ETH_LINK_SPEED_10) {
1034             *current = NETDEV_F_10MB_HD;
1035         }
1036         if (link.link_speed == ETH_LINK_SPEED_100) {
1037             *current = NETDEV_F_100MB_HD;
1038         }
1039         if (link.link_speed == ETH_LINK_SPEED_1000) {
1040             *current = NETDEV_F_1GB_HD;
1041         }
1042     } else if (link.link_duplex == ETH_LINK_FULL_DUPLEX) {
1043         if (link.link_speed == ETH_LINK_SPEED_10) {
1044             *current = NETDEV_F_10MB_FD;
1045         }
1046         if (link.link_speed == ETH_LINK_SPEED_100) {
1047             *current = NETDEV_F_100MB_FD;
1048         }
1049         if (link.link_speed == ETH_LINK_SPEED_1000) {
1050             *current = NETDEV_F_1GB_FD;
1051         }
1052         if (link.link_speed == ETH_LINK_SPEED_10000) {
1053             *current = NETDEV_F_10GB_FD;
1054         }
1055     }
1056
1057     return 0;
1058 }
1059
1060 static int
1061 netdev_dpdk_get_ifindex(const struct netdev *netdev)
1062 {
1063     struct netdev_dpdk *dev = netdev_dpdk_cast(netdev);
1064     int ifindex;
1065
1066     ovs_mutex_lock(&dev->mutex);
1067     ifindex = dev->port_id;
1068     ovs_mutex_unlock(&dev->mutex);
1069
1070     return ifindex;
1071 }
1072
1073 static int
1074 netdev_dpdk_get_carrier(const struct netdev *netdev_, bool *carrier)
1075 {
1076     struct netdev_dpdk *dev = netdev_dpdk_cast(netdev_);
1077
1078     ovs_mutex_lock(&dev->mutex);
1079     check_link_status(dev);
1080     *carrier = dev->link.link_status;
1081     ovs_mutex_unlock(&dev->mutex);
1082
1083     return 0;
1084 }
1085
1086 static long long int
1087 netdev_dpdk_get_carrier_resets(const struct netdev *netdev_)
1088 {
1089     struct netdev_dpdk *dev = netdev_dpdk_cast(netdev_);
1090     long long int carrier_resets;
1091
1092     ovs_mutex_lock(&dev->mutex);
1093     carrier_resets = dev->link_reset_cnt;
1094     ovs_mutex_unlock(&dev->mutex);
1095
1096     return carrier_resets;
1097 }
1098
1099 static int
1100 netdev_dpdk_set_miimon(struct netdev *netdev_ OVS_UNUSED,
1101                        long long int interval OVS_UNUSED)
1102 {
1103     return 0;
1104 }
1105
1106 static int
1107 netdev_dpdk_update_flags__(struct netdev_dpdk *dev,
1108                            enum netdev_flags off, enum netdev_flags on,
1109                            enum netdev_flags *old_flagsp) OVS_REQUIRES(dev->mutex)
1110 {
1111     int err;
1112
1113     if ((off | on) & ~(NETDEV_UP | NETDEV_PROMISC)) {
1114         return EINVAL;
1115     }
1116
1117     *old_flagsp = dev->flags;
1118     dev->flags |= on;
1119     dev->flags &= ~off;
1120
1121     if (dev->flags == *old_flagsp) {
1122         return 0;
1123     }
1124
1125     if (dev->flags & NETDEV_UP) {
1126         err = rte_eth_dev_start(dev->port_id);
1127         if (err)
1128             return -err;
1129     }
1130
1131     if (dev->flags & NETDEV_PROMISC) {
1132         rte_eth_promiscuous_enable(dev->port_id);
1133     }
1134
1135     if (!(dev->flags & NETDEV_UP)) {
1136         rte_eth_dev_stop(dev->port_id);
1137     }
1138
1139     return 0;
1140 }
1141
1142 static int
1143 netdev_dpdk_update_flags(struct netdev *netdev_,
1144                          enum netdev_flags off, enum netdev_flags on,
1145                          enum netdev_flags *old_flagsp)
1146 {
1147     struct netdev_dpdk *netdev = netdev_dpdk_cast(netdev_);
1148     int error;
1149
1150     ovs_mutex_lock(&netdev->mutex);
1151     error = netdev_dpdk_update_flags__(netdev, off, on, old_flagsp);
1152     ovs_mutex_unlock(&netdev->mutex);
1153
1154     return error;
1155 }
1156
1157 static int
1158 netdev_dpdk_get_status(const struct netdev *netdev_, struct smap *args)
1159 {
1160     struct netdev_dpdk *dev = netdev_dpdk_cast(netdev_);
1161     struct rte_eth_dev_info dev_info;
1162
1163     if (dev->port_id < 0)
1164         return ENODEV;
1165
1166     ovs_mutex_lock(&dev->mutex);
1167     rte_eth_dev_info_get(dev->port_id, &dev_info);
1168     ovs_mutex_unlock(&dev->mutex);
1169
1170     smap_add_format(args, "driver_name", "%s", dev_info.driver_name);
1171
1172     smap_add_format(args, "port_no", "%d", dev->port_id);
1173     smap_add_format(args, "numa_id", "%d", rte_eth_dev_socket_id(dev->port_id));
1174     smap_add_format(args, "driver_name", "%s", dev_info.driver_name);
1175     smap_add_format(args, "min_rx_bufsize", "%u", dev_info.min_rx_bufsize);
1176     smap_add_format(args, "max_rx_pktlen", "%u", dev_info.max_rx_pktlen);
1177     smap_add_format(args, "max_rx_queues", "%u", dev_info.max_rx_queues);
1178     smap_add_format(args, "max_tx_queues", "%u", dev_info.max_tx_queues);
1179     smap_add_format(args, "max_mac_addrs", "%u", dev_info.max_mac_addrs);
1180     smap_add_format(args, "max_hash_mac_addrs", "%u", dev_info.max_hash_mac_addrs);
1181     smap_add_format(args, "max_vfs", "%u", dev_info.max_vfs);
1182     smap_add_format(args, "max_vmdq_pools", "%u", dev_info.max_vmdq_pools);
1183
1184     smap_add_format(args, "pci-vendor_id", "0x%u", dev_info.pci_dev->id.vendor_id);
1185     smap_add_format(args, "pci-device_id", "0x%x", dev_info.pci_dev->id.device_id);
1186
1187     return 0;
1188 }
1189
1190 static void
1191 netdev_dpdk_set_admin_state__(struct netdev_dpdk *dev, bool admin_state)
1192     OVS_REQUIRES(dev->mutex)
1193 {
1194     enum netdev_flags old_flags;
1195
1196     if (admin_state) {
1197         netdev_dpdk_update_flags__(dev, 0, NETDEV_UP, &old_flags);
1198     } else {
1199         netdev_dpdk_update_flags__(dev, NETDEV_UP, 0, &old_flags);
1200     }
1201 }
1202
1203 static void
1204 netdev_dpdk_set_admin_state(struct unixctl_conn *conn, int argc,
1205                             const char *argv[], void *aux OVS_UNUSED)
1206 {
1207     bool up;
1208
1209     if (!strcasecmp(argv[argc - 1], "up")) {
1210         up = true;
1211     } else if ( !strcasecmp(argv[argc - 1], "down")) {
1212         up = false;
1213     } else {
1214         unixctl_command_reply_error(conn, "Invalid Admin State");
1215         return;
1216     }
1217
1218     if (argc > 2) {
1219         struct netdev *netdev = netdev_from_name(argv[1]);
1220         if (netdev && is_dpdk_class(netdev->netdev_class)) {
1221             struct netdev_dpdk *dpdk_dev = netdev_dpdk_cast(netdev);
1222
1223             ovs_mutex_lock(&dpdk_dev->mutex);
1224             netdev_dpdk_set_admin_state__(dpdk_dev, up);
1225             ovs_mutex_unlock(&dpdk_dev->mutex);
1226
1227             netdev_close(netdev);
1228         } else {
1229             unixctl_command_reply_error(conn, "Not a DPDK Interface");
1230             netdev_close(netdev);
1231             return;
1232         }
1233     } else {
1234         struct netdev_dpdk *netdev;
1235
1236         ovs_mutex_lock(&dpdk_mutex);
1237         LIST_FOR_EACH (netdev, list_node, &dpdk_list) {
1238             ovs_mutex_lock(&netdev->mutex);
1239             netdev_dpdk_set_admin_state__(netdev, up);
1240             ovs_mutex_unlock(&netdev->mutex);
1241         }
1242         ovs_mutex_unlock(&dpdk_mutex);
1243     }
1244     unixctl_command_reply(conn, "OK");
1245 }
1246
1247 static void
1248 dpdk_common_init(void)
1249 {
1250     unixctl_command_register("netdev-dpdk/set-admin-state",
1251                              "[netdev] up|down", 1, 2,
1252                              netdev_dpdk_set_admin_state, NULL);
1253
1254     ovs_thread_create("dpdk_watchdog", dpdk_watchdog, NULL);
1255 }
1256
1257 static int
1258 dpdk_class_init(void)
1259 {
1260     int result;
1261
1262     result = rte_eal_pci_probe();
1263     if (result) {
1264         VLOG_ERR("Cannot probe PCI");
1265         return -result;
1266     }
1267
1268     VLOG_INFO("Ethernet Device Count: %d", (int)rte_eth_dev_count());
1269
1270     return 0;
1271 }
1272
1273 /* Client Rings */
1274
1275 static int
1276 dpdk_ring_create(const char dev_name[], unsigned int port_no,
1277                  unsigned int *eth_port_id)
1278 {
1279     struct dpdk_ring *ivshmem;
1280     char ring_name[10];
1281     int err;
1282
1283     ivshmem = dpdk_rte_mzalloc(sizeof *ivshmem);
1284     if (ivshmem == NULL) {
1285         return ENOMEM;
1286     }
1287
1288     err = snprintf(ring_name, 10, "%s_tx", dev_name);
1289     if (err < 0) {
1290         return -err;
1291     }
1292
1293     ivshmem->cring_tx = rte_ring_create(ring_name, DPDK_RING_SIZE, SOCKET0, 0);
1294     if (ivshmem->cring_tx == NULL) {
1295         rte_free(ivshmem);
1296         return ENOMEM;
1297     }
1298
1299     err = snprintf(ring_name, 10, "%s_rx", dev_name);
1300     if (err < 0) {
1301         return -err;
1302     }
1303
1304     ivshmem->cring_rx = rte_ring_create(ring_name, DPDK_RING_SIZE, SOCKET0, 0);
1305     if (ivshmem->cring_rx == NULL) {
1306         rte_free(ivshmem);
1307         return ENOMEM;
1308     }
1309
1310     err = rte_eth_from_rings(dev_name, &ivshmem->cring_rx, 1,
1311                              &ivshmem->cring_tx, 1, SOCKET0);
1312
1313     if (err < 0) {
1314         rte_free(ivshmem);
1315         return ENODEV;
1316     }
1317
1318     ivshmem->user_port_id = port_no;
1319     ivshmem->eth_port_id = rte_eth_dev_count() - 1;
1320     list_push_back(&dpdk_ring_list, &ivshmem->list_node);
1321
1322     *eth_port_id = ivshmem->eth_port_id;
1323     return 0;
1324 }
1325
1326 static int
1327 dpdk_ring_open(const char dev_name[], unsigned int *eth_port_id) OVS_REQUIRES(dpdk_mutex)
1328 {
1329     struct dpdk_ring *ivshmem;
1330     unsigned int port_no;
1331     int err = 0;
1332
1333     /* Names always start with "dpdkr" */
1334     err = dpdk_dev_parse_name(dev_name, "dpdkr", &port_no);
1335     if (err) {
1336         return err;
1337     }
1338
1339     /* look through our list to find the device */
1340     LIST_FOR_EACH (ivshmem, list_node, &dpdk_ring_list) {
1341          if (ivshmem->user_port_id == port_no) {
1342             VLOG_INFO("Found dpdk ring device %s:\n", dev_name);
1343             *eth_port_id = ivshmem->eth_port_id; /* really all that is needed */
1344             return 0;
1345          }
1346     }
1347     /* Need to create the device rings */
1348     return dpdk_ring_create(dev_name, port_no, eth_port_id);
1349 }
1350
1351 static int
1352 netdev_dpdk_ring_construct(struct netdev *netdev)
1353 {
1354     unsigned int port_no = 0;
1355     int err = 0;
1356
1357     if (rte_eal_init_ret) {
1358         return rte_eal_init_ret;
1359     }
1360
1361     ovs_mutex_lock(&dpdk_mutex);
1362
1363     err = dpdk_ring_open(netdev->name, &port_no);
1364     if (err) {
1365         goto unlock_dpdk;
1366     }
1367
1368     err = netdev_dpdk_init(netdev, port_no);
1369
1370 unlock_dpdk:
1371     ovs_mutex_unlock(&dpdk_mutex);
1372     return err;
1373 }
1374
1375 #define NETDEV_DPDK_CLASS(NAME, INIT, CONSTRUCT, MULTIQ)      \
1376 {                                                             \
1377     NAME,                                                     \
1378     INIT,                       /* init */                    \
1379     NULL,                       /* netdev_dpdk_run */         \
1380     NULL,                       /* netdev_dpdk_wait */        \
1381                                                               \
1382     netdev_dpdk_alloc,                                        \
1383     CONSTRUCT,                                                \
1384     netdev_dpdk_destruct,                                     \
1385     netdev_dpdk_dealloc,                                      \
1386     netdev_dpdk_get_config,                                   \
1387     NULL,                       /* netdev_dpdk_set_config */  \
1388     NULL,                       /* get_tunnel_config */       \
1389     netdev_dpdk_get_numa_id,    /* get_numa_id */             \
1390     MULTIQ,                     /* set_multiq */              \
1391                                                               \
1392     netdev_dpdk_send,           /* send */                    \
1393     NULL,                       /* send_wait */               \
1394                                                               \
1395     netdev_dpdk_set_etheraddr,                                \
1396     netdev_dpdk_get_etheraddr,                                \
1397     netdev_dpdk_get_mtu,                                      \
1398     netdev_dpdk_set_mtu,                                      \
1399     netdev_dpdk_get_ifindex,                                  \
1400     netdev_dpdk_get_carrier,                                  \
1401     netdev_dpdk_get_carrier_resets,                           \
1402     netdev_dpdk_set_miimon,                                   \
1403     netdev_dpdk_get_stats,                                    \
1404     netdev_dpdk_get_features,                                 \
1405     NULL,                       /* set_advertisements */      \
1406                                                               \
1407     NULL,                       /* set_policing */            \
1408     NULL,                       /* get_qos_types */           \
1409     NULL,                       /* get_qos_capabilities */    \
1410     NULL,                       /* get_qos */                 \
1411     NULL,                       /* set_qos */                 \
1412     NULL,                       /* get_queue */               \
1413     NULL,                       /* set_queue */               \
1414     NULL,                       /* delete_queue */            \
1415     NULL,                       /* get_queue_stats */         \
1416     NULL,                       /* queue_dump_start */        \
1417     NULL,                       /* queue_dump_next */         \
1418     NULL,                       /* queue_dump_done */         \
1419     NULL,                       /* dump_queue_stats */        \
1420                                                               \
1421     NULL,                       /* get_in4 */                 \
1422     NULL,                       /* set_in4 */                 \
1423     NULL,                       /* get_in6 */                 \
1424     NULL,                       /* add_router */              \
1425     NULL,                       /* get_next_hop */            \
1426     netdev_dpdk_get_status,                                   \
1427     NULL,                       /* arp_lookup */              \
1428                                                               \
1429     netdev_dpdk_update_flags,                                 \
1430                                                               \
1431     netdev_dpdk_rxq_alloc,                                    \
1432     netdev_dpdk_rxq_construct,                                \
1433     netdev_dpdk_rxq_destruct,                                 \
1434     netdev_dpdk_rxq_dealloc,                                  \
1435     netdev_dpdk_rxq_recv,                                     \
1436     NULL,                       /* rx_wait */                 \
1437     NULL,                       /* rxq_drain */               \
1438 }
1439
1440 int
1441 dpdk_init(int argc, char **argv)
1442 {
1443     int result;
1444
1445     if (argc < 2 || strcmp(argv[1], "--dpdk"))
1446         return 0;
1447
1448     /* Make sure program name passed to rte_eal_init() is vswitchd. */
1449     argv[1] = argv[0];
1450
1451     argc--;
1452     argv++;
1453
1454     /* Make sure things are initialized ... */
1455     result = rte_eal_init(argc, argv);
1456     if (result < 0) {
1457         ovs_abort(result, "Cannot init EAL\n");
1458     }
1459
1460     rte_memzone_dump(stdout);
1461     rte_eal_init_ret = 0;
1462
1463     if (argc > result) {
1464         argv[result] = argv[0];
1465     }
1466
1467     /* We are called from the main thread here */
1468     thread_set_nonpmd();
1469
1470     return result + 1;
1471 }
1472
1473 const struct netdev_class dpdk_class =
1474     NETDEV_DPDK_CLASS(
1475         "dpdk",
1476         dpdk_class_init,
1477         netdev_dpdk_construct,
1478         netdev_dpdk_set_multiq);
1479
1480 const struct netdev_class dpdk_ring_class =
1481     NETDEV_DPDK_CLASS(
1482         "dpdkr",
1483         NULL,
1484         netdev_dpdk_ring_construct,
1485         NULL);
1486
1487 void
1488 netdev_dpdk_register(void)
1489 {
1490     static struct ovsthread_once once = OVSTHREAD_ONCE_INITIALIZER;
1491
1492     if (rte_eal_init_ret) {
1493         return;
1494     }
1495
1496     if (ovsthread_once_start(&once)) {
1497         dpdk_common_init();
1498         netdev_register_provider(&dpdk_class);
1499         netdev_register_provider(&dpdk_ring_class);
1500         ovsthread_once_done(&once);
1501     }
1502 }
1503
1504 int
1505 pmd_thread_setaffinity_cpu(int cpu)
1506 {
1507     cpu_set_t cpuset;
1508     int err;
1509
1510     CPU_ZERO(&cpuset);
1511     CPU_SET(cpu, &cpuset);
1512     err = pthread_setaffinity_np(pthread_self(), sizeof(cpu_set_t), &cpuset);
1513     if (err) {
1514         VLOG_ERR("Thread affinity error %d",err);
1515         return err;
1516     }
1517     /* lcore_id 0 is reseved for use by non pmd threads. */
1518     ovs_assert(cpu);
1519     RTE_PER_LCORE(_lcore_id) = cpu;
1520
1521     return 0;
1522 }
1523
1524 void
1525 thread_set_nonpmd(void)
1526 {
1527     /* We have to use 0 to allow non pmd threads to perform certain DPDK
1528      * operations, like rte_eth_dev_configure(). */
1529     RTE_PER_LCORE(_lcore_id) = 0;
1530 }
1531
1532 static bool
1533 thread_is_pmd(void)
1534 {
1535     return rte_lcore_id() != 0;
1536 }