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 eth_random_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 pr_fmt(fmt) KBUILD_MODNAME ": " fmt
39 #define DRV_NAME "tun"
40 #define DRV_VERSION "1.6"
41 #define DRV_DESCRIPTION "Universal TUN/TAP device driver"
42 #define DRV_COPYRIGHT "(C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>"
44 #include <linux/module.h>
45 #include <linux/errno.h>
46 #include <linux/kernel.h>
47 #include <linux/major.h>
48 #include <linux/slab.h>
49 #include <linux/poll.h>
50 #include <linux/fcntl.h>
51 #include <linux/init.h>
52 #include <linux/skbuff.h>
53 #include <linux/netdevice.h>
54 #include <linux/etherdevice.h>
55 #include <linux/miscdevice.h>
56 #include <linux/ethtool.h>
57 #include <linux/rtnetlink.h>
58 #include <linux/compat.h>
60 #include <linux/if_arp.h>
61 #include <linux/if_ether.h>
62 #include <linux/if_tun.h>
63 #include <linux/crc32.h>
64 #include <linux/nsproxy.h>
65 #include <linux/virtio_net.h>
66 #include <linux/rcupdate.h>
67 #include <net/net_namespace.h>
68 #include <net/netns/generic.h>
69 #include <net/rtnetlink.h>
72 #include <asm/uaccess.h>
74 /* Uncomment to enable debugging */
75 /* #define TUN_DEBUG 1 */
80 #define tun_debug(level, tun, fmt, args...) \
83 netdev_printk(level, tun->dev, fmt, ##args); \
85 #define DBG1(level, fmt, args...) \
88 printk(level fmt, ##args); \
91 #define tun_debug(level, tun, fmt, args...) \
94 netdev_printk(level, tun->dev, fmt, ##args); \
96 #define DBG1(level, fmt, args...) \
99 printk(level fmt, ##args); \
103 #define GOODCOPY_LEN 128
105 #define FLT_EXACT_COUNT 8
107 unsigned int count
; /* Number of addrs. Zero means disabled */
108 u32 mask
[2]; /* Mask of the hashed addrs */
109 unsigned char addr
[FLT_EXACT_COUNT
][ETH_ALEN
];
112 /* 1024 is probably a high enough limit: modern hypervisors seem to support on
113 * the order of 100-200 CPUs so this leaves us some breathing space if we want
114 * to match a queue per guest CPU.
116 #define MAX_TAP_QUEUES 1024
118 #define TUN_FLOW_EXPIRE (3 * HZ)
120 /* A tun_file connects an open character device to a tuntap netdevice. It
121 * also contains all socket related strctures (except sock_fprog and tap_filter)
122 * to serve as one transmit queue for tuntap device. The sock_fprog and
123 * tap_filter were kept in tun_struct since they were used for filtering for the
124 * netdevice not for a specific queue (at least I didn't see the requirement for
128 * The tun_file and tun_struct are loosely coupled, the pointer from one to the
129 * other can only be read while rcu_read_lock or rtnl_lock is held.
133 struct socket socket
;
135 struct tun_struct __rcu
*tun
;
137 struct fasync_struct
*fasync
;
138 /* only used for fasnyc */
141 struct list_head next
;
142 struct tun_struct
*detached
;
145 struct tun_flow_entry
{
146 struct hlist_node hash_link
;
148 struct tun_struct
*tun
;
152 unsigned long updated
;
155 #define TUN_NUM_FLOW_ENTRIES 1024
157 /* Since the socket were moved to tun_file, to preserve the behavior of persist
158 * device, socket filter, sndbuf and vnet header size were restore when the
159 * file were attached to a persist device.
162 struct tun_file __rcu
*tfiles
[MAX_TAP_QUEUES
];
163 unsigned int numqueues
;
168 struct net_device
*dev
;
169 netdev_features_t set_features
;
170 #define TUN_USER_FEATURES (NETIF_F_HW_CSUM|NETIF_F_TSO_ECN|NETIF_F_TSO| \
171 NETIF_F_TSO6|NETIF_F_UFO)
175 struct tap_filter txflt
;
176 struct sock_fprog fprog
;
177 /* protected by rtnl lock */
178 bool filter_attached
;
183 struct hlist_head flows
[TUN_NUM_FLOW_ENTRIES
];
184 struct timer_list flow_gc_timer
;
185 unsigned long ageing_time
;
186 unsigned int numdisabled
;
187 struct list_head disabled
;
190 static inline u32
tun_hashfn(u32 rxhash
)
192 return rxhash
& 0x3ff;
195 static struct tun_flow_entry
*tun_flow_find(struct hlist_head
*head
, u32 rxhash
)
197 struct tun_flow_entry
*e
;
198 struct hlist_node
*n
;
200 hlist_for_each_entry_rcu(e
, n
, head
, hash_link
) {
201 if (e
->rxhash
== rxhash
)
207 static struct tun_flow_entry
*tun_flow_create(struct tun_struct
*tun
,
208 struct hlist_head
*head
,
209 u32 rxhash
, u16 queue_index
)
211 struct tun_flow_entry
*e
= kmalloc(sizeof(*e
), GFP_ATOMIC
);
214 tun_debug(KERN_INFO
, tun
, "create flow: hash %u index %u\n",
215 rxhash
, queue_index
);
216 e
->updated
= jiffies
;
218 e
->queue_index
= queue_index
;
220 hlist_add_head_rcu(&e
->hash_link
, head
);
225 static void tun_flow_delete(struct tun_struct
*tun
, struct tun_flow_entry
*e
)
227 tun_debug(KERN_INFO
, tun
, "delete flow: hash %u index %u\n",
228 e
->rxhash
, e
->queue_index
);
229 hlist_del_rcu(&e
->hash_link
);
233 static void tun_flow_flush(struct tun_struct
*tun
)
237 spin_lock_bh(&tun
->lock
);
238 for (i
= 0; i
< TUN_NUM_FLOW_ENTRIES
; i
++) {
239 struct tun_flow_entry
*e
;
240 struct hlist_node
*h
, *n
;
242 hlist_for_each_entry_safe(e
, h
, n
, &tun
->flows
[i
], hash_link
)
243 tun_flow_delete(tun
, e
);
245 spin_unlock_bh(&tun
->lock
);
248 static void tun_flow_delete_by_queue(struct tun_struct
*tun
, u16 queue_index
)
252 spin_lock_bh(&tun
->lock
);
253 for (i
= 0; i
< TUN_NUM_FLOW_ENTRIES
; i
++) {
254 struct tun_flow_entry
*e
;
255 struct hlist_node
*h
, *n
;
257 hlist_for_each_entry_safe(e
, h
, n
, &tun
->flows
[i
], hash_link
) {
258 if (e
->queue_index
== queue_index
)
259 tun_flow_delete(tun
, e
);
262 spin_unlock_bh(&tun
->lock
);
265 static void tun_flow_cleanup(unsigned long data
)
267 struct tun_struct
*tun
= (struct tun_struct
*)data
;
268 unsigned long delay
= tun
->ageing_time
;
269 unsigned long next_timer
= jiffies
+ delay
;
270 unsigned long count
= 0;
273 tun_debug(KERN_INFO
, tun
, "tun_flow_cleanup\n");
275 spin_lock_bh(&tun
->lock
);
276 for (i
= 0; i
< TUN_NUM_FLOW_ENTRIES
; i
++) {
277 struct tun_flow_entry
*e
;
278 struct hlist_node
*h
, *n
;
280 hlist_for_each_entry_safe(e
, h
, n
, &tun
->flows
[i
], hash_link
) {
281 unsigned long this_timer
;
283 this_timer
= e
->updated
+ delay
;
284 if (time_before_eq(this_timer
, jiffies
))
285 tun_flow_delete(tun
, e
);
286 else if (time_before(this_timer
, next_timer
))
287 next_timer
= this_timer
;
292 mod_timer(&tun
->flow_gc_timer
, round_jiffies_up(next_timer
));
293 spin_unlock_bh(&tun
->lock
);
296 static void tun_flow_update(struct tun_struct
*tun
, u32 rxhash
,
299 struct hlist_head
*head
;
300 struct tun_flow_entry
*e
;
301 unsigned long delay
= tun
->ageing_time
;
306 head
= &tun
->flows
[tun_hashfn(rxhash
)];
310 if (tun
->numqueues
== 1)
313 e
= tun_flow_find(head
, rxhash
);
315 /* TODO: keep queueing to old queue until it's empty? */
316 e
->queue_index
= queue_index
;
317 e
->updated
= jiffies
;
319 spin_lock_bh(&tun
->lock
);
320 if (!tun_flow_find(head
, rxhash
))
321 tun_flow_create(tun
, head
, rxhash
, queue_index
);
323 if (!timer_pending(&tun
->flow_gc_timer
))
324 mod_timer(&tun
->flow_gc_timer
,
325 round_jiffies_up(jiffies
+ delay
));
326 spin_unlock_bh(&tun
->lock
);
333 /* We try to identify a flow through its rxhash first. The reason that
334 * we do not check rxq no. is becuase some cards(e.g 82599), chooses
335 * the rxq based on the txq where the last packet of the flow comes. As
336 * the userspace application move between processors, we may get a
337 * different rxq no. here. If we could not get rxhash, then we would
338 * hope the rxq no. may help here.
340 static u16
tun_select_queue(struct net_device
*dev
, struct sk_buff
*skb
)
342 struct tun_struct
*tun
= netdev_priv(dev
);
343 struct tun_flow_entry
*e
;
348 numqueues
= tun
->numqueues
;
350 txq
= skb_get_rxhash(skb
);
352 e
= tun_flow_find(&tun
->flows
[tun_hashfn(txq
)], txq
);
354 txq
= e
->queue_index
;
356 /* use multiply and shift instead of expensive divide */
357 txq
= ((u64
)txq
* numqueues
) >> 32;
358 } else if (likely(skb_rx_queue_recorded(skb
))) {
359 txq
= skb_get_rx_queue(skb
);
360 while (unlikely(txq
>= numqueues
))
368 static inline bool tun_not_capable(struct tun_struct
*tun
)
370 const struct cred
*cred
= current_cred();
371 struct net
*net
= dev_net(tun
->dev
);
373 return ((uid_valid(tun
->owner
) && !uid_eq(cred
->euid
, tun
->owner
)) ||
374 (gid_valid(tun
->group
) && !in_egroup_p(tun
->group
))) &&
375 !ns_capable(net
->user_ns
, CAP_NET_ADMIN
);
378 static void tun_set_real_num_queues(struct tun_struct
*tun
)
380 netif_set_real_num_tx_queues(tun
->dev
, tun
->numqueues
);
381 netif_set_real_num_rx_queues(tun
->dev
, tun
->numqueues
);
384 static void tun_disable_queue(struct tun_struct
*tun
, struct tun_file
*tfile
)
386 tfile
->detached
= tun
;
387 list_add_tail(&tfile
->next
, &tun
->disabled
);
391 static struct tun_struct
*tun_enable_queue(struct tun_file
*tfile
)
393 struct tun_struct
*tun
= tfile
->detached
;
395 tfile
->detached
= NULL
;
396 list_del_init(&tfile
->next
);
401 static void __tun_detach(struct tun_file
*tfile
, bool clean
)
403 struct tun_file
*ntfile
;
404 struct tun_struct
*tun
;
405 struct net_device
*dev
;
407 tun
= rcu_dereference_protected(tfile
->tun
,
408 lockdep_rtnl_is_held());
410 u16 index
= tfile
->queue_index
;
411 BUG_ON(index
>= tun
->numqueues
);
414 rcu_assign_pointer(tun
->tfiles
[index
],
415 tun
->tfiles
[tun
->numqueues
- 1]);
416 rcu_assign_pointer(tfile
->tun
, NULL
);
417 ntfile
= rcu_dereference_protected(tun
->tfiles
[index
],
418 lockdep_rtnl_is_held());
419 ntfile
->queue_index
= index
;
423 sock_put(&tfile
->sk
);
425 tun_disable_queue(tun
, tfile
);
428 tun_flow_delete_by_queue(tun
, tun
->numqueues
+ 1);
429 /* Drop read queue */
430 skb_queue_purge(&tfile
->sk
.sk_receive_queue
);
431 tun_set_real_num_queues(tun
);
432 } else if (tfile
->detached
&& clean
)
433 tun
= tun_enable_queue(tfile
);
436 if (tun
&& tun
->numqueues
== 0 && tun
->numdisabled
== 0 &&
437 !(tun
->flags
& TUN_PERSIST
))
438 if (tun
->dev
->reg_state
== NETREG_REGISTERED
)
439 unregister_netdevice(tun
->dev
);
441 BUG_ON(!test_bit(SOCK_EXTERNALLY_ALLOCATED
,
442 &tfile
->socket
.flags
));
443 sk_release_kernel(&tfile
->sk
);
447 static void tun_detach(struct tun_file
*tfile
, bool clean
)
450 __tun_detach(tfile
, clean
);
454 static void tun_detach_all(struct net_device
*dev
)
456 struct tun_struct
*tun
= netdev_priv(dev
);
457 struct tun_file
*tfile
, *tmp
;
458 int i
, n
= tun
->numqueues
;
460 for (i
= 0; i
< n
; i
++) {
461 tfile
= rcu_dereference_protected(tun
->tfiles
[i
],
462 lockdep_rtnl_is_held());
464 wake_up_all(&tfile
->wq
.wait
);
465 rcu_assign_pointer(tfile
->tun
, NULL
);
468 BUG_ON(tun
->numqueues
!= 0);
471 for (i
= 0; i
< n
; i
++) {
472 tfile
= rcu_dereference_protected(tun
->tfiles
[i
],
473 lockdep_rtnl_is_held());
474 /* Drop read queue */
475 skb_queue_purge(&tfile
->sk
.sk_receive_queue
);
476 sock_put(&tfile
->sk
);
478 list_for_each_entry_safe(tfile
, tmp
, &tun
->disabled
, next
) {
479 tun_enable_queue(tfile
);
480 skb_queue_purge(&tfile
->sk
.sk_receive_queue
);
481 sock_put(&tfile
->sk
);
483 BUG_ON(tun
->numdisabled
!= 0);
486 static int tun_attach(struct tun_struct
*tun
, struct file
*file
)
488 struct tun_file
*tfile
= file
->private_data
;
492 if (rcu_dereference_protected(tfile
->tun
, lockdep_rtnl_is_held()))
496 if (!(tun
->flags
& TUN_TAP_MQ
) && tun
->numqueues
== 1)
500 if (!tfile
->detached
&&
501 tun
->numqueues
+ tun
->numdisabled
== MAX_TAP_QUEUES
)
506 /* Re-attach the filter to presist device */
507 if (tun
->filter_attached
== true) {
508 err
= sk_attach_filter(&tun
->fprog
, tfile
->socket
.sk
);
512 tfile
->queue_index
= tun
->numqueues
;
513 rcu_assign_pointer(tfile
->tun
, tun
);
514 rcu_assign_pointer(tun
->tfiles
[tun
->numqueues
], tfile
);
518 tun_enable_queue(tfile
);
520 sock_hold(&tfile
->sk
);
522 tun_set_real_num_queues(tun
);
524 /* device is allowed to go away first, so no need to hold extra
532 static struct tun_struct
*__tun_get(struct tun_file
*tfile
)
534 struct tun_struct
*tun
;
537 tun
= rcu_dereference(tfile
->tun
);
545 static struct tun_struct
*tun_get(struct file
*file
)
547 return __tun_get(file
->private_data
);
550 static void tun_put(struct tun_struct
*tun
)
556 static void addr_hash_set(u32
*mask
, const u8
*addr
)
558 int n
= ether_crc(ETH_ALEN
, addr
) >> 26;
559 mask
[n
>> 5] |= (1 << (n
& 31));
562 static unsigned int addr_hash_test(const u32
*mask
, const u8
*addr
)
564 int n
= ether_crc(ETH_ALEN
, addr
) >> 26;
565 return mask
[n
>> 5] & (1 << (n
& 31));
568 static int update_filter(struct tap_filter
*filter
, void __user
*arg
)
570 struct { u8 u
[ETH_ALEN
]; } *addr
;
571 struct tun_filter uf
;
572 int err
, alen
, n
, nexact
;
574 if (copy_from_user(&uf
, arg
, sizeof(uf
)))
583 alen
= ETH_ALEN
* uf
.count
;
584 addr
= kmalloc(alen
, GFP_KERNEL
);
588 if (copy_from_user(addr
, arg
+ sizeof(uf
), alen
)) {
593 /* The filter is updated without holding any locks. Which is
594 * perfectly safe. We disable it first and in the worst
595 * case we'll accept a few undesired packets. */
599 /* Use first set of addresses as an exact filter */
600 for (n
= 0; n
< uf
.count
&& n
< FLT_EXACT_COUNT
; n
++)
601 memcpy(filter
->addr
[n
], addr
[n
].u
, ETH_ALEN
);
605 /* Remaining multicast addresses are hashed,
606 * unicast will leave the filter disabled. */
607 memset(filter
->mask
, 0, sizeof(filter
->mask
));
608 for (; n
< uf
.count
; n
++) {
609 if (!is_multicast_ether_addr(addr
[n
].u
)) {
610 err
= 0; /* no filter */
613 addr_hash_set(filter
->mask
, addr
[n
].u
);
616 /* For ALLMULTI just set the mask to all ones.
617 * This overrides the mask populated above. */
618 if ((uf
.flags
& TUN_FLT_ALLMULTI
))
619 memset(filter
->mask
, ~0, sizeof(filter
->mask
));
621 /* Now enable the filter */
623 filter
->count
= nexact
;
625 /* Return the number of exact filters */
633 /* Returns: 0 - drop, !=0 - accept */
634 static int run_filter(struct tap_filter
*filter
, const struct sk_buff
*skb
)
636 /* Cannot use eth_hdr(skb) here because skb_mac_hdr() is incorrect
638 struct ethhdr
*eh
= (struct ethhdr
*) skb
->data
;
642 for (i
= 0; i
< filter
->count
; i
++)
643 if (ether_addr_equal(eh
->h_dest
, filter
->addr
[i
]))
646 /* Inexact match (multicast only) */
647 if (is_multicast_ether_addr(eh
->h_dest
))
648 return addr_hash_test(filter
->mask
, eh
->h_dest
);
654 * Checks whether the packet is accepted or not.
655 * Returns: 0 - drop, !=0 - accept
657 static int check_filter(struct tap_filter
*filter
, const struct sk_buff
*skb
)
662 return run_filter(filter
, skb
);
665 /* Network device part of the driver */
667 static const struct ethtool_ops tun_ethtool_ops
;
669 /* Net device detach from fd. */
670 static void tun_net_uninit(struct net_device
*dev
)
675 /* Net device open. */
676 static int tun_net_open(struct net_device
*dev
)
678 netif_tx_start_all_queues(dev
);
682 /* Net device close. */
683 static int tun_net_close(struct net_device
*dev
)
685 netif_tx_stop_all_queues(dev
);
689 /* Net device start xmit */
690 static netdev_tx_t
tun_net_xmit(struct sk_buff
*skb
, struct net_device
*dev
)
692 struct tun_struct
*tun
= netdev_priv(dev
);
693 int txq
= skb
->queue_mapping
;
694 struct tun_file
*tfile
;
697 tfile
= rcu_dereference(tun
->tfiles
[txq
]);
699 /* Drop packet if interface is not attached */
700 if (txq
>= tun
->numqueues
)
703 tun_debug(KERN_INFO
, tun
, "tun_net_xmit %d\n", skb
->len
);
707 /* Drop if the filter does not like it.
708 * This is a noop if the filter is disabled.
709 * Filter can be enabled only for the TAP devices. */
710 if (!check_filter(&tun
->txflt
, skb
))
713 if (tfile
->socket
.sk
->sk_filter
&&
714 sk_filter(tfile
->socket
.sk
, skb
))
717 /* Limit the number of packets queued by dividing txq length with the
720 if (skb_queue_len(&tfile
->socket
.sk
->sk_receive_queue
)
721 >= dev
->tx_queue_len
/ tun
->numqueues
)
724 /* Orphan the skb - required as we might hang on to it
725 * for indefinite time. */
726 if (unlikely(skb_orphan_frags(skb
, GFP_ATOMIC
)))
731 skb_queue_tail(&tfile
->socket
.sk
->sk_receive_queue
, skb
);
733 /* Notify and wake up reader process */
734 if (tfile
->flags
& TUN_FASYNC
)
735 kill_fasync(&tfile
->fasync
, SIGIO
, POLL_IN
);
736 wake_up_interruptible_poll(&tfile
->wq
.wait
, POLLIN
|
737 POLLRDNORM
| POLLRDBAND
);
743 dev
->stats
.tx_dropped
++;
750 static void tun_net_mclist(struct net_device
*dev
)
753 * This callback is supposed to deal with mc filter in
754 * _rx_ path and has nothing to do with the _tx_ path.
755 * In rx path we always accept everything userspace gives us.
760 #define MAX_MTU 65535
763 tun_net_change_mtu(struct net_device
*dev
, int new_mtu
)
765 if (new_mtu
< MIN_MTU
|| new_mtu
+ dev
->hard_header_len
> MAX_MTU
)
771 static netdev_features_t
tun_net_fix_features(struct net_device
*dev
,
772 netdev_features_t features
)
774 struct tun_struct
*tun
= netdev_priv(dev
);
776 return (features
& tun
->set_features
) | (features
& ~TUN_USER_FEATURES
);
778 #ifdef CONFIG_NET_POLL_CONTROLLER
779 static void tun_poll_controller(struct net_device
*dev
)
782 * Tun only receives frames when:
783 * 1) the char device endpoint gets data from user space
784 * 2) the tun socket gets a sendmsg call from user space
785 * Since both of those are syncronous operations, we are guaranteed
786 * never to have pending data when we poll for it
787 * so theres nothing to do here but return.
788 * We need this though so netpoll recognizes us as an interface that
789 * supports polling, which enables bridge devices in virt setups to
790 * still use netconsole
795 static const struct net_device_ops tun_netdev_ops
= {
796 .ndo_uninit
= tun_net_uninit
,
797 .ndo_open
= tun_net_open
,
798 .ndo_stop
= tun_net_close
,
799 .ndo_start_xmit
= tun_net_xmit
,
800 .ndo_change_mtu
= tun_net_change_mtu
,
801 .ndo_fix_features
= tun_net_fix_features
,
802 .ndo_select_queue
= tun_select_queue
,
803 #ifdef CONFIG_NET_POLL_CONTROLLER
804 .ndo_poll_controller
= tun_poll_controller
,
808 static const struct net_device_ops tap_netdev_ops
= {
809 .ndo_uninit
= tun_net_uninit
,
810 .ndo_open
= tun_net_open
,
811 .ndo_stop
= tun_net_close
,
812 .ndo_start_xmit
= tun_net_xmit
,
813 .ndo_change_mtu
= tun_net_change_mtu
,
814 .ndo_fix_features
= tun_net_fix_features
,
815 .ndo_set_rx_mode
= tun_net_mclist
,
816 .ndo_set_mac_address
= eth_mac_addr
,
817 .ndo_validate_addr
= eth_validate_addr
,
818 .ndo_select_queue
= tun_select_queue
,
819 #ifdef CONFIG_NET_POLL_CONTROLLER
820 .ndo_poll_controller
= tun_poll_controller
,
824 static int tun_flow_init(struct tun_struct
*tun
)
828 for (i
= 0; i
< TUN_NUM_FLOW_ENTRIES
; i
++)
829 INIT_HLIST_HEAD(&tun
->flows
[i
]);
831 tun
->ageing_time
= TUN_FLOW_EXPIRE
;
832 setup_timer(&tun
->flow_gc_timer
, tun_flow_cleanup
, (unsigned long)tun
);
833 mod_timer(&tun
->flow_gc_timer
,
834 round_jiffies_up(jiffies
+ tun
->ageing_time
));
839 static void tun_flow_uninit(struct tun_struct
*tun
)
841 del_timer_sync(&tun
->flow_gc_timer
);
845 /* Initialize net device. */
846 static void tun_net_init(struct net_device
*dev
)
848 struct tun_struct
*tun
= netdev_priv(dev
);
850 switch (tun
->flags
& TUN_TYPE_MASK
) {
852 dev
->netdev_ops
= &tun_netdev_ops
;
854 /* Point-to-Point TUN Device */
855 dev
->hard_header_len
= 0;
859 /* Zero header length */
860 dev
->type
= ARPHRD_NONE
;
861 dev
->flags
= IFF_POINTOPOINT
| IFF_NOARP
| IFF_MULTICAST
;
862 dev
->tx_queue_len
= TUN_READQ_SIZE
; /* We prefer our own queue length */
866 dev
->netdev_ops
= &tap_netdev_ops
;
867 /* Ethernet TAP Device */
869 dev
->priv_flags
&= ~IFF_TX_SKB_SHARING
;
870 dev
->priv_flags
|= IFF_LIVE_ADDR_CHANGE
;
872 eth_hw_addr_random(dev
);
874 dev
->tx_queue_len
= TUN_READQ_SIZE
; /* We prefer our own queue length */
879 /* Character device part */
882 static unsigned int tun_chr_poll(struct file
*file
, poll_table
*wait
)
884 struct tun_file
*tfile
= file
->private_data
;
885 struct tun_struct
*tun
= __tun_get(tfile
);
887 unsigned int mask
= 0;
892 sk
= tfile
->socket
.sk
;
894 tun_debug(KERN_INFO
, tun
, "tun_chr_poll\n");
896 poll_wait(file
, &tfile
->wq
.wait
, wait
);
898 if (!skb_queue_empty(&sk
->sk_receive_queue
))
899 mask
|= POLLIN
| POLLRDNORM
;
901 if (sock_writeable(sk
) ||
902 (!test_and_set_bit(SOCK_ASYNC_NOSPACE
, &sk
->sk_socket
->flags
) &&
904 mask
|= POLLOUT
| POLLWRNORM
;
906 if (tun
->dev
->reg_state
!= NETREG_REGISTERED
)
913 /* prepad is the amount to reserve at front. len is length after that.
914 * linear is a hint as to how much to copy (usually headers). */
915 static struct sk_buff
*tun_alloc_skb(struct tun_file
*tfile
,
916 size_t prepad
, size_t len
,
917 size_t linear
, int noblock
)
919 struct sock
*sk
= tfile
->socket
.sk
;
923 /* Under a page? Don't bother with paged skb. */
924 if (prepad
+ len
< PAGE_SIZE
|| !linear
)
927 skb
= sock_alloc_send_pskb(sk
, prepad
+ linear
, len
- linear
, noblock
,
932 skb_reserve(skb
, prepad
);
933 skb_put(skb
, linear
);
934 skb
->data_len
= len
- linear
;
935 skb
->len
+= len
- linear
;
940 /* set skb frags from iovec, this can move to core network code for reuse */
941 static int zerocopy_sg_from_iovec(struct sk_buff
*skb
, const struct iovec
*from
,
942 int offset
, size_t count
)
944 int len
= iov_length(from
, count
) - offset
;
945 int copy
= skb_headlen(skb
);
946 int size
, offset1
= 0;
949 /* Skip over from offset */
950 while (count
&& (offset
>= from
->iov_len
)) {
951 offset
-= from
->iov_len
;
956 /* copy up to skb headlen */
957 while (count
&& (copy
> 0)) {
958 size
= min_t(unsigned int, copy
, from
->iov_len
- offset
);
959 if (copy_from_user(skb
->data
+ offset1
, from
->iov_base
+ offset
,
976 struct page
*page
[MAX_SKB_FRAGS
];
979 unsigned long truesize
;
981 len
= from
->iov_len
- offset
;
987 base
= (unsigned long)from
->iov_base
+ offset
;
988 size
= ((base
& ~PAGE_MASK
) + len
+ ~PAGE_MASK
) >> PAGE_SHIFT
;
989 if (i
+ size
> MAX_SKB_FRAGS
)
991 num_pages
= get_user_pages_fast(base
, size
, 0, &page
[i
]);
992 if (num_pages
!= size
) {
993 for (i
= 0; i
< num_pages
; i
++)
997 truesize
= size
* PAGE_SIZE
;
998 skb
->data_len
+= len
;
1000 skb
->truesize
+= truesize
;
1001 atomic_add(truesize
, &skb
->sk
->sk_wmem_alloc
);
1003 int off
= base
& ~PAGE_MASK
;
1004 int size
= min_t(int, len
, PAGE_SIZE
- off
);
1005 __skb_fill_page_desc(skb
, i
, page
[i
], off
, size
);
1006 skb_shinfo(skb
)->nr_frags
++;
1007 /* increase sk_wmem_alloc */
1018 /* Get packet from user space buffer */
1019 static ssize_t
tun_get_user(struct tun_struct
*tun
, struct tun_file
*tfile
,
1020 void *msg_control
, const struct iovec
*iv
,
1021 size_t total_len
, size_t count
, int noblock
)
1023 struct tun_pi pi
= { 0, cpu_to_be16(ETH_P_IP
) };
1024 struct sk_buff
*skb
;
1025 size_t len
= total_len
, align
= NET_SKB_PAD
;
1026 struct virtio_net_hdr gso
= { 0 };
1029 bool zerocopy
= false;
1033 if (!(tun
->flags
& TUN_NO_PI
)) {
1034 if ((len
-= sizeof(pi
)) > total_len
)
1037 if (memcpy_fromiovecend((void *)&pi
, iv
, 0, sizeof(pi
)))
1039 offset
+= sizeof(pi
);
1042 if (tun
->flags
& TUN_VNET_HDR
) {
1043 if ((len
-= tun
->vnet_hdr_sz
) > total_len
)
1046 if (memcpy_fromiovecend((void *)&gso
, iv
, offset
, sizeof(gso
)))
1049 if ((gso
.flags
& VIRTIO_NET_HDR_F_NEEDS_CSUM
) &&
1050 gso
.csum_start
+ gso
.csum_offset
+ 2 > gso
.hdr_len
)
1051 gso
.hdr_len
= gso
.csum_start
+ gso
.csum_offset
+ 2;
1053 if (gso
.hdr_len
> len
)
1055 offset
+= tun
->vnet_hdr_sz
;
1058 if ((tun
->flags
& TUN_TYPE_MASK
) == TUN_TAP_DEV
) {
1059 align
+= NET_IP_ALIGN
;
1060 if (unlikely(len
< ETH_HLEN
||
1061 (gso
.hdr_len
&& gso
.hdr_len
< ETH_HLEN
)))
1069 /* Userspace may produce vectors with count greater than
1070 * MAX_SKB_FRAGS, so we need to linearize parts of the skb
1071 * to let the rest of data to be fit in the frags.
1073 if (count
> MAX_SKB_FRAGS
) {
1074 copylen
= iov_length(iv
, count
- MAX_SKB_FRAGS
);
1075 if (copylen
< offset
)
1081 /* There are 256 bytes to be copied in skb, so there is enough
1082 * room for skb expand head in case it is used.
1083 * The rest of the buffer is mapped from userspace.
1085 if (copylen
< gso
.hdr_len
)
1086 copylen
= gso
.hdr_len
;
1088 copylen
= GOODCOPY_LEN
;
1092 skb
= tun_alloc_skb(tfile
, align
, copylen
, gso
.hdr_len
, noblock
);
1094 if (PTR_ERR(skb
) != -EAGAIN
)
1095 tun
->dev
->stats
.rx_dropped
++;
1096 return PTR_ERR(skb
);
1100 err
= zerocopy_sg_from_iovec(skb
, iv
, offset
, count
);
1102 err
= skb_copy_datagram_from_iovec(skb
, 0, iv
, offset
, len
);
1105 tun
->dev
->stats
.rx_dropped
++;
1110 if (gso
.flags
& VIRTIO_NET_HDR_F_NEEDS_CSUM
) {
1111 if (!skb_partial_csum_set(skb
, gso
.csum_start
,
1113 tun
->dev
->stats
.rx_frame_errors
++;
1119 switch (tun
->flags
& TUN_TYPE_MASK
) {
1121 if (tun
->flags
& TUN_NO_PI
) {
1122 switch (skb
->data
[0] & 0xf0) {
1124 pi
.proto
= htons(ETH_P_IP
);
1127 pi
.proto
= htons(ETH_P_IPV6
);
1130 tun
->dev
->stats
.rx_dropped
++;
1136 skb_reset_mac_header(skb
);
1137 skb
->protocol
= pi
.proto
;
1138 skb
->dev
= tun
->dev
;
1141 skb
->protocol
= eth_type_trans(skb
, tun
->dev
);
1145 if (gso
.gso_type
!= VIRTIO_NET_HDR_GSO_NONE
) {
1147 switch (gso
.gso_type
& ~VIRTIO_NET_HDR_GSO_ECN
) {
1148 case VIRTIO_NET_HDR_GSO_TCPV4
:
1149 skb_shinfo(skb
)->gso_type
= SKB_GSO_TCPV4
;
1151 case VIRTIO_NET_HDR_GSO_TCPV6
:
1152 skb_shinfo(skb
)->gso_type
= SKB_GSO_TCPV6
;
1154 case VIRTIO_NET_HDR_GSO_UDP
:
1155 skb_shinfo(skb
)->gso_type
= SKB_GSO_UDP
;
1158 tun
->dev
->stats
.rx_frame_errors
++;
1163 if (gso
.gso_type
& VIRTIO_NET_HDR_GSO_ECN
)
1164 skb_shinfo(skb
)->gso_type
|= SKB_GSO_TCP_ECN
;
1166 skb_shinfo(skb
)->gso_size
= gso
.gso_size
;
1167 if (skb_shinfo(skb
)->gso_size
== 0) {
1168 tun
->dev
->stats
.rx_frame_errors
++;
1173 /* Header must be checked, and gso_segs computed. */
1174 skb_shinfo(skb
)->gso_type
|= SKB_GSO_DODGY
;
1175 skb_shinfo(skb
)->gso_segs
= 0;
1178 /* copy skb_ubuf_info for callback when skb has no error */
1180 skb_shinfo(skb
)->destructor_arg
= msg_control
;
1181 skb_shinfo(skb
)->tx_flags
|= SKBTX_DEV_ZEROCOPY
;
1184 skb_reset_network_header(skb
);
1185 rxhash
= skb_get_rxhash(skb
);
1188 tun
->dev
->stats
.rx_packets
++;
1189 tun
->dev
->stats
.rx_bytes
+= len
;
1191 tun_flow_update(tun
, rxhash
, tfile
->queue_index
);
1195 static ssize_t
tun_chr_aio_write(struct kiocb
*iocb
, const struct iovec
*iv
,
1196 unsigned long count
, loff_t pos
)
1198 struct file
*file
= iocb
->ki_filp
;
1199 struct tun_struct
*tun
= tun_get(file
);
1200 struct tun_file
*tfile
= file
->private_data
;
1206 tun_debug(KERN_INFO
, tun
, "tun_chr_write %ld\n", count
);
1208 result
= tun_get_user(tun
, tfile
, NULL
, iv
, iov_length(iv
, count
),
1209 count
, file
->f_flags
& O_NONBLOCK
);
1215 /* Put packet to the user space buffer */
1216 static ssize_t
tun_put_user(struct tun_struct
*tun
,
1217 struct tun_file
*tfile
,
1218 struct sk_buff
*skb
,
1219 const struct iovec
*iv
, int len
)
1221 struct tun_pi pi
= { 0, skb
->protocol
};
1224 if (!(tun
->flags
& TUN_NO_PI
)) {
1225 if ((len
-= sizeof(pi
)) < 0)
1228 if (len
< skb
->len
) {
1229 /* Packet will be striped */
1230 pi
.flags
|= TUN_PKT_STRIP
;
1233 if (memcpy_toiovecend(iv
, (void *) &pi
, 0, sizeof(pi
)))
1235 total
+= sizeof(pi
);
1238 if (tun
->flags
& TUN_VNET_HDR
) {
1239 struct virtio_net_hdr gso
= { 0 }; /* no info leak */
1240 if ((len
-= tun
->vnet_hdr_sz
) < 0)
1243 if (skb_is_gso(skb
)) {
1244 struct skb_shared_info
*sinfo
= skb_shinfo(skb
);
1246 /* This is a hint as to how much should be linear. */
1247 gso
.hdr_len
= skb_headlen(skb
);
1248 gso
.gso_size
= sinfo
->gso_size
;
1249 if (sinfo
->gso_type
& SKB_GSO_TCPV4
)
1250 gso
.gso_type
= VIRTIO_NET_HDR_GSO_TCPV4
;
1251 else if (sinfo
->gso_type
& SKB_GSO_TCPV6
)
1252 gso
.gso_type
= VIRTIO_NET_HDR_GSO_TCPV6
;
1253 else if (sinfo
->gso_type
& SKB_GSO_UDP
)
1254 gso
.gso_type
= VIRTIO_NET_HDR_GSO_UDP
;
1256 pr_err("unexpected GSO type: "
1257 "0x%x, gso_size %d, hdr_len %d\n",
1258 sinfo
->gso_type
, gso
.gso_size
,
1260 print_hex_dump(KERN_ERR
, "tun: ",
1263 min((int)gso
.hdr_len
, 64), true);
1267 if (sinfo
->gso_type
& SKB_GSO_TCP_ECN
)
1268 gso
.gso_type
|= VIRTIO_NET_HDR_GSO_ECN
;
1270 gso
.gso_type
= VIRTIO_NET_HDR_GSO_NONE
;
1272 if (skb
->ip_summed
== CHECKSUM_PARTIAL
) {
1273 gso
.flags
= VIRTIO_NET_HDR_F_NEEDS_CSUM
;
1274 gso
.csum_start
= skb_checksum_start_offset(skb
);
1275 gso
.csum_offset
= skb
->csum_offset
;
1276 } else if (skb
->ip_summed
== CHECKSUM_UNNECESSARY
) {
1277 gso
.flags
= VIRTIO_NET_HDR_F_DATA_VALID
;
1278 } /* else everything is zero */
1280 if (unlikely(memcpy_toiovecend(iv
, (void *)&gso
, total
,
1283 total
+= tun
->vnet_hdr_sz
;
1286 len
= min_t(int, skb
->len
, len
);
1288 skb_copy_datagram_const_iovec(skb
, 0, iv
, total
, len
);
1291 tun
->dev
->stats
.tx_packets
++;
1292 tun
->dev
->stats
.tx_bytes
+= len
;
1297 static ssize_t
tun_do_read(struct tun_struct
*tun
, struct tun_file
*tfile
,
1298 struct kiocb
*iocb
, const struct iovec
*iv
,
1299 ssize_t len
, int noblock
)
1301 DECLARE_WAITQUEUE(wait
, current
);
1302 struct sk_buff
*skb
;
1305 tun_debug(KERN_INFO
, tun
, "tun_do_read\n");
1307 if (unlikely(!noblock
))
1308 add_wait_queue(&tfile
->wq
.wait
, &wait
);
1310 current
->state
= TASK_INTERRUPTIBLE
;
1312 /* Read frames from the queue */
1313 if (!(skb
= skb_dequeue(&tfile
->socket
.sk
->sk_receive_queue
))) {
1318 if (signal_pending(current
)) {
1322 if (tun
->dev
->reg_state
!= NETREG_REGISTERED
) {
1327 /* Nothing to read, let's sleep */
1332 ret
= tun_put_user(tun
, tfile
, skb
, iv
, len
);
1337 current
->state
= TASK_RUNNING
;
1338 if (unlikely(!noblock
))
1339 remove_wait_queue(&tfile
->wq
.wait
, &wait
);
1344 static ssize_t
tun_chr_aio_read(struct kiocb
*iocb
, const struct iovec
*iv
,
1345 unsigned long count
, loff_t pos
)
1347 struct file
*file
= iocb
->ki_filp
;
1348 struct tun_file
*tfile
= file
->private_data
;
1349 struct tun_struct
*tun
= __tun_get(tfile
);
1354 len
= iov_length(iv
, count
);
1360 ret
= tun_do_read(tun
, tfile
, iocb
, iv
, len
,
1361 file
->f_flags
& O_NONBLOCK
);
1362 ret
= min_t(ssize_t
, ret
, len
);
1368 static void tun_free_netdev(struct net_device
*dev
)
1370 struct tun_struct
*tun
= netdev_priv(dev
);
1372 BUG_ON(!(list_empty(&tun
->disabled
)));
1373 tun_flow_uninit(tun
);
1377 static void tun_setup(struct net_device
*dev
)
1379 struct tun_struct
*tun
= netdev_priv(dev
);
1381 tun
->owner
= INVALID_UID
;
1382 tun
->group
= INVALID_GID
;
1384 dev
->ethtool_ops
= &tun_ethtool_ops
;
1385 dev
->destructor
= tun_free_netdev
;
1388 /* Trivial set of netlink ops to allow deleting tun or tap
1389 * device with netlink.
1391 static int tun_validate(struct nlattr
*tb
[], struct nlattr
*data
[])
1396 static struct rtnl_link_ops tun_link_ops __read_mostly
= {
1398 .priv_size
= sizeof(struct tun_struct
),
1400 .validate
= tun_validate
,
1403 static void tun_sock_write_space(struct sock
*sk
)
1405 struct tun_file
*tfile
;
1406 wait_queue_head_t
*wqueue
;
1408 if (!sock_writeable(sk
))
1411 if (!test_and_clear_bit(SOCK_ASYNC_NOSPACE
, &sk
->sk_socket
->flags
))
1414 wqueue
= sk_sleep(sk
);
1415 if (wqueue
&& waitqueue_active(wqueue
))
1416 wake_up_interruptible_sync_poll(wqueue
, POLLOUT
|
1417 POLLWRNORM
| POLLWRBAND
);
1419 tfile
= container_of(sk
, struct tun_file
, sk
);
1420 kill_fasync(&tfile
->fasync
, SIGIO
, POLL_OUT
);
1423 static int tun_sendmsg(struct kiocb
*iocb
, struct socket
*sock
,
1424 struct msghdr
*m
, size_t total_len
)
1427 struct tun_file
*tfile
= container_of(sock
, struct tun_file
, socket
);
1428 struct tun_struct
*tun
= __tun_get(tfile
);
1432 ret
= tun_get_user(tun
, tfile
, m
->msg_control
, m
->msg_iov
, total_len
,
1433 m
->msg_iovlen
, m
->msg_flags
& MSG_DONTWAIT
);
1439 static int tun_recvmsg(struct kiocb
*iocb
, struct socket
*sock
,
1440 struct msghdr
*m
, size_t total_len
,
1443 struct tun_file
*tfile
= container_of(sock
, struct tun_file
, socket
);
1444 struct tun_struct
*tun
= __tun_get(tfile
);
1450 if (flags
& ~(MSG_DONTWAIT
|MSG_TRUNC
))
1452 ret
= tun_do_read(tun
, tfile
, iocb
, m
->msg_iov
, total_len
,
1453 flags
& MSG_DONTWAIT
);
1454 if (ret
> total_len
) {
1455 m
->msg_flags
|= MSG_TRUNC
;
1456 ret
= flags
& MSG_TRUNC
? ret
: total_len
;
1462 static int tun_release(struct socket
*sock
)
1469 /* Ops structure to mimic raw sockets with tun */
1470 static const struct proto_ops tun_socket_ops
= {
1471 .sendmsg
= tun_sendmsg
,
1472 .recvmsg
= tun_recvmsg
,
1473 .release
= tun_release
,
1476 static struct proto tun_proto
= {
1478 .owner
= THIS_MODULE
,
1479 .obj_size
= sizeof(struct tun_file
),
1482 static int tun_flags(struct tun_struct
*tun
)
1486 if (tun
->flags
& TUN_TUN_DEV
)
1491 if (tun
->flags
& TUN_NO_PI
)
1494 /* This flag has no real effect. We track the value for backwards
1497 if (tun
->flags
& TUN_ONE_QUEUE
)
1498 flags
|= IFF_ONE_QUEUE
;
1500 if (tun
->flags
& TUN_VNET_HDR
)
1501 flags
|= IFF_VNET_HDR
;
1503 if (tun
->flags
& TUN_TAP_MQ
)
1504 flags
|= IFF_MULTI_QUEUE
;
1509 static ssize_t
tun_show_flags(struct device
*dev
, struct device_attribute
*attr
,
1512 struct tun_struct
*tun
= netdev_priv(to_net_dev(dev
));
1513 return sprintf(buf
, "0x%x\n", tun_flags(tun
));
1516 static ssize_t
tun_show_owner(struct device
*dev
, struct device_attribute
*attr
,
1519 struct tun_struct
*tun
= netdev_priv(to_net_dev(dev
));
1520 return uid_valid(tun
->owner
)?
1521 sprintf(buf
, "%u\n",
1522 from_kuid_munged(current_user_ns(), tun
->owner
)):
1523 sprintf(buf
, "-1\n");
1526 static ssize_t
tun_show_group(struct device
*dev
, struct device_attribute
*attr
,
1529 struct tun_struct
*tun
= netdev_priv(to_net_dev(dev
));
1530 return gid_valid(tun
->group
) ?
1531 sprintf(buf
, "%u\n",
1532 from_kgid_munged(current_user_ns(), tun
->group
)):
1533 sprintf(buf
, "-1\n");
1536 static DEVICE_ATTR(tun_flags
, 0444, tun_show_flags
, NULL
);
1537 static DEVICE_ATTR(owner
, 0444, tun_show_owner
, NULL
);
1538 static DEVICE_ATTR(group
, 0444, tun_show_group
, NULL
);
1540 static int tun_set_iff(struct net
*net
, struct file
*file
, struct ifreq
*ifr
)
1542 struct tun_struct
*tun
;
1543 struct tun_file
*tfile
= file
->private_data
;
1544 struct net_device
*dev
;
1547 dev
= __dev_get_by_name(net
, ifr
->ifr_name
);
1549 if (ifr
->ifr_flags
& IFF_TUN_EXCL
)
1551 if ((ifr
->ifr_flags
& IFF_TUN
) && dev
->netdev_ops
== &tun_netdev_ops
)
1552 tun
= netdev_priv(dev
);
1553 else if ((ifr
->ifr_flags
& IFF_TAP
) && dev
->netdev_ops
== &tap_netdev_ops
)
1554 tun
= netdev_priv(dev
);
1558 if (tun_not_capable(tun
))
1560 err
= security_tun_dev_attach(tfile
->socket
.sk
);
1564 err
= tun_attach(tun
, file
);
1568 if (tun
->flags
& TUN_TAP_MQ
&&
1569 (tun
->numqueues
+ tun
->numdisabled
> 1))
1574 unsigned long flags
= 0;
1576 if (!ns_capable(net
->user_ns
, CAP_NET_ADMIN
))
1578 err
= security_tun_dev_create();
1583 if (ifr
->ifr_flags
& IFF_TUN
) {
1585 flags
|= TUN_TUN_DEV
;
1587 } else if (ifr
->ifr_flags
& IFF_TAP
) {
1589 flags
|= TUN_TAP_DEV
;
1595 name
= ifr
->ifr_name
;
1597 dev
= alloc_netdev_mqs(sizeof(struct tun_struct
), name
,
1599 MAX_TAP_QUEUES
, MAX_TAP_QUEUES
);
1603 dev_net_set(dev
, net
);
1604 dev
->rtnl_link_ops
= &tun_link_ops
;
1606 tun
= netdev_priv(dev
);
1609 tun
->txflt
.count
= 0;
1610 tun
->vnet_hdr_sz
= sizeof(struct virtio_net_hdr
);
1612 tun
->filter_attached
= false;
1613 tun
->sndbuf
= tfile
->socket
.sk
->sk_sndbuf
;
1615 spin_lock_init(&tun
->lock
);
1617 security_tun_dev_post_create(&tfile
->sk
);
1621 err
= tun_flow_init(tun
);
1625 dev
->hw_features
= NETIF_F_SG
| NETIF_F_FRAGLIST
|
1627 dev
->features
= dev
->hw_features
;
1629 INIT_LIST_HEAD(&tun
->disabled
);
1630 err
= tun_attach(tun
, file
);
1634 err
= register_netdevice(tun
->dev
);
1638 if (device_create_file(&tun
->dev
->dev
, &dev_attr_tun_flags
) ||
1639 device_create_file(&tun
->dev
->dev
, &dev_attr_owner
) ||
1640 device_create_file(&tun
->dev
->dev
, &dev_attr_group
))
1641 pr_err("Failed to create tun sysfs files\n");
1643 netif_carrier_on(tun
->dev
);
1646 tun_debug(KERN_INFO
, tun
, "tun_set_iff\n");
1648 if (ifr
->ifr_flags
& IFF_NO_PI
)
1649 tun
->flags
|= TUN_NO_PI
;
1651 tun
->flags
&= ~TUN_NO_PI
;
1653 /* This flag has no real effect. We track the value for backwards
1656 if (ifr
->ifr_flags
& IFF_ONE_QUEUE
)
1657 tun
->flags
|= TUN_ONE_QUEUE
;
1659 tun
->flags
&= ~TUN_ONE_QUEUE
;
1661 if (ifr
->ifr_flags
& IFF_VNET_HDR
)
1662 tun
->flags
|= TUN_VNET_HDR
;
1664 tun
->flags
&= ~TUN_VNET_HDR
;
1666 if (ifr
->ifr_flags
& IFF_MULTI_QUEUE
)
1667 tun
->flags
|= TUN_TAP_MQ
;
1669 tun
->flags
&= ~TUN_TAP_MQ
;
1671 /* Make sure persistent devices do not get stuck in
1674 if (netif_running(tun
->dev
))
1675 netif_tx_wake_all_queues(tun
->dev
);
1677 strcpy(ifr
->ifr_name
, tun
->dev
->name
);
1685 static void tun_get_iff(struct net
*net
, struct tun_struct
*tun
,
1688 tun_debug(KERN_INFO
, tun
, "tun_get_iff\n");
1690 strcpy(ifr
->ifr_name
, tun
->dev
->name
);
1692 ifr
->ifr_flags
= tun_flags(tun
);
1696 /* This is like a cut-down ethtool ops, except done via tun fd so no
1697 * privs required. */
1698 static int set_offload(struct tun_struct
*tun
, unsigned long arg
)
1700 netdev_features_t features
= 0;
1702 if (arg
& TUN_F_CSUM
) {
1703 features
|= NETIF_F_HW_CSUM
;
1706 if (arg
& (TUN_F_TSO4
|TUN_F_TSO6
)) {
1707 if (arg
& TUN_F_TSO_ECN
) {
1708 features
|= NETIF_F_TSO_ECN
;
1709 arg
&= ~TUN_F_TSO_ECN
;
1711 if (arg
& TUN_F_TSO4
)
1712 features
|= NETIF_F_TSO
;
1713 if (arg
& TUN_F_TSO6
)
1714 features
|= NETIF_F_TSO6
;
1715 arg
&= ~(TUN_F_TSO4
|TUN_F_TSO6
);
1718 if (arg
& TUN_F_UFO
) {
1719 features
|= NETIF_F_UFO
;
1724 /* This gives the user a way to test for new features in future by
1725 * trying to set them. */
1729 tun
->set_features
= features
;
1730 netdev_update_features(tun
->dev
);
1735 static void tun_detach_filter(struct tun_struct
*tun
, int n
)
1738 struct tun_file
*tfile
;
1740 for (i
= 0; i
< n
; i
++) {
1741 tfile
= rcu_dereference_protected(tun
->tfiles
[i
],
1742 lockdep_rtnl_is_held());
1743 sk_detach_filter(tfile
->socket
.sk
);
1746 tun
->filter_attached
= false;
1749 static int tun_attach_filter(struct tun_struct
*tun
)
1752 struct tun_file
*tfile
;
1754 for (i
= 0; i
< tun
->numqueues
; i
++) {
1755 tfile
= rcu_dereference_protected(tun
->tfiles
[i
],
1756 lockdep_rtnl_is_held());
1757 ret
= sk_attach_filter(&tun
->fprog
, tfile
->socket
.sk
);
1759 tun_detach_filter(tun
, i
);
1764 tun
->filter_attached
= true;
1768 static void tun_set_sndbuf(struct tun_struct
*tun
)
1770 struct tun_file
*tfile
;
1773 for (i
= 0; i
< tun
->numqueues
; i
++) {
1774 tfile
= rcu_dereference_protected(tun
->tfiles
[i
],
1775 lockdep_rtnl_is_held());
1776 tfile
->socket
.sk
->sk_sndbuf
= tun
->sndbuf
;
1780 static int tun_set_queue(struct file
*file
, struct ifreq
*ifr
)
1782 struct tun_file
*tfile
= file
->private_data
;
1783 struct tun_struct
*tun
;
1788 if (ifr
->ifr_flags
& IFF_ATTACH_QUEUE
) {
1789 tun
= tfile
->detached
;
1792 else if (tun_not_capable(tun
))
1795 ret
= tun_attach(tun
, file
);
1796 } else if (ifr
->ifr_flags
& IFF_DETACH_QUEUE
) {
1797 tun
= rcu_dereference_protected(tfile
->tun
,
1798 lockdep_rtnl_is_held());
1799 if (!tun
|| !(tun
->flags
& TUN_TAP_MQ
))
1802 __tun_detach(tfile
, false);
1810 static long __tun_chr_ioctl(struct file
*file
, unsigned int cmd
,
1811 unsigned long arg
, int ifreq_len
)
1813 struct tun_file
*tfile
= file
->private_data
;
1814 struct tun_struct
*tun
;
1815 void __user
* argp
= (void __user
*)arg
;
1823 if (cmd
== TUNSETIFF
|| cmd
== TUNSETQUEUE
|| _IOC_TYPE(cmd
) == 0x89) {
1824 if (copy_from_user(&ifr
, argp
, ifreq_len
))
1827 memset(&ifr
, 0, sizeof(ifr
));
1829 if (cmd
== TUNGETFEATURES
) {
1830 /* Currently this just means: "what IFF flags are valid?".
1831 * This is needed because we never checked for invalid flags on
1833 return put_user(IFF_TUN
| IFF_TAP
| IFF_NO_PI
| IFF_ONE_QUEUE
|
1834 IFF_VNET_HDR
| IFF_MULTI_QUEUE
,
1835 (unsigned int __user
*)argp
);
1836 } else if (cmd
== TUNSETQUEUE
)
1837 return tun_set_queue(file
, &ifr
);
1842 tun
= __tun_get(tfile
);
1843 if (cmd
== TUNSETIFF
&& !tun
) {
1844 ifr
.ifr_name
[IFNAMSIZ
-1] = '\0';
1846 ret
= tun_set_iff(tfile
->net
, file
, &ifr
);
1851 if (copy_to_user(argp
, &ifr
, ifreq_len
))
1860 tun_debug(KERN_INFO
, tun
, "tun_chr_ioctl cmd %u\n", cmd
);
1865 tun_get_iff(current
->nsproxy
->net_ns
, tun
, &ifr
);
1867 if (copy_to_user(argp
, &ifr
, ifreq_len
))
1872 /* Disable/Enable checksum */
1874 /* [unimplemented] */
1875 tun_debug(KERN_INFO
, tun
, "ignored: set checksum %s\n",
1876 arg
? "disabled" : "enabled");
1880 /* Disable/Enable persist mode. Keep an extra reference to the
1881 * module to prevent the module being unprobed.
1884 tun
->flags
|= TUN_PERSIST
;
1885 __module_get(THIS_MODULE
);
1887 tun
->flags
&= ~TUN_PERSIST
;
1888 module_put(THIS_MODULE
);
1891 tun_debug(KERN_INFO
, tun
, "persist %s\n",
1892 arg
? "enabled" : "disabled");
1896 /* Set owner of the device */
1897 owner
= make_kuid(current_user_ns(), arg
);
1898 if (!uid_valid(owner
)) {
1903 tun_debug(KERN_INFO
, tun
, "owner set to %u\n",
1904 from_kuid(&init_user_ns
, tun
->owner
));
1908 /* Set group of the device */
1909 group
= make_kgid(current_user_ns(), arg
);
1910 if (!gid_valid(group
)) {
1915 tun_debug(KERN_INFO
, tun
, "group set to %u\n",
1916 from_kgid(&init_user_ns
, tun
->group
));
1920 /* Only allow setting the type when the interface is down */
1921 if (tun
->dev
->flags
& IFF_UP
) {
1922 tun_debug(KERN_INFO
, tun
,
1923 "Linktype set failed because interface is up\n");
1926 tun
->dev
->type
= (int) arg
;
1927 tun_debug(KERN_INFO
, tun
, "linktype set to %d\n",
1939 ret
= set_offload(tun
, arg
);
1942 case TUNSETTXFILTER
:
1943 /* Can be set only for TAPs */
1945 if ((tun
->flags
& TUN_TYPE_MASK
) != TUN_TAP_DEV
)
1947 ret
= update_filter(&tun
->txflt
, (void __user
*)arg
);
1951 /* Get hw address */
1952 memcpy(ifr
.ifr_hwaddr
.sa_data
, tun
->dev
->dev_addr
, ETH_ALEN
);
1953 ifr
.ifr_hwaddr
.sa_family
= tun
->dev
->type
;
1954 if (copy_to_user(argp
, &ifr
, ifreq_len
))
1959 /* Set hw address */
1960 tun_debug(KERN_DEBUG
, tun
, "set hw address: %pM\n",
1961 ifr
.ifr_hwaddr
.sa_data
);
1963 ret
= dev_set_mac_address(tun
->dev
, &ifr
.ifr_hwaddr
);
1967 sndbuf
= tfile
->socket
.sk
->sk_sndbuf
;
1968 if (copy_to_user(argp
, &sndbuf
, sizeof(sndbuf
)))
1973 if (copy_from_user(&sndbuf
, argp
, sizeof(sndbuf
))) {
1978 tun
->sndbuf
= sndbuf
;
1979 tun_set_sndbuf(tun
);
1982 case TUNGETVNETHDRSZ
:
1983 vnet_hdr_sz
= tun
->vnet_hdr_sz
;
1984 if (copy_to_user(argp
, &vnet_hdr_sz
, sizeof(vnet_hdr_sz
)))
1988 case TUNSETVNETHDRSZ
:
1989 if (copy_from_user(&vnet_hdr_sz
, argp
, sizeof(vnet_hdr_sz
))) {
1993 if (vnet_hdr_sz
< (int)sizeof(struct virtio_net_hdr
)) {
1998 tun
->vnet_hdr_sz
= vnet_hdr_sz
;
2001 case TUNATTACHFILTER
:
2002 /* Can be set only for TAPs */
2004 if ((tun
->flags
& TUN_TYPE_MASK
) != TUN_TAP_DEV
)
2007 if (copy_from_user(&tun
->fprog
, argp
, sizeof(tun
->fprog
)))
2010 ret
= tun_attach_filter(tun
);
2013 case TUNDETACHFILTER
:
2014 /* Can be set only for TAPs */
2016 if ((tun
->flags
& TUN_TYPE_MASK
) != TUN_TAP_DEV
)
2019 tun_detach_filter(tun
, tun
->numqueues
);
2034 static long tun_chr_ioctl(struct file
*file
,
2035 unsigned int cmd
, unsigned long arg
)
2037 return __tun_chr_ioctl(file
, cmd
, arg
, sizeof (struct ifreq
));
2040 #ifdef CONFIG_COMPAT
2041 static long tun_chr_compat_ioctl(struct file
*file
,
2042 unsigned int cmd
, unsigned long arg
)
2047 case TUNSETTXFILTER
:
2052 arg
= (unsigned long)compat_ptr(arg
);
2055 arg
= (compat_ulong_t
)arg
;
2060 * compat_ifreq is shorter than ifreq, so we must not access beyond
2061 * the end of that structure. All fields that are used in this
2062 * driver are compatible though, we don't need to convert the
2065 return __tun_chr_ioctl(file
, cmd
, arg
, sizeof(struct compat_ifreq
));
2067 #endif /* CONFIG_COMPAT */
2069 static int tun_chr_fasync(int fd
, struct file
*file
, int on
)
2071 struct tun_file
*tfile
= file
->private_data
;
2074 if ((ret
= fasync_helper(fd
, file
, on
, &tfile
->fasync
)) < 0)
2078 ret
= __f_setown(file
, task_pid(current
), PIDTYPE_PID
, 0);
2081 tfile
->flags
|= TUN_FASYNC
;
2083 tfile
->flags
&= ~TUN_FASYNC
;
2089 static int tun_chr_open(struct inode
*inode
, struct file
* file
)
2091 struct tun_file
*tfile
;
2093 DBG1(KERN_INFO
, "tunX: tun_chr_open\n");
2095 tfile
= (struct tun_file
*)sk_alloc(&init_net
, AF_UNSPEC
, GFP_KERNEL
,
2099 rcu_assign_pointer(tfile
->tun
, NULL
);
2100 tfile
->net
= get_net(current
->nsproxy
->net_ns
);
2103 rcu_assign_pointer(tfile
->socket
.wq
, &tfile
->wq
);
2104 init_waitqueue_head(&tfile
->wq
.wait
);
2106 tfile
->socket
.file
= file
;
2107 tfile
->socket
.ops
= &tun_socket_ops
;
2109 sock_init_data(&tfile
->socket
, &tfile
->sk
);
2110 sk_change_net(&tfile
->sk
, tfile
->net
);
2112 tfile
->sk
.sk_write_space
= tun_sock_write_space
;
2113 tfile
->sk
.sk_sndbuf
= INT_MAX
;
2115 file
->private_data
= tfile
;
2116 set_bit(SOCK_EXTERNALLY_ALLOCATED
, &tfile
->socket
.flags
);
2117 INIT_LIST_HEAD(&tfile
->next
);
2122 static int tun_chr_close(struct inode
*inode
, struct file
*file
)
2124 struct tun_file
*tfile
= file
->private_data
;
2125 struct net
*net
= tfile
->net
;
2127 tun_detach(tfile
, true);
2133 static const struct file_operations tun_fops
= {
2134 .owner
= THIS_MODULE
,
2135 .llseek
= no_llseek
,
2136 .read
= do_sync_read
,
2137 .aio_read
= tun_chr_aio_read
,
2138 .write
= do_sync_write
,
2139 .aio_write
= tun_chr_aio_write
,
2140 .poll
= tun_chr_poll
,
2141 .unlocked_ioctl
= tun_chr_ioctl
,
2142 #ifdef CONFIG_COMPAT
2143 .compat_ioctl
= tun_chr_compat_ioctl
,
2145 .open
= tun_chr_open
,
2146 .release
= tun_chr_close
,
2147 .fasync
= tun_chr_fasync
2150 static struct miscdevice tun_miscdev
= {
2153 .nodename
= "net/tun",
2157 /* ethtool interface */
2159 static int tun_get_settings(struct net_device
*dev
, struct ethtool_cmd
*cmd
)
2162 cmd
->advertising
= 0;
2163 ethtool_cmd_speed_set(cmd
, SPEED_10
);
2164 cmd
->duplex
= DUPLEX_FULL
;
2165 cmd
->port
= PORT_TP
;
2166 cmd
->phy_address
= 0;
2167 cmd
->transceiver
= XCVR_INTERNAL
;
2168 cmd
->autoneg
= AUTONEG_DISABLE
;
2174 static void tun_get_drvinfo(struct net_device
*dev
, struct ethtool_drvinfo
*info
)
2176 struct tun_struct
*tun
= netdev_priv(dev
);
2178 strlcpy(info
->driver
, DRV_NAME
, sizeof(info
->driver
));
2179 strlcpy(info
->version
, DRV_VERSION
, sizeof(info
->version
));
2181 switch (tun
->flags
& TUN_TYPE_MASK
) {
2183 strlcpy(info
->bus_info
, "tun", sizeof(info
->bus_info
));
2186 strlcpy(info
->bus_info
, "tap", sizeof(info
->bus_info
));
2191 static u32
tun_get_msglevel(struct net_device
*dev
)
2194 struct tun_struct
*tun
= netdev_priv(dev
);
2201 static void tun_set_msglevel(struct net_device
*dev
, u32 value
)
2204 struct tun_struct
*tun
= netdev_priv(dev
);
2209 static const struct ethtool_ops tun_ethtool_ops
= {
2210 .get_settings
= tun_get_settings
,
2211 .get_drvinfo
= tun_get_drvinfo
,
2212 .get_msglevel
= tun_get_msglevel
,
2213 .set_msglevel
= tun_set_msglevel
,
2214 .get_link
= ethtool_op_get_link
,
2218 static int __init
tun_init(void)
2222 pr_info("%s, %s\n", DRV_DESCRIPTION
, DRV_VERSION
);
2223 pr_info("%s\n", DRV_COPYRIGHT
);
2225 ret
= rtnl_link_register(&tun_link_ops
);
2227 pr_err("Can't register link_ops\n");
2231 ret
= misc_register(&tun_miscdev
);
2233 pr_err("Can't register misc device %d\n", TUN_MINOR
);
2238 rtnl_link_unregister(&tun_link_ops
);
2243 static void tun_cleanup(void)
2245 misc_deregister(&tun_miscdev
);
2246 rtnl_link_unregister(&tun_link_ops
);
2249 /* Get an underlying socket object from tun file. Returns error unless file is
2250 * attached to a device. The returned object works like a packet socket, it
2251 * can be used for sock_sendmsg/sock_recvmsg. The caller is responsible for
2252 * holding a reference to the file for as long as the socket is in use. */
2253 struct socket
*tun_get_socket(struct file
*file
)
2255 struct tun_file
*tfile
;
2256 if (file
->f_op
!= &tun_fops
)
2257 return ERR_PTR(-EINVAL
);
2258 tfile
= file
->private_data
;
2260 return ERR_PTR(-EBADFD
);
2261 return &tfile
->socket
;
2263 EXPORT_SYMBOL_GPL(tun_get_socket
);
2265 module_init(tun_init
);
2266 module_exit(tun_cleanup
);
2267 MODULE_DESCRIPTION(DRV_DESCRIPTION
);
2268 MODULE_AUTHOR(DRV_COPYRIGHT
);
2269 MODULE_LICENSE("GPL");
2270 MODULE_ALIAS_MISCDEV(TUN_MINOR
);
2271 MODULE_ALIAS("devname:net/tun");