1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * TUN - Universal TUN/TAP device driver.
4 * Copyright (C) 1999-2002 Maxim Krasnyansky <maxk@qualcomm.com>
6 * $Id: tun.c,v 1.15 2002/03/01 02:44:24 maxk Exp $
12 * Mike Kershaw <dragorn@kismetwireless.net> 2005/08/14
13 * Add TUNSETLINK ioctl to set the link encapsulation
15 * Mark Smith <markzzzsmith@yahoo.com.au>
16 * Use eth_random_addr() for tap MAC address.
18 * Harald Roelle <harald.roelle@ifi.lmu.de> 2004/04/20
19 * Fixes in packet dropping, queue length setting and queue wakeup.
20 * Increased default tx queue length.
24 * Daniel Podlejski <underley@underley.eu.org>
25 * Modifications for 2.3.99-pre5 kernel.
28 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
30 #define DRV_NAME "tun"
31 #define DRV_VERSION "1.6"
32 #define DRV_DESCRIPTION "Universal TUN/TAP device driver"
33 #define DRV_COPYRIGHT "(C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>"
35 #include <linux/module.h>
36 #include <linux/errno.h>
37 #include <linux/kernel.h>
38 #include <linux/sched/signal.h>
39 #include <linux/major.h>
40 #include <linux/slab.h>
41 #include <linux/poll.h>
42 #include <linux/fcntl.h>
43 #include <linux/init.h>
44 #include <linux/skbuff.h>
45 #include <linux/netdevice.h>
46 #include <linux/etherdevice.h>
47 #include <linux/miscdevice.h>
48 #include <linux/ethtool.h>
49 #include <linux/rtnetlink.h>
50 #include <linux/compat.h>
52 #include <linux/if_arp.h>
53 #include <linux/if_ether.h>
54 #include <linux/if_tun.h>
55 #include <linux/if_vlan.h>
56 #include <linux/crc32.h>
57 #include <linux/nsproxy.h>
58 #include <linux/virtio_net.h>
59 #include <linux/rcupdate.h>
60 #include <net/net_namespace.h>
61 #include <net/netns/generic.h>
62 #include <net/rtnetlink.h>
65 #include <linux/seq_file.h>
66 #include <linux/uio.h>
67 #include <linux/skb_array.h>
68 #include <linux/bpf.h>
69 #include <linux/bpf_trace.h>
70 #include <linux/mutex.h>
72 #include <linux/uaccess.h>
73 #include <linux/proc_fs.h>
75 static void tun_default_link_ksettings(struct net_device
*dev
,
76 struct ethtool_link_ksettings
*cmd
);
78 /* Uncomment to enable debugging */
79 /* #define TUN_DEBUG 1 */
84 #define tun_debug(level, tun, fmt, args...) \
87 netdev_printk(level, tun->dev, fmt, ##args); \
89 #define DBG1(level, fmt, args...) \
92 printk(level fmt, ##args); \
95 #define tun_debug(level, tun, fmt, args...) \
98 netdev_printk(level, tun->dev, fmt, ##args); \
100 #define DBG1(level, fmt, args...) \
103 printk(level fmt, ##args); \
107 #define TUN_RX_PAD (NET_IP_ALIGN + NET_SKB_PAD)
109 /* TUN device flags */
111 /* IFF_ATTACH_QUEUE is never stored in device flags,
112 * overload it to mean fasync when stored there.
114 #define TUN_FASYNC IFF_ATTACH_QUEUE
115 /* High bits in flags field are unused. */
116 #define TUN_VNET_LE 0x80000000
117 #define TUN_VNET_BE 0x40000000
119 #define TUN_FEATURES (IFF_NO_PI | IFF_ONE_QUEUE | IFF_VNET_HDR | \
120 IFF_MULTI_QUEUE | IFF_NAPI | IFF_NAPI_FRAGS)
122 #define GOODCOPY_LEN 128
124 #define FLT_EXACT_COUNT 8
126 unsigned int count
; /* Number of addrs. Zero means disabled */
127 u32 mask
[2]; /* Mask of the hashed addrs */
128 unsigned char addr
[FLT_EXACT_COUNT
][ETH_ALEN
];
131 /* MAX_TAP_QUEUES 256 is chosen to allow rx/tx queues to be equal
132 * to max number of VCPUs in guest. */
133 #define MAX_TAP_QUEUES 256
134 #define MAX_TAP_FLOWS 4096
136 #define TUN_FLOW_EXPIRE (3 * HZ)
138 struct tun_pcpu_stats
{
143 struct u64_stats_sync syncp
;
149 /* A tun_file connects an open character device to a tuntap netdevice. It
150 * also contains all socket related structures (except sock_fprog and tap_filter)
151 * to serve as one transmit queue for tuntap device. The sock_fprog and
152 * tap_filter were kept in tun_struct since they were used for filtering for the
153 * netdevice not for a specific queue (at least I didn't see the requirement for
157 * The tun_file and tun_struct are loosely coupled, the pointer from one to the
158 * other can only be read while rcu_read_lock or rtnl_lock is held.
162 struct socket socket
;
164 struct tun_struct __rcu
*tun
;
165 struct fasync_struct
*fasync
;
166 /* only used for fasnyc */
170 unsigned int ifindex
;
172 struct napi_struct napi
;
174 bool napi_frags_enabled
;
175 struct mutex napi_mutex
; /* Protects access to the above napi */
176 struct list_head next
;
177 struct tun_struct
*detached
;
178 struct ptr_ring tx_ring
;
179 struct xdp_rxq_info xdp_rxq
;
187 struct tun_flow_entry
{
188 struct hlist_node hash_link
;
190 struct tun_struct
*tun
;
195 unsigned long updated ____cacheline_aligned_in_smp
;
198 #define TUN_NUM_FLOW_ENTRIES 1024
199 #define TUN_MASK_FLOW_ENTRIES (TUN_NUM_FLOW_ENTRIES - 1)
203 struct bpf_prog
*prog
;
206 /* Since the socket were moved to tun_file, to preserve the behavior of persist
207 * device, socket filter, sndbuf and vnet header size were restore when the
208 * file were attached to a persist device.
211 struct tun_file __rcu
*tfiles
[MAX_TAP_QUEUES
];
212 unsigned int numqueues
;
217 struct net_device
*dev
;
218 netdev_features_t set_features
;
219 #define TUN_USER_FEATURES (NETIF_F_HW_CSUM|NETIF_F_TSO_ECN|NETIF_F_TSO| \
225 struct tap_filter txflt
;
226 struct sock_fprog fprog
;
227 /* protected by rtnl lock */
228 bool filter_attached
;
233 struct hlist_head flows
[TUN_NUM_FLOW_ENTRIES
];
234 struct timer_list flow_gc_timer
;
235 unsigned long ageing_time
;
236 unsigned int numdisabled
;
237 struct list_head disabled
;
241 struct tun_pcpu_stats __percpu
*pcpu_stats
;
242 struct bpf_prog __rcu
*xdp_prog
;
243 struct tun_prog __rcu
*steering_prog
;
244 struct tun_prog __rcu
*filter_prog
;
245 struct ethtool_link_ksettings link_ksettings
;
253 bool tun_is_xdp_frame(void *ptr
)
255 return (unsigned long)ptr
& TUN_XDP_FLAG
;
257 EXPORT_SYMBOL(tun_is_xdp_frame
);
259 void *tun_xdp_to_ptr(void *ptr
)
261 return (void *)((unsigned long)ptr
| TUN_XDP_FLAG
);
263 EXPORT_SYMBOL(tun_xdp_to_ptr
);
265 void *tun_ptr_to_xdp(void *ptr
)
267 return (void *)((unsigned long)ptr
& ~TUN_XDP_FLAG
);
269 EXPORT_SYMBOL(tun_ptr_to_xdp
);
271 static int tun_napi_receive(struct napi_struct
*napi
, int budget
)
273 struct tun_file
*tfile
= container_of(napi
, struct tun_file
, napi
);
274 struct sk_buff_head
*queue
= &tfile
->sk
.sk_write_queue
;
275 struct sk_buff_head process_queue
;
279 __skb_queue_head_init(&process_queue
);
281 spin_lock(&queue
->lock
);
282 skb_queue_splice_tail_init(queue
, &process_queue
);
283 spin_unlock(&queue
->lock
);
285 while (received
< budget
&& (skb
= __skb_dequeue(&process_queue
))) {
286 napi_gro_receive(napi
, skb
);
290 if (!skb_queue_empty(&process_queue
)) {
291 spin_lock(&queue
->lock
);
292 skb_queue_splice(&process_queue
, queue
);
293 spin_unlock(&queue
->lock
);
299 static int tun_napi_poll(struct napi_struct
*napi
, int budget
)
301 unsigned int received
;
303 received
= tun_napi_receive(napi
, budget
);
305 if (received
< budget
)
306 napi_complete_done(napi
, received
);
311 static void tun_napi_init(struct tun_struct
*tun
, struct tun_file
*tfile
,
312 bool napi_en
, bool napi_frags
)
314 tfile
->napi_enabled
= napi_en
;
315 tfile
->napi_frags_enabled
= napi_en
&& napi_frags
;
317 netif_napi_add(tun
->dev
, &tfile
->napi
, tun_napi_poll
,
319 napi_enable(&tfile
->napi
);
323 static void tun_napi_disable(struct tun_file
*tfile
)
325 if (tfile
->napi_enabled
)
326 napi_disable(&tfile
->napi
);
329 static void tun_napi_del(struct tun_file
*tfile
)
331 if (tfile
->napi_enabled
)
332 netif_napi_del(&tfile
->napi
);
335 static bool tun_napi_frags_enabled(const struct tun_file
*tfile
)
337 return tfile
->napi_frags_enabled
;
340 #ifdef CONFIG_TUN_VNET_CROSS_LE
341 static inline bool tun_legacy_is_little_endian(struct tun_struct
*tun
)
343 return tun
->flags
& TUN_VNET_BE
? false :
344 virtio_legacy_is_little_endian();
347 static long tun_get_vnet_be(struct tun_struct
*tun
, int __user
*argp
)
349 int be
= !!(tun
->flags
& TUN_VNET_BE
);
351 if (put_user(be
, argp
))
357 static long tun_set_vnet_be(struct tun_struct
*tun
, int __user
*argp
)
361 if (get_user(be
, argp
))
365 tun
->flags
|= TUN_VNET_BE
;
367 tun
->flags
&= ~TUN_VNET_BE
;
372 static inline bool tun_legacy_is_little_endian(struct tun_struct
*tun
)
374 return virtio_legacy_is_little_endian();
377 static long tun_get_vnet_be(struct tun_struct
*tun
, int __user
*argp
)
382 static long tun_set_vnet_be(struct tun_struct
*tun
, int __user
*argp
)
386 #endif /* CONFIG_TUN_VNET_CROSS_LE */
388 static inline bool tun_is_little_endian(struct tun_struct
*tun
)
390 return tun
->flags
& TUN_VNET_LE
||
391 tun_legacy_is_little_endian(tun
);
394 static inline u16
tun16_to_cpu(struct tun_struct
*tun
, __virtio16 val
)
396 return __virtio16_to_cpu(tun_is_little_endian(tun
), val
);
399 static inline __virtio16
cpu_to_tun16(struct tun_struct
*tun
, u16 val
)
401 return __cpu_to_virtio16(tun_is_little_endian(tun
), val
);
404 static inline u32
tun_hashfn(u32 rxhash
)
406 return rxhash
& TUN_MASK_FLOW_ENTRIES
;
409 static struct tun_flow_entry
*tun_flow_find(struct hlist_head
*head
, u32 rxhash
)
411 struct tun_flow_entry
*e
;
413 hlist_for_each_entry_rcu(e
, head
, hash_link
) {
414 if (e
->rxhash
== rxhash
)
420 static struct tun_flow_entry
*tun_flow_create(struct tun_struct
*tun
,
421 struct hlist_head
*head
,
422 u32 rxhash
, u16 queue_index
)
424 struct tun_flow_entry
*e
= kmalloc(sizeof(*e
), GFP_ATOMIC
);
427 tun_debug(KERN_INFO
, tun
, "create flow: hash %u index %u\n",
428 rxhash
, queue_index
);
429 e
->updated
= jiffies
;
432 e
->queue_index
= queue_index
;
434 hlist_add_head_rcu(&e
->hash_link
, head
);
440 static void tun_flow_delete(struct tun_struct
*tun
, struct tun_flow_entry
*e
)
442 tun_debug(KERN_INFO
, tun
, "delete flow: hash %u index %u\n",
443 e
->rxhash
, e
->queue_index
);
444 hlist_del_rcu(&e
->hash_link
);
449 static void tun_flow_flush(struct tun_struct
*tun
)
453 spin_lock_bh(&tun
->lock
);
454 for (i
= 0; i
< TUN_NUM_FLOW_ENTRIES
; i
++) {
455 struct tun_flow_entry
*e
;
456 struct hlist_node
*n
;
458 hlist_for_each_entry_safe(e
, n
, &tun
->flows
[i
], hash_link
)
459 tun_flow_delete(tun
, e
);
461 spin_unlock_bh(&tun
->lock
);
464 static void tun_flow_delete_by_queue(struct tun_struct
*tun
, u16 queue_index
)
468 spin_lock_bh(&tun
->lock
);
469 for (i
= 0; i
< TUN_NUM_FLOW_ENTRIES
; i
++) {
470 struct tun_flow_entry
*e
;
471 struct hlist_node
*n
;
473 hlist_for_each_entry_safe(e
, n
, &tun
->flows
[i
], hash_link
) {
474 if (e
->queue_index
== queue_index
)
475 tun_flow_delete(tun
, e
);
478 spin_unlock_bh(&tun
->lock
);
481 static void tun_flow_cleanup(struct timer_list
*t
)
483 struct tun_struct
*tun
= from_timer(tun
, t
, flow_gc_timer
);
484 unsigned long delay
= tun
->ageing_time
;
485 unsigned long next_timer
= jiffies
+ delay
;
486 unsigned long count
= 0;
489 tun_debug(KERN_INFO
, tun
, "tun_flow_cleanup\n");
491 spin_lock(&tun
->lock
);
492 for (i
= 0; i
< TUN_NUM_FLOW_ENTRIES
; i
++) {
493 struct tun_flow_entry
*e
;
494 struct hlist_node
*n
;
496 hlist_for_each_entry_safe(e
, n
, &tun
->flows
[i
], hash_link
) {
497 unsigned long this_timer
;
499 this_timer
= e
->updated
+ delay
;
500 if (time_before_eq(this_timer
, jiffies
)) {
501 tun_flow_delete(tun
, e
);
505 if (time_before(this_timer
, next_timer
))
506 next_timer
= this_timer
;
511 mod_timer(&tun
->flow_gc_timer
, round_jiffies_up(next_timer
));
512 spin_unlock(&tun
->lock
);
515 static void tun_flow_update(struct tun_struct
*tun
, u32 rxhash
,
516 struct tun_file
*tfile
)
518 struct hlist_head
*head
;
519 struct tun_flow_entry
*e
;
520 unsigned long delay
= tun
->ageing_time
;
521 u16 queue_index
= tfile
->queue_index
;
523 head
= &tun
->flows
[tun_hashfn(rxhash
)];
527 e
= tun_flow_find(head
, rxhash
);
529 /* TODO: keep queueing to old queue until it's empty? */
530 if (e
->queue_index
!= queue_index
)
531 e
->queue_index
= queue_index
;
532 if (e
->updated
!= jiffies
)
533 e
->updated
= jiffies
;
534 sock_rps_record_flow_hash(e
->rps_rxhash
);
536 spin_lock_bh(&tun
->lock
);
537 if (!tun_flow_find(head
, rxhash
) &&
538 tun
->flow_count
< MAX_TAP_FLOWS
)
539 tun_flow_create(tun
, head
, rxhash
, queue_index
);
541 if (!timer_pending(&tun
->flow_gc_timer
))
542 mod_timer(&tun
->flow_gc_timer
,
543 round_jiffies_up(jiffies
+ delay
));
544 spin_unlock_bh(&tun
->lock
);
551 * Save the hash received in the stack receive path and update the
552 * flow_hash table accordingly.
554 static inline void tun_flow_save_rps_rxhash(struct tun_flow_entry
*e
, u32 hash
)
556 if (unlikely(e
->rps_rxhash
!= hash
))
557 e
->rps_rxhash
= hash
;
560 /* We try to identify a flow through its rxhash. The reason that
561 * we do not check rxq no. is because some cards(e.g 82599), chooses
562 * the rxq based on the txq where the last packet of the flow comes. As
563 * the userspace application move between processors, we may get a
564 * different rxq no. here.
566 static u16
tun_automq_select_queue(struct tun_struct
*tun
, struct sk_buff
*skb
)
568 struct tun_flow_entry
*e
;
572 numqueues
= READ_ONCE(tun
->numqueues
);
574 txq
= __skb_get_hash_symmetric(skb
);
575 e
= tun_flow_find(&tun
->flows
[tun_hashfn(txq
)], txq
);
577 tun_flow_save_rps_rxhash(e
, txq
);
578 txq
= e
->queue_index
;
580 /* use multiply and shift instead of expensive divide */
581 txq
= ((u64
)txq
* numqueues
) >> 32;
587 static u16
tun_ebpf_select_queue(struct tun_struct
*tun
, struct sk_buff
*skb
)
589 struct tun_prog
*prog
;
593 numqueues
= READ_ONCE(tun
->numqueues
);
597 prog
= rcu_dereference(tun
->steering_prog
);
599 ret
= bpf_prog_run_clear_cb(prog
->prog
, skb
);
601 return ret
% numqueues
;
604 static u16
tun_select_queue(struct net_device
*dev
, struct sk_buff
*skb
,
605 struct net_device
*sb_dev
)
607 struct tun_struct
*tun
= netdev_priv(dev
);
611 if (rcu_dereference(tun
->steering_prog
))
612 ret
= tun_ebpf_select_queue(tun
, skb
);
614 ret
= tun_automq_select_queue(tun
, skb
);
620 static inline bool tun_not_capable(struct tun_struct
*tun
)
622 const struct cred
*cred
= current_cred();
623 struct net
*net
= dev_net(tun
->dev
);
625 return ((uid_valid(tun
->owner
) && !uid_eq(cred
->euid
, tun
->owner
)) ||
626 (gid_valid(tun
->group
) && !in_egroup_p(tun
->group
))) &&
627 !ns_capable(net
->user_ns
, CAP_NET_ADMIN
);
630 static void tun_set_real_num_queues(struct tun_struct
*tun
)
632 netif_set_real_num_tx_queues(tun
->dev
, tun
->numqueues
);
633 netif_set_real_num_rx_queues(tun
->dev
, tun
->numqueues
);
636 static void tun_disable_queue(struct tun_struct
*tun
, struct tun_file
*tfile
)
638 tfile
->detached
= tun
;
639 list_add_tail(&tfile
->next
, &tun
->disabled
);
643 static struct tun_struct
*tun_enable_queue(struct tun_file
*tfile
)
645 struct tun_struct
*tun
= tfile
->detached
;
647 tfile
->detached
= NULL
;
648 list_del_init(&tfile
->next
);
653 void tun_ptr_free(void *ptr
)
657 if (tun_is_xdp_frame(ptr
)) {
658 struct xdp_frame
*xdpf
= tun_ptr_to_xdp(ptr
);
660 xdp_return_frame(xdpf
);
662 __skb_array_destroy_skb(ptr
);
665 EXPORT_SYMBOL_GPL(tun_ptr_free
);
667 static void tun_queue_purge(struct tun_file
*tfile
)
671 while ((ptr
= ptr_ring_consume(&tfile
->tx_ring
)) != NULL
)
674 skb_queue_purge(&tfile
->sk
.sk_write_queue
);
675 skb_queue_purge(&tfile
->sk
.sk_error_queue
);
678 static void __tun_detach(struct tun_file
*tfile
, bool clean
)
680 struct tun_file
*ntfile
;
681 struct tun_struct
*tun
;
683 tun
= rtnl_dereference(tfile
->tun
);
686 tun_napi_disable(tfile
);
690 if (tun
&& !tfile
->detached
) {
691 u16 index
= tfile
->queue_index
;
692 BUG_ON(index
>= tun
->numqueues
);
694 rcu_assign_pointer(tun
->tfiles
[index
],
695 tun
->tfiles
[tun
->numqueues
- 1]);
696 ntfile
= rtnl_dereference(tun
->tfiles
[index
]);
697 ntfile
->queue_index
= index
;
698 rcu_assign_pointer(tun
->tfiles
[tun
->numqueues
- 1],
703 RCU_INIT_POINTER(tfile
->tun
, NULL
);
704 sock_put(&tfile
->sk
);
706 tun_disable_queue(tun
, tfile
);
709 tun_flow_delete_by_queue(tun
, tun
->numqueues
+ 1);
710 /* Drop read queue */
711 tun_queue_purge(tfile
);
712 tun_set_real_num_queues(tun
);
713 } else if (tfile
->detached
&& clean
) {
714 tun
= tun_enable_queue(tfile
);
715 sock_put(&tfile
->sk
);
719 if (tun
&& tun
->numqueues
== 0 && tun
->numdisabled
== 0) {
720 netif_carrier_off(tun
->dev
);
722 if (!(tun
->flags
& IFF_PERSIST
) &&
723 tun
->dev
->reg_state
== NETREG_REGISTERED
)
724 unregister_netdevice(tun
->dev
);
727 xdp_rxq_info_unreg(&tfile
->xdp_rxq
);
728 ptr_ring_cleanup(&tfile
->tx_ring
, tun_ptr_free
);
729 sock_put(&tfile
->sk
);
733 static void tun_detach(struct tun_file
*tfile
, bool clean
)
735 struct tun_struct
*tun
;
736 struct net_device
*dev
;
739 tun
= rtnl_dereference(tfile
->tun
);
740 dev
= tun
? tun
->dev
: NULL
;
741 __tun_detach(tfile
, clean
);
743 netdev_state_change(dev
);
747 static void tun_detach_all(struct net_device
*dev
)
749 struct tun_struct
*tun
= netdev_priv(dev
);
750 struct tun_file
*tfile
, *tmp
;
751 int i
, n
= tun
->numqueues
;
753 for (i
= 0; i
< n
; i
++) {
754 tfile
= rtnl_dereference(tun
->tfiles
[i
]);
756 tun_napi_disable(tfile
);
757 tfile
->socket
.sk
->sk_shutdown
= RCV_SHUTDOWN
;
758 tfile
->socket
.sk
->sk_data_ready(tfile
->socket
.sk
);
759 RCU_INIT_POINTER(tfile
->tun
, NULL
);
762 list_for_each_entry(tfile
, &tun
->disabled
, next
) {
763 tfile
->socket
.sk
->sk_shutdown
= RCV_SHUTDOWN
;
764 tfile
->socket
.sk
->sk_data_ready(tfile
->socket
.sk
);
765 RCU_INIT_POINTER(tfile
->tun
, NULL
);
767 BUG_ON(tun
->numqueues
!= 0);
770 for (i
= 0; i
< n
; i
++) {
771 tfile
= rtnl_dereference(tun
->tfiles
[i
]);
773 /* Drop read queue */
774 tun_queue_purge(tfile
);
775 xdp_rxq_info_unreg(&tfile
->xdp_rxq
);
776 sock_put(&tfile
->sk
);
778 list_for_each_entry_safe(tfile
, tmp
, &tun
->disabled
, next
) {
779 tun_enable_queue(tfile
);
780 tun_queue_purge(tfile
);
781 xdp_rxq_info_unreg(&tfile
->xdp_rxq
);
782 sock_put(&tfile
->sk
);
784 BUG_ON(tun
->numdisabled
!= 0);
786 if (tun
->flags
& IFF_PERSIST
)
787 module_put(THIS_MODULE
);
790 static int tun_attach(struct tun_struct
*tun
, struct file
*file
,
791 bool skip_filter
, bool napi
, bool napi_frags
)
793 struct tun_file
*tfile
= file
->private_data
;
794 struct net_device
*dev
= tun
->dev
;
797 err
= security_tun_dev_attach(tfile
->socket
.sk
, tun
->security
);
802 if (rtnl_dereference(tfile
->tun
) && !tfile
->detached
)
806 if (!(tun
->flags
& IFF_MULTI_QUEUE
) && tun
->numqueues
== 1)
810 if (!tfile
->detached
&&
811 tun
->numqueues
+ tun
->numdisabled
== MAX_TAP_QUEUES
)
816 /* Re-attach the filter to persist device */
817 if (!skip_filter
&& (tun
->filter_attached
== true)) {
818 lock_sock(tfile
->socket
.sk
);
819 err
= sk_attach_filter(&tun
->fprog
, tfile
->socket
.sk
);
820 release_sock(tfile
->socket
.sk
);
825 if (!tfile
->detached
&&
826 ptr_ring_resize(&tfile
->tx_ring
, dev
->tx_queue_len
,
827 GFP_KERNEL
, tun_ptr_free
)) {
832 tfile
->queue_index
= tun
->numqueues
;
833 tfile
->socket
.sk
->sk_shutdown
&= ~RCV_SHUTDOWN
;
835 if (tfile
->detached
) {
836 /* Re-attach detached tfile, updating XDP queue_index */
837 WARN_ON(!xdp_rxq_info_is_reg(&tfile
->xdp_rxq
));
839 if (tfile
->xdp_rxq
.queue_index
!= tfile
->queue_index
)
840 tfile
->xdp_rxq
.queue_index
= tfile
->queue_index
;
842 /* Setup XDP RX-queue info, for new tfile getting attached */
843 err
= xdp_rxq_info_reg(&tfile
->xdp_rxq
,
844 tun
->dev
, tfile
->queue_index
);
847 err
= xdp_rxq_info_reg_mem_model(&tfile
->xdp_rxq
,
848 MEM_TYPE_PAGE_SHARED
, NULL
);
850 xdp_rxq_info_unreg(&tfile
->xdp_rxq
);
856 if (tfile
->detached
) {
857 tun_enable_queue(tfile
);
859 sock_hold(&tfile
->sk
);
860 tun_napi_init(tun
, tfile
, napi
, napi_frags
);
863 if (rtnl_dereference(tun
->xdp_prog
))
864 sock_set_flag(&tfile
->sk
, SOCK_XDP
);
866 /* device is allowed to go away first, so no need to hold extra
870 /* Publish tfile->tun and tun->tfiles only after we've fully
871 * initialized tfile; otherwise we risk using half-initialized
874 rcu_assign_pointer(tfile
->tun
, tun
);
875 rcu_assign_pointer(tun
->tfiles
[tun
->numqueues
], tfile
);
877 tun_set_real_num_queues(tun
);
882 static struct tun_struct
*tun_get(struct tun_file
*tfile
)
884 struct tun_struct
*tun
;
887 tun
= rcu_dereference(tfile
->tun
);
895 static void tun_put(struct tun_struct
*tun
)
901 static void addr_hash_set(u32
*mask
, const u8
*addr
)
903 int n
= ether_crc(ETH_ALEN
, addr
) >> 26;
904 mask
[n
>> 5] |= (1 << (n
& 31));
907 static unsigned int addr_hash_test(const u32
*mask
, const u8
*addr
)
909 int n
= ether_crc(ETH_ALEN
, addr
) >> 26;
910 return mask
[n
>> 5] & (1 << (n
& 31));
913 static int update_filter(struct tap_filter
*filter
, void __user
*arg
)
915 struct { u8 u
[ETH_ALEN
]; } *addr
;
916 struct tun_filter uf
;
917 int err
, alen
, n
, nexact
;
919 if (copy_from_user(&uf
, arg
, sizeof(uf
)))
928 alen
= ETH_ALEN
* uf
.count
;
929 addr
= memdup_user(arg
+ sizeof(uf
), alen
);
931 return PTR_ERR(addr
);
933 /* The filter is updated without holding any locks. Which is
934 * perfectly safe. We disable it first and in the worst
935 * case we'll accept a few undesired packets. */
939 /* Use first set of addresses as an exact filter */
940 for (n
= 0; n
< uf
.count
&& n
< FLT_EXACT_COUNT
; n
++)
941 memcpy(filter
->addr
[n
], addr
[n
].u
, ETH_ALEN
);
945 /* Remaining multicast addresses are hashed,
946 * unicast will leave the filter disabled. */
947 memset(filter
->mask
, 0, sizeof(filter
->mask
));
948 for (; n
< uf
.count
; n
++) {
949 if (!is_multicast_ether_addr(addr
[n
].u
)) {
950 err
= 0; /* no filter */
953 addr_hash_set(filter
->mask
, addr
[n
].u
);
956 /* For ALLMULTI just set the mask to all ones.
957 * This overrides the mask populated above. */
958 if ((uf
.flags
& TUN_FLT_ALLMULTI
))
959 memset(filter
->mask
, ~0, sizeof(filter
->mask
));
961 /* Now enable the filter */
963 filter
->count
= nexact
;
965 /* Return the number of exact filters */
972 /* Returns: 0 - drop, !=0 - accept */
973 static int run_filter(struct tap_filter
*filter
, const struct sk_buff
*skb
)
975 /* Cannot use eth_hdr(skb) here because skb_mac_hdr() is incorrect
977 struct ethhdr
*eh
= (struct ethhdr
*) skb
->data
;
981 for (i
= 0; i
< filter
->count
; i
++)
982 if (ether_addr_equal(eh
->h_dest
, filter
->addr
[i
]))
985 /* Inexact match (multicast only) */
986 if (is_multicast_ether_addr(eh
->h_dest
))
987 return addr_hash_test(filter
->mask
, eh
->h_dest
);
993 * Checks whether the packet is accepted or not.
994 * Returns: 0 - drop, !=0 - accept
996 static int check_filter(struct tap_filter
*filter
, const struct sk_buff
*skb
)
1001 return run_filter(filter
, skb
);
1004 /* Network device part of the driver */
1006 static const struct ethtool_ops tun_ethtool_ops
;
1008 /* Net device detach from fd. */
1009 static void tun_net_uninit(struct net_device
*dev
)
1011 tun_detach_all(dev
);
1014 /* Net device open. */
1015 static int tun_net_open(struct net_device
*dev
)
1017 netif_tx_start_all_queues(dev
);
1022 /* Net device close. */
1023 static int tun_net_close(struct net_device
*dev
)
1025 netif_tx_stop_all_queues(dev
);
1029 /* Net device start xmit */
1030 static void tun_automq_xmit(struct tun_struct
*tun
, struct sk_buff
*skb
)
1033 if (tun
->numqueues
== 1 && static_branch_unlikely(&rps_needed
)) {
1034 /* Select queue was not called for the skbuff, so we extract the
1035 * RPS hash and save it into the flow_table here.
1037 struct tun_flow_entry
*e
;
1040 rxhash
= __skb_get_hash_symmetric(skb
);
1041 e
= tun_flow_find(&tun
->flows
[tun_hashfn(rxhash
)], rxhash
);
1043 tun_flow_save_rps_rxhash(e
, rxhash
);
1048 static unsigned int run_ebpf_filter(struct tun_struct
*tun
,
1049 struct sk_buff
*skb
,
1052 struct tun_prog
*prog
= rcu_dereference(tun
->filter_prog
);
1055 len
= bpf_prog_run_clear_cb(prog
->prog
, skb
);
1060 /* Net device start xmit */
1061 static netdev_tx_t
tun_net_xmit(struct sk_buff
*skb
, struct net_device
*dev
)
1063 struct tun_struct
*tun
= netdev_priv(dev
);
1064 int txq
= skb
->queue_mapping
;
1065 struct tun_file
*tfile
;
1069 tfile
= rcu_dereference(tun
->tfiles
[txq
]);
1071 /* Drop packet if interface is not attached */
1075 if (!rcu_dereference(tun
->steering_prog
))
1076 tun_automq_xmit(tun
, skb
);
1078 tun_debug(KERN_INFO
, tun
, "tun_net_xmit %d\n", skb
->len
);
1082 /* Drop if the filter does not like it.
1083 * This is a noop if the filter is disabled.
1084 * Filter can be enabled only for the TAP devices. */
1085 if (!check_filter(&tun
->txflt
, skb
))
1088 if (tfile
->socket
.sk
->sk_filter
&&
1089 sk_filter(tfile
->socket
.sk
, skb
))
1092 len
= run_ebpf_filter(tun
, skb
, len
);
1093 if (len
== 0 || pskb_trim(skb
, len
))
1096 if (unlikely(skb_orphan_frags_rx(skb
, GFP_ATOMIC
)))
1099 skb_tx_timestamp(skb
);
1101 /* Orphan the skb - required as we might hang on to it
1102 * for indefinite time.
1108 if (ptr_ring_produce(&tfile
->tx_ring
, skb
))
1111 /* Notify and wake up reader process */
1112 if (tfile
->flags
& TUN_FASYNC
)
1113 kill_fasync(&tfile
->fasync
, SIGIO
, POLL_IN
);
1114 tfile
->socket
.sk
->sk_data_ready(tfile
->socket
.sk
);
1117 return NETDEV_TX_OK
;
1120 this_cpu_inc(tun
->pcpu_stats
->tx_dropped
);
1124 return NET_XMIT_DROP
;
1127 static void tun_net_mclist(struct net_device
*dev
)
1130 * This callback is supposed to deal with mc filter in
1131 * _rx_ path and has nothing to do with the _tx_ path.
1132 * In rx path we always accept everything userspace gives us.
1136 static netdev_features_t
tun_net_fix_features(struct net_device
*dev
,
1137 netdev_features_t features
)
1139 struct tun_struct
*tun
= netdev_priv(dev
);
1141 return (features
& tun
->set_features
) | (features
& ~TUN_USER_FEATURES
);
1144 static void tun_set_headroom(struct net_device
*dev
, int new_hr
)
1146 struct tun_struct
*tun
= netdev_priv(dev
);
1148 if (new_hr
< NET_SKB_PAD
)
1149 new_hr
= NET_SKB_PAD
;
1151 tun
->align
= new_hr
;
1155 tun_net_get_stats64(struct net_device
*dev
, struct rtnl_link_stats64
*stats
)
1157 u32 rx_dropped
= 0, tx_dropped
= 0, rx_frame_errors
= 0;
1158 struct tun_struct
*tun
= netdev_priv(dev
);
1159 struct tun_pcpu_stats
*p
;
1162 for_each_possible_cpu(i
) {
1163 u64 rxpackets
, rxbytes
, txpackets
, txbytes
;
1166 p
= per_cpu_ptr(tun
->pcpu_stats
, i
);
1168 start
= u64_stats_fetch_begin(&p
->syncp
);
1169 rxpackets
= p
->rx_packets
;
1170 rxbytes
= p
->rx_bytes
;
1171 txpackets
= p
->tx_packets
;
1172 txbytes
= p
->tx_bytes
;
1173 } while (u64_stats_fetch_retry(&p
->syncp
, start
));
1175 stats
->rx_packets
+= rxpackets
;
1176 stats
->rx_bytes
+= rxbytes
;
1177 stats
->tx_packets
+= txpackets
;
1178 stats
->tx_bytes
+= txbytes
;
1181 rx_dropped
+= p
->rx_dropped
;
1182 rx_frame_errors
+= p
->rx_frame_errors
;
1183 tx_dropped
+= p
->tx_dropped
;
1185 stats
->rx_dropped
= rx_dropped
;
1186 stats
->rx_frame_errors
= rx_frame_errors
;
1187 stats
->tx_dropped
= tx_dropped
;
1190 static int tun_xdp_set(struct net_device
*dev
, struct bpf_prog
*prog
,
1191 struct netlink_ext_ack
*extack
)
1193 struct tun_struct
*tun
= netdev_priv(dev
);
1194 struct tun_file
*tfile
;
1195 struct bpf_prog
*old_prog
;
1198 old_prog
= rtnl_dereference(tun
->xdp_prog
);
1199 rcu_assign_pointer(tun
->xdp_prog
, prog
);
1201 bpf_prog_put(old_prog
);
1203 for (i
= 0; i
< tun
->numqueues
; i
++) {
1204 tfile
= rtnl_dereference(tun
->tfiles
[i
]);
1206 sock_set_flag(&tfile
->sk
, SOCK_XDP
);
1208 sock_reset_flag(&tfile
->sk
, SOCK_XDP
);
1210 list_for_each_entry(tfile
, &tun
->disabled
, next
) {
1212 sock_set_flag(&tfile
->sk
, SOCK_XDP
);
1214 sock_reset_flag(&tfile
->sk
, SOCK_XDP
);
1220 static u32
tun_xdp_query(struct net_device
*dev
)
1222 struct tun_struct
*tun
= netdev_priv(dev
);
1223 const struct bpf_prog
*xdp_prog
;
1225 xdp_prog
= rtnl_dereference(tun
->xdp_prog
);
1227 return xdp_prog
->aux
->id
;
1232 static int tun_xdp(struct net_device
*dev
, struct netdev_bpf
*xdp
)
1234 switch (xdp
->command
) {
1235 case XDP_SETUP_PROG
:
1236 return tun_xdp_set(dev
, xdp
->prog
, xdp
->extack
);
1237 case XDP_QUERY_PROG
:
1238 xdp
->prog_id
= tun_xdp_query(dev
);
1245 static int tun_net_change_carrier(struct net_device
*dev
, bool new_carrier
)
1248 struct tun_struct
*tun
= netdev_priv(dev
);
1250 if (!tun
->numqueues
)
1253 netif_carrier_on(dev
);
1255 netif_carrier_off(dev
);
1260 static const struct net_device_ops tun_netdev_ops
= {
1261 .ndo_uninit
= tun_net_uninit
,
1262 .ndo_open
= tun_net_open
,
1263 .ndo_stop
= tun_net_close
,
1264 .ndo_start_xmit
= tun_net_xmit
,
1265 .ndo_fix_features
= tun_net_fix_features
,
1266 .ndo_select_queue
= tun_select_queue
,
1267 .ndo_set_rx_headroom
= tun_set_headroom
,
1268 .ndo_get_stats64
= tun_net_get_stats64
,
1269 .ndo_change_carrier
= tun_net_change_carrier
,
1272 static void __tun_xdp_flush_tfile(struct tun_file
*tfile
)
1274 /* Notify and wake up reader process */
1275 if (tfile
->flags
& TUN_FASYNC
)
1276 kill_fasync(&tfile
->fasync
, SIGIO
, POLL_IN
);
1277 tfile
->socket
.sk
->sk_data_ready(tfile
->socket
.sk
);
1280 static int tun_xdp_xmit(struct net_device
*dev
, int n
,
1281 struct xdp_frame
**frames
, u32 flags
)
1283 struct tun_struct
*tun
= netdev_priv(dev
);
1284 struct tun_file
*tfile
;
1290 if (unlikely(flags
& ~XDP_XMIT_FLAGS_MASK
))
1296 numqueues
= READ_ONCE(tun
->numqueues
);
1299 return -ENXIO
; /* Caller will free/return all frames */
1302 tfile
= rcu_dereference(tun
->tfiles
[smp_processor_id() %
1304 if (unlikely(!tfile
))
1307 spin_lock(&tfile
->tx_ring
.producer_lock
);
1308 for (i
= 0; i
< n
; i
++) {
1309 struct xdp_frame
*xdp
= frames
[i
];
1310 /* Encode the XDP flag into lowest bit for consumer to differ
1311 * XDP buffer from sk_buff.
1313 void *frame
= tun_xdp_to_ptr(xdp
);
1315 if (__ptr_ring_produce(&tfile
->tx_ring
, frame
)) {
1316 this_cpu_inc(tun
->pcpu_stats
->tx_dropped
);
1317 xdp_return_frame_rx_napi(xdp
);
1321 spin_unlock(&tfile
->tx_ring
.producer_lock
);
1323 if (flags
& XDP_XMIT_FLUSH
)
1324 __tun_xdp_flush_tfile(tfile
);
1330 static int tun_xdp_tx(struct net_device
*dev
, struct xdp_buff
*xdp
)
1332 struct xdp_frame
*frame
= convert_to_xdp_frame(xdp
);
1334 if (unlikely(!frame
))
1337 return tun_xdp_xmit(dev
, 1, &frame
, XDP_XMIT_FLUSH
);
1340 static const struct net_device_ops tap_netdev_ops
= {
1341 .ndo_uninit
= tun_net_uninit
,
1342 .ndo_open
= tun_net_open
,
1343 .ndo_stop
= tun_net_close
,
1344 .ndo_start_xmit
= tun_net_xmit
,
1345 .ndo_fix_features
= tun_net_fix_features
,
1346 .ndo_set_rx_mode
= tun_net_mclist
,
1347 .ndo_set_mac_address
= eth_mac_addr
,
1348 .ndo_validate_addr
= eth_validate_addr
,
1349 .ndo_select_queue
= tun_select_queue
,
1350 .ndo_features_check
= passthru_features_check
,
1351 .ndo_set_rx_headroom
= tun_set_headroom
,
1352 .ndo_get_stats64
= tun_net_get_stats64
,
1354 .ndo_xdp_xmit
= tun_xdp_xmit
,
1355 .ndo_change_carrier
= tun_net_change_carrier
,
1358 static void tun_flow_init(struct tun_struct
*tun
)
1362 for (i
= 0; i
< TUN_NUM_FLOW_ENTRIES
; i
++)
1363 INIT_HLIST_HEAD(&tun
->flows
[i
]);
1365 tun
->ageing_time
= TUN_FLOW_EXPIRE
;
1366 timer_setup(&tun
->flow_gc_timer
, tun_flow_cleanup
, 0);
1367 mod_timer(&tun
->flow_gc_timer
,
1368 round_jiffies_up(jiffies
+ tun
->ageing_time
));
1371 static void tun_flow_uninit(struct tun_struct
*tun
)
1373 del_timer_sync(&tun
->flow_gc_timer
);
1374 tun_flow_flush(tun
);
1378 #define MAX_MTU 65535
1380 /* Initialize net device. */
1381 static void tun_net_init(struct net_device
*dev
)
1383 struct tun_struct
*tun
= netdev_priv(dev
);
1385 switch (tun
->flags
& TUN_TYPE_MASK
) {
1387 dev
->netdev_ops
= &tun_netdev_ops
;
1389 /* Point-to-Point TUN Device */
1390 dev
->hard_header_len
= 0;
1394 /* Zero header length */
1395 dev
->type
= ARPHRD_NONE
;
1396 dev
->flags
= IFF_POINTOPOINT
| IFF_NOARP
| IFF_MULTICAST
;
1400 dev
->netdev_ops
= &tap_netdev_ops
;
1401 /* Ethernet TAP Device */
1403 dev
->priv_flags
&= ~IFF_TX_SKB_SHARING
;
1404 dev
->priv_flags
|= IFF_LIVE_ADDR_CHANGE
;
1406 eth_hw_addr_random(dev
);
1411 dev
->min_mtu
= MIN_MTU
;
1412 dev
->max_mtu
= MAX_MTU
- dev
->hard_header_len
;
1415 static bool tun_sock_writeable(struct tun_struct
*tun
, struct tun_file
*tfile
)
1417 struct sock
*sk
= tfile
->socket
.sk
;
1419 return (tun
->dev
->flags
& IFF_UP
) && sock_writeable(sk
);
1422 /* Character device part */
1425 static __poll_t
tun_chr_poll(struct file
*file
, poll_table
*wait
)
1427 struct tun_file
*tfile
= file
->private_data
;
1428 struct tun_struct
*tun
= tun_get(tfile
);
1435 sk
= tfile
->socket
.sk
;
1437 tun_debug(KERN_INFO
, tun
, "tun_chr_poll\n");
1439 poll_wait(file
, sk_sleep(sk
), wait
);
1441 if (!ptr_ring_empty(&tfile
->tx_ring
))
1442 mask
|= EPOLLIN
| EPOLLRDNORM
;
1444 /* Make sure SOCKWQ_ASYNC_NOSPACE is set if not writable to
1445 * guarantee EPOLLOUT to be raised by either here or
1446 * tun_sock_write_space(). Then process could get notification
1447 * after it writes to a down device and meets -EIO.
1449 if (tun_sock_writeable(tun
, tfile
) ||
1450 (!test_and_set_bit(SOCKWQ_ASYNC_NOSPACE
, &sk
->sk_socket
->flags
) &&
1451 tun_sock_writeable(tun
, tfile
)))
1452 mask
|= EPOLLOUT
| EPOLLWRNORM
;
1454 if (tun
->dev
->reg_state
!= NETREG_REGISTERED
)
1461 static struct sk_buff
*tun_napi_alloc_frags(struct tun_file
*tfile
,
1463 const struct iov_iter
*it
)
1465 struct sk_buff
*skb
;
1470 if (it
->nr_segs
> MAX_SKB_FRAGS
+ 1)
1471 return ERR_PTR(-ENOMEM
);
1474 skb
= napi_get_frags(&tfile
->napi
);
1477 return ERR_PTR(-ENOMEM
);
1479 linear
= iov_iter_single_seg_count(it
);
1480 err
= __skb_grow(skb
, linear
);
1485 skb
->data_len
= len
- linear
;
1486 skb
->truesize
+= skb
->data_len
;
1488 for (i
= 1; i
< it
->nr_segs
; i
++) {
1489 size_t fragsz
= it
->iov
[i
].iov_len
;
1493 if (fragsz
== 0 || fragsz
> PAGE_SIZE
) {
1497 frag
= netdev_alloc_frag(fragsz
);
1502 page
= virt_to_head_page(frag
);
1503 skb_fill_page_desc(skb
, i
- 1, page
,
1504 frag
- page_address(page
), fragsz
);
1509 /* frees skb and all frags allocated with napi_alloc_frag() */
1510 napi_free_frags(&tfile
->napi
);
1511 return ERR_PTR(err
);
1514 /* prepad is the amount to reserve at front. len is length after that.
1515 * linear is a hint as to how much to copy (usually headers). */
1516 static struct sk_buff
*tun_alloc_skb(struct tun_file
*tfile
,
1517 size_t prepad
, size_t len
,
1518 size_t linear
, int noblock
)
1520 struct sock
*sk
= tfile
->socket
.sk
;
1521 struct sk_buff
*skb
;
1524 /* Under a page? Don't bother with paged skb. */
1525 if (prepad
+ len
< PAGE_SIZE
|| !linear
)
1528 skb
= sock_alloc_send_pskb(sk
, prepad
+ linear
, len
- linear
, noblock
,
1531 return ERR_PTR(err
);
1533 skb_reserve(skb
, prepad
);
1534 skb_put(skb
, linear
);
1535 skb
->data_len
= len
- linear
;
1536 skb
->len
+= len
- linear
;
1541 static void tun_rx_batched(struct tun_struct
*tun
, struct tun_file
*tfile
,
1542 struct sk_buff
*skb
, int more
)
1544 struct sk_buff_head
*queue
= &tfile
->sk
.sk_write_queue
;
1545 struct sk_buff_head process_queue
;
1546 u32 rx_batched
= tun
->rx_batched
;
1549 if (!rx_batched
|| (!more
&& skb_queue_empty(queue
))) {
1551 skb_record_rx_queue(skb
, tfile
->queue_index
);
1552 netif_receive_skb(skb
);
1557 spin_lock(&queue
->lock
);
1558 if (!more
|| skb_queue_len(queue
) == rx_batched
) {
1559 __skb_queue_head_init(&process_queue
);
1560 skb_queue_splice_tail_init(queue
, &process_queue
);
1563 __skb_queue_tail(queue
, skb
);
1565 spin_unlock(&queue
->lock
);
1568 struct sk_buff
*nskb
;
1571 while ((nskb
= __skb_dequeue(&process_queue
))) {
1572 skb_record_rx_queue(nskb
, tfile
->queue_index
);
1573 netif_receive_skb(nskb
);
1575 skb_record_rx_queue(skb
, tfile
->queue_index
);
1576 netif_receive_skb(skb
);
1581 static bool tun_can_build_skb(struct tun_struct
*tun
, struct tun_file
*tfile
,
1582 int len
, int noblock
, bool zerocopy
)
1584 if ((tun
->flags
& TUN_TYPE_MASK
) != IFF_TAP
)
1587 if (tfile
->socket
.sk
->sk_sndbuf
!= INT_MAX
)
1596 if (SKB_DATA_ALIGN(len
+ TUN_RX_PAD
) +
1597 SKB_DATA_ALIGN(sizeof(struct skb_shared_info
)) > PAGE_SIZE
)
1603 static struct sk_buff
*__tun_build_skb(struct page_frag
*alloc_frag
, char *buf
,
1604 int buflen
, int len
, int pad
)
1606 struct sk_buff
*skb
= build_skb(buf
, buflen
);
1609 return ERR_PTR(-ENOMEM
);
1611 skb_reserve(skb
, pad
);
1614 get_page(alloc_frag
->page
);
1615 alloc_frag
->offset
+= buflen
;
1620 static int tun_xdp_act(struct tun_struct
*tun
, struct bpf_prog
*xdp_prog
,
1621 struct xdp_buff
*xdp
, u32 act
)
1627 err
= xdp_do_redirect(tun
->dev
, xdp
, xdp_prog
);
1632 err
= tun_xdp_tx(tun
->dev
, xdp
);
1639 bpf_warn_invalid_xdp_action(act
);
1642 trace_xdp_exception(tun
->dev
, xdp_prog
, act
);
1645 this_cpu_inc(tun
->pcpu_stats
->rx_dropped
);
1652 static struct sk_buff
*tun_build_skb(struct tun_struct
*tun
,
1653 struct tun_file
*tfile
,
1654 struct iov_iter
*from
,
1655 struct virtio_net_hdr
*hdr
,
1656 int len
, int *skb_xdp
)
1658 struct page_frag
*alloc_frag
= ¤t
->task_frag
;
1659 struct bpf_prog
*xdp_prog
;
1660 int buflen
= SKB_DATA_ALIGN(sizeof(struct skb_shared_info
));
1663 int pad
= TUN_RX_PAD
;
1667 xdp_prog
= rcu_dereference(tun
->xdp_prog
);
1669 pad
+= XDP_PACKET_HEADROOM
;
1670 buflen
+= SKB_DATA_ALIGN(len
+ pad
);
1673 alloc_frag
->offset
= ALIGN((u64
)alloc_frag
->offset
, SMP_CACHE_BYTES
);
1674 if (unlikely(!skb_page_frag_refill(buflen
, alloc_frag
, GFP_KERNEL
)))
1675 return ERR_PTR(-ENOMEM
);
1677 buf
= (char *)page_address(alloc_frag
->page
) + alloc_frag
->offset
;
1678 copied
= copy_page_from_iter(alloc_frag
->page
,
1679 alloc_frag
->offset
+ pad
,
1682 return ERR_PTR(-EFAULT
);
1684 /* There's a small window that XDP may be set after the check
1685 * of xdp_prog above, this should be rare and for simplicity
1686 * we do XDP on skb in case the headroom is not enough.
1688 if (hdr
->gso_type
|| !xdp_prog
) {
1690 return __tun_build_skb(alloc_frag
, buf
, buflen
, len
, pad
);
1697 xdp_prog
= rcu_dereference(tun
->xdp_prog
);
1699 struct xdp_buff xdp
;
1702 xdp
.data_hard_start
= buf
;
1703 xdp
.data
= buf
+ pad
;
1704 xdp_set_data_meta_invalid(&xdp
);
1705 xdp
.data_end
= xdp
.data
+ len
;
1706 xdp
.rxq
= &tfile
->xdp_rxq
;
1708 act
= bpf_prog_run_xdp(xdp_prog
, &xdp
);
1709 if (act
== XDP_REDIRECT
|| act
== XDP_TX
) {
1710 get_page(alloc_frag
->page
);
1711 alloc_frag
->offset
+= buflen
;
1713 err
= tun_xdp_act(tun
, xdp_prog
, &xdp
, act
);
1716 if (err
== XDP_REDIRECT
)
1718 if (err
!= XDP_PASS
)
1721 pad
= xdp
.data
- xdp
.data_hard_start
;
1722 len
= xdp
.data_end
- xdp
.data
;
1727 return __tun_build_skb(alloc_frag
, buf
, buflen
, len
, pad
);
1730 put_page(alloc_frag
->page
);
1737 /* Get packet from user space buffer */
1738 static ssize_t
tun_get_user(struct tun_struct
*tun
, struct tun_file
*tfile
,
1739 void *msg_control
, struct iov_iter
*from
,
1740 int noblock
, bool more
)
1742 struct tun_pi pi
= { 0, cpu_to_be16(ETH_P_IP
) };
1743 struct sk_buff
*skb
;
1744 size_t total_len
= iov_iter_count(from
);
1745 size_t len
= total_len
, align
= tun
->align
, linear
;
1746 struct virtio_net_hdr gso
= { 0 };
1747 struct tun_pcpu_stats
*stats
;
1750 bool zerocopy
= false;
1754 bool frags
= tun_napi_frags_enabled(tfile
);
1756 if (!(tun
->flags
& IFF_NO_PI
)) {
1757 if (len
< sizeof(pi
))
1761 if (!copy_from_iter_full(&pi
, sizeof(pi
), from
))
1765 if (tun
->flags
& IFF_VNET_HDR
) {
1766 int vnet_hdr_sz
= READ_ONCE(tun
->vnet_hdr_sz
);
1768 if (len
< vnet_hdr_sz
)
1772 if (!copy_from_iter_full(&gso
, sizeof(gso
), from
))
1775 if ((gso
.flags
& VIRTIO_NET_HDR_F_NEEDS_CSUM
) &&
1776 tun16_to_cpu(tun
, gso
.csum_start
) + tun16_to_cpu(tun
, gso
.csum_offset
) + 2 > tun16_to_cpu(tun
, gso
.hdr_len
))
1777 gso
.hdr_len
= cpu_to_tun16(tun
, tun16_to_cpu(tun
, gso
.csum_start
) + tun16_to_cpu(tun
, gso
.csum_offset
) + 2);
1779 if (tun16_to_cpu(tun
, gso
.hdr_len
) > len
)
1781 iov_iter_advance(from
, vnet_hdr_sz
- sizeof(gso
));
1784 if ((tun
->flags
& TUN_TYPE_MASK
) == IFF_TAP
) {
1785 align
+= NET_IP_ALIGN
;
1786 if (unlikely(len
< ETH_HLEN
||
1787 (gso
.hdr_len
&& tun16_to_cpu(tun
, gso
.hdr_len
) < ETH_HLEN
)))
1791 good_linear
= SKB_MAX_HEAD(align
);
1794 struct iov_iter i
= *from
;
1796 /* There are 256 bytes to be copied in skb, so there is
1797 * enough room for skb expand head in case it is used.
1798 * The rest of the buffer is mapped from userspace.
1800 copylen
= gso
.hdr_len
? tun16_to_cpu(tun
, gso
.hdr_len
) : GOODCOPY_LEN
;
1801 if (copylen
> good_linear
)
1802 copylen
= good_linear
;
1804 iov_iter_advance(&i
, copylen
);
1805 if (iov_iter_npages(&i
, INT_MAX
) <= MAX_SKB_FRAGS
)
1809 if (!frags
&& tun_can_build_skb(tun
, tfile
, len
, noblock
, zerocopy
)) {
1810 /* For the packet that is not easy to be processed
1811 * (e.g gso or jumbo packet), we will do it at after
1812 * skb was created with generic XDP routine.
1814 skb
= tun_build_skb(tun
, tfile
, from
, &gso
, len
, &skb_xdp
);
1816 this_cpu_inc(tun
->pcpu_stats
->rx_dropped
);
1817 return PTR_ERR(skb
);
1824 if (tun16_to_cpu(tun
, gso
.hdr_len
) > good_linear
)
1825 linear
= good_linear
;
1827 linear
= tun16_to_cpu(tun
, gso
.hdr_len
);
1831 mutex_lock(&tfile
->napi_mutex
);
1832 skb
= tun_napi_alloc_frags(tfile
, copylen
, from
);
1833 /* tun_napi_alloc_frags() enforces a layout for the skb.
1834 * If zerocopy is enabled, then this layout will be
1835 * overwritten by zerocopy_sg_from_iter().
1839 skb
= tun_alloc_skb(tfile
, align
, copylen
, linear
,
1844 if (PTR_ERR(skb
) != -EAGAIN
)
1845 this_cpu_inc(tun
->pcpu_stats
->rx_dropped
);
1847 mutex_unlock(&tfile
->napi_mutex
);
1848 return PTR_ERR(skb
);
1852 err
= zerocopy_sg_from_iter(skb
, from
);
1854 err
= skb_copy_datagram_from_iter(skb
, 0, from
, len
);
1859 this_cpu_inc(tun
->pcpu_stats
->rx_dropped
);
1862 tfile
->napi
.skb
= NULL
;
1863 mutex_unlock(&tfile
->napi_mutex
);
1870 if (virtio_net_hdr_to_skb(skb
, &gso
, tun_is_little_endian(tun
))) {
1871 this_cpu_inc(tun
->pcpu_stats
->rx_frame_errors
);
1874 tfile
->napi
.skb
= NULL
;
1875 mutex_unlock(&tfile
->napi_mutex
);
1881 switch (tun
->flags
& TUN_TYPE_MASK
) {
1883 if (tun
->flags
& IFF_NO_PI
) {
1884 u8 ip_version
= skb
->len
? (skb
->data
[0] >> 4) : 0;
1886 switch (ip_version
) {
1888 pi
.proto
= htons(ETH_P_IP
);
1891 pi
.proto
= htons(ETH_P_IPV6
);
1894 this_cpu_inc(tun
->pcpu_stats
->rx_dropped
);
1900 skb_reset_mac_header(skb
);
1901 skb
->protocol
= pi
.proto
;
1902 skb
->dev
= tun
->dev
;
1906 skb
->protocol
= eth_type_trans(skb
, tun
->dev
);
1910 /* copy skb_ubuf_info for callback when skb has no error */
1912 skb_shinfo(skb
)->destructor_arg
= msg_control
;
1913 skb_shinfo(skb
)->tx_flags
|= SKBTX_DEV_ZEROCOPY
;
1914 skb_shinfo(skb
)->tx_flags
|= SKBTX_SHARED_FRAG
;
1915 } else if (msg_control
) {
1916 struct ubuf_info
*uarg
= msg_control
;
1917 uarg
->callback(uarg
, false);
1920 skb_reset_network_header(skb
);
1921 skb_probe_transport_header(skb
);
1924 struct bpf_prog
*xdp_prog
;
1929 xdp_prog
= rcu_dereference(tun
->xdp_prog
);
1931 ret
= do_xdp_generic(xdp_prog
, skb
);
1932 if (ret
!= XDP_PASS
) {
1942 /* Compute the costly rx hash only if needed for flow updates.
1943 * We may get a very small possibility of OOO during switching, not
1944 * worth to optimize.
1946 if (!rcu_access_pointer(tun
->steering_prog
) && tun
->numqueues
> 1 &&
1948 rxhash
= __skb_get_hash_symmetric(skb
);
1951 if (unlikely(!(tun
->dev
->flags
& IFF_UP
))) {
1958 /* Exercise flow dissector code path. */
1959 u32 headlen
= eth_get_headlen(tun
->dev
, skb
->data
,
1962 if (unlikely(headlen
> skb_headlen(skb
))) {
1963 this_cpu_inc(tun
->pcpu_stats
->rx_dropped
);
1964 napi_free_frags(&tfile
->napi
);
1966 mutex_unlock(&tfile
->napi_mutex
);
1972 napi_gro_frags(&tfile
->napi
);
1974 mutex_unlock(&tfile
->napi_mutex
);
1975 } else if (tfile
->napi_enabled
) {
1976 struct sk_buff_head
*queue
= &tfile
->sk
.sk_write_queue
;
1979 spin_lock_bh(&queue
->lock
);
1980 __skb_queue_tail(queue
, skb
);
1981 queue_len
= skb_queue_len(queue
);
1982 spin_unlock(&queue
->lock
);
1984 if (!more
|| queue_len
> NAPI_POLL_WEIGHT
)
1985 napi_schedule(&tfile
->napi
);
1988 } else if (!IS_ENABLED(CONFIG_4KSTACKS
)) {
1989 tun_rx_batched(tun
, tfile
, skb
, more
);
1995 stats
= get_cpu_ptr(tun
->pcpu_stats
);
1996 u64_stats_update_begin(&stats
->syncp
);
1997 stats
->rx_packets
++;
1998 stats
->rx_bytes
+= len
;
1999 u64_stats_update_end(&stats
->syncp
);
2003 tun_flow_update(tun
, rxhash
, tfile
);
2008 static ssize_t
tun_chr_write_iter(struct kiocb
*iocb
, struct iov_iter
*from
)
2010 struct file
*file
= iocb
->ki_filp
;
2011 struct tun_file
*tfile
= file
->private_data
;
2012 struct tun_struct
*tun
= tun_get(tfile
);
2018 result
= tun_get_user(tun
, tfile
, NULL
, from
,
2019 file
->f_flags
& O_NONBLOCK
, false);
2025 static ssize_t
tun_put_user_xdp(struct tun_struct
*tun
,
2026 struct tun_file
*tfile
,
2027 struct xdp_frame
*xdp_frame
,
2028 struct iov_iter
*iter
)
2030 int vnet_hdr_sz
= 0;
2031 size_t size
= xdp_frame
->len
;
2032 struct tun_pcpu_stats
*stats
;
2035 if (tun
->flags
& IFF_VNET_HDR
) {
2036 struct virtio_net_hdr gso
= { 0 };
2038 vnet_hdr_sz
= READ_ONCE(tun
->vnet_hdr_sz
);
2039 if (unlikely(iov_iter_count(iter
) < vnet_hdr_sz
))
2041 if (unlikely(copy_to_iter(&gso
, sizeof(gso
), iter
) !=
2044 iov_iter_advance(iter
, vnet_hdr_sz
- sizeof(gso
));
2047 ret
= copy_to_iter(xdp_frame
->data
, size
, iter
) + vnet_hdr_sz
;
2049 stats
= get_cpu_ptr(tun
->pcpu_stats
);
2050 u64_stats_update_begin(&stats
->syncp
);
2051 stats
->tx_packets
++;
2052 stats
->tx_bytes
+= ret
;
2053 u64_stats_update_end(&stats
->syncp
);
2054 put_cpu_ptr(tun
->pcpu_stats
);
2059 /* Put packet to the user space buffer */
2060 static ssize_t
tun_put_user(struct tun_struct
*tun
,
2061 struct tun_file
*tfile
,
2062 struct sk_buff
*skb
,
2063 struct iov_iter
*iter
)
2065 struct tun_pi pi
= { 0, skb
->protocol
};
2066 struct tun_pcpu_stats
*stats
;
2068 int vlan_offset
= 0;
2070 int vnet_hdr_sz
= 0;
2072 if (skb_vlan_tag_present(skb
))
2073 vlan_hlen
= VLAN_HLEN
;
2075 if (tun
->flags
& IFF_VNET_HDR
)
2076 vnet_hdr_sz
= READ_ONCE(tun
->vnet_hdr_sz
);
2078 total
= skb
->len
+ vlan_hlen
+ vnet_hdr_sz
;
2080 if (!(tun
->flags
& IFF_NO_PI
)) {
2081 if (iov_iter_count(iter
) < sizeof(pi
))
2084 total
+= sizeof(pi
);
2085 if (iov_iter_count(iter
) < total
) {
2086 /* Packet will be striped */
2087 pi
.flags
|= TUN_PKT_STRIP
;
2090 if (copy_to_iter(&pi
, sizeof(pi
), iter
) != sizeof(pi
))
2095 struct virtio_net_hdr gso
;
2097 if (iov_iter_count(iter
) < vnet_hdr_sz
)
2100 if (virtio_net_hdr_from_skb(skb
, &gso
,
2101 tun_is_little_endian(tun
), true,
2103 struct skb_shared_info
*sinfo
= skb_shinfo(skb
);
2104 pr_err("unexpected GSO type: "
2105 "0x%x, gso_size %d, hdr_len %d\n",
2106 sinfo
->gso_type
, tun16_to_cpu(tun
, gso
.gso_size
),
2107 tun16_to_cpu(tun
, gso
.hdr_len
));
2108 print_hex_dump(KERN_ERR
, "tun: ",
2111 min((int)tun16_to_cpu(tun
, gso
.hdr_len
), 64), true);
2116 if (copy_to_iter(&gso
, sizeof(gso
), iter
) != sizeof(gso
))
2119 iov_iter_advance(iter
, vnet_hdr_sz
- sizeof(gso
));
2126 veth
.h_vlan_proto
= skb
->vlan_proto
;
2127 veth
.h_vlan_TCI
= htons(skb_vlan_tag_get(skb
));
2129 vlan_offset
= offsetof(struct vlan_ethhdr
, h_vlan_proto
);
2131 ret
= skb_copy_datagram_iter(skb
, 0, iter
, vlan_offset
);
2132 if (ret
|| !iov_iter_count(iter
))
2135 ret
= copy_to_iter(&veth
, sizeof(veth
), iter
);
2136 if (ret
!= sizeof(veth
) || !iov_iter_count(iter
))
2140 skb_copy_datagram_iter(skb
, vlan_offset
, iter
, skb
->len
- vlan_offset
);
2143 /* caller is in process context, */
2144 stats
= get_cpu_ptr(tun
->pcpu_stats
);
2145 u64_stats_update_begin(&stats
->syncp
);
2146 stats
->tx_packets
++;
2147 stats
->tx_bytes
+= skb
->len
+ vlan_hlen
;
2148 u64_stats_update_end(&stats
->syncp
);
2149 put_cpu_ptr(tun
->pcpu_stats
);
2154 static void *tun_ring_recv(struct tun_file
*tfile
, int noblock
, int *err
)
2156 DECLARE_WAITQUEUE(wait
, current
);
2160 ptr
= ptr_ring_consume(&tfile
->tx_ring
);
2168 add_wait_queue(&tfile
->wq
.wait
, &wait
);
2171 set_current_state(TASK_INTERRUPTIBLE
);
2172 ptr
= ptr_ring_consume(&tfile
->tx_ring
);
2175 if (signal_pending(current
)) {
2176 error
= -ERESTARTSYS
;
2179 if (tfile
->socket
.sk
->sk_shutdown
& RCV_SHUTDOWN
) {
2187 __set_current_state(TASK_RUNNING
);
2188 remove_wait_queue(&tfile
->wq
.wait
, &wait
);
2195 static ssize_t
tun_do_read(struct tun_struct
*tun
, struct tun_file
*tfile
,
2196 struct iov_iter
*to
,
2197 int noblock
, void *ptr
)
2202 tun_debug(KERN_INFO
, tun
, "tun_do_read\n");
2204 if (!iov_iter_count(to
)) {
2210 /* Read frames from ring */
2211 ptr
= tun_ring_recv(tfile
, noblock
, &err
);
2216 if (tun_is_xdp_frame(ptr
)) {
2217 struct xdp_frame
*xdpf
= tun_ptr_to_xdp(ptr
);
2219 ret
= tun_put_user_xdp(tun
, tfile
, xdpf
, to
);
2220 xdp_return_frame(xdpf
);
2222 struct sk_buff
*skb
= ptr
;
2224 ret
= tun_put_user(tun
, tfile
, skb
, to
);
2225 if (unlikely(ret
< 0))
2234 static ssize_t
tun_chr_read_iter(struct kiocb
*iocb
, struct iov_iter
*to
)
2236 struct file
*file
= iocb
->ki_filp
;
2237 struct tun_file
*tfile
= file
->private_data
;
2238 struct tun_struct
*tun
= tun_get(tfile
);
2239 ssize_t len
= iov_iter_count(to
), ret
;
2243 ret
= tun_do_read(tun
, tfile
, to
, file
->f_flags
& O_NONBLOCK
, NULL
);
2244 ret
= min_t(ssize_t
, ret
, len
);
2251 static void tun_prog_free(struct rcu_head
*rcu
)
2253 struct tun_prog
*prog
= container_of(rcu
, struct tun_prog
, rcu
);
2255 bpf_prog_destroy(prog
->prog
);
2259 static int __tun_set_ebpf(struct tun_struct
*tun
,
2260 struct tun_prog __rcu
**prog_p
,
2261 struct bpf_prog
*prog
)
2263 struct tun_prog
*old
, *new = NULL
;
2266 new = kmalloc(sizeof(*new), GFP_KERNEL
);
2272 spin_lock_bh(&tun
->lock
);
2273 old
= rcu_dereference_protected(*prog_p
,
2274 lockdep_is_held(&tun
->lock
));
2275 rcu_assign_pointer(*prog_p
, new);
2276 spin_unlock_bh(&tun
->lock
);
2279 call_rcu(&old
->rcu
, tun_prog_free
);
2284 static void tun_free_netdev(struct net_device
*dev
)
2286 struct tun_struct
*tun
= netdev_priv(dev
);
2288 BUG_ON(!(list_empty(&tun
->disabled
)));
2289 free_percpu(tun
->pcpu_stats
);
2290 tun_flow_uninit(tun
);
2291 security_tun_dev_free_security(tun
->security
);
2292 __tun_set_ebpf(tun
, &tun
->steering_prog
, NULL
);
2293 __tun_set_ebpf(tun
, &tun
->filter_prog
, NULL
);
2296 static void tun_setup(struct net_device
*dev
)
2298 struct tun_struct
*tun
= netdev_priv(dev
);
2300 tun
->owner
= INVALID_UID
;
2301 tun
->group
= INVALID_GID
;
2302 tun_default_link_ksettings(dev
, &tun
->link_ksettings
);
2304 dev
->ethtool_ops
= &tun_ethtool_ops
;
2305 dev
->needs_free_netdev
= true;
2306 dev
->priv_destructor
= tun_free_netdev
;
2307 /* We prefer our own queue length */
2308 dev
->tx_queue_len
= TUN_READQ_SIZE
;
2311 /* Trivial set of netlink ops to allow deleting tun or tap
2312 * device with netlink.
2314 static int tun_validate(struct nlattr
*tb
[], struct nlattr
*data
[],
2315 struct netlink_ext_ack
*extack
)
2317 NL_SET_ERR_MSG(extack
,
2318 "tun/tap creation via rtnetlink is not supported.");
2322 static size_t tun_get_size(const struct net_device
*dev
)
2324 BUILD_BUG_ON(sizeof(u32
) != sizeof(uid_t
));
2325 BUILD_BUG_ON(sizeof(u32
) != sizeof(gid_t
));
2327 return nla_total_size(sizeof(uid_t
)) + /* OWNER */
2328 nla_total_size(sizeof(gid_t
)) + /* GROUP */
2329 nla_total_size(sizeof(u8
)) + /* TYPE */
2330 nla_total_size(sizeof(u8
)) + /* PI */
2331 nla_total_size(sizeof(u8
)) + /* VNET_HDR */
2332 nla_total_size(sizeof(u8
)) + /* PERSIST */
2333 nla_total_size(sizeof(u8
)) + /* MULTI_QUEUE */
2334 nla_total_size(sizeof(u32
)) + /* NUM_QUEUES */
2335 nla_total_size(sizeof(u32
)) + /* NUM_DISABLED_QUEUES */
2339 static int tun_fill_info(struct sk_buff
*skb
, const struct net_device
*dev
)
2341 struct tun_struct
*tun
= netdev_priv(dev
);
2343 if (nla_put_u8(skb
, IFLA_TUN_TYPE
, tun
->flags
& TUN_TYPE_MASK
))
2344 goto nla_put_failure
;
2345 if (uid_valid(tun
->owner
) &&
2346 nla_put_u32(skb
, IFLA_TUN_OWNER
,
2347 from_kuid_munged(current_user_ns(), tun
->owner
)))
2348 goto nla_put_failure
;
2349 if (gid_valid(tun
->group
) &&
2350 nla_put_u32(skb
, IFLA_TUN_GROUP
,
2351 from_kgid_munged(current_user_ns(), tun
->group
)))
2352 goto nla_put_failure
;
2353 if (nla_put_u8(skb
, IFLA_TUN_PI
, !(tun
->flags
& IFF_NO_PI
)))
2354 goto nla_put_failure
;
2355 if (nla_put_u8(skb
, IFLA_TUN_VNET_HDR
, !!(tun
->flags
& IFF_VNET_HDR
)))
2356 goto nla_put_failure
;
2357 if (nla_put_u8(skb
, IFLA_TUN_PERSIST
, !!(tun
->flags
& IFF_PERSIST
)))
2358 goto nla_put_failure
;
2359 if (nla_put_u8(skb
, IFLA_TUN_MULTI_QUEUE
,
2360 !!(tun
->flags
& IFF_MULTI_QUEUE
)))
2361 goto nla_put_failure
;
2362 if (tun
->flags
& IFF_MULTI_QUEUE
) {
2363 if (nla_put_u32(skb
, IFLA_TUN_NUM_QUEUES
, tun
->numqueues
))
2364 goto nla_put_failure
;
2365 if (nla_put_u32(skb
, IFLA_TUN_NUM_DISABLED_QUEUES
,
2367 goto nla_put_failure
;
2376 static struct rtnl_link_ops tun_link_ops __read_mostly
= {
2378 .priv_size
= sizeof(struct tun_struct
),
2380 .validate
= tun_validate
,
2381 .get_size
= tun_get_size
,
2382 .fill_info
= tun_fill_info
,
2385 static void tun_sock_write_space(struct sock
*sk
)
2387 struct tun_file
*tfile
;
2388 wait_queue_head_t
*wqueue
;
2390 if (!sock_writeable(sk
))
2393 if (!test_and_clear_bit(SOCKWQ_ASYNC_NOSPACE
, &sk
->sk_socket
->flags
))
2396 wqueue
= sk_sleep(sk
);
2397 if (wqueue
&& waitqueue_active(wqueue
))
2398 wake_up_interruptible_sync_poll(wqueue
, EPOLLOUT
|
2399 EPOLLWRNORM
| EPOLLWRBAND
);
2401 tfile
= container_of(sk
, struct tun_file
, sk
);
2402 kill_fasync(&tfile
->fasync
, SIGIO
, POLL_OUT
);
2405 static void tun_put_page(struct tun_page
*tpage
)
2408 __page_frag_cache_drain(tpage
->page
, tpage
->count
);
2411 static int tun_xdp_one(struct tun_struct
*tun
,
2412 struct tun_file
*tfile
,
2413 struct xdp_buff
*xdp
, int *flush
,
2414 struct tun_page
*tpage
)
2416 unsigned int datasize
= xdp
->data_end
- xdp
->data
;
2417 struct tun_xdp_hdr
*hdr
= xdp
->data_hard_start
;
2418 struct virtio_net_hdr
*gso
= &hdr
->gso
;
2419 struct tun_pcpu_stats
*stats
;
2420 struct bpf_prog
*xdp_prog
;
2421 struct sk_buff
*skb
= NULL
;
2422 u32 rxhash
= 0, act
;
2423 int buflen
= hdr
->buflen
;
2425 bool skb_xdp
= false;
2428 xdp_prog
= rcu_dereference(tun
->xdp_prog
);
2430 if (gso
->gso_type
) {
2434 xdp_set_data_meta_invalid(xdp
);
2435 xdp
->rxq
= &tfile
->xdp_rxq
;
2437 act
= bpf_prog_run_xdp(xdp_prog
, xdp
);
2438 err
= tun_xdp_act(tun
, xdp_prog
, xdp
, act
);
2440 put_page(virt_to_head_page(xdp
->data
));
2453 page
= virt_to_head_page(xdp
->data
);
2454 if (tpage
->page
== page
) {
2457 tun_put_page(tpage
);
2466 skb
= build_skb(xdp
->data_hard_start
, buflen
);
2472 skb_reserve(skb
, xdp
->data
- xdp
->data_hard_start
);
2473 skb_put(skb
, xdp
->data_end
- xdp
->data
);
2475 if (virtio_net_hdr_to_skb(skb
, gso
, tun_is_little_endian(tun
))) {
2476 this_cpu_inc(tun
->pcpu_stats
->rx_frame_errors
);
2482 skb
->protocol
= eth_type_trans(skb
, tun
->dev
);
2483 skb_reset_network_header(skb
);
2484 skb_probe_transport_header(skb
);
2487 err
= do_xdp_generic(xdp_prog
, skb
);
2488 if (err
!= XDP_PASS
)
2492 if (!rcu_dereference(tun
->steering_prog
) && tun
->numqueues
> 1 &&
2494 rxhash
= __skb_get_hash_symmetric(skb
);
2496 skb_record_rx_queue(skb
, tfile
->queue_index
);
2497 netif_receive_skb(skb
);
2499 /* No need for get_cpu_ptr() here since this function is
2500 * always called with bh disabled
2502 stats
= this_cpu_ptr(tun
->pcpu_stats
);
2503 u64_stats_update_begin(&stats
->syncp
);
2504 stats
->rx_packets
++;
2505 stats
->rx_bytes
+= datasize
;
2506 u64_stats_update_end(&stats
->syncp
);
2509 tun_flow_update(tun
, rxhash
, tfile
);
2515 static int tun_sendmsg(struct socket
*sock
, struct msghdr
*m
, size_t total_len
)
2518 struct tun_file
*tfile
= container_of(sock
, struct tun_file
, socket
);
2519 struct tun_struct
*tun
= tun_get(tfile
);
2520 struct tun_msg_ctl
*ctl
= m
->msg_control
;
2521 struct xdp_buff
*xdp
;
2526 if (ctl
&& (ctl
->type
== TUN_MSG_PTR
)) {
2527 struct tun_page tpage
;
2531 memset(&tpage
, 0, sizeof(tpage
));
2536 for (i
= 0; i
< n
; i
++) {
2537 xdp
= &((struct xdp_buff
*)ctl
->ptr
)[i
];
2538 tun_xdp_one(tun
, tfile
, xdp
, &flush
, &tpage
);
2547 tun_put_page(&tpage
);
2553 ret
= tun_get_user(tun
, tfile
, ctl
? ctl
->ptr
: NULL
, &m
->msg_iter
,
2554 m
->msg_flags
& MSG_DONTWAIT
,
2555 m
->msg_flags
& MSG_MORE
);
2561 static int tun_recvmsg(struct socket
*sock
, struct msghdr
*m
, size_t total_len
,
2564 struct tun_file
*tfile
= container_of(sock
, struct tun_file
, socket
);
2565 struct tun_struct
*tun
= tun_get(tfile
);
2566 void *ptr
= m
->msg_control
;
2574 if (flags
& ~(MSG_DONTWAIT
|MSG_TRUNC
|MSG_ERRQUEUE
)) {
2578 if (flags
& MSG_ERRQUEUE
) {
2579 ret
= sock_recv_errqueue(sock
->sk
, m
, total_len
,
2580 SOL_PACKET
, TUN_TX_TIMESTAMP
);
2583 ret
= tun_do_read(tun
, tfile
, &m
->msg_iter
, flags
& MSG_DONTWAIT
, ptr
);
2584 if (ret
> (ssize_t
)total_len
) {
2585 m
->msg_flags
|= MSG_TRUNC
;
2586 ret
= flags
& MSG_TRUNC
? ret
: total_len
;
2599 static int tun_ptr_peek_len(void *ptr
)
2602 if (tun_is_xdp_frame(ptr
)) {
2603 struct xdp_frame
*xdpf
= tun_ptr_to_xdp(ptr
);
2607 return __skb_array_len_with_tag(ptr
);
2613 static int tun_peek_len(struct socket
*sock
)
2615 struct tun_file
*tfile
= container_of(sock
, struct tun_file
, socket
);
2616 struct tun_struct
*tun
;
2619 tun
= tun_get(tfile
);
2623 ret
= PTR_RING_PEEK_CALL(&tfile
->tx_ring
, tun_ptr_peek_len
);
2629 /* Ops structure to mimic raw sockets with tun */
2630 static const struct proto_ops tun_socket_ops
= {
2631 .peek_len
= tun_peek_len
,
2632 .sendmsg
= tun_sendmsg
,
2633 .recvmsg
= tun_recvmsg
,
2636 static struct proto tun_proto
= {
2638 .owner
= THIS_MODULE
,
2639 .obj_size
= sizeof(struct tun_file
),
2642 static int tun_flags(struct tun_struct
*tun
)
2644 return tun
->flags
& (TUN_FEATURES
| IFF_PERSIST
| IFF_TUN
| IFF_TAP
);
2647 static ssize_t
tun_show_flags(struct device
*dev
, struct device_attribute
*attr
,
2650 struct tun_struct
*tun
= netdev_priv(to_net_dev(dev
));
2651 return sprintf(buf
, "0x%x\n", tun_flags(tun
));
2654 static ssize_t
tun_show_owner(struct device
*dev
, struct device_attribute
*attr
,
2657 struct tun_struct
*tun
= netdev_priv(to_net_dev(dev
));
2658 return uid_valid(tun
->owner
)?
2659 sprintf(buf
, "%u\n",
2660 from_kuid_munged(current_user_ns(), tun
->owner
)):
2661 sprintf(buf
, "-1\n");
2664 static ssize_t
tun_show_group(struct device
*dev
, struct device_attribute
*attr
,
2667 struct tun_struct
*tun
= netdev_priv(to_net_dev(dev
));
2668 return gid_valid(tun
->group
) ?
2669 sprintf(buf
, "%u\n",
2670 from_kgid_munged(current_user_ns(), tun
->group
)):
2671 sprintf(buf
, "-1\n");
2674 static DEVICE_ATTR(tun_flags
, 0444, tun_show_flags
, NULL
);
2675 static DEVICE_ATTR(owner
, 0444, tun_show_owner
, NULL
);
2676 static DEVICE_ATTR(group
, 0444, tun_show_group
, NULL
);
2678 static struct attribute
*tun_dev_attrs
[] = {
2679 &dev_attr_tun_flags
.attr
,
2680 &dev_attr_owner
.attr
,
2681 &dev_attr_group
.attr
,
2685 static const struct attribute_group tun_attr_group
= {
2686 .attrs
= tun_dev_attrs
2689 static int tun_set_iff(struct net
*net
, struct file
*file
, struct ifreq
*ifr
)
2691 struct tun_struct
*tun
;
2692 struct tun_file
*tfile
= file
->private_data
;
2693 struct net_device
*dev
;
2696 if (tfile
->detached
)
2699 if ((ifr
->ifr_flags
& IFF_NAPI_FRAGS
)) {
2700 if (!capable(CAP_NET_ADMIN
))
2703 if (!(ifr
->ifr_flags
& IFF_NAPI
) ||
2704 (ifr
->ifr_flags
& TUN_TYPE_MASK
) != IFF_TAP
)
2708 dev
= __dev_get_by_name(net
, ifr
->ifr_name
);
2710 if (ifr
->ifr_flags
& IFF_TUN_EXCL
)
2712 if ((ifr
->ifr_flags
& IFF_TUN
) && dev
->netdev_ops
== &tun_netdev_ops
)
2713 tun
= netdev_priv(dev
);
2714 else if ((ifr
->ifr_flags
& IFF_TAP
) && dev
->netdev_ops
== &tap_netdev_ops
)
2715 tun
= netdev_priv(dev
);
2719 if (!!(ifr
->ifr_flags
& IFF_MULTI_QUEUE
) !=
2720 !!(tun
->flags
& IFF_MULTI_QUEUE
))
2723 if (tun_not_capable(tun
))
2725 err
= security_tun_dev_open(tun
->security
);
2729 err
= tun_attach(tun
, file
, ifr
->ifr_flags
& IFF_NOFILTER
,
2730 ifr
->ifr_flags
& IFF_NAPI
,
2731 ifr
->ifr_flags
& IFF_NAPI_FRAGS
);
2735 if (tun
->flags
& IFF_MULTI_QUEUE
&&
2736 (tun
->numqueues
+ tun
->numdisabled
> 1)) {
2737 /* One or more queue has already been attached, no need
2738 * to initialize the device again.
2740 netdev_state_change(dev
);
2744 tun
->flags
= (tun
->flags
& ~TUN_FEATURES
) |
2745 (ifr
->ifr_flags
& TUN_FEATURES
);
2747 netdev_state_change(dev
);
2750 unsigned long flags
= 0;
2751 int queues
= ifr
->ifr_flags
& IFF_MULTI_QUEUE
?
2754 if (!ns_capable(net
->user_ns
, CAP_NET_ADMIN
))
2756 err
= security_tun_dev_create();
2761 if (ifr
->ifr_flags
& IFF_TUN
) {
2765 } else if (ifr
->ifr_flags
& IFF_TAP
) {
2773 name
= ifr
->ifr_name
;
2775 dev
= alloc_netdev_mqs(sizeof(struct tun_struct
), name
,
2776 NET_NAME_UNKNOWN
, tun_setup
, queues
,
2781 err
= dev_get_valid_name(net
, dev
, name
);
2785 dev_net_set(dev
, net
);
2786 dev
->rtnl_link_ops
= &tun_link_ops
;
2787 dev
->ifindex
= tfile
->ifindex
;
2788 dev
->sysfs_groups
[0] = &tun_attr_group
;
2790 tun
= netdev_priv(dev
);
2793 tun
->txflt
.count
= 0;
2794 tun
->vnet_hdr_sz
= sizeof(struct virtio_net_hdr
);
2796 tun
->align
= NET_SKB_PAD
;
2797 tun
->filter_attached
= false;
2798 tun
->sndbuf
= tfile
->socket
.sk
->sk_sndbuf
;
2799 tun
->rx_batched
= 0;
2800 RCU_INIT_POINTER(tun
->steering_prog
, NULL
);
2802 tun
->pcpu_stats
= netdev_alloc_pcpu_stats(struct tun_pcpu_stats
);
2803 if (!tun
->pcpu_stats
) {
2808 spin_lock_init(&tun
->lock
);
2810 err
= security_tun_dev_alloc_security(&tun
->security
);
2817 dev
->hw_features
= NETIF_F_SG
| NETIF_F_FRAGLIST
|
2818 TUN_USER_FEATURES
| NETIF_F_HW_VLAN_CTAG_TX
|
2819 NETIF_F_HW_VLAN_STAG_TX
;
2820 dev
->features
= dev
->hw_features
| NETIF_F_LLTX
;
2821 dev
->vlan_features
= dev
->features
&
2822 ~(NETIF_F_HW_VLAN_CTAG_TX
|
2823 NETIF_F_HW_VLAN_STAG_TX
);
2825 tun
->flags
= (tun
->flags
& ~TUN_FEATURES
) |
2826 (ifr
->ifr_flags
& TUN_FEATURES
);
2828 INIT_LIST_HEAD(&tun
->disabled
);
2829 err
= tun_attach(tun
, file
, false, ifr
->ifr_flags
& IFF_NAPI
,
2830 ifr
->ifr_flags
& IFF_NAPI_FRAGS
);
2834 err
= register_netdevice(tun
->dev
);
2839 netif_carrier_on(tun
->dev
);
2841 tun_debug(KERN_INFO
, tun
, "tun_set_iff\n");
2843 /* Make sure persistent devices do not get stuck in
2846 if (netif_running(tun
->dev
))
2847 netif_tx_wake_all_queues(tun
->dev
);
2849 strcpy(ifr
->ifr_name
, tun
->dev
->name
);
2853 tun_detach_all(dev
);
2854 /* register_netdevice() already called tun_free_netdev() */
2858 tun_flow_uninit(tun
);
2859 security_tun_dev_free_security(tun
->security
);
2861 free_percpu(tun
->pcpu_stats
);
2867 static void tun_get_iff(struct tun_struct
*tun
, struct ifreq
*ifr
)
2869 tun_debug(KERN_INFO
, tun
, "tun_get_iff\n");
2871 strcpy(ifr
->ifr_name
, tun
->dev
->name
);
2873 ifr
->ifr_flags
= tun_flags(tun
);
2877 /* This is like a cut-down ethtool ops, except done via tun fd so no
2878 * privs required. */
2879 static int set_offload(struct tun_struct
*tun
, unsigned long arg
)
2881 netdev_features_t features
= 0;
2883 if (arg
& TUN_F_CSUM
) {
2884 features
|= NETIF_F_HW_CSUM
;
2887 if (arg
& (TUN_F_TSO4
|TUN_F_TSO6
)) {
2888 if (arg
& TUN_F_TSO_ECN
) {
2889 features
|= NETIF_F_TSO_ECN
;
2890 arg
&= ~TUN_F_TSO_ECN
;
2892 if (arg
& TUN_F_TSO4
)
2893 features
|= NETIF_F_TSO
;
2894 if (arg
& TUN_F_TSO6
)
2895 features
|= NETIF_F_TSO6
;
2896 arg
&= ~(TUN_F_TSO4
|TUN_F_TSO6
);
2902 /* This gives the user a way to test for new features in future by
2903 * trying to set them. */
2907 tun
->set_features
= features
;
2908 tun
->dev
->wanted_features
&= ~TUN_USER_FEATURES
;
2909 tun
->dev
->wanted_features
|= features
;
2910 netdev_update_features(tun
->dev
);
2915 static void tun_detach_filter(struct tun_struct
*tun
, int n
)
2918 struct tun_file
*tfile
;
2920 for (i
= 0; i
< n
; i
++) {
2921 tfile
= rtnl_dereference(tun
->tfiles
[i
]);
2922 lock_sock(tfile
->socket
.sk
);
2923 sk_detach_filter(tfile
->socket
.sk
);
2924 release_sock(tfile
->socket
.sk
);
2927 tun
->filter_attached
= false;
2930 static int tun_attach_filter(struct tun_struct
*tun
)
2933 struct tun_file
*tfile
;
2935 for (i
= 0; i
< tun
->numqueues
; i
++) {
2936 tfile
= rtnl_dereference(tun
->tfiles
[i
]);
2937 lock_sock(tfile
->socket
.sk
);
2938 ret
= sk_attach_filter(&tun
->fprog
, tfile
->socket
.sk
);
2939 release_sock(tfile
->socket
.sk
);
2941 tun_detach_filter(tun
, i
);
2946 tun
->filter_attached
= true;
2950 static void tun_set_sndbuf(struct tun_struct
*tun
)
2952 struct tun_file
*tfile
;
2955 for (i
= 0; i
< tun
->numqueues
; i
++) {
2956 tfile
= rtnl_dereference(tun
->tfiles
[i
]);
2957 tfile
->socket
.sk
->sk_sndbuf
= tun
->sndbuf
;
2961 static int tun_set_queue(struct file
*file
, struct ifreq
*ifr
)
2963 struct tun_file
*tfile
= file
->private_data
;
2964 struct tun_struct
*tun
;
2969 if (ifr
->ifr_flags
& IFF_ATTACH_QUEUE
) {
2970 tun
= tfile
->detached
;
2975 ret
= security_tun_dev_attach_queue(tun
->security
);
2978 ret
= tun_attach(tun
, file
, false, tun
->flags
& IFF_NAPI
,
2979 tun
->flags
& IFF_NAPI_FRAGS
);
2980 } else if (ifr
->ifr_flags
& IFF_DETACH_QUEUE
) {
2981 tun
= rtnl_dereference(tfile
->tun
);
2982 if (!tun
|| !(tun
->flags
& IFF_MULTI_QUEUE
) || tfile
->detached
)
2985 __tun_detach(tfile
, false);
2990 netdev_state_change(tun
->dev
);
2997 static int tun_set_ebpf(struct tun_struct
*tun
, struct tun_prog
**prog_p
,
3000 struct bpf_prog
*prog
;
3003 if (copy_from_user(&fd
, data
, sizeof(fd
)))
3009 prog
= bpf_prog_get_type(fd
, BPF_PROG_TYPE_SOCKET_FILTER
);
3011 return PTR_ERR(prog
);
3014 return __tun_set_ebpf(tun
, prog_p
, prog
);
3017 static long __tun_chr_ioctl(struct file
*file
, unsigned int cmd
,
3018 unsigned long arg
, int ifreq_len
)
3020 struct tun_file
*tfile
= file
->private_data
;
3021 struct net
*net
= sock_net(&tfile
->sk
);
3022 struct tun_struct
*tun
;
3023 void __user
* argp
= (void __user
*)arg
;
3024 unsigned int ifindex
, carrier
;
3032 bool do_notify
= false;
3034 if (cmd
== TUNSETIFF
|| cmd
== TUNSETQUEUE
||
3035 (_IOC_TYPE(cmd
) == SOCK_IOC_TYPE
&& cmd
!= SIOCGSKNS
)) {
3036 if (copy_from_user(&ifr
, argp
, ifreq_len
))
3039 memset(&ifr
, 0, sizeof(ifr
));
3041 if (cmd
== TUNGETFEATURES
) {
3042 /* Currently this just means: "what IFF flags are valid?".
3043 * This is needed because we never checked for invalid flags on
3046 return put_user(IFF_TUN
| IFF_TAP
| TUN_FEATURES
,
3047 (unsigned int __user
*)argp
);
3048 } else if (cmd
== TUNSETQUEUE
) {
3049 return tun_set_queue(file
, &ifr
);
3050 } else if (cmd
== SIOCGSKNS
) {
3051 if (!ns_capable(net
->user_ns
, CAP_NET_ADMIN
))
3053 return open_related_ns(&net
->ns
, get_net_ns
);
3059 tun
= tun_get(tfile
);
3060 if (cmd
== TUNSETIFF
) {
3065 ifr
.ifr_name
[IFNAMSIZ
-1] = '\0';
3067 ret
= tun_set_iff(net
, file
, &ifr
);
3072 if (copy_to_user(argp
, &ifr
, ifreq_len
))
3076 if (cmd
== TUNSETIFINDEX
) {
3082 if (copy_from_user(&ifindex
, argp
, sizeof(ifindex
)))
3086 tfile
->ifindex
= ifindex
;
3094 tun_debug(KERN_INFO
, tun
, "tun_chr_ioctl cmd %u\n", cmd
);
3096 net
= dev_net(tun
->dev
);
3100 tun_get_iff(tun
, &ifr
);
3102 if (tfile
->detached
)
3103 ifr
.ifr_flags
|= IFF_DETACH_QUEUE
;
3104 if (!tfile
->socket
.sk
->sk_filter
)
3105 ifr
.ifr_flags
|= IFF_NOFILTER
;
3107 if (copy_to_user(argp
, &ifr
, ifreq_len
))
3112 /* Disable/Enable checksum */
3114 /* [unimplemented] */
3115 tun_debug(KERN_INFO
, tun
, "ignored: set checksum %s\n",
3116 arg
? "disabled" : "enabled");
3120 /* Disable/Enable persist mode. Keep an extra reference to the
3121 * module to prevent the module being unprobed.
3123 if (arg
&& !(tun
->flags
& IFF_PERSIST
)) {
3124 tun
->flags
|= IFF_PERSIST
;
3125 __module_get(THIS_MODULE
);
3128 if (!arg
&& (tun
->flags
& IFF_PERSIST
)) {
3129 tun
->flags
&= ~IFF_PERSIST
;
3130 module_put(THIS_MODULE
);
3134 tun_debug(KERN_INFO
, tun
, "persist %s\n",
3135 arg
? "enabled" : "disabled");
3139 /* Set owner of the device */
3140 owner
= make_kuid(current_user_ns(), arg
);
3141 if (!uid_valid(owner
)) {
3147 tun_debug(KERN_INFO
, tun
, "owner set to %u\n",
3148 from_kuid(&init_user_ns
, tun
->owner
));
3152 /* Set group of the device */
3153 group
= make_kgid(current_user_ns(), arg
);
3154 if (!gid_valid(group
)) {
3160 tun_debug(KERN_INFO
, tun
, "group set to %u\n",
3161 from_kgid(&init_user_ns
, tun
->group
));
3165 /* Only allow setting the type when the interface is down */
3166 if (tun
->dev
->flags
& IFF_UP
) {
3167 tun_debug(KERN_INFO
, tun
,
3168 "Linktype set failed because interface is up\n");
3171 tun
->dev
->type
= (int) arg
;
3172 tun_debug(KERN_INFO
, tun
, "linktype set to %d\n",
3184 ret
= set_offload(tun
, arg
);
3187 case TUNSETTXFILTER
:
3188 /* Can be set only for TAPs */
3190 if ((tun
->flags
& TUN_TYPE_MASK
) != IFF_TAP
)
3192 ret
= update_filter(&tun
->txflt
, (void __user
*)arg
);
3196 /* Get hw address */
3197 memcpy(ifr
.ifr_hwaddr
.sa_data
, tun
->dev
->dev_addr
, ETH_ALEN
);
3198 ifr
.ifr_hwaddr
.sa_family
= tun
->dev
->type
;
3199 if (copy_to_user(argp
, &ifr
, ifreq_len
))
3204 /* Set hw address */
3205 tun_debug(KERN_DEBUG
, tun
, "set hw address: %pM\n",
3206 ifr
.ifr_hwaddr
.sa_data
);
3208 ret
= dev_set_mac_address(tun
->dev
, &ifr
.ifr_hwaddr
, NULL
);
3212 sndbuf
= tfile
->socket
.sk
->sk_sndbuf
;
3213 if (copy_to_user(argp
, &sndbuf
, sizeof(sndbuf
)))
3218 if (copy_from_user(&sndbuf
, argp
, sizeof(sndbuf
))) {
3227 tun
->sndbuf
= sndbuf
;
3228 tun_set_sndbuf(tun
);
3231 case TUNGETVNETHDRSZ
:
3232 vnet_hdr_sz
= tun
->vnet_hdr_sz
;
3233 if (copy_to_user(argp
, &vnet_hdr_sz
, sizeof(vnet_hdr_sz
)))
3237 case TUNSETVNETHDRSZ
:
3238 if (copy_from_user(&vnet_hdr_sz
, argp
, sizeof(vnet_hdr_sz
))) {
3242 if (vnet_hdr_sz
< (int)sizeof(struct virtio_net_hdr
)) {
3247 tun
->vnet_hdr_sz
= vnet_hdr_sz
;
3251 le
= !!(tun
->flags
& TUN_VNET_LE
);
3252 if (put_user(le
, (int __user
*)argp
))
3257 if (get_user(le
, (int __user
*)argp
)) {
3262 tun
->flags
|= TUN_VNET_LE
;
3264 tun
->flags
&= ~TUN_VNET_LE
;
3268 ret
= tun_get_vnet_be(tun
, argp
);
3272 ret
= tun_set_vnet_be(tun
, argp
);
3275 case TUNATTACHFILTER
:
3276 /* Can be set only for TAPs */
3278 if ((tun
->flags
& TUN_TYPE_MASK
) != IFF_TAP
)
3281 if (copy_from_user(&tun
->fprog
, argp
, sizeof(tun
->fprog
)))
3284 ret
= tun_attach_filter(tun
);
3287 case TUNDETACHFILTER
:
3288 /* Can be set only for TAPs */
3290 if ((tun
->flags
& TUN_TYPE_MASK
) != IFF_TAP
)
3293 tun_detach_filter(tun
, tun
->numqueues
);
3298 if ((tun
->flags
& TUN_TYPE_MASK
) != IFF_TAP
)
3301 if (copy_to_user(argp
, &tun
->fprog
, sizeof(tun
->fprog
)))
3306 case TUNSETSTEERINGEBPF
:
3307 ret
= tun_set_ebpf(tun
, &tun
->steering_prog
, argp
);
3310 case TUNSETFILTEREBPF
:
3311 ret
= tun_set_ebpf(tun
, &tun
->filter_prog
, argp
);
3316 if (copy_from_user(&carrier
, argp
, sizeof(carrier
)))
3319 ret
= tun_net_change_carrier(tun
->dev
, (bool)carrier
);
3322 case TUNGETDEVNETNS
:
3324 if (!ns_capable(net
->user_ns
, CAP_NET_ADMIN
))
3326 ret
= open_related_ns(&net
->ns
, get_net_ns
);
3335 netdev_state_change(tun
->dev
);
3344 static long tun_chr_ioctl(struct file
*file
,
3345 unsigned int cmd
, unsigned long arg
)
3347 return __tun_chr_ioctl(file
, cmd
, arg
, sizeof (struct ifreq
));
3350 #ifdef CONFIG_COMPAT
3351 static long tun_chr_compat_ioctl(struct file
*file
,
3352 unsigned int cmd
, unsigned long arg
)
3357 case TUNSETTXFILTER
:
3362 arg
= (unsigned long)compat_ptr(arg
);
3365 arg
= (compat_ulong_t
)arg
;
3370 * compat_ifreq is shorter than ifreq, so we must not access beyond
3371 * the end of that structure. All fields that are used in this
3372 * driver are compatible though, we don't need to convert the
3375 return __tun_chr_ioctl(file
, cmd
, arg
, sizeof(struct compat_ifreq
));
3377 #endif /* CONFIG_COMPAT */
3379 static int tun_chr_fasync(int fd
, struct file
*file
, int on
)
3381 struct tun_file
*tfile
= file
->private_data
;
3384 if ((ret
= fasync_helper(fd
, file
, on
, &tfile
->fasync
)) < 0)
3388 __f_setown(file
, task_pid(current
), PIDTYPE_TGID
, 0);
3389 tfile
->flags
|= TUN_FASYNC
;
3391 tfile
->flags
&= ~TUN_FASYNC
;
3397 static int tun_chr_open(struct inode
*inode
, struct file
* file
)
3399 struct net
*net
= current
->nsproxy
->net_ns
;
3400 struct tun_file
*tfile
;
3402 DBG1(KERN_INFO
, "tunX: tun_chr_open\n");
3404 tfile
= (struct tun_file
*)sk_alloc(net
, AF_UNSPEC
, GFP_KERNEL
,
3408 if (ptr_ring_init(&tfile
->tx_ring
, 0, GFP_KERNEL
)) {
3409 sk_free(&tfile
->sk
);
3413 mutex_init(&tfile
->napi_mutex
);
3414 RCU_INIT_POINTER(tfile
->tun
, NULL
);
3418 init_waitqueue_head(&tfile
->wq
.wait
);
3419 RCU_INIT_POINTER(tfile
->socket
.wq
, &tfile
->wq
);
3421 tfile
->socket
.file
= file
;
3422 tfile
->socket
.ops
= &tun_socket_ops
;
3424 sock_init_data(&tfile
->socket
, &tfile
->sk
);
3426 tfile
->sk
.sk_write_space
= tun_sock_write_space
;
3427 tfile
->sk
.sk_sndbuf
= INT_MAX
;
3429 file
->private_data
= tfile
;
3430 INIT_LIST_HEAD(&tfile
->next
);
3432 sock_set_flag(&tfile
->sk
, SOCK_ZEROCOPY
);
3437 static int tun_chr_close(struct inode
*inode
, struct file
*file
)
3439 struct tun_file
*tfile
= file
->private_data
;
3441 tun_detach(tfile
, true);
3446 #ifdef CONFIG_PROC_FS
3447 static void tun_chr_show_fdinfo(struct seq_file
*m
, struct file
*file
)
3449 struct tun_file
*tfile
= file
->private_data
;
3450 struct tun_struct
*tun
;
3453 memset(&ifr
, 0, sizeof(ifr
));
3456 tun
= tun_get(tfile
);
3458 tun_get_iff(tun
, &ifr
);
3464 seq_printf(m
, "iff:\t%s\n", ifr
.ifr_name
);
3468 static const struct file_operations tun_fops
= {
3469 .owner
= THIS_MODULE
,
3470 .llseek
= no_llseek
,
3471 .read_iter
= tun_chr_read_iter
,
3472 .write_iter
= tun_chr_write_iter
,
3473 .poll
= tun_chr_poll
,
3474 .unlocked_ioctl
= tun_chr_ioctl
,
3475 #ifdef CONFIG_COMPAT
3476 .compat_ioctl
= tun_chr_compat_ioctl
,
3478 .open
= tun_chr_open
,
3479 .release
= tun_chr_close
,
3480 .fasync
= tun_chr_fasync
,
3481 #ifdef CONFIG_PROC_FS
3482 .show_fdinfo
= tun_chr_show_fdinfo
,
3486 static struct miscdevice tun_miscdev
= {
3489 .nodename
= "net/tun",
3493 /* ethtool interface */
3495 static void tun_default_link_ksettings(struct net_device
*dev
,
3496 struct ethtool_link_ksettings
*cmd
)
3498 ethtool_link_ksettings_zero_link_mode(cmd
, supported
);
3499 ethtool_link_ksettings_zero_link_mode(cmd
, advertising
);
3500 cmd
->base
.speed
= SPEED_10
;
3501 cmd
->base
.duplex
= DUPLEX_FULL
;
3502 cmd
->base
.port
= PORT_TP
;
3503 cmd
->base
.phy_address
= 0;
3504 cmd
->base
.autoneg
= AUTONEG_DISABLE
;
3507 static int tun_get_link_ksettings(struct net_device
*dev
,
3508 struct ethtool_link_ksettings
*cmd
)
3510 struct tun_struct
*tun
= netdev_priv(dev
);
3512 memcpy(cmd
, &tun
->link_ksettings
, sizeof(*cmd
));
3516 static int tun_set_link_ksettings(struct net_device
*dev
,
3517 const struct ethtool_link_ksettings
*cmd
)
3519 struct tun_struct
*tun
= netdev_priv(dev
);
3521 memcpy(&tun
->link_ksettings
, cmd
, sizeof(*cmd
));
3525 static void tun_get_drvinfo(struct net_device
*dev
, struct ethtool_drvinfo
*info
)
3527 struct tun_struct
*tun
= netdev_priv(dev
);
3529 strlcpy(info
->driver
, DRV_NAME
, sizeof(info
->driver
));
3530 strlcpy(info
->version
, DRV_VERSION
, sizeof(info
->version
));
3532 switch (tun
->flags
& TUN_TYPE_MASK
) {
3534 strlcpy(info
->bus_info
, "tun", sizeof(info
->bus_info
));
3537 strlcpy(info
->bus_info
, "tap", sizeof(info
->bus_info
));
3542 static u32
tun_get_msglevel(struct net_device
*dev
)
3545 struct tun_struct
*tun
= netdev_priv(dev
);
3552 static void tun_set_msglevel(struct net_device
*dev
, u32 value
)
3555 struct tun_struct
*tun
= netdev_priv(dev
);
3560 static int tun_get_coalesce(struct net_device
*dev
,
3561 struct ethtool_coalesce
*ec
)
3563 struct tun_struct
*tun
= netdev_priv(dev
);
3565 ec
->rx_max_coalesced_frames
= tun
->rx_batched
;
3570 static int tun_set_coalesce(struct net_device
*dev
,
3571 struct ethtool_coalesce
*ec
)
3573 struct tun_struct
*tun
= netdev_priv(dev
);
3575 if (ec
->rx_max_coalesced_frames
> NAPI_POLL_WEIGHT
)
3576 tun
->rx_batched
= NAPI_POLL_WEIGHT
;
3578 tun
->rx_batched
= ec
->rx_max_coalesced_frames
;
3583 static const struct ethtool_ops tun_ethtool_ops
= {
3584 .get_drvinfo
= tun_get_drvinfo
,
3585 .get_msglevel
= tun_get_msglevel
,
3586 .set_msglevel
= tun_set_msglevel
,
3587 .get_link
= ethtool_op_get_link
,
3588 .get_ts_info
= ethtool_op_get_ts_info
,
3589 .get_coalesce
= tun_get_coalesce
,
3590 .set_coalesce
= tun_set_coalesce
,
3591 .get_link_ksettings
= tun_get_link_ksettings
,
3592 .set_link_ksettings
= tun_set_link_ksettings
,
3595 static int tun_queue_resize(struct tun_struct
*tun
)
3597 struct net_device
*dev
= tun
->dev
;
3598 struct tun_file
*tfile
;
3599 struct ptr_ring
**rings
;
3600 int n
= tun
->numqueues
+ tun
->numdisabled
;
3603 rings
= kmalloc_array(n
, sizeof(*rings
), GFP_KERNEL
);
3607 for (i
= 0; i
< tun
->numqueues
; i
++) {
3608 tfile
= rtnl_dereference(tun
->tfiles
[i
]);
3609 rings
[i
] = &tfile
->tx_ring
;
3611 list_for_each_entry(tfile
, &tun
->disabled
, next
)
3612 rings
[i
++] = &tfile
->tx_ring
;
3614 ret
= ptr_ring_resize_multiple(rings
, n
,
3615 dev
->tx_queue_len
, GFP_KERNEL
,
3622 static int tun_device_event(struct notifier_block
*unused
,
3623 unsigned long event
, void *ptr
)
3625 struct net_device
*dev
= netdev_notifier_info_to_dev(ptr
);
3626 struct tun_struct
*tun
= netdev_priv(dev
);
3629 if (dev
->rtnl_link_ops
!= &tun_link_ops
)
3633 case NETDEV_CHANGE_TX_QUEUE_LEN
:
3634 if (tun_queue_resize(tun
))
3638 for (i
= 0; i
< tun
->numqueues
; i
++) {
3639 struct tun_file
*tfile
;
3641 tfile
= rtnl_dereference(tun
->tfiles
[i
]);
3642 tfile
->socket
.sk
->sk_write_space(tfile
->socket
.sk
);
3652 static struct notifier_block tun_notifier_block __read_mostly
= {
3653 .notifier_call
= tun_device_event
,
3656 static int __init
tun_init(void)
3660 pr_info("%s, %s\n", DRV_DESCRIPTION
, DRV_VERSION
);
3662 ret
= rtnl_link_register(&tun_link_ops
);
3664 pr_err("Can't register link_ops\n");
3668 ret
= misc_register(&tun_miscdev
);
3670 pr_err("Can't register misc device %d\n", TUN_MINOR
);
3674 ret
= register_netdevice_notifier(&tun_notifier_block
);
3676 pr_err("Can't register netdevice notifier\n");
3683 misc_deregister(&tun_miscdev
);
3685 rtnl_link_unregister(&tun_link_ops
);
3690 static void tun_cleanup(void)
3692 misc_deregister(&tun_miscdev
);
3693 rtnl_link_unregister(&tun_link_ops
);
3694 unregister_netdevice_notifier(&tun_notifier_block
);
3697 /* Get an underlying socket object from tun file. Returns error unless file is
3698 * attached to a device. The returned object works like a packet socket, it
3699 * can be used for sock_sendmsg/sock_recvmsg. The caller is responsible for
3700 * holding a reference to the file for as long as the socket is in use. */
3701 struct socket
*tun_get_socket(struct file
*file
)
3703 struct tun_file
*tfile
;
3704 if (file
->f_op
!= &tun_fops
)
3705 return ERR_PTR(-EINVAL
);
3706 tfile
= file
->private_data
;
3708 return ERR_PTR(-EBADFD
);
3709 return &tfile
->socket
;
3711 EXPORT_SYMBOL_GPL(tun_get_socket
);
3713 struct ptr_ring
*tun_get_tx_ring(struct file
*file
)
3715 struct tun_file
*tfile
;
3717 if (file
->f_op
!= &tun_fops
)
3718 return ERR_PTR(-EINVAL
);
3719 tfile
= file
->private_data
;
3721 return ERR_PTR(-EBADFD
);
3722 return &tfile
->tx_ring
;
3724 EXPORT_SYMBOL_GPL(tun_get_tx_ring
);
3726 module_init(tun_init
);
3727 module_exit(tun_cleanup
);
3728 MODULE_DESCRIPTION(DRV_DESCRIPTION
);
3729 MODULE_AUTHOR(DRV_COPYRIGHT
);
3730 MODULE_LICENSE("GPL");
3731 MODULE_ALIAS_MISCDEV(TUN_MINOR
);
3732 MODULE_ALIAS("devname:net/tun");