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 <net/net_namespace.h>
67 #include <net/netns/generic.h>
69 #include <asm/system.h>
70 #include <asm/uaccess.h>
72 /* Uncomment to enable debugging */
73 /* #define TUN_DEBUG 1 */
78 #define DBG if(tun->debug)printk
79 #define DBG1 if(debug==2)printk
86 struct list_head list
;
92 wait_queue_head_t read_wait
;
93 struct sk_buff_head readq
;
95 struct net_device
*dev
;
97 struct fasync_struct
*fasync
;
99 unsigned long if_flags
;
100 u8 dev_addr
[ETH_ALEN
];
109 /* Network device part of the driver */
111 static unsigned int tun_net_id
;
113 struct list_head dev_list
;
116 static const struct ethtool_ops tun_ethtool_ops
;
118 /* Net device open. */
119 static int tun_net_open(struct net_device
*dev
)
121 netif_start_queue(dev
);
125 /* Net device close. */
126 static int tun_net_close(struct net_device
*dev
)
128 netif_stop_queue(dev
);
132 /* Net device start xmit */
133 static int tun_net_xmit(struct sk_buff
*skb
, struct net_device
*dev
)
135 struct tun_struct
*tun
= netdev_priv(dev
);
137 DBG(KERN_INFO
"%s: tun_net_xmit %d\n", tun
->dev
->name
, skb
->len
);
139 /* Drop packet if interface is not attached */
143 /* Packet dropping */
144 if (skb_queue_len(&tun
->readq
) >= dev
->tx_queue_len
) {
145 if (!(tun
->flags
& TUN_ONE_QUEUE
)) {
146 /* Normal queueing mode. */
147 /* Packet scheduler handles dropping of further packets. */
148 netif_stop_queue(dev
);
150 /* We won't see all dropped packets individually, so overrun
151 * error is more appropriate. */
152 dev
->stats
.tx_fifo_errors
++;
154 /* Single queue mode.
155 * Driver handles dropping of all packets itself. */
161 skb_queue_tail(&tun
->readq
, skb
);
162 dev
->trans_start
= jiffies
;
164 /* Notify and wake up reader process */
165 if (tun
->flags
& TUN_FASYNC
)
166 kill_fasync(&tun
->fasync
, SIGIO
, POLL_IN
);
167 wake_up_interruptible(&tun
->read_wait
);
171 dev
->stats
.tx_dropped
++;
176 /** Add the specified Ethernet address to this multicast filter. */
178 add_multi(u32
* filter
, const u8
* addr
)
180 int bit_nr
= ether_crc(ETH_ALEN
, addr
) >> 26;
181 filter
[bit_nr
>> 5] |= 1 << (bit_nr
& 31);
184 /** Remove the specified Ethernet addres from this multicast filter. */
186 del_multi(u32
* filter
, const u8
* addr
)
188 int bit_nr
= ether_crc(ETH_ALEN
, addr
) >> 26;
189 filter
[bit_nr
>> 5] &= ~(1 << (bit_nr
& 31));
192 /** Update the list of multicast groups to which the network device belongs.
193 * This list is used to filter packets being sent from the character device to
194 * the network device. */
196 tun_net_mclist(struct net_device
*dev
)
198 struct tun_struct
*tun
= netdev_priv(dev
);
199 const struct dev_mc_list
*mclist
;
201 DECLARE_MAC_BUF(mac
);
202 DBG(KERN_DEBUG
"%s: tun_net_mclist: mc_count %d\n",
203 dev
->name
, dev
->mc_count
);
204 memset(tun
->chr_filter
, 0, sizeof tun
->chr_filter
);
205 for (i
= 0, mclist
= dev
->mc_list
; i
< dev
->mc_count
&& mclist
!= NULL
;
206 i
++, mclist
= mclist
->next
) {
207 add_multi(tun
->net_filter
, mclist
->dmi_addr
);
208 DBG(KERN_DEBUG
"%s: tun_net_mclist: %s\n",
209 dev
->name
, print_mac(mac
, mclist
->dmi_addr
));
214 #define MAX_MTU 65535
217 tun_net_change_mtu(struct net_device
*dev
, int new_mtu
)
219 if (new_mtu
< MIN_MTU
|| new_mtu
+ dev
->hard_header_len
> MAX_MTU
)
225 /* Initialize net device. */
226 static void tun_net_init(struct net_device
*dev
)
228 struct tun_struct
*tun
= netdev_priv(dev
);
230 switch (tun
->flags
& TUN_TYPE_MASK
) {
232 /* Point-to-Point TUN Device */
233 dev
->hard_header_len
= 0;
236 dev
->change_mtu
= tun_net_change_mtu
;
238 /* Zero header length */
239 dev
->type
= ARPHRD_NONE
;
240 dev
->flags
= IFF_POINTOPOINT
| IFF_NOARP
| IFF_MULTICAST
;
241 dev
->tx_queue_len
= TUN_READQ_SIZE
; /* We prefer our own queue length */
245 /* Ethernet TAP Device */
246 dev
->set_multicast_list
= tun_net_mclist
;
249 dev
->change_mtu
= tun_net_change_mtu
;
251 /* random address already created for us by tun_set_iff, use it */
252 memcpy(dev
->dev_addr
, tun
->dev_addr
, min(sizeof(tun
->dev_addr
), sizeof(dev
->dev_addr
)) );
254 dev
->tx_queue_len
= TUN_READQ_SIZE
; /* We prefer our own queue length */
259 /* Character device part */
262 static unsigned int tun_chr_poll(struct file
*file
, poll_table
* wait
)
264 struct tun_struct
*tun
= file
->private_data
;
265 unsigned int mask
= POLLOUT
| POLLWRNORM
;
270 DBG(KERN_INFO
"%s: tun_chr_poll\n", tun
->dev
->name
);
272 poll_wait(file
, &tun
->read_wait
, wait
);
274 if (!skb_queue_empty(&tun
->readq
))
275 mask
|= POLLIN
| POLLRDNORM
;
280 /* Get packet from user space buffer */
281 static __inline__ ssize_t
tun_get_user(struct tun_struct
*tun
, struct iovec
*iv
, size_t count
)
283 struct tun_pi pi
= { 0, __constant_htons(ETH_P_IP
) };
285 size_t len
= count
, align
= 0;
287 if (!(tun
->flags
& TUN_NO_PI
)) {
288 if ((len
-= sizeof(pi
)) > count
)
291 if(memcpy_fromiovec((void *)&pi
, iv
, sizeof(pi
)))
295 if ((tun
->flags
& TUN_TYPE_MASK
) == TUN_TAP_DEV
) {
296 align
= NET_IP_ALIGN
;
297 if (unlikely(len
< ETH_HLEN
))
301 if (!(skb
= alloc_skb(len
+ align
, GFP_KERNEL
))) {
302 tun
->dev
->stats
.rx_dropped
++;
307 skb_reserve(skb
, align
);
308 if (memcpy_fromiovec(skb_put(skb
, len
), iv
, len
)) {
309 tun
->dev
->stats
.rx_dropped
++;
314 switch (tun
->flags
& TUN_TYPE_MASK
) {
316 if (tun
->flags
& TUN_NO_PI
) {
317 switch (skb
->data
[0] & 0xf0) {
319 pi
.proto
= htons(ETH_P_IP
);
322 pi
.proto
= htons(ETH_P_IPV6
);
325 tun
->dev
->stats
.rx_dropped
++;
331 skb_reset_mac_header(skb
);
332 skb
->protocol
= pi
.proto
;
336 skb
->protocol
= eth_type_trans(skb
, tun
->dev
);
340 if (tun
->flags
& TUN_NOCHECKSUM
)
341 skb
->ip_summed
= CHECKSUM_UNNECESSARY
;
344 tun
->dev
->last_rx
= jiffies
;
346 tun
->dev
->stats
.rx_packets
++;
347 tun
->dev
->stats
.rx_bytes
+= len
;
352 static ssize_t
tun_chr_aio_write(struct kiocb
*iocb
, const struct iovec
*iv
,
353 unsigned long count
, loff_t pos
)
355 struct tun_struct
*tun
= iocb
->ki_filp
->private_data
;
360 DBG(KERN_INFO
"%s: tun_chr_write %ld\n", tun
->dev
->name
, count
);
362 return tun_get_user(tun
, (struct iovec
*) iv
, iov_length(iv
, count
));
365 /* Put packet to the user space buffer */
366 static __inline__ ssize_t
tun_put_user(struct tun_struct
*tun
,
368 struct iovec
*iv
, int len
)
370 struct tun_pi pi
= { 0, skb
->protocol
};
373 if (!(tun
->flags
& TUN_NO_PI
)) {
374 if ((len
-= sizeof(pi
)) < 0)
377 if (len
< skb
->len
) {
378 /* Packet will be striped */
379 pi
.flags
|= TUN_PKT_STRIP
;
382 if (memcpy_toiovec(iv
, (void *) &pi
, sizeof(pi
)))
387 len
= min_t(int, skb
->len
, len
);
389 skb_copy_datagram_iovec(skb
, 0, iv
, len
);
392 tun
->dev
->stats
.tx_packets
++;
393 tun
->dev
->stats
.tx_bytes
+= len
;
398 static ssize_t
tun_chr_aio_read(struct kiocb
*iocb
, const struct iovec
*iv
,
399 unsigned long count
, loff_t pos
)
401 struct file
*file
= iocb
->ki_filp
;
402 struct tun_struct
*tun
= file
->private_data
;
403 DECLARE_WAITQUEUE(wait
, current
);
405 ssize_t len
, ret
= 0;
406 DECLARE_MAC_BUF(mac
);
411 DBG(KERN_INFO
"%s: tun_chr_read\n", tun
->dev
->name
);
413 len
= iov_length(iv
, count
);
417 add_wait_queue(&tun
->read_wait
, &wait
);
419 const u8 ones
[ ETH_ALEN
] = { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff };
423 current
->state
= TASK_INTERRUPTIBLE
;
425 /* Read frames from the queue */
426 if (!(skb
=skb_dequeue(&tun
->readq
))) {
427 if (file
->f_flags
& O_NONBLOCK
) {
431 if (signal_pending(current
)) {
436 /* Nothing to read, let's sleep */
440 netif_wake_queue(tun
->dev
);
442 /** Decide whether to accept this packet. This code is designed to
443 * behave identically to an Ethernet interface. Accept the packet if
444 * - we are promiscuous.
445 * - the packet is addressed to us.
446 * - the packet is broadcast.
447 * - the packet is multicast and
448 * - we are multicast promiscous.
449 * - we belong to the multicast group.
451 skb_copy_from_linear_data(skb
, addr
, min_t(size_t, sizeof addr
,
453 bit_nr
= ether_crc(sizeof addr
, addr
) >> 26;
454 if ((tun
->if_flags
& IFF_PROMISC
) ||
455 memcmp(addr
, tun
->dev_addr
, sizeof addr
) == 0 ||
456 memcmp(addr
, ones
, sizeof addr
) == 0 ||
457 (((addr
[0] == 1 && addr
[1] == 0 && addr
[2] == 0x5e) ||
458 (addr
[0] == 0x33 && addr
[1] == 0x33)) &&
459 ((tun
->if_flags
& IFF_ALLMULTI
) ||
460 (tun
->chr_filter
[bit_nr
>> 5] & (1 << (bit_nr
& 31)))))) {
461 DBG(KERN_DEBUG
"%s: tun_chr_readv: accepted: %s\n",
462 tun
->dev
->name
, print_mac(mac
, addr
));
463 ret
= tun_put_user(tun
, skb
, (struct iovec
*) iv
, len
);
467 DBG(KERN_DEBUG
"%s: tun_chr_readv: rejected: %s\n",
468 tun
->dev
->name
, print_mac(mac
, addr
));
474 current
->state
= TASK_RUNNING
;
475 remove_wait_queue(&tun
->read_wait
, &wait
);
480 static void tun_setup(struct net_device
*dev
)
482 struct tun_struct
*tun
= netdev_priv(dev
);
484 skb_queue_head_init(&tun
->readq
);
485 init_waitqueue_head(&tun
->read_wait
);
490 dev
->open
= tun_net_open
;
491 dev
->hard_start_xmit
= tun_net_xmit
;
492 dev
->stop
= tun_net_close
;
493 dev
->ethtool_ops
= &tun_ethtool_ops
;
494 dev
->destructor
= free_netdev
;
495 dev
->features
|= NETIF_F_NETNS_LOCAL
;
498 static struct tun_struct
*tun_get_by_name(struct tun_net
*tn
, const char *name
)
500 struct tun_struct
*tun
;
503 list_for_each_entry(tun
, &tn
->dev_list
, list
) {
504 if (!strncmp(tun
->dev
->name
, name
, IFNAMSIZ
))
511 static int tun_set_iff(struct net
*net
, struct file
*file
, struct ifreq
*ifr
)
514 struct tun_struct
*tun
;
515 struct net_device
*dev
;
518 tn
= net_generic(net
, tun_net_id
);
519 tun
= tun_get_by_name(tn
, ifr
->ifr_name
);
524 /* Check permissions */
525 if (((tun
->owner
!= -1 &&
526 current
->euid
!= tun
->owner
) ||
528 current
->egid
!= tun
->group
)) &&
529 !capable(CAP_NET_ADMIN
))
532 else if (__dev_get_by_name(net
, ifr
->ifr_name
))
536 unsigned long flags
= 0;
540 if (!capable(CAP_NET_ADMIN
))
544 if (ifr
->ifr_flags
& IFF_TUN
) {
546 flags
|= TUN_TUN_DEV
;
548 } else if (ifr
->ifr_flags
& IFF_TAP
) {
550 flags
|= TUN_TAP_DEV
;
556 name
= ifr
->ifr_name
;
558 dev
= alloc_netdev(sizeof(struct tun_struct
), name
,
563 dev_net_set(dev
, net
);
564 tun
= netdev_priv(dev
);
567 /* Be promiscuous by default to maintain previous behaviour. */
568 tun
->if_flags
= IFF_PROMISC
;
569 /* Generate random Ethernet address. */
570 *(__be16
*)tun
->dev_addr
= htons(0x00FF);
571 get_random_bytes(tun
->dev_addr
+ sizeof(u16
), 4);
572 memset(tun
->chr_filter
, 0, sizeof tun
->chr_filter
);
576 if (strchr(dev
->name
, '%')) {
577 err
= dev_alloc_name(dev
, dev
->name
);
582 err
= register_netdevice(tun
->dev
);
586 list_add(&tun
->list
, &tn
->dev_list
);
589 DBG(KERN_INFO
"%s: tun_set_iff\n", tun
->dev
->name
);
591 if (ifr
->ifr_flags
& IFF_NO_PI
)
592 tun
->flags
|= TUN_NO_PI
;
594 tun
->flags
&= ~TUN_NO_PI
;
596 if (ifr
->ifr_flags
& IFF_ONE_QUEUE
)
597 tun
->flags
|= TUN_ONE_QUEUE
;
599 tun
->flags
&= ~TUN_ONE_QUEUE
;
601 file
->private_data
= tun
;
603 get_net(dev_net(tun
->dev
));
605 strcpy(ifr
->ifr_name
, tun
->dev
->name
);
614 static int tun_chr_ioctl(struct inode
*inode
, struct file
*file
,
615 unsigned int cmd
, unsigned long arg
)
617 struct tun_struct
*tun
= file
->private_data
;
618 void __user
* argp
= (void __user
*)arg
;
620 DECLARE_MAC_BUF(mac
);
622 if (cmd
== TUNSETIFF
|| _IOC_TYPE(cmd
) == 0x89)
623 if (copy_from_user(&ifr
, argp
, sizeof ifr
))
626 if (cmd
== TUNSETIFF
&& !tun
) {
629 ifr
.ifr_name
[IFNAMSIZ
-1] = '\0';
632 err
= tun_set_iff(current
->nsproxy
->net_ns
, file
, &ifr
);
638 if (copy_to_user(argp
, &ifr
, sizeof(ifr
)))
646 DBG(KERN_INFO
"%s: tun_chr_ioctl cmd %d\n", tun
->dev
->name
, cmd
);
650 /* Disable/Enable checksum */
652 tun
->flags
|= TUN_NOCHECKSUM
;
654 tun
->flags
&= ~TUN_NOCHECKSUM
;
656 DBG(KERN_INFO
"%s: checksum %s\n",
657 tun
->dev
->name
, arg
? "disabled" : "enabled");
661 /* Disable/Enable persist mode */
663 tun
->flags
|= TUN_PERSIST
;
665 tun
->flags
&= ~TUN_PERSIST
;
667 DBG(KERN_INFO
"%s: persist %s\n",
668 tun
->dev
->name
, arg
? "enabled" : "disabled");
672 /* Set owner of the device */
673 tun
->owner
= (uid_t
) arg
;
675 DBG(KERN_INFO
"%s: owner set to %d\n", tun
->dev
->name
, tun
->owner
);
679 /* Set group of the device */
680 tun
->group
= (gid_t
) arg
;
682 DBG(KERN_INFO
"%s: group set to %d\n", tun
->dev
->name
, tun
->group
);
689 /* Only allow setting the type when the interface is down */
691 if (tun
->dev
->flags
& IFF_UP
) {
692 DBG(KERN_INFO
"%s: Linktype set failed because interface is up\n",
696 tun
->dev
->type
= (int) arg
;
697 DBG(KERN_INFO
"%s: linktype set to %d\n", tun
->dev
->name
, tun
->dev
->type
);
711 ifr
.ifr_flags
= tun
->if_flags
;
712 if (copy_to_user( argp
, &ifr
, sizeof ifr
))
717 /** Set the character device's interface flags. Currently only
718 * IFF_PROMISC and IFF_ALLMULTI are used. */
719 tun
->if_flags
= ifr
.ifr_flags
;
720 DBG(KERN_INFO
"%s: interface flags 0x%lx\n",
721 tun
->dev
->name
, tun
->if_flags
);
725 /* Note: the actual net device's address may be different */
726 memcpy(ifr
.ifr_hwaddr
.sa_data
, tun
->dev_addr
,
727 min(sizeof ifr
.ifr_hwaddr
.sa_data
, sizeof tun
->dev_addr
));
728 if (copy_to_user( argp
, &ifr
, sizeof ifr
))
734 /* try to set the actual net device's hw address */
738 ret
= dev_set_mac_address(tun
->dev
, &ifr
.ifr_hwaddr
);
742 /** Set the character device's hardware address. This is used when
743 * filtering packets being sent from the network device to the character
745 memcpy(tun
->dev_addr
, ifr
.ifr_hwaddr
.sa_data
,
746 min(sizeof ifr
.ifr_hwaddr
.sa_data
, sizeof tun
->dev_addr
));
747 DBG(KERN_DEBUG
"%s: set hardware address: %x:%x:%x:%x:%x:%x\n",
749 tun
->dev_addr
[0], tun
->dev_addr
[1], tun
->dev_addr
[2],
750 tun
->dev_addr
[3], tun
->dev_addr
[4], tun
->dev_addr
[5]);
757 /** Add the specified group to the character device's multicast filter
760 netif_tx_lock_bh(tun
->dev
);
761 add_multi(tun
->chr_filter
, ifr
.ifr_hwaddr
.sa_data
);
762 netif_tx_unlock_bh(tun
->dev
);
765 DBG(KERN_DEBUG
"%s: add multi: %s\n",
766 tun
->dev
->name
, print_mac(mac
, ifr
.ifr_hwaddr
.sa_data
));
770 /** Remove the specified group from the character device's multicast
773 netif_tx_lock_bh(tun
->dev
);
774 del_multi(tun
->chr_filter
, ifr
.ifr_hwaddr
.sa_data
);
775 netif_tx_unlock_bh(tun
->dev
);
778 DBG(KERN_DEBUG
"%s: del multi: %s\n",
779 tun
->dev
->name
, print_mac(mac
, ifr
.ifr_hwaddr
.sa_data
));
789 static int tun_chr_fasync(int fd
, struct file
*file
, int on
)
791 struct tun_struct
*tun
= file
->private_data
;
797 DBG(KERN_INFO
"%s: tun_chr_fasync %d\n", tun
->dev
->name
, on
);
799 if ((ret
= fasync_helper(fd
, file
, on
, &tun
->fasync
)) < 0)
803 ret
= __f_setown(file
, task_pid(current
), PIDTYPE_PID
, 0);
806 tun
->flags
|= TUN_FASYNC
;
808 tun
->flags
&= ~TUN_FASYNC
;
813 static int tun_chr_open(struct inode
*inode
, struct file
* file
)
815 DBG1(KERN_INFO
"tunX: tun_chr_open\n");
816 file
->private_data
= NULL
;
820 static int tun_chr_close(struct inode
*inode
, struct file
*file
)
822 struct tun_struct
*tun
= file
->private_data
;
827 DBG(KERN_INFO
"%s: tun_chr_close\n", tun
->dev
->name
);
829 tun_chr_fasync(-1, file
, 0);
833 /* Detach from net device */
834 file
->private_data
= NULL
;
836 put_net(dev_net(tun
->dev
));
838 /* Drop read queue */
839 skb_queue_purge(&tun
->readq
);
841 if (!(tun
->flags
& TUN_PERSIST
)) {
842 list_del(&tun
->list
);
843 unregister_netdevice(tun
->dev
);
851 static const struct file_operations tun_fops
= {
852 .owner
= THIS_MODULE
,
854 .read
= do_sync_read
,
855 .aio_read
= tun_chr_aio_read
,
856 .write
= do_sync_write
,
857 .aio_write
= tun_chr_aio_write
,
858 .poll
= tun_chr_poll
,
859 .ioctl
= tun_chr_ioctl
,
860 .open
= tun_chr_open
,
861 .release
= tun_chr_close
,
862 .fasync
= tun_chr_fasync
865 static struct miscdevice tun_miscdev
= {
871 /* ethtool interface */
873 static int tun_get_settings(struct net_device
*dev
, struct ethtool_cmd
*cmd
)
876 cmd
->advertising
= 0;
877 cmd
->speed
= SPEED_10
;
878 cmd
->duplex
= DUPLEX_FULL
;
880 cmd
->phy_address
= 0;
881 cmd
->transceiver
= XCVR_INTERNAL
;
882 cmd
->autoneg
= AUTONEG_DISABLE
;
888 static void tun_get_drvinfo(struct net_device
*dev
, struct ethtool_drvinfo
*info
)
890 struct tun_struct
*tun
= netdev_priv(dev
);
892 strcpy(info
->driver
, DRV_NAME
);
893 strcpy(info
->version
, DRV_VERSION
);
894 strcpy(info
->fw_version
, "N/A");
896 switch (tun
->flags
& TUN_TYPE_MASK
) {
898 strcpy(info
->bus_info
, "tun");
901 strcpy(info
->bus_info
, "tap");
906 static u32
tun_get_msglevel(struct net_device
*dev
)
909 struct tun_struct
*tun
= netdev_priv(dev
);
916 static void tun_set_msglevel(struct net_device
*dev
, u32 value
)
919 struct tun_struct
*tun
= netdev_priv(dev
);
924 static u32
tun_get_link(struct net_device
*dev
)
926 struct tun_struct
*tun
= netdev_priv(dev
);
927 return tun
->attached
;
930 static u32
tun_get_rx_csum(struct net_device
*dev
)
932 struct tun_struct
*tun
= netdev_priv(dev
);
933 return (tun
->flags
& TUN_NOCHECKSUM
) == 0;
936 static int tun_set_rx_csum(struct net_device
*dev
, u32 data
)
938 struct tun_struct
*tun
= netdev_priv(dev
);
940 tun
->flags
&= ~TUN_NOCHECKSUM
;
942 tun
->flags
|= TUN_NOCHECKSUM
;
946 static const struct ethtool_ops tun_ethtool_ops
= {
947 .get_settings
= tun_get_settings
,
948 .get_drvinfo
= tun_get_drvinfo
,
949 .get_msglevel
= tun_get_msglevel
,
950 .set_msglevel
= tun_set_msglevel
,
951 .get_link
= tun_get_link
,
952 .get_rx_csum
= tun_get_rx_csum
,
953 .set_rx_csum
= tun_set_rx_csum
956 static int tun_init_net(struct net
*net
)
960 tn
= kmalloc(sizeof(*tn
), GFP_KERNEL
);
964 INIT_LIST_HEAD(&tn
->dev_list
);
966 if (net_assign_generic(net
, tun_net_id
, tn
)) {
974 static void tun_exit_net(struct net
*net
)
977 struct tun_struct
*tun
, *nxt
;
979 tn
= net_generic(net
, tun_net_id
);
982 list_for_each_entry_safe(tun
, nxt
, &tn
->dev_list
, list
) {
983 DBG(KERN_INFO
"%s cleaned up\n", tun
->dev
->name
);
984 unregister_netdevice(tun
->dev
);
991 static struct pernet_operations tun_net_ops
= {
992 .init
= tun_init_net
,
993 .exit
= tun_exit_net
,
996 static int __init
tun_init(void)
1000 printk(KERN_INFO
"tun: %s, %s\n", DRV_DESCRIPTION
, DRV_VERSION
);
1001 printk(KERN_INFO
"tun: %s\n", DRV_COPYRIGHT
);
1003 ret
= register_pernet_gen_device(&tun_net_id
, &tun_net_ops
);
1005 printk(KERN_ERR
"tun: Can't register pernet ops\n");
1009 ret
= misc_register(&tun_miscdev
);
1011 printk(KERN_ERR
"tun: Can't register misc device %d\n", TUN_MINOR
);
1017 unregister_pernet_gen_device(tun_net_id
, &tun_net_ops
);
1022 static void tun_cleanup(void)
1024 misc_deregister(&tun_miscdev
);
1025 unregister_pernet_gen_device(tun_net_id
, &tun_net_ops
);
1028 module_init(tun_init
);
1029 module_exit(tun_cleanup
);
1030 MODULE_DESCRIPTION(DRV_DESCRIPTION
);
1031 MODULE_AUTHOR(DRV_COPYRIGHT
);
1032 MODULE_LICENSE("GPL");
1033 MODULE_ALIAS_MISCDEV(TUN_MINOR
);