net/tap: fix name
[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 pmd_internals *pmd = dev->data->dev_private;
414         struct rx_queue *rx = &internals->rxq[qid];
415         struct tx_queue *tx = &internals->txq[qid];
416         int fd;
417
418         fd = rx->fd;
419         if (fd < 0) {
420                 fd = tx->fd;
421                 if (fd < 0) {
422                         RTE_LOG(INFO, PMD, "Add queue to TAP %s for qid %d\n",
423                                 pmd->name, qid);
424                         fd = tun_alloc(pmd->name);
425                         if (fd < 0) {
426                                 RTE_LOG(ERR, PMD, "tun_alloc(%s) failed\n",
427                                         pmd->name);
428                                 return -1;
429                         }
430                 }
431         }
432
433         rx->fd = fd;
434         tx->fd = fd;
435
436         return fd;
437 }
438
439 static int
440 rx_setup_queue(struct rte_eth_dev *dev,
441                 struct pmd_internals *internals,
442                 uint16_t qid)
443 {
444         dev->data->rx_queues[qid] = &internals->rxq[qid];
445
446         return tap_setup_queue(dev, internals, qid);
447 }
448
449 static int
450 tx_setup_queue(struct rte_eth_dev *dev,
451                 struct pmd_internals *internals,
452                 uint16_t qid)
453 {
454         dev->data->tx_queues[qid] = &internals->txq[qid];
455
456         return tap_setup_queue(dev, internals, qid);
457 }
458
459 static int
460 tap_rx_queue_setup(struct rte_eth_dev *dev,
461                    uint16_t rx_queue_id,
462                    uint16_t nb_rx_desc __rte_unused,
463                    unsigned int socket_id __rte_unused,
464                    const struct rte_eth_rxconf *rx_conf __rte_unused,
465                    struct rte_mempool *mp)
466 {
467         struct pmd_internals *internals = dev->data->dev_private;
468         uint16_t buf_size;
469         int fd;
470
471         if ((rx_queue_id >= internals->nb_queues) || !mp) {
472                 RTE_LOG(ERR, PMD, "nb_queues %d mp %p\n",
473                         internals->nb_queues, mp);
474                 return -1;
475         }
476
477         internals->rxq[rx_queue_id].mp = mp;
478         internals->rxq[rx_queue_id].in_port = dev->data->port_id;
479
480         /* Now get the space available for data in the mbuf */
481         buf_size = (uint16_t)(rte_pktmbuf_data_room_size(mp) -
482                                 RTE_PKTMBUF_HEADROOM);
483
484         if (buf_size < ETH_FRAME_LEN) {
485                 RTE_LOG(ERR, PMD,
486                         "%s: %d bytes will not fit in mbuf (%d bytes)\n",
487                         dev->data->name, ETH_FRAME_LEN, buf_size);
488                 return -ENOMEM;
489         }
490
491         fd = rx_setup_queue(dev, internals, rx_queue_id);
492         if (fd == -1)
493                 return -1;
494
495         internals->fds[rx_queue_id] = fd;
496         RTE_LOG(INFO, PMD, "RX TAP device name %s, qid %d on fd %d\n",
497                 internals->name, rx_queue_id, internals->rxq[rx_queue_id].fd);
498
499         return 0;
500 }
501
502 static int
503 tap_tx_queue_setup(struct rte_eth_dev *dev,
504                    uint16_t tx_queue_id,
505                    uint16_t nb_tx_desc __rte_unused,
506                    unsigned int socket_id __rte_unused,
507                    const struct rte_eth_txconf *tx_conf __rte_unused)
508 {
509         struct pmd_internals *internals = dev->data->dev_private;
510         int ret;
511
512         if (tx_queue_id >= internals->nb_queues)
513                 return -1;
514
515         ret = tx_setup_queue(dev, internals, tx_queue_id);
516         if (ret == -1)
517                 return -1;
518
519         RTE_LOG(INFO, PMD, "TX TAP device name %s, qid %d on fd %d\n",
520                 internals->name, tx_queue_id, internals->txq[tx_queue_id].fd);
521
522         return 0;
523 }
524
525 static const struct eth_dev_ops ops = {
526         .dev_start              = tap_dev_start,
527         .dev_stop               = tap_dev_stop,
528         .dev_close              = tap_dev_close,
529         .dev_configure          = tap_dev_configure,
530         .dev_infos_get          = tap_dev_info,
531         .rx_queue_setup         = tap_rx_queue_setup,
532         .tx_queue_setup         = tap_tx_queue_setup,
533         .rx_queue_release       = tap_rx_queue_release,
534         .tx_queue_release       = tap_tx_queue_release,
535         .link_update            = tap_link_update,
536         .stats_get              = tap_stats_get,
537         .stats_reset            = tap_stats_reset,
538 };
539
540 static int
541 pmd_mac_address(int fd, struct rte_eth_dev *dev, struct ether_addr *addr)
542 {
543         struct ifreq ifr;
544
545         if ((fd <= 0) || !dev || !addr)
546                 return -1;
547
548         memset(&ifr, 0, sizeof(ifr));
549
550         if (ioctl(fd, SIOCGIFHWADDR, &ifr) == -1) {
551                 RTE_LOG(ERR, PMD, "ioctl failed (SIOCGIFHWADDR) (%s)\n",
552                         ifr.ifr_name);
553                 return -1;
554         }
555
556         /* Set the host based MAC address to this special MAC format */
557         ifr.ifr_hwaddr.sa_data[0] = 'T';
558         ifr.ifr_hwaddr.sa_data[1] = 'a';
559         ifr.ifr_hwaddr.sa_data[2] = 'p';
560         ifr.ifr_hwaddr.sa_data[3] = '-';
561         ifr.ifr_hwaddr.sa_data[4] = dev->data->port_id;
562         ifr.ifr_hwaddr.sa_data[5] = dev->data->numa_node;
563         if (ioctl(fd, SIOCSIFHWADDR, &ifr) == -1) {
564                 RTE_LOG(ERR, PMD, "%s: ioctl failed (SIOCSIFHWADDR) (%s)\n",
565                         dev->data->name, ifr.ifr_name);
566                 return -1;
567         }
568
569         /* Set the local application MAC address, needs to be different then
570          * the host based MAC address.
571          */
572         ifr.ifr_hwaddr.sa_data[0] = 'd';
573         ifr.ifr_hwaddr.sa_data[1] = 'n';
574         ifr.ifr_hwaddr.sa_data[2] = 'e';
575         ifr.ifr_hwaddr.sa_data[3] = 't';
576         ifr.ifr_hwaddr.sa_data[4] = dev->data->port_id;
577         ifr.ifr_hwaddr.sa_data[5] = dev->data->numa_node;
578         rte_memcpy(addr, ifr.ifr_hwaddr.sa_data, ETH_ALEN);
579
580         return 0;
581 }
582
583 static int
584 eth_dev_tap_create(const char *name, char *tap_name)
585 {
586         int numa_node = rte_socket_id();
587         struct rte_eth_dev *dev = NULL;
588         struct pmd_internals *pmd = NULL;
589         struct rte_eth_dev_data *data = NULL;
590         int i, fd = -1;
591
592         RTE_LOG(INFO, PMD,
593                 "%s: Create TAP Ethernet device with %d queues on numa %u\n",
594                  name, RTE_PMD_TAP_MAX_QUEUES, rte_socket_id());
595
596         data = rte_zmalloc_socket(tap_name, sizeof(*data), 0, numa_node);
597         if (!data) {
598                 RTE_LOG(INFO, PMD, "Failed to allocate data\n");
599                 goto error_exit;
600         }
601
602         pmd = rte_zmalloc_socket(tap_name, sizeof(*pmd), 0, numa_node);
603         if (!pmd) {
604                 RTE_LOG(INFO, PMD, "Unable to allocate internal struct\n");
605                 goto error_exit;
606         }
607
608         /* Use the name and not the tap_name */
609         dev = rte_eth_dev_allocate(tap_name);
610         if (!dev) {
611                 RTE_LOG(INFO, PMD, "Unable to allocate device struct\n");
612                 goto error_exit;
613         }
614
615         snprintf(pmd->name, sizeof(pmd->name), "%s", tap_name);
616
617         pmd->nb_queues = RTE_PMD_TAP_MAX_QUEUES;
618
619         /* Setup some default values */
620         data->dev_private = pmd;
621         data->port_id = dev->data->port_id;
622         data->dev_flags = RTE_ETH_DEV_DETACHABLE;
623         data->kdrv = RTE_KDRV_NONE;
624         data->drv_name = pmd_tap_drv.driver.name;
625         data->numa_node = numa_node;
626
627         data->dev_link = pmd_link;
628         data->mac_addrs = &pmd->eth_addr;
629         data->nb_rx_queues = pmd->nb_queues;
630         data->nb_tx_queues = pmd->nb_queues;
631
632         dev->data = data;
633         dev->dev_ops = &ops;
634         dev->driver = NULL;
635         dev->rx_pkt_burst = pmd_rx_burst;
636         dev->tx_pkt_burst = pmd_tx_burst;
637         snprintf(dev->data->name, sizeof(dev->data->name), "%s", name);
638
639         /* Create the first Tap device */
640         fd = tun_alloc(tap_name);
641         if (fd < 0) {
642                 RTE_LOG(INFO, PMD, "tun_alloc() failed\n");
643                 goto error_exit;
644         }
645
646         /* Presetup the fds to -1 as being not working */
647         for (i = 0; i < RTE_PMD_TAP_MAX_QUEUES; i++) {
648                 pmd->fds[i] = -1;
649                 pmd->rxq[i].fd = -1;
650                 pmd->txq[i].fd = -1;
651         }
652
653         /* Take the TUN/TAP fd and place in the first location */
654         pmd->rxq[0].fd = fd;
655         pmd->txq[0].fd = fd;
656         pmd->fds[0] = fd;
657
658         if (pmd_mac_address(fd, dev, &pmd->eth_addr) < 0) {
659                 RTE_LOG(INFO, PMD, "Unable to get MAC address\n");
660                 goto error_exit;
661         }
662
663         return 0;
664
665 error_exit:
666         RTE_PMD_DEBUG_TRACE("Unable to initialize %s\n", name);
667
668         rte_free(data);
669         rte_free(pmd);
670
671         rte_eth_dev_release_port(dev);
672
673         return -EINVAL;
674 }
675
676 static int
677 set_interface_name(const char *key __rte_unused,
678                    const char *value,
679                    void *extra_args)
680 {
681         char *name = (char *)extra_args;
682
683         if (value)
684                 snprintf(name, RTE_ETH_NAME_MAX_LEN - 1, "%s", value);
685         else
686                 snprintf(name, RTE_ETH_NAME_MAX_LEN - 1, "%s%d",
687                          DEFAULT_TAP_NAME, (tap_unit - 1));
688
689         return 0;
690 }
691
692 static int
693 set_interface_speed(const char *key __rte_unused,
694                     const char *value,
695                     void *extra_args)
696 {
697         *(int *)extra_args = (value) ? atoi(value) : ETH_SPEED_NUM_10G;
698
699         return 0;
700 }
701
702 /* Open a TAP interface device.
703  */
704 static int
705 rte_pmd_tap_probe(const char *name, const char *params)
706 {
707         int ret;
708         struct rte_kvargs *kvlist = NULL;
709         int speed;
710         char tap_name[RTE_ETH_NAME_MAX_LEN];
711
712         speed = ETH_SPEED_NUM_10G;
713         snprintf(tap_name, sizeof(tap_name), "%s%d",
714                  DEFAULT_TAP_NAME, tap_unit++);
715
716         RTE_LOG(INFO, PMD, "Initializing pmd_tap for %s as %s\n",
717                 name, tap_name);
718
719         if (params && (params[0] != '\0')) {
720                 RTE_LOG(INFO, PMD, "paramaters (%s)\n", params);
721
722                 kvlist = rte_kvargs_parse(params, valid_arguments);
723                 if (kvlist) {
724                         if (rte_kvargs_count(kvlist, ETH_TAP_SPEED_ARG) == 1) {
725                                 ret = rte_kvargs_process(kvlist,
726                                                          ETH_TAP_SPEED_ARG,
727                                                          &set_interface_speed,
728                                                          &speed);
729                                 if (ret == -1)
730                                         goto leave;
731                         }
732
733                         if (rte_kvargs_count(kvlist, ETH_TAP_IFACE_ARG) == 1) {
734                                 ret = rte_kvargs_process(kvlist,
735                                                          ETH_TAP_IFACE_ARG,
736                                                          &set_interface_name,
737                                                          tap_name);
738                                 if (ret == -1)
739                                         goto leave;
740                         }
741                 }
742         }
743         pmd_link.link_speed = speed;
744
745         ret = eth_dev_tap_create(name, tap_name);
746
747 leave:
748         if (ret == -1) {
749                 RTE_LOG(INFO, PMD, "Failed to create pmd for %s as %s\n",
750                         name, tap_name);
751                 tap_unit--;             /* Restore the unit number */
752         }
753         rte_kvargs_free(kvlist);
754
755         return ret;
756 }
757
758 /* detach a TAP device.
759  */
760 static int
761 rte_pmd_tap_remove(const char *name)
762 {
763         struct rte_eth_dev *eth_dev = NULL;
764         struct pmd_internals *internals;
765         int i;
766
767         RTE_LOG(INFO, PMD, "Closing TUN/TAP Ethernet device on numa %u\n",
768                 rte_socket_id());
769
770         /* find the ethdev entry */
771         eth_dev = rte_eth_dev_allocated(name);
772         if (!eth_dev)
773                 return 0;
774
775         internals = eth_dev->data->dev_private;
776         for (i = 0; i < internals->nb_queues; i++)
777                 if (internals->fds[i] != -1)
778                         close(internals->fds[i]);
779
780         rte_free(eth_dev->data->dev_private);
781         rte_free(eth_dev->data);
782
783         rte_eth_dev_release_port(eth_dev);
784
785         return 0;
786 }
787
788 static struct rte_vdev_driver pmd_tap_drv = {
789         .probe = rte_pmd_tap_probe,
790         .remove = rte_pmd_tap_remove,
791 };
792 RTE_PMD_REGISTER_VDEV(net_tap, pmd_tap_drv);
793 RTE_PMD_REGISTER_ALIAS(net_tap, eth_tap);
794 RTE_PMD_REGISTER_PARAM_STRING(net_tap, "iface=<string>,speed=N");