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