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/sched/signal.h>
48 #include <linux/major.h>
49 #include <linux/slab.h>
50 #include <linux/poll.h>
51 #include <linux/fcntl.h>
52 #include <linux/init.h>
53 #include <linux/skbuff.h>
54 #include <linux/netdevice.h>
55 #include <linux/etherdevice.h>
56 #include <linux/miscdevice.h>
57 #include <linux/ethtool.h>
58 #include <linux/rtnetlink.h>
59 #include <linux/compat.h>
61 #include <linux/if_arp.h>
62 #include <linux/if_ether.h>
63 #include <linux/if_tun.h>
64 #include <linux/if_vlan.h>
65 #include <linux/crc32.h>
66 #include <linux/nsproxy.h>
67 #include <linux/virtio_net.h>
68 #include <linux/rcupdate.h>
69 #include <net/net_namespace.h>
70 #include <net/netns/generic.h>
71 #include <net/rtnetlink.h>
73 #include <linux/seq_file.h>
74 #include <linux/uio.h>
75 #include <linux/skb_array.h>
76 #include <linux/bpf.h>
77 #include <linux/bpf_trace.h>
78 #include <linux/mutex.h>
80 #include <linux/uaccess.h>
82 /* Uncomment to enable debugging */
83 /* #define TUN_DEBUG 1 */
88 #define tun_debug(level, tun, fmt, args...) \
91 netdev_printk(level, tun->dev, fmt, ##args); \
93 #define DBG1(level, fmt, args...) \
96 printk(level fmt, ##args); \
99 #define tun_debug(level, tun, fmt, args...) \
102 netdev_printk(level, tun->dev, fmt, ##args); \
104 #define DBG1(level, fmt, args...) \
107 printk(level fmt, ##args); \
111 #define TUN_HEADROOM 256
112 #define TUN_RX_PAD (NET_IP_ALIGN + NET_SKB_PAD)
114 /* TUN device flags */
116 /* IFF_ATTACH_QUEUE is never stored in device flags,
117 * overload it to mean fasync when stored there.
119 #define TUN_FASYNC IFF_ATTACH_QUEUE
120 /* High bits in flags field are unused. */
121 #define TUN_VNET_LE 0x80000000
122 #define TUN_VNET_BE 0x40000000
124 #define TUN_FEATURES (IFF_NO_PI | IFF_ONE_QUEUE | IFF_VNET_HDR | \
125 IFF_MULTI_QUEUE | IFF_NAPI | IFF_NAPI_FRAGS)
127 #define GOODCOPY_LEN 128
129 #define FLT_EXACT_COUNT 8
131 unsigned int count
; /* Number of addrs. Zero means disabled */
132 u32 mask
[2]; /* Mask of the hashed addrs */
133 unsigned char addr
[FLT_EXACT_COUNT
][ETH_ALEN
];
136 /* MAX_TAP_QUEUES 256 is chosen to allow rx/tx queues to be equal
137 * to max number of VCPUs in guest. */
138 #define MAX_TAP_QUEUES 256
139 #define MAX_TAP_FLOWS 4096
141 #define TUN_FLOW_EXPIRE (3 * HZ)
143 struct tun_pcpu_stats
{
148 struct u64_stats_sync syncp
;
154 /* A tun_file connects an open character device to a tuntap netdevice. It
155 * also contains all socket related structures (except sock_fprog and tap_filter)
156 * to serve as one transmit queue for tuntap device. The sock_fprog and
157 * tap_filter were kept in tun_struct since they were used for filtering for the
158 * netdevice not for a specific queue (at least I didn't see the requirement for
162 * The tun_file and tun_struct are loosely coupled, the pointer from one to the
163 * other can only be read while rcu_read_lock or rtnl_lock is held.
167 struct socket socket
;
169 struct tun_struct __rcu
*tun
;
170 struct fasync_struct
*fasync
;
171 /* only used for fasnyc */
175 unsigned int ifindex
;
177 struct napi_struct napi
;
179 struct mutex napi_mutex
; /* Protects access to the above napi */
180 struct list_head next
;
181 struct tun_struct
*detached
;
182 struct skb_array tx_array
;
185 struct tun_flow_entry
{
186 struct hlist_node hash_link
;
188 struct tun_struct
*tun
;
193 unsigned long updated
;
196 #define TUN_NUM_FLOW_ENTRIES 1024
198 /* Since the socket were moved to tun_file, to preserve the behavior of persist
199 * device, socket filter, sndbuf and vnet header size were restore when the
200 * file were attached to a persist device.
203 struct tun_file __rcu
*tfiles
[MAX_TAP_QUEUES
];
204 unsigned int numqueues
;
209 struct net_device
*dev
;
210 netdev_features_t set_features
;
211 #define TUN_USER_FEATURES (NETIF_F_HW_CSUM|NETIF_F_TSO_ECN|NETIF_F_TSO| \
217 struct tap_filter txflt
;
218 struct sock_fprog fprog
;
219 /* protected by rtnl lock */
220 bool filter_attached
;
225 struct hlist_head flows
[TUN_NUM_FLOW_ENTRIES
];
226 struct timer_list flow_gc_timer
;
227 unsigned long ageing_time
;
228 unsigned int numdisabled
;
229 struct list_head disabled
;
233 struct tun_pcpu_stats __percpu
*pcpu_stats
;
234 struct bpf_prog __rcu
*xdp_prog
;
237 static int tun_napi_receive(struct napi_struct
*napi
, int budget
)
239 struct tun_file
*tfile
= container_of(napi
, struct tun_file
, napi
);
240 struct sk_buff_head
*queue
= &tfile
->sk
.sk_write_queue
;
241 struct sk_buff_head process_queue
;
245 __skb_queue_head_init(&process_queue
);
247 spin_lock(&queue
->lock
);
248 skb_queue_splice_tail_init(queue
, &process_queue
);
249 spin_unlock(&queue
->lock
);
251 while (received
< budget
&& (skb
= __skb_dequeue(&process_queue
))) {
252 napi_gro_receive(napi
, skb
);
256 if (!skb_queue_empty(&process_queue
)) {
257 spin_lock(&queue
->lock
);
258 skb_queue_splice(&process_queue
, queue
);
259 spin_unlock(&queue
->lock
);
265 static int tun_napi_poll(struct napi_struct
*napi
, int budget
)
267 unsigned int received
;
269 received
= tun_napi_receive(napi
, budget
);
271 if (received
< budget
)
272 napi_complete_done(napi
, received
);
277 static void tun_napi_init(struct tun_struct
*tun
, struct tun_file
*tfile
,
280 tfile
->napi_enabled
= napi_en
;
282 netif_napi_add(tun
->dev
, &tfile
->napi
, tun_napi_poll
,
284 napi_enable(&tfile
->napi
);
285 mutex_init(&tfile
->napi_mutex
);
289 static void tun_napi_disable(struct tun_struct
*tun
, struct tun_file
*tfile
)
291 if (tfile
->napi_enabled
)
292 napi_disable(&tfile
->napi
);
295 static void tun_napi_del(struct tun_struct
*tun
, struct tun_file
*tfile
)
297 if (tfile
->napi_enabled
)
298 netif_napi_del(&tfile
->napi
);
301 static bool tun_napi_frags_enabled(const struct tun_struct
*tun
)
303 return READ_ONCE(tun
->flags
) & IFF_NAPI_FRAGS
;
306 #ifdef CONFIG_TUN_VNET_CROSS_LE
307 static inline bool tun_legacy_is_little_endian(struct tun_struct
*tun
)
309 return tun
->flags
& TUN_VNET_BE
? false :
310 virtio_legacy_is_little_endian();
313 static long tun_get_vnet_be(struct tun_struct
*tun
, int __user
*argp
)
315 int be
= !!(tun
->flags
& TUN_VNET_BE
);
317 if (put_user(be
, argp
))
323 static long tun_set_vnet_be(struct tun_struct
*tun
, int __user
*argp
)
327 if (get_user(be
, argp
))
331 tun
->flags
|= TUN_VNET_BE
;
333 tun
->flags
&= ~TUN_VNET_BE
;
338 static inline bool tun_legacy_is_little_endian(struct tun_struct
*tun
)
340 return virtio_legacy_is_little_endian();
343 static long tun_get_vnet_be(struct tun_struct
*tun
, int __user
*argp
)
348 static long tun_set_vnet_be(struct tun_struct
*tun
, int __user
*argp
)
352 #endif /* CONFIG_TUN_VNET_CROSS_LE */
354 static inline bool tun_is_little_endian(struct tun_struct
*tun
)
356 return tun
->flags
& TUN_VNET_LE
||
357 tun_legacy_is_little_endian(tun
);
360 static inline u16
tun16_to_cpu(struct tun_struct
*tun
, __virtio16 val
)
362 return __virtio16_to_cpu(tun_is_little_endian(tun
), val
);
365 static inline __virtio16
cpu_to_tun16(struct tun_struct
*tun
, u16 val
)
367 return __cpu_to_virtio16(tun_is_little_endian(tun
), val
);
370 static inline u32
tun_hashfn(u32 rxhash
)
372 return rxhash
& 0x3ff;
375 static struct tun_flow_entry
*tun_flow_find(struct hlist_head
*head
, u32 rxhash
)
377 struct tun_flow_entry
*e
;
379 hlist_for_each_entry_rcu(e
, head
, hash_link
) {
380 if (e
->rxhash
== rxhash
)
386 static struct tun_flow_entry
*tun_flow_create(struct tun_struct
*tun
,
387 struct hlist_head
*head
,
388 u32 rxhash
, u16 queue_index
)
390 struct tun_flow_entry
*e
= kmalloc(sizeof(*e
), GFP_ATOMIC
);
393 tun_debug(KERN_INFO
, tun
, "create flow: hash %u index %u\n",
394 rxhash
, queue_index
);
395 e
->updated
= jiffies
;
398 e
->queue_index
= queue_index
;
400 hlist_add_head_rcu(&e
->hash_link
, head
);
406 static void tun_flow_delete(struct tun_struct
*tun
, struct tun_flow_entry
*e
)
408 tun_debug(KERN_INFO
, tun
, "delete flow: hash %u index %u\n",
409 e
->rxhash
, e
->queue_index
);
410 hlist_del_rcu(&e
->hash_link
);
415 static void tun_flow_flush(struct tun_struct
*tun
)
419 spin_lock_bh(&tun
->lock
);
420 for (i
= 0; i
< TUN_NUM_FLOW_ENTRIES
; i
++) {
421 struct tun_flow_entry
*e
;
422 struct hlist_node
*n
;
424 hlist_for_each_entry_safe(e
, n
, &tun
->flows
[i
], hash_link
)
425 tun_flow_delete(tun
, e
);
427 spin_unlock_bh(&tun
->lock
);
430 static void tun_flow_delete_by_queue(struct tun_struct
*tun
, u16 queue_index
)
434 spin_lock_bh(&tun
->lock
);
435 for (i
= 0; i
< TUN_NUM_FLOW_ENTRIES
; i
++) {
436 struct tun_flow_entry
*e
;
437 struct hlist_node
*n
;
439 hlist_for_each_entry_safe(e
, n
, &tun
->flows
[i
], hash_link
) {
440 if (e
->queue_index
== queue_index
)
441 tun_flow_delete(tun
, e
);
444 spin_unlock_bh(&tun
->lock
);
447 static void tun_flow_cleanup(struct timer_list
*t
)
449 struct tun_struct
*tun
= from_timer(tun
, t
, flow_gc_timer
);
450 unsigned long delay
= tun
->ageing_time
;
451 unsigned long next_timer
= jiffies
+ delay
;
452 unsigned long count
= 0;
455 tun_debug(KERN_INFO
, tun
, "tun_flow_cleanup\n");
457 spin_lock(&tun
->lock
);
458 for (i
= 0; i
< TUN_NUM_FLOW_ENTRIES
; i
++) {
459 struct tun_flow_entry
*e
;
460 struct hlist_node
*n
;
462 hlist_for_each_entry_safe(e
, n
, &tun
->flows
[i
], hash_link
) {
463 unsigned long this_timer
;
465 this_timer
= e
->updated
+ delay
;
466 if (time_before_eq(this_timer
, jiffies
)) {
467 tun_flow_delete(tun
, e
);
471 if (time_before(this_timer
, next_timer
))
472 next_timer
= this_timer
;
477 mod_timer(&tun
->flow_gc_timer
, round_jiffies_up(next_timer
));
478 spin_unlock(&tun
->lock
);
481 static void tun_flow_update(struct tun_struct
*tun
, u32 rxhash
,
482 struct tun_file
*tfile
)
484 struct hlist_head
*head
;
485 struct tun_flow_entry
*e
;
486 unsigned long delay
= tun
->ageing_time
;
487 u16 queue_index
= tfile
->queue_index
;
492 head
= &tun
->flows
[tun_hashfn(rxhash
)];
496 /* We may get a very small possibility of OOO during switching, not
497 * worth to optimize.*/
498 if (tun
->numqueues
== 1 || tfile
->detached
)
501 e
= tun_flow_find(head
, rxhash
);
503 /* TODO: keep queueing to old queue until it's empty? */
504 e
->queue_index
= queue_index
;
505 e
->updated
= jiffies
;
506 sock_rps_record_flow_hash(e
->rps_rxhash
);
508 spin_lock_bh(&tun
->lock
);
509 if (!tun_flow_find(head
, rxhash
) &&
510 tun
->flow_count
< MAX_TAP_FLOWS
)
511 tun_flow_create(tun
, head
, rxhash
, queue_index
);
513 if (!timer_pending(&tun
->flow_gc_timer
))
514 mod_timer(&tun
->flow_gc_timer
,
515 round_jiffies_up(jiffies
+ delay
));
516 spin_unlock_bh(&tun
->lock
);
524 * Save the hash received in the stack receive path and update the
525 * flow_hash table accordingly.
527 static inline void tun_flow_save_rps_rxhash(struct tun_flow_entry
*e
, u32 hash
)
529 if (unlikely(e
->rps_rxhash
!= hash
))
530 e
->rps_rxhash
= hash
;
533 /* We try to identify a flow through its rxhash first. The reason that
534 * we do not check rxq no. is because some cards(e.g 82599), chooses
535 * the rxq based on the txq where the last packet of the flow comes. As
536 * the userspace application move between processors, we may get a
537 * different rxq no. here. If we could not get rxhash, then we would
538 * hope the rxq no. may help here.
540 static u16
tun_select_queue(struct net_device
*dev
, struct sk_buff
*skb
,
541 void *accel_priv
, select_queue_fallback_t fallback
)
543 struct tun_struct
*tun
= netdev_priv(dev
);
544 struct tun_flow_entry
*e
;
549 numqueues
= READ_ONCE(tun
->numqueues
);
551 txq
= __skb_get_hash_symmetric(skb
);
553 e
= tun_flow_find(&tun
->flows
[tun_hashfn(txq
)], txq
);
555 tun_flow_save_rps_rxhash(e
, txq
);
556 txq
= e
->queue_index
;
558 /* use multiply and shift instead of expensive divide */
559 txq
= ((u64
)txq
* numqueues
) >> 32;
560 } else if (likely(skb_rx_queue_recorded(skb
))) {
561 txq
= skb_get_rx_queue(skb
);
562 while (unlikely(txq
>= numqueues
))
570 static inline bool tun_not_capable(struct tun_struct
*tun
)
572 const struct cred
*cred
= current_cred();
573 struct net
*net
= dev_net(tun
->dev
);
575 return ((uid_valid(tun
->owner
) && !uid_eq(cred
->euid
, tun
->owner
)) ||
576 (gid_valid(tun
->group
) && !in_egroup_p(tun
->group
))) &&
577 !ns_capable(net
->user_ns
, CAP_NET_ADMIN
);
580 static void tun_set_real_num_queues(struct tun_struct
*tun
)
582 netif_set_real_num_tx_queues(tun
->dev
, tun
->numqueues
);
583 netif_set_real_num_rx_queues(tun
->dev
, tun
->numqueues
);
586 static void tun_disable_queue(struct tun_struct
*tun
, struct tun_file
*tfile
)
588 tfile
->detached
= tun
;
589 list_add_tail(&tfile
->next
, &tun
->disabled
);
593 static struct tun_struct
*tun_enable_queue(struct tun_file
*tfile
)
595 struct tun_struct
*tun
= tfile
->detached
;
597 tfile
->detached
= NULL
;
598 list_del_init(&tfile
->next
);
603 static void tun_queue_purge(struct tun_file
*tfile
)
607 while ((skb
= skb_array_consume(&tfile
->tx_array
)) != NULL
)
610 skb_queue_purge(&tfile
->sk
.sk_write_queue
);
611 skb_queue_purge(&tfile
->sk
.sk_error_queue
);
614 static void tun_cleanup_tx_array(struct tun_file
*tfile
)
616 if (tfile
->tx_array
.ring
.queue
) {
617 skb_array_cleanup(&tfile
->tx_array
);
618 memset(&tfile
->tx_array
, 0, sizeof(tfile
->tx_array
));
622 static void __tun_detach(struct tun_file
*tfile
, bool clean
)
624 struct tun_file
*ntfile
;
625 struct tun_struct
*tun
;
627 tun
= rtnl_dereference(tfile
->tun
);
630 tun_napi_disable(tun
, tfile
);
631 tun_napi_del(tun
, tfile
);
634 if (tun
&& !tfile
->detached
) {
635 u16 index
= tfile
->queue_index
;
636 BUG_ON(index
>= tun
->numqueues
);
638 rcu_assign_pointer(tun
->tfiles
[index
],
639 tun
->tfiles
[tun
->numqueues
- 1]);
640 ntfile
= rtnl_dereference(tun
->tfiles
[index
]);
641 ntfile
->queue_index
= index
;
645 RCU_INIT_POINTER(tfile
->tun
, NULL
);
646 sock_put(&tfile
->sk
);
648 tun_disable_queue(tun
, tfile
);
651 tun_flow_delete_by_queue(tun
, tun
->numqueues
+ 1);
652 /* Drop read queue */
653 tun_queue_purge(tfile
);
654 tun_set_real_num_queues(tun
);
655 } else if (tfile
->detached
&& clean
) {
656 tun
= tun_enable_queue(tfile
);
657 sock_put(&tfile
->sk
);
661 if (tun
&& tun
->numqueues
== 0 && tun
->numdisabled
== 0) {
662 netif_carrier_off(tun
->dev
);
664 if (!(tun
->flags
& IFF_PERSIST
) &&
665 tun
->dev
->reg_state
== NETREG_REGISTERED
)
666 unregister_netdevice(tun
->dev
);
668 tun_cleanup_tx_array(tfile
);
669 sock_put(&tfile
->sk
);
673 static void tun_detach(struct tun_file
*tfile
, bool clean
)
676 __tun_detach(tfile
, clean
);
680 static void tun_detach_all(struct net_device
*dev
)
682 struct tun_struct
*tun
= netdev_priv(dev
);
683 struct bpf_prog
*xdp_prog
= rtnl_dereference(tun
->xdp_prog
);
684 struct tun_file
*tfile
, *tmp
;
685 int i
, n
= tun
->numqueues
;
687 for (i
= 0; i
< n
; i
++) {
688 tfile
= rtnl_dereference(tun
->tfiles
[i
]);
690 tun_napi_disable(tun
, tfile
);
691 tfile
->socket
.sk
->sk_shutdown
= RCV_SHUTDOWN
;
692 tfile
->socket
.sk
->sk_data_ready(tfile
->socket
.sk
);
693 RCU_INIT_POINTER(tfile
->tun
, NULL
);
696 list_for_each_entry(tfile
, &tun
->disabled
, next
) {
697 tfile
->socket
.sk
->sk_shutdown
= RCV_SHUTDOWN
;
698 tfile
->socket
.sk
->sk_data_ready(tfile
->socket
.sk
);
699 RCU_INIT_POINTER(tfile
->tun
, NULL
);
701 BUG_ON(tun
->numqueues
!= 0);
704 for (i
= 0; i
< n
; i
++) {
705 tfile
= rtnl_dereference(tun
->tfiles
[i
]);
706 tun_napi_del(tun
, tfile
);
707 /* Drop read queue */
708 tun_queue_purge(tfile
);
709 sock_put(&tfile
->sk
);
710 tun_cleanup_tx_array(tfile
);
712 list_for_each_entry_safe(tfile
, tmp
, &tun
->disabled
, next
) {
713 tun_enable_queue(tfile
);
714 tun_queue_purge(tfile
);
715 sock_put(&tfile
->sk
);
716 tun_cleanup_tx_array(tfile
);
718 BUG_ON(tun
->numdisabled
!= 0);
721 bpf_prog_put(xdp_prog
);
723 if (tun
->flags
& IFF_PERSIST
)
724 module_put(THIS_MODULE
);
727 static int tun_attach(struct tun_struct
*tun
, struct file
*file
,
728 bool skip_filter
, bool napi
)
730 struct tun_file
*tfile
= file
->private_data
;
731 struct net_device
*dev
= tun
->dev
;
734 err
= security_tun_dev_attach(tfile
->socket
.sk
, tun
->security
);
739 if (rtnl_dereference(tfile
->tun
) && !tfile
->detached
)
743 if (!(tun
->flags
& IFF_MULTI_QUEUE
) && tun
->numqueues
== 1)
747 if (!tfile
->detached
&&
748 tun
->numqueues
+ tun
->numdisabled
== MAX_TAP_QUEUES
)
753 /* Re-attach the filter to persist device */
754 if (!skip_filter
&& (tun
->filter_attached
== true)) {
755 lock_sock(tfile
->socket
.sk
);
756 err
= sk_attach_filter(&tun
->fprog
, tfile
->socket
.sk
);
757 release_sock(tfile
->socket
.sk
);
762 if (!tfile
->detached
&&
763 skb_array_init(&tfile
->tx_array
, dev
->tx_queue_len
, GFP_KERNEL
)) {
768 tfile
->queue_index
= tun
->numqueues
;
769 tfile
->socket
.sk
->sk_shutdown
&= ~RCV_SHUTDOWN
;
770 rcu_assign_pointer(tfile
->tun
, tun
);
771 rcu_assign_pointer(tun
->tfiles
[tun
->numqueues
], tfile
);
774 if (tfile
->detached
) {
775 tun_enable_queue(tfile
);
777 sock_hold(&tfile
->sk
);
778 tun_napi_init(tun
, tfile
, napi
);
781 tun_set_real_num_queues(tun
);
783 /* device is allowed to go away first, so no need to hold extra
791 static struct tun_struct
*tun_get(struct tun_file
*tfile
)
793 struct tun_struct
*tun
;
796 tun
= rcu_dereference(tfile
->tun
);
804 static void tun_put(struct tun_struct
*tun
)
810 static void addr_hash_set(u32
*mask
, const u8
*addr
)
812 int n
= ether_crc(ETH_ALEN
, addr
) >> 26;
813 mask
[n
>> 5] |= (1 << (n
& 31));
816 static unsigned int addr_hash_test(const u32
*mask
, const u8
*addr
)
818 int n
= ether_crc(ETH_ALEN
, addr
) >> 26;
819 return mask
[n
>> 5] & (1 << (n
& 31));
822 static int update_filter(struct tap_filter
*filter
, void __user
*arg
)
824 struct { u8 u
[ETH_ALEN
]; } *addr
;
825 struct tun_filter uf
;
826 int err
, alen
, n
, nexact
;
828 if (copy_from_user(&uf
, arg
, sizeof(uf
)))
837 alen
= ETH_ALEN
* uf
.count
;
838 addr
= memdup_user(arg
+ sizeof(uf
), alen
);
840 return PTR_ERR(addr
);
842 /* The filter is updated without holding any locks. Which is
843 * perfectly safe. We disable it first and in the worst
844 * case we'll accept a few undesired packets. */
848 /* Use first set of addresses as an exact filter */
849 for (n
= 0; n
< uf
.count
&& n
< FLT_EXACT_COUNT
; n
++)
850 memcpy(filter
->addr
[n
], addr
[n
].u
, ETH_ALEN
);
854 /* Remaining multicast addresses are hashed,
855 * unicast will leave the filter disabled. */
856 memset(filter
->mask
, 0, sizeof(filter
->mask
));
857 for (; n
< uf
.count
; n
++) {
858 if (!is_multicast_ether_addr(addr
[n
].u
)) {
859 err
= 0; /* no filter */
862 addr_hash_set(filter
->mask
, addr
[n
].u
);
865 /* For ALLMULTI just set the mask to all ones.
866 * This overrides the mask populated above. */
867 if ((uf
.flags
& TUN_FLT_ALLMULTI
))
868 memset(filter
->mask
, ~0, sizeof(filter
->mask
));
870 /* Now enable the filter */
872 filter
->count
= nexact
;
874 /* Return the number of exact filters */
881 /* Returns: 0 - drop, !=0 - accept */
882 static int run_filter(struct tap_filter
*filter
, const struct sk_buff
*skb
)
884 /* Cannot use eth_hdr(skb) here because skb_mac_hdr() is incorrect
886 struct ethhdr
*eh
= (struct ethhdr
*) skb
->data
;
890 for (i
= 0; i
< filter
->count
; i
++)
891 if (ether_addr_equal(eh
->h_dest
, filter
->addr
[i
]))
894 /* Inexact match (multicast only) */
895 if (is_multicast_ether_addr(eh
->h_dest
))
896 return addr_hash_test(filter
->mask
, eh
->h_dest
);
902 * Checks whether the packet is accepted or not.
903 * Returns: 0 - drop, !=0 - accept
905 static int check_filter(struct tap_filter
*filter
, const struct sk_buff
*skb
)
910 return run_filter(filter
, skb
);
913 /* Network device part of the driver */
915 static const struct ethtool_ops tun_ethtool_ops
;
917 /* Net device detach from fd. */
918 static void tun_net_uninit(struct net_device
*dev
)
923 /* Net device open. */
924 static int tun_net_open(struct net_device
*dev
)
926 struct tun_struct
*tun
= netdev_priv(dev
);
929 netif_tx_start_all_queues(dev
);
931 for (i
= 0; i
< tun
->numqueues
; i
++) {
932 struct tun_file
*tfile
;
934 tfile
= rtnl_dereference(tun
->tfiles
[i
]);
935 tfile
->socket
.sk
->sk_write_space(tfile
->socket
.sk
);
941 /* Net device close. */
942 static int tun_net_close(struct net_device
*dev
)
944 netif_tx_stop_all_queues(dev
);
948 /* Net device start xmit */
949 static netdev_tx_t
tun_net_xmit(struct sk_buff
*skb
, struct net_device
*dev
)
951 struct tun_struct
*tun
= netdev_priv(dev
);
952 int txq
= skb
->queue_mapping
;
953 struct tun_file
*tfile
;
957 tfile
= rcu_dereference(tun
->tfiles
[txq
]);
958 numqueues
= READ_ONCE(tun
->numqueues
);
960 /* Drop packet if interface is not attached */
961 if (txq
>= numqueues
)
965 if (numqueues
== 1 && static_key_false(&rps_needed
)) {
966 /* Select queue was not called for the skbuff, so we extract the
967 * RPS hash and save it into the flow_table here.
971 rxhash
= __skb_get_hash_symmetric(skb
);
973 struct tun_flow_entry
*e
;
974 e
= tun_flow_find(&tun
->flows
[tun_hashfn(rxhash
)],
977 tun_flow_save_rps_rxhash(e
, rxhash
);
982 tun_debug(KERN_INFO
, tun
, "tun_net_xmit %d\n", skb
->len
);
986 /* Drop if the filter does not like it.
987 * This is a noop if the filter is disabled.
988 * Filter can be enabled only for the TAP devices. */
989 if (!check_filter(&tun
->txflt
, skb
))
992 if (tfile
->socket
.sk
->sk_filter
&&
993 sk_filter(tfile
->socket
.sk
, skb
))
996 if (unlikely(skb_orphan_frags_rx(skb
, GFP_ATOMIC
)))
999 skb_tx_timestamp(skb
);
1001 /* Orphan the skb - required as we might hang on to it
1002 * for indefinite time.
1008 if (skb_array_produce(&tfile
->tx_array
, skb
))
1011 /* Notify and wake up reader process */
1012 if (tfile
->flags
& TUN_FASYNC
)
1013 kill_fasync(&tfile
->fasync
, SIGIO
, POLL_IN
);
1014 tfile
->socket
.sk
->sk_data_ready(tfile
->socket
.sk
);
1017 return NETDEV_TX_OK
;
1020 this_cpu_inc(tun
->pcpu_stats
->tx_dropped
);
1024 return NET_XMIT_DROP
;
1027 static void tun_net_mclist(struct net_device
*dev
)
1030 * This callback is supposed to deal with mc filter in
1031 * _rx_ path and has nothing to do with the _tx_ path.
1032 * In rx path we always accept everything userspace gives us.
1036 static netdev_features_t
tun_net_fix_features(struct net_device
*dev
,
1037 netdev_features_t features
)
1039 struct tun_struct
*tun
= netdev_priv(dev
);
1041 return (features
& tun
->set_features
) | (features
& ~TUN_USER_FEATURES
);
1043 #ifdef CONFIG_NET_POLL_CONTROLLER
1044 static void tun_poll_controller(struct net_device
*dev
)
1047 * Tun only receives frames when:
1048 * 1) the char device endpoint gets data from user space
1049 * 2) the tun socket gets a sendmsg call from user space
1050 * If NAPI is not enabled, since both of those are synchronous
1051 * operations, we are guaranteed never to have pending data when we poll
1052 * for it so there is nothing to do here but return.
1053 * We need this though so netpoll recognizes us as an interface that
1054 * supports polling, which enables bridge devices in virt setups to
1055 * still use netconsole
1056 * If NAPI is enabled, however, we need to schedule polling for all
1057 * queues unless we are using napi_gro_frags(), which we call in
1058 * process context and not in NAPI context.
1060 struct tun_struct
*tun
= netdev_priv(dev
);
1062 if (tun
->flags
& IFF_NAPI
) {
1063 struct tun_file
*tfile
;
1066 if (tun_napi_frags_enabled(tun
))
1070 for (i
= 0; i
< tun
->numqueues
; i
++) {
1071 tfile
= rcu_dereference(tun
->tfiles
[i
]);
1072 if (tfile
->napi_enabled
)
1073 napi_schedule(&tfile
->napi
);
1081 static void tun_set_headroom(struct net_device
*dev
, int new_hr
)
1083 struct tun_struct
*tun
= netdev_priv(dev
);
1085 if (new_hr
< NET_SKB_PAD
)
1086 new_hr
= NET_SKB_PAD
;
1088 tun
->align
= new_hr
;
1092 tun_net_get_stats64(struct net_device
*dev
, struct rtnl_link_stats64
*stats
)
1094 u32 rx_dropped
= 0, tx_dropped
= 0, rx_frame_errors
= 0;
1095 struct tun_struct
*tun
= netdev_priv(dev
);
1096 struct tun_pcpu_stats
*p
;
1099 for_each_possible_cpu(i
) {
1100 u64 rxpackets
, rxbytes
, txpackets
, txbytes
;
1103 p
= per_cpu_ptr(tun
->pcpu_stats
, i
);
1105 start
= u64_stats_fetch_begin(&p
->syncp
);
1106 rxpackets
= p
->rx_packets
;
1107 rxbytes
= p
->rx_bytes
;
1108 txpackets
= p
->tx_packets
;
1109 txbytes
= p
->tx_bytes
;
1110 } while (u64_stats_fetch_retry(&p
->syncp
, start
));
1112 stats
->rx_packets
+= rxpackets
;
1113 stats
->rx_bytes
+= rxbytes
;
1114 stats
->tx_packets
+= txpackets
;
1115 stats
->tx_bytes
+= txbytes
;
1118 rx_dropped
+= p
->rx_dropped
;
1119 rx_frame_errors
+= p
->rx_frame_errors
;
1120 tx_dropped
+= p
->tx_dropped
;
1122 stats
->rx_dropped
= rx_dropped
;
1123 stats
->rx_frame_errors
= rx_frame_errors
;
1124 stats
->tx_dropped
= tx_dropped
;
1127 static int tun_xdp_set(struct net_device
*dev
, struct bpf_prog
*prog
,
1128 struct netlink_ext_ack
*extack
)
1130 struct tun_struct
*tun
= netdev_priv(dev
);
1131 struct bpf_prog
*old_prog
;
1133 old_prog
= rtnl_dereference(tun
->xdp_prog
);
1134 rcu_assign_pointer(tun
->xdp_prog
, prog
);
1136 bpf_prog_put(old_prog
);
1141 static u32
tun_xdp_query(struct net_device
*dev
)
1143 struct tun_struct
*tun
= netdev_priv(dev
);
1144 const struct bpf_prog
*xdp_prog
;
1146 xdp_prog
= rtnl_dereference(tun
->xdp_prog
);
1148 return xdp_prog
->aux
->id
;
1153 static int tun_xdp(struct net_device
*dev
, struct netdev_bpf
*xdp
)
1155 switch (xdp
->command
) {
1156 case XDP_SETUP_PROG
:
1157 return tun_xdp_set(dev
, xdp
->prog
, xdp
->extack
);
1158 case XDP_QUERY_PROG
:
1159 xdp
->prog_id
= tun_xdp_query(dev
);
1160 xdp
->prog_attached
= !!xdp
->prog_id
;
1167 static const struct net_device_ops tun_netdev_ops
= {
1168 .ndo_uninit
= tun_net_uninit
,
1169 .ndo_open
= tun_net_open
,
1170 .ndo_stop
= tun_net_close
,
1171 .ndo_start_xmit
= tun_net_xmit
,
1172 .ndo_fix_features
= tun_net_fix_features
,
1173 .ndo_select_queue
= tun_select_queue
,
1174 #ifdef CONFIG_NET_POLL_CONTROLLER
1175 .ndo_poll_controller
= tun_poll_controller
,
1177 .ndo_set_rx_headroom
= tun_set_headroom
,
1178 .ndo_get_stats64
= tun_net_get_stats64
,
1181 static const struct net_device_ops tap_netdev_ops
= {
1182 .ndo_uninit
= tun_net_uninit
,
1183 .ndo_open
= tun_net_open
,
1184 .ndo_stop
= tun_net_close
,
1185 .ndo_start_xmit
= tun_net_xmit
,
1186 .ndo_fix_features
= tun_net_fix_features
,
1187 .ndo_set_rx_mode
= tun_net_mclist
,
1188 .ndo_set_mac_address
= eth_mac_addr
,
1189 .ndo_validate_addr
= eth_validate_addr
,
1190 .ndo_select_queue
= tun_select_queue
,
1191 #ifdef CONFIG_NET_POLL_CONTROLLER
1192 .ndo_poll_controller
= tun_poll_controller
,
1194 .ndo_features_check
= passthru_features_check
,
1195 .ndo_set_rx_headroom
= tun_set_headroom
,
1196 .ndo_get_stats64
= tun_net_get_stats64
,
1200 static void tun_flow_init(struct tun_struct
*tun
)
1204 for (i
= 0; i
< TUN_NUM_FLOW_ENTRIES
; i
++)
1205 INIT_HLIST_HEAD(&tun
->flows
[i
]);
1207 tun
->ageing_time
= TUN_FLOW_EXPIRE
;
1208 timer_setup(&tun
->flow_gc_timer
, tun_flow_cleanup
, 0);
1209 mod_timer(&tun
->flow_gc_timer
,
1210 round_jiffies_up(jiffies
+ tun
->ageing_time
));
1213 static void tun_flow_uninit(struct tun_struct
*tun
)
1215 del_timer_sync(&tun
->flow_gc_timer
);
1216 tun_flow_flush(tun
);
1220 #define MAX_MTU 65535
1222 /* Initialize net device. */
1223 static void tun_net_init(struct net_device
*dev
)
1225 struct tun_struct
*tun
= netdev_priv(dev
);
1227 switch (tun
->flags
& TUN_TYPE_MASK
) {
1229 dev
->netdev_ops
= &tun_netdev_ops
;
1231 /* Point-to-Point TUN Device */
1232 dev
->hard_header_len
= 0;
1236 /* Zero header length */
1237 dev
->type
= ARPHRD_NONE
;
1238 dev
->flags
= IFF_POINTOPOINT
| IFF_NOARP
| IFF_MULTICAST
;
1242 dev
->netdev_ops
= &tap_netdev_ops
;
1243 /* Ethernet TAP Device */
1245 dev
->priv_flags
&= ~IFF_TX_SKB_SHARING
;
1246 dev
->priv_flags
|= IFF_LIVE_ADDR_CHANGE
;
1248 eth_hw_addr_random(dev
);
1253 dev
->min_mtu
= MIN_MTU
;
1254 dev
->max_mtu
= MAX_MTU
- dev
->hard_header_len
;
1257 /* Character device part */
1260 static unsigned int tun_chr_poll(struct file
*file
, poll_table
*wait
)
1262 struct tun_file
*tfile
= file
->private_data
;
1263 struct tun_struct
*tun
= tun_get(tfile
);
1265 unsigned int mask
= 0;
1270 sk
= tfile
->socket
.sk
;
1272 tun_debug(KERN_INFO
, tun
, "tun_chr_poll\n");
1274 poll_wait(file
, sk_sleep(sk
), wait
);
1276 if (!skb_array_empty(&tfile
->tx_array
))
1277 mask
|= POLLIN
| POLLRDNORM
;
1279 if (tun
->dev
->flags
& IFF_UP
&&
1280 (sock_writeable(sk
) ||
1281 (!test_and_set_bit(SOCKWQ_ASYNC_NOSPACE
, &sk
->sk_socket
->flags
) &&
1282 sock_writeable(sk
))))
1283 mask
|= POLLOUT
| POLLWRNORM
;
1285 if (tun
->dev
->reg_state
!= NETREG_REGISTERED
)
1292 static struct sk_buff
*tun_napi_alloc_frags(struct tun_file
*tfile
,
1294 const struct iov_iter
*it
)
1296 struct sk_buff
*skb
;
1301 if (it
->nr_segs
> MAX_SKB_FRAGS
+ 1)
1302 return ERR_PTR(-ENOMEM
);
1305 skb
= napi_get_frags(&tfile
->napi
);
1308 return ERR_PTR(-ENOMEM
);
1310 linear
= iov_iter_single_seg_count(it
);
1311 err
= __skb_grow(skb
, linear
);
1316 skb
->data_len
= len
- linear
;
1317 skb
->truesize
+= skb
->data_len
;
1319 for (i
= 1; i
< it
->nr_segs
; i
++) {
1320 struct page_frag
*pfrag
= ¤t
->task_frag
;
1321 size_t fragsz
= it
->iov
[i
].iov_len
;
1323 if (fragsz
== 0 || fragsz
> PAGE_SIZE
) {
1328 if (!skb_page_frag_refill(fragsz
, pfrag
, GFP_KERNEL
)) {
1333 skb_fill_page_desc(skb
, i
- 1, pfrag
->page
,
1334 pfrag
->offset
, fragsz
);
1335 page_ref_inc(pfrag
->page
);
1336 pfrag
->offset
+= fragsz
;
1341 /* frees skb and all frags allocated with napi_alloc_frag() */
1342 napi_free_frags(&tfile
->napi
);
1343 return ERR_PTR(err
);
1346 /* prepad is the amount to reserve at front. len is length after that.
1347 * linear is a hint as to how much to copy (usually headers). */
1348 static struct sk_buff
*tun_alloc_skb(struct tun_file
*tfile
,
1349 size_t prepad
, size_t len
,
1350 size_t linear
, int noblock
)
1352 struct sock
*sk
= tfile
->socket
.sk
;
1353 struct sk_buff
*skb
;
1356 /* Under a page? Don't bother with paged skb. */
1357 if (prepad
+ len
< PAGE_SIZE
|| !linear
)
1360 skb
= sock_alloc_send_pskb(sk
, prepad
+ linear
, len
- linear
, noblock
,
1363 return ERR_PTR(err
);
1365 skb_reserve(skb
, prepad
);
1366 skb_put(skb
, linear
);
1367 skb
->data_len
= len
- linear
;
1368 skb
->len
+= len
- linear
;
1373 static void tun_rx_batched(struct tun_struct
*tun
, struct tun_file
*tfile
,
1374 struct sk_buff
*skb
, int more
)
1376 struct sk_buff_head
*queue
= &tfile
->sk
.sk_write_queue
;
1377 struct sk_buff_head process_queue
;
1378 u32 rx_batched
= tun
->rx_batched
;
1381 if (!rx_batched
|| (!more
&& skb_queue_empty(queue
))) {
1383 netif_receive_skb(skb
);
1388 spin_lock(&queue
->lock
);
1389 if (!more
|| skb_queue_len(queue
) == rx_batched
) {
1390 __skb_queue_head_init(&process_queue
);
1391 skb_queue_splice_tail_init(queue
, &process_queue
);
1394 __skb_queue_tail(queue
, skb
);
1396 spin_unlock(&queue
->lock
);
1399 struct sk_buff
*nskb
;
1402 while ((nskb
= __skb_dequeue(&process_queue
)))
1403 netif_receive_skb(nskb
);
1404 netif_receive_skb(skb
);
1409 static bool tun_can_build_skb(struct tun_struct
*tun
, struct tun_file
*tfile
,
1410 int len
, int noblock
, bool zerocopy
)
1412 if ((tun
->flags
& TUN_TYPE_MASK
) != IFF_TAP
)
1415 if (tfile
->socket
.sk
->sk_sndbuf
!= INT_MAX
)
1424 if (SKB_DATA_ALIGN(len
+ TUN_RX_PAD
) +
1425 SKB_DATA_ALIGN(sizeof(struct skb_shared_info
)) > PAGE_SIZE
)
1431 static struct sk_buff
*tun_build_skb(struct tun_struct
*tun
,
1432 struct tun_file
*tfile
,
1433 struct iov_iter
*from
,
1434 struct virtio_net_hdr
*hdr
,
1435 int len
, int *skb_xdp
)
1437 struct page_frag
*alloc_frag
= ¤t
->task_frag
;
1438 struct sk_buff
*skb
;
1439 struct bpf_prog
*xdp_prog
;
1440 int buflen
= SKB_DATA_ALIGN(sizeof(struct skb_shared_info
));
1441 unsigned int delta
= 0;
1444 bool xdp_xmit
= false;
1445 int err
, pad
= TUN_RX_PAD
;
1448 xdp_prog
= rcu_dereference(tun
->xdp_prog
);
1450 pad
+= TUN_HEADROOM
;
1451 buflen
+= SKB_DATA_ALIGN(len
+ pad
);
1454 alloc_frag
->offset
= ALIGN((u64
)alloc_frag
->offset
, SMP_CACHE_BYTES
);
1455 if (unlikely(!skb_page_frag_refill(buflen
, alloc_frag
, GFP_KERNEL
)))
1456 return ERR_PTR(-ENOMEM
);
1458 buf
= (char *)page_address(alloc_frag
->page
) + alloc_frag
->offset
;
1459 copied
= copy_page_from_iter(alloc_frag
->page
,
1460 alloc_frag
->offset
+ pad
,
1463 return ERR_PTR(-EFAULT
);
1465 /* There's a small window that XDP may be set after the check
1466 * of xdp_prog above, this should be rare and for simplicity
1467 * we do XDP on skb in case the headroom is not enough.
1469 if (hdr
->gso_type
|| !xdp_prog
)
1475 xdp_prog
= rcu_dereference(tun
->xdp_prog
);
1476 if (xdp_prog
&& !*skb_xdp
) {
1477 struct xdp_buff xdp
;
1481 xdp
.data_hard_start
= buf
;
1482 xdp
.data
= buf
+ pad
;
1483 xdp_set_data_meta_invalid(&xdp
);
1484 xdp
.data_end
= xdp
.data
+ len
;
1485 orig_data
= xdp
.data
;
1486 act
= bpf_prog_run_xdp(xdp_prog
, &xdp
);
1490 get_page(alloc_frag
->page
);
1491 alloc_frag
->offset
+= buflen
;
1492 err
= xdp_do_redirect(tun
->dev
, &xdp
, xdp_prog
);
1501 delta
= orig_data
- xdp
.data
;
1504 bpf_warn_invalid_xdp_action(act
);
1507 trace_xdp_exception(tun
->dev
, xdp_prog
, act
);
1514 skb
= build_skb(buf
, buflen
);
1517 return ERR_PTR(-ENOMEM
);
1520 skb_reserve(skb
, pad
- delta
);
1521 skb_put(skb
, len
+ delta
);
1522 get_page(alloc_frag
->page
);
1523 alloc_frag
->offset
+= buflen
;
1526 skb
->dev
= tun
->dev
;
1527 generic_xdp_tx(skb
, xdp_prog
);
1537 put_page(alloc_frag
->page
);
1540 this_cpu_inc(tun
->pcpu_stats
->rx_dropped
);
1544 /* Get packet from user space buffer */
1545 static ssize_t
tun_get_user(struct tun_struct
*tun
, struct tun_file
*tfile
,
1546 void *msg_control
, struct iov_iter
*from
,
1547 int noblock
, bool more
)
1549 struct tun_pi pi
= { 0, cpu_to_be16(ETH_P_IP
) };
1550 struct sk_buff
*skb
;
1551 size_t total_len
= iov_iter_count(from
);
1552 size_t len
= total_len
, align
= tun
->align
, linear
;
1553 struct virtio_net_hdr gso
= { 0 };
1554 struct tun_pcpu_stats
*stats
;
1557 bool zerocopy
= false;
1561 bool frags
= tun_napi_frags_enabled(tun
);
1563 if (!(tun
->dev
->flags
& IFF_UP
))
1566 if (!(tun
->flags
& IFF_NO_PI
)) {
1567 if (len
< sizeof(pi
))
1571 if (!copy_from_iter_full(&pi
, sizeof(pi
), from
))
1575 if (tun
->flags
& IFF_VNET_HDR
) {
1576 int vnet_hdr_sz
= READ_ONCE(tun
->vnet_hdr_sz
);
1578 if (len
< vnet_hdr_sz
)
1582 if (!copy_from_iter_full(&gso
, sizeof(gso
), from
))
1585 if ((gso
.flags
& VIRTIO_NET_HDR_F_NEEDS_CSUM
) &&
1586 tun16_to_cpu(tun
, gso
.csum_start
) + tun16_to_cpu(tun
, gso
.csum_offset
) + 2 > tun16_to_cpu(tun
, gso
.hdr_len
))
1587 gso
.hdr_len
= cpu_to_tun16(tun
, tun16_to_cpu(tun
, gso
.csum_start
) + tun16_to_cpu(tun
, gso
.csum_offset
) + 2);
1589 if (tun16_to_cpu(tun
, gso
.hdr_len
) > len
)
1591 iov_iter_advance(from
, vnet_hdr_sz
- sizeof(gso
));
1594 if ((tun
->flags
& TUN_TYPE_MASK
) == IFF_TAP
) {
1595 align
+= NET_IP_ALIGN
;
1596 if (unlikely(len
< ETH_HLEN
||
1597 (gso
.hdr_len
&& tun16_to_cpu(tun
, gso
.hdr_len
) < ETH_HLEN
)))
1601 good_linear
= SKB_MAX_HEAD(align
);
1604 struct iov_iter i
= *from
;
1606 /* There are 256 bytes to be copied in skb, so there is
1607 * enough room for skb expand head in case it is used.
1608 * The rest of the buffer is mapped from userspace.
1610 copylen
= gso
.hdr_len
? tun16_to_cpu(tun
, gso
.hdr_len
) : GOODCOPY_LEN
;
1611 if (copylen
> good_linear
)
1612 copylen
= good_linear
;
1614 iov_iter_advance(&i
, copylen
);
1615 if (iov_iter_npages(&i
, INT_MAX
) <= MAX_SKB_FRAGS
)
1619 if (!frags
&& tun_can_build_skb(tun
, tfile
, len
, noblock
, zerocopy
)) {
1620 /* For the packet that is not easy to be processed
1621 * (e.g gso or jumbo packet), we will do it at after
1622 * skb was created with generic XDP routine.
1624 skb
= tun_build_skb(tun
, tfile
, from
, &gso
, len
, &skb_xdp
);
1626 this_cpu_inc(tun
->pcpu_stats
->rx_dropped
);
1627 return PTR_ERR(skb
);
1634 if (tun16_to_cpu(tun
, gso
.hdr_len
) > good_linear
)
1635 linear
= good_linear
;
1637 linear
= tun16_to_cpu(tun
, gso
.hdr_len
);
1641 mutex_lock(&tfile
->napi_mutex
);
1642 skb
= tun_napi_alloc_frags(tfile
, copylen
, from
);
1643 /* tun_napi_alloc_frags() enforces a layout for the skb.
1644 * If zerocopy is enabled, then this layout will be
1645 * overwritten by zerocopy_sg_from_iter().
1649 skb
= tun_alloc_skb(tfile
, align
, copylen
, linear
,
1654 if (PTR_ERR(skb
) != -EAGAIN
)
1655 this_cpu_inc(tun
->pcpu_stats
->rx_dropped
);
1657 mutex_unlock(&tfile
->napi_mutex
);
1658 return PTR_ERR(skb
);
1662 err
= zerocopy_sg_from_iter(skb
, from
);
1664 err
= skb_copy_datagram_from_iter(skb
, 0, from
, len
);
1667 this_cpu_inc(tun
->pcpu_stats
->rx_dropped
);
1670 tfile
->napi
.skb
= NULL
;
1671 mutex_unlock(&tfile
->napi_mutex
);
1678 if (virtio_net_hdr_to_skb(skb
, &gso
, tun_is_little_endian(tun
))) {
1679 this_cpu_inc(tun
->pcpu_stats
->rx_frame_errors
);
1682 tfile
->napi
.skb
= NULL
;
1683 mutex_unlock(&tfile
->napi_mutex
);
1689 switch (tun
->flags
& TUN_TYPE_MASK
) {
1691 if (tun
->flags
& IFF_NO_PI
) {
1692 u8 ip_version
= skb
->len
? (skb
->data
[0] >> 4) : 0;
1694 switch (ip_version
) {
1696 pi
.proto
= htons(ETH_P_IP
);
1699 pi
.proto
= htons(ETH_P_IPV6
);
1702 this_cpu_inc(tun
->pcpu_stats
->rx_dropped
);
1708 skb_reset_mac_header(skb
);
1709 skb
->protocol
= pi
.proto
;
1710 skb
->dev
= tun
->dev
;
1714 skb
->protocol
= eth_type_trans(skb
, tun
->dev
);
1718 /* copy skb_ubuf_info for callback when skb has no error */
1720 skb_shinfo(skb
)->destructor_arg
= msg_control
;
1721 skb_shinfo(skb
)->tx_flags
|= SKBTX_DEV_ZEROCOPY
;
1722 skb_shinfo(skb
)->tx_flags
|= SKBTX_SHARED_FRAG
;
1723 } else if (msg_control
) {
1724 struct ubuf_info
*uarg
= msg_control
;
1725 uarg
->callback(uarg
, false);
1728 skb_reset_network_header(skb
);
1729 skb_probe_transport_header(skb
, 0);
1732 struct bpf_prog
*xdp_prog
;
1736 xdp_prog
= rcu_dereference(tun
->xdp_prog
);
1738 ret
= do_xdp_generic(xdp_prog
, skb
);
1739 if (ret
!= XDP_PASS
) {
1747 rxhash
= __skb_get_hash_symmetric(skb
);
1750 /* Exercise flow dissector code path. */
1751 u32 headlen
= eth_get_headlen(skb
->data
, skb_headlen(skb
));
1753 if (unlikely(headlen
> skb_headlen(skb
))) {
1754 this_cpu_inc(tun
->pcpu_stats
->rx_dropped
);
1755 napi_free_frags(&tfile
->napi
);
1756 mutex_unlock(&tfile
->napi_mutex
);
1762 napi_gro_frags(&tfile
->napi
);
1764 mutex_unlock(&tfile
->napi_mutex
);
1765 } else if (tfile
->napi_enabled
) {
1766 struct sk_buff_head
*queue
= &tfile
->sk
.sk_write_queue
;
1769 spin_lock_bh(&queue
->lock
);
1770 __skb_queue_tail(queue
, skb
);
1771 queue_len
= skb_queue_len(queue
);
1772 spin_unlock(&queue
->lock
);
1774 if (!more
|| queue_len
> NAPI_POLL_WEIGHT
)
1775 napi_schedule(&tfile
->napi
);
1778 } else if (!IS_ENABLED(CONFIG_4KSTACKS
)) {
1779 tun_rx_batched(tun
, tfile
, skb
, more
);
1784 stats
= get_cpu_ptr(tun
->pcpu_stats
);
1785 u64_stats_update_begin(&stats
->syncp
);
1786 stats
->rx_packets
++;
1787 stats
->rx_bytes
+= len
;
1788 u64_stats_update_end(&stats
->syncp
);
1791 tun_flow_update(tun
, rxhash
, tfile
);
1795 static ssize_t
tun_chr_write_iter(struct kiocb
*iocb
, struct iov_iter
*from
)
1797 struct file
*file
= iocb
->ki_filp
;
1798 struct tun_file
*tfile
= file
->private_data
;
1799 struct tun_struct
*tun
= tun_get(tfile
);
1805 result
= tun_get_user(tun
, tfile
, NULL
, from
,
1806 file
->f_flags
& O_NONBLOCK
, false);
1812 /* Put packet to the user space buffer */
1813 static ssize_t
tun_put_user(struct tun_struct
*tun
,
1814 struct tun_file
*tfile
,
1815 struct sk_buff
*skb
,
1816 struct iov_iter
*iter
)
1818 struct tun_pi pi
= { 0, skb
->protocol
};
1819 struct tun_pcpu_stats
*stats
;
1821 int vlan_offset
= 0;
1823 int vnet_hdr_sz
= 0;
1825 if (skb_vlan_tag_present(skb
))
1826 vlan_hlen
= VLAN_HLEN
;
1828 if (tun
->flags
& IFF_VNET_HDR
)
1829 vnet_hdr_sz
= READ_ONCE(tun
->vnet_hdr_sz
);
1831 total
= skb
->len
+ vlan_hlen
+ vnet_hdr_sz
;
1833 if (!(tun
->flags
& IFF_NO_PI
)) {
1834 if (iov_iter_count(iter
) < sizeof(pi
))
1837 total
+= sizeof(pi
);
1838 if (iov_iter_count(iter
) < total
) {
1839 /* Packet will be striped */
1840 pi
.flags
|= TUN_PKT_STRIP
;
1843 if (copy_to_iter(&pi
, sizeof(pi
), iter
) != sizeof(pi
))
1848 struct virtio_net_hdr gso
;
1850 if (iov_iter_count(iter
) < vnet_hdr_sz
)
1853 if (virtio_net_hdr_from_skb(skb
, &gso
,
1854 tun_is_little_endian(tun
), true)) {
1855 struct skb_shared_info
*sinfo
= skb_shinfo(skb
);
1856 pr_err("unexpected GSO type: "
1857 "0x%x, gso_size %d, hdr_len %d\n",
1858 sinfo
->gso_type
, tun16_to_cpu(tun
, gso
.gso_size
),
1859 tun16_to_cpu(tun
, gso
.hdr_len
));
1860 print_hex_dump(KERN_ERR
, "tun: ",
1863 min((int)tun16_to_cpu(tun
, gso
.hdr_len
), 64), true);
1868 if (copy_to_iter(&gso
, sizeof(gso
), iter
) != sizeof(gso
))
1871 iov_iter_advance(iter
, vnet_hdr_sz
- sizeof(gso
));
1877 __be16 h_vlan_proto
;
1881 veth
.h_vlan_proto
= skb
->vlan_proto
;
1882 veth
.h_vlan_TCI
= htons(skb_vlan_tag_get(skb
));
1884 vlan_offset
= offsetof(struct vlan_ethhdr
, h_vlan_proto
);
1886 ret
= skb_copy_datagram_iter(skb
, 0, iter
, vlan_offset
);
1887 if (ret
|| !iov_iter_count(iter
))
1890 ret
= copy_to_iter(&veth
, sizeof(veth
), iter
);
1891 if (ret
!= sizeof(veth
) || !iov_iter_count(iter
))
1895 skb_copy_datagram_iter(skb
, vlan_offset
, iter
, skb
->len
- vlan_offset
);
1898 /* caller is in process context, */
1899 stats
= get_cpu_ptr(tun
->pcpu_stats
);
1900 u64_stats_update_begin(&stats
->syncp
);
1901 stats
->tx_packets
++;
1902 stats
->tx_bytes
+= skb
->len
+ vlan_hlen
;
1903 u64_stats_update_end(&stats
->syncp
);
1904 put_cpu_ptr(tun
->pcpu_stats
);
1909 static struct sk_buff
*tun_ring_recv(struct tun_file
*tfile
, int noblock
,
1912 DECLARE_WAITQUEUE(wait
, current
);
1913 struct sk_buff
*skb
= NULL
;
1916 skb
= skb_array_consume(&tfile
->tx_array
);
1924 add_wait_queue(&tfile
->wq
.wait
, &wait
);
1925 current
->state
= TASK_INTERRUPTIBLE
;
1928 skb
= skb_array_consume(&tfile
->tx_array
);
1931 if (signal_pending(current
)) {
1932 error
= -ERESTARTSYS
;
1935 if (tfile
->socket
.sk
->sk_shutdown
& RCV_SHUTDOWN
) {
1943 current
->state
= TASK_RUNNING
;
1944 remove_wait_queue(&tfile
->wq
.wait
, &wait
);
1951 static ssize_t
tun_do_read(struct tun_struct
*tun
, struct tun_file
*tfile
,
1952 struct iov_iter
*to
,
1953 int noblock
, struct sk_buff
*skb
)
1958 tun_debug(KERN_INFO
, tun
, "tun_do_read\n");
1960 if (!iov_iter_count(to
)) {
1967 /* Read frames from ring */
1968 skb
= tun_ring_recv(tfile
, noblock
, &err
);
1973 ret
= tun_put_user(tun
, tfile
, skb
, to
);
1974 if (unlikely(ret
< 0))
1982 static ssize_t
tun_chr_read_iter(struct kiocb
*iocb
, struct iov_iter
*to
)
1984 struct file
*file
= iocb
->ki_filp
;
1985 struct tun_file
*tfile
= file
->private_data
;
1986 struct tun_struct
*tun
= tun_get(tfile
);
1987 ssize_t len
= iov_iter_count(to
), ret
;
1991 ret
= tun_do_read(tun
, tfile
, to
, file
->f_flags
& O_NONBLOCK
, NULL
);
1992 ret
= min_t(ssize_t
, ret
, len
);
1999 static void tun_free_netdev(struct net_device
*dev
)
2001 struct tun_struct
*tun
= netdev_priv(dev
);
2003 BUG_ON(!(list_empty(&tun
->disabled
)));
2004 free_percpu(tun
->pcpu_stats
);
2005 tun_flow_uninit(tun
);
2006 security_tun_dev_free_security(tun
->security
);
2009 static void tun_setup(struct net_device
*dev
)
2011 struct tun_struct
*tun
= netdev_priv(dev
);
2013 tun
->owner
= INVALID_UID
;
2014 tun
->group
= INVALID_GID
;
2016 dev
->ethtool_ops
= &tun_ethtool_ops
;
2017 dev
->needs_free_netdev
= true;
2018 dev
->priv_destructor
= tun_free_netdev
;
2019 /* We prefer our own queue length */
2020 dev
->tx_queue_len
= TUN_READQ_SIZE
;
2023 /* Trivial set of netlink ops to allow deleting tun or tap
2024 * device with netlink.
2026 static int tun_validate(struct nlattr
*tb
[], struct nlattr
*data
[],
2027 struct netlink_ext_ack
*extack
)
2032 static struct rtnl_link_ops tun_link_ops __read_mostly
= {
2034 .priv_size
= sizeof(struct tun_struct
),
2036 .validate
= tun_validate
,
2039 static void tun_sock_write_space(struct sock
*sk
)
2041 struct tun_file
*tfile
;
2042 wait_queue_head_t
*wqueue
;
2044 if (!sock_writeable(sk
))
2047 if (!test_and_clear_bit(SOCKWQ_ASYNC_NOSPACE
, &sk
->sk_socket
->flags
))
2050 wqueue
= sk_sleep(sk
);
2051 if (wqueue
&& waitqueue_active(wqueue
))
2052 wake_up_interruptible_sync_poll(wqueue
, POLLOUT
|
2053 POLLWRNORM
| POLLWRBAND
);
2055 tfile
= container_of(sk
, struct tun_file
, sk
);
2056 kill_fasync(&tfile
->fasync
, SIGIO
, POLL_OUT
);
2059 static int tun_sendmsg(struct socket
*sock
, struct msghdr
*m
, size_t total_len
)
2062 struct tun_file
*tfile
= container_of(sock
, struct tun_file
, socket
);
2063 struct tun_struct
*tun
= tun_get(tfile
);
2068 ret
= tun_get_user(tun
, tfile
, m
->msg_control
, &m
->msg_iter
,
2069 m
->msg_flags
& MSG_DONTWAIT
,
2070 m
->msg_flags
& MSG_MORE
);
2075 static int tun_recvmsg(struct socket
*sock
, struct msghdr
*m
, size_t total_len
,
2078 struct tun_file
*tfile
= container_of(sock
, struct tun_file
, socket
);
2079 struct tun_struct
*tun
= tun_get(tfile
);
2080 struct sk_buff
*skb
= m
->msg_control
;
2088 if (flags
& ~(MSG_DONTWAIT
|MSG_TRUNC
|MSG_ERRQUEUE
)) {
2092 if (flags
& MSG_ERRQUEUE
) {
2093 ret
= sock_recv_errqueue(sock
->sk
, m
, total_len
,
2094 SOL_PACKET
, TUN_TX_TIMESTAMP
);
2097 ret
= tun_do_read(tun
, tfile
, &m
->msg_iter
, flags
& MSG_DONTWAIT
, skb
);
2098 if (ret
> (ssize_t
)total_len
) {
2099 m
->msg_flags
|= MSG_TRUNC
;
2100 ret
= flags
& MSG_TRUNC
? ret
: total_len
;
2114 static int tun_peek_len(struct socket
*sock
)
2116 struct tun_file
*tfile
= container_of(sock
, struct tun_file
, socket
);
2117 struct tun_struct
*tun
;
2120 tun
= tun_get(tfile
);
2124 ret
= skb_array_peek_len(&tfile
->tx_array
);
2130 /* Ops structure to mimic raw sockets with tun */
2131 static const struct proto_ops tun_socket_ops
= {
2132 .peek_len
= tun_peek_len
,
2133 .sendmsg
= tun_sendmsg
,
2134 .recvmsg
= tun_recvmsg
,
2137 static struct proto tun_proto
= {
2139 .owner
= THIS_MODULE
,
2140 .obj_size
= sizeof(struct tun_file
),
2143 static int tun_flags(struct tun_struct
*tun
)
2145 return tun
->flags
& (TUN_FEATURES
| IFF_PERSIST
| IFF_TUN
| IFF_TAP
);
2148 static ssize_t
tun_show_flags(struct device
*dev
, struct device_attribute
*attr
,
2151 struct tun_struct
*tun
= netdev_priv(to_net_dev(dev
));
2152 return sprintf(buf
, "0x%x\n", tun_flags(tun
));
2155 static ssize_t
tun_show_owner(struct device
*dev
, struct device_attribute
*attr
,
2158 struct tun_struct
*tun
= netdev_priv(to_net_dev(dev
));
2159 return uid_valid(tun
->owner
)?
2160 sprintf(buf
, "%u\n",
2161 from_kuid_munged(current_user_ns(), tun
->owner
)):
2162 sprintf(buf
, "-1\n");
2165 static ssize_t
tun_show_group(struct device
*dev
, struct device_attribute
*attr
,
2168 struct tun_struct
*tun
= netdev_priv(to_net_dev(dev
));
2169 return gid_valid(tun
->group
) ?
2170 sprintf(buf
, "%u\n",
2171 from_kgid_munged(current_user_ns(), tun
->group
)):
2172 sprintf(buf
, "-1\n");
2175 static DEVICE_ATTR(tun_flags
, 0444, tun_show_flags
, NULL
);
2176 static DEVICE_ATTR(owner
, 0444, tun_show_owner
, NULL
);
2177 static DEVICE_ATTR(group
, 0444, tun_show_group
, NULL
);
2179 static struct attribute
*tun_dev_attrs
[] = {
2180 &dev_attr_tun_flags
.attr
,
2181 &dev_attr_owner
.attr
,
2182 &dev_attr_group
.attr
,
2186 static const struct attribute_group tun_attr_group
= {
2187 .attrs
= tun_dev_attrs
2190 static int tun_set_iff(struct net
*net
, struct file
*file
, struct ifreq
*ifr
)
2192 struct tun_struct
*tun
;
2193 struct tun_file
*tfile
= file
->private_data
;
2194 struct net_device
*dev
;
2197 if (tfile
->detached
)
2200 if ((ifr
->ifr_flags
& IFF_NAPI_FRAGS
)) {
2201 if (!capable(CAP_NET_ADMIN
))
2204 if (!(ifr
->ifr_flags
& IFF_NAPI
) ||
2205 (ifr
->ifr_flags
& TUN_TYPE_MASK
) != IFF_TAP
)
2209 dev
= __dev_get_by_name(net
, ifr
->ifr_name
);
2211 if (ifr
->ifr_flags
& IFF_TUN_EXCL
)
2213 if ((ifr
->ifr_flags
& IFF_TUN
) && dev
->netdev_ops
== &tun_netdev_ops
)
2214 tun
= netdev_priv(dev
);
2215 else if ((ifr
->ifr_flags
& IFF_TAP
) && dev
->netdev_ops
== &tap_netdev_ops
)
2216 tun
= netdev_priv(dev
);
2220 if (!!(ifr
->ifr_flags
& IFF_MULTI_QUEUE
) !=
2221 !!(tun
->flags
& IFF_MULTI_QUEUE
))
2224 if (tun_not_capable(tun
))
2226 err
= security_tun_dev_open(tun
->security
);
2230 err
= tun_attach(tun
, file
, ifr
->ifr_flags
& IFF_NOFILTER
,
2231 ifr
->ifr_flags
& IFF_NAPI
);
2235 if (tun
->flags
& IFF_MULTI_QUEUE
&&
2236 (tun
->numqueues
+ tun
->numdisabled
> 1)) {
2237 /* One or more queue has already been attached, no need
2238 * to initialize the device again.
2245 unsigned long flags
= 0;
2246 int queues
= ifr
->ifr_flags
& IFF_MULTI_QUEUE
?
2249 if (!ns_capable(net
->user_ns
, CAP_NET_ADMIN
))
2251 err
= security_tun_dev_create();
2256 if (ifr
->ifr_flags
& IFF_TUN
) {
2260 } else if (ifr
->ifr_flags
& IFF_TAP
) {
2268 name
= ifr
->ifr_name
;
2270 dev
= alloc_netdev_mqs(sizeof(struct tun_struct
), name
,
2271 NET_NAME_UNKNOWN
, tun_setup
, queues
,
2276 err
= dev_get_valid_name(net
, dev
, name
);
2280 dev_net_set(dev
, net
);
2281 dev
->rtnl_link_ops
= &tun_link_ops
;
2282 dev
->ifindex
= tfile
->ifindex
;
2283 dev
->sysfs_groups
[0] = &tun_attr_group
;
2285 tun
= netdev_priv(dev
);
2288 tun
->txflt
.count
= 0;
2289 tun
->vnet_hdr_sz
= sizeof(struct virtio_net_hdr
);
2291 tun
->align
= NET_SKB_PAD
;
2292 tun
->filter_attached
= false;
2293 tun
->sndbuf
= tfile
->socket
.sk
->sk_sndbuf
;
2294 tun
->rx_batched
= 0;
2296 tun
->pcpu_stats
= netdev_alloc_pcpu_stats(struct tun_pcpu_stats
);
2297 if (!tun
->pcpu_stats
) {
2302 spin_lock_init(&tun
->lock
);
2304 err
= security_tun_dev_alloc_security(&tun
->security
);
2311 dev
->hw_features
= NETIF_F_SG
| NETIF_F_FRAGLIST
|
2312 TUN_USER_FEATURES
| NETIF_F_HW_VLAN_CTAG_TX
|
2313 NETIF_F_HW_VLAN_STAG_TX
;
2314 dev
->features
= dev
->hw_features
| NETIF_F_LLTX
;
2315 dev
->vlan_features
= dev
->features
&
2316 ~(NETIF_F_HW_VLAN_CTAG_TX
|
2317 NETIF_F_HW_VLAN_STAG_TX
);
2319 INIT_LIST_HEAD(&tun
->disabled
);
2320 err
= tun_attach(tun
, file
, false, ifr
->ifr_flags
& IFF_NAPI
);
2324 err
= register_netdevice(tun
->dev
);
2329 netif_carrier_on(tun
->dev
);
2331 tun_debug(KERN_INFO
, tun
, "tun_set_iff\n");
2333 tun
->flags
= (tun
->flags
& ~TUN_FEATURES
) |
2334 (ifr
->ifr_flags
& TUN_FEATURES
);
2336 /* Make sure persistent devices do not get stuck in
2339 if (netif_running(tun
->dev
))
2340 netif_tx_wake_all_queues(tun
->dev
);
2342 strcpy(ifr
->ifr_name
, tun
->dev
->name
);
2346 tun_detach_all(dev
);
2347 /* register_netdevice() already called tun_free_netdev() */
2351 tun_flow_uninit(tun
);
2352 security_tun_dev_free_security(tun
->security
);
2354 free_percpu(tun
->pcpu_stats
);
2360 static void tun_get_iff(struct net
*net
, struct tun_struct
*tun
,
2363 tun_debug(KERN_INFO
, tun
, "tun_get_iff\n");
2365 strcpy(ifr
->ifr_name
, tun
->dev
->name
);
2367 ifr
->ifr_flags
= tun_flags(tun
);
2371 /* This is like a cut-down ethtool ops, except done via tun fd so no
2372 * privs required. */
2373 static int set_offload(struct tun_struct
*tun
, unsigned long arg
)
2375 netdev_features_t features
= 0;
2377 if (arg
& TUN_F_CSUM
) {
2378 features
|= NETIF_F_HW_CSUM
;
2381 if (arg
& (TUN_F_TSO4
|TUN_F_TSO6
)) {
2382 if (arg
& TUN_F_TSO_ECN
) {
2383 features
|= NETIF_F_TSO_ECN
;
2384 arg
&= ~TUN_F_TSO_ECN
;
2386 if (arg
& TUN_F_TSO4
)
2387 features
|= NETIF_F_TSO
;
2388 if (arg
& TUN_F_TSO6
)
2389 features
|= NETIF_F_TSO6
;
2390 arg
&= ~(TUN_F_TSO4
|TUN_F_TSO6
);
2396 /* This gives the user a way to test for new features in future by
2397 * trying to set them. */
2401 tun
->set_features
= features
;
2402 tun
->dev
->wanted_features
&= ~TUN_USER_FEATURES
;
2403 tun
->dev
->wanted_features
|= features
;
2404 netdev_update_features(tun
->dev
);
2409 static void tun_detach_filter(struct tun_struct
*tun
, int n
)
2412 struct tun_file
*tfile
;
2414 for (i
= 0; i
< n
; i
++) {
2415 tfile
= rtnl_dereference(tun
->tfiles
[i
]);
2416 lock_sock(tfile
->socket
.sk
);
2417 sk_detach_filter(tfile
->socket
.sk
);
2418 release_sock(tfile
->socket
.sk
);
2421 tun
->filter_attached
= false;
2424 static int tun_attach_filter(struct tun_struct
*tun
)
2427 struct tun_file
*tfile
;
2429 for (i
= 0; i
< tun
->numqueues
; i
++) {
2430 tfile
= rtnl_dereference(tun
->tfiles
[i
]);
2431 lock_sock(tfile
->socket
.sk
);
2432 ret
= sk_attach_filter(&tun
->fprog
, tfile
->socket
.sk
);
2433 release_sock(tfile
->socket
.sk
);
2435 tun_detach_filter(tun
, i
);
2440 tun
->filter_attached
= true;
2444 static void tun_set_sndbuf(struct tun_struct
*tun
)
2446 struct tun_file
*tfile
;
2449 for (i
= 0; i
< tun
->numqueues
; i
++) {
2450 tfile
= rtnl_dereference(tun
->tfiles
[i
]);
2451 tfile
->socket
.sk
->sk_sndbuf
= tun
->sndbuf
;
2455 static int tun_set_queue(struct file
*file
, struct ifreq
*ifr
)
2457 struct tun_file
*tfile
= file
->private_data
;
2458 struct tun_struct
*tun
;
2463 if (ifr
->ifr_flags
& IFF_ATTACH_QUEUE
) {
2464 tun
= tfile
->detached
;
2469 ret
= security_tun_dev_attach_queue(tun
->security
);
2472 ret
= tun_attach(tun
, file
, false, tun
->flags
& IFF_NAPI
);
2473 } else if (ifr
->ifr_flags
& IFF_DETACH_QUEUE
) {
2474 tun
= rtnl_dereference(tfile
->tun
);
2475 if (!tun
|| !(tun
->flags
& IFF_MULTI_QUEUE
) || tfile
->detached
)
2478 __tun_detach(tfile
, false);
2487 static long __tun_chr_ioctl(struct file
*file
, unsigned int cmd
,
2488 unsigned long arg
, int ifreq_len
)
2490 struct tun_file
*tfile
= file
->private_data
;
2491 struct tun_struct
*tun
;
2492 void __user
* argp
= (void __user
*)arg
;
2498 unsigned int ifindex
;
2502 if (cmd
== TUNSETIFF
|| cmd
== TUNSETQUEUE
|| _IOC_TYPE(cmd
) == SOCK_IOC_TYPE
) {
2503 if (copy_from_user(&ifr
, argp
, ifreq_len
))
2506 memset(&ifr
, 0, sizeof(ifr
));
2508 if (cmd
== TUNGETFEATURES
) {
2509 /* Currently this just means: "what IFF flags are valid?".
2510 * This is needed because we never checked for invalid flags on
2513 return put_user(IFF_TUN
| IFF_TAP
| TUN_FEATURES
,
2514 (unsigned int __user
*)argp
);
2515 } else if (cmd
== TUNSETQUEUE
)
2516 return tun_set_queue(file
, &ifr
);
2521 tun
= tun_get(tfile
);
2522 if (cmd
== TUNSETIFF
) {
2527 ifr
.ifr_name
[IFNAMSIZ
-1] = '\0';
2529 ret
= tun_set_iff(sock_net(&tfile
->sk
), file
, &ifr
);
2534 if (copy_to_user(argp
, &ifr
, ifreq_len
))
2538 if (cmd
== TUNSETIFINDEX
) {
2544 if (copy_from_user(&ifindex
, argp
, sizeof(ifindex
)))
2548 tfile
->ifindex
= ifindex
;
2556 tun_debug(KERN_INFO
, tun
, "tun_chr_ioctl cmd %u\n", cmd
);
2561 tun_get_iff(current
->nsproxy
->net_ns
, tun
, &ifr
);
2563 if (tfile
->detached
)
2564 ifr
.ifr_flags
|= IFF_DETACH_QUEUE
;
2565 if (!tfile
->socket
.sk
->sk_filter
)
2566 ifr
.ifr_flags
|= IFF_NOFILTER
;
2568 if (copy_to_user(argp
, &ifr
, ifreq_len
))
2573 /* Disable/Enable checksum */
2575 /* [unimplemented] */
2576 tun_debug(KERN_INFO
, tun
, "ignored: set checksum %s\n",
2577 arg
? "disabled" : "enabled");
2581 /* Disable/Enable persist mode. Keep an extra reference to the
2582 * module to prevent the module being unprobed.
2584 if (arg
&& !(tun
->flags
& IFF_PERSIST
)) {
2585 tun
->flags
|= IFF_PERSIST
;
2586 __module_get(THIS_MODULE
);
2588 if (!arg
&& (tun
->flags
& IFF_PERSIST
)) {
2589 tun
->flags
&= ~IFF_PERSIST
;
2590 module_put(THIS_MODULE
);
2593 tun_debug(KERN_INFO
, tun
, "persist %s\n",
2594 arg
? "enabled" : "disabled");
2598 /* Set owner of the device */
2599 owner
= make_kuid(current_user_ns(), arg
);
2600 if (!uid_valid(owner
)) {
2605 tun_debug(KERN_INFO
, tun
, "owner set to %u\n",
2606 from_kuid(&init_user_ns
, tun
->owner
));
2610 /* Set group of the device */
2611 group
= make_kgid(current_user_ns(), arg
);
2612 if (!gid_valid(group
)) {
2617 tun_debug(KERN_INFO
, tun
, "group set to %u\n",
2618 from_kgid(&init_user_ns
, tun
->group
));
2622 /* Only allow setting the type when the interface is down */
2623 if (tun
->dev
->flags
& IFF_UP
) {
2624 tun_debug(KERN_INFO
, tun
,
2625 "Linktype set failed because interface is up\n");
2628 tun
->dev
->type
= (int) arg
;
2629 tun_debug(KERN_INFO
, tun
, "linktype set to %d\n",
2641 ret
= set_offload(tun
, arg
);
2644 case TUNSETTXFILTER
:
2645 /* Can be set only for TAPs */
2647 if ((tun
->flags
& TUN_TYPE_MASK
) != IFF_TAP
)
2649 ret
= update_filter(&tun
->txflt
, (void __user
*)arg
);
2653 /* Get hw address */
2654 memcpy(ifr
.ifr_hwaddr
.sa_data
, tun
->dev
->dev_addr
, ETH_ALEN
);
2655 ifr
.ifr_hwaddr
.sa_family
= tun
->dev
->type
;
2656 if (copy_to_user(argp
, &ifr
, ifreq_len
))
2661 /* Set hw address */
2662 tun_debug(KERN_DEBUG
, tun
, "set hw address: %pM\n",
2663 ifr
.ifr_hwaddr
.sa_data
);
2665 ret
= dev_set_mac_address(tun
->dev
, &ifr
.ifr_hwaddr
);
2669 sndbuf
= tfile
->socket
.sk
->sk_sndbuf
;
2670 if (copy_to_user(argp
, &sndbuf
, sizeof(sndbuf
)))
2675 if (copy_from_user(&sndbuf
, argp
, sizeof(sndbuf
))) {
2684 tun
->sndbuf
= sndbuf
;
2685 tun_set_sndbuf(tun
);
2688 case TUNGETVNETHDRSZ
:
2689 vnet_hdr_sz
= tun
->vnet_hdr_sz
;
2690 if (copy_to_user(argp
, &vnet_hdr_sz
, sizeof(vnet_hdr_sz
)))
2694 case TUNSETVNETHDRSZ
:
2695 if (copy_from_user(&vnet_hdr_sz
, argp
, sizeof(vnet_hdr_sz
))) {
2699 if (vnet_hdr_sz
< (int)sizeof(struct virtio_net_hdr
)) {
2704 tun
->vnet_hdr_sz
= vnet_hdr_sz
;
2708 le
= !!(tun
->flags
& TUN_VNET_LE
);
2709 if (put_user(le
, (int __user
*)argp
))
2714 if (get_user(le
, (int __user
*)argp
)) {
2719 tun
->flags
|= TUN_VNET_LE
;
2721 tun
->flags
&= ~TUN_VNET_LE
;
2725 ret
= tun_get_vnet_be(tun
, argp
);
2729 ret
= tun_set_vnet_be(tun
, argp
);
2732 case TUNATTACHFILTER
:
2733 /* Can be set only for TAPs */
2735 if ((tun
->flags
& TUN_TYPE_MASK
) != IFF_TAP
)
2738 if (copy_from_user(&tun
->fprog
, argp
, sizeof(tun
->fprog
)))
2741 ret
= tun_attach_filter(tun
);
2744 case TUNDETACHFILTER
:
2745 /* Can be set only for TAPs */
2747 if ((tun
->flags
& TUN_TYPE_MASK
) != IFF_TAP
)
2750 tun_detach_filter(tun
, tun
->numqueues
);
2755 if ((tun
->flags
& TUN_TYPE_MASK
) != IFF_TAP
)
2758 if (copy_to_user(argp
, &tun
->fprog
, sizeof(tun
->fprog
)))
2775 static long tun_chr_ioctl(struct file
*file
,
2776 unsigned int cmd
, unsigned long arg
)
2778 return __tun_chr_ioctl(file
, cmd
, arg
, sizeof (struct ifreq
));
2781 #ifdef CONFIG_COMPAT
2782 static long tun_chr_compat_ioctl(struct file
*file
,
2783 unsigned int cmd
, unsigned long arg
)
2788 case TUNSETTXFILTER
:
2793 arg
= (unsigned long)compat_ptr(arg
);
2796 arg
= (compat_ulong_t
)arg
;
2801 * compat_ifreq is shorter than ifreq, so we must not access beyond
2802 * the end of that structure. All fields that are used in this
2803 * driver are compatible though, we don't need to convert the
2806 return __tun_chr_ioctl(file
, cmd
, arg
, sizeof(struct compat_ifreq
));
2808 #endif /* CONFIG_COMPAT */
2810 static int tun_chr_fasync(int fd
, struct file
*file
, int on
)
2812 struct tun_file
*tfile
= file
->private_data
;
2815 if ((ret
= fasync_helper(fd
, file
, on
, &tfile
->fasync
)) < 0)
2819 __f_setown(file
, task_pid(current
), PIDTYPE_PID
, 0);
2820 tfile
->flags
|= TUN_FASYNC
;
2822 tfile
->flags
&= ~TUN_FASYNC
;
2828 static int tun_chr_open(struct inode
*inode
, struct file
* file
)
2830 struct net
*net
= current
->nsproxy
->net_ns
;
2831 struct tun_file
*tfile
;
2833 DBG1(KERN_INFO
, "tunX: tun_chr_open\n");
2835 tfile
= (struct tun_file
*)sk_alloc(net
, AF_UNSPEC
, GFP_KERNEL
,
2839 RCU_INIT_POINTER(tfile
->tun
, NULL
);
2843 init_waitqueue_head(&tfile
->wq
.wait
);
2844 RCU_INIT_POINTER(tfile
->socket
.wq
, &tfile
->wq
);
2846 tfile
->socket
.file
= file
;
2847 tfile
->socket
.ops
= &tun_socket_ops
;
2849 sock_init_data(&tfile
->socket
, &tfile
->sk
);
2851 tfile
->sk
.sk_write_space
= tun_sock_write_space
;
2852 tfile
->sk
.sk_sndbuf
= INT_MAX
;
2854 file
->private_data
= tfile
;
2855 INIT_LIST_HEAD(&tfile
->next
);
2857 sock_set_flag(&tfile
->sk
, SOCK_ZEROCOPY
);
2859 memset(&tfile
->tx_array
, 0, sizeof(tfile
->tx_array
));
2864 static int tun_chr_close(struct inode
*inode
, struct file
*file
)
2866 struct tun_file
*tfile
= file
->private_data
;
2868 tun_detach(tfile
, true);
2873 #ifdef CONFIG_PROC_FS
2874 static void tun_chr_show_fdinfo(struct seq_file
*m
, struct file
*file
)
2876 struct tun_file
*tfile
= file
->private_data
;
2877 struct tun_struct
*tun
;
2880 memset(&ifr
, 0, sizeof(ifr
));
2883 tun
= tun_get(tfile
);
2885 tun_get_iff(current
->nsproxy
->net_ns
, tun
, &ifr
);
2891 seq_printf(m
, "iff:\t%s\n", ifr
.ifr_name
);
2895 static const struct file_operations tun_fops
= {
2896 .owner
= THIS_MODULE
,
2897 .llseek
= no_llseek
,
2898 .read_iter
= tun_chr_read_iter
,
2899 .write_iter
= tun_chr_write_iter
,
2900 .poll
= tun_chr_poll
,
2901 .unlocked_ioctl
= tun_chr_ioctl
,
2902 #ifdef CONFIG_COMPAT
2903 .compat_ioctl
= tun_chr_compat_ioctl
,
2905 .open
= tun_chr_open
,
2906 .release
= tun_chr_close
,
2907 .fasync
= tun_chr_fasync
,
2908 #ifdef CONFIG_PROC_FS
2909 .show_fdinfo
= tun_chr_show_fdinfo
,
2913 static struct miscdevice tun_miscdev
= {
2916 .nodename
= "net/tun",
2920 /* ethtool interface */
2922 static int tun_get_link_ksettings(struct net_device
*dev
,
2923 struct ethtool_link_ksettings
*cmd
)
2925 ethtool_link_ksettings_zero_link_mode(cmd
, supported
);
2926 ethtool_link_ksettings_zero_link_mode(cmd
, advertising
);
2927 cmd
->base
.speed
= SPEED_10
;
2928 cmd
->base
.duplex
= DUPLEX_FULL
;
2929 cmd
->base
.port
= PORT_TP
;
2930 cmd
->base
.phy_address
= 0;
2931 cmd
->base
.autoneg
= AUTONEG_DISABLE
;
2935 static void tun_get_drvinfo(struct net_device
*dev
, struct ethtool_drvinfo
*info
)
2937 struct tun_struct
*tun
= netdev_priv(dev
);
2939 strlcpy(info
->driver
, DRV_NAME
, sizeof(info
->driver
));
2940 strlcpy(info
->version
, DRV_VERSION
, sizeof(info
->version
));
2942 switch (tun
->flags
& TUN_TYPE_MASK
) {
2944 strlcpy(info
->bus_info
, "tun", sizeof(info
->bus_info
));
2947 strlcpy(info
->bus_info
, "tap", sizeof(info
->bus_info
));
2952 static u32
tun_get_msglevel(struct net_device
*dev
)
2955 struct tun_struct
*tun
= netdev_priv(dev
);
2962 static void tun_set_msglevel(struct net_device
*dev
, u32 value
)
2965 struct tun_struct
*tun
= netdev_priv(dev
);
2970 static int tun_get_coalesce(struct net_device
*dev
,
2971 struct ethtool_coalesce
*ec
)
2973 struct tun_struct
*tun
= netdev_priv(dev
);
2975 ec
->rx_max_coalesced_frames
= tun
->rx_batched
;
2980 static int tun_set_coalesce(struct net_device
*dev
,
2981 struct ethtool_coalesce
*ec
)
2983 struct tun_struct
*tun
= netdev_priv(dev
);
2985 if (ec
->rx_max_coalesced_frames
> NAPI_POLL_WEIGHT
)
2986 tun
->rx_batched
= NAPI_POLL_WEIGHT
;
2988 tun
->rx_batched
= ec
->rx_max_coalesced_frames
;
2993 static const struct ethtool_ops tun_ethtool_ops
= {
2994 .get_drvinfo
= tun_get_drvinfo
,
2995 .get_msglevel
= tun_get_msglevel
,
2996 .set_msglevel
= tun_set_msglevel
,
2997 .get_link
= ethtool_op_get_link
,
2998 .get_ts_info
= ethtool_op_get_ts_info
,
2999 .get_coalesce
= tun_get_coalesce
,
3000 .set_coalesce
= tun_set_coalesce
,
3001 .get_link_ksettings
= tun_get_link_ksettings
,
3004 static int tun_queue_resize(struct tun_struct
*tun
)
3006 struct net_device
*dev
= tun
->dev
;
3007 struct tun_file
*tfile
;
3008 struct skb_array
**arrays
;
3009 int n
= tun
->numqueues
+ tun
->numdisabled
;
3012 arrays
= kmalloc_array(n
, sizeof(*arrays
), GFP_KERNEL
);
3016 for (i
= 0; i
< tun
->numqueues
; i
++) {
3017 tfile
= rtnl_dereference(tun
->tfiles
[i
]);
3018 arrays
[i
] = &tfile
->tx_array
;
3020 list_for_each_entry(tfile
, &tun
->disabled
, next
)
3021 arrays
[i
++] = &tfile
->tx_array
;
3023 ret
= skb_array_resize_multiple(arrays
, n
,
3024 dev
->tx_queue_len
, GFP_KERNEL
);
3030 static int tun_device_event(struct notifier_block
*unused
,
3031 unsigned long event
, void *ptr
)
3033 struct net_device
*dev
= netdev_notifier_info_to_dev(ptr
);
3034 struct tun_struct
*tun
= netdev_priv(dev
);
3036 if (dev
->rtnl_link_ops
!= &tun_link_ops
)
3040 case NETDEV_CHANGE_TX_QUEUE_LEN
:
3041 if (tun_queue_resize(tun
))
3051 static struct notifier_block tun_notifier_block __read_mostly
= {
3052 .notifier_call
= tun_device_event
,
3055 static int __init
tun_init(void)
3059 pr_info("%s, %s\n", DRV_DESCRIPTION
, DRV_VERSION
);
3061 ret
= rtnl_link_register(&tun_link_ops
);
3063 pr_err("Can't register link_ops\n");
3067 ret
= misc_register(&tun_miscdev
);
3069 pr_err("Can't register misc device %d\n", TUN_MINOR
);
3073 ret
= register_netdevice_notifier(&tun_notifier_block
);
3075 pr_err("Can't register netdevice notifier\n");
3082 misc_deregister(&tun_miscdev
);
3084 rtnl_link_unregister(&tun_link_ops
);
3089 static void tun_cleanup(void)
3091 misc_deregister(&tun_miscdev
);
3092 rtnl_link_unregister(&tun_link_ops
);
3093 unregister_netdevice_notifier(&tun_notifier_block
);
3096 /* Get an underlying socket object from tun file. Returns error unless file is
3097 * attached to a device. The returned object works like a packet socket, it
3098 * can be used for sock_sendmsg/sock_recvmsg. The caller is responsible for
3099 * holding a reference to the file for as long as the socket is in use. */
3100 struct socket
*tun_get_socket(struct file
*file
)
3102 struct tun_file
*tfile
;
3103 if (file
->f_op
!= &tun_fops
)
3104 return ERR_PTR(-EINVAL
);
3105 tfile
= file
->private_data
;
3107 return ERR_PTR(-EBADFD
);
3108 return &tfile
->socket
;
3110 EXPORT_SYMBOL_GPL(tun_get_socket
);
3112 struct skb_array
*tun_get_skb_array(struct file
*file
)
3114 struct tun_file
*tfile
;
3116 if (file
->f_op
!= &tun_fops
)
3117 return ERR_PTR(-EINVAL
);
3118 tfile
= file
->private_data
;
3120 return ERR_PTR(-EBADFD
);
3121 return &tfile
->tx_array
;
3123 EXPORT_SYMBOL_GPL(tun_get_skb_array
);
3125 module_init(tun_init
);
3126 module_exit(tun_cleanup
);
3127 MODULE_DESCRIPTION(DRV_DESCRIPTION
);
3128 MODULE_AUTHOR(DRV_COPYRIGHT
);
3129 MODULE_LICENSE("GPL");
3130 MODULE_ALIAS_MISCDEV(TUN_MINOR
);
3131 MODULE_ALIAS("devname:net/tun");