net/tap: fix build with old kernels
[dpdk.git] / drivers / net / tap / rte_eth_tap.c
1 /*-
2  *   BSD LICENSE
3  *
4  *   Copyright(c) 2016 Intel Corporation. All rights reserved.
5  *   All rights reserved.
6  *
7  *   Redistribution and use in source and binary forms, with or without
8  *   modification, are permitted provided that the following conditions
9  *   are met:
10  *
11  *     * Redistributions of source code must retain the above copyright
12  *       notice, this list of conditions and the following disclaimer.
13  *     * Redistributions in binary form must reproduce the above copyright
14  *       notice, this list of conditions and the following disclaimer in
15  *       the documentation and/or other materials provided with the
16  *       distribution.
17  *     * Neither the name of Intel Corporation nor the names of its
18  *       contributors may be used to endorse or promote products derived
19  *       from this software without specific prior written permission.
20  *
21  *   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
22  *   "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
23  *   LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
24  *   A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
25  *   OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
26  *   SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
27  *   LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
28  *   DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
29  *   THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
30  *   (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
31  *   OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
32  */
33
34 #include <rte_mbuf.h>
35 #include <rte_ethdev.h>
36 #include <rte_malloc.h>
37 #include <rte_vdev.h>
38 #include <rte_kvargs.h>
39
40 #include <sys/types.h>
41 #include <sys/stat.h>
42 #include <sys/socket.h>
43 #include <sys/ioctl.h>
44 #include <sys/mman.h>
45 #include <unistd.h>
46 #include <poll.h>
47 #include <arpa/inet.h>
48 #include <linux/if.h>
49 #include <linux/if_tun.h>
50 #include <linux/if_ether.h>
51 #include <fcntl.h>
52
53 /* Linux based path to the TUN device */
54 #define TUN_TAP_DEV_PATH        "/dev/net/tun"
55 #define DEFAULT_TAP_NAME        "dtap"
56
57 #define ETH_TAP_IFACE_ARG       "iface"
58 #define ETH_TAP_SPEED_ARG       "speed"
59
60 #define RTE_PMD_TAP_MAX_QUEUES  16
61
62 static struct rte_vdev_driver pmd_tap_drv;
63
64 static const char *valid_arguments[] = {
65         ETH_TAP_IFACE_ARG,
66         ETH_TAP_SPEED_ARG,
67         NULL
68 };
69
70 static int tap_unit;
71
72 static struct rte_eth_link pmd_link = {
73         .link_speed = ETH_SPEED_NUM_10G,
74         .link_duplex = ETH_LINK_FULL_DUPLEX,
75         .link_status = ETH_LINK_DOWN,
76         .link_autoneg = ETH_LINK_SPEED_AUTONEG
77 };
78
79 struct pkt_stats {
80         uint64_t opackets;              /* Number of output packets */
81         uint64_t ipackets;              /* Number of input packets */
82         uint64_t obytes;                /* Number of bytes on output */
83         uint64_t ibytes;                /* Number of bytes on input */
84         uint64_t errs;                  /* Number of error packets */
85 };
86
87 struct rx_queue {
88         struct rte_mempool *mp;         /* Mempool for RX packets */
89         uint16_t in_port;               /* Port ID */
90         int fd;
91
92         struct pkt_stats stats;         /* Stats for this RX queue */
93 };
94
95 struct tx_queue {
96         int fd;
97         struct pkt_stats stats;         /* Stats for this TX queue */
98 };
99
100 struct pmd_internals {
101         char name[RTE_ETH_NAME_MAX_LEN];        /* Internal Tap device name */
102         uint16_t nb_queues;             /* Number of queues supported */
103         struct ether_addr eth_addr;     /* Mac address of the device port */
104
105         int if_index;                   /* IF_INDEX for the port */
106         int fds[RTE_PMD_TAP_MAX_QUEUES]; /* List of all file descriptors */
107
108         struct rx_queue rxq[RTE_PMD_TAP_MAX_QUEUES];    /* List of RX queues */
109         struct tx_queue txq[RTE_PMD_TAP_MAX_QUEUES];    /* List of TX queues */
110 };
111
112 /* Tun/Tap allocation routine
113  *
114  * name is the number of the interface to use, unless NULL to take the host
115  * supplied name.
116  */
117 static int
118 tun_alloc(char *name)
119 {
120         struct ifreq ifr;
121         unsigned int features;
122         int fd;
123
124         memset(&ifr, 0, sizeof(struct ifreq));
125
126         ifr.ifr_flags = IFF_TAP | IFF_NO_PI;
127         if (name && name[0])
128                 strncpy(ifr.ifr_name, name, IFNAMSIZ);
129
130         fd = open(TUN_TAP_DEV_PATH, O_RDWR);
131         if (fd < 0) {
132                 RTE_LOG(ERR, PMD, "Unable to create TAP interface");
133                 goto error;
134         }
135
136         /* Grab the TUN features to verify we can work */
137         if (ioctl(fd, TUNGETFEATURES, &features) < 0) {
138                 RTE_LOG(ERR, PMD, "Unable to get TUN/TAP features\n");
139                 goto error;
140         }
141         RTE_LOG(DEBUG, PMD, "TUN/TAP Features %08x\n", features);
142
143 #ifdef IFF_MULTI_QUEUE
144         if (!(features & IFF_MULTI_QUEUE) && (RTE_PMD_TAP_MAX_QUEUES > 1)) {
145                 RTE_LOG(DEBUG, PMD, "TUN/TAP device only one queue\n");
146                 goto error;
147         } else if ((features & IFF_ONE_QUEUE) &&
148                         (RTE_PMD_TAP_MAX_QUEUES == 1)) {
149                 ifr.ifr_flags |= IFF_ONE_QUEUE;
150                 RTE_LOG(DEBUG, PMD, "Single queue only support\n");
151         } else {
152                 ifr.ifr_flags |= IFF_MULTI_QUEUE;
153                 RTE_LOG(DEBUG, PMD, "Multi-queue support for %d queues\n",
154                         RTE_PMD_TAP_MAX_QUEUES);
155         }
156 #else
157         if (RTE_PMD_TAP_MAX_QUEUES > 1) {
158                 RTE_LOG(DEBUG, PMD, "TUN/TAP device only one queue\n");
159                 goto error;
160         } else {
161                 ifr.ifr_flags |= IFF_ONE_QUEUE;
162                 RTE_LOG(DEBUG, PMD, "Single queue only support\n");
163         }
164 #endif
165
166         /* Set the TUN/TAP configuration and get the name if needed */
167         if (ioctl(fd, TUNSETIFF, (void *)&ifr) < 0) {
168                 RTE_LOG(ERR, PMD, "Unable to set TUNSETIFF for %s\n",
169                         ifr.ifr_name);
170                 perror("TUNSETIFF");
171                 goto error;
172         }
173
174         /* Always set the file descriptor to non-blocking */
175         if (fcntl(fd, F_SETFL, O_NONBLOCK) < 0) {
176                 RTE_LOG(ERR, PMD, "Unable to set to nonblocking\n");
177                 perror("F_SETFL, NONBLOCK");
178                 goto error;
179         }
180
181         /* If the name is different that new name as default */
182         if (name && strcmp(name, ifr.ifr_name))
183                 snprintf(name, RTE_ETH_NAME_MAX_LEN - 1, "%s", ifr.ifr_name);
184
185         return fd;
186
187 error:
188         if (fd > 0)
189                 close(fd);
190         return -1;
191 }
192
193 /* Callback to handle the rx burst of packets to the correct interface and
194  * file descriptor(s) in a multi-queue setup.
195  */
196 static uint16_t
197 pmd_rx_burst(void *queue, struct rte_mbuf **bufs, uint16_t nb_pkts)
198 {
199         int len;
200         struct rte_mbuf *mbuf;
201         struct rx_queue *rxq = queue;
202         uint16_t num_rx;
203         unsigned long num_rx_bytes = 0;
204
205         for (num_rx = 0; num_rx < nb_pkts; ) {
206                 /* allocate the next mbuf */
207                 mbuf = rte_pktmbuf_alloc(rxq->mp);
208                 if (unlikely(!mbuf)) {
209                         RTE_LOG(WARNING, PMD, "Unable to allocate mbuf\n");
210                         break;
211                 }
212
213                 len = read(rxq->fd, rte_pktmbuf_mtod(mbuf, char *),
214                            rte_pktmbuf_tailroom(mbuf));
215                 if (len <= 0) {
216                         rte_pktmbuf_free(mbuf);
217                         break;
218                 }
219
220                 mbuf->data_len = len;
221                 mbuf->pkt_len = len;
222                 mbuf->port = rxq->in_port;
223
224                 /* account for the receive frame */
225                 bufs[num_rx++] = mbuf;
226                 num_rx_bytes += mbuf->pkt_len;
227         }
228         rxq->stats.ipackets += num_rx;
229         rxq->stats.ibytes += num_rx_bytes;
230
231         return num_rx;
232 }
233
234 /* Callback to handle sending packets from the tap interface
235  */
236 static uint16_t
237 pmd_tx_burst(void *queue, struct rte_mbuf **bufs, uint16_t nb_pkts)
238 {
239         struct rte_mbuf *mbuf;
240         struct tx_queue *txq = queue;
241         struct pollfd pfd;
242         uint16_t num_tx = 0;
243         unsigned long num_tx_bytes = 0;
244         int i, n;
245
246         if (unlikely(nb_pkts == 0))
247                 return 0;
248
249         pfd.events = POLLOUT;
250         pfd.fd = txq->fd;
251         for (i = 0; i < nb_pkts; i++) {
252                 n = poll(&pfd, 1, 0);
253
254                 if (n <= 0)
255                         break;
256
257                 if (pfd.revents & POLLOUT) {
258                         /* copy the tx frame data */
259                         mbuf = bufs[num_tx];
260                         n = write(pfd.fd, rte_pktmbuf_mtod(mbuf, void*),
261                                   rte_pktmbuf_pkt_len(mbuf));
262                         if (n <= 0)
263                                 break;
264
265                         num_tx++;
266                         num_tx_bytes += mbuf->pkt_len;
267                         rte_pktmbuf_free(mbuf);
268                 }
269         }
270
271         txq->stats.opackets += num_tx;
272         txq->stats.errs += nb_pkts - num_tx;
273         txq->stats.obytes += num_tx_bytes;
274
275         return num_tx;
276 }
277
278 static int
279 tap_dev_start(struct rte_eth_dev *dev)
280 {
281         /* Force the Link up */
282         dev->data->dev_link.link_status = ETH_LINK_UP;
283
284         return 0;
285 }
286
287 /* This function gets called when the current port gets stopped.
288  */
289 static void
290 tap_dev_stop(struct rte_eth_dev *dev)
291 {
292         int i;
293         struct pmd_internals *internals = dev->data->dev_private;
294
295         for (i = 0; i < internals->nb_queues; i++)
296                 if (internals->fds[i] != -1)
297                         close(internals->fds[i]);
298
299         dev->data->dev_link.link_status = ETH_LINK_DOWN;
300 }
301
302 static int
303 tap_dev_configure(struct rte_eth_dev *dev __rte_unused)
304 {
305         return 0;
306 }
307
308 static void
309 tap_dev_info(struct rte_eth_dev *dev, struct rte_eth_dev_info *dev_info)
310 {
311         struct pmd_internals *internals = dev->data->dev_private;
312
313         dev_info->if_index = internals->if_index;
314         dev_info->max_mac_addrs = 1;
315         dev_info->max_rx_pktlen = (uint32_t)ETHER_MAX_VLAN_FRAME_LEN;
316         dev_info->max_rx_queues = internals->nb_queues;
317         dev_info->max_tx_queues = internals->nb_queues;
318         dev_info->min_rx_bufsize = 0;
319         dev_info->pci_dev = NULL;
320 }
321
322 static void
323 tap_stats_get(struct rte_eth_dev *dev, struct rte_eth_stats *tap_stats)
324 {
325         unsigned int i, imax;
326         unsigned long rx_total = 0, tx_total = 0, tx_err_total = 0;
327         unsigned long rx_bytes_total = 0, tx_bytes_total = 0;
328         const struct pmd_internals *pmd = dev->data->dev_private;
329
330         imax = (pmd->nb_queues < RTE_ETHDEV_QUEUE_STAT_CNTRS) ?
331                 pmd->nb_queues : RTE_ETHDEV_QUEUE_STAT_CNTRS;
332
333         for (i = 0; i < imax; i++) {
334                 tap_stats->q_ipackets[i] = pmd->rxq[i].stats.ipackets;
335                 tap_stats->q_ibytes[i] = pmd->rxq[i].stats.ibytes;
336                 rx_total += tap_stats->q_ipackets[i];
337                 rx_bytes_total += tap_stats->q_ibytes[i];
338         }
339
340         for (i = 0; i < imax; i++) {
341                 tap_stats->q_opackets[i] = pmd->txq[i].stats.opackets;
342                 tap_stats->q_errors[i] = pmd->txq[i].stats.errs;
343                 tap_stats->q_obytes[i] = pmd->txq[i].stats.obytes;
344                 tx_total += tap_stats->q_opackets[i];
345                 tx_err_total += tap_stats->q_errors[i];
346                 tx_bytes_total += tap_stats->q_obytes[i];
347         }
348
349         tap_stats->ipackets = rx_total;
350         tap_stats->ibytes = rx_bytes_total;
351         tap_stats->opackets = tx_total;
352         tap_stats->oerrors = tx_err_total;
353         tap_stats->obytes = tx_bytes_total;
354 }
355
356 static void
357 tap_stats_reset(struct rte_eth_dev *dev)
358 {
359         int i;
360         struct pmd_internals *pmd = dev->data->dev_private;
361
362         for (i = 0; i < pmd->nb_queues; i++) {
363                 pmd->rxq[i].stats.ipackets = 0;
364                 pmd->rxq[i].stats.ibytes = 0;
365         }
366
367         for (i = 0; i < pmd->nb_queues; i++) {
368                 pmd->txq[i].stats.opackets = 0;
369                 pmd->txq[i].stats.errs = 0;
370                 pmd->txq[i].stats.obytes = 0;
371         }
372 }
373
374 static void
375 tap_dev_close(struct rte_eth_dev *dev __rte_unused)
376 {
377 }
378
379 static void
380 tap_rx_queue_release(void *queue)
381 {
382         struct rx_queue *rxq = queue;
383
384         if (rxq && (rxq->fd > 0)) {
385                 close(rxq->fd);
386                 rxq->fd = -1;
387         }
388 }
389
390 static void
391 tap_tx_queue_release(void *queue)
392 {
393         struct tx_queue *txq = queue;
394
395         if (txq && (txq->fd > 0)) {
396                 close(txq->fd);
397                 txq->fd = -1;
398         }
399 }
400
401 static int
402 tap_link_update(struct rte_eth_dev *dev __rte_unused,
403                 int wait_to_complete __rte_unused)
404 {
405         return 0;
406 }
407
408 static int
409 tap_setup_queue(struct rte_eth_dev *dev,
410                 struct pmd_internals *internals,
411                 uint16_t qid)
412 {
413         struct rx_queue *rx = &internals->rxq[qid];
414         struct tx_queue *tx = &internals->txq[qid];
415         int fd;
416
417         fd = rx->fd;
418         if (fd < 0) {
419                 fd = tx->fd;
420                 if (fd < 0) {
421                         RTE_LOG(INFO, PMD, "Add queue to TAP %s for qid %d\n",
422                                 dev->data->name, qid);
423                         fd = tun_alloc(dev->data->name);
424                         if (fd < 0) {
425                                 RTE_LOG(ERR, PMD, "tun_alloc(%s) failed\n",
426                                         dev->data->name);
427                                 return -1;
428                         }
429                 }
430         }
431         dev->data->rx_queues[qid] = rx;
432         dev->data->tx_queues[qid] = tx;
433
434         rx->fd = fd;
435         tx->fd = fd;
436
437         return fd;
438 }
439
440 static int
441 tap_rx_queue_setup(struct rte_eth_dev *dev,
442                    uint16_t rx_queue_id,
443                    uint16_t nb_rx_desc __rte_unused,
444                    unsigned int socket_id __rte_unused,
445                    const struct rte_eth_rxconf *rx_conf __rte_unused,
446                    struct rte_mempool *mp)
447 {
448         struct pmd_internals *internals = dev->data->dev_private;
449         uint16_t buf_size;
450         int fd;
451
452         if ((rx_queue_id >= internals->nb_queues) || !mp) {
453                 RTE_LOG(ERR, PMD, "nb_queues %d mp %p\n",
454                         internals->nb_queues, mp);
455                 return -1;
456         }
457
458         internals->rxq[rx_queue_id].mp = mp;
459         internals->rxq[rx_queue_id].in_port = dev->data->port_id;
460
461         /* Now get the space available for data in the mbuf */
462         buf_size = (uint16_t)(rte_pktmbuf_data_room_size(mp) -
463                                 RTE_PKTMBUF_HEADROOM);
464
465         if (buf_size < ETH_FRAME_LEN) {
466                 RTE_LOG(ERR, PMD,
467                         "%s: %d bytes will not fit in mbuf (%d bytes)\n",
468                         dev->data->name, ETH_FRAME_LEN, buf_size);
469                 return -ENOMEM;
470         }
471
472         fd = tap_setup_queue(dev, internals, rx_queue_id);
473         if (fd == -1)
474                 return -1;
475
476         internals->fds[rx_queue_id] = fd;
477         RTE_LOG(INFO, PMD, "RX TAP device name %s, qid %d on fd %d\n",
478                 dev->data->name, rx_queue_id, internals->rxq[rx_queue_id].fd);
479
480         return 0;
481 }
482
483 static int
484 tap_tx_queue_setup(struct rte_eth_dev *dev,
485                    uint16_t tx_queue_id,
486                    uint16_t nb_tx_desc __rte_unused,
487                    unsigned int socket_id __rte_unused,
488                    const struct rte_eth_txconf *tx_conf __rte_unused)
489 {
490         struct pmd_internals *internals = dev->data->dev_private;
491         int ret;
492
493         if (tx_queue_id >= internals->nb_queues)
494                 return -1;
495
496         ret = tap_setup_queue(dev, internals, tx_queue_id);
497         if (ret == -1)
498                 return -1;
499
500         RTE_LOG(INFO, PMD, "TX TAP device name %s, qid %d on fd %d\n",
501                 dev->data->name, tx_queue_id, internals->txq[tx_queue_id].fd);
502
503         return 0;
504 }
505
506 static const struct eth_dev_ops ops = {
507         .dev_start              = tap_dev_start,
508         .dev_stop               = tap_dev_stop,
509         .dev_close              = tap_dev_close,
510         .dev_configure          = tap_dev_configure,
511         .dev_infos_get          = tap_dev_info,
512         .rx_queue_setup         = tap_rx_queue_setup,
513         .tx_queue_setup         = tap_tx_queue_setup,
514         .rx_queue_release       = tap_rx_queue_release,
515         .tx_queue_release       = tap_tx_queue_release,
516         .link_update            = tap_link_update,
517         .stats_get              = tap_stats_get,
518         .stats_reset            = tap_stats_reset,
519 };
520
521 static int
522 pmd_mac_address(int fd, struct rte_eth_dev *dev, struct ether_addr *addr)
523 {
524         struct ifreq ifr;
525
526         if ((fd <= 0) || !dev || !addr)
527                 return -1;
528
529         memset(&ifr, 0, sizeof(ifr));
530
531         if (ioctl(fd, SIOCGIFHWADDR, &ifr) == -1) {
532                 RTE_LOG(ERR, PMD, "ioctl failed (SIOCGIFHWADDR) (%s)\n",
533                         ifr.ifr_name);
534                 return -1;
535         }
536
537         /* Set the host based MAC address to this special MAC format */
538         ifr.ifr_hwaddr.sa_data[0] = 'T';
539         ifr.ifr_hwaddr.sa_data[1] = 'a';
540         ifr.ifr_hwaddr.sa_data[2] = 'p';
541         ifr.ifr_hwaddr.sa_data[3] = '-';
542         ifr.ifr_hwaddr.sa_data[4] = dev->data->port_id;
543         ifr.ifr_hwaddr.sa_data[5] = dev->data->numa_node;
544         if (ioctl(fd, SIOCSIFHWADDR, &ifr) == -1) {
545                 RTE_LOG(ERR, PMD, "%s: ioctl failed (SIOCSIFHWADDR) (%s)\n",
546                         dev->data->name, ifr.ifr_name);
547                 return -1;
548         }
549
550         /* Set the local application MAC address, needs to be different then
551          * the host based MAC address.
552          */
553         ifr.ifr_hwaddr.sa_data[0] = 'd';
554         ifr.ifr_hwaddr.sa_data[1] = 'n';
555         ifr.ifr_hwaddr.sa_data[2] = 'e';
556         ifr.ifr_hwaddr.sa_data[3] = 't';
557         ifr.ifr_hwaddr.sa_data[4] = dev->data->port_id;
558         ifr.ifr_hwaddr.sa_data[5] = dev->data->numa_node;
559         rte_memcpy(addr, ifr.ifr_hwaddr.sa_data, ETH_ALEN);
560
561         return 0;
562 }
563
564 static int
565 eth_dev_tap_create(const char *name, char *tap_name)
566 {
567         int numa_node = rte_socket_id();
568         struct rte_eth_dev *dev = NULL;
569         struct pmd_internals *pmd = NULL;
570         struct rte_eth_dev_data *data = NULL;
571         int i, fd = -1;
572
573         RTE_LOG(INFO, PMD,
574                 "%s: Create TAP Ethernet device with %d queues on numa %u\n",
575                  name, RTE_PMD_TAP_MAX_QUEUES, rte_socket_id());
576
577         data = rte_zmalloc_socket(tap_name, sizeof(*data), 0, numa_node);
578         if (!data) {
579                 RTE_LOG(INFO, PMD, "Failed to allocate data\n");
580                 goto error_exit;
581         }
582
583         pmd = rte_zmalloc_socket(tap_name, sizeof(*pmd), 0, numa_node);
584         if (!pmd) {
585                 RTE_LOG(INFO, PMD, "Unable to allocate internal struct\n");
586                 goto error_exit;
587         }
588
589         /* Use the name and not the tap_name */
590         dev = rte_eth_dev_allocate(tap_name);
591         if (!dev) {
592                 RTE_LOG(INFO, PMD, "Unable to allocate device struct\n");
593                 goto error_exit;
594         }
595
596         snprintf(pmd->name, sizeof(pmd->name), "%s", tap_name);
597
598         pmd->nb_queues = RTE_PMD_TAP_MAX_QUEUES;
599
600         /* Setup some default values */
601         data->dev_private = pmd;
602         data->port_id = dev->data->port_id;
603         data->dev_flags = RTE_ETH_DEV_DETACHABLE;
604         data->kdrv = RTE_KDRV_NONE;
605         data->drv_name = pmd_tap_drv.driver.name;
606         data->numa_node = numa_node;
607
608         data->dev_link = pmd_link;
609         data->mac_addrs = &pmd->eth_addr;
610         data->nb_rx_queues = pmd->nb_queues;
611         data->nb_tx_queues = pmd->nb_queues;
612
613         dev->data = data;
614         dev->dev_ops = &ops;
615         dev->driver = NULL;
616         dev->rx_pkt_burst = pmd_rx_burst;
617         dev->tx_pkt_burst = pmd_tx_burst;
618         snprintf(dev->data->name, sizeof(dev->data->name), "%s", name);
619
620         /* Create the first Tap device */
621         fd = tun_alloc(tap_name);
622         if (fd < 0) {
623                 RTE_LOG(INFO, PMD, "tun_alloc() failed\n");
624                 goto error_exit;
625         }
626
627         /* Presetup the fds to -1 as being not working */
628         for (i = 0; i < RTE_PMD_TAP_MAX_QUEUES; i++) {
629                 pmd->fds[i] = -1;
630                 pmd->rxq[i].fd = -1;
631                 pmd->txq[i].fd = -1;
632         }
633
634         /* Take the TUN/TAP fd and place in the first location */
635         pmd->rxq[0].fd = fd;
636         pmd->txq[0].fd = fd;
637         pmd->fds[0] = fd;
638
639         if (pmd_mac_address(fd, dev, &pmd->eth_addr) < 0) {
640                 RTE_LOG(INFO, PMD, "Unable to get MAC address\n");
641                 goto error_exit;
642         }
643
644         return 0;
645
646 error_exit:
647         RTE_PMD_DEBUG_TRACE("Unable to initialize %s\n", name);
648
649         rte_free(data);
650         rte_free(pmd);
651
652         rte_eth_dev_release_port(dev);
653
654         return -EINVAL;
655 }
656
657 static int
658 set_interface_name(const char *key __rte_unused,
659                    const char *value,
660                    void *extra_args)
661 {
662         char *name = (char *)extra_args;
663
664         if (value)
665                 snprintf(name, RTE_ETH_NAME_MAX_LEN - 1, "%s", value);
666         else
667                 snprintf(name, RTE_ETH_NAME_MAX_LEN - 1, "%s%d",
668                          DEFAULT_TAP_NAME, (tap_unit - 1));
669
670         return 0;
671 }
672
673 static int
674 set_interface_speed(const char *key __rte_unused,
675                     const char *value,
676                     void *extra_args)
677 {
678         *(int *)extra_args = (value) ? atoi(value) : ETH_SPEED_NUM_10G;
679
680         return 0;
681 }
682
683 /* Open a TAP interface device.
684  */
685 static int
686 rte_pmd_tap_probe(const char *name, const char *params)
687 {
688         int ret;
689         struct rte_kvargs *kvlist = NULL;
690         int speed;
691         char tap_name[RTE_ETH_NAME_MAX_LEN];
692
693         speed = ETH_SPEED_NUM_10G;
694         snprintf(tap_name, sizeof(tap_name), "%s%d",
695                  DEFAULT_TAP_NAME, tap_unit++);
696
697         RTE_LOG(INFO, PMD, "Initializing pmd_tap for %s as %s\n",
698                 name, tap_name);
699
700         if (params && (params[0] != '\0')) {
701                 RTE_LOG(INFO, PMD, "paramaters (%s)\n", params);
702
703                 kvlist = rte_kvargs_parse(params, valid_arguments);
704                 if (kvlist) {
705                         if (rte_kvargs_count(kvlist, ETH_TAP_SPEED_ARG) == 1) {
706                                 ret = rte_kvargs_process(kvlist,
707                                                          ETH_TAP_SPEED_ARG,
708                                                          &set_interface_speed,
709                                                          &speed);
710                                 if (ret == -1)
711                                         goto leave;
712                         }
713
714                         if (rte_kvargs_count(kvlist, ETH_TAP_IFACE_ARG) == 1) {
715                                 ret = rte_kvargs_process(kvlist,
716                                                          ETH_TAP_IFACE_ARG,
717                                                          &set_interface_name,
718                                                          tap_name);
719                                 if (ret == -1)
720                                         goto leave;
721                         }
722                 }
723         }
724         pmd_link.link_speed = speed;
725
726         ret = eth_dev_tap_create(name, tap_name);
727
728 leave:
729         if (ret == -1) {
730                 RTE_LOG(INFO, PMD, "Failed to create pmd for %s as %s\n",
731                         name, tap_name);
732                 tap_unit--;             /* Restore the unit number */
733         }
734         rte_kvargs_free(kvlist);
735
736         return ret;
737 }
738
739 /* detach a TAP device.
740  */
741 static int
742 rte_pmd_tap_remove(const char *name)
743 {
744         struct rte_eth_dev *eth_dev = NULL;
745         struct pmd_internals *internals;
746         int i;
747
748         RTE_LOG(INFO, PMD, "Closing TUN/TAP Ethernet device on numa %u\n",
749                 rte_socket_id());
750
751         /* find the ethdev entry */
752         eth_dev = rte_eth_dev_allocated(name);
753         if (!eth_dev)
754                 return 0;
755
756         internals = eth_dev->data->dev_private;
757         for (i = 0; i < internals->nb_queues; i++)
758                 if (internals->fds[i] != -1)
759                         close(internals->fds[i]);
760
761         rte_free(eth_dev->data->dev_private);
762         rte_free(eth_dev->data);
763
764         rte_eth_dev_release_port(eth_dev);
765
766         return 0;
767 }
768
769 static struct rte_vdev_driver pmd_tap_drv = {
770         .probe = rte_pmd_tap_probe,
771         .remove = rte_pmd_tap_remove,
772 };
773 RTE_PMD_REGISTER_VDEV(net_tap, pmd_tap_drv);
774 RTE_PMD_REGISTER_ALIAS(net_tap, eth_tap);
775 RTE_PMD_REGISTER_PARAM_STRING(net_tap, "iface=<string>,speed=N");