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