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 * Brian Braunstein <linuxkernel@bristyle.com> 2007/03/23
22 * Fixed hw address handling. Now net_device.dev_addr is kept consistent
23 * with tun.dev_addr when the address is set by this module.
25 * Mike Kershaw <dragorn@kismetwireless.net> 2005/08/14
26 * Add TUNSETLINK ioctl to set the link encapsulation
28 * Mark Smith <markzzzsmith@yahoo.com.au>
29 * Use random_ether_addr() for tap MAC address.
31 * Harald Roelle <harald.roelle@ifi.lmu.de> 2004/04/20
32 * Fixes in packet dropping, queue length setting and queue wakeup.
33 * Increased default tx queue length.
37 * Daniel Podlejski <underley@underley.eu.org>
38 * Modifications for 2.3.99-pre5 kernel.
41 #define DRV_NAME "tun"
42 #define DRV_VERSION "1.6"
43 #define DRV_DESCRIPTION "Universal TUN/TAP device driver"
44 #define DRV_COPYRIGHT "(C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>"
46 #include <linux/module.h>
47 #include <linux/errno.h>
48 #include <linux/kernel.h>
49 #include <linux/major.h>
50 #include <linux/slab.h>
51 #include <linux/poll.h>
52 #include <linux/fcntl.h>
53 #include <linux/init.h>
54 #include <linux/skbuff.h>
55 #include <linux/netdevice.h>
56 #include <linux/etherdevice.h>
57 #include <linux/miscdevice.h>
58 #include <linux/ethtool.h>
59 #include <linux/rtnetlink.h>
61 #include <linux/if_arp.h>
62 #include <linux/if_ether.h>
63 #include <linux/if_tun.h>
64 #include <linux/crc32.h>
65 #include <linux/nsproxy.h>
66 #include <linux/virtio_net.h>
67 #include <net/net_namespace.h>
68 #include <net/netns/generic.h>
70 #include <asm/system.h>
71 #include <asm/uaccess.h>
73 /* Uncomment to enable debugging */
74 /* #define TUN_DEBUG 1 */
79 #define DBG if(tun->debug)printk
80 #define DBG1 if(debug==2)printk
87 struct list_head list
;
93 wait_queue_head_t read_wait
;
94 struct sk_buff_head readq
;
96 struct net_device
*dev
;
98 struct fasync_struct
*fasync
;
100 unsigned long if_flags
;
101 u8 dev_addr
[ETH_ALEN
];
110 /* Network device part of the driver */
112 static unsigned int tun_net_id
;
114 struct list_head dev_list
;
117 static const struct ethtool_ops tun_ethtool_ops
;
119 /* Net device open. */
120 static int tun_net_open(struct net_device
*dev
)
122 netif_start_queue(dev
);
126 /* Net device close. */
127 static int tun_net_close(struct net_device
*dev
)
129 netif_stop_queue(dev
);
133 /* Net device start xmit */
134 static int tun_net_xmit(struct sk_buff
*skb
, struct net_device
*dev
)
136 struct tun_struct
*tun
= netdev_priv(dev
);
138 DBG(KERN_INFO
"%s: tun_net_xmit %d\n", tun
->dev
->name
, skb
->len
);
140 /* Drop packet if interface is not attached */
144 /* Packet dropping */
145 if (skb_queue_len(&tun
->readq
) >= dev
->tx_queue_len
) {
146 if (!(tun
->flags
& TUN_ONE_QUEUE
)) {
147 /* Normal queueing mode. */
148 /* Packet scheduler handles dropping of further packets. */
149 netif_stop_queue(dev
);
151 /* We won't see all dropped packets individually, so overrun
152 * error is more appropriate. */
153 dev
->stats
.tx_fifo_errors
++;
155 /* Single queue mode.
156 * Driver handles dropping of all packets itself. */
162 skb_queue_tail(&tun
->readq
, skb
);
163 dev
->trans_start
= jiffies
;
165 /* Notify and wake up reader process */
166 if (tun
->flags
& TUN_FASYNC
)
167 kill_fasync(&tun
->fasync
, SIGIO
, POLL_IN
);
168 wake_up_interruptible(&tun
->read_wait
);
172 dev
->stats
.tx_dropped
++;
177 /** Add the specified Ethernet address to this multicast filter. */
179 add_multi(u32
* filter
, const u8
* addr
)
181 int bit_nr
= ether_crc(ETH_ALEN
, addr
) >> 26;
182 filter
[bit_nr
>> 5] |= 1 << (bit_nr
& 31);
185 /** Remove the specified Ethernet addres from this multicast filter. */
187 del_multi(u32
* filter
, const u8
* addr
)
189 int bit_nr
= ether_crc(ETH_ALEN
, addr
) >> 26;
190 filter
[bit_nr
>> 5] &= ~(1 << (bit_nr
& 31));
193 /** Update the list of multicast groups to which the network device belongs.
194 * This list is used to filter packets being sent from the character device to
195 * the network device. */
197 tun_net_mclist(struct net_device
*dev
)
199 struct tun_struct
*tun
= netdev_priv(dev
);
200 const struct dev_mc_list
*mclist
;
202 DECLARE_MAC_BUF(mac
);
203 DBG(KERN_DEBUG
"%s: tun_net_mclist: mc_count %d\n",
204 dev
->name
, dev
->mc_count
);
205 memset(tun
->chr_filter
, 0, sizeof tun
->chr_filter
);
206 for (i
= 0, mclist
= dev
->mc_list
; i
< dev
->mc_count
&& mclist
!= NULL
;
207 i
++, mclist
= mclist
->next
) {
208 add_multi(tun
->net_filter
, mclist
->dmi_addr
);
209 DBG(KERN_DEBUG
"%s: tun_net_mclist: %s\n",
210 dev
->name
, print_mac(mac
, mclist
->dmi_addr
));
215 #define MAX_MTU 65535
218 tun_net_change_mtu(struct net_device
*dev
, int new_mtu
)
220 if (new_mtu
< MIN_MTU
|| new_mtu
+ dev
->hard_header_len
> MAX_MTU
)
226 /* Initialize net device. */
227 static void tun_net_init(struct net_device
*dev
)
229 struct tun_struct
*tun
= netdev_priv(dev
);
231 switch (tun
->flags
& TUN_TYPE_MASK
) {
233 /* Point-to-Point TUN Device */
234 dev
->hard_header_len
= 0;
237 dev
->change_mtu
= tun_net_change_mtu
;
239 /* Zero header length */
240 dev
->type
= ARPHRD_NONE
;
241 dev
->flags
= IFF_POINTOPOINT
| IFF_NOARP
| IFF_MULTICAST
;
242 dev
->tx_queue_len
= TUN_READQ_SIZE
; /* We prefer our own queue length */
246 /* Ethernet TAP Device */
247 dev
->set_multicast_list
= tun_net_mclist
;
250 dev
->change_mtu
= tun_net_change_mtu
;
252 /* random address already created for us by tun_set_iff, use it */
253 memcpy(dev
->dev_addr
, tun
->dev_addr
, min(sizeof(tun
->dev_addr
), sizeof(dev
->dev_addr
)) );
255 dev
->tx_queue_len
= TUN_READQ_SIZE
; /* We prefer our own queue length */
260 /* Character device part */
263 static unsigned int tun_chr_poll(struct file
*file
, poll_table
* wait
)
265 struct tun_struct
*tun
= file
->private_data
;
266 unsigned int mask
= POLLOUT
| POLLWRNORM
;
271 DBG(KERN_INFO
"%s: tun_chr_poll\n", tun
->dev
->name
);
273 poll_wait(file
, &tun
->read_wait
, wait
);
275 if (!skb_queue_empty(&tun
->readq
))
276 mask
|= POLLIN
| POLLRDNORM
;
281 /* Get packet from user space buffer */
282 static __inline__ ssize_t
tun_get_user(struct tun_struct
*tun
, struct iovec
*iv
, size_t count
)
284 struct tun_pi pi
= { 0, __constant_htons(ETH_P_IP
) };
286 size_t len
= count
, align
= 0;
287 struct virtio_net_hdr gso
= { 0 };
289 if (!(tun
->flags
& TUN_NO_PI
)) {
290 if ((len
-= sizeof(pi
)) > count
)
293 if(memcpy_fromiovec((void *)&pi
, iv
, sizeof(pi
)))
297 if (tun
->flags
& TUN_VNET_HDR
) {
298 if ((len
-= sizeof(gso
)) > count
)
301 if (memcpy_fromiovec((void *)&gso
, iv
, sizeof(gso
)))
304 if (gso
.hdr_len
> len
)
308 if ((tun
->flags
& TUN_TYPE_MASK
) == TUN_TAP_DEV
) {
309 align
= NET_IP_ALIGN
;
310 if (unlikely(len
< ETH_HLEN
))
314 if (!(skb
= alloc_skb(len
+ align
, GFP_KERNEL
))) {
315 tun
->dev
->stats
.rx_dropped
++;
320 skb_reserve(skb
, align
);
321 if (memcpy_fromiovec(skb_put(skb
, len
), iv
, len
)) {
322 tun
->dev
->stats
.rx_dropped
++;
327 if (gso
.flags
& VIRTIO_NET_HDR_F_NEEDS_CSUM
) {
328 if (!skb_partial_csum_set(skb
, gso
.csum_start
,
330 tun
->dev
->stats
.rx_frame_errors
++;
334 } else if (tun
->flags
& TUN_NOCHECKSUM
)
335 skb
->ip_summed
= CHECKSUM_UNNECESSARY
;
337 switch (tun
->flags
& TUN_TYPE_MASK
) {
339 if (tun
->flags
& TUN_NO_PI
) {
340 switch (skb
->data
[0] & 0xf0) {
342 pi
.proto
= htons(ETH_P_IP
);
345 pi
.proto
= htons(ETH_P_IPV6
);
348 tun
->dev
->stats
.rx_dropped
++;
354 skb_reset_mac_header(skb
);
355 skb
->protocol
= pi
.proto
;
359 skb
->protocol
= eth_type_trans(skb
, tun
->dev
);
363 if (gso
.gso_type
!= VIRTIO_NET_HDR_GSO_NONE
) {
365 switch (gso
.gso_type
& ~VIRTIO_NET_HDR_GSO_ECN
) {
366 case VIRTIO_NET_HDR_GSO_TCPV4
:
367 skb_shinfo(skb
)->gso_type
= SKB_GSO_TCPV4
;
369 case VIRTIO_NET_HDR_GSO_TCPV6
:
370 skb_shinfo(skb
)->gso_type
= SKB_GSO_TCPV6
;
373 tun
->dev
->stats
.rx_frame_errors
++;
378 if (gso
.gso_type
& VIRTIO_NET_HDR_GSO_ECN
)
379 skb_shinfo(skb
)->gso_type
|= SKB_GSO_TCP_ECN
;
381 skb_shinfo(skb
)->gso_size
= gso
.gso_size
;
382 if (skb_shinfo(skb
)->gso_size
== 0) {
383 tun
->dev
->stats
.rx_frame_errors
++;
388 /* Header must be checked, and gso_segs computed. */
389 skb_shinfo(skb
)->gso_type
|= SKB_GSO_DODGY
;
390 skb_shinfo(skb
)->gso_segs
= 0;
394 tun
->dev
->last_rx
= jiffies
;
396 tun
->dev
->stats
.rx_packets
++;
397 tun
->dev
->stats
.rx_bytes
+= len
;
402 static ssize_t
tun_chr_aio_write(struct kiocb
*iocb
, const struct iovec
*iv
,
403 unsigned long count
, loff_t pos
)
405 struct tun_struct
*tun
= iocb
->ki_filp
->private_data
;
410 DBG(KERN_INFO
"%s: tun_chr_write %ld\n", tun
->dev
->name
, count
);
412 return tun_get_user(tun
, (struct iovec
*) iv
, iov_length(iv
, count
));
415 /* Put packet to the user space buffer */
416 static __inline__ ssize_t
tun_put_user(struct tun_struct
*tun
,
418 struct iovec
*iv
, int len
)
420 struct tun_pi pi
= { 0, skb
->protocol
};
423 if (!(tun
->flags
& TUN_NO_PI
)) {
424 if ((len
-= sizeof(pi
)) < 0)
427 if (len
< skb
->len
) {
428 /* Packet will be striped */
429 pi
.flags
|= TUN_PKT_STRIP
;
432 if (memcpy_toiovec(iv
, (void *) &pi
, sizeof(pi
)))
437 if (tun
->flags
& TUN_VNET_HDR
) {
438 struct virtio_net_hdr gso
= { 0 }; /* no info leak */
439 if ((len
-= sizeof(gso
)) < 0)
442 if (skb_is_gso(skb
)) {
443 struct skb_shared_info
*sinfo
= skb_shinfo(skb
);
445 /* This is a hint as to how much should be linear. */
446 gso
.hdr_len
= skb_headlen(skb
);
447 gso
.gso_size
= sinfo
->gso_size
;
448 if (sinfo
->gso_type
& SKB_GSO_TCPV4
)
449 gso
.gso_type
= VIRTIO_NET_HDR_GSO_TCPV4
;
450 else if (sinfo
->gso_type
& SKB_GSO_TCPV6
)
451 gso
.gso_type
= VIRTIO_NET_HDR_GSO_TCPV6
;
454 if (sinfo
->gso_type
& SKB_GSO_TCP_ECN
)
455 gso
.gso_type
|= VIRTIO_NET_HDR_GSO_ECN
;
457 gso
.gso_type
= VIRTIO_NET_HDR_GSO_NONE
;
459 if (skb
->ip_summed
== CHECKSUM_PARTIAL
) {
460 gso
.flags
= VIRTIO_NET_HDR_F_NEEDS_CSUM
;
461 gso
.csum_start
= skb
->csum_start
- skb_headroom(skb
);
462 gso
.csum_offset
= skb
->csum_offset
;
463 } /* else everything is zero */
465 if (unlikely(memcpy_toiovec(iv
, (void *)&gso
, sizeof(gso
))))
467 total
+= sizeof(gso
);
470 len
= min_t(int, skb
->len
, len
);
472 skb_copy_datagram_iovec(skb
, 0, iv
, len
);
475 tun
->dev
->stats
.tx_packets
++;
476 tun
->dev
->stats
.tx_bytes
+= len
;
481 static ssize_t
tun_chr_aio_read(struct kiocb
*iocb
, const struct iovec
*iv
,
482 unsigned long count
, loff_t pos
)
484 struct file
*file
= iocb
->ki_filp
;
485 struct tun_struct
*tun
= file
->private_data
;
486 DECLARE_WAITQUEUE(wait
, current
);
488 ssize_t len
, ret
= 0;
489 DECLARE_MAC_BUF(mac
);
494 DBG(KERN_INFO
"%s: tun_chr_read\n", tun
->dev
->name
);
496 len
= iov_length(iv
, count
);
500 add_wait_queue(&tun
->read_wait
, &wait
);
502 const u8 ones
[ ETH_ALEN
] = { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff };
506 current
->state
= TASK_INTERRUPTIBLE
;
508 /* Read frames from the queue */
509 if (!(skb
=skb_dequeue(&tun
->readq
))) {
510 if (file
->f_flags
& O_NONBLOCK
) {
514 if (signal_pending(current
)) {
519 /* Nothing to read, let's sleep */
523 netif_wake_queue(tun
->dev
);
525 /** Decide whether to accept this packet. This code is designed to
526 * behave identically to an Ethernet interface. Accept the packet if
527 * - we are promiscuous.
528 * - the packet is addressed to us.
529 * - the packet is broadcast.
530 * - the packet is multicast and
531 * - we are multicast promiscous.
532 * - we belong to the multicast group.
534 skb_copy_from_linear_data(skb
, addr
, min_t(size_t, sizeof addr
,
536 bit_nr
= ether_crc(sizeof addr
, addr
) >> 26;
537 if ((tun
->if_flags
& IFF_PROMISC
) ||
538 memcmp(addr
, tun
->dev_addr
, sizeof addr
) == 0 ||
539 memcmp(addr
, ones
, sizeof addr
) == 0 ||
540 (((addr
[0] == 1 && addr
[1] == 0 && addr
[2] == 0x5e) ||
541 (addr
[0] == 0x33 && addr
[1] == 0x33)) &&
542 ((tun
->if_flags
& IFF_ALLMULTI
) ||
543 (tun
->chr_filter
[bit_nr
>> 5] & (1 << (bit_nr
& 31)))))) {
544 DBG(KERN_DEBUG
"%s: tun_chr_readv: accepted: %s\n",
545 tun
->dev
->name
, print_mac(mac
, addr
));
546 ret
= tun_put_user(tun
, skb
, (struct iovec
*) iv
, len
);
550 DBG(KERN_DEBUG
"%s: tun_chr_readv: rejected: %s\n",
551 tun
->dev
->name
, print_mac(mac
, addr
));
557 current
->state
= TASK_RUNNING
;
558 remove_wait_queue(&tun
->read_wait
, &wait
);
563 static void tun_setup(struct net_device
*dev
)
565 struct tun_struct
*tun
= netdev_priv(dev
);
567 skb_queue_head_init(&tun
->readq
);
568 init_waitqueue_head(&tun
->read_wait
);
573 dev
->open
= tun_net_open
;
574 dev
->hard_start_xmit
= tun_net_xmit
;
575 dev
->stop
= tun_net_close
;
576 dev
->ethtool_ops
= &tun_ethtool_ops
;
577 dev
->destructor
= free_netdev
;
578 dev
->features
|= NETIF_F_NETNS_LOCAL
;
581 static struct tun_struct
*tun_get_by_name(struct tun_net
*tn
, const char *name
)
583 struct tun_struct
*tun
;
586 list_for_each_entry(tun
, &tn
->dev_list
, list
) {
587 if (!strncmp(tun
->dev
->name
, name
, IFNAMSIZ
))
594 static int tun_set_iff(struct net
*net
, struct file
*file
, struct ifreq
*ifr
)
597 struct tun_struct
*tun
;
598 struct net_device
*dev
;
601 tn
= net_generic(net
, tun_net_id
);
602 tun
= tun_get_by_name(tn
, ifr
->ifr_name
);
607 /* Check permissions */
608 if (((tun
->owner
!= -1 &&
609 current
->euid
!= tun
->owner
) ||
611 current
->egid
!= tun
->group
)) &&
612 !capable(CAP_NET_ADMIN
))
615 else if (__dev_get_by_name(net
, ifr
->ifr_name
))
619 unsigned long flags
= 0;
623 if (!capable(CAP_NET_ADMIN
))
627 if (ifr
->ifr_flags
& IFF_TUN
) {
629 flags
|= TUN_TUN_DEV
;
631 } else if (ifr
->ifr_flags
& IFF_TAP
) {
633 flags
|= TUN_TAP_DEV
;
639 name
= ifr
->ifr_name
;
641 dev
= alloc_netdev(sizeof(struct tun_struct
), name
,
646 dev_net_set(dev
, net
);
647 tun
= netdev_priv(dev
);
650 /* Be promiscuous by default to maintain previous behaviour. */
651 tun
->if_flags
= IFF_PROMISC
;
652 /* Generate random Ethernet address. */
653 *(__be16
*)tun
->dev_addr
= htons(0x00FF);
654 get_random_bytes(tun
->dev_addr
+ sizeof(u16
), 4);
655 memset(tun
->chr_filter
, 0, sizeof tun
->chr_filter
);
659 if (strchr(dev
->name
, '%')) {
660 err
= dev_alloc_name(dev
, dev
->name
);
665 err
= register_netdevice(tun
->dev
);
669 list_add(&tun
->list
, &tn
->dev_list
);
672 DBG(KERN_INFO
"%s: tun_set_iff\n", tun
->dev
->name
);
674 if (ifr
->ifr_flags
& IFF_NO_PI
)
675 tun
->flags
|= TUN_NO_PI
;
677 tun
->flags
&= ~TUN_NO_PI
;
679 if (ifr
->ifr_flags
& IFF_ONE_QUEUE
)
680 tun
->flags
|= TUN_ONE_QUEUE
;
682 tun
->flags
&= ~TUN_ONE_QUEUE
;
684 if (ifr
->ifr_flags
& IFF_VNET_HDR
)
685 tun
->flags
|= TUN_VNET_HDR
;
687 tun
->flags
&= ~TUN_VNET_HDR
;
689 file
->private_data
= tun
;
691 get_net(dev_net(tun
->dev
));
693 strcpy(ifr
->ifr_name
, tun
->dev
->name
);
702 /* This is like a cut-down ethtool ops, except done via tun fd so no
704 static int set_offload(struct net_device
*dev
, unsigned long arg
)
706 unsigned int old_features
, features
;
708 old_features
= dev
->features
;
709 /* Unset features, set them as we chew on the arg. */
710 features
= (old_features
& ~(NETIF_F_HW_CSUM
|NETIF_F_SG
|NETIF_F_FRAGLIST
711 |NETIF_F_TSO_ECN
|NETIF_F_TSO
|NETIF_F_TSO6
));
713 if (arg
& TUN_F_CSUM
) {
714 features
|= NETIF_F_HW_CSUM
|NETIF_F_SG
|NETIF_F_FRAGLIST
;
717 if (arg
& (TUN_F_TSO4
|TUN_F_TSO6
)) {
718 if (arg
& TUN_F_TSO_ECN
) {
719 features
|= NETIF_F_TSO_ECN
;
720 arg
&= ~TUN_F_TSO_ECN
;
722 if (arg
& TUN_F_TSO4
)
723 features
|= NETIF_F_TSO
;
724 if (arg
& TUN_F_TSO6
)
725 features
|= NETIF_F_TSO6
;
726 arg
&= ~(TUN_F_TSO4
|TUN_F_TSO6
);
730 /* This gives the user a way to test for new features in future by
731 * trying to set them. */
735 dev
->features
= features
;
736 if (old_features
!= dev
->features
)
737 netdev_features_change(dev
);
742 static int tun_chr_ioctl(struct inode
*inode
, struct file
*file
,
743 unsigned int cmd
, unsigned long arg
)
745 struct tun_struct
*tun
= file
->private_data
;
746 void __user
* argp
= (void __user
*)arg
;
748 DECLARE_MAC_BUF(mac
);
750 if (cmd
== TUNSETIFF
|| _IOC_TYPE(cmd
) == 0x89)
751 if (copy_from_user(&ifr
, argp
, sizeof ifr
))
754 if (cmd
== TUNSETIFF
&& !tun
) {
757 ifr
.ifr_name
[IFNAMSIZ
-1] = '\0';
760 err
= tun_set_iff(current
->nsproxy
->net_ns
, file
, &ifr
);
766 if (copy_to_user(argp
, &ifr
, sizeof(ifr
)))
771 if (cmd
== TUNGETFEATURES
) {
772 /* Currently this just means: "what IFF flags are valid?".
773 * This is needed because we never checked for invalid flags on
775 return put_user(IFF_TUN
| IFF_TAP
| IFF_NO_PI
| IFF_ONE_QUEUE
|
777 (unsigned int __user
*)argp
);
783 DBG(KERN_INFO
"%s: tun_chr_ioctl cmd %d\n", tun
->dev
->name
, cmd
);
787 /* Disable/Enable checksum */
789 tun
->flags
|= TUN_NOCHECKSUM
;
791 tun
->flags
&= ~TUN_NOCHECKSUM
;
793 DBG(KERN_INFO
"%s: checksum %s\n",
794 tun
->dev
->name
, arg
? "disabled" : "enabled");
798 /* Disable/Enable persist mode */
800 tun
->flags
|= TUN_PERSIST
;
802 tun
->flags
&= ~TUN_PERSIST
;
804 DBG(KERN_INFO
"%s: persist %s\n",
805 tun
->dev
->name
, arg
? "enabled" : "disabled");
809 /* Set owner of the device */
810 tun
->owner
= (uid_t
) arg
;
812 DBG(KERN_INFO
"%s: owner set to %d\n", tun
->dev
->name
, tun
->owner
);
816 /* Set group of the device */
817 tun
->group
= (gid_t
) arg
;
819 DBG(KERN_INFO
"%s: group set to %d\n", tun
->dev
->name
, tun
->group
);
826 /* Only allow setting the type when the interface is down */
828 if (tun
->dev
->flags
& IFF_UP
) {
829 DBG(KERN_INFO
"%s: Linktype set failed because interface is up\n",
833 tun
->dev
->type
= (int) arg
;
834 DBG(KERN_INFO
"%s: linktype set to %d\n", tun
->dev
->name
, tun
->dev
->type
);
851 ret
= set_offload(tun
->dev
, arg
);
857 ifr
.ifr_flags
= tun
->if_flags
;
858 if (copy_to_user( argp
, &ifr
, sizeof ifr
))
863 /** Set the character device's interface flags. Currently only
864 * IFF_PROMISC and IFF_ALLMULTI are used. */
865 tun
->if_flags
= ifr
.ifr_flags
;
866 DBG(KERN_INFO
"%s: interface flags 0x%lx\n",
867 tun
->dev
->name
, tun
->if_flags
);
871 /* Note: the actual net device's address may be different */
872 memcpy(ifr
.ifr_hwaddr
.sa_data
, tun
->dev_addr
,
873 min(sizeof ifr
.ifr_hwaddr
.sa_data
, sizeof tun
->dev_addr
));
874 if (copy_to_user( argp
, &ifr
, sizeof ifr
))
880 /* try to set the actual net device's hw address */
884 ret
= dev_set_mac_address(tun
->dev
, &ifr
.ifr_hwaddr
);
888 /** Set the character device's hardware address. This is used when
889 * filtering packets being sent from the network device to the character
891 memcpy(tun
->dev_addr
, ifr
.ifr_hwaddr
.sa_data
,
892 min(sizeof ifr
.ifr_hwaddr
.sa_data
, sizeof tun
->dev_addr
));
893 DBG(KERN_DEBUG
"%s: set hardware address: %x:%x:%x:%x:%x:%x\n",
895 tun
->dev_addr
[0], tun
->dev_addr
[1], tun
->dev_addr
[2],
896 tun
->dev_addr
[3], tun
->dev_addr
[4], tun
->dev_addr
[5]);
903 /** Add the specified group to the character device's multicast filter
906 netif_tx_lock_bh(tun
->dev
);
907 add_multi(tun
->chr_filter
, ifr
.ifr_hwaddr
.sa_data
);
908 netif_tx_unlock_bh(tun
->dev
);
911 DBG(KERN_DEBUG
"%s: add multi: %s\n",
912 tun
->dev
->name
, print_mac(mac
, ifr
.ifr_hwaddr
.sa_data
));
916 /** Remove the specified group from the character device's multicast
919 netif_tx_lock_bh(tun
->dev
);
920 del_multi(tun
->chr_filter
, ifr
.ifr_hwaddr
.sa_data
);
921 netif_tx_unlock_bh(tun
->dev
);
924 DBG(KERN_DEBUG
"%s: del multi: %s\n",
925 tun
->dev
->name
, print_mac(mac
, ifr
.ifr_hwaddr
.sa_data
));
935 static int tun_chr_fasync(int fd
, struct file
*file
, int on
)
937 struct tun_struct
*tun
= file
->private_data
;
943 DBG(KERN_INFO
"%s: tun_chr_fasync %d\n", tun
->dev
->name
, on
);
945 if ((ret
= fasync_helper(fd
, file
, on
, &tun
->fasync
)) < 0)
949 ret
= __f_setown(file
, task_pid(current
), PIDTYPE_PID
, 0);
952 tun
->flags
|= TUN_FASYNC
;
954 tun
->flags
&= ~TUN_FASYNC
;
959 static int tun_chr_open(struct inode
*inode
, struct file
* file
)
961 DBG1(KERN_INFO
"tunX: tun_chr_open\n");
962 file
->private_data
= NULL
;
966 static int tun_chr_close(struct inode
*inode
, struct file
*file
)
968 struct tun_struct
*tun
= file
->private_data
;
973 DBG(KERN_INFO
"%s: tun_chr_close\n", tun
->dev
->name
);
975 tun_chr_fasync(-1, file
, 0);
979 /* Detach from net device */
980 file
->private_data
= NULL
;
982 put_net(dev_net(tun
->dev
));
984 /* Drop read queue */
985 skb_queue_purge(&tun
->readq
);
987 if (!(tun
->flags
& TUN_PERSIST
)) {
988 list_del(&tun
->list
);
989 unregister_netdevice(tun
->dev
);
997 static const struct file_operations tun_fops
= {
998 .owner
= THIS_MODULE
,
1000 .read
= do_sync_read
,
1001 .aio_read
= tun_chr_aio_read
,
1002 .write
= do_sync_write
,
1003 .aio_write
= tun_chr_aio_write
,
1004 .poll
= tun_chr_poll
,
1005 .ioctl
= tun_chr_ioctl
,
1006 .open
= tun_chr_open
,
1007 .release
= tun_chr_close
,
1008 .fasync
= tun_chr_fasync
1011 static struct miscdevice tun_miscdev
= {
1017 /* ethtool interface */
1019 static int tun_get_settings(struct net_device
*dev
, struct ethtool_cmd
*cmd
)
1022 cmd
->advertising
= 0;
1023 cmd
->speed
= SPEED_10
;
1024 cmd
->duplex
= DUPLEX_FULL
;
1025 cmd
->port
= PORT_TP
;
1026 cmd
->phy_address
= 0;
1027 cmd
->transceiver
= XCVR_INTERNAL
;
1028 cmd
->autoneg
= AUTONEG_DISABLE
;
1034 static void tun_get_drvinfo(struct net_device
*dev
, struct ethtool_drvinfo
*info
)
1036 struct tun_struct
*tun
= netdev_priv(dev
);
1038 strcpy(info
->driver
, DRV_NAME
);
1039 strcpy(info
->version
, DRV_VERSION
);
1040 strcpy(info
->fw_version
, "N/A");
1042 switch (tun
->flags
& TUN_TYPE_MASK
) {
1044 strcpy(info
->bus_info
, "tun");
1047 strcpy(info
->bus_info
, "tap");
1052 static u32
tun_get_msglevel(struct net_device
*dev
)
1055 struct tun_struct
*tun
= netdev_priv(dev
);
1062 static void tun_set_msglevel(struct net_device
*dev
, u32 value
)
1065 struct tun_struct
*tun
= netdev_priv(dev
);
1070 static u32
tun_get_link(struct net_device
*dev
)
1072 struct tun_struct
*tun
= netdev_priv(dev
);
1073 return tun
->attached
;
1076 static u32
tun_get_rx_csum(struct net_device
*dev
)
1078 struct tun_struct
*tun
= netdev_priv(dev
);
1079 return (tun
->flags
& TUN_NOCHECKSUM
) == 0;
1082 static int tun_set_rx_csum(struct net_device
*dev
, u32 data
)
1084 struct tun_struct
*tun
= netdev_priv(dev
);
1086 tun
->flags
&= ~TUN_NOCHECKSUM
;
1088 tun
->flags
|= TUN_NOCHECKSUM
;
1092 static const struct ethtool_ops tun_ethtool_ops
= {
1093 .get_settings
= tun_get_settings
,
1094 .get_drvinfo
= tun_get_drvinfo
,
1095 .get_msglevel
= tun_get_msglevel
,
1096 .set_msglevel
= tun_set_msglevel
,
1097 .get_link
= tun_get_link
,
1098 .get_rx_csum
= tun_get_rx_csum
,
1099 .set_rx_csum
= tun_set_rx_csum
1102 static int tun_init_net(struct net
*net
)
1106 tn
= kmalloc(sizeof(*tn
), GFP_KERNEL
);
1110 INIT_LIST_HEAD(&tn
->dev_list
);
1112 if (net_assign_generic(net
, tun_net_id
, tn
)) {
1120 static void tun_exit_net(struct net
*net
)
1123 struct tun_struct
*tun
, *nxt
;
1125 tn
= net_generic(net
, tun_net_id
);
1128 list_for_each_entry_safe(tun
, nxt
, &tn
->dev_list
, list
) {
1129 DBG(KERN_INFO
"%s cleaned up\n", tun
->dev
->name
);
1130 unregister_netdevice(tun
->dev
);
1137 static struct pernet_operations tun_net_ops
= {
1138 .init
= tun_init_net
,
1139 .exit
= tun_exit_net
,
1142 static int __init
tun_init(void)
1146 printk(KERN_INFO
"tun: %s, %s\n", DRV_DESCRIPTION
, DRV_VERSION
);
1147 printk(KERN_INFO
"tun: %s\n", DRV_COPYRIGHT
);
1149 ret
= register_pernet_gen_device(&tun_net_id
, &tun_net_ops
);
1151 printk(KERN_ERR
"tun: Can't register pernet ops\n");
1155 ret
= misc_register(&tun_miscdev
);
1157 printk(KERN_ERR
"tun: Can't register misc device %d\n", TUN_MINOR
);
1163 unregister_pernet_gen_device(tun_net_id
, &tun_net_ops
);
1168 static void tun_cleanup(void)
1170 misc_deregister(&tun_miscdev
);
1171 unregister_pernet_gen_device(tun_net_id
, &tun_net_ops
);
1174 module_init(tun_init
);
1175 module_exit(tun_cleanup
);
1176 MODULE_DESCRIPTION(DRV_DESCRIPTION
);
1177 MODULE_AUTHOR(DRV_COPYRIGHT
);
1178 MODULE_LICENSE("GPL");
1179 MODULE_ALIAS_MISCDEV(TUN_MINOR
);