xref: /openbmc/linux/drivers/net/tun.c (revision 3a448205)
1 /*
2  *  TUN - Universal TUN/TAP device driver.
3  *  Copyright (C) 1999-2002 Maxim Krasnyansky <maxk@qualcomm.com>
4  *
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.
9  *
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.
14  *
15  *  $Id: tun.c,v 1.15 2002/03/01 02:44:24 maxk Exp $
16  */
17 
18 /*
19  *  Changes:
20  *
21  *  Mike Kershaw <dragorn@kismetwireless.net> 2005/08/14
22  *    Add TUNSETLINK ioctl to set the link encapsulation
23  *
24  *  Mark Smith <markzzzsmith@yahoo.com.au>
25  *    Use eth_random_addr() for tap MAC address.
26  *
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.
30  *    Added ethtool API.
31  *    Minor cleanups
32  *
33  *  Daniel Podlejski <underley@underley.eu.org>
34  *    Modifications for 2.3.99-pre5 kernel.
35  */
36 
37 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
38 
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>"
43 
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>
60 #include <linux/if.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>
72 #include <net/sock.h>
73 #include <net/xdp.h>
74 #include <linux/seq_file.h>
75 #include <linux/uio.h>
76 #include <linux/skb_array.h>
77 #include <linux/bpf.h>
78 #include <linux/bpf_trace.h>
79 #include <linux/mutex.h>
80 
81 #include <linux/uaccess.h>
82 #include <linux/proc_fs.h>
83 
84 static void tun_default_link_ksettings(struct net_device *dev,
85 				       struct ethtool_link_ksettings *cmd);
86 
87 /* Uncomment to enable debugging */
88 /* #define TUN_DEBUG 1 */
89 
90 #ifdef TUN_DEBUG
91 static int debug;
92 
93 #define tun_debug(level, tun, fmt, args...)			\
94 do {								\
95 	if (tun->debug)						\
96 		netdev_printk(level, tun->dev, fmt, ##args);	\
97 } while (0)
98 #define DBG1(level, fmt, args...)				\
99 do {								\
100 	if (debug == 2)						\
101 		printk(level fmt, ##args);			\
102 } while (0)
103 #else
104 #define tun_debug(level, tun, fmt, args...)			\
105 do {								\
106 	if (0)							\
107 		netdev_printk(level, tun->dev, fmt, ##args);	\
108 } while (0)
109 #define DBG1(level, fmt, args...)				\
110 do {								\
111 	if (0)							\
112 		printk(level fmt, ##args);			\
113 } while (0)
114 #endif
115 
116 #define TUN_RX_PAD (NET_IP_ALIGN + NET_SKB_PAD)
117 
118 /* TUN device flags */
119 
120 /* IFF_ATTACH_QUEUE is never stored in device flags,
121  * overload it to mean fasync when stored there.
122  */
123 #define TUN_FASYNC	IFF_ATTACH_QUEUE
124 /* High bits in flags field are unused. */
125 #define TUN_VNET_LE     0x80000000
126 #define TUN_VNET_BE     0x40000000
127 
128 #define TUN_FEATURES (IFF_NO_PI | IFF_ONE_QUEUE | IFF_VNET_HDR | \
129 		      IFF_MULTI_QUEUE | IFF_NAPI | IFF_NAPI_FRAGS)
130 
131 #define GOODCOPY_LEN 128
132 
133 #define FLT_EXACT_COUNT 8
134 struct tap_filter {
135 	unsigned int    count;    /* Number of addrs. Zero means disabled */
136 	u32             mask[2];  /* Mask of the hashed addrs */
137 	unsigned char	addr[FLT_EXACT_COUNT][ETH_ALEN];
138 };
139 
140 /* MAX_TAP_QUEUES 256 is chosen to allow rx/tx queues to be equal
141  * to max number of VCPUs in guest. */
142 #define MAX_TAP_QUEUES 256
143 #define MAX_TAP_FLOWS  4096
144 
145 #define TUN_FLOW_EXPIRE (3 * HZ)
146 
147 struct tun_pcpu_stats {
148 	u64 rx_packets;
149 	u64 rx_bytes;
150 	u64 tx_packets;
151 	u64 tx_bytes;
152 	struct u64_stats_sync syncp;
153 	u32 rx_dropped;
154 	u32 tx_dropped;
155 	u32 rx_frame_errors;
156 };
157 
158 /* A tun_file connects an open character device to a tuntap netdevice. It
159  * also contains all socket related structures (except sock_fprog and tap_filter)
160  * to serve as one transmit queue for tuntap device. The sock_fprog and
161  * tap_filter were kept in tun_struct since they were used for filtering for the
162  * netdevice not for a specific queue (at least I didn't see the requirement for
163  * this).
164  *
165  * RCU usage:
166  * The tun_file and tun_struct are loosely coupled, the pointer from one to the
167  * other can only be read while rcu_read_lock or rtnl_lock is held.
168  */
169 struct tun_file {
170 	struct sock sk;
171 	struct socket socket;
172 	struct socket_wq wq;
173 	struct tun_struct __rcu *tun;
174 	struct fasync_struct *fasync;
175 	/* only used for fasnyc */
176 	unsigned int flags;
177 	union {
178 		u16 queue_index;
179 		unsigned int ifindex;
180 	};
181 	struct napi_struct napi;
182 	bool napi_enabled;
183 	bool napi_frags_enabled;
184 	struct mutex napi_mutex;	/* Protects access to the above napi */
185 	struct list_head next;
186 	struct tun_struct *detached;
187 	struct ptr_ring tx_ring;
188 	struct xdp_rxq_info xdp_rxq;
189 };
190 
191 struct tun_page {
192 	struct page *page;
193 	int count;
194 };
195 
196 struct tun_flow_entry {
197 	struct hlist_node hash_link;
198 	struct rcu_head rcu;
199 	struct tun_struct *tun;
200 
201 	u32 rxhash;
202 	u32 rps_rxhash;
203 	int queue_index;
204 	unsigned long updated;
205 };
206 
207 #define TUN_NUM_FLOW_ENTRIES 1024
208 #define TUN_MASK_FLOW_ENTRIES (TUN_NUM_FLOW_ENTRIES - 1)
209 
210 struct tun_prog {
211 	struct rcu_head rcu;
212 	struct bpf_prog *prog;
213 };
214 
215 /* Since the socket were moved to tun_file, to preserve the behavior of persist
216  * device, socket filter, sndbuf and vnet header size were restore when the
217  * file were attached to a persist device.
218  */
219 struct tun_struct {
220 	struct tun_file __rcu	*tfiles[MAX_TAP_QUEUES];
221 	unsigned int            numqueues;
222 	unsigned int 		flags;
223 	kuid_t			owner;
224 	kgid_t			group;
225 
226 	struct net_device	*dev;
227 	netdev_features_t	set_features;
228 #define TUN_USER_FEATURES (NETIF_F_HW_CSUM|NETIF_F_TSO_ECN|NETIF_F_TSO| \
229 			  NETIF_F_TSO6)
230 
231 	int			align;
232 	int			vnet_hdr_sz;
233 	int			sndbuf;
234 	struct tap_filter	txflt;
235 	struct sock_fprog	fprog;
236 	/* protected by rtnl lock */
237 	bool			filter_attached;
238 #ifdef TUN_DEBUG
239 	int debug;
240 #endif
241 	spinlock_t lock;
242 	struct hlist_head flows[TUN_NUM_FLOW_ENTRIES];
243 	struct timer_list flow_gc_timer;
244 	unsigned long ageing_time;
245 	unsigned int numdisabled;
246 	struct list_head disabled;
247 	void *security;
248 	u32 flow_count;
249 	u32 rx_batched;
250 	struct tun_pcpu_stats __percpu *pcpu_stats;
251 	struct bpf_prog __rcu *xdp_prog;
252 	struct tun_prog __rcu *steering_prog;
253 	struct tun_prog __rcu *filter_prog;
254 	struct ethtool_link_ksettings link_ksettings;
255 };
256 
257 struct veth {
258 	__be16 h_vlan_proto;
259 	__be16 h_vlan_TCI;
260 };
261 
262 bool tun_is_xdp_frame(void *ptr)
263 {
264 	return (unsigned long)ptr & TUN_XDP_FLAG;
265 }
266 EXPORT_SYMBOL(tun_is_xdp_frame);
267 
268 void *tun_xdp_to_ptr(void *ptr)
269 {
270 	return (void *)((unsigned long)ptr | TUN_XDP_FLAG);
271 }
272 EXPORT_SYMBOL(tun_xdp_to_ptr);
273 
274 void *tun_ptr_to_xdp(void *ptr)
275 {
276 	return (void *)((unsigned long)ptr & ~TUN_XDP_FLAG);
277 }
278 EXPORT_SYMBOL(tun_ptr_to_xdp);
279 
280 static int tun_napi_receive(struct napi_struct *napi, int budget)
281 {
282 	struct tun_file *tfile = container_of(napi, struct tun_file, napi);
283 	struct sk_buff_head *queue = &tfile->sk.sk_write_queue;
284 	struct sk_buff_head process_queue;
285 	struct sk_buff *skb;
286 	int received = 0;
287 
288 	__skb_queue_head_init(&process_queue);
289 
290 	spin_lock(&queue->lock);
291 	skb_queue_splice_tail_init(queue, &process_queue);
292 	spin_unlock(&queue->lock);
293 
294 	while (received < budget && (skb = __skb_dequeue(&process_queue))) {
295 		napi_gro_receive(napi, skb);
296 		++received;
297 	}
298 
299 	if (!skb_queue_empty(&process_queue)) {
300 		spin_lock(&queue->lock);
301 		skb_queue_splice(&process_queue, queue);
302 		spin_unlock(&queue->lock);
303 	}
304 
305 	return received;
306 }
307 
308 static int tun_napi_poll(struct napi_struct *napi, int budget)
309 {
310 	unsigned int received;
311 
312 	received = tun_napi_receive(napi, budget);
313 
314 	if (received < budget)
315 		napi_complete_done(napi, received);
316 
317 	return received;
318 }
319 
320 static void tun_napi_init(struct tun_struct *tun, struct tun_file *tfile,
321 			  bool napi_en, bool napi_frags)
322 {
323 	tfile->napi_enabled = napi_en;
324 	tfile->napi_frags_enabled = napi_en && napi_frags;
325 	if (napi_en) {
326 		netif_napi_add(tun->dev, &tfile->napi, tun_napi_poll,
327 			       NAPI_POLL_WEIGHT);
328 		napi_enable(&tfile->napi);
329 	}
330 }
331 
332 static void tun_napi_disable(struct tun_file *tfile)
333 {
334 	if (tfile->napi_enabled)
335 		napi_disable(&tfile->napi);
336 }
337 
338 static void tun_napi_del(struct tun_file *tfile)
339 {
340 	if (tfile->napi_enabled)
341 		netif_napi_del(&tfile->napi);
342 }
343 
344 static bool tun_napi_frags_enabled(const struct tun_file *tfile)
345 {
346 	return tfile->napi_frags_enabled;
347 }
348 
349 #ifdef CONFIG_TUN_VNET_CROSS_LE
350 static inline bool tun_legacy_is_little_endian(struct tun_struct *tun)
351 {
352 	return tun->flags & TUN_VNET_BE ? false :
353 		virtio_legacy_is_little_endian();
354 }
355 
356 static long tun_get_vnet_be(struct tun_struct *tun, int __user *argp)
357 {
358 	int be = !!(tun->flags & TUN_VNET_BE);
359 
360 	if (put_user(be, argp))
361 		return -EFAULT;
362 
363 	return 0;
364 }
365 
366 static long tun_set_vnet_be(struct tun_struct *tun, int __user *argp)
367 {
368 	int be;
369 
370 	if (get_user(be, argp))
371 		return -EFAULT;
372 
373 	if (be)
374 		tun->flags |= TUN_VNET_BE;
375 	else
376 		tun->flags &= ~TUN_VNET_BE;
377 
378 	return 0;
379 }
380 #else
381 static inline bool tun_legacy_is_little_endian(struct tun_struct *tun)
382 {
383 	return virtio_legacy_is_little_endian();
384 }
385 
386 static long tun_get_vnet_be(struct tun_struct *tun, int __user *argp)
387 {
388 	return -EINVAL;
389 }
390 
391 static long tun_set_vnet_be(struct tun_struct *tun, int __user *argp)
392 {
393 	return -EINVAL;
394 }
395 #endif /* CONFIG_TUN_VNET_CROSS_LE */
396 
397 static inline bool tun_is_little_endian(struct tun_struct *tun)
398 {
399 	return tun->flags & TUN_VNET_LE ||
400 		tun_legacy_is_little_endian(tun);
401 }
402 
403 static inline u16 tun16_to_cpu(struct tun_struct *tun, __virtio16 val)
404 {
405 	return __virtio16_to_cpu(tun_is_little_endian(tun), val);
406 }
407 
408 static inline __virtio16 cpu_to_tun16(struct tun_struct *tun, u16 val)
409 {
410 	return __cpu_to_virtio16(tun_is_little_endian(tun), val);
411 }
412 
413 static inline u32 tun_hashfn(u32 rxhash)
414 {
415 	return rxhash & TUN_MASK_FLOW_ENTRIES;
416 }
417 
418 static struct tun_flow_entry *tun_flow_find(struct hlist_head *head, u32 rxhash)
419 {
420 	struct tun_flow_entry *e;
421 
422 	hlist_for_each_entry_rcu(e, head, hash_link) {
423 		if (e->rxhash == rxhash)
424 			return e;
425 	}
426 	return NULL;
427 }
428 
429 static struct tun_flow_entry *tun_flow_create(struct tun_struct *tun,
430 					      struct hlist_head *head,
431 					      u32 rxhash, u16 queue_index)
432 {
433 	struct tun_flow_entry *e = kmalloc(sizeof(*e), GFP_ATOMIC);
434 
435 	if (e) {
436 		tun_debug(KERN_INFO, tun, "create flow: hash %u index %u\n",
437 			  rxhash, queue_index);
438 		e->updated = jiffies;
439 		e->rxhash = rxhash;
440 		e->rps_rxhash = 0;
441 		e->queue_index = queue_index;
442 		e->tun = tun;
443 		hlist_add_head_rcu(&e->hash_link, head);
444 		++tun->flow_count;
445 	}
446 	return e;
447 }
448 
449 static void tun_flow_delete(struct tun_struct *tun, struct tun_flow_entry *e)
450 {
451 	tun_debug(KERN_INFO, tun, "delete flow: hash %u index %u\n",
452 		  e->rxhash, e->queue_index);
453 	hlist_del_rcu(&e->hash_link);
454 	kfree_rcu(e, rcu);
455 	--tun->flow_count;
456 }
457 
458 static void tun_flow_flush(struct tun_struct *tun)
459 {
460 	int i;
461 
462 	spin_lock_bh(&tun->lock);
463 	for (i = 0; i < TUN_NUM_FLOW_ENTRIES; i++) {
464 		struct tun_flow_entry *e;
465 		struct hlist_node *n;
466 
467 		hlist_for_each_entry_safe(e, n, &tun->flows[i], hash_link)
468 			tun_flow_delete(tun, e);
469 	}
470 	spin_unlock_bh(&tun->lock);
471 }
472 
473 static void tun_flow_delete_by_queue(struct tun_struct *tun, u16 queue_index)
474 {
475 	int i;
476 
477 	spin_lock_bh(&tun->lock);
478 	for (i = 0; i < TUN_NUM_FLOW_ENTRIES; i++) {
479 		struct tun_flow_entry *e;
480 		struct hlist_node *n;
481 
482 		hlist_for_each_entry_safe(e, n, &tun->flows[i], hash_link) {
483 			if (e->queue_index == queue_index)
484 				tun_flow_delete(tun, e);
485 		}
486 	}
487 	spin_unlock_bh(&tun->lock);
488 }
489 
490 static void tun_flow_cleanup(struct timer_list *t)
491 {
492 	struct tun_struct *tun = from_timer(tun, t, flow_gc_timer);
493 	unsigned long delay = tun->ageing_time;
494 	unsigned long next_timer = jiffies + delay;
495 	unsigned long count = 0;
496 	int i;
497 
498 	tun_debug(KERN_INFO, tun, "tun_flow_cleanup\n");
499 
500 	spin_lock(&tun->lock);
501 	for (i = 0; i < TUN_NUM_FLOW_ENTRIES; i++) {
502 		struct tun_flow_entry *e;
503 		struct hlist_node *n;
504 
505 		hlist_for_each_entry_safe(e, n, &tun->flows[i], hash_link) {
506 			unsigned long this_timer;
507 
508 			this_timer = e->updated + delay;
509 			if (time_before_eq(this_timer, jiffies)) {
510 				tun_flow_delete(tun, e);
511 				continue;
512 			}
513 			count++;
514 			if (time_before(this_timer, next_timer))
515 				next_timer = this_timer;
516 		}
517 	}
518 
519 	if (count)
520 		mod_timer(&tun->flow_gc_timer, round_jiffies_up(next_timer));
521 	spin_unlock(&tun->lock);
522 }
523 
524 static void tun_flow_update(struct tun_struct *tun, u32 rxhash,
525 			    struct tun_file *tfile)
526 {
527 	struct hlist_head *head;
528 	struct tun_flow_entry *e;
529 	unsigned long delay = tun->ageing_time;
530 	u16 queue_index = tfile->queue_index;
531 
532 	if (!rxhash)
533 		return;
534 	else
535 		head = &tun->flows[tun_hashfn(rxhash)];
536 
537 	rcu_read_lock();
538 
539 	e = tun_flow_find(head, rxhash);
540 	if (likely(e)) {
541 		/* TODO: keep queueing to old queue until it's empty? */
542 		e->queue_index = queue_index;
543 		e->updated = jiffies;
544 		sock_rps_record_flow_hash(e->rps_rxhash);
545 	} else {
546 		spin_lock_bh(&tun->lock);
547 		if (!tun_flow_find(head, rxhash) &&
548 		    tun->flow_count < MAX_TAP_FLOWS)
549 			tun_flow_create(tun, head, rxhash, queue_index);
550 
551 		if (!timer_pending(&tun->flow_gc_timer))
552 			mod_timer(&tun->flow_gc_timer,
553 				  round_jiffies_up(jiffies + delay));
554 		spin_unlock_bh(&tun->lock);
555 	}
556 
557 	rcu_read_unlock();
558 }
559 
560 /**
561  * Save the hash received in the stack receive path and update the
562  * flow_hash table accordingly.
563  */
564 static inline void tun_flow_save_rps_rxhash(struct tun_flow_entry *e, u32 hash)
565 {
566 	if (unlikely(e->rps_rxhash != hash))
567 		e->rps_rxhash = hash;
568 }
569 
570 /* We try to identify a flow through its rxhash. The reason that
571  * we do not check rxq no. is because some cards(e.g 82599), chooses
572  * the rxq based on the txq where the last packet of the flow comes. As
573  * the userspace application move between processors, we may get a
574  * different rxq no. here.
575  */
576 static u16 tun_automq_select_queue(struct tun_struct *tun, struct sk_buff *skb)
577 {
578 	struct tun_flow_entry *e;
579 	u32 txq = 0;
580 	u32 numqueues = 0;
581 
582 	numqueues = READ_ONCE(tun->numqueues);
583 
584 	txq = __skb_get_hash_symmetric(skb);
585 	e = tun_flow_find(&tun->flows[tun_hashfn(txq)], txq);
586 	if (e) {
587 		tun_flow_save_rps_rxhash(e, txq);
588 		txq = e->queue_index;
589 	} else {
590 		/* use multiply and shift instead of expensive divide */
591 		txq = ((u64)txq * numqueues) >> 32;
592 	}
593 
594 	return txq;
595 }
596 
597 static u16 tun_ebpf_select_queue(struct tun_struct *tun, struct sk_buff *skb)
598 {
599 	struct tun_prog *prog;
600 	u16 ret = 0;
601 
602 	prog = rcu_dereference(tun->steering_prog);
603 	if (prog)
604 		ret = bpf_prog_run_clear_cb(prog->prog, skb);
605 
606 	return ret % tun->numqueues;
607 }
608 
609 static u16 tun_select_queue(struct net_device *dev, struct sk_buff *skb,
610 			    struct net_device *sb_dev,
611 			    select_queue_fallback_t fallback)
612 {
613 	struct tun_struct *tun = netdev_priv(dev);
614 	u16 ret;
615 
616 	rcu_read_lock();
617 	if (rcu_dereference(tun->steering_prog))
618 		ret = tun_ebpf_select_queue(tun, skb);
619 	else
620 		ret = tun_automq_select_queue(tun, skb);
621 	rcu_read_unlock();
622 
623 	return ret;
624 }
625 
626 static inline bool tun_not_capable(struct tun_struct *tun)
627 {
628 	const struct cred *cred = current_cred();
629 	struct net *net = dev_net(tun->dev);
630 
631 	return ((uid_valid(tun->owner) && !uid_eq(cred->euid, tun->owner)) ||
632 		  (gid_valid(tun->group) && !in_egroup_p(tun->group))) &&
633 		!ns_capable(net->user_ns, CAP_NET_ADMIN);
634 }
635 
636 static void tun_set_real_num_queues(struct tun_struct *tun)
637 {
638 	netif_set_real_num_tx_queues(tun->dev, tun->numqueues);
639 	netif_set_real_num_rx_queues(tun->dev, tun->numqueues);
640 }
641 
642 static void tun_disable_queue(struct tun_struct *tun, struct tun_file *tfile)
643 {
644 	tfile->detached = tun;
645 	list_add_tail(&tfile->next, &tun->disabled);
646 	++tun->numdisabled;
647 }
648 
649 static struct tun_struct *tun_enable_queue(struct tun_file *tfile)
650 {
651 	struct tun_struct *tun = tfile->detached;
652 
653 	tfile->detached = NULL;
654 	list_del_init(&tfile->next);
655 	--tun->numdisabled;
656 	return tun;
657 }
658 
659 void tun_ptr_free(void *ptr)
660 {
661 	if (!ptr)
662 		return;
663 	if (tun_is_xdp_frame(ptr)) {
664 		struct xdp_frame *xdpf = tun_ptr_to_xdp(ptr);
665 
666 		xdp_return_frame(xdpf);
667 	} else {
668 		__skb_array_destroy_skb(ptr);
669 	}
670 }
671 EXPORT_SYMBOL_GPL(tun_ptr_free);
672 
673 static void tun_queue_purge(struct tun_file *tfile)
674 {
675 	void *ptr;
676 
677 	while ((ptr = ptr_ring_consume(&tfile->tx_ring)) != NULL)
678 		tun_ptr_free(ptr);
679 
680 	skb_queue_purge(&tfile->sk.sk_write_queue);
681 	skb_queue_purge(&tfile->sk.sk_error_queue);
682 }
683 
684 static void __tun_detach(struct tun_file *tfile, bool clean)
685 {
686 	struct tun_file *ntfile;
687 	struct tun_struct *tun;
688 
689 	tun = rtnl_dereference(tfile->tun);
690 
691 	if (tun && clean) {
692 		tun_napi_disable(tfile);
693 		tun_napi_del(tfile);
694 	}
695 
696 	if (tun && !tfile->detached) {
697 		u16 index = tfile->queue_index;
698 		BUG_ON(index >= tun->numqueues);
699 
700 		rcu_assign_pointer(tun->tfiles[index],
701 				   tun->tfiles[tun->numqueues - 1]);
702 		ntfile = rtnl_dereference(tun->tfiles[index]);
703 		ntfile->queue_index = index;
704 
705 		--tun->numqueues;
706 		if (clean) {
707 			RCU_INIT_POINTER(tfile->tun, NULL);
708 			sock_put(&tfile->sk);
709 		} else
710 			tun_disable_queue(tun, tfile);
711 
712 		synchronize_net();
713 		tun_flow_delete_by_queue(tun, tun->numqueues + 1);
714 		/* Drop read queue */
715 		tun_queue_purge(tfile);
716 		tun_set_real_num_queues(tun);
717 	} else if (tfile->detached && clean) {
718 		tun = tun_enable_queue(tfile);
719 		sock_put(&tfile->sk);
720 	}
721 
722 	if (clean) {
723 		if (tun && tun->numqueues == 0 && tun->numdisabled == 0) {
724 			netif_carrier_off(tun->dev);
725 
726 			if (!(tun->flags & IFF_PERSIST) &&
727 			    tun->dev->reg_state == NETREG_REGISTERED)
728 				unregister_netdevice(tun->dev);
729 		}
730 		if (tun)
731 			xdp_rxq_info_unreg(&tfile->xdp_rxq);
732 		ptr_ring_cleanup(&tfile->tx_ring, tun_ptr_free);
733 		sock_put(&tfile->sk);
734 	}
735 }
736 
737 static void tun_detach(struct tun_file *tfile, bool clean)
738 {
739 	struct tun_struct *tun;
740 	struct net_device *dev;
741 
742 	rtnl_lock();
743 	tun = rtnl_dereference(tfile->tun);
744 	dev = tun ? tun->dev : NULL;
745 	__tun_detach(tfile, clean);
746 	if (dev)
747 		netdev_state_change(dev);
748 	rtnl_unlock();
749 }
750 
751 static void tun_detach_all(struct net_device *dev)
752 {
753 	struct tun_struct *tun = netdev_priv(dev);
754 	struct tun_file *tfile, *tmp;
755 	int i, n = tun->numqueues;
756 
757 	for (i = 0; i < n; i++) {
758 		tfile = rtnl_dereference(tun->tfiles[i]);
759 		BUG_ON(!tfile);
760 		tun_napi_disable(tfile);
761 		tfile->socket.sk->sk_shutdown = RCV_SHUTDOWN;
762 		tfile->socket.sk->sk_data_ready(tfile->socket.sk);
763 		RCU_INIT_POINTER(tfile->tun, NULL);
764 		--tun->numqueues;
765 	}
766 	list_for_each_entry(tfile, &tun->disabled, next) {
767 		tfile->socket.sk->sk_shutdown = RCV_SHUTDOWN;
768 		tfile->socket.sk->sk_data_ready(tfile->socket.sk);
769 		RCU_INIT_POINTER(tfile->tun, NULL);
770 	}
771 	BUG_ON(tun->numqueues != 0);
772 
773 	synchronize_net();
774 	for (i = 0; i < n; i++) {
775 		tfile = rtnl_dereference(tun->tfiles[i]);
776 		tun_napi_del(tfile);
777 		/* Drop read queue */
778 		tun_queue_purge(tfile);
779 		xdp_rxq_info_unreg(&tfile->xdp_rxq);
780 		sock_put(&tfile->sk);
781 	}
782 	list_for_each_entry_safe(tfile, tmp, &tun->disabled, next) {
783 		tun_enable_queue(tfile);
784 		tun_queue_purge(tfile);
785 		xdp_rxq_info_unreg(&tfile->xdp_rxq);
786 		sock_put(&tfile->sk);
787 	}
788 	BUG_ON(tun->numdisabled != 0);
789 
790 	if (tun->flags & IFF_PERSIST)
791 		module_put(THIS_MODULE);
792 }
793 
794 static int tun_attach(struct tun_struct *tun, struct file *file,
795 		      bool skip_filter, bool napi, bool napi_frags)
796 {
797 	struct tun_file *tfile = file->private_data;
798 	struct net_device *dev = tun->dev;
799 	int err;
800 
801 	err = security_tun_dev_attach(tfile->socket.sk, tun->security);
802 	if (err < 0)
803 		goto out;
804 
805 	err = -EINVAL;
806 	if (rtnl_dereference(tfile->tun) && !tfile->detached)
807 		goto out;
808 
809 	err = -EBUSY;
810 	if (!(tun->flags & IFF_MULTI_QUEUE) && tun->numqueues == 1)
811 		goto out;
812 
813 	err = -E2BIG;
814 	if (!tfile->detached &&
815 	    tun->numqueues + tun->numdisabled == MAX_TAP_QUEUES)
816 		goto out;
817 
818 	err = 0;
819 
820 	/* Re-attach the filter to persist device */
821 	if (!skip_filter && (tun->filter_attached == true)) {
822 		lock_sock(tfile->socket.sk);
823 		err = sk_attach_filter(&tun->fprog, tfile->socket.sk);
824 		release_sock(tfile->socket.sk);
825 		if (!err)
826 			goto out;
827 	}
828 
829 	if (!tfile->detached &&
830 	    ptr_ring_resize(&tfile->tx_ring, dev->tx_queue_len,
831 			    GFP_KERNEL, tun_ptr_free)) {
832 		err = -ENOMEM;
833 		goto out;
834 	}
835 
836 	tfile->queue_index = tun->numqueues;
837 	tfile->socket.sk->sk_shutdown &= ~RCV_SHUTDOWN;
838 
839 	if (tfile->detached) {
840 		/* Re-attach detached tfile, updating XDP queue_index */
841 		WARN_ON(!xdp_rxq_info_is_reg(&tfile->xdp_rxq));
842 
843 		if (tfile->xdp_rxq.queue_index    != tfile->queue_index)
844 			tfile->xdp_rxq.queue_index = tfile->queue_index;
845 	} else {
846 		/* Setup XDP RX-queue info, for new tfile getting attached */
847 		err = xdp_rxq_info_reg(&tfile->xdp_rxq,
848 				       tun->dev, tfile->queue_index);
849 		if (err < 0)
850 			goto out;
851 		err = xdp_rxq_info_reg_mem_model(&tfile->xdp_rxq,
852 						 MEM_TYPE_PAGE_SHARED, NULL);
853 		if (err < 0) {
854 			xdp_rxq_info_unreg(&tfile->xdp_rxq);
855 			goto out;
856 		}
857 		err = 0;
858 	}
859 
860 	rcu_assign_pointer(tfile->tun, tun);
861 	rcu_assign_pointer(tun->tfiles[tun->numqueues], tfile);
862 	tun->numqueues++;
863 
864 	if (tfile->detached) {
865 		tun_enable_queue(tfile);
866 	} else {
867 		sock_hold(&tfile->sk);
868 		tun_napi_init(tun, tfile, napi, napi_frags);
869 	}
870 
871 	if (rtnl_dereference(tun->xdp_prog))
872 		sock_set_flag(&tfile->sk, SOCK_XDP);
873 
874 	tun_set_real_num_queues(tun);
875 
876 	/* device is allowed to go away first, so no need to hold extra
877 	 * refcnt.
878 	 */
879 
880 out:
881 	return err;
882 }
883 
884 static struct tun_struct *tun_get(struct tun_file *tfile)
885 {
886 	struct tun_struct *tun;
887 
888 	rcu_read_lock();
889 	tun = rcu_dereference(tfile->tun);
890 	if (tun)
891 		dev_hold(tun->dev);
892 	rcu_read_unlock();
893 
894 	return tun;
895 }
896 
897 static void tun_put(struct tun_struct *tun)
898 {
899 	dev_put(tun->dev);
900 }
901 
902 /* TAP filtering */
903 static void addr_hash_set(u32 *mask, const u8 *addr)
904 {
905 	int n = ether_crc(ETH_ALEN, addr) >> 26;
906 	mask[n >> 5] |= (1 << (n & 31));
907 }
908 
909 static unsigned int addr_hash_test(const u32 *mask, const u8 *addr)
910 {
911 	int n = ether_crc(ETH_ALEN, addr) >> 26;
912 	return mask[n >> 5] & (1 << (n & 31));
913 }
914 
915 static int update_filter(struct tap_filter *filter, void __user *arg)
916 {
917 	struct { u8 u[ETH_ALEN]; } *addr;
918 	struct tun_filter uf;
919 	int err, alen, n, nexact;
920 
921 	if (copy_from_user(&uf, arg, sizeof(uf)))
922 		return -EFAULT;
923 
924 	if (!uf.count) {
925 		/* Disabled */
926 		filter->count = 0;
927 		return 0;
928 	}
929 
930 	alen = ETH_ALEN * uf.count;
931 	addr = memdup_user(arg + sizeof(uf), alen);
932 	if (IS_ERR(addr))
933 		return PTR_ERR(addr);
934 
935 	/* The filter is updated without holding any locks. Which is
936 	 * perfectly safe. We disable it first and in the worst
937 	 * case we'll accept a few undesired packets. */
938 	filter->count = 0;
939 	wmb();
940 
941 	/* Use first set of addresses as an exact filter */
942 	for (n = 0; n < uf.count && n < FLT_EXACT_COUNT; n++)
943 		memcpy(filter->addr[n], addr[n].u, ETH_ALEN);
944 
945 	nexact = n;
946 
947 	/* Remaining multicast addresses are hashed,
948 	 * unicast will leave the filter disabled. */
949 	memset(filter->mask, 0, sizeof(filter->mask));
950 	for (; n < uf.count; n++) {
951 		if (!is_multicast_ether_addr(addr[n].u)) {
952 			err = 0; /* no filter */
953 			goto free_addr;
954 		}
955 		addr_hash_set(filter->mask, addr[n].u);
956 	}
957 
958 	/* For ALLMULTI just set the mask to all ones.
959 	 * This overrides the mask populated above. */
960 	if ((uf.flags & TUN_FLT_ALLMULTI))
961 		memset(filter->mask, ~0, sizeof(filter->mask));
962 
963 	/* Now enable the filter */
964 	wmb();
965 	filter->count = nexact;
966 
967 	/* Return the number of exact filters */
968 	err = nexact;
969 free_addr:
970 	kfree(addr);
971 	return err;
972 }
973 
974 /* Returns: 0 - drop, !=0 - accept */
975 static int run_filter(struct tap_filter *filter, const struct sk_buff *skb)
976 {
977 	/* Cannot use eth_hdr(skb) here because skb_mac_hdr() is incorrect
978 	 * at this point. */
979 	struct ethhdr *eh = (struct ethhdr *) skb->data;
980 	int i;
981 
982 	/* Exact match */
983 	for (i = 0; i < filter->count; i++)
984 		if (ether_addr_equal(eh->h_dest, filter->addr[i]))
985 			return 1;
986 
987 	/* Inexact match (multicast only) */
988 	if (is_multicast_ether_addr(eh->h_dest))
989 		return addr_hash_test(filter->mask, eh->h_dest);
990 
991 	return 0;
992 }
993 
994 /*
995  * Checks whether the packet is accepted or not.
996  * Returns: 0 - drop, !=0 - accept
997  */
998 static int check_filter(struct tap_filter *filter, const struct sk_buff *skb)
999 {
1000 	if (!filter->count)
1001 		return 1;
1002 
1003 	return run_filter(filter, skb);
1004 }
1005 
1006 /* Network device part of the driver */
1007 
1008 static const struct ethtool_ops tun_ethtool_ops;
1009 
1010 /* Net device detach from fd. */
1011 static void tun_net_uninit(struct net_device *dev)
1012 {
1013 	tun_detach_all(dev);
1014 }
1015 
1016 /* Net device open. */
1017 static int tun_net_open(struct net_device *dev)
1018 {
1019 	struct tun_struct *tun = netdev_priv(dev);
1020 	int i;
1021 
1022 	netif_tx_start_all_queues(dev);
1023 
1024 	for (i = 0; i < tun->numqueues; i++) {
1025 		struct tun_file *tfile;
1026 
1027 		tfile = rtnl_dereference(tun->tfiles[i]);
1028 		tfile->socket.sk->sk_write_space(tfile->socket.sk);
1029 	}
1030 
1031 	return 0;
1032 }
1033 
1034 /* Net device close. */
1035 static int tun_net_close(struct net_device *dev)
1036 {
1037 	netif_tx_stop_all_queues(dev);
1038 	return 0;
1039 }
1040 
1041 /* Net device start xmit */
1042 static void tun_automq_xmit(struct tun_struct *tun, struct sk_buff *skb)
1043 {
1044 #ifdef CONFIG_RPS
1045 	if (tun->numqueues == 1 && static_key_false(&rps_needed)) {
1046 		/* Select queue was not called for the skbuff, so we extract the
1047 		 * RPS hash and save it into the flow_table here.
1048 		 */
1049 		struct tun_flow_entry *e;
1050 		__u32 rxhash;
1051 
1052 		rxhash = __skb_get_hash_symmetric(skb);
1053 		e = tun_flow_find(&tun->flows[tun_hashfn(rxhash)], rxhash);
1054 		if (e)
1055 			tun_flow_save_rps_rxhash(e, rxhash);
1056 	}
1057 #endif
1058 }
1059 
1060 static unsigned int run_ebpf_filter(struct tun_struct *tun,
1061 				    struct sk_buff *skb,
1062 				    int len)
1063 {
1064 	struct tun_prog *prog = rcu_dereference(tun->filter_prog);
1065 
1066 	if (prog)
1067 		len = bpf_prog_run_clear_cb(prog->prog, skb);
1068 
1069 	return len;
1070 }
1071 
1072 /* Net device start xmit */
1073 static netdev_tx_t tun_net_xmit(struct sk_buff *skb, struct net_device *dev)
1074 {
1075 	struct tun_struct *tun = netdev_priv(dev);
1076 	int txq = skb->queue_mapping;
1077 	struct tun_file *tfile;
1078 	int len = skb->len;
1079 
1080 	rcu_read_lock();
1081 	tfile = rcu_dereference(tun->tfiles[txq]);
1082 
1083 	/* Drop packet if interface is not attached */
1084 	if (txq >= tun->numqueues)
1085 		goto drop;
1086 
1087 	if (!rcu_dereference(tun->steering_prog))
1088 		tun_automq_xmit(tun, skb);
1089 
1090 	tun_debug(KERN_INFO, tun, "tun_net_xmit %d\n", skb->len);
1091 
1092 	BUG_ON(!tfile);
1093 
1094 	/* Drop if the filter does not like it.
1095 	 * This is a noop if the filter is disabled.
1096 	 * Filter can be enabled only for the TAP devices. */
1097 	if (!check_filter(&tun->txflt, skb))
1098 		goto drop;
1099 
1100 	if (tfile->socket.sk->sk_filter &&
1101 	    sk_filter(tfile->socket.sk, skb))
1102 		goto drop;
1103 
1104 	len = run_ebpf_filter(tun, skb, len);
1105 	if (len == 0 || pskb_trim(skb, len))
1106 		goto drop;
1107 
1108 	if (unlikely(skb_orphan_frags_rx(skb, GFP_ATOMIC)))
1109 		goto drop;
1110 
1111 	skb_tx_timestamp(skb);
1112 
1113 	/* Orphan the skb - required as we might hang on to it
1114 	 * for indefinite time.
1115 	 */
1116 	skb_orphan(skb);
1117 
1118 	nf_reset(skb);
1119 
1120 	if (ptr_ring_produce(&tfile->tx_ring, skb))
1121 		goto drop;
1122 
1123 	/* Notify and wake up reader process */
1124 	if (tfile->flags & TUN_FASYNC)
1125 		kill_fasync(&tfile->fasync, SIGIO, POLL_IN);
1126 	tfile->socket.sk->sk_data_ready(tfile->socket.sk);
1127 
1128 	rcu_read_unlock();
1129 	return NETDEV_TX_OK;
1130 
1131 drop:
1132 	this_cpu_inc(tun->pcpu_stats->tx_dropped);
1133 	skb_tx_error(skb);
1134 	kfree_skb(skb);
1135 	rcu_read_unlock();
1136 	return NET_XMIT_DROP;
1137 }
1138 
1139 static void tun_net_mclist(struct net_device *dev)
1140 {
1141 	/*
1142 	 * This callback is supposed to deal with mc filter in
1143 	 * _rx_ path and has nothing to do with the _tx_ path.
1144 	 * In rx path we always accept everything userspace gives us.
1145 	 */
1146 }
1147 
1148 static netdev_features_t tun_net_fix_features(struct net_device *dev,
1149 	netdev_features_t features)
1150 {
1151 	struct tun_struct *tun = netdev_priv(dev);
1152 
1153 	return (features & tun->set_features) | (features & ~TUN_USER_FEATURES);
1154 }
1155 
1156 static void tun_set_headroom(struct net_device *dev, int new_hr)
1157 {
1158 	struct tun_struct *tun = netdev_priv(dev);
1159 
1160 	if (new_hr < NET_SKB_PAD)
1161 		new_hr = NET_SKB_PAD;
1162 
1163 	tun->align = new_hr;
1164 }
1165 
1166 static void
1167 tun_net_get_stats64(struct net_device *dev, struct rtnl_link_stats64 *stats)
1168 {
1169 	u32 rx_dropped = 0, tx_dropped = 0, rx_frame_errors = 0;
1170 	struct tun_struct *tun = netdev_priv(dev);
1171 	struct tun_pcpu_stats *p;
1172 	int i;
1173 
1174 	for_each_possible_cpu(i) {
1175 		u64 rxpackets, rxbytes, txpackets, txbytes;
1176 		unsigned int start;
1177 
1178 		p = per_cpu_ptr(tun->pcpu_stats, i);
1179 		do {
1180 			start = u64_stats_fetch_begin(&p->syncp);
1181 			rxpackets	= p->rx_packets;
1182 			rxbytes		= p->rx_bytes;
1183 			txpackets	= p->tx_packets;
1184 			txbytes		= p->tx_bytes;
1185 		} while (u64_stats_fetch_retry(&p->syncp, start));
1186 
1187 		stats->rx_packets	+= rxpackets;
1188 		stats->rx_bytes		+= rxbytes;
1189 		stats->tx_packets	+= txpackets;
1190 		stats->tx_bytes		+= txbytes;
1191 
1192 		/* u32 counters */
1193 		rx_dropped	+= p->rx_dropped;
1194 		rx_frame_errors	+= p->rx_frame_errors;
1195 		tx_dropped	+= p->tx_dropped;
1196 	}
1197 	stats->rx_dropped  = rx_dropped;
1198 	stats->rx_frame_errors = rx_frame_errors;
1199 	stats->tx_dropped = tx_dropped;
1200 }
1201 
1202 static int tun_xdp_set(struct net_device *dev, struct bpf_prog *prog,
1203 		       struct netlink_ext_ack *extack)
1204 {
1205 	struct tun_struct *tun = netdev_priv(dev);
1206 	struct tun_file *tfile;
1207 	struct bpf_prog *old_prog;
1208 	int i;
1209 
1210 	old_prog = rtnl_dereference(tun->xdp_prog);
1211 	rcu_assign_pointer(tun->xdp_prog, prog);
1212 	if (old_prog)
1213 		bpf_prog_put(old_prog);
1214 
1215 	for (i = 0; i < tun->numqueues; i++) {
1216 		tfile = rtnl_dereference(tun->tfiles[i]);
1217 		if (prog)
1218 			sock_set_flag(&tfile->sk, SOCK_XDP);
1219 		else
1220 			sock_reset_flag(&tfile->sk, SOCK_XDP);
1221 	}
1222 	list_for_each_entry(tfile, &tun->disabled, next) {
1223 		if (prog)
1224 			sock_set_flag(&tfile->sk, SOCK_XDP);
1225 		else
1226 			sock_reset_flag(&tfile->sk, SOCK_XDP);
1227 	}
1228 
1229 	return 0;
1230 }
1231 
1232 static u32 tun_xdp_query(struct net_device *dev)
1233 {
1234 	struct tun_struct *tun = netdev_priv(dev);
1235 	const struct bpf_prog *xdp_prog;
1236 
1237 	xdp_prog = rtnl_dereference(tun->xdp_prog);
1238 	if (xdp_prog)
1239 		return xdp_prog->aux->id;
1240 
1241 	return 0;
1242 }
1243 
1244 static int tun_xdp(struct net_device *dev, struct netdev_bpf *xdp)
1245 {
1246 	switch (xdp->command) {
1247 	case XDP_SETUP_PROG:
1248 		return tun_xdp_set(dev, xdp->prog, xdp->extack);
1249 	case XDP_QUERY_PROG:
1250 		xdp->prog_id = tun_xdp_query(dev);
1251 		return 0;
1252 	default:
1253 		return -EINVAL;
1254 	}
1255 }
1256 
1257 static const struct net_device_ops tun_netdev_ops = {
1258 	.ndo_uninit		= tun_net_uninit,
1259 	.ndo_open		= tun_net_open,
1260 	.ndo_stop		= tun_net_close,
1261 	.ndo_start_xmit		= tun_net_xmit,
1262 	.ndo_fix_features	= tun_net_fix_features,
1263 	.ndo_select_queue	= tun_select_queue,
1264 	.ndo_set_rx_headroom	= tun_set_headroom,
1265 	.ndo_get_stats64	= tun_net_get_stats64,
1266 };
1267 
1268 static void __tun_xdp_flush_tfile(struct tun_file *tfile)
1269 {
1270 	/* Notify and wake up reader process */
1271 	if (tfile->flags & TUN_FASYNC)
1272 		kill_fasync(&tfile->fasync, SIGIO, POLL_IN);
1273 	tfile->socket.sk->sk_data_ready(tfile->socket.sk);
1274 }
1275 
1276 static int tun_xdp_xmit(struct net_device *dev, int n,
1277 			struct xdp_frame **frames, u32 flags)
1278 {
1279 	struct tun_struct *tun = netdev_priv(dev);
1280 	struct tun_file *tfile;
1281 	u32 numqueues;
1282 	int drops = 0;
1283 	int cnt = n;
1284 	int i;
1285 
1286 	if (unlikely(flags & ~XDP_XMIT_FLAGS_MASK))
1287 		return -EINVAL;
1288 
1289 	rcu_read_lock();
1290 
1291 	numqueues = READ_ONCE(tun->numqueues);
1292 	if (!numqueues) {
1293 		rcu_read_unlock();
1294 		return -ENXIO; /* Caller will free/return all frames */
1295 	}
1296 
1297 	tfile = rcu_dereference(tun->tfiles[smp_processor_id() %
1298 					    numqueues]);
1299 
1300 	spin_lock(&tfile->tx_ring.producer_lock);
1301 	for (i = 0; i < n; i++) {
1302 		struct xdp_frame *xdp = frames[i];
1303 		/* Encode the XDP flag into lowest bit for consumer to differ
1304 		 * XDP buffer from sk_buff.
1305 		 */
1306 		void *frame = tun_xdp_to_ptr(xdp);
1307 
1308 		if (__ptr_ring_produce(&tfile->tx_ring, frame)) {
1309 			this_cpu_inc(tun->pcpu_stats->tx_dropped);
1310 			xdp_return_frame_rx_napi(xdp);
1311 			drops++;
1312 		}
1313 	}
1314 	spin_unlock(&tfile->tx_ring.producer_lock);
1315 
1316 	if (flags & XDP_XMIT_FLUSH)
1317 		__tun_xdp_flush_tfile(tfile);
1318 
1319 	rcu_read_unlock();
1320 	return cnt - drops;
1321 }
1322 
1323 static int tun_xdp_tx(struct net_device *dev, struct xdp_buff *xdp)
1324 {
1325 	struct xdp_frame *frame = convert_to_xdp_frame(xdp);
1326 
1327 	if (unlikely(!frame))
1328 		return -EOVERFLOW;
1329 
1330 	return tun_xdp_xmit(dev, 1, &frame, XDP_XMIT_FLUSH);
1331 }
1332 
1333 static const struct net_device_ops tap_netdev_ops = {
1334 	.ndo_uninit		= tun_net_uninit,
1335 	.ndo_open		= tun_net_open,
1336 	.ndo_stop		= tun_net_close,
1337 	.ndo_start_xmit		= tun_net_xmit,
1338 	.ndo_fix_features	= tun_net_fix_features,
1339 	.ndo_set_rx_mode	= tun_net_mclist,
1340 	.ndo_set_mac_address	= eth_mac_addr,
1341 	.ndo_validate_addr	= eth_validate_addr,
1342 	.ndo_select_queue	= tun_select_queue,
1343 	.ndo_features_check	= passthru_features_check,
1344 	.ndo_set_rx_headroom	= tun_set_headroom,
1345 	.ndo_get_stats64	= tun_net_get_stats64,
1346 	.ndo_bpf		= tun_xdp,
1347 	.ndo_xdp_xmit		= tun_xdp_xmit,
1348 };
1349 
1350 static void tun_flow_init(struct tun_struct *tun)
1351 {
1352 	int i;
1353 
1354 	for (i = 0; i < TUN_NUM_FLOW_ENTRIES; i++)
1355 		INIT_HLIST_HEAD(&tun->flows[i]);
1356 
1357 	tun->ageing_time = TUN_FLOW_EXPIRE;
1358 	timer_setup(&tun->flow_gc_timer, tun_flow_cleanup, 0);
1359 	mod_timer(&tun->flow_gc_timer,
1360 		  round_jiffies_up(jiffies + tun->ageing_time));
1361 }
1362 
1363 static void tun_flow_uninit(struct tun_struct *tun)
1364 {
1365 	del_timer_sync(&tun->flow_gc_timer);
1366 	tun_flow_flush(tun);
1367 }
1368 
1369 #define MIN_MTU 68
1370 #define MAX_MTU 65535
1371 
1372 /* Initialize net device. */
1373 static void tun_net_init(struct net_device *dev)
1374 {
1375 	struct tun_struct *tun = netdev_priv(dev);
1376 
1377 	switch (tun->flags & TUN_TYPE_MASK) {
1378 	case IFF_TUN:
1379 		dev->netdev_ops = &tun_netdev_ops;
1380 
1381 		/* Point-to-Point TUN Device */
1382 		dev->hard_header_len = 0;
1383 		dev->addr_len = 0;
1384 		dev->mtu = 1500;
1385 
1386 		/* Zero header length */
1387 		dev->type = ARPHRD_NONE;
1388 		dev->flags = IFF_POINTOPOINT | IFF_NOARP | IFF_MULTICAST;
1389 		break;
1390 
1391 	case IFF_TAP:
1392 		dev->netdev_ops = &tap_netdev_ops;
1393 		/* Ethernet TAP Device */
1394 		ether_setup(dev);
1395 		dev->priv_flags &= ~IFF_TX_SKB_SHARING;
1396 		dev->priv_flags |= IFF_LIVE_ADDR_CHANGE;
1397 
1398 		eth_hw_addr_random(dev);
1399 
1400 		break;
1401 	}
1402 
1403 	dev->min_mtu = MIN_MTU;
1404 	dev->max_mtu = MAX_MTU - dev->hard_header_len;
1405 }
1406 
1407 static bool tun_sock_writeable(struct tun_struct *tun, struct tun_file *tfile)
1408 {
1409 	struct sock *sk = tfile->socket.sk;
1410 
1411 	return (tun->dev->flags & IFF_UP) && sock_writeable(sk);
1412 }
1413 
1414 /* Character device part */
1415 
1416 /* Poll */
1417 static __poll_t tun_chr_poll(struct file *file, poll_table *wait)
1418 {
1419 	struct tun_file *tfile = file->private_data;
1420 	struct tun_struct *tun = tun_get(tfile);
1421 	struct sock *sk;
1422 	__poll_t mask = 0;
1423 
1424 	if (!tun)
1425 		return EPOLLERR;
1426 
1427 	sk = tfile->socket.sk;
1428 
1429 	tun_debug(KERN_INFO, tun, "tun_chr_poll\n");
1430 
1431 	poll_wait(file, sk_sleep(sk), wait);
1432 
1433 	if (!ptr_ring_empty(&tfile->tx_ring))
1434 		mask |= EPOLLIN | EPOLLRDNORM;
1435 
1436 	/* Make sure SOCKWQ_ASYNC_NOSPACE is set if not writable to
1437 	 * guarantee EPOLLOUT to be raised by either here or
1438 	 * tun_sock_write_space(). Then process could get notification
1439 	 * after it writes to a down device and meets -EIO.
1440 	 */
1441 	if (tun_sock_writeable(tun, tfile) ||
1442 	    (!test_and_set_bit(SOCKWQ_ASYNC_NOSPACE, &sk->sk_socket->flags) &&
1443 	     tun_sock_writeable(tun, tfile)))
1444 		mask |= EPOLLOUT | EPOLLWRNORM;
1445 
1446 	if (tun->dev->reg_state != NETREG_REGISTERED)
1447 		mask = EPOLLERR;
1448 
1449 	tun_put(tun);
1450 	return mask;
1451 }
1452 
1453 static struct sk_buff *tun_napi_alloc_frags(struct tun_file *tfile,
1454 					    size_t len,
1455 					    const struct iov_iter *it)
1456 {
1457 	struct sk_buff *skb;
1458 	size_t linear;
1459 	int err;
1460 	int i;
1461 
1462 	if (it->nr_segs > MAX_SKB_FRAGS + 1)
1463 		return ERR_PTR(-ENOMEM);
1464 
1465 	local_bh_disable();
1466 	skb = napi_get_frags(&tfile->napi);
1467 	local_bh_enable();
1468 	if (!skb)
1469 		return ERR_PTR(-ENOMEM);
1470 
1471 	linear = iov_iter_single_seg_count(it);
1472 	err = __skb_grow(skb, linear);
1473 	if (err)
1474 		goto free;
1475 
1476 	skb->len = len;
1477 	skb->data_len = len - linear;
1478 	skb->truesize += skb->data_len;
1479 
1480 	for (i = 1; i < it->nr_segs; i++) {
1481 		size_t fragsz = it->iov[i].iov_len;
1482 		struct page *page;
1483 		void *frag;
1484 
1485 		if (fragsz == 0 || fragsz > PAGE_SIZE) {
1486 			err = -EINVAL;
1487 			goto free;
1488 		}
1489 		frag = netdev_alloc_frag(fragsz);
1490 		if (!frag) {
1491 			err = -ENOMEM;
1492 			goto free;
1493 		}
1494 		page = virt_to_head_page(frag);
1495 		skb_fill_page_desc(skb, i - 1, page,
1496 				   frag - page_address(page), fragsz);
1497 	}
1498 
1499 	return skb;
1500 free:
1501 	/* frees skb and all frags allocated with napi_alloc_frag() */
1502 	napi_free_frags(&tfile->napi);
1503 	return ERR_PTR(err);
1504 }
1505 
1506 /* prepad is the amount to reserve at front.  len is length after that.
1507  * linear is a hint as to how much to copy (usually headers). */
1508 static struct sk_buff *tun_alloc_skb(struct tun_file *tfile,
1509 				     size_t prepad, size_t len,
1510 				     size_t linear, int noblock)
1511 {
1512 	struct sock *sk = tfile->socket.sk;
1513 	struct sk_buff *skb;
1514 	int err;
1515 
1516 	/* Under a page?  Don't bother with paged skb. */
1517 	if (prepad + len < PAGE_SIZE || !linear)
1518 		linear = len;
1519 
1520 	skb = sock_alloc_send_pskb(sk, prepad + linear, len - linear, noblock,
1521 				   &err, 0);
1522 	if (!skb)
1523 		return ERR_PTR(err);
1524 
1525 	skb_reserve(skb, prepad);
1526 	skb_put(skb, linear);
1527 	skb->data_len = len - linear;
1528 	skb->len += len - linear;
1529 
1530 	return skb;
1531 }
1532 
1533 static void tun_rx_batched(struct tun_struct *tun, struct tun_file *tfile,
1534 			   struct sk_buff *skb, int more)
1535 {
1536 	struct sk_buff_head *queue = &tfile->sk.sk_write_queue;
1537 	struct sk_buff_head process_queue;
1538 	u32 rx_batched = tun->rx_batched;
1539 	bool rcv = false;
1540 
1541 	if (!rx_batched || (!more && skb_queue_empty(queue))) {
1542 		local_bh_disable();
1543 		skb_record_rx_queue(skb, tfile->queue_index);
1544 		netif_receive_skb(skb);
1545 		local_bh_enable();
1546 		return;
1547 	}
1548 
1549 	spin_lock(&queue->lock);
1550 	if (!more || skb_queue_len(queue) == rx_batched) {
1551 		__skb_queue_head_init(&process_queue);
1552 		skb_queue_splice_tail_init(queue, &process_queue);
1553 		rcv = true;
1554 	} else {
1555 		__skb_queue_tail(queue, skb);
1556 	}
1557 	spin_unlock(&queue->lock);
1558 
1559 	if (rcv) {
1560 		struct sk_buff *nskb;
1561 
1562 		local_bh_disable();
1563 		while ((nskb = __skb_dequeue(&process_queue))) {
1564 			skb_record_rx_queue(nskb, tfile->queue_index);
1565 			netif_receive_skb(nskb);
1566 		}
1567 		skb_record_rx_queue(skb, tfile->queue_index);
1568 		netif_receive_skb(skb);
1569 		local_bh_enable();
1570 	}
1571 }
1572 
1573 static bool tun_can_build_skb(struct tun_struct *tun, struct tun_file *tfile,
1574 			      int len, int noblock, bool zerocopy)
1575 {
1576 	if ((tun->flags & TUN_TYPE_MASK) != IFF_TAP)
1577 		return false;
1578 
1579 	if (tfile->socket.sk->sk_sndbuf != INT_MAX)
1580 		return false;
1581 
1582 	if (!noblock)
1583 		return false;
1584 
1585 	if (zerocopy)
1586 		return false;
1587 
1588 	if (SKB_DATA_ALIGN(len + TUN_RX_PAD) +
1589 	    SKB_DATA_ALIGN(sizeof(struct skb_shared_info)) > PAGE_SIZE)
1590 		return false;
1591 
1592 	return true;
1593 }
1594 
1595 static struct sk_buff *__tun_build_skb(struct page_frag *alloc_frag, char *buf,
1596 				       int buflen, int len, int pad)
1597 {
1598 	struct sk_buff *skb = build_skb(buf, buflen);
1599 
1600 	if (!skb)
1601 		return ERR_PTR(-ENOMEM);
1602 
1603 	skb_reserve(skb, pad);
1604 	skb_put(skb, len);
1605 
1606 	get_page(alloc_frag->page);
1607 	alloc_frag->offset += buflen;
1608 
1609 	return skb;
1610 }
1611 
1612 static int tun_xdp_act(struct tun_struct *tun, struct bpf_prog *xdp_prog,
1613 		       struct xdp_buff *xdp, u32 act)
1614 {
1615 	int err;
1616 
1617 	switch (act) {
1618 	case XDP_REDIRECT:
1619 		err = xdp_do_redirect(tun->dev, xdp, xdp_prog);
1620 		if (err)
1621 			return err;
1622 		break;
1623 	case XDP_TX:
1624 		err = tun_xdp_tx(tun->dev, xdp);
1625 		if (err < 0)
1626 			return err;
1627 		break;
1628 	case XDP_PASS:
1629 		break;
1630 	default:
1631 		bpf_warn_invalid_xdp_action(act);
1632 		/* fall through */
1633 	case XDP_ABORTED:
1634 		trace_xdp_exception(tun->dev, xdp_prog, act);
1635 		/* fall through */
1636 	case XDP_DROP:
1637 		this_cpu_inc(tun->pcpu_stats->rx_dropped);
1638 		break;
1639 	}
1640 
1641 	return act;
1642 }
1643 
1644 static struct sk_buff *tun_build_skb(struct tun_struct *tun,
1645 				     struct tun_file *tfile,
1646 				     struct iov_iter *from,
1647 				     struct virtio_net_hdr *hdr,
1648 				     int len, int *skb_xdp)
1649 {
1650 	struct page_frag *alloc_frag = &current->task_frag;
1651 	struct bpf_prog *xdp_prog;
1652 	int buflen = SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
1653 	char *buf;
1654 	size_t copied;
1655 	int pad = TUN_RX_PAD;
1656 	int err = 0;
1657 
1658 	rcu_read_lock();
1659 	xdp_prog = rcu_dereference(tun->xdp_prog);
1660 	if (xdp_prog)
1661 		pad += XDP_PACKET_HEADROOM;
1662 	buflen += SKB_DATA_ALIGN(len + pad);
1663 	rcu_read_unlock();
1664 
1665 	alloc_frag->offset = ALIGN((u64)alloc_frag->offset, SMP_CACHE_BYTES);
1666 	if (unlikely(!skb_page_frag_refill(buflen, alloc_frag, GFP_KERNEL)))
1667 		return ERR_PTR(-ENOMEM);
1668 
1669 	buf = (char *)page_address(alloc_frag->page) + alloc_frag->offset;
1670 	copied = copy_page_from_iter(alloc_frag->page,
1671 				     alloc_frag->offset + pad,
1672 				     len, from);
1673 	if (copied != len)
1674 		return ERR_PTR(-EFAULT);
1675 
1676 	/* There's a small window that XDP may be set after the check
1677 	 * of xdp_prog above, this should be rare and for simplicity
1678 	 * we do XDP on skb in case the headroom is not enough.
1679 	 */
1680 	if (hdr->gso_type || !xdp_prog) {
1681 		*skb_xdp = 1;
1682 		return __tun_build_skb(alloc_frag, buf, buflen, len, pad);
1683 	}
1684 
1685 	*skb_xdp = 0;
1686 
1687 	local_bh_disable();
1688 	rcu_read_lock();
1689 	xdp_prog = rcu_dereference(tun->xdp_prog);
1690 	if (xdp_prog) {
1691 		struct xdp_buff xdp;
1692 		u32 act;
1693 
1694 		xdp.data_hard_start = buf;
1695 		xdp.data = buf + pad;
1696 		xdp_set_data_meta_invalid(&xdp);
1697 		xdp.data_end = xdp.data + len;
1698 		xdp.rxq = &tfile->xdp_rxq;
1699 
1700 		act = bpf_prog_run_xdp(xdp_prog, &xdp);
1701 		if (act == XDP_REDIRECT || act == XDP_TX) {
1702 			get_page(alloc_frag->page);
1703 			alloc_frag->offset += buflen;
1704 		}
1705 		err = tun_xdp_act(tun, xdp_prog, &xdp, act);
1706 		if (err < 0)
1707 			goto err_xdp;
1708 		if (err == XDP_REDIRECT)
1709 			xdp_do_flush_map();
1710 		if (err != XDP_PASS)
1711 			goto out;
1712 
1713 		pad = xdp.data - xdp.data_hard_start;
1714 		len = xdp.data_end - xdp.data;
1715 	}
1716 	rcu_read_unlock();
1717 	local_bh_enable();
1718 
1719 	return __tun_build_skb(alloc_frag, buf, buflen, len, pad);
1720 
1721 err_xdp:
1722 	put_page(alloc_frag->page);
1723 out:
1724 	rcu_read_unlock();
1725 	local_bh_enable();
1726 	return NULL;
1727 }
1728 
1729 /* Get packet from user space buffer */
1730 static ssize_t tun_get_user(struct tun_struct *tun, struct tun_file *tfile,
1731 			    void *msg_control, struct iov_iter *from,
1732 			    int noblock, bool more)
1733 {
1734 	struct tun_pi pi = { 0, cpu_to_be16(ETH_P_IP) };
1735 	struct sk_buff *skb;
1736 	size_t total_len = iov_iter_count(from);
1737 	size_t len = total_len, align = tun->align, linear;
1738 	struct virtio_net_hdr gso = { 0 };
1739 	struct tun_pcpu_stats *stats;
1740 	int good_linear;
1741 	int copylen;
1742 	bool zerocopy = false;
1743 	int err;
1744 	u32 rxhash = 0;
1745 	int skb_xdp = 1;
1746 	bool frags = tun_napi_frags_enabled(tfile);
1747 
1748 	if (!(tun->dev->flags & IFF_UP))
1749 		return -EIO;
1750 
1751 	if (!(tun->flags & IFF_NO_PI)) {
1752 		if (len < sizeof(pi))
1753 			return -EINVAL;
1754 		len -= sizeof(pi);
1755 
1756 		if (!copy_from_iter_full(&pi, sizeof(pi), from))
1757 			return -EFAULT;
1758 	}
1759 
1760 	if (tun->flags & IFF_VNET_HDR) {
1761 		int vnet_hdr_sz = READ_ONCE(tun->vnet_hdr_sz);
1762 
1763 		if (len < vnet_hdr_sz)
1764 			return -EINVAL;
1765 		len -= vnet_hdr_sz;
1766 
1767 		if (!copy_from_iter_full(&gso, sizeof(gso), from))
1768 			return -EFAULT;
1769 
1770 		if ((gso.flags & VIRTIO_NET_HDR_F_NEEDS_CSUM) &&
1771 		    tun16_to_cpu(tun, gso.csum_start) + tun16_to_cpu(tun, gso.csum_offset) + 2 > tun16_to_cpu(tun, gso.hdr_len))
1772 			gso.hdr_len = cpu_to_tun16(tun, tun16_to_cpu(tun, gso.csum_start) + tun16_to_cpu(tun, gso.csum_offset) + 2);
1773 
1774 		if (tun16_to_cpu(tun, gso.hdr_len) > len)
1775 			return -EINVAL;
1776 		iov_iter_advance(from, vnet_hdr_sz - sizeof(gso));
1777 	}
1778 
1779 	if ((tun->flags & TUN_TYPE_MASK) == IFF_TAP) {
1780 		align += NET_IP_ALIGN;
1781 		if (unlikely(len < ETH_HLEN ||
1782 			     (gso.hdr_len && tun16_to_cpu(tun, gso.hdr_len) < ETH_HLEN)))
1783 			return -EINVAL;
1784 	}
1785 
1786 	good_linear = SKB_MAX_HEAD(align);
1787 
1788 	if (msg_control) {
1789 		struct iov_iter i = *from;
1790 
1791 		/* There are 256 bytes to be copied in skb, so there is
1792 		 * enough room for skb expand head in case it is used.
1793 		 * The rest of the buffer is mapped from userspace.
1794 		 */
1795 		copylen = gso.hdr_len ? tun16_to_cpu(tun, gso.hdr_len) : GOODCOPY_LEN;
1796 		if (copylen > good_linear)
1797 			copylen = good_linear;
1798 		linear = copylen;
1799 		iov_iter_advance(&i, copylen);
1800 		if (iov_iter_npages(&i, INT_MAX) <= MAX_SKB_FRAGS)
1801 			zerocopy = true;
1802 	}
1803 
1804 	if (!frags && tun_can_build_skb(tun, tfile, len, noblock, zerocopy)) {
1805 		/* For the packet that is not easy to be processed
1806 		 * (e.g gso or jumbo packet), we will do it at after
1807 		 * skb was created with generic XDP routine.
1808 		 */
1809 		skb = tun_build_skb(tun, tfile, from, &gso, len, &skb_xdp);
1810 		if (IS_ERR(skb)) {
1811 			this_cpu_inc(tun->pcpu_stats->rx_dropped);
1812 			return PTR_ERR(skb);
1813 		}
1814 		if (!skb)
1815 			return total_len;
1816 	} else {
1817 		if (!zerocopy) {
1818 			copylen = len;
1819 			if (tun16_to_cpu(tun, gso.hdr_len) > good_linear)
1820 				linear = good_linear;
1821 			else
1822 				linear = tun16_to_cpu(tun, gso.hdr_len);
1823 		}
1824 
1825 		if (frags) {
1826 			mutex_lock(&tfile->napi_mutex);
1827 			skb = tun_napi_alloc_frags(tfile, copylen, from);
1828 			/* tun_napi_alloc_frags() enforces a layout for the skb.
1829 			 * If zerocopy is enabled, then this layout will be
1830 			 * overwritten by zerocopy_sg_from_iter().
1831 			 */
1832 			zerocopy = false;
1833 		} else {
1834 			skb = tun_alloc_skb(tfile, align, copylen, linear,
1835 					    noblock);
1836 		}
1837 
1838 		if (IS_ERR(skb)) {
1839 			if (PTR_ERR(skb) != -EAGAIN)
1840 				this_cpu_inc(tun->pcpu_stats->rx_dropped);
1841 			if (frags)
1842 				mutex_unlock(&tfile->napi_mutex);
1843 			return PTR_ERR(skb);
1844 		}
1845 
1846 		if (zerocopy)
1847 			err = zerocopy_sg_from_iter(skb, from);
1848 		else
1849 			err = skb_copy_datagram_from_iter(skb, 0, from, len);
1850 
1851 		if (err) {
1852 			this_cpu_inc(tun->pcpu_stats->rx_dropped);
1853 			kfree_skb(skb);
1854 			if (frags) {
1855 				tfile->napi.skb = NULL;
1856 				mutex_unlock(&tfile->napi_mutex);
1857 			}
1858 
1859 			return -EFAULT;
1860 		}
1861 	}
1862 
1863 	if (virtio_net_hdr_to_skb(skb, &gso, tun_is_little_endian(tun))) {
1864 		this_cpu_inc(tun->pcpu_stats->rx_frame_errors);
1865 		kfree_skb(skb);
1866 		if (frags) {
1867 			tfile->napi.skb = NULL;
1868 			mutex_unlock(&tfile->napi_mutex);
1869 		}
1870 
1871 		return -EINVAL;
1872 	}
1873 
1874 	switch (tun->flags & TUN_TYPE_MASK) {
1875 	case IFF_TUN:
1876 		if (tun->flags & IFF_NO_PI) {
1877 			u8 ip_version = skb->len ? (skb->data[0] >> 4) : 0;
1878 
1879 			switch (ip_version) {
1880 			case 4:
1881 				pi.proto = htons(ETH_P_IP);
1882 				break;
1883 			case 6:
1884 				pi.proto = htons(ETH_P_IPV6);
1885 				break;
1886 			default:
1887 				this_cpu_inc(tun->pcpu_stats->rx_dropped);
1888 				kfree_skb(skb);
1889 				return -EINVAL;
1890 			}
1891 		}
1892 
1893 		skb_reset_mac_header(skb);
1894 		skb->protocol = pi.proto;
1895 		skb->dev = tun->dev;
1896 		break;
1897 	case IFF_TAP:
1898 		if (!frags)
1899 			skb->protocol = eth_type_trans(skb, tun->dev);
1900 		break;
1901 	}
1902 
1903 	/* copy skb_ubuf_info for callback when skb has no error */
1904 	if (zerocopy) {
1905 		skb_shinfo(skb)->destructor_arg = msg_control;
1906 		skb_shinfo(skb)->tx_flags |= SKBTX_DEV_ZEROCOPY;
1907 		skb_shinfo(skb)->tx_flags |= SKBTX_SHARED_FRAG;
1908 	} else if (msg_control) {
1909 		struct ubuf_info *uarg = msg_control;
1910 		uarg->callback(uarg, false);
1911 	}
1912 
1913 	skb_reset_network_header(skb);
1914 	skb_probe_transport_header(skb, 0);
1915 
1916 	if (skb_xdp) {
1917 		struct bpf_prog *xdp_prog;
1918 		int ret;
1919 
1920 		local_bh_disable();
1921 		rcu_read_lock();
1922 		xdp_prog = rcu_dereference(tun->xdp_prog);
1923 		if (xdp_prog) {
1924 			ret = do_xdp_generic(xdp_prog, skb);
1925 			if (ret != XDP_PASS) {
1926 				rcu_read_unlock();
1927 				local_bh_enable();
1928 				return total_len;
1929 			}
1930 		}
1931 		rcu_read_unlock();
1932 		local_bh_enable();
1933 	}
1934 
1935 	/* Compute the costly rx hash only if needed for flow updates.
1936 	 * We may get a very small possibility of OOO during switching, not
1937 	 * worth to optimize.
1938 	 */
1939 	if (!rcu_access_pointer(tun->steering_prog) && tun->numqueues > 1 &&
1940 	    !tfile->detached)
1941 		rxhash = __skb_get_hash_symmetric(skb);
1942 
1943 	if (frags) {
1944 		/* Exercise flow dissector code path. */
1945 		u32 headlen = eth_get_headlen(skb->data, skb_headlen(skb));
1946 
1947 		if (unlikely(headlen > skb_headlen(skb))) {
1948 			this_cpu_inc(tun->pcpu_stats->rx_dropped);
1949 			napi_free_frags(&tfile->napi);
1950 			mutex_unlock(&tfile->napi_mutex);
1951 			WARN_ON(1);
1952 			return -ENOMEM;
1953 		}
1954 
1955 		local_bh_disable();
1956 		napi_gro_frags(&tfile->napi);
1957 		local_bh_enable();
1958 		mutex_unlock(&tfile->napi_mutex);
1959 	} else if (tfile->napi_enabled) {
1960 		struct sk_buff_head *queue = &tfile->sk.sk_write_queue;
1961 		int queue_len;
1962 
1963 		spin_lock_bh(&queue->lock);
1964 		__skb_queue_tail(queue, skb);
1965 		queue_len = skb_queue_len(queue);
1966 		spin_unlock(&queue->lock);
1967 
1968 		if (!more || queue_len > NAPI_POLL_WEIGHT)
1969 			napi_schedule(&tfile->napi);
1970 
1971 		local_bh_enable();
1972 	} else if (!IS_ENABLED(CONFIG_4KSTACKS)) {
1973 		tun_rx_batched(tun, tfile, skb, more);
1974 	} else {
1975 		netif_rx_ni(skb);
1976 	}
1977 
1978 	stats = get_cpu_ptr(tun->pcpu_stats);
1979 	u64_stats_update_begin(&stats->syncp);
1980 	stats->rx_packets++;
1981 	stats->rx_bytes += len;
1982 	u64_stats_update_end(&stats->syncp);
1983 	put_cpu_ptr(stats);
1984 
1985 	if (rxhash)
1986 		tun_flow_update(tun, rxhash, tfile);
1987 
1988 	return total_len;
1989 }
1990 
1991 static ssize_t tun_chr_write_iter(struct kiocb *iocb, struct iov_iter *from)
1992 {
1993 	struct file *file = iocb->ki_filp;
1994 	struct tun_file *tfile = file->private_data;
1995 	struct tun_struct *tun = tun_get(tfile);
1996 	ssize_t result;
1997 
1998 	if (!tun)
1999 		return -EBADFD;
2000 
2001 	result = tun_get_user(tun, tfile, NULL, from,
2002 			      file->f_flags & O_NONBLOCK, false);
2003 
2004 	tun_put(tun);
2005 	return result;
2006 }
2007 
2008 static ssize_t tun_put_user_xdp(struct tun_struct *tun,
2009 				struct tun_file *tfile,
2010 				struct xdp_frame *xdp_frame,
2011 				struct iov_iter *iter)
2012 {
2013 	int vnet_hdr_sz = 0;
2014 	size_t size = xdp_frame->len;
2015 	struct tun_pcpu_stats *stats;
2016 	size_t ret;
2017 
2018 	if (tun->flags & IFF_VNET_HDR) {
2019 		struct virtio_net_hdr gso = { 0 };
2020 
2021 		vnet_hdr_sz = READ_ONCE(tun->vnet_hdr_sz);
2022 		if (unlikely(iov_iter_count(iter) < vnet_hdr_sz))
2023 			return -EINVAL;
2024 		if (unlikely(copy_to_iter(&gso, sizeof(gso), iter) !=
2025 			     sizeof(gso)))
2026 			return -EFAULT;
2027 		iov_iter_advance(iter, vnet_hdr_sz - sizeof(gso));
2028 	}
2029 
2030 	ret = copy_to_iter(xdp_frame->data, size, iter) + vnet_hdr_sz;
2031 
2032 	stats = get_cpu_ptr(tun->pcpu_stats);
2033 	u64_stats_update_begin(&stats->syncp);
2034 	stats->tx_packets++;
2035 	stats->tx_bytes += ret;
2036 	u64_stats_update_end(&stats->syncp);
2037 	put_cpu_ptr(tun->pcpu_stats);
2038 
2039 	return ret;
2040 }
2041 
2042 /* Put packet to the user space buffer */
2043 static ssize_t tun_put_user(struct tun_struct *tun,
2044 			    struct tun_file *tfile,
2045 			    struct sk_buff *skb,
2046 			    struct iov_iter *iter)
2047 {
2048 	struct tun_pi pi = { 0, skb->protocol };
2049 	struct tun_pcpu_stats *stats;
2050 	ssize_t total;
2051 	int vlan_offset = 0;
2052 	int vlan_hlen = 0;
2053 	int vnet_hdr_sz = 0;
2054 
2055 	if (skb_vlan_tag_present(skb))
2056 		vlan_hlen = VLAN_HLEN;
2057 
2058 	if (tun->flags & IFF_VNET_HDR)
2059 		vnet_hdr_sz = READ_ONCE(tun->vnet_hdr_sz);
2060 
2061 	total = skb->len + vlan_hlen + vnet_hdr_sz;
2062 
2063 	if (!(tun->flags & IFF_NO_PI)) {
2064 		if (iov_iter_count(iter) < sizeof(pi))
2065 			return -EINVAL;
2066 
2067 		total += sizeof(pi);
2068 		if (iov_iter_count(iter) < total) {
2069 			/* Packet will be striped */
2070 			pi.flags |= TUN_PKT_STRIP;
2071 		}
2072 
2073 		if (copy_to_iter(&pi, sizeof(pi), iter) != sizeof(pi))
2074 			return -EFAULT;
2075 	}
2076 
2077 	if (vnet_hdr_sz) {
2078 		struct virtio_net_hdr gso;
2079 
2080 		if (iov_iter_count(iter) < vnet_hdr_sz)
2081 			return -EINVAL;
2082 
2083 		if (virtio_net_hdr_from_skb(skb, &gso,
2084 					    tun_is_little_endian(tun), true,
2085 					    vlan_hlen)) {
2086 			struct skb_shared_info *sinfo = skb_shinfo(skb);
2087 			pr_err("unexpected GSO type: "
2088 			       "0x%x, gso_size %d, hdr_len %d\n",
2089 			       sinfo->gso_type, tun16_to_cpu(tun, gso.gso_size),
2090 			       tun16_to_cpu(tun, gso.hdr_len));
2091 			print_hex_dump(KERN_ERR, "tun: ",
2092 				       DUMP_PREFIX_NONE,
2093 				       16, 1, skb->head,
2094 				       min((int)tun16_to_cpu(tun, gso.hdr_len), 64), true);
2095 			WARN_ON_ONCE(1);
2096 			return -EINVAL;
2097 		}
2098 
2099 		if (copy_to_iter(&gso, sizeof(gso), iter) != sizeof(gso))
2100 			return -EFAULT;
2101 
2102 		iov_iter_advance(iter, vnet_hdr_sz - sizeof(gso));
2103 	}
2104 
2105 	if (vlan_hlen) {
2106 		int ret;
2107 		struct veth veth;
2108 
2109 		veth.h_vlan_proto = skb->vlan_proto;
2110 		veth.h_vlan_TCI = htons(skb_vlan_tag_get(skb));
2111 
2112 		vlan_offset = offsetof(struct vlan_ethhdr, h_vlan_proto);
2113 
2114 		ret = skb_copy_datagram_iter(skb, 0, iter, vlan_offset);
2115 		if (ret || !iov_iter_count(iter))
2116 			goto done;
2117 
2118 		ret = copy_to_iter(&veth, sizeof(veth), iter);
2119 		if (ret != sizeof(veth) || !iov_iter_count(iter))
2120 			goto done;
2121 	}
2122 
2123 	skb_copy_datagram_iter(skb, vlan_offset, iter, skb->len - vlan_offset);
2124 
2125 done:
2126 	/* caller is in process context, */
2127 	stats = get_cpu_ptr(tun->pcpu_stats);
2128 	u64_stats_update_begin(&stats->syncp);
2129 	stats->tx_packets++;
2130 	stats->tx_bytes += skb->len + vlan_hlen;
2131 	u64_stats_update_end(&stats->syncp);
2132 	put_cpu_ptr(tun->pcpu_stats);
2133 
2134 	return total;
2135 }
2136 
2137 static void *tun_ring_recv(struct tun_file *tfile, int noblock, int *err)
2138 {
2139 	DECLARE_WAITQUEUE(wait, current);
2140 	void *ptr = NULL;
2141 	int error = 0;
2142 
2143 	ptr = ptr_ring_consume(&tfile->tx_ring);
2144 	if (ptr)
2145 		goto out;
2146 	if (noblock) {
2147 		error = -EAGAIN;
2148 		goto out;
2149 	}
2150 
2151 	add_wait_queue(&tfile->wq.wait, &wait);
2152 	current->state = TASK_INTERRUPTIBLE;
2153 
2154 	while (1) {
2155 		ptr = ptr_ring_consume(&tfile->tx_ring);
2156 		if (ptr)
2157 			break;
2158 		if (signal_pending(current)) {
2159 			error = -ERESTARTSYS;
2160 			break;
2161 		}
2162 		if (tfile->socket.sk->sk_shutdown & RCV_SHUTDOWN) {
2163 			error = -EFAULT;
2164 			break;
2165 		}
2166 
2167 		schedule();
2168 	}
2169 
2170 	current->state = TASK_RUNNING;
2171 	remove_wait_queue(&tfile->wq.wait, &wait);
2172 
2173 out:
2174 	*err = error;
2175 	return ptr;
2176 }
2177 
2178 static ssize_t tun_do_read(struct tun_struct *tun, struct tun_file *tfile,
2179 			   struct iov_iter *to,
2180 			   int noblock, void *ptr)
2181 {
2182 	ssize_t ret;
2183 	int err;
2184 
2185 	tun_debug(KERN_INFO, tun, "tun_do_read\n");
2186 
2187 	if (!iov_iter_count(to)) {
2188 		tun_ptr_free(ptr);
2189 		return 0;
2190 	}
2191 
2192 	if (!ptr) {
2193 		/* Read frames from ring */
2194 		ptr = tun_ring_recv(tfile, noblock, &err);
2195 		if (!ptr)
2196 			return err;
2197 	}
2198 
2199 	if (tun_is_xdp_frame(ptr)) {
2200 		struct xdp_frame *xdpf = tun_ptr_to_xdp(ptr);
2201 
2202 		ret = tun_put_user_xdp(tun, tfile, xdpf, to);
2203 		xdp_return_frame(xdpf);
2204 	} else {
2205 		struct sk_buff *skb = ptr;
2206 
2207 		ret = tun_put_user(tun, tfile, skb, to);
2208 		if (unlikely(ret < 0))
2209 			kfree_skb(skb);
2210 		else
2211 			consume_skb(skb);
2212 	}
2213 
2214 	return ret;
2215 }
2216 
2217 static ssize_t tun_chr_read_iter(struct kiocb *iocb, struct iov_iter *to)
2218 {
2219 	struct file *file = iocb->ki_filp;
2220 	struct tun_file *tfile = file->private_data;
2221 	struct tun_struct *tun = tun_get(tfile);
2222 	ssize_t len = iov_iter_count(to), ret;
2223 
2224 	if (!tun)
2225 		return -EBADFD;
2226 	ret = tun_do_read(tun, tfile, to, file->f_flags & O_NONBLOCK, NULL);
2227 	ret = min_t(ssize_t, ret, len);
2228 	if (ret > 0)
2229 		iocb->ki_pos = ret;
2230 	tun_put(tun);
2231 	return ret;
2232 }
2233 
2234 static void tun_prog_free(struct rcu_head *rcu)
2235 {
2236 	struct tun_prog *prog = container_of(rcu, struct tun_prog, rcu);
2237 
2238 	bpf_prog_destroy(prog->prog);
2239 	kfree(prog);
2240 }
2241 
2242 static int __tun_set_ebpf(struct tun_struct *tun,
2243 			  struct tun_prog __rcu **prog_p,
2244 			  struct bpf_prog *prog)
2245 {
2246 	struct tun_prog *old, *new = NULL;
2247 
2248 	if (prog) {
2249 		new = kmalloc(sizeof(*new), GFP_KERNEL);
2250 		if (!new)
2251 			return -ENOMEM;
2252 		new->prog = prog;
2253 	}
2254 
2255 	spin_lock_bh(&tun->lock);
2256 	old = rcu_dereference_protected(*prog_p,
2257 					lockdep_is_held(&tun->lock));
2258 	rcu_assign_pointer(*prog_p, new);
2259 	spin_unlock_bh(&tun->lock);
2260 
2261 	if (old)
2262 		call_rcu(&old->rcu, tun_prog_free);
2263 
2264 	return 0;
2265 }
2266 
2267 static void tun_free_netdev(struct net_device *dev)
2268 {
2269 	struct tun_struct *tun = netdev_priv(dev);
2270 
2271 	BUG_ON(!(list_empty(&tun->disabled)));
2272 	free_percpu(tun->pcpu_stats);
2273 	tun_flow_uninit(tun);
2274 	security_tun_dev_free_security(tun->security);
2275 	__tun_set_ebpf(tun, &tun->steering_prog, NULL);
2276 	__tun_set_ebpf(tun, &tun->filter_prog, NULL);
2277 }
2278 
2279 static void tun_setup(struct net_device *dev)
2280 {
2281 	struct tun_struct *tun = netdev_priv(dev);
2282 
2283 	tun->owner = INVALID_UID;
2284 	tun->group = INVALID_GID;
2285 	tun_default_link_ksettings(dev, &tun->link_ksettings);
2286 
2287 	dev->ethtool_ops = &tun_ethtool_ops;
2288 	dev->needs_free_netdev = true;
2289 	dev->priv_destructor = tun_free_netdev;
2290 	/* We prefer our own queue length */
2291 	dev->tx_queue_len = TUN_READQ_SIZE;
2292 }
2293 
2294 /* Trivial set of netlink ops to allow deleting tun or tap
2295  * device with netlink.
2296  */
2297 static int tun_validate(struct nlattr *tb[], struct nlattr *data[],
2298 			struct netlink_ext_ack *extack)
2299 {
2300 	if (!data)
2301 		return 0;
2302 	return -EINVAL;
2303 }
2304 
2305 static size_t tun_get_size(const struct net_device *dev)
2306 {
2307 	BUILD_BUG_ON(sizeof(u32) != sizeof(uid_t));
2308 	BUILD_BUG_ON(sizeof(u32) != sizeof(gid_t));
2309 
2310 	return nla_total_size(sizeof(uid_t)) + /* OWNER */
2311 	       nla_total_size(sizeof(gid_t)) + /* GROUP */
2312 	       nla_total_size(sizeof(u8)) + /* TYPE */
2313 	       nla_total_size(sizeof(u8)) + /* PI */
2314 	       nla_total_size(sizeof(u8)) + /* VNET_HDR */
2315 	       nla_total_size(sizeof(u8)) + /* PERSIST */
2316 	       nla_total_size(sizeof(u8)) + /* MULTI_QUEUE */
2317 	       nla_total_size(sizeof(u32)) + /* NUM_QUEUES */
2318 	       nla_total_size(sizeof(u32)) + /* NUM_DISABLED_QUEUES */
2319 	       0;
2320 }
2321 
2322 static int tun_fill_info(struct sk_buff *skb, const struct net_device *dev)
2323 {
2324 	struct tun_struct *tun = netdev_priv(dev);
2325 
2326 	if (nla_put_u8(skb, IFLA_TUN_TYPE, tun->flags & TUN_TYPE_MASK))
2327 		goto nla_put_failure;
2328 	if (uid_valid(tun->owner) &&
2329 	    nla_put_u32(skb, IFLA_TUN_OWNER,
2330 			from_kuid_munged(current_user_ns(), tun->owner)))
2331 		goto nla_put_failure;
2332 	if (gid_valid(tun->group) &&
2333 	    nla_put_u32(skb, IFLA_TUN_GROUP,
2334 			from_kgid_munged(current_user_ns(), tun->group)))
2335 		goto nla_put_failure;
2336 	if (nla_put_u8(skb, IFLA_TUN_PI, !(tun->flags & IFF_NO_PI)))
2337 		goto nla_put_failure;
2338 	if (nla_put_u8(skb, IFLA_TUN_VNET_HDR, !!(tun->flags & IFF_VNET_HDR)))
2339 		goto nla_put_failure;
2340 	if (nla_put_u8(skb, IFLA_TUN_PERSIST, !!(tun->flags & IFF_PERSIST)))
2341 		goto nla_put_failure;
2342 	if (nla_put_u8(skb, IFLA_TUN_MULTI_QUEUE,
2343 		       !!(tun->flags & IFF_MULTI_QUEUE)))
2344 		goto nla_put_failure;
2345 	if (tun->flags & IFF_MULTI_QUEUE) {
2346 		if (nla_put_u32(skb, IFLA_TUN_NUM_QUEUES, tun->numqueues))
2347 			goto nla_put_failure;
2348 		if (nla_put_u32(skb, IFLA_TUN_NUM_DISABLED_QUEUES,
2349 				tun->numdisabled))
2350 			goto nla_put_failure;
2351 	}
2352 
2353 	return 0;
2354 
2355 nla_put_failure:
2356 	return -EMSGSIZE;
2357 }
2358 
2359 static struct rtnl_link_ops tun_link_ops __read_mostly = {
2360 	.kind		= DRV_NAME,
2361 	.priv_size	= sizeof(struct tun_struct),
2362 	.setup		= tun_setup,
2363 	.validate	= tun_validate,
2364 	.get_size       = tun_get_size,
2365 	.fill_info      = tun_fill_info,
2366 };
2367 
2368 static void tun_sock_write_space(struct sock *sk)
2369 {
2370 	struct tun_file *tfile;
2371 	wait_queue_head_t *wqueue;
2372 
2373 	if (!sock_writeable(sk))
2374 		return;
2375 
2376 	if (!test_and_clear_bit(SOCKWQ_ASYNC_NOSPACE, &sk->sk_socket->flags))
2377 		return;
2378 
2379 	wqueue = sk_sleep(sk);
2380 	if (wqueue && waitqueue_active(wqueue))
2381 		wake_up_interruptible_sync_poll(wqueue, EPOLLOUT |
2382 						EPOLLWRNORM | EPOLLWRBAND);
2383 
2384 	tfile = container_of(sk, struct tun_file, sk);
2385 	kill_fasync(&tfile->fasync, SIGIO, POLL_OUT);
2386 }
2387 
2388 static void tun_put_page(struct tun_page *tpage)
2389 {
2390 	if (tpage->page)
2391 		__page_frag_cache_drain(tpage->page, tpage->count);
2392 }
2393 
2394 static int tun_xdp_one(struct tun_struct *tun,
2395 		       struct tun_file *tfile,
2396 		       struct xdp_buff *xdp, int *flush,
2397 		       struct tun_page *tpage)
2398 {
2399 	struct tun_xdp_hdr *hdr = xdp->data_hard_start;
2400 	struct virtio_net_hdr *gso = &hdr->gso;
2401 	struct tun_pcpu_stats *stats;
2402 	struct bpf_prog *xdp_prog;
2403 	struct sk_buff *skb = NULL;
2404 	u32 rxhash = 0, act;
2405 	int buflen = hdr->buflen;
2406 	int err = 0;
2407 	bool skb_xdp = false;
2408 	struct page *page;
2409 
2410 	xdp_prog = rcu_dereference(tun->xdp_prog);
2411 	if (xdp_prog) {
2412 		if (gso->gso_type) {
2413 			skb_xdp = true;
2414 			goto build;
2415 		}
2416 		xdp_set_data_meta_invalid(xdp);
2417 		xdp->rxq = &tfile->xdp_rxq;
2418 
2419 		act = bpf_prog_run_xdp(xdp_prog, xdp);
2420 		err = tun_xdp_act(tun, xdp_prog, xdp, act);
2421 		if (err < 0) {
2422 			put_page(virt_to_head_page(xdp->data));
2423 			return err;
2424 		}
2425 
2426 		switch (err) {
2427 		case XDP_REDIRECT:
2428 			*flush = true;
2429 			/* fall through */
2430 		case XDP_TX:
2431 			return 0;
2432 		case XDP_PASS:
2433 			break;
2434 		default:
2435 			page = virt_to_head_page(xdp->data);
2436 			if (tpage->page == page) {
2437 				++tpage->count;
2438 			} else {
2439 				tun_put_page(tpage);
2440 				tpage->page = page;
2441 				tpage->count = 1;
2442 			}
2443 			return 0;
2444 		}
2445 	}
2446 
2447 build:
2448 	skb = build_skb(xdp->data_hard_start, buflen);
2449 	if (!skb) {
2450 		err = -ENOMEM;
2451 		goto out;
2452 	}
2453 
2454 	skb_reserve(skb, xdp->data - xdp->data_hard_start);
2455 	skb_put(skb, xdp->data_end - xdp->data);
2456 
2457 	if (virtio_net_hdr_to_skb(skb, gso, tun_is_little_endian(tun))) {
2458 		this_cpu_inc(tun->pcpu_stats->rx_frame_errors);
2459 		kfree_skb(skb);
2460 		err = -EINVAL;
2461 		goto out;
2462 	}
2463 
2464 	skb->protocol = eth_type_trans(skb, tun->dev);
2465 	skb_reset_network_header(skb);
2466 	skb_probe_transport_header(skb, 0);
2467 
2468 	if (skb_xdp) {
2469 		err = do_xdp_generic(xdp_prog, skb);
2470 		if (err != XDP_PASS)
2471 			goto out;
2472 	}
2473 
2474 	if (!rcu_dereference(tun->steering_prog) && tun->numqueues > 1 &&
2475 	    !tfile->detached)
2476 		rxhash = __skb_get_hash_symmetric(skb);
2477 
2478 	skb_record_rx_queue(skb, tfile->queue_index);
2479 	netif_receive_skb(skb);
2480 
2481 	stats = get_cpu_ptr(tun->pcpu_stats);
2482 	u64_stats_update_begin(&stats->syncp);
2483 	stats->rx_packets++;
2484 	stats->rx_bytes += skb->len;
2485 	u64_stats_update_end(&stats->syncp);
2486 	put_cpu_ptr(stats);
2487 
2488 	if (rxhash)
2489 		tun_flow_update(tun, rxhash, tfile);
2490 
2491 out:
2492 	return err;
2493 }
2494 
2495 static int tun_sendmsg(struct socket *sock, struct msghdr *m, size_t total_len)
2496 {
2497 	int ret, i;
2498 	struct tun_file *tfile = container_of(sock, struct tun_file, socket);
2499 	struct tun_struct *tun = tun_get(tfile);
2500 	struct tun_msg_ctl *ctl = m->msg_control;
2501 	struct xdp_buff *xdp;
2502 
2503 	if (!tun)
2504 		return -EBADFD;
2505 
2506 	if (ctl && (ctl->type == TUN_MSG_PTR)) {
2507 		struct tun_page tpage;
2508 		int n = ctl->num;
2509 		int flush = 0;
2510 
2511 		memset(&tpage, 0, sizeof(tpage));
2512 
2513 		local_bh_disable();
2514 		rcu_read_lock();
2515 
2516 		for (i = 0; i < n; i++) {
2517 			xdp = &((struct xdp_buff *)ctl->ptr)[i];
2518 			tun_xdp_one(tun, tfile, xdp, &flush, &tpage);
2519 		}
2520 
2521 		if (flush)
2522 			xdp_do_flush_map();
2523 
2524 		rcu_read_unlock();
2525 		local_bh_enable();
2526 
2527 		tun_put_page(&tpage);
2528 
2529 		ret = total_len;
2530 		goto out;
2531 	}
2532 
2533 	ret = tun_get_user(tun, tfile, ctl ? ctl->ptr : NULL, &m->msg_iter,
2534 			   m->msg_flags & MSG_DONTWAIT,
2535 			   m->msg_flags & MSG_MORE);
2536 out:
2537 	tun_put(tun);
2538 	return ret;
2539 }
2540 
2541 static int tun_recvmsg(struct socket *sock, struct msghdr *m, size_t total_len,
2542 		       int flags)
2543 {
2544 	struct tun_file *tfile = container_of(sock, struct tun_file, socket);
2545 	struct tun_struct *tun = tun_get(tfile);
2546 	void *ptr = m->msg_control;
2547 	int ret;
2548 
2549 	if (!tun) {
2550 		ret = -EBADFD;
2551 		goto out_free;
2552 	}
2553 
2554 	if (flags & ~(MSG_DONTWAIT|MSG_TRUNC|MSG_ERRQUEUE)) {
2555 		ret = -EINVAL;
2556 		goto out_put_tun;
2557 	}
2558 	if (flags & MSG_ERRQUEUE) {
2559 		ret = sock_recv_errqueue(sock->sk, m, total_len,
2560 					 SOL_PACKET, TUN_TX_TIMESTAMP);
2561 		goto out;
2562 	}
2563 	ret = tun_do_read(tun, tfile, &m->msg_iter, flags & MSG_DONTWAIT, ptr);
2564 	if (ret > (ssize_t)total_len) {
2565 		m->msg_flags |= MSG_TRUNC;
2566 		ret = flags & MSG_TRUNC ? ret : total_len;
2567 	}
2568 out:
2569 	tun_put(tun);
2570 	return ret;
2571 
2572 out_put_tun:
2573 	tun_put(tun);
2574 out_free:
2575 	tun_ptr_free(ptr);
2576 	return ret;
2577 }
2578 
2579 static int tun_ptr_peek_len(void *ptr)
2580 {
2581 	if (likely(ptr)) {
2582 		if (tun_is_xdp_frame(ptr)) {
2583 			struct xdp_frame *xdpf = tun_ptr_to_xdp(ptr);
2584 
2585 			return xdpf->len;
2586 		}
2587 		return __skb_array_len_with_tag(ptr);
2588 	} else {
2589 		return 0;
2590 	}
2591 }
2592 
2593 static int tun_peek_len(struct socket *sock)
2594 {
2595 	struct tun_file *tfile = container_of(sock, struct tun_file, socket);
2596 	struct tun_struct *tun;
2597 	int ret = 0;
2598 
2599 	tun = tun_get(tfile);
2600 	if (!tun)
2601 		return 0;
2602 
2603 	ret = PTR_RING_PEEK_CALL(&tfile->tx_ring, tun_ptr_peek_len);
2604 	tun_put(tun);
2605 
2606 	return ret;
2607 }
2608 
2609 /* Ops structure to mimic raw sockets with tun */
2610 static const struct proto_ops tun_socket_ops = {
2611 	.peek_len = tun_peek_len,
2612 	.sendmsg = tun_sendmsg,
2613 	.recvmsg = tun_recvmsg,
2614 };
2615 
2616 static struct proto tun_proto = {
2617 	.name		= "tun",
2618 	.owner		= THIS_MODULE,
2619 	.obj_size	= sizeof(struct tun_file),
2620 };
2621 
2622 static int tun_flags(struct tun_struct *tun)
2623 {
2624 	return tun->flags & (TUN_FEATURES | IFF_PERSIST | IFF_TUN | IFF_TAP);
2625 }
2626 
2627 static ssize_t tun_show_flags(struct device *dev, struct device_attribute *attr,
2628 			      char *buf)
2629 {
2630 	struct tun_struct *tun = netdev_priv(to_net_dev(dev));
2631 	return sprintf(buf, "0x%x\n", tun_flags(tun));
2632 }
2633 
2634 static ssize_t tun_show_owner(struct device *dev, struct device_attribute *attr,
2635 			      char *buf)
2636 {
2637 	struct tun_struct *tun = netdev_priv(to_net_dev(dev));
2638 	return uid_valid(tun->owner)?
2639 		sprintf(buf, "%u\n",
2640 			from_kuid_munged(current_user_ns(), tun->owner)):
2641 		sprintf(buf, "-1\n");
2642 }
2643 
2644 static ssize_t tun_show_group(struct device *dev, struct device_attribute *attr,
2645 			      char *buf)
2646 {
2647 	struct tun_struct *tun = netdev_priv(to_net_dev(dev));
2648 	return gid_valid(tun->group) ?
2649 		sprintf(buf, "%u\n",
2650 			from_kgid_munged(current_user_ns(), tun->group)):
2651 		sprintf(buf, "-1\n");
2652 }
2653 
2654 static DEVICE_ATTR(tun_flags, 0444, tun_show_flags, NULL);
2655 static DEVICE_ATTR(owner, 0444, tun_show_owner, NULL);
2656 static DEVICE_ATTR(group, 0444, tun_show_group, NULL);
2657 
2658 static struct attribute *tun_dev_attrs[] = {
2659 	&dev_attr_tun_flags.attr,
2660 	&dev_attr_owner.attr,
2661 	&dev_attr_group.attr,
2662 	NULL
2663 };
2664 
2665 static const struct attribute_group tun_attr_group = {
2666 	.attrs = tun_dev_attrs
2667 };
2668 
2669 static int tun_set_iff(struct net *net, struct file *file, struct ifreq *ifr)
2670 {
2671 	struct tun_struct *tun;
2672 	struct tun_file *tfile = file->private_data;
2673 	struct net_device *dev;
2674 	int err;
2675 
2676 	if (tfile->detached)
2677 		return -EINVAL;
2678 
2679 	if ((ifr->ifr_flags & IFF_NAPI_FRAGS)) {
2680 		if (!capable(CAP_NET_ADMIN))
2681 			return -EPERM;
2682 
2683 		if (!(ifr->ifr_flags & IFF_NAPI) ||
2684 		    (ifr->ifr_flags & TUN_TYPE_MASK) != IFF_TAP)
2685 			return -EINVAL;
2686 	}
2687 
2688 	dev = __dev_get_by_name(net, ifr->ifr_name);
2689 	if (dev) {
2690 		if (ifr->ifr_flags & IFF_TUN_EXCL)
2691 			return -EBUSY;
2692 		if ((ifr->ifr_flags & IFF_TUN) && dev->netdev_ops == &tun_netdev_ops)
2693 			tun = netdev_priv(dev);
2694 		else if ((ifr->ifr_flags & IFF_TAP) && dev->netdev_ops == &tap_netdev_ops)
2695 			tun = netdev_priv(dev);
2696 		else
2697 			return -EINVAL;
2698 
2699 		if (!!(ifr->ifr_flags & IFF_MULTI_QUEUE) !=
2700 		    !!(tun->flags & IFF_MULTI_QUEUE))
2701 			return -EINVAL;
2702 
2703 		if (tun_not_capable(tun))
2704 			return -EPERM;
2705 		err = security_tun_dev_open(tun->security);
2706 		if (err < 0)
2707 			return err;
2708 
2709 		err = tun_attach(tun, file, ifr->ifr_flags & IFF_NOFILTER,
2710 				 ifr->ifr_flags & IFF_NAPI,
2711 				 ifr->ifr_flags & IFF_NAPI_FRAGS);
2712 		if (err < 0)
2713 			return err;
2714 
2715 		if (tun->flags & IFF_MULTI_QUEUE &&
2716 		    (tun->numqueues + tun->numdisabled > 1)) {
2717 			/* One or more queue has already been attached, no need
2718 			 * to initialize the device again.
2719 			 */
2720 			netdev_state_change(dev);
2721 			return 0;
2722 		}
2723 
2724 		tun->flags = (tun->flags & ~TUN_FEATURES) |
2725 			      (ifr->ifr_flags & TUN_FEATURES);
2726 
2727 		netdev_state_change(dev);
2728 	} else {
2729 		char *name;
2730 		unsigned long flags = 0;
2731 		int queues = ifr->ifr_flags & IFF_MULTI_QUEUE ?
2732 			     MAX_TAP_QUEUES : 1;
2733 
2734 		if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
2735 			return -EPERM;
2736 		err = security_tun_dev_create();
2737 		if (err < 0)
2738 			return err;
2739 
2740 		/* Set dev type */
2741 		if (ifr->ifr_flags & IFF_TUN) {
2742 			/* TUN device */
2743 			flags |= IFF_TUN;
2744 			name = "tun%d";
2745 		} else if (ifr->ifr_flags & IFF_TAP) {
2746 			/* TAP device */
2747 			flags |= IFF_TAP;
2748 			name = "tap%d";
2749 		} else
2750 			return -EINVAL;
2751 
2752 		if (*ifr->ifr_name)
2753 			name = ifr->ifr_name;
2754 
2755 		dev = alloc_netdev_mqs(sizeof(struct tun_struct), name,
2756 				       NET_NAME_UNKNOWN, tun_setup, queues,
2757 				       queues);
2758 
2759 		if (!dev)
2760 			return -ENOMEM;
2761 		err = dev_get_valid_name(net, dev, name);
2762 		if (err < 0)
2763 			goto err_free_dev;
2764 
2765 		dev_net_set(dev, net);
2766 		dev->rtnl_link_ops = &tun_link_ops;
2767 		dev->ifindex = tfile->ifindex;
2768 		dev->sysfs_groups[0] = &tun_attr_group;
2769 
2770 		tun = netdev_priv(dev);
2771 		tun->dev = dev;
2772 		tun->flags = flags;
2773 		tun->txflt.count = 0;
2774 		tun->vnet_hdr_sz = sizeof(struct virtio_net_hdr);
2775 
2776 		tun->align = NET_SKB_PAD;
2777 		tun->filter_attached = false;
2778 		tun->sndbuf = tfile->socket.sk->sk_sndbuf;
2779 		tun->rx_batched = 0;
2780 		RCU_INIT_POINTER(tun->steering_prog, NULL);
2781 
2782 		tun->pcpu_stats = netdev_alloc_pcpu_stats(struct tun_pcpu_stats);
2783 		if (!tun->pcpu_stats) {
2784 			err = -ENOMEM;
2785 			goto err_free_dev;
2786 		}
2787 
2788 		spin_lock_init(&tun->lock);
2789 
2790 		err = security_tun_dev_alloc_security(&tun->security);
2791 		if (err < 0)
2792 			goto err_free_stat;
2793 
2794 		tun_net_init(dev);
2795 		tun_flow_init(tun);
2796 
2797 		dev->hw_features = NETIF_F_SG | NETIF_F_FRAGLIST |
2798 				   TUN_USER_FEATURES | NETIF_F_HW_VLAN_CTAG_TX |
2799 				   NETIF_F_HW_VLAN_STAG_TX;
2800 		dev->features = dev->hw_features | NETIF_F_LLTX;
2801 		dev->vlan_features = dev->features &
2802 				     ~(NETIF_F_HW_VLAN_CTAG_TX |
2803 				       NETIF_F_HW_VLAN_STAG_TX);
2804 
2805 		tun->flags = (tun->flags & ~TUN_FEATURES) |
2806 			      (ifr->ifr_flags & TUN_FEATURES);
2807 
2808 		INIT_LIST_HEAD(&tun->disabled);
2809 		err = tun_attach(tun, file, false, ifr->ifr_flags & IFF_NAPI,
2810 				 ifr->ifr_flags & IFF_NAPI_FRAGS);
2811 		if (err < 0)
2812 			goto err_free_flow;
2813 
2814 		err = register_netdevice(tun->dev);
2815 		if (err < 0)
2816 			goto err_detach;
2817 	}
2818 
2819 	netif_carrier_on(tun->dev);
2820 
2821 	tun_debug(KERN_INFO, tun, "tun_set_iff\n");
2822 
2823 	/* Make sure persistent devices do not get stuck in
2824 	 * xoff state.
2825 	 */
2826 	if (netif_running(tun->dev))
2827 		netif_tx_wake_all_queues(tun->dev);
2828 
2829 	strcpy(ifr->ifr_name, tun->dev->name);
2830 	return 0;
2831 
2832 err_detach:
2833 	tun_detach_all(dev);
2834 	/* register_netdevice() already called tun_free_netdev() */
2835 	goto err_free_dev;
2836 
2837 err_free_flow:
2838 	tun_flow_uninit(tun);
2839 	security_tun_dev_free_security(tun->security);
2840 err_free_stat:
2841 	free_percpu(tun->pcpu_stats);
2842 err_free_dev:
2843 	free_netdev(dev);
2844 	return err;
2845 }
2846 
2847 static void tun_get_iff(struct net *net, struct tun_struct *tun,
2848 		       struct ifreq *ifr)
2849 {
2850 	tun_debug(KERN_INFO, tun, "tun_get_iff\n");
2851 
2852 	strcpy(ifr->ifr_name, tun->dev->name);
2853 
2854 	ifr->ifr_flags = tun_flags(tun);
2855 
2856 }
2857 
2858 /* This is like a cut-down ethtool ops, except done via tun fd so no
2859  * privs required. */
2860 static int set_offload(struct tun_struct *tun, unsigned long arg)
2861 {
2862 	netdev_features_t features = 0;
2863 
2864 	if (arg & TUN_F_CSUM) {
2865 		features |= NETIF_F_HW_CSUM;
2866 		arg &= ~TUN_F_CSUM;
2867 
2868 		if (arg & (TUN_F_TSO4|TUN_F_TSO6)) {
2869 			if (arg & TUN_F_TSO_ECN) {
2870 				features |= NETIF_F_TSO_ECN;
2871 				arg &= ~TUN_F_TSO_ECN;
2872 			}
2873 			if (arg & TUN_F_TSO4)
2874 				features |= NETIF_F_TSO;
2875 			if (arg & TUN_F_TSO6)
2876 				features |= NETIF_F_TSO6;
2877 			arg &= ~(TUN_F_TSO4|TUN_F_TSO6);
2878 		}
2879 
2880 		arg &= ~TUN_F_UFO;
2881 	}
2882 
2883 	/* This gives the user a way to test for new features in future by
2884 	 * trying to set them. */
2885 	if (arg)
2886 		return -EINVAL;
2887 
2888 	tun->set_features = features;
2889 	tun->dev->wanted_features &= ~TUN_USER_FEATURES;
2890 	tun->dev->wanted_features |= features;
2891 	netdev_update_features(tun->dev);
2892 
2893 	return 0;
2894 }
2895 
2896 static void tun_detach_filter(struct tun_struct *tun, int n)
2897 {
2898 	int i;
2899 	struct tun_file *tfile;
2900 
2901 	for (i = 0; i < n; i++) {
2902 		tfile = rtnl_dereference(tun->tfiles[i]);
2903 		lock_sock(tfile->socket.sk);
2904 		sk_detach_filter(tfile->socket.sk);
2905 		release_sock(tfile->socket.sk);
2906 	}
2907 
2908 	tun->filter_attached = false;
2909 }
2910 
2911 static int tun_attach_filter(struct tun_struct *tun)
2912 {
2913 	int i, ret = 0;
2914 	struct tun_file *tfile;
2915 
2916 	for (i = 0; i < tun->numqueues; i++) {
2917 		tfile = rtnl_dereference(tun->tfiles[i]);
2918 		lock_sock(tfile->socket.sk);
2919 		ret = sk_attach_filter(&tun->fprog, tfile->socket.sk);
2920 		release_sock(tfile->socket.sk);
2921 		if (ret) {
2922 			tun_detach_filter(tun, i);
2923 			return ret;
2924 		}
2925 	}
2926 
2927 	tun->filter_attached = true;
2928 	return ret;
2929 }
2930 
2931 static void tun_set_sndbuf(struct tun_struct *tun)
2932 {
2933 	struct tun_file *tfile;
2934 	int i;
2935 
2936 	for (i = 0; i < tun->numqueues; i++) {
2937 		tfile = rtnl_dereference(tun->tfiles[i]);
2938 		tfile->socket.sk->sk_sndbuf = tun->sndbuf;
2939 	}
2940 }
2941 
2942 static int tun_set_queue(struct file *file, struct ifreq *ifr)
2943 {
2944 	struct tun_file *tfile = file->private_data;
2945 	struct tun_struct *tun;
2946 	int ret = 0;
2947 
2948 	rtnl_lock();
2949 
2950 	if (ifr->ifr_flags & IFF_ATTACH_QUEUE) {
2951 		tun = tfile->detached;
2952 		if (!tun) {
2953 			ret = -EINVAL;
2954 			goto unlock;
2955 		}
2956 		ret = security_tun_dev_attach_queue(tun->security);
2957 		if (ret < 0)
2958 			goto unlock;
2959 		ret = tun_attach(tun, file, false, tun->flags & IFF_NAPI,
2960 				 tun->flags & IFF_NAPI_FRAGS);
2961 	} else if (ifr->ifr_flags & IFF_DETACH_QUEUE) {
2962 		tun = rtnl_dereference(tfile->tun);
2963 		if (!tun || !(tun->flags & IFF_MULTI_QUEUE) || tfile->detached)
2964 			ret = -EINVAL;
2965 		else
2966 			__tun_detach(tfile, false);
2967 	} else
2968 		ret = -EINVAL;
2969 
2970 	if (ret >= 0)
2971 		netdev_state_change(tun->dev);
2972 
2973 unlock:
2974 	rtnl_unlock();
2975 	return ret;
2976 }
2977 
2978 static int tun_set_ebpf(struct tun_struct *tun, struct tun_prog **prog_p,
2979 			void __user *data)
2980 {
2981 	struct bpf_prog *prog;
2982 	int fd;
2983 
2984 	if (copy_from_user(&fd, data, sizeof(fd)))
2985 		return -EFAULT;
2986 
2987 	if (fd == -1) {
2988 		prog = NULL;
2989 	} else {
2990 		prog = bpf_prog_get_type(fd, BPF_PROG_TYPE_SOCKET_FILTER);
2991 		if (IS_ERR(prog))
2992 			return PTR_ERR(prog);
2993 	}
2994 
2995 	return __tun_set_ebpf(tun, prog_p, prog);
2996 }
2997 
2998 static long __tun_chr_ioctl(struct file *file, unsigned int cmd,
2999 			    unsigned long arg, int ifreq_len)
3000 {
3001 	struct tun_file *tfile = file->private_data;
3002 	struct net *net = sock_net(&tfile->sk);
3003 	struct tun_struct *tun;
3004 	void __user* argp = (void __user*)arg;
3005 	struct ifreq ifr;
3006 	kuid_t owner;
3007 	kgid_t group;
3008 	int sndbuf;
3009 	int vnet_hdr_sz;
3010 	unsigned int ifindex;
3011 	int le;
3012 	int ret;
3013 	bool do_notify = false;
3014 
3015 	if (cmd == TUNSETIFF || cmd == TUNSETQUEUE ||
3016 	    (_IOC_TYPE(cmd) == SOCK_IOC_TYPE && cmd != SIOCGSKNS)) {
3017 		if (copy_from_user(&ifr, argp, ifreq_len))
3018 			return -EFAULT;
3019 	} else {
3020 		memset(&ifr, 0, sizeof(ifr));
3021 	}
3022 	if (cmd == TUNGETFEATURES) {
3023 		/* Currently this just means: "what IFF flags are valid?".
3024 		 * This is needed because we never checked for invalid flags on
3025 		 * TUNSETIFF.
3026 		 */
3027 		return put_user(IFF_TUN | IFF_TAP | TUN_FEATURES,
3028 				(unsigned int __user*)argp);
3029 	} else if (cmd == TUNSETQUEUE) {
3030 		return tun_set_queue(file, &ifr);
3031 	} else if (cmd == SIOCGSKNS) {
3032 		if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
3033 			return -EPERM;
3034 		return open_related_ns(&net->ns, get_net_ns);
3035 	}
3036 
3037 	ret = 0;
3038 	rtnl_lock();
3039 
3040 	tun = tun_get(tfile);
3041 	if (cmd == TUNSETIFF) {
3042 		ret = -EEXIST;
3043 		if (tun)
3044 			goto unlock;
3045 
3046 		ifr.ifr_name[IFNAMSIZ-1] = '\0';
3047 
3048 		ret = tun_set_iff(net, file, &ifr);
3049 
3050 		if (ret)
3051 			goto unlock;
3052 
3053 		if (copy_to_user(argp, &ifr, ifreq_len))
3054 			ret = -EFAULT;
3055 		goto unlock;
3056 	}
3057 	if (cmd == TUNSETIFINDEX) {
3058 		ret = -EPERM;
3059 		if (tun)
3060 			goto unlock;
3061 
3062 		ret = -EFAULT;
3063 		if (copy_from_user(&ifindex, argp, sizeof(ifindex)))
3064 			goto unlock;
3065 
3066 		ret = 0;
3067 		tfile->ifindex = ifindex;
3068 		goto unlock;
3069 	}
3070 
3071 	ret = -EBADFD;
3072 	if (!tun)
3073 		goto unlock;
3074 
3075 	tun_debug(KERN_INFO, tun, "tun_chr_ioctl cmd %u\n", cmd);
3076 
3077 	ret = 0;
3078 	switch (cmd) {
3079 	case TUNGETIFF:
3080 		tun_get_iff(current->nsproxy->net_ns, tun, &ifr);
3081 
3082 		if (tfile->detached)
3083 			ifr.ifr_flags |= IFF_DETACH_QUEUE;
3084 		if (!tfile->socket.sk->sk_filter)
3085 			ifr.ifr_flags |= IFF_NOFILTER;
3086 
3087 		if (copy_to_user(argp, &ifr, ifreq_len))
3088 			ret = -EFAULT;
3089 		break;
3090 
3091 	case TUNSETNOCSUM:
3092 		/* Disable/Enable checksum */
3093 
3094 		/* [unimplemented] */
3095 		tun_debug(KERN_INFO, tun, "ignored: set checksum %s\n",
3096 			  arg ? "disabled" : "enabled");
3097 		break;
3098 
3099 	case TUNSETPERSIST:
3100 		/* Disable/Enable persist mode. Keep an extra reference to the
3101 		 * module to prevent the module being unprobed.
3102 		 */
3103 		if (arg && !(tun->flags & IFF_PERSIST)) {
3104 			tun->flags |= IFF_PERSIST;
3105 			__module_get(THIS_MODULE);
3106 			do_notify = true;
3107 		}
3108 		if (!arg && (tun->flags & IFF_PERSIST)) {
3109 			tun->flags &= ~IFF_PERSIST;
3110 			module_put(THIS_MODULE);
3111 			do_notify = true;
3112 		}
3113 
3114 		tun_debug(KERN_INFO, tun, "persist %s\n",
3115 			  arg ? "enabled" : "disabled");
3116 		break;
3117 
3118 	case TUNSETOWNER:
3119 		/* Set owner of the device */
3120 		owner = make_kuid(current_user_ns(), arg);
3121 		if (!uid_valid(owner)) {
3122 			ret = -EINVAL;
3123 			break;
3124 		}
3125 		tun->owner = owner;
3126 		do_notify = true;
3127 		tun_debug(KERN_INFO, tun, "owner set to %u\n",
3128 			  from_kuid(&init_user_ns, tun->owner));
3129 		break;
3130 
3131 	case TUNSETGROUP:
3132 		/* Set group of the device */
3133 		group = make_kgid(current_user_ns(), arg);
3134 		if (!gid_valid(group)) {
3135 			ret = -EINVAL;
3136 			break;
3137 		}
3138 		tun->group = group;
3139 		do_notify = true;
3140 		tun_debug(KERN_INFO, tun, "group set to %u\n",
3141 			  from_kgid(&init_user_ns, tun->group));
3142 		break;
3143 
3144 	case TUNSETLINK:
3145 		/* Only allow setting the type when the interface is down */
3146 		if (tun->dev->flags & IFF_UP) {
3147 			tun_debug(KERN_INFO, tun,
3148 				  "Linktype set failed because interface is up\n");
3149 			ret = -EBUSY;
3150 		} else {
3151 			tun->dev->type = (int) arg;
3152 			tun_debug(KERN_INFO, tun, "linktype set to %d\n",
3153 				  tun->dev->type);
3154 			ret = 0;
3155 		}
3156 		break;
3157 
3158 #ifdef TUN_DEBUG
3159 	case TUNSETDEBUG:
3160 		tun->debug = arg;
3161 		break;
3162 #endif
3163 	case TUNSETOFFLOAD:
3164 		ret = set_offload(tun, arg);
3165 		break;
3166 
3167 	case TUNSETTXFILTER:
3168 		/* Can be set only for TAPs */
3169 		ret = -EINVAL;
3170 		if ((tun->flags & TUN_TYPE_MASK) != IFF_TAP)
3171 			break;
3172 		ret = update_filter(&tun->txflt, (void __user *)arg);
3173 		break;
3174 
3175 	case SIOCGIFHWADDR:
3176 		/* Get hw address */
3177 		memcpy(ifr.ifr_hwaddr.sa_data, tun->dev->dev_addr, ETH_ALEN);
3178 		ifr.ifr_hwaddr.sa_family = tun->dev->type;
3179 		if (copy_to_user(argp, &ifr, ifreq_len))
3180 			ret = -EFAULT;
3181 		break;
3182 
3183 	case SIOCSIFHWADDR:
3184 		/* Set hw address */
3185 		tun_debug(KERN_DEBUG, tun, "set hw address: %pM\n",
3186 			  ifr.ifr_hwaddr.sa_data);
3187 
3188 		ret = dev_set_mac_address(tun->dev, &ifr.ifr_hwaddr);
3189 		break;
3190 
3191 	case TUNGETSNDBUF:
3192 		sndbuf = tfile->socket.sk->sk_sndbuf;
3193 		if (copy_to_user(argp, &sndbuf, sizeof(sndbuf)))
3194 			ret = -EFAULT;
3195 		break;
3196 
3197 	case TUNSETSNDBUF:
3198 		if (copy_from_user(&sndbuf, argp, sizeof(sndbuf))) {
3199 			ret = -EFAULT;
3200 			break;
3201 		}
3202 		if (sndbuf <= 0) {
3203 			ret = -EINVAL;
3204 			break;
3205 		}
3206 
3207 		tun->sndbuf = sndbuf;
3208 		tun_set_sndbuf(tun);
3209 		break;
3210 
3211 	case TUNGETVNETHDRSZ:
3212 		vnet_hdr_sz = tun->vnet_hdr_sz;
3213 		if (copy_to_user(argp, &vnet_hdr_sz, sizeof(vnet_hdr_sz)))
3214 			ret = -EFAULT;
3215 		break;
3216 
3217 	case TUNSETVNETHDRSZ:
3218 		if (copy_from_user(&vnet_hdr_sz, argp, sizeof(vnet_hdr_sz))) {
3219 			ret = -EFAULT;
3220 			break;
3221 		}
3222 		if (vnet_hdr_sz < (int)sizeof(struct virtio_net_hdr)) {
3223 			ret = -EINVAL;
3224 			break;
3225 		}
3226 
3227 		tun->vnet_hdr_sz = vnet_hdr_sz;
3228 		break;
3229 
3230 	case TUNGETVNETLE:
3231 		le = !!(tun->flags & TUN_VNET_LE);
3232 		if (put_user(le, (int __user *)argp))
3233 			ret = -EFAULT;
3234 		break;
3235 
3236 	case TUNSETVNETLE:
3237 		if (get_user(le, (int __user *)argp)) {
3238 			ret = -EFAULT;
3239 			break;
3240 		}
3241 		if (le)
3242 			tun->flags |= TUN_VNET_LE;
3243 		else
3244 			tun->flags &= ~TUN_VNET_LE;
3245 		break;
3246 
3247 	case TUNGETVNETBE:
3248 		ret = tun_get_vnet_be(tun, argp);
3249 		break;
3250 
3251 	case TUNSETVNETBE:
3252 		ret = tun_set_vnet_be(tun, argp);
3253 		break;
3254 
3255 	case TUNATTACHFILTER:
3256 		/* Can be set only for TAPs */
3257 		ret = -EINVAL;
3258 		if ((tun->flags & TUN_TYPE_MASK) != IFF_TAP)
3259 			break;
3260 		ret = -EFAULT;
3261 		if (copy_from_user(&tun->fprog, argp, sizeof(tun->fprog)))
3262 			break;
3263 
3264 		ret = tun_attach_filter(tun);
3265 		break;
3266 
3267 	case TUNDETACHFILTER:
3268 		/* Can be set only for TAPs */
3269 		ret = -EINVAL;
3270 		if ((tun->flags & TUN_TYPE_MASK) != IFF_TAP)
3271 			break;
3272 		ret = 0;
3273 		tun_detach_filter(tun, tun->numqueues);
3274 		break;
3275 
3276 	case TUNGETFILTER:
3277 		ret = -EINVAL;
3278 		if ((tun->flags & TUN_TYPE_MASK) != IFF_TAP)
3279 			break;
3280 		ret = -EFAULT;
3281 		if (copy_to_user(argp, &tun->fprog, sizeof(tun->fprog)))
3282 			break;
3283 		ret = 0;
3284 		break;
3285 
3286 	case TUNSETSTEERINGEBPF:
3287 		ret = tun_set_ebpf(tun, &tun->steering_prog, argp);
3288 		break;
3289 
3290 	case TUNSETFILTEREBPF:
3291 		ret = tun_set_ebpf(tun, &tun->filter_prog, argp);
3292 		break;
3293 
3294 	default:
3295 		ret = -EINVAL;
3296 		break;
3297 	}
3298 
3299 	if (do_notify)
3300 		netdev_state_change(tun->dev);
3301 
3302 unlock:
3303 	rtnl_unlock();
3304 	if (tun)
3305 		tun_put(tun);
3306 	return ret;
3307 }
3308 
3309 static long tun_chr_ioctl(struct file *file,
3310 			  unsigned int cmd, unsigned long arg)
3311 {
3312 	return __tun_chr_ioctl(file, cmd, arg, sizeof (struct ifreq));
3313 }
3314 
3315 #ifdef CONFIG_COMPAT
3316 static long tun_chr_compat_ioctl(struct file *file,
3317 			 unsigned int cmd, unsigned long arg)
3318 {
3319 	switch (cmd) {
3320 	case TUNSETIFF:
3321 	case TUNGETIFF:
3322 	case TUNSETTXFILTER:
3323 	case TUNGETSNDBUF:
3324 	case TUNSETSNDBUF:
3325 	case SIOCGIFHWADDR:
3326 	case SIOCSIFHWADDR:
3327 		arg = (unsigned long)compat_ptr(arg);
3328 		break;
3329 	default:
3330 		arg = (compat_ulong_t)arg;
3331 		break;
3332 	}
3333 
3334 	/*
3335 	 * compat_ifreq is shorter than ifreq, so we must not access beyond
3336 	 * the end of that structure. All fields that are used in this
3337 	 * driver are compatible though, we don't need to convert the
3338 	 * contents.
3339 	 */
3340 	return __tun_chr_ioctl(file, cmd, arg, sizeof(struct compat_ifreq));
3341 }
3342 #endif /* CONFIG_COMPAT */
3343 
3344 static int tun_chr_fasync(int fd, struct file *file, int on)
3345 {
3346 	struct tun_file *tfile = file->private_data;
3347 	int ret;
3348 
3349 	if ((ret = fasync_helper(fd, file, on, &tfile->fasync)) < 0)
3350 		goto out;
3351 
3352 	if (on) {
3353 		__f_setown(file, task_pid(current), PIDTYPE_TGID, 0);
3354 		tfile->flags |= TUN_FASYNC;
3355 	} else
3356 		tfile->flags &= ~TUN_FASYNC;
3357 	ret = 0;
3358 out:
3359 	return ret;
3360 }
3361 
3362 static int tun_chr_open(struct inode *inode, struct file * file)
3363 {
3364 	struct net *net = current->nsproxy->net_ns;
3365 	struct tun_file *tfile;
3366 
3367 	DBG1(KERN_INFO, "tunX: tun_chr_open\n");
3368 
3369 	tfile = (struct tun_file *)sk_alloc(net, AF_UNSPEC, GFP_KERNEL,
3370 					    &tun_proto, 0);
3371 	if (!tfile)
3372 		return -ENOMEM;
3373 	if (ptr_ring_init(&tfile->tx_ring, 0, GFP_KERNEL)) {
3374 		sk_free(&tfile->sk);
3375 		return -ENOMEM;
3376 	}
3377 
3378 	mutex_init(&tfile->napi_mutex);
3379 	RCU_INIT_POINTER(tfile->tun, NULL);
3380 	tfile->flags = 0;
3381 	tfile->ifindex = 0;
3382 
3383 	init_waitqueue_head(&tfile->wq.wait);
3384 	RCU_INIT_POINTER(tfile->socket.wq, &tfile->wq);
3385 
3386 	tfile->socket.file = file;
3387 	tfile->socket.ops = &tun_socket_ops;
3388 
3389 	sock_init_data(&tfile->socket, &tfile->sk);
3390 
3391 	tfile->sk.sk_write_space = tun_sock_write_space;
3392 	tfile->sk.sk_sndbuf = INT_MAX;
3393 
3394 	file->private_data = tfile;
3395 	INIT_LIST_HEAD(&tfile->next);
3396 
3397 	sock_set_flag(&tfile->sk, SOCK_ZEROCOPY);
3398 
3399 	return 0;
3400 }
3401 
3402 static int tun_chr_close(struct inode *inode, struct file *file)
3403 {
3404 	struct tun_file *tfile = file->private_data;
3405 
3406 	tun_detach(tfile, true);
3407 
3408 	return 0;
3409 }
3410 
3411 #ifdef CONFIG_PROC_FS
3412 static void tun_chr_show_fdinfo(struct seq_file *m, struct file *file)
3413 {
3414 	struct tun_file *tfile = file->private_data;
3415 	struct tun_struct *tun;
3416 	struct ifreq ifr;
3417 
3418 	memset(&ifr, 0, sizeof(ifr));
3419 
3420 	rtnl_lock();
3421 	tun = tun_get(tfile);
3422 	if (tun)
3423 		tun_get_iff(current->nsproxy->net_ns, tun, &ifr);
3424 	rtnl_unlock();
3425 
3426 	if (tun)
3427 		tun_put(tun);
3428 
3429 	seq_printf(m, "iff:\t%s\n", ifr.ifr_name);
3430 }
3431 #endif
3432 
3433 static const struct file_operations tun_fops = {
3434 	.owner	= THIS_MODULE,
3435 	.llseek = no_llseek,
3436 	.read_iter  = tun_chr_read_iter,
3437 	.write_iter = tun_chr_write_iter,
3438 	.poll	= tun_chr_poll,
3439 	.unlocked_ioctl	= tun_chr_ioctl,
3440 #ifdef CONFIG_COMPAT
3441 	.compat_ioctl = tun_chr_compat_ioctl,
3442 #endif
3443 	.open	= tun_chr_open,
3444 	.release = tun_chr_close,
3445 	.fasync = tun_chr_fasync,
3446 #ifdef CONFIG_PROC_FS
3447 	.show_fdinfo = tun_chr_show_fdinfo,
3448 #endif
3449 };
3450 
3451 static struct miscdevice tun_miscdev = {
3452 	.minor = TUN_MINOR,
3453 	.name = "tun",
3454 	.nodename = "net/tun",
3455 	.fops = &tun_fops,
3456 };
3457 
3458 /* ethtool interface */
3459 
3460 static void tun_default_link_ksettings(struct net_device *dev,
3461 				       struct ethtool_link_ksettings *cmd)
3462 {
3463 	ethtool_link_ksettings_zero_link_mode(cmd, supported);
3464 	ethtool_link_ksettings_zero_link_mode(cmd, advertising);
3465 	cmd->base.speed		= SPEED_10;
3466 	cmd->base.duplex	= DUPLEX_FULL;
3467 	cmd->base.port		= PORT_TP;
3468 	cmd->base.phy_address	= 0;
3469 	cmd->base.autoneg	= AUTONEG_DISABLE;
3470 }
3471 
3472 static int tun_get_link_ksettings(struct net_device *dev,
3473 				  struct ethtool_link_ksettings *cmd)
3474 {
3475 	struct tun_struct *tun = netdev_priv(dev);
3476 
3477 	memcpy(cmd, &tun->link_ksettings, sizeof(*cmd));
3478 	return 0;
3479 }
3480 
3481 static int tun_set_link_ksettings(struct net_device *dev,
3482 				  const struct ethtool_link_ksettings *cmd)
3483 {
3484 	struct tun_struct *tun = netdev_priv(dev);
3485 
3486 	memcpy(&tun->link_ksettings, cmd, sizeof(*cmd));
3487 	return 0;
3488 }
3489 
3490 static void tun_get_drvinfo(struct net_device *dev, struct ethtool_drvinfo *info)
3491 {
3492 	struct tun_struct *tun = netdev_priv(dev);
3493 
3494 	strlcpy(info->driver, DRV_NAME, sizeof(info->driver));
3495 	strlcpy(info->version, DRV_VERSION, sizeof(info->version));
3496 
3497 	switch (tun->flags & TUN_TYPE_MASK) {
3498 	case IFF_TUN:
3499 		strlcpy(info->bus_info, "tun", sizeof(info->bus_info));
3500 		break;
3501 	case IFF_TAP:
3502 		strlcpy(info->bus_info, "tap", sizeof(info->bus_info));
3503 		break;
3504 	}
3505 }
3506 
3507 static u32 tun_get_msglevel(struct net_device *dev)
3508 {
3509 #ifdef TUN_DEBUG
3510 	struct tun_struct *tun = netdev_priv(dev);
3511 	return tun->debug;
3512 #else
3513 	return -EOPNOTSUPP;
3514 #endif
3515 }
3516 
3517 static void tun_set_msglevel(struct net_device *dev, u32 value)
3518 {
3519 #ifdef TUN_DEBUG
3520 	struct tun_struct *tun = netdev_priv(dev);
3521 	tun->debug = value;
3522 #endif
3523 }
3524 
3525 static int tun_get_coalesce(struct net_device *dev,
3526 			    struct ethtool_coalesce *ec)
3527 {
3528 	struct tun_struct *tun = netdev_priv(dev);
3529 
3530 	ec->rx_max_coalesced_frames = tun->rx_batched;
3531 
3532 	return 0;
3533 }
3534 
3535 static int tun_set_coalesce(struct net_device *dev,
3536 			    struct ethtool_coalesce *ec)
3537 {
3538 	struct tun_struct *tun = netdev_priv(dev);
3539 
3540 	if (ec->rx_max_coalesced_frames > NAPI_POLL_WEIGHT)
3541 		tun->rx_batched = NAPI_POLL_WEIGHT;
3542 	else
3543 		tun->rx_batched = ec->rx_max_coalesced_frames;
3544 
3545 	return 0;
3546 }
3547 
3548 static const struct ethtool_ops tun_ethtool_ops = {
3549 	.get_drvinfo	= tun_get_drvinfo,
3550 	.get_msglevel	= tun_get_msglevel,
3551 	.set_msglevel	= tun_set_msglevel,
3552 	.get_link	= ethtool_op_get_link,
3553 	.get_ts_info	= ethtool_op_get_ts_info,
3554 	.get_coalesce   = tun_get_coalesce,
3555 	.set_coalesce   = tun_set_coalesce,
3556 	.get_link_ksettings = tun_get_link_ksettings,
3557 	.set_link_ksettings = tun_set_link_ksettings,
3558 };
3559 
3560 static int tun_queue_resize(struct tun_struct *tun)
3561 {
3562 	struct net_device *dev = tun->dev;
3563 	struct tun_file *tfile;
3564 	struct ptr_ring **rings;
3565 	int n = tun->numqueues + tun->numdisabled;
3566 	int ret, i;
3567 
3568 	rings = kmalloc_array(n, sizeof(*rings), GFP_KERNEL);
3569 	if (!rings)
3570 		return -ENOMEM;
3571 
3572 	for (i = 0; i < tun->numqueues; i++) {
3573 		tfile = rtnl_dereference(tun->tfiles[i]);
3574 		rings[i] = &tfile->tx_ring;
3575 	}
3576 	list_for_each_entry(tfile, &tun->disabled, next)
3577 		rings[i++] = &tfile->tx_ring;
3578 
3579 	ret = ptr_ring_resize_multiple(rings, n,
3580 				       dev->tx_queue_len, GFP_KERNEL,
3581 				       tun_ptr_free);
3582 
3583 	kfree(rings);
3584 	return ret;
3585 }
3586 
3587 static int tun_device_event(struct notifier_block *unused,
3588 			    unsigned long event, void *ptr)
3589 {
3590 	struct net_device *dev = netdev_notifier_info_to_dev(ptr);
3591 	struct tun_struct *tun = netdev_priv(dev);
3592 
3593 	if (dev->rtnl_link_ops != &tun_link_ops)
3594 		return NOTIFY_DONE;
3595 
3596 	switch (event) {
3597 	case NETDEV_CHANGE_TX_QUEUE_LEN:
3598 		if (tun_queue_resize(tun))
3599 			return NOTIFY_BAD;
3600 		break;
3601 	default:
3602 		break;
3603 	}
3604 
3605 	return NOTIFY_DONE;
3606 }
3607 
3608 static struct notifier_block tun_notifier_block __read_mostly = {
3609 	.notifier_call	= tun_device_event,
3610 };
3611 
3612 static int __init tun_init(void)
3613 {
3614 	int ret = 0;
3615 
3616 	pr_info("%s, %s\n", DRV_DESCRIPTION, DRV_VERSION);
3617 
3618 	ret = rtnl_link_register(&tun_link_ops);
3619 	if (ret) {
3620 		pr_err("Can't register link_ops\n");
3621 		goto err_linkops;
3622 	}
3623 
3624 	ret = misc_register(&tun_miscdev);
3625 	if (ret) {
3626 		pr_err("Can't register misc device %d\n", TUN_MINOR);
3627 		goto err_misc;
3628 	}
3629 
3630 	ret = register_netdevice_notifier(&tun_notifier_block);
3631 	if (ret) {
3632 		pr_err("Can't register netdevice notifier\n");
3633 		goto err_notifier;
3634 	}
3635 
3636 	return  0;
3637 
3638 err_notifier:
3639 	misc_deregister(&tun_miscdev);
3640 err_misc:
3641 	rtnl_link_unregister(&tun_link_ops);
3642 err_linkops:
3643 	return ret;
3644 }
3645 
3646 static void tun_cleanup(void)
3647 {
3648 	misc_deregister(&tun_miscdev);
3649 	rtnl_link_unregister(&tun_link_ops);
3650 	unregister_netdevice_notifier(&tun_notifier_block);
3651 }
3652 
3653 /* Get an underlying socket object from tun file.  Returns error unless file is
3654  * attached to a device.  The returned object works like a packet socket, it
3655  * can be used for sock_sendmsg/sock_recvmsg.  The caller is responsible for
3656  * holding a reference to the file for as long as the socket is in use. */
3657 struct socket *tun_get_socket(struct file *file)
3658 {
3659 	struct tun_file *tfile;
3660 	if (file->f_op != &tun_fops)
3661 		return ERR_PTR(-EINVAL);
3662 	tfile = file->private_data;
3663 	if (!tfile)
3664 		return ERR_PTR(-EBADFD);
3665 	return &tfile->socket;
3666 }
3667 EXPORT_SYMBOL_GPL(tun_get_socket);
3668 
3669 struct ptr_ring *tun_get_tx_ring(struct file *file)
3670 {
3671 	struct tun_file *tfile;
3672 
3673 	if (file->f_op != &tun_fops)
3674 		return ERR_PTR(-EINVAL);
3675 	tfile = file->private_data;
3676 	if (!tfile)
3677 		return ERR_PTR(-EBADFD);
3678 	return &tfile->tx_ring;
3679 }
3680 EXPORT_SYMBOL_GPL(tun_get_tx_ring);
3681 
3682 module_init(tun_init);
3683 module_exit(tun_cleanup);
3684 MODULE_DESCRIPTION(DRV_DESCRIPTION);
3685 MODULE_AUTHOR(DRV_COPYRIGHT);
3686 MODULE_LICENSE("GPL");
3687 MODULE_ALIAS_MISCDEV(TUN_MINOR);
3688 MODULE_ALIAS("devname:net/tun");
3689