2 * TUN - Universal TUN/TAP device driver.
3 * Copyright (C) 1999-2002 Maxim Krasnyansky <maxk@qualcomm.com>
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * $Id: tun.c,v 1.15 2002/03/01 02:44:24 maxk Exp $
21 * Mike Kershaw <dragorn@kismetwireless.net> 2005/08/14
22 * Add TUNSETLINK ioctl to set the link encapsulation
24 * Mark Smith <markzzzsmith@yahoo.com.au>
25 * Use random_ether_addr() for tap MAC address.
27 * Harald Roelle <harald.roelle@ifi.lmu.de> 2004/04/20
28 * Fixes in packet dropping, queue length setting and queue wakeup.
29 * Increased default tx queue length.
33 * Daniel Podlejski <underley@underley.eu.org>
34 * Modifications for 2.3.99-pre5 kernel.
37 #define DRV_NAME "tun"
38 #define DRV_VERSION "1.6"
39 #define DRV_DESCRIPTION "Universal TUN/TAP device driver"
40 #define DRV_COPYRIGHT "(C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>"
42 #include <linux/module.h>
43 #include <linux/errno.h>
44 #include <linux/kernel.h>
45 #include <linux/major.h>
46 #include <linux/slab.h>
47 #include <linux/smp_lock.h>
48 #include <linux/poll.h>
49 #include <linux/fcntl.h>
50 #include <linux/init.h>
51 #include <linux/skbuff.h>
52 #include <linux/netdevice.h>
53 #include <linux/etherdevice.h>
54 #include <linux/miscdevice.h>
55 #include <linux/ethtool.h>
56 #include <linux/rtnetlink.h>
58 #include <linux/if_arp.h>
59 #include <linux/if_ether.h>
60 #include <linux/if_tun.h>
61 #include <linux/crc32.h>
62 #include <linux/nsproxy.h>
63 #include <linux/virtio_net.h>
64 #include <net/net_namespace.h>
65 #include <net/netns/generic.h>
67 #include <asm/system.h>
68 #include <asm/uaccess.h>
70 /* Uncomment to enable debugging */
71 /* #define TUN_DEBUG 1 */
76 #define DBG if(tun->debug)printk
77 #define DBG1 if(debug==2)printk
83 #define FLT_EXACT_COUNT 8
85 unsigned int count; /* Number of addrs. Zero means disabled */
86 u32 mask[2]; /* Mask of the hashed addrs */
87 unsigned char addr[FLT_EXACT_COUNT][ETH_ALEN];
96 wait_queue_head_t read_wait;
97 struct sk_buff_head readq;
99 struct net_device *dev;
100 struct fasync_struct *fasync;
102 struct tap_filter txflt;
109 static int tun_attach(struct tun_struct *tun, struct file *file)
111 const struct cred *cred = current_cred();
115 if (file->private_data)
121 /* Check permissions */
122 if (((tun->owner != -1 && cred->euid != tun->owner) ||
123 (tun->group != -1 && cred->egid != tun->group)) &&
124 !capable(CAP_NET_ADMIN))
127 file->private_data = tun;
129 get_net(dev_net(tun->dev));
135 static void addr_hash_set(u32 *mask, const u8 *addr)
137 int n = ether_crc(ETH_ALEN, addr) >> 26;
138 mask[n >> 5] |= (1 << (n & 31));
141 static unsigned int addr_hash_test(const u32 *mask, const u8 *addr)
143 int n = ether_crc(ETH_ALEN, addr) >> 26;
144 return mask[n >> 5] & (1 << (n & 31));
147 static int update_filter(struct tap_filter *filter, void __user *arg)
149 struct { u8 u[ETH_ALEN]; } *addr;
150 struct tun_filter uf;
151 int err, alen, n, nexact;
153 if (copy_from_user(&uf, arg, sizeof(uf)))
162 alen = ETH_ALEN * uf.count;
163 addr = kmalloc(alen, GFP_KERNEL);
167 if (copy_from_user(addr, arg + sizeof(uf), alen)) {
172 /* The filter is updated without holding any locks. Which is
173 * perfectly safe. We disable it first and in the worst
174 * case we'll accept a few undesired packets. */
178 /* Use first set of addresses as an exact filter */
179 for (n = 0; n < uf.count && n < FLT_EXACT_COUNT; n++)
180 memcpy(filter->addr[n], addr[n].u, ETH_ALEN);
184 /* The rest is hashed */
185 memset(filter->mask, 0, sizeof(filter->mask));
186 for (; n < uf.count; n++)
187 addr_hash_set(filter->mask, addr[n].u);
189 /* For ALLMULTI just set the mask to all ones.
190 * This overrides the mask populated above. */
191 if ((uf.flags & TUN_FLT_ALLMULTI))
192 memset(filter->mask, ~0, sizeof(filter->mask));
194 /* Now enable the filter */
196 filter->count = nexact;
198 /* Return the number of exact filters */
206 /* Returns: 0 - drop, !=0 - accept */
207 static int run_filter(struct tap_filter *filter, const struct sk_buff *skb)
209 /* Cannot use eth_hdr(skb) here because skb_mac_hdr() is incorrect
211 struct ethhdr *eh = (struct ethhdr *) skb->data;
215 for (i = 0; i < filter->count; i++)
216 if (!compare_ether_addr(eh->h_dest, filter->addr[i]))
219 /* Inexact match (multicast only) */
220 if (is_multicast_ether_addr(eh->h_dest))
221 return addr_hash_test(filter->mask, eh->h_dest);
227 * Checks whether the packet is accepted or not.
228 * Returns: 0 - drop, !=0 - accept
230 static int check_filter(struct tap_filter *filter, const struct sk_buff *skb)
235 return run_filter(filter, skb);
238 /* Network device part of the driver */
240 static const struct ethtool_ops tun_ethtool_ops;
242 /* Net device open. */
243 static int tun_net_open(struct net_device *dev)
245 netif_start_queue(dev);
249 /* Net device close. */
250 static int tun_net_close(struct net_device *dev)
252 netif_stop_queue(dev);
256 /* Net device start xmit */
257 static int tun_net_xmit(struct sk_buff *skb, struct net_device *dev)
259 struct tun_struct *tun = netdev_priv(dev);
261 DBG(KERN_INFO "%s: tun_net_xmit %d\n", tun->dev->name, skb->len);
263 /* Drop packet if interface is not attached */
267 /* Drop if the filter does not like it.
268 * This is a noop if the filter is disabled.
269 * Filter can be enabled only for the TAP devices. */
270 if (!check_filter(&tun->txflt, skb))
273 if (skb_queue_len(&tun->readq) >= dev->tx_queue_len) {
274 if (!(tun->flags & TUN_ONE_QUEUE)) {
275 /* Normal queueing mode. */
276 /* Packet scheduler handles dropping of further packets. */
277 netif_stop_queue(dev);
279 /* We won't see all dropped packets individually, so overrun
280 * error is more appropriate. */
281 dev->stats.tx_fifo_errors++;
283 /* Single queue mode.
284 * Driver handles dropping of all packets itself. */
290 skb_queue_tail(&tun->readq, skb);
291 dev->trans_start = jiffies;
293 /* Notify and wake up reader process */
294 if (tun->flags & TUN_FASYNC)
295 kill_fasync(&tun->fasync, SIGIO, POLL_IN);
296 wake_up_interruptible(&tun->read_wait);
300 dev->stats.tx_dropped++;
305 static void tun_net_mclist(struct net_device *dev)
308 * This callback is supposed to deal with mc filter in
309 * _rx_ path and has nothing to do with the _tx_ path.
310 * In rx path we always accept everything userspace gives us.
316 #define MAX_MTU 65535
319 tun_net_change_mtu(struct net_device *dev, int new_mtu)
321 if (new_mtu < MIN_MTU || new_mtu + dev->hard_header_len > MAX_MTU)
327 static const struct net_device_ops tun_netdev_ops = {
328 .ndo_open = tun_net_open,
329 .ndo_stop = tun_net_close,
330 .ndo_start_xmit = tun_net_xmit,
331 .ndo_change_mtu = tun_net_change_mtu,
334 static const struct net_device_ops tap_netdev_ops = {
335 .ndo_open = tun_net_open,
336 .ndo_stop = tun_net_close,
337 .ndo_start_xmit = tun_net_xmit,
338 .ndo_change_mtu = tun_net_change_mtu,
339 .ndo_set_multicast_list = tun_net_mclist,
340 .ndo_set_mac_address = eth_mac_addr,
341 .ndo_validate_addr = eth_validate_addr,
344 /* Initialize net device. */
345 static void tun_net_init(struct net_device *dev)
347 struct tun_struct *tun = netdev_priv(dev);
349 switch (tun->flags & TUN_TYPE_MASK) {
351 dev->netdev_ops = &tun_netdev_ops;
353 /* Point-to-Point TUN Device */
354 dev->hard_header_len = 0;
358 /* Zero header length */
359 dev->type = ARPHRD_NONE;
360 dev->flags = IFF_POINTOPOINT | IFF_NOARP | IFF_MULTICAST;
361 dev->tx_queue_len = TUN_READQ_SIZE; /* We prefer our own queue length */
365 dev->netdev_ops = &tap_netdev_ops;
366 /* Ethernet TAP Device */
369 random_ether_addr(dev->dev_addr);
371 dev->tx_queue_len = TUN_READQ_SIZE; /* We prefer our own queue length */
376 /* Character device part */
379 static unsigned int tun_chr_poll(struct file *file, poll_table * wait)
381 struct tun_struct *tun = file->private_data;
382 unsigned int mask = POLLOUT | POLLWRNORM;
387 DBG(KERN_INFO "%s: tun_chr_poll\n", tun->dev->name);
389 poll_wait(file, &tun->read_wait, wait);
391 if (!skb_queue_empty(&tun->readq))
392 mask |= POLLIN | POLLRDNORM;
397 /* prepad is the amount to reserve at front. len is length after that.
398 * linear is a hint as to how much to copy (usually headers). */
399 static struct sk_buff *tun_alloc_skb(size_t prepad, size_t len, size_t linear,
405 skb = alloc_skb(prepad + len, gfp|__GFP_NOWARN);
407 skb_reserve(skb, prepad);
412 /* Under a page? Don't bother with paged skb. */
413 if (prepad + len < PAGE_SIZE)
416 /* Start with a normal skb, and add pages. */
417 skb = alloc_skb(prepad + linear, gfp);
421 skb_reserve(skb, prepad);
422 skb_put(skb, linear);
426 for (i = 0; i < MAX_SKB_FRAGS; i++) {
427 skb_frag_t *f = &skb_shinfo(skb)->frags[i];
429 f->page = alloc_page(gfp|__GFP_ZERO);
436 skb->data_len += PAGE_SIZE;
437 skb->len += PAGE_SIZE;
438 skb->truesize += PAGE_SIZE;
439 skb_shinfo(skb)->nr_frags++;
441 if (len < PAGE_SIZE) {
448 /* Too large, or alloc fail? */
457 /* Get packet from user space buffer */
458 static __inline__ ssize_t tun_get_user(struct tun_struct *tun, struct iovec *iv, size_t count)
460 struct tun_pi pi = { 0, __constant_htons(ETH_P_IP) };
462 size_t len = count, align = 0;
463 struct virtio_net_hdr gso = { 0 };
465 if (!(tun->flags & TUN_NO_PI)) {
466 if ((len -= sizeof(pi)) > count)
469 if(memcpy_fromiovec((void *)&pi, iv, sizeof(pi)))
473 if (tun->flags & TUN_VNET_HDR) {
474 if ((len -= sizeof(gso)) > count)
477 if (memcpy_fromiovec((void *)&gso, iv, sizeof(gso)))
480 if (gso.hdr_len > len)
484 if ((tun->flags & TUN_TYPE_MASK) == TUN_TAP_DEV) {
485 align = NET_IP_ALIGN;
486 if (unlikely(len < ETH_HLEN))
490 if (!(skb = tun_alloc_skb(align, len, gso.hdr_len, GFP_KERNEL))) {
491 tun->dev->stats.rx_dropped++;
495 if (skb_copy_datagram_from_iovec(skb, 0, iv, len)) {
496 tun->dev->stats.rx_dropped++;
501 if (gso.flags & VIRTIO_NET_HDR_F_NEEDS_CSUM) {
502 if (!skb_partial_csum_set(skb, gso.csum_start,
504 tun->dev->stats.rx_frame_errors++;
508 } else if (tun->flags & TUN_NOCHECKSUM)
509 skb->ip_summed = CHECKSUM_UNNECESSARY;
511 switch (tun->flags & TUN_TYPE_MASK) {
513 if (tun->flags & TUN_NO_PI) {
514 switch (skb->data[0] & 0xf0) {
516 pi.proto = htons(ETH_P_IP);
519 pi.proto = htons(ETH_P_IPV6);
522 tun->dev->stats.rx_dropped++;
528 skb_reset_mac_header(skb);
529 skb->protocol = pi.proto;
533 skb->protocol = eth_type_trans(skb, tun->dev);
537 if (gso.gso_type != VIRTIO_NET_HDR_GSO_NONE) {
539 switch (gso.gso_type & ~VIRTIO_NET_HDR_GSO_ECN) {
540 case VIRTIO_NET_HDR_GSO_TCPV4:
541 skb_shinfo(skb)->gso_type = SKB_GSO_TCPV4;
543 case VIRTIO_NET_HDR_GSO_TCPV6:
544 skb_shinfo(skb)->gso_type = SKB_GSO_TCPV6;
547 tun->dev->stats.rx_frame_errors++;
552 if (gso.gso_type & VIRTIO_NET_HDR_GSO_ECN)
553 skb_shinfo(skb)->gso_type |= SKB_GSO_TCP_ECN;
555 skb_shinfo(skb)->gso_size = gso.gso_size;
556 if (skb_shinfo(skb)->gso_size == 0) {
557 tun->dev->stats.rx_frame_errors++;
562 /* Header must be checked, and gso_segs computed. */
563 skb_shinfo(skb)->gso_type |= SKB_GSO_DODGY;
564 skb_shinfo(skb)->gso_segs = 0;
569 tun->dev->stats.rx_packets++;
570 tun->dev->stats.rx_bytes += len;
575 static ssize_t tun_chr_aio_write(struct kiocb *iocb, const struct iovec *iv,
576 unsigned long count, loff_t pos)
578 struct tun_struct *tun = iocb->ki_filp->private_data;
583 DBG(KERN_INFO "%s: tun_chr_write %ld\n", tun->dev->name, count);
585 return tun_get_user(tun, (struct iovec *) iv, iov_length(iv, count));
588 /* Put packet to the user space buffer */
589 static __inline__ ssize_t tun_put_user(struct tun_struct *tun,
591 struct iovec *iv, int len)
593 struct tun_pi pi = { 0, skb->protocol };
596 if (!(tun->flags & TUN_NO_PI)) {
597 if ((len -= sizeof(pi)) < 0)
600 if (len < skb->len) {
601 /* Packet will be striped */
602 pi.flags |= TUN_PKT_STRIP;
605 if (memcpy_toiovec(iv, (void *) &pi, sizeof(pi)))
610 if (tun->flags & TUN_VNET_HDR) {
611 struct virtio_net_hdr gso = { 0 }; /* no info leak */
612 if ((len -= sizeof(gso)) < 0)
615 if (skb_is_gso(skb)) {
616 struct skb_shared_info *sinfo = skb_shinfo(skb);
618 /* This is a hint as to how much should be linear. */
619 gso.hdr_len = skb_headlen(skb);
620 gso.gso_size = sinfo->gso_size;
621 if (sinfo->gso_type & SKB_GSO_TCPV4)
622 gso.gso_type = VIRTIO_NET_HDR_GSO_TCPV4;
623 else if (sinfo->gso_type & SKB_GSO_TCPV6)
624 gso.gso_type = VIRTIO_NET_HDR_GSO_TCPV6;
627 if (sinfo->gso_type & SKB_GSO_TCP_ECN)
628 gso.gso_type |= VIRTIO_NET_HDR_GSO_ECN;
630 gso.gso_type = VIRTIO_NET_HDR_GSO_NONE;
632 if (skb->ip_summed == CHECKSUM_PARTIAL) {
633 gso.flags = VIRTIO_NET_HDR_F_NEEDS_CSUM;
634 gso.csum_start = skb->csum_start - skb_headroom(skb);
635 gso.csum_offset = skb->csum_offset;
636 } /* else everything is zero */
638 if (unlikely(memcpy_toiovec(iv, (void *)&gso, sizeof(gso))))
640 total += sizeof(gso);
643 len = min_t(int, skb->len, len);
645 skb_copy_datagram_iovec(skb, 0, iv, len);
648 tun->dev->stats.tx_packets++;
649 tun->dev->stats.tx_bytes += len;
654 static ssize_t tun_chr_aio_read(struct kiocb *iocb, const struct iovec *iv,
655 unsigned long count, loff_t pos)
657 struct file *file = iocb->ki_filp;
658 struct tun_struct *tun = file->private_data;
659 DECLARE_WAITQUEUE(wait, current);
661 ssize_t len, ret = 0;
666 DBG(KERN_INFO "%s: tun_chr_read\n", tun->dev->name);
668 len = iov_length(iv, count);
672 add_wait_queue(&tun->read_wait, &wait);
674 current->state = TASK_INTERRUPTIBLE;
676 /* Read frames from the queue */
677 if (!(skb=skb_dequeue(&tun->readq))) {
678 if (file->f_flags & O_NONBLOCK) {
682 if (signal_pending(current)) {
687 /* Nothing to read, let's sleep */
691 netif_wake_queue(tun->dev);
693 ret = tun_put_user(tun, skb, (struct iovec *) iv, len);
698 current->state = TASK_RUNNING;
699 remove_wait_queue(&tun->read_wait, &wait);
704 static void tun_setup(struct net_device *dev)
706 struct tun_struct *tun = netdev_priv(dev);
708 skb_queue_head_init(&tun->readq);
709 init_waitqueue_head(&tun->read_wait);
714 dev->ethtool_ops = &tun_ethtool_ops;
715 dev->destructor = free_netdev;
716 dev->features |= NETIF_F_NETNS_LOCAL;
719 static int tun_set_iff(struct net *net, struct file *file, struct ifreq *ifr)
721 struct tun_struct *tun;
722 struct net_device *dev;
725 dev = __dev_get_by_name(net, ifr->ifr_name);
727 if ((ifr->ifr_flags & IFF_TUN) && dev->netdev_ops == &tun_netdev_ops)
728 tun = netdev_priv(dev);
729 else if ((ifr->ifr_flags & IFF_TAP) && dev->netdev_ops == &tap_netdev_ops)
730 tun = netdev_priv(dev);
734 err = tun_attach(tun, file);
740 unsigned long flags = 0;
744 if (!capable(CAP_NET_ADMIN))
748 if (ifr->ifr_flags & IFF_TUN) {
750 flags |= TUN_TUN_DEV;
752 } else if (ifr->ifr_flags & IFF_TAP) {
754 flags |= TUN_TAP_DEV;
760 name = ifr->ifr_name;
762 dev = alloc_netdev(sizeof(struct tun_struct), name,
767 dev_net_set(dev, net);
769 tun = netdev_priv(dev);
772 tun->txflt.count = 0;
776 if (strchr(dev->name, '%')) {
777 err = dev_alloc_name(dev, dev->name);
782 err = register_netdevice(tun->dev);
786 err = tun_attach(tun, file);
791 DBG(KERN_INFO "%s: tun_set_iff\n", tun->dev->name);
793 if (ifr->ifr_flags & IFF_NO_PI)
794 tun->flags |= TUN_NO_PI;
796 tun->flags &= ~TUN_NO_PI;
798 if (ifr->ifr_flags & IFF_ONE_QUEUE)
799 tun->flags |= TUN_ONE_QUEUE;
801 tun->flags &= ~TUN_ONE_QUEUE;
803 if (ifr->ifr_flags & IFF_VNET_HDR)
804 tun->flags |= TUN_VNET_HDR;
806 tun->flags &= ~TUN_VNET_HDR;
808 /* Make sure persistent devices do not get stuck in
811 if (netif_running(tun->dev))
812 netif_wake_queue(tun->dev);
814 strcpy(ifr->ifr_name, tun->dev->name);
823 static int tun_get_iff(struct net *net, struct file *file, struct ifreq *ifr)
825 struct tun_struct *tun = file->private_data;
830 DBG(KERN_INFO "%s: tun_get_iff\n", tun->dev->name);
832 strcpy(ifr->ifr_name, tun->dev->name);
836 if (ifr->ifr_flags & TUN_TUN_DEV)
837 ifr->ifr_flags |= IFF_TUN;
839 ifr->ifr_flags |= IFF_TAP;
841 if (tun->flags & TUN_NO_PI)
842 ifr->ifr_flags |= IFF_NO_PI;
844 if (tun->flags & TUN_ONE_QUEUE)
845 ifr->ifr_flags |= IFF_ONE_QUEUE;
847 if (tun->flags & TUN_VNET_HDR)
848 ifr->ifr_flags |= IFF_VNET_HDR;
853 /* This is like a cut-down ethtool ops, except done via tun fd so no
855 static int set_offload(struct net_device *dev, unsigned long arg)
857 unsigned int old_features, features;
859 old_features = dev->features;
860 /* Unset features, set them as we chew on the arg. */
861 features = (old_features & ~(NETIF_F_HW_CSUM|NETIF_F_SG|NETIF_F_FRAGLIST
862 |NETIF_F_TSO_ECN|NETIF_F_TSO|NETIF_F_TSO6));
864 if (arg & TUN_F_CSUM) {
865 features |= NETIF_F_HW_CSUM|NETIF_F_SG|NETIF_F_FRAGLIST;
868 if (arg & (TUN_F_TSO4|TUN_F_TSO6)) {
869 if (arg & TUN_F_TSO_ECN) {
870 features |= NETIF_F_TSO_ECN;
871 arg &= ~TUN_F_TSO_ECN;
873 if (arg & TUN_F_TSO4)
874 features |= NETIF_F_TSO;
875 if (arg & TUN_F_TSO6)
876 features |= NETIF_F_TSO6;
877 arg &= ~(TUN_F_TSO4|TUN_F_TSO6);
881 /* This gives the user a way to test for new features in future by
882 * trying to set them. */
886 dev->features = features;
887 if (old_features != dev->features)
888 netdev_features_change(dev);
893 static int tun_chr_ioctl(struct inode *inode, struct file *file,
894 unsigned int cmd, unsigned long arg)
896 struct tun_struct *tun = file->private_data;
897 void __user* argp = (void __user*)arg;
901 if (cmd == TUNSETIFF || _IOC_TYPE(cmd) == 0x89)
902 if (copy_from_user(&ifr, argp, sizeof ifr))
905 if (cmd == TUNSETIFF && !tun) {
908 ifr.ifr_name[IFNAMSIZ-1] = '\0';
911 err = tun_set_iff(current->nsproxy->net_ns, file, &ifr);
917 if (copy_to_user(argp, &ifr, sizeof(ifr)))
922 if (cmd == TUNGETFEATURES) {
923 /* Currently this just means: "what IFF flags are valid?".
924 * This is needed because we never checked for invalid flags on
926 return put_user(IFF_TUN | IFF_TAP | IFF_NO_PI | IFF_ONE_QUEUE |
928 (unsigned int __user*)argp);
934 DBG(KERN_INFO "%s: tun_chr_ioctl cmd %d\n", tun->dev->name, cmd);
938 ret = tun_get_iff(current->nsproxy->net_ns, file, &ifr);
942 if (copy_to_user(argp, &ifr, sizeof(ifr)))
947 /* Disable/Enable checksum */
949 tun->flags |= TUN_NOCHECKSUM;
951 tun->flags &= ~TUN_NOCHECKSUM;
953 DBG(KERN_INFO "%s: checksum %s\n",
954 tun->dev->name, arg ? "disabled" : "enabled");
958 /* Disable/Enable persist mode */
960 tun->flags |= TUN_PERSIST;
962 tun->flags &= ~TUN_PERSIST;
964 DBG(KERN_INFO "%s: persist %s\n",
965 tun->dev->name, arg ? "enabled" : "disabled");
969 /* Set owner of the device */
970 tun->owner = (uid_t) arg;
972 DBG(KERN_INFO "%s: owner set to %d\n", tun->dev->name, tun->owner);
976 /* Set group of the device */
977 tun->group= (gid_t) arg;
979 DBG(KERN_INFO "%s: group set to %d\n", tun->dev->name, tun->group);
983 /* Only allow setting the type when the interface is down */
985 if (tun->dev->flags & IFF_UP) {
986 DBG(KERN_INFO "%s: Linktype set failed because interface is up\n",
990 tun->dev->type = (int) arg;
991 DBG(KERN_INFO "%s: linktype set to %d\n", tun->dev->name, tun->dev->type);
1004 ret = set_offload(tun->dev, arg);
1008 case TUNSETTXFILTER:
1009 /* Can be set only for TAPs */
1010 if ((tun->flags & TUN_TYPE_MASK) != TUN_TAP_DEV)
1013 ret = update_filter(&tun->txflt, (void __user *)arg);
1019 memcpy(ifr.ifr_hwaddr.sa_data, tun->dev->dev_addr, ETH_ALEN);
1020 ifr.ifr_hwaddr.sa_family = tun->dev->type;
1021 if (copy_to_user(argp, &ifr, sizeof ifr))
1026 /* Set hw address */
1027 DBG(KERN_DEBUG "%s: set hw address: %pM\n",
1028 tun->dev->name, ifr.ifr_hwaddr.sa_data);
1031 ret = dev_set_mac_address(tun->dev, &ifr.ifr_hwaddr);
1042 static int tun_chr_fasync(int fd, struct file *file, int on)
1044 struct tun_struct *tun = file->private_data;
1050 DBG(KERN_INFO "%s: tun_chr_fasync %d\n", tun->dev->name, on);
1053 if ((ret = fasync_helper(fd, file, on, &tun->fasync)) < 0)
1057 ret = __f_setown(file, task_pid(current), PIDTYPE_PID, 0);
1060 tun->flags |= TUN_FASYNC;
1062 tun->flags &= ~TUN_FASYNC;
1069 static int tun_chr_open(struct inode *inode, struct file * file)
1071 cycle_kernel_lock();
1072 DBG1(KERN_INFO "tunX: tun_chr_open\n");
1073 file->private_data = NULL;
1077 static int tun_chr_close(struct inode *inode, struct file *file)
1079 struct tun_struct *tun = file->private_data;
1084 DBG(KERN_INFO "%s: tun_chr_close\n", tun->dev->name);
1088 /* Detach from net device */
1089 file->private_data = NULL;
1091 put_net(dev_net(tun->dev));
1093 /* Drop read queue */
1094 skb_queue_purge(&tun->readq);
1096 if (!(tun->flags & TUN_PERSIST))
1097 unregister_netdevice(tun->dev);
1104 static const struct file_operations tun_fops = {
1105 .owner = THIS_MODULE,
1106 .llseek = no_llseek,
1107 .read = do_sync_read,
1108 .aio_read = tun_chr_aio_read,
1109 .write = do_sync_write,
1110 .aio_write = tun_chr_aio_write,
1111 .poll = tun_chr_poll,
1112 .ioctl = tun_chr_ioctl,
1113 .open = tun_chr_open,
1114 .release = tun_chr_close,
1115 .fasync = tun_chr_fasync
1118 static struct miscdevice tun_miscdev = {
1124 /* ethtool interface */
1126 static int tun_get_settings(struct net_device *dev, struct ethtool_cmd *cmd)
1129 cmd->advertising = 0;
1130 cmd->speed = SPEED_10;
1131 cmd->duplex = DUPLEX_FULL;
1132 cmd->port = PORT_TP;
1133 cmd->phy_address = 0;
1134 cmd->transceiver = XCVR_INTERNAL;
1135 cmd->autoneg = AUTONEG_DISABLE;
1141 static void tun_get_drvinfo(struct net_device *dev, struct ethtool_drvinfo *info)
1143 struct tun_struct *tun = netdev_priv(dev);
1145 strcpy(info->driver, DRV_NAME);
1146 strcpy(info->version, DRV_VERSION);
1147 strcpy(info->fw_version, "N/A");
1149 switch (tun->flags & TUN_TYPE_MASK) {
1151 strcpy(info->bus_info, "tun");
1154 strcpy(info->bus_info, "tap");
1159 static u32 tun_get_msglevel(struct net_device *dev)
1162 struct tun_struct *tun = netdev_priv(dev);
1169 static void tun_set_msglevel(struct net_device *dev, u32 value)
1172 struct tun_struct *tun = netdev_priv(dev);
1177 static u32 tun_get_link(struct net_device *dev)
1179 struct tun_struct *tun = netdev_priv(dev);
1180 return tun->attached;
1183 static u32 tun_get_rx_csum(struct net_device *dev)
1185 struct tun_struct *tun = netdev_priv(dev);
1186 return (tun->flags & TUN_NOCHECKSUM) == 0;
1189 static int tun_set_rx_csum(struct net_device *dev, u32 data)
1191 struct tun_struct *tun = netdev_priv(dev);
1193 tun->flags &= ~TUN_NOCHECKSUM;
1195 tun->flags |= TUN_NOCHECKSUM;
1199 static const struct ethtool_ops tun_ethtool_ops = {
1200 .get_settings = tun_get_settings,
1201 .get_drvinfo = tun_get_drvinfo,
1202 .get_msglevel = tun_get_msglevel,
1203 .set_msglevel = tun_set_msglevel,
1204 .get_link = tun_get_link,
1205 .get_rx_csum = tun_get_rx_csum,
1206 .set_rx_csum = tun_set_rx_csum
1209 static int tun_init_net(struct net *net)
1214 static void tun_exit_net(struct net *net)
1216 struct net_device *dev, *next;
1219 for_each_netdev_safe(net, dev, next) {
1220 if (dev->ethtool_ops != &tun_ethtool_ops)
1222 DBG(KERN_INFO "%s cleaned up\n", dev->name);
1223 unregister_netdevice(dev);
1228 static struct pernet_operations tun_net_ops = {
1229 .init = tun_init_net,
1230 .exit = tun_exit_net,
1233 static int __init tun_init(void)
1237 printk(KERN_INFO "tun: %s, %s\n", DRV_DESCRIPTION, DRV_VERSION);
1238 printk(KERN_INFO "tun: %s\n", DRV_COPYRIGHT);
1240 ret = register_pernet_device(&tun_net_ops);
1242 printk(KERN_ERR "tun: Can't register pernet ops\n");
1246 ret = misc_register(&tun_miscdev);
1248 printk(KERN_ERR "tun: Can't register misc device %d\n", TUN_MINOR);
1254 unregister_pernet_device(&tun_net_ops);
1259 static void tun_cleanup(void)
1261 misc_deregister(&tun_miscdev);
1262 unregister_pernet_device(&tun_net_ops);
1265 module_init(tun_init);
1266 module_exit(tun_cleanup);
1267 MODULE_DESCRIPTION(DRV_DESCRIPTION);
1268 MODULE_AUTHOR(DRV_COPYRIGHT);
1269 MODULE_LICENSE("GPL");
1270 MODULE_ALIAS_MISCDEV(TUN_MINOR);