• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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/major.h>
48 #include <linux/slab.h>
49 #include <linux/poll.h>
50 #include <linux/fcntl.h>
51 #include <linux/init.h>
52 #include <linux/skbuff.h>
53 #include <linux/netdevice.h>
54 #include <linux/etherdevice.h>
55 #include <linux/miscdevice.h>
56 #include <linux/ethtool.h>
57 #include <linux/rtnetlink.h>
58 #include <linux/compat.h>
59 #include <linux/if.h>
60 #include <linux/if_arp.h>
61 #include <linux/if_ether.h>
62 #include <linux/if_tun.h>
63 #include <linux/if_vlan.h>
64 #include <linux/crc32.h>
65 #include <linux/nsproxy.h>
66 #include <linux/virtio_net.h>
67 #include <linux/rcupdate.h>
68 #include <net/net_namespace.h>
69 #include <net/netns/generic.h>
70 #include <net/rtnetlink.h>
71 #include <net/sock.h>
72 #include <linux/seq_file.h>
73 #include <linux/uio.h>
74 #include <linux/ieee802154.h>
75 #include <linux/if_ltalk.h>
76 #include <uapi/linux/if_fddi.h>
77 #include <uapi/linux/if_hippi.h>
78 #include <uapi/linux/if_fc.h>
79 #include <net/ax25.h>
80 #include <net/rose.h>
81 #include <net/6lowpan.h>
82 
83 #include <asm/uaccess.h>
84 
85 /* Uncomment to enable debugging */
86 /* #define TUN_DEBUG 1 */
87 
88 #ifdef TUN_DEBUG
89 static int debug;
90 
91 #define tun_debug(level, tun, fmt, args...)			\
92 do {								\
93 	if (tun->debug)						\
94 		netdev_printk(level, tun->dev, fmt, ##args);	\
95 } while (0)
96 #define DBG1(level, fmt, args...)				\
97 do {								\
98 	if (debug == 2)						\
99 		printk(level fmt, ##args);			\
100 } while (0)
101 #else
102 #define tun_debug(level, tun, fmt, args...)			\
103 do {								\
104 	if (0)							\
105 		netdev_printk(level, tun->dev, fmt, ##args);	\
106 } while (0)
107 #define DBG1(level, fmt, args...)				\
108 do {								\
109 	if (0)							\
110 		printk(level fmt, ##args);			\
111 } while (0)
112 #endif
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)
126 #define GOODCOPY_LEN 128
127 
128 #define FLT_EXACT_COUNT 8
129 struct tap_filter {
130 	unsigned int    count;    /* Number of addrs. Zero means disabled */
131 	u32             mask[2];  /* Mask of the hashed addrs */
132 	unsigned char	addr[FLT_EXACT_COUNT][ETH_ALEN];
133 };
134 
135 /* MAX_TAP_QUEUES 256 is chosen to allow rx/tx queues to be equal
136  * to max number of VCPUs in guest. */
137 #define MAX_TAP_QUEUES 256
138 #define MAX_TAP_FLOWS  4096
139 
140 #define TUN_FLOW_EXPIRE (3 * HZ)
141 
142 /* A tun_file connects an open character device to a tuntap netdevice. It
143  * also contains all socket related structures (except sock_fprog and tap_filter)
144  * to serve as one transmit queue for tuntap device. The sock_fprog and
145  * tap_filter were kept in tun_struct since they were used for filtering for the
146  * netdevice not for a specific queue (at least I didn't see the requirement for
147  * this).
148  *
149  * RCU usage:
150  * The tun_file and tun_struct are loosely coupled, the pointer from one to the
151  * other can only be read while rcu_read_lock or rtnl_lock is held.
152  */
153 struct tun_file {
154 	struct sock sk;
155 	struct socket socket;
156 	struct socket_wq wq;
157 	struct tun_struct __rcu *tun;
158 	struct fasync_struct *fasync;
159 	/* only used for fasnyc */
160 	unsigned int flags;
161 	union {
162 		u16 queue_index;
163 		unsigned int ifindex;
164 	};
165 	struct list_head next;
166 	struct tun_struct *detached;
167 };
168 
169 struct tun_flow_entry {
170 	struct hlist_node hash_link;
171 	struct rcu_head rcu;
172 	struct tun_struct *tun;
173 
174 	u32 rxhash;
175 	u32 rps_rxhash;
176 	int queue_index;
177 	unsigned long updated;
178 };
179 
180 #define TUN_NUM_FLOW_ENTRIES 1024
181 
182 /* Since the socket were moved to tun_file, to preserve the behavior of persist
183  * device, socket filter, sndbuf and vnet header size were restore when the
184  * file were attached to a persist device.
185  */
186 struct tun_struct {
187 	struct tun_file __rcu	*tfiles[MAX_TAP_QUEUES];
188 	unsigned int            numqueues;
189 	unsigned int 		flags;
190 	kuid_t			owner;
191 	kgid_t			group;
192 
193 	struct net_device	*dev;
194 	netdev_features_t	set_features;
195 #define TUN_USER_FEATURES (NETIF_F_HW_CSUM|NETIF_F_TSO_ECN|NETIF_F_TSO| \
196 			  NETIF_F_TSO6|NETIF_F_UFO)
197 
198 	int			vnet_hdr_sz;
199 	int			sndbuf;
200 	struct tap_filter	txflt;
201 	struct sock_fprog	fprog;
202 	/* protected by rtnl lock */
203 	bool			filter_attached;
204 #ifdef TUN_DEBUG
205 	int debug;
206 #endif
207 	spinlock_t lock;
208 	struct hlist_head flows[TUN_NUM_FLOW_ENTRIES];
209 	struct timer_list flow_gc_timer;
210 	unsigned long ageing_time;
211 	unsigned int numdisabled;
212 	struct list_head disabled;
213 	void *security;
214 	u32 flow_count;
215 };
216 
217 #ifdef CONFIG_TUN_VNET_CROSS_LE
tun_legacy_is_little_endian(struct tun_struct * tun)218 static inline bool tun_legacy_is_little_endian(struct tun_struct *tun)
219 {
220 	return tun->flags & TUN_VNET_BE ? false :
221 		virtio_legacy_is_little_endian();
222 }
223 
tun_get_vnet_be(struct tun_struct * tun,int __user * argp)224 static long tun_get_vnet_be(struct tun_struct *tun, int __user *argp)
225 {
226 	int be = !!(tun->flags & TUN_VNET_BE);
227 
228 	if (put_user(be, argp))
229 		return -EFAULT;
230 
231 	return 0;
232 }
233 
tun_set_vnet_be(struct tun_struct * tun,int __user * argp)234 static long tun_set_vnet_be(struct tun_struct *tun, int __user *argp)
235 {
236 	int be;
237 
238 	if (get_user(be, argp))
239 		return -EFAULT;
240 
241 	if (be)
242 		tun->flags |= TUN_VNET_BE;
243 	else
244 		tun->flags &= ~TUN_VNET_BE;
245 
246 	return 0;
247 }
248 #else
tun_legacy_is_little_endian(struct tun_struct * tun)249 static inline bool tun_legacy_is_little_endian(struct tun_struct *tun)
250 {
251 	return virtio_legacy_is_little_endian();
252 }
253 
tun_get_vnet_be(struct tun_struct * tun,int __user * argp)254 static long tun_get_vnet_be(struct tun_struct *tun, int __user *argp)
255 {
256 	return -EINVAL;
257 }
258 
tun_set_vnet_be(struct tun_struct * tun,int __user * argp)259 static long tun_set_vnet_be(struct tun_struct *tun, int __user *argp)
260 {
261 	return -EINVAL;
262 }
263 #endif /* CONFIG_TUN_VNET_CROSS_LE */
264 
tun_is_little_endian(struct tun_struct * tun)265 static inline bool tun_is_little_endian(struct tun_struct *tun)
266 {
267 	return tun->flags & TUN_VNET_LE ||
268 		tun_legacy_is_little_endian(tun);
269 }
270 
tun16_to_cpu(struct tun_struct * tun,__virtio16 val)271 static inline u16 tun16_to_cpu(struct tun_struct *tun, __virtio16 val)
272 {
273 	return __virtio16_to_cpu(tun_is_little_endian(tun), val);
274 }
275 
cpu_to_tun16(struct tun_struct * tun,u16 val)276 static inline __virtio16 cpu_to_tun16(struct tun_struct *tun, u16 val)
277 {
278 	return __cpu_to_virtio16(tun_is_little_endian(tun), val);
279 }
280 
tun_hashfn(u32 rxhash)281 static inline u32 tun_hashfn(u32 rxhash)
282 {
283 	return rxhash & 0x3ff;
284 }
285 
tun_flow_find(struct hlist_head * head,u32 rxhash)286 static struct tun_flow_entry *tun_flow_find(struct hlist_head *head, u32 rxhash)
287 {
288 	struct tun_flow_entry *e;
289 
290 	hlist_for_each_entry_rcu(e, head, hash_link) {
291 		if (e->rxhash == rxhash)
292 			return e;
293 	}
294 	return NULL;
295 }
296 
tun_flow_create(struct tun_struct * tun,struct hlist_head * head,u32 rxhash,u16 queue_index)297 static struct tun_flow_entry *tun_flow_create(struct tun_struct *tun,
298 					      struct hlist_head *head,
299 					      u32 rxhash, u16 queue_index)
300 {
301 	struct tun_flow_entry *e = kmalloc(sizeof(*e), GFP_ATOMIC);
302 
303 	if (e) {
304 		tun_debug(KERN_INFO, tun, "create flow: hash %u index %u\n",
305 			  rxhash, queue_index);
306 		e->updated = jiffies;
307 		e->rxhash = rxhash;
308 		e->rps_rxhash = 0;
309 		e->queue_index = queue_index;
310 		e->tun = tun;
311 		hlist_add_head_rcu(&e->hash_link, head);
312 		++tun->flow_count;
313 	}
314 	return e;
315 }
316 
tun_flow_delete(struct tun_struct * tun,struct tun_flow_entry * e)317 static void tun_flow_delete(struct tun_struct *tun, struct tun_flow_entry *e)
318 {
319 	tun_debug(KERN_INFO, tun, "delete flow: hash %u index %u\n",
320 		  e->rxhash, e->queue_index);
321 	hlist_del_rcu(&e->hash_link);
322 	kfree_rcu(e, rcu);
323 	--tun->flow_count;
324 }
325 
tun_flow_flush(struct tun_struct * tun)326 static void tun_flow_flush(struct tun_struct *tun)
327 {
328 	int i;
329 
330 	spin_lock_bh(&tun->lock);
331 	for (i = 0; i < TUN_NUM_FLOW_ENTRIES; i++) {
332 		struct tun_flow_entry *e;
333 		struct hlist_node *n;
334 
335 		hlist_for_each_entry_safe(e, n, &tun->flows[i], hash_link)
336 			tun_flow_delete(tun, e);
337 	}
338 	spin_unlock_bh(&tun->lock);
339 }
340 
tun_flow_delete_by_queue(struct tun_struct * tun,u16 queue_index)341 static void tun_flow_delete_by_queue(struct tun_struct *tun, u16 queue_index)
342 {
343 	int i;
344 
345 	spin_lock_bh(&tun->lock);
346 	for (i = 0; i < TUN_NUM_FLOW_ENTRIES; i++) {
347 		struct tun_flow_entry *e;
348 		struct hlist_node *n;
349 
350 		hlist_for_each_entry_safe(e, n, &tun->flows[i], hash_link) {
351 			if (e->queue_index == queue_index)
352 				tun_flow_delete(tun, e);
353 		}
354 	}
355 	spin_unlock_bh(&tun->lock);
356 }
357 
tun_flow_cleanup(unsigned long data)358 static void tun_flow_cleanup(unsigned long data)
359 {
360 	struct tun_struct *tun = (struct tun_struct *)data;
361 	unsigned long delay = tun->ageing_time;
362 	unsigned long next_timer = jiffies + delay;
363 	unsigned long count = 0;
364 	int i;
365 
366 	tun_debug(KERN_INFO, tun, "tun_flow_cleanup\n");
367 
368 	spin_lock_bh(&tun->lock);
369 	for (i = 0; i < TUN_NUM_FLOW_ENTRIES; i++) {
370 		struct tun_flow_entry *e;
371 		struct hlist_node *n;
372 
373 		hlist_for_each_entry_safe(e, n, &tun->flows[i], hash_link) {
374 			unsigned long this_timer;
375 			count++;
376 			this_timer = e->updated + delay;
377 			if (time_before_eq(this_timer, jiffies))
378 				tun_flow_delete(tun, e);
379 			else if (time_before(this_timer, next_timer))
380 				next_timer = this_timer;
381 		}
382 	}
383 
384 	if (count)
385 		mod_timer(&tun->flow_gc_timer, round_jiffies_up(next_timer));
386 	spin_unlock_bh(&tun->lock);
387 }
388 
tun_flow_update(struct tun_struct * tun,u32 rxhash,struct tun_file * tfile)389 static void tun_flow_update(struct tun_struct *tun, u32 rxhash,
390 			    struct tun_file *tfile)
391 {
392 	struct hlist_head *head;
393 	struct tun_flow_entry *e;
394 	unsigned long delay = tun->ageing_time;
395 	u16 queue_index = tfile->queue_index;
396 
397 	if (!rxhash)
398 		return;
399 	else
400 		head = &tun->flows[tun_hashfn(rxhash)];
401 
402 	rcu_read_lock();
403 
404 	/* We may get a very small possibility of OOO during switching, not
405 	 * worth to optimize.*/
406 	if (tun->numqueues == 1 || tfile->detached)
407 		goto unlock;
408 
409 	e = tun_flow_find(head, rxhash);
410 	if (likely(e)) {
411 		/* TODO: keep queueing to old queue until it's empty? */
412 		e->queue_index = queue_index;
413 		e->updated = jiffies;
414 		sock_rps_record_flow_hash(e->rps_rxhash);
415 	} else {
416 		spin_lock_bh(&tun->lock);
417 		if (!tun_flow_find(head, rxhash) &&
418 		    tun->flow_count < MAX_TAP_FLOWS)
419 			tun_flow_create(tun, head, rxhash, queue_index);
420 
421 		if (!timer_pending(&tun->flow_gc_timer))
422 			mod_timer(&tun->flow_gc_timer,
423 				  round_jiffies_up(jiffies + delay));
424 		spin_unlock_bh(&tun->lock);
425 	}
426 
427 unlock:
428 	rcu_read_unlock();
429 }
430 
431 /**
432  * Save the hash received in the stack receive path and update the
433  * flow_hash table accordingly.
434  */
tun_flow_save_rps_rxhash(struct tun_flow_entry * e,u32 hash)435 static inline void tun_flow_save_rps_rxhash(struct tun_flow_entry *e, u32 hash)
436 {
437 	if (unlikely(e->rps_rxhash != hash))
438 		e->rps_rxhash = hash;
439 }
440 
441 /* We try to identify a flow through its rxhash first. The reason that
442  * we do not check rxq no. is because some cards(e.g 82599), chooses
443  * the rxq based on the txq where the last packet of the flow comes. As
444  * the userspace application move between processors, we may get a
445  * different rxq no. here. If we could not get rxhash, then we would
446  * hope the rxq no. may help here.
447  */
tun_select_queue(struct net_device * dev,struct sk_buff * skb,void * accel_priv,select_queue_fallback_t fallback)448 static u16 tun_select_queue(struct net_device *dev, struct sk_buff *skb,
449 			    void *accel_priv, select_queue_fallback_t fallback)
450 {
451 	struct tun_struct *tun = netdev_priv(dev);
452 	struct tun_flow_entry *e;
453 	u32 txq = 0;
454 	u32 numqueues = 0;
455 
456 	rcu_read_lock();
457 	numqueues = ACCESS_ONCE(tun->numqueues);
458 
459 	txq = skb_get_hash(skb);
460 	if (txq) {
461 		e = tun_flow_find(&tun->flows[tun_hashfn(txq)], txq);
462 		if (e) {
463 			tun_flow_save_rps_rxhash(e, txq);
464 			txq = e->queue_index;
465 		} else
466 			/* use multiply and shift instead of expensive divide */
467 			txq = ((u64)txq * numqueues) >> 32;
468 	} else if (likely(skb_rx_queue_recorded(skb))) {
469 		txq = skb_get_rx_queue(skb);
470 		while (unlikely(txq >= numqueues))
471 			txq -= numqueues;
472 	}
473 
474 	rcu_read_unlock();
475 	return txq;
476 }
477 
tun_not_capable(struct tun_struct * tun)478 static inline bool tun_not_capable(struct tun_struct *tun)
479 {
480 	const struct cred *cred = current_cred();
481 	struct net *net = dev_net(tun->dev);
482 
483 	return ((uid_valid(tun->owner) && !uid_eq(cred->euid, tun->owner)) ||
484 		  (gid_valid(tun->group) && !in_egroup_p(tun->group))) &&
485 		!ns_capable(net->user_ns, CAP_NET_ADMIN);
486 }
487 
tun_set_real_num_queues(struct tun_struct * tun)488 static void tun_set_real_num_queues(struct tun_struct *tun)
489 {
490 	netif_set_real_num_tx_queues(tun->dev, tun->numqueues);
491 	netif_set_real_num_rx_queues(tun->dev, tun->numqueues);
492 }
493 
tun_disable_queue(struct tun_struct * tun,struct tun_file * tfile)494 static void tun_disable_queue(struct tun_struct *tun, struct tun_file *tfile)
495 {
496 	tfile->detached = tun;
497 	list_add_tail(&tfile->next, &tun->disabled);
498 	++tun->numdisabled;
499 }
500 
tun_enable_queue(struct tun_file * tfile)501 static struct tun_struct *tun_enable_queue(struct tun_file *tfile)
502 {
503 	struct tun_struct *tun = tfile->detached;
504 
505 	tfile->detached = NULL;
506 	list_del_init(&tfile->next);
507 	--tun->numdisabled;
508 	return tun;
509 }
510 
tun_queue_purge(struct tun_file * tfile)511 static void tun_queue_purge(struct tun_file *tfile)
512 {
513 	skb_queue_purge(&tfile->sk.sk_receive_queue);
514 	skb_queue_purge(&tfile->sk.sk_error_queue);
515 }
516 
__tun_detach(struct tun_file * tfile,bool clean)517 static void __tun_detach(struct tun_file *tfile, bool clean)
518 {
519 	struct tun_file *ntfile;
520 	struct tun_struct *tun;
521 
522 	tun = rtnl_dereference(tfile->tun);
523 
524 	if (tun && !tfile->detached) {
525 		u16 index = tfile->queue_index;
526 		BUG_ON(index >= tun->numqueues);
527 
528 		rcu_assign_pointer(tun->tfiles[index],
529 				   tun->tfiles[tun->numqueues - 1]);
530 		ntfile = rtnl_dereference(tun->tfiles[index]);
531 		ntfile->queue_index = index;
532 
533 		--tun->numqueues;
534 		if (clean) {
535 			RCU_INIT_POINTER(tfile->tun, NULL);
536 			sock_put(&tfile->sk);
537 		} else
538 			tun_disable_queue(tun, tfile);
539 
540 		synchronize_net();
541 		tun_flow_delete_by_queue(tun, tun->numqueues + 1);
542 		/* Drop read queue */
543 		tun_queue_purge(tfile);
544 		tun_set_real_num_queues(tun);
545 	} else if (tfile->detached && clean) {
546 		tun = tun_enable_queue(tfile);
547 		sock_put(&tfile->sk);
548 	}
549 
550 	if (clean) {
551 		if (tun && tun->numqueues == 0 && tun->numdisabled == 0) {
552 			netif_carrier_off(tun->dev);
553 
554 			if (!(tun->flags & IFF_PERSIST) &&
555 			    tun->dev->reg_state == NETREG_REGISTERED)
556 				unregister_netdevice(tun->dev);
557 		}
558 		sock_put(&tfile->sk);
559 	}
560 }
561 
tun_detach(struct tun_file * tfile,bool clean)562 static void tun_detach(struct tun_file *tfile, bool clean)
563 {
564 	rtnl_lock();
565 	__tun_detach(tfile, clean);
566 	rtnl_unlock();
567 }
568 
tun_detach_all(struct net_device * dev)569 static void tun_detach_all(struct net_device *dev)
570 {
571 	struct tun_struct *tun = netdev_priv(dev);
572 	struct tun_file *tfile, *tmp;
573 	int i, n = tun->numqueues;
574 
575 	for (i = 0; i < n; i++) {
576 		tfile = rtnl_dereference(tun->tfiles[i]);
577 		BUG_ON(!tfile);
578 		tfile->socket.sk->sk_shutdown = RCV_SHUTDOWN;
579 		tfile->socket.sk->sk_data_ready(tfile->socket.sk);
580 		RCU_INIT_POINTER(tfile->tun, NULL);
581 		--tun->numqueues;
582 	}
583 	list_for_each_entry(tfile, &tun->disabled, next) {
584 		tfile->socket.sk->sk_shutdown = RCV_SHUTDOWN;
585 		tfile->socket.sk->sk_data_ready(tfile->socket.sk);
586 		RCU_INIT_POINTER(tfile->tun, NULL);
587 	}
588 	BUG_ON(tun->numqueues != 0);
589 
590 	synchronize_net();
591 	for (i = 0; i < n; i++) {
592 		tfile = rtnl_dereference(tun->tfiles[i]);
593 		/* Drop read queue */
594 		tun_queue_purge(tfile);
595 		sock_put(&tfile->sk);
596 	}
597 	list_for_each_entry_safe(tfile, tmp, &tun->disabled, next) {
598 		tun_enable_queue(tfile);
599 		tun_queue_purge(tfile);
600 		sock_put(&tfile->sk);
601 	}
602 	BUG_ON(tun->numdisabled != 0);
603 
604 	if (tun->flags & IFF_PERSIST)
605 		module_put(THIS_MODULE);
606 }
607 
tun_attach(struct tun_struct * tun,struct file * file,bool skip_filter,bool publish_tun)608 static int tun_attach(struct tun_struct *tun, struct file *file,
609 		      bool skip_filter, bool publish_tun)
610 {
611 	struct tun_file *tfile = file->private_data;
612 	int err;
613 
614 	err = security_tun_dev_attach(tfile->socket.sk, tun->security);
615 	if (err < 0)
616 		goto out;
617 
618 	err = -EINVAL;
619 	if (rtnl_dereference(tfile->tun) && !tfile->detached)
620 		goto out;
621 
622 	err = -EBUSY;
623 	if (!(tun->flags & IFF_MULTI_QUEUE) && tun->numqueues == 1)
624 		goto out;
625 
626 	err = -E2BIG;
627 	if (!tfile->detached &&
628 	    tun->numqueues + tun->numdisabled == MAX_TAP_QUEUES)
629 		goto out;
630 
631 	err = 0;
632 
633 	/* Re-attach the filter to persist device */
634 	if (!skip_filter && (tun->filter_attached == true)) {
635 		err = __sk_attach_filter(&tun->fprog, tfile->socket.sk,
636 					 lockdep_rtnl_is_held());
637 		if (!err)
638 			goto out;
639 	}
640 	tfile->queue_index = tun->numqueues;
641 	tfile->socket.sk->sk_shutdown &= ~RCV_SHUTDOWN;
642 	if (publish_tun)
643 		rcu_assign_pointer(tfile->tun, tun);
644 	rcu_assign_pointer(tun->tfiles[tun->numqueues], tfile);
645 	tun->numqueues++;
646 
647 	if (tfile->detached)
648 		tun_enable_queue(tfile);
649 	else
650 		sock_hold(&tfile->sk);
651 
652 	tun_set_real_num_queues(tun);
653 
654 	/* device is allowed to go away first, so no need to hold extra
655 	 * refcnt.
656 	 */
657 
658 out:
659 	return err;
660 }
661 
__tun_get(struct tun_file * tfile)662 static struct tun_struct *__tun_get(struct tun_file *tfile)
663 {
664 	struct tun_struct *tun;
665 
666 	rcu_read_lock();
667 	tun = rcu_dereference(tfile->tun);
668 	if (tun)
669 		dev_hold(tun->dev);
670 	rcu_read_unlock();
671 
672 	return tun;
673 }
674 
tun_get(struct file * file)675 static struct tun_struct *tun_get(struct file *file)
676 {
677 	return __tun_get(file->private_data);
678 }
679 
tun_put(struct tun_struct * tun)680 static void tun_put(struct tun_struct *tun)
681 {
682 	dev_put(tun->dev);
683 }
684 
685 /* TAP filtering */
addr_hash_set(u32 * mask,const u8 * addr)686 static void addr_hash_set(u32 *mask, const u8 *addr)
687 {
688 	int n = ether_crc(ETH_ALEN, addr) >> 26;
689 	mask[n >> 5] |= (1 << (n & 31));
690 }
691 
addr_hash_test(const u32 * mask,const u8 * addr)692 static unsigned int addr_hash_test(const u32 *mask, const u8 *addr)
693 {
694 	int n = ether_crc(ETH_ALEN, addr) >> 26;
695 	return mask[n >> 5] & (1 << (n & 31));
696 }
697 
update_filter(struct tap_filter * filter,void __user * arg)698 static int update_filter(struct tap_filter *filter, void __user *arg)
699 {
700 	struct { u8 u[ETH_ALEN]; } *addr;
701 	struct tun_filter uf;
702 	int err, alen, n, nexact;
703 
704 	if (copy_from_user(&uf, arg, sizeof(uf)))
705 		return -EFAULT;
706 
707 	if (!uf.count) {
708 		/* Disabled */
709 		filter->count = 0;
710 		return 0;
711 	}
712 
713 	alen = ETH_ALEN * uf.count;
714 	addr = kmalloc(alen, GFP_KERNEL);
715 	if (!addr)
716 		return -ENOMEM;
717 
718 	if (copy_from_user(addr, arg + sizeof(uf), alen)) {
719 		err = -EFAULT;
720 		goto done;
721 	}
722 
723 	/* The filter is updated without holding any locks. Which is
724 	 * perfectly safe. We disable it first and in the worst
725 	 * case we'll accept a few undesired packets. */
726 	filter->count = 0;
727 	wmb();
728 
729 	/* Use first set of addresses as an exact filter */
730 	for (n = 0; n < uf.count && n < FLT_EXACT_COUNT; n++)
731 		memcpy(filter->addr[n], addr[n].u, ETH_ALEN);
732 
733 	nexact = n;
734 
735 	/* Remaining multicast addresses are hashed,
736 	 * unicast will leave the filter disabled. */
737 	memset(filter->mask, 0, sizeof(filter->mask));
738 	for (; n < uf.count; n++) {
739 		if (!is_multicast_ether_addr(addr[n].u)) {
740 			err = 0; /* no filter */
741 			goto done;
742 		}
743 		addr_hash_set(filter->mask, addr[n].u);
744 	}
745 
746 	/* For ALLMULTI just set the mask to all ones.
747 	 * This overrides the mask populated above. */
748 	if ((uf.flags & TUN_FLT_ALLMULTI))
749 		memset(filter->mask, ~0, sizeof(filter->mask));
750 
751 	/* Now enable the filter */
752 	wmb();
753 	filter->count = nexact;
754 
755 	/* Return the number of exact filters */
756 	err = nexact;
757 
758 done:
759 	kfree(addr);
760 	return err;
761 }
762 
763 /* Returns: 0 - drop, !=0 - accept */
run_filter(struct tap_filter * filter,const struct sk_buff * skb)764 static int run_filter(struct tap_filter *filter, const struct sk_buff *skb)
765 {
766 	/* Cannot use eth_hdr(skb) here because skb_mac_hdr() is incorrect
767 	 * at this point. */
768 	struct ethhdr *eh = (struct ethhdr *) skb->data;
769 	int i;
770 
771 	/* Exact match */
772 	for (i = 0; i < filter->count; i++)
773 		if (ether_addr_equal(eh->h_dest, filter->addr[i]))
774 			return 1;
775 
776 	/* Inexact match (multicast only) */
777 	if (is_multicast_ether_addr(eh->h_dest))
778 		return addr_hash_test(filter->mask, eh->h_dest);
779 
780 	return 0;
781 }
782 
783 /*
784  * Checks whether the packet is accepted or not.
785  * Returns: 0 - drop, !=0 - accept
786  */
check_filter(struct tap_filter * filter,const struct sk_buff * skb)787 static int check_filter(struct tap_filter *filter, const struct sk_buff *skb)
788 {
789 	if (!filter->count)
790 		return 1;
791 
792 	return run_filter(filter, skb);
793 }
794 
795 /* Network device part of the driver */
796 
797 static const struct ethtool_ops tun_ethtool_ops;
798 
799 /* Net device detach from fd. */
tun_net_uninit(struct net_device * dev)800 static void tun_net_uninit(struct net_device *dev)
801 {
802 	tun_detach_all(dev);
803 }
804 
805 /* Net device open. */
tun_net_open(struct net_device * dev)806 static int tun_net_open(struct net_device *dev)
807 {
808 	netif_tx_start_all_queues(dev);
809 	return 0;
810 }
811 
812 /* Net device close. */
tun_net_close(struct net_device * dev)813 static int tun_net_close(struct net_device *dev)
814 {
815 	netif_tx_stop_all_queues(dev);
816 	return 0;
817 }
818 
819 /* Net device start xmit */
tun_net_xmit(struct sk_buff * skb,struct net_device * dev)820 static netdev_tx_t tun_net_xmit(struct sk_buff *skb, struct net_device *dev)
821 {
822 	struct tun_struct *tun = netdev_priv(dev);
823 	int txq = skb->queue_mapping;
824 	struct netdev_queue *queue;
825 	struct tun_file *tfile;
826 	u32 numqueues = 0;
827 
828 	rcu_read_lock();
829 	tfile = rcu_dereference(tun->tfiles[txq]);
830 	numqueues = ACCESS_ONCE(tun->numqueues);
831 
832 	/* Drop packet if interface is not attached */
833 	if (txq >= numqueues)
834 		goto drop;
835 
836 	if (numqueues == 1) {
837 		/* Select queue was not called for the skbuff, so we extract the
838 		 * RPS hash and save it into the flow_table here.
839 		 */
840 		__u32 rxhash;
841 
842 		rxhash = skb_get_hash(skb);
843 		if (rxhash) {
844 			struct tun_flow_entry *e;
845 			e = tun_flow_find(&tun->flows[tun_hashfn(rxhash)],
846 					rxhash);
847 			if (e)
848 				tun_flow_save_rps_rxhash(e, rxhash);
849 		}
850 	}
851 
852 	tun_debug(KERN_INFO, tun, "tun_net_xmit %d\n", skb->len);
853 
854 	BUG_ON(!tfile);
855 
856 	/* Drop if the filter does not like it.
857 	 * This is a noop if the filter is disabled.
858 	 * Filter can be enabled only for the TAP devices. */
859 	if (!check_filter(&tun->txflt, skb))
860 		goto drop;
861 
862 	if (tfile->socket.sk->sk_filter &&
863 	    sk_filter(tfile->socket.sk, skb))
864 		goto drop;
865 
866 	/* Limit the number of packets queued by dividing txq length with the
867 	 * number of queues.
868 	 */
869 	if (skb_queue_len(&tfile->socket.sk->sk_receive_queue) * numqueues
870 			  >= dev->tx_queue_len)
871 		goto drop;
872 
873 	if (unlikely(skb_orphan_frags(skb, GFP_ATOMIC)))
874 		goto drop;
875 
876 	skb_tx_timestamp(skb);
877 
878 	/* Orphan the skb - required as we might hang on to it
879 	 * for indefinite time.
880 	 */
881 	skb_orphan(skb);
882 
883 	nf_reset(skb);
884 
885 	/* Enqueue packet */
886 	skb_queue_tail(&tfile->socket.sk->sk_receive_queue, skb);
887 
888 	/* NETIF_F_LLTX requires to do our own update of trans_start */
889 	queue = netdev_get_tx_queue(dev, txq);
890 	queue->trans_start = jiffies;
891 
892 	/* Notify and wake up reader process */
893 	if (tfile->flags & TUN_FASYNC)
894 		kill_fasync(&tfile->fasync, SIGIO, POLL_IN);
895 	tfile->socket.sk->sk_data_ready(tfile->socket.sk);
896 
897 	rcu_read_unlock();
898 	return NETDEV_TX_OK;
899 
900 drop:
901 	dev->stats.tx_dropped++;
902 	skb_tx_error(skb);
903 	kfree_skb(skb);
904 	rcu_read_unlock();
905 	return NET_XMIT_DROP;
906 }
907 
tun_net_mclist(struct net_device * dev)908 static void tun_net_mclist(struct net_device *dev)
909 {
910 	/*
911 	 * This callback is supposed to deal with mc filter in
912 	 * _rx_ path and has nothing to do with the _tx_ path.
913 	 * In rx path we always accept everything userspace gives us.
914 	 */
915 }
916 
917 #define MIN_MTU 68
918 #define MAX_MTU 65535
919 
920 static int
tun_net_change_mtu(struct net_device * dev,int new_mtu)921 tun_net_change_mtu(struct net_device *dev, int new_mtu)
922 {
923 	if (new_mtu < MIN_MTU || new_mtu + dev->hard_header_len > MAX_MTU)
924 		return -EINVAL;
925 	dev->mtu = new_mtu;
926 	return 0;
927 }
928 
tun_net_fix_features(struct net_device * dev,netdev_features_t features)929 static netdev_features_t tun_net_fix_features(struct net_device *dev,
930 	netdev_features_t features)
931 {
932 	struct tun_struct *tun = netdev_priv(dev);
933 
934 	return (features & tun->set_features) | (features & ~TUN_USER_FEATURES);
935 }
936 #ifdef CONFIG_NET_POLL_CONTROLLER
tun_poll_controller(struct net_device * dev)937 static void tun_poll_controller(struct net_device *dev)
938 {
939 	/*
940 	 * Tun only receives frames when:
941 	 * 1) the char device endpoint gets data from user space
942 	 * 2) the tun socket gets a sendmsg call from user space
943 	 * Since both of those are synchronous operations, we are guaranteed
944 	 * never to have pending data when we poll for it
945 	 * so there is nothing to do here but return.
946 	 * We need this though so netpoll recognizes us as an interface that
947 	 * supports polling, which enables bridge devices in virt setups to
948 	 * still use netconsole
949 	 */
950 	return;
951 }
952 #endif
953 static const struct net_device_ops tun_netdev_ops = {
954 	.ndo_uninit		= tun_net_uninit,
955 	.ndo_open		= tun_net_open,
956 	.ndo_stop		= tun_net_close,
957 	.ndo_start_xmit		= tun_net_xmit,
958 	.ndo_change_mtu		= tun_net_change_mtu,
959 	.ndo_fix_features	= tun_net_fix_features,
960 	.ndo_select_queue	= tun_select_queue,
961 #ifdef CONFIG_NET_POLL_CONTROLLER
962 	.ndo_poll_controller	= tun_poll_controller,
963 #endif
964 };
965 
966 static const struct net_device_ops tap_netdev_ops = {
967 	.ndo_uninit		= tun_net_uninit,
968 	.ndo_open		= tun_net_open,
969 	.ndo_stop		= tun_net_close,
970 	.ndo_start_xmit		= tun_net_xmit,
971 	.ndo_change_mtu		= tun_net_change_mtu,
972 	.ndo_fix_features	= tun_net_fix_features,
973 	.ndo_set_rx_mode	= tun_net_mclist,
974 	.ndo_set_mac_address	= eth_mac_addr,
975 	.ndo_validate_addr	= eth_validate_addr,
976 	.ndo_select_queue	= tun_select_queue,
977 #ifdef CONFIG_NET_POLL_CONTROLLER
978 	.ndo_poll_controller	= tun_poll_controller,
979 #endif
980 	.ndo_features_check	= passthru_features_check,
981 };
982 
tun_flow_init(struct tun_struct * tun)983 static void tun_flow_init(struct tun_struct *tun)
984 {
985 	int i;
986 
987 	for (i = 0; i < TUN_NUM_FLOW_ENTRIES; i++)
988 		INIT_HLIST_HEAD(&tun->flows[i]);
989 
990 	tun->ageing_time = TUN_FLOW_EXPIRE;
991 	setup_timer(&tun->flow_gc_timer, tun_flow_cleanup, (unsigned long)tun);
992 	mod_timer(&tun->flow_gc_timer,
993 		  round_jiffies_up(jiffies + tun->ageing_time));
994 }
995 
tun_flow_uninit(struct tun_struct * tun)996 static void tun_flow_uninit(struct tun_struct *tun)
997 {
998 	del_timer_sync(&tun->flow_gc_timer);
999 	tun_flow_flush(tun);
1000 }
1001 
1002 /* Initialize net device. */
tun_net_init(struct net_device * dev)1003 static void tun_net_init(struct net_device *dev)
1004 {
1005 	struct tun_struct *tun = netdev_priv(dev);
1006 
1007 	switch (tun->flags & TUN_TYPE_MASK) {
1008 	case IFF_TUN:
1009 		dev->netdev_ops = &tun_netdev_ops;
1010 
1011 		/* Point-to-Point TUN Device */
1012 		dev->hard_header_len = 0;
1013 		dev->addr_len = 0;
1014 		dev->mtu = 1500;
1015 
1016 		/* Zero header length */
1017 		dev->type = ARPHRD_NONE;
1018 		dev->flags = IFF_POINTOPOINT | IFF_NOARP | IFF_MULTICAST;
1019 		break;
1020 
1021 	case IFF_TAP:
1022 		dev->netdev_ops = &tap_netdev_ops;
1023 		/* Ethernet TAP Device */
1024 		ether_setup(dev);
1025 		dev->priv_flags &= ~IFF_TX_SKB_SHARING;
1026 		dev->priv_flags |= IFF_LIVE_ADDR_CHANGE;
1027 
1028 		eth_hw_addr_random(dev);
1029 
1030 		break;
1031 	}
1032 }
1033 
1034 /* Character device part */
1035 
1036 /* Poll */
tun_chr_poll(struct file * file,poll_table * wait)1037 static unsigned int tun_chr_poll(struct file *file, poll_table *wait)
1038 {
1039 	struct tun_file *tfile = file->private_data;
1040 	struct tun_struct *tun = __tun_get(tfile);
1041 	struct sock *sk;
1042 	unsigned int mask = 0;
1043 
1044 	if (!tun)
1045 		return POLLERR;
1046 
1047 	sk = tfile->socket.sk;
1048 
1049 	tun_debug(KERN_INFO, tun, "tun_chr_poll\n");
1050 
1051 	poll_wait(file, sk_sleep(sk), wait);
1052 
1053 	if (!skb_queue_empty(&sk->sk_receive_queue))
1054 		mask |= POLLIN | POLLRDNORM;
1055 
1056 	if (sock_writeable(sk) ||
1057 	    (!test_and_set_bit(SOCKWQ_ASYNC_NOSPACE, &sk->sk_socket->flags) &&
1058 	     sock_writeable(sk)))
1059 		mask |= POLLOUT | POLLWRNORM;
1060 
1061 	if (tun->dev->reg_state != NETREG_REGISTERED)
1062 		mask = POLLERR;
1063 
1064 	tun_put(tun);
1065 	return mask;
1066 }
1067 
1068 /* prepad is the amount to reserve at front.  len is length after that.
1069  * linear is a hint as to how much to copy (usually headers). */
tun_alloc_skb(struct tun_file * tfile,size_t prepad,size_t len,size_t linear,int noblock)1070 static struct sk_buff *tun_alloc_skb(struct tun_file *tfile,
1071 				     size_t prepad, size_t len,
1072 				     size_t linear, int noblock)
1073 {
1074 	struct sock *sk = tfile->socket.sk;
1075 	struct sk_buff *skb;
1076 	int err;
1077 
1078 	/* Under a page?  Don't bother with paged skb. */
1079 	if (prepad + len < PAGE_SIZE || !linear)
1080 		linear = len;
1081 
1082 	skb = sock_alloc_send_pskb(sk, prepad + linear, len - linear, noblock,
1083 				   &err, 0);
1084 	if (!skb)
1085 		return ERR_PTR(err);
1086 
1087 	skb_reserve(skb, prepad);
1088 	skb_put(skb, linear);
1089 	skb->data_len = len - linear;
1090 	skb->len += len - linear;
1091 
1092 	return skb;
1093 }
1094 
1095 /* Get packet from user space buffer */
tun_get_user(struct tun_struct * tun,struct tun_file * tfile,void * msg_control,struct iov_iter * from,int noblock)1096 static ssize_t tun_get_user(struct tun_struct *tun, struct tun_file *tfile,
1097 			    void *msg_control, struct iov_iter *from,
1098 			    int noblock)
1099 {
1100 	struct tun_pi pi = { 0, cpu_to_be16(ETH_P_IP) };
1101 	struct sk_buff *skb;
1102 	size_t total_len = iov_iter_count(from);
1103 	size_t len = total_len, align = NET_SKB_PAD, linear;
1104 	struct virtio_net_hdr gso = { 0 };
1105 	int good_linear;
1106 	int copylen;
1107 	bool zerocopy = false;
1108 	int err;
1109 	u32 rxhash;
1110 	ssize_t n;
1111 
1112 	if (!(tun->flags & IFF_NO_PI)) {
1113 		if (len < sizeof(pi))
1114 			return -EINVAL;
1115 		len -= sizeof(pi);
1116 
1117 		n = copy_from_iter(&pi, sizeof(pi), from);
1118 		if (n != sizeof(pi))
1119 			return -EFAULT;
1120 	}
1121 
1122 	if (tun->flags & IFF_VNET_HDR) {
1123 		int vnet_hdr_sz = READ_ONCE(tun->vnet_hdr_sz);
1124 
1125 		if (len < vnet_hdr_sz)
1126 			return -EINVAL;
1127 		len -= vnet_hdr_sz;
1128 
1129 		n = copy_from_iter(&gso, sizeof(gso), from);
1130 		if (n != sizeof(gso))
1131 			return -EFAULT;
1132 
1133 		if ((gso.flags & VIRTIO_NET_HDR_F_NEEDS_CSUM) &&
1134 		    tun16_to_cpu(tun, gso.csum_start) + tun16_to_cpu(tun, gso.csum_offset) + 2 > tun16_to_cpu(tun, gso.hdr_len))
1135 			gso.hdr_len = cpu_to_tun16(tun, tun16_to_cpu(tun, gso.csum_start) + tun16_to_cpu(tun, gso.csum_offset) + 2);
1136 
1137 		if (tun16_to_cpu(tun, gso.hdr_len) > len)
1138 			return -EINVAL;
1139 		iov_iter_advance(from, vnet_hdr_sz - sizeof(gso));
1140 	}
1141 
1142 	if ((tun->flags & TUN_TYPE_MASK) == IFF_TAP) {
1143 		align += NET_IP_ALIGN;
1144 		if (unlikely(len < ETH_HLEN ||
1145 			     (gso.hdr_len && tun16_to_cpu(tun, gso.hdr_len) < ETH_HLEN)))
1146 			return -EINVAL;
1147 	}
1148 
1149 	good_linear = SKB_MAX_HEAD(align);
1150 
1151 	if (msg_control) {
1152 		struct iov_iter i = *from;
1153 
1154 		/* There are 256 bytes to be copied in skb, so there is
1155 		 * enough room for skb expand head in case it is used.
1156 		 * The rest of the buffer is mapped from userspace.
1157 		 */
1158 		copylen = gso.hdr_len ? tun16_to_cpu(tun, gso.hdr_len) : GOODCOPY_LEN;
1159 		if (copylen > good_linear)
1160 			copylen = good_linear;
1161 		linear = copylen;
1162 		iov_iter_advance(&i, copylen);
1163 		if (iov_iter_npages(&i, INT_MAX) <= MAX_SKB_FRAGS)
1164 			zerocopy = true;
1165 	}
1166 
1167 	if (!zerocopy) {
1168 		copylen = len;
1169 		if (tun16_to_cpu(tun, gso.hdr_len) > good_linear)
1170 			linear = good_linear;
1171 		else
1172 			linear = tun16_to_cpu(tun, gso.hdr_len);
1173 	}
1174 
1175 	skb = tun_alloc_skb(tfile, align, copylen, linear, noblock);
1176 	if (IS_ERR(skb)) {
1177 		if (PTR_ERR(skb) != -EAGAIN)
1178 			tun->dev->stats.rx_dropped++;
1179 		return PTR_ERR(skb);
1180 	}
1181 
1182 	if (zerocopy)
1183 		err = zerocopy_sg_from_iter(skb, from);
1184 	else {
1185 		err = skb_copy_datagram_from_iter(skb, 0, from, len);
1186 		if (!err && msg_control) {
1187 			struct ubuf_info *uarg = msg_control;
1188 			uarg->callback(uarg, false);
1189 		}
1190 	}
1191 
1192 	if (err) {
1193 		tun->dev->stats.rx_dropped++;
1194 		kfree_skb(skb);
1195 		return -EFAULT;
1196 	}
1197 
1198 	if (gso.flags & VIRTIO_NET_HDR_F_NEEDS_CSUM) {
1199 		if (!skb_partial_csum_set(skb, tun16_to_cpu(tun, gso.csum_start),
1200 					  tun16_to_cpu(tun, gso.csum_offset))) {
1201 			tun->dev->stats.rx_frame_errors++;
1202 			kfree_skb(skb);
1203 			return -EINVAL;
1204 		}
1205 	}
1206 
1207 	switch (tun->flags & TUN_TYPE_MASK) {
1208 	case IFF_TUN:
1209 		if (tun->flags & IFF_NO_PI) {
1210 			u8 ip_version = skb->len ? (skb->data[0] >> 4) : 0;
1211 
1212 			switch (ip_version) {
1213 			case 4:
1214 				pi.proto = htons(ETH_P_IP);
1215 				break;
1216 			case 6:
1217 				pi.proto = htons(ETH_P_IPV6);
1218 				break;
1219 			default:
1220 				tun->dev->stats.rx_dropped++;
1221 				kfree_skb(skb);
1222 				return -EINVAL;
1223 			}
1224 		}
1225 
1226 		skb_reset_mac_header(skb);
1227 		skb->protocol = pi.proto;
1228 		skb->dev = tun->dev;
1229 		break;
1230 	case IFF_TAP:
1231 		skb->protocol = eth_type_trans(skb, tun->dev);
1232 		break;
1233 	}
1234 
1235 	if (gso.gso_type != VIRTIO_NET_HDR_GSO_NONE) {
1236 		pr_debug("GSO!\n");
1237 		switch (gso.gso_type & ~VIRTIO_NET_HDR_GSO_ECN) {
1238 		case VIRTIO_NET_HDR_GSO_TCPV4:
1239 			skb_shinfo(skb)->gso_type = SKB_GSO_TCPV4;
1240 			break;
1241 		case VIRTIO_NET_HDR_GSO_TCPV6:
1242 			skb_shinfo(skb)->gso_type = SKB_GSO_TCPV6;
1243 			break;
1244 		case VIRTIO_NET_HDR_GSO_UDP:
1245 			skb_shinfo(skb)->gso_type = SKB_GSO_UDP;
1246 			break;
1247 		default:
1248 			tun->dev->stats.rx_frame_errors++;
1249 			kfree_skb(skb);
1250 			return -EINVAL;
1251 		}
1252 
1253 		if (gso.gso_type & VIRTIO_NET_HDR_GSO_ECN)
1254 			skb_shinfo(skb)->gso_type |= SKB_GSO_TCP_ECN;
1255 
1256 		skb_shinfo(skb)->gso_size = tun16_to_cpu(tun, gso.gso_size);
1257 		if (skb_shinfo(skb)->gso_size == 0) {
1258 			tun->dev->stats.rx_frame_errors++;
1259 			kfree_skb(skb);
1260 			return -EINVAL;
1261 		}
1262 
1263 		/* Header must be checked, and gso_segs computed. */
1264 		skb_shinfo(skb)->gso_type |= SKB_GSO_DODGY;
1265 		skb_shinfo(skb)->gso_segs = 0;
1266 	}
1267 
1268 	/* copy skb_ubuf_info for callback when skb has no error */
1269 	if (zerocopy) {
1270 		skb_shinfo(skb)->destructor_arg = msg_control;
1271 		skb_shinfo(skb)->tx_flags |= SKBTX_DEV_ZEROCOPY;
1272 		skb_shinfo(skb)->tx_flags |= SKBTX_SHARED_FRAG;
1273 	}
1274 
1275 	skb_reset_network_header(skb);
1276 	skb_probe_transport_header(skb, 0);
1277 
1278 	rxhash = skb_get_hash(skb);
1279 	netif_rx_ni(skb);
1280 
1281 	tun->dev->stats.rx_packets++;
1282 	tun->dev->stats.rx_bytes += len;
1283 
1284 	tun_flow_update(tun, rxhash, tfile);
1285 	return total_len;
1286 }
1287 
tun_chr_write_iter(struct kiocb * iocb,struct iov_iter * from)1288 static ssize_t tun_chr_write_iter(struct kiocb *iocb, struct iov_iter *from)
1289 {
1290 	struct file *file = iocb->ki_filp;
1291 	struct tun_struct *tun = tun_get(file);
1292 	struct tun_file *tfile = file->private_data;
1293 	ssize_t result;
1294 
1295 	if (!tun)
1296 		return -EBADFD;
1297 
1298 	result = tun_get_user(tun, tfile, NULL, from, file->f_flags & O_NONBLOCK);
1299 
1300 	tun_put(tun);
1301 	return result;
1302 }
1303 
1304 /* Put packet to the user space buffer */
tun_put_user(struct tun_struct * tun,struct tun_file * tfile,struct sk_buff * skb,struct iov_iter * iter)1305 static ssize_t tun_put_user(struct tun_struct *tun,
1306 			    struct tun_file *tfile,
1307 			    struct sk_buff *skb,
1308 			    struct iov_iter *iter)
1309 {
1310 	struct tun_pi pi = { 0, skb->protocol };
1311 	ssize_t total;
1312 	int vlan_offset = 0;
1313 	int vlan_hlen = 0;
1314 	int vnet_hdr_sz = 0;
1315 
1316 	if (skb_vlan_tag_present(skb))
1317 		vlan_hlen = VLAN_HLEN;
1318 
1319 	if (tun->flags & IFF_VNET_HDR)
1320 		vnet_hdr_sz = READ_ONCE(tun->vnet_hdr_sz);
1321 
1322 	total = skb->len + vlan_hlen + vnet_hdr_sz;
1323 
1324 	if (!(tun->flags & IFF_NO_PI)) {
1325 		if (iov_iter_count(iter) < sizeof(pi))
1326 			return -EINVAL;
1327 
1328 		total += sizeof(pi);
1329 		if (iov_iter_count(iter) < total) {
1330 			/* Packet will be striped */
1331 			pi.flags |= TUN_PKT_STRIP;
1332 		}
1333 
1334 		if (copy_to_iter(&pi, sizeof(pi), iter) != sizeof(pi))
1335 			return -EFAULT;
1336 	}
1337 
1338 	if (vnet_hdr_sz) {
1339 		struct virtio_net_hdr gso = { 0 }; /* no info leak */
1340 		if (iov_iter_count(iter) < vnet_hdr_sz)
1341 			return -EINVAL;
1342 
1343 		if (skb_is_gso(skb)) {
1344 			struct skb_shared_info *sinfo = skb_shinfo(skb);
1345 
1346 			/* This is a hint as to how much should be linear. */
1347 			gso.hdr_len = cpu_to_tun16(tun, skb_headlen(skb));
1348 			gso.gso_size = cpu_to_tun16(tun, sinfo->gso_size);
1349 			if (sinfo->gso_type & SKB_GSO_TCPV4)
1350 				gso.gso_type = VIRTIO_NET_HDR_GSO_TCPV4;
1351 			else if (sinfo->gso_type & SKB_GSO_TCPV6)
1352 				gso.gso_type = VIRTIO_NET_HDR_GSO_TCPV6;
1353 			else if (sinfo->gso_type & SKB_GSO_UDP)
1354 				gso.gso_type = VIRTIO_NET_HDR_GSO_UDP;
1355 			else {
1356 				pr_err("unexpected GSO type: "
1357 				       "0x%x, gso_size %d, hdr_len %d\n",
1358 				       sinfo->gso_type, tun16_to_cpu(tun, gso.gso_size),
1359 				       tun16_to_cpu(tun, gso.hdr_len));
1360 				print_hex_dump(KERN_ERR, "tun: ",
1361 					       DUMP_PREFIX_NONE,
1362 					       16, 1, skb->head,
1363 					       min((int)tun16_to_cpu(tun, gso.hdr_len), 64), true);
1364 				WARN_ON_ONCE(1);
1365 				return -EINVAL;
1366 			}
1367 			if (sinfo->gso_type & SKB_GSO_TCP_ECN)
1368 				gso.gso_type |= VIRTIO_NET_HDR_GSO_ECN;
1369 		} else
1370 			gso.gso_type = VIRTIO_NET_HDR_GSO_NONE;
1371 
1372 		if (skb->ip_summed == CHECKSUM_PARTIAL) {
1373 			gso.flags = VIRTIO_NET_HDR_F_NEEDS_CSUM;
1374 			gso.csum_start = cpu_to_tun16(tun, skb_checksum_start_offset(skb) +
1375 						      vlan_hlen);
1376 			gso.csum_offset = cpu_to_tun16(tun, skb->csum_offset);
1377 		} else if (skb->ip_summed == CHECKSUM_UNNECESSARY) {
1378 			gso.flags = VIRTIO_NET_HDR_F_DATA_VALID;
1379 		} /* else everything is zero */
1380 
1381 		if (copy_to_iter(&gso, sizeof(gso), iter) != sizeof(gso))
1382 			return -EFAULT;
1383 
1384 		iov_iter_advance(iter, vnet_hdr_sz - sizeof(gso));
1385 	}
1386 
1387 	if (vlan_hlen) {
1388 		int ret;
1389 		struct {
1390 			__be16 h_vlan_proto;
1391 			__be16 h_vlan_TCI;
1392 		} veth;
1393 
1394 		veth.h_vlan_proto = skb->vlan_proto;
1395 		veth.h_vlan_TCI = htons(skb_vlan_tag_get(skb));
1396 
1397 		vlan_offset = offsetof(struct vlan_ethhdr, h_vlan_proto);
1398 
1399 		ret = skb_copy_datagram_iter(skb, 0, iter, vlan_offset);
1400 		if (ret || !iov_iter_count(iter))
1401 			goto done;
1402 
1403 		ret = copy_to_iter(&veth, sizeof(veth), iter);
1404 		if (ret != sizeof(veth) || !iov_iter_count(iter))
1405 			goto done;
1406 	}
1407 
1408 	skb_copy_datagram_iter(skb, vlan_offset, iter, skb->len - vlan_offset);
1409 
1410 done:
1411 	tun->dev->stats.tx_packets++;
1412 	tun->dev->stats.tx_bytes += skb->len + vlan_hlen;
1413 
1414 	return total;
1415 }
1416 
tun_do_read(struct tun_struct * tun,struct tun_file * tfile,struct iov_iter * to,int noblock)1417 static ssize_t tun_do_read(struct tun_struct *tun, struct tun_file *tfile,
1418 			   struct iov_iter *to,
1419 			   int noblock)
1420 {
1421 	struct sk_buff *skb;
1422 	ssize_t ret;
1423 	int peeked, err, off = 0;
1424 
1425 	tun_debug(KERN_INFO, tun, "tun_do_read\n");
1426 
1427 	if (!iov_iter_count(to))
1428 		return 0;
1429 
1430 	/* Read frames from queue */
1431 	skb = __skb_recv_datagram(tfile->socket.sk, noblock ? MSG_DONTWAIT : 0,
1432 				  &peeked, &off, &err);
1433 	if (!skb)
1434 		return err;
1435 
1436 	ret = tun_put_user(tun, tfile, skb, to);
1437 	if (unlikely(ret < 0))
1438 		kfree_skb(skb);
1439 	else
1440 		consume_skb(skb);
1441 
1442 	return ret;
1443 }
1444 
tun_chr_read_iter(struct kiocb * iocb,struct iov_iter * to)1445 static ssize_t tun_chr_read_iter(struct kiocb *iocb, struct iov_iter *to)
1446 {
1447 	struct file *file = iocb->ki_filp;
1448 	struct tun_file *tfile = file->private_data;
1449 	struct tun_struct *tun = __tun_get(tfile);
1450 	ssize_t len = iov_iter_count(to), ret;
1451 
1452 	if (!tun)
1453 		return -EBADFD;
1454 	ret = tun_do_read(tun, tfile, to, file->f_flags & O_NONBLOCK);
1455 	ret = min_t(ssize_t, ret, len);
1456 	if (ret > 0)
1457 		iocb->ki_pos = ret;
1458 	tun_put(tun);
1459 	return ret;
1460 }
1461 
tun_free_netdev(struct net_device * dev)1462 static void tun_free_netdev(struct net_device *dev)
1463 {
1464 	struct tun_struct *tun = netdev_priv(dev);
1465 
1466 	BUG_ON(!(list_empty(&tun->disabled)));
1467 	tun_flow_uninit(tun);
1468 	security_tun_dev_free_security(tun->security);
1469 	free_netdev(dev);
1470 }
1471 
tun_setup(struct net_device * dev)1472 static void tun_setup(struct net_device *dev)
1473 {
1474 	struct tun_struct *tun = netdev_priv(dev);
1475 
1476 	tun->owner = INVALID_UID;
1477 	tun->group = INVALID_GID;
1478 
1479 	dev->ethtool_ops = &tun_ethtool_ops;
1480 	dev->destructor = tun_free_netdev;
1481 	/* We prefer our own queue length */
1482 	dev->tx_queue_len = TUN_READQ_SIZE;
1483 }
1484 
1485 /* Trivial set of netlink ops to allow deleting tun or tap
1486  * device with netlink.
1487  */
tun_validate(struct nlattr * tb[],struct nlattr * data[])1488 static int tun_validate(struct nlattr *tb[], struct nlattr *data[])
1489 {
1490 	/* NL_SET_ERR_MSG(extack,
1491 		       "tun/tap creation via rtnetlink is not supported."); */
1492 	return -EOPNOTSUPP;
1493 }
1494 
1495 static struct rtnl_link_ops tun_link_ops __read_mostly = {
1496 	.kind		= DRV_NAME,
1497 	.priv_size	= sizeof(struct tun_struct),
1498 	.setup		= tun_setup,
1499 	.validate	= tun_validate,
1500 };
1501 
tun_sock_write_space(struct sock * sk)1502 static void tun_sock_write_space(struct sock *sk)
1503 {
1504 	struct tun_file *tfile;
1505 	wait_queue_head_t *wqueue;
1506 
1507 	if (!sock_writeable(sk))
1508 		return;
1509 
1510 	if (!test_and_clear_bit(SOCKWQ_ASYNC_NOSPACE, &sk->sk_socket->flags))
1511 		return;
1512 
1513 	wqueue = sk_sleep(sk);
1514 	if (wqueue && waitqueue_active(wqueue))
1515 		wake_up_interruptible_sync_poll(wqueue, POLLOUT |
1516 						POLLWRNORM | POLLWRBAND);
1517 
1518 	tfile = container_of(sk, struct tun_file, sk);
1519 	kill_fasync(&tfile->fasync, SIGIO, POLL_OUT);
1520 }
1521 
tun_sendmsg(struct socket * sock,struct msghdr * m,size_t total_len)1522 static int tun_sendmsg(struct socket *sock, struct msghdr *m, size_t total_len)
1523 {
1524 	int ret;
1525 	struct tun_file *tfile = container_of(sock, struct tun_file, socket);
1526 	struct tun_struct *tun = __tun_get(tfile);
1527 
1528 	if (!tun)
1529 		return -EBADFD;
1530 
1531 	ret = tun_get_user(tun, tfile, m->msg_control, &m->msg_iter,
1532 			   m->msg_flags & MSG_DONTWAIT);
1533 	tun_put(tun);
1534 	return ret;
1535 }
1536 
tun_recvmsg(struct socket * sock,struct msghdr * m,size_t total_len,int flags)1537 static int tun_recvmsg(struct socket *sock, struct msghdr *m, size_t total_len,
1538 		       int flags)
1539 {
1540 	struct tun_file *tfile = container_of(sock, struct tun_file, socket);
1541 	struct tun_struct *tun = __tun_get(tfile);
1542 	int ret;
1543 
1544 	if (!tun)
1545 		return -EBADFD;
1546 
1547 	if (flags & ~(MSG_DONTWAIT|MSG_TRUNC|MSG_ERRQUEUE)) {
1548 		ret = -EINVAL;
1549 		goto out;
1550 	}
1551 	if (flags & MSG_ERRQUEUE) {
1552 		ret = sock_recv_errqueue(sock->sk, m, total_len,
1553 					 SOL_PACKET, TUN_TX_TIMESTAMP);
1554 		goto out;
1555 	}
1556 	ret = tun_do_read(tun, tfile, &m->msg_iter, flags & MSG_DONTWAIT);
1557 	if (ret > (ssize_t)total_len) {
1558 		m->msg_flags |= MSG_TRUNC;
1559 		ret = flags & MSG_TRUNC ? ret : total_len;
1560 	}
1561 out:
1562 	tun_put(tun);
1563 	return ret;
1564 }
1565 
1566 /* Ops structure to mimic raw sockets with tun */
1567 static const struct proto_ops tun_socket_ops = {
1568 	.sendmsg = tun_sendmsg,
1569 	.recvmsg = tun_recvmsg,
1570 };
1571 
1572 static struct proto tun_proto = {
1573 	.name		= "tun",
1574 	.owner		= THIS_MODULE,
1575 	.obj_size	= sizeof(struct tun_file),
1576 };
1577 
tun_flags(struct tun_struct * tun)1578 static int tun_flags(struct tun_struct *tun)
1579 {
1580 	return tun->flags & (TUN_FEATURES | IFF_PERSIST | IFF_TUN | IFF_TAP);
1581 }
1582 
tun_show_flags(struct device * dev,struct device_attribute * attr,char * buf)1583 static ssize_t tun_show_flags(struct device *dev, struct device_attribute *attr,
1584 			      char *buf)
1585 {
1586 	struct tun_struct *tun = netdev_priv(to_net_dev(dev));
1587 	return sprintf(buf, "0x%x\n", tun_flags(tun));
1588 }
1589 
tun_show_owner(struct device * dev,struct device_attribute * attr,char * buf)1590 static ssize_t tun_show_owner(struct device *dev, struct device_attribute *attr,
1591 			      char *buf)
1592 {
1593 	struct tun_struct *tun = netdev_priv(to_net_dev(dev));
1594 	return uid_valid(tun->owner)?
1595 		sprintf(buf, "%u\n",
1596 			from_kuid_munged(current_user_ns(), tun->owner)):
1597 		sprintf(buf, "-1\n");
1598 }
1599 
tun_show_group(struct device * dev,struct device_attribute * attr,char * buf)1600 static ssize_t tun_show_group(struct device *dev, struct device_attribute *attr,
1601 			      char *buf)
1602 {
1603 	struct tun_struct *tun = netdev_priv(to_net_dev(dev));
1604 	return gid_valid(tun->group) ?
1605 		sprintf(buf, "%u\n",
1606 			from_kgid_munged(current_user_ns(), tun->group)):
1607 		sprintf(buf, "-1\n");
1608 }
1609 
1610 static DEVICE_ATTR(tun_flags, 0444, tun_show_flags, NULL);
1611 static DEVICE_ATTR(owner, 0444, tun_show_owner, NULL);
1612 static DEVICE_ATTR(group, 0444, tun_show_group, NULL);
1613 
1614 static struct attribute *tun_dev_attrs[] = {
1615 	&dev_attr_tun_flags.attr,
1616 	&dev_attr_owner.attr,
1617 	&dev_attr_group.attr,
1618 	NULL
1619 };
1620 
1621 static const struct attribute_group tun_attr_group = {
1622 	.attrs = tun_dev_attrs
1623 };
1624 
tun_set_iff(struct net * net,struct file * file,struct ifreq * ifr)1625 static int tun_set_iff(struct net *net, struct file *file, struct ifreq *ifr)
1626 {
1627 	struct tun_struct *tun;
1628 	struct tun_file *tfile = file->private_data;
1629 	struct net_device *dev;
1630 	int err;
1631 
1632 	if (tfile->detached)
1633 		return -EINVAL;
1634 
1635 	dev = __dev_get_by_name(net, ifr->ifr_name);
1636 	if (dev) {
1637 		if (ifr->ifr_flags & IFF_TUN_EXCL)
1638 			return -EBUSY;
1639 		if ((ifr->ifr_flags & IFF_TUN) && dev->netdev_ops == &tun_netdev_ops)
1640 			tun = netdev_priv(dev);
1641 		else if ((ifr->ifr_flags & IFF_TAP) && dev->netdev_ops == &tap_netdev_ops)
1642 			tun = netdev_priv(dev);
1643 		else
1644 			return -EINVAL;
1645 
1646 		if (!!(ifr->ifr_flags & IFF_MULTI_QUEUE) !=
1647 		    !!(tun->flags & IFF_MULTI_QUEUE))
1648 			return -EINVAL;
1649 
1650 		if (tun_not_capable(tun))
1651 			return -EPERM;
1652 		err = security_tun_dev_open(tun->security);
1653 		if (err < 0)
1654 			return err;
1655 
1656 		err = tun_attach(tun, file, ifr->ifr_flags & IFF_NOFILTER, true);
1657 		if (err < 0)
1658 			return err;
1659 
1660 		if (tun->flags & IFF_MULTI_QUEUE &&
1661 		    (tun->numqueues + tun->numdisabled > 1)) {
1662 			/* One or more queue has already been attached, no need
1663 			 * to initialize the device again.
1664 			 */
1665 			return 0;
1666 		}
1667 	}
1668 	else {
1669 		char *name;
1670 		unsigned long flags = 0;
1671 		int queues = ifr->ifr_flags & IFF_MULTI_QUEUE ?
1672 			     MAX_TAP_QUEUES : 1;
1673 
1674 		if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
1675 			return -EPERM;
1676 		err = security_tun_dev_create();
1677 		if (err < 0)
1678 			return err;
1679 
1680 		/* Set dev type */
1681 		if (ifr->ifr_flags & IFF_TUN) {
1682 			/* TUN device */
1683 			flags |= IFF_TUN;
1684 			name = "tun%d";
1685 		} else if (ifr->ifr_flags & IFF_TAP) {
1686 			/* TAP device */
1687 			flags |= IFF_TAP;
1688 			name = "tap%d";
1689 		} else
1690 			return -EINVAL;
1691 
1692 		if (*ifr->ifr_name)
1693 			name = ifr->ifr_name;
1694 
1695 		dev = alloc_netdev_mqs(sizeof(struct tun_struct), name,
1696 				       NET_NAME_UNKNOWN, tun_setup, queues,
1697 				       queues);
1698 
1699 		if (!dev)
1700 			return -ENOMEM;
1701 		err = dev_get_valid_name(net, dev, name);
1702 		if (err < 0)
1703 			goto err_free_dev;
1704 
1705 		dev_net_set(dev, net);
1706 		dev->rtnl_link_ops = &tun_link_ops;
1707 		dev->ifindex = tfile->ifindex;
1708 		dev->sysfs_groups[0] = &tun_attr_group;
1709 
1710 		tun = netdev_priv(dev);
1711 		tun->dev = dev;
1712 		tun->flags = flags;
1713 		tun->txflt.count = 0;
1714 		tun->vnet_hdr_sz = sizeof(struct virtio_net_hdr);
1715 
1716 		tun->filter_attached = false;
1717 		tun->sndbuf = tfile->socket.sk->sk_sndbuf;
1718 
1719 		spin_lock_init(&tun->lock);
1720 
1721 		err = security_tun_dev_alloc_security(&tun->security);
1722 		if (err < 0)
1723 			goto err_free_dev;
1724 
1725 		tun_net_init(dev);
1726 		tun_flow_init(tun);
1727 
1728 		dev->hw_features = NETIF_F_SG | NETIF_F_FRAGLIST |
1729 				   TUN_USER_FEATURES | NETIF_F_HW_VLAN_CTAG_TX |
1730 				   NETIF_F_HW_VLAN_STAG_TX;
1731 		dev->features = dev->hw_features;
1732 		dev->vlan_features = dev->features &
1733 				     ~(NETIF_F_HW_VLAN_CTAG_TX |
1734 				       NETIF_F_HW_VLAN_STAG_TX);
1735 
1736 		INIT_LIST_HEAD(&tun->disabled);
1737 		err = tun_attach(tun, file, false, false);
1738 		if (err < 0)
1739 			goto err_free_flow;
1740 
1741 		err = register_netdevice(tun->dev);
1742 		if (err < 0)
1743 			goto err_detach;
1744 		/* free_netdev() won't check refcnt, to aovid race
1745 		 * with dev_put() we need publish tun after registration.
1746 		 */
1747 		rcu_assign_pointer(tfile->tun, tun);
1748 	}
1749 
1750 	netif_carrier_on(tun->dev);
1751 
1752 	tun_debug(KERN_INFO, tun, "tun_set_iff\n");
1753 
1754 	tun->flags = (tun->flags & ~TUN_FEATURES) |
1755 		(ifr->ifr_flags & TUN_FEATURES);
1756 
1757 	/* Make sure persistent devices do not get stuck in
1758 	 * xoff state.
1759 	 */
1760 	if (netif_running(tun->dev))
1761 		netif_tx_wake_all_queues(tun->dev);
1762 
1763 	strcpy(ifr->ifr_name, tun->dev->name);
1764 	return 0;
1765 
1766 err_detach:
1767 	tun_detach_all(dev);
1768 err_free_flow:
1769 	tun_flow_uninit(tun);
1770 	security_tun_dev_free_security(tun->security);
1771 err_free_dev:
1772 	free_netdev(dev);
1773 	return err;
1774 }
1775 
tun_get_iff(struct net * net,struct tun_struct * tun,struct ifreq * ifr)1776 static void tun_get_iff(struct net *net, struct tun_struct *tun,
1777 		       struct ifreq *ifr)
1778 {
1779 	tun_debug(KERN_INFO, tun, "tun_get_iff\n");
1780 
1781 	strcpy(ifr->ifr_name, tun->dev->name);
1782 
1783 	ifr->ifr_flags = tun_flags(tun);
1784 
1785 }
1786 
1787 /* This is like a cut-down ethtool ops, except done via tun fd so no
1788  * privs required. */
set_offload(struct tun_struct * tun,unsigned long arg)1789 static int set_offload(struct tun_struct *tun, unsigned long arg)
1790 {
1791 	netdev_features_t features = 0;
1792 
1793 	if (arg & TUN_F_CSUM) {
1794 		features |= NETIF_F_HW_CSUM;
1795 		arg &= ~TUN_F_CSUM;
1796 
1797 		if (arg & (TUN_F_TSO4|TUN_F_TSO6)) {
1798 			if (arg & TUN_F_TSO_ECN) {
1799 				features |= NETIF_F_TSO_ECN;
1800 				arg &= ~TUN_F_TSO_ECN;
1801 			}
1802 			if (arg & TUN_F_TSO4)
1803 				features |= NETIF_F_TSO;
1804 			if (arg & TUN_F_TSO6)
1805 				features |= NETIF_F_TSO6;
1806 			arg &= ~(TUN_F_TSO4|TUN_F_TSO6);
1807 		}
1808 
1809 		if (arg & TUN_F_UFO) {
1810 			features |= NETIF_F_UFO;
1811 			arg &= ~TUN_F_UFO;
1812 		}
1813 	}
1814 
1815 	/* This gives the user a way to test for new features in future by
1816 	 * trying to set them. */
1817 	if (arg)
1818 		return -EINVAL;
1819 
1820 	tun->set_features = features;
1821 	netdev_update_features(tun->dev);
1822 
1823 	return 0;
1824 }
1825 
tun_detach_filter(struct tun_struct * tun,int n)1826 static void tun_detach_filter(struct tun_struct *tun, int n)
1827 {
1828 	int i;
1829 	struct tun_file *tfile;
1830 
1831 	for (i = 0; i < n; i++) {
1832 		tfile = rtnl_dereference(tun->tfiles[i]);
1833 		__sk_detach_filter(tfile->socket.sk, lockdep_rtnl_is_held());
1834 	}
1835 
1836 	tun->filter_attached = false;
1837 }
1838 
tun_attach_filter(struct tun_struct * tun)1839 static int tun_attach_filter(struct tun_struct *tun)
1840 {
1841 	int i, ret = 0;
1842 	struct tun_file *tfile;
1843 
1844 	for (i = 0; i < tun->numqueues; i++) {
1845 		tfile = rtnl_dereference(tun->tfiles[i]);
1846 		ret = __sk_attach_filter(&tun->fprog, tfile->socket.sk,
1847 					 lockdep_rtnl_is_held());
1848 		if (ret) {
1849 			tun_detach_filter(tun, i);
1850 			return ret;
1851 		}
1852 	}
1853 
1854 	tun->filter_attached = true;
1855 	return ret;
1856 }
1857 
tun_set_sndbuf(struct tun_struct * tun)1858 static void tun_set_sndbuf(struct tun_struct *tun)
1859 {
1860 	struct tun_file *tfile;
1861 	int i;
1862 
1863 	for (i = 0; i < tun->numqueues; i++) {
1864 		tfile = rtnl_dereference(tun->tfiles[i]);
1865 		tfile->socket.sk->sk_sndbuf = tun->sndbuf;
1866 	}
1867 }
1868 
tun_set_queue(struct file * file,struct ifreq * ifr)1869 static int tun_set_queue(struct file *file, struct ifreq *ifr)
1870 {
1871 	struct tun_file *tfile = file->private_data;
1872 	struct tun_struct *tun;
1873 	int ret = 0;
1874 
1875 	rtnl_lock();
1876 
1877 	if (ifr->ifr_flags & IFF_ATTACH_QUEUE) {
1878 		tun = tfile->detached;
1879 		if (!tun) {
1880 			ret = -EINVAL;
1881 			goto unlock;
1882 		}
1883 		ret = security_tun_dev_attach_queue(tun->security);
1884 		if (ret < 0)
1885 			goto unlock;
1886 		ret = tun_attach(tun, file, false, true);
1887 	} else if (ifr->ifr_flags & IFF_DETACH_QUEUE) {
1888 		tun = rtnl_dereference(tfile->tun);
1889 		if (!tun || !(tun->flags & IFF_MULTI_QUEUE) || tfile->detached)
1890 			ret = -EINVAL;
1891 		else
1892 			__tun_detach(tfile, false);
1893 	} else
1894 		ret = -EINVAL;
1895 
1896 unlock:
1897 	rtnl_unlock();
1898 	return ret;
1899 }
1900 
1901 /* Return correct value for tun->dev->addr_len based on tun->dev->type. */
tun_get_addr_len(unsigned short type)1902 static unsigned char tun_get_addr_len(unsigned short type)
1903 {
1904 	switch (type) {
1905 	case ARPHRD_IP6GRE:
1906 	case ARPHRD_TUNNEL6:
1907 		return sizeof(struct in6_addr);
1908 	case ARPHRD_IPGRE:
1909 	case ARPHRD_TUNNEL:
1910 	case ARPHRD_SIT:
1911 		return 4;
1912 	case ARPHRD_ETHER:
1913 		return ETH_ALEN;
1914 	case ARPHRD_IEEE802154:
1915 	case ARPHRD_IEEE802154_MONITOR:
1916 		return IEEE802154_EXTENDED_ADDR_LEN;
1917 	case ARPHRD_PHONET_PIPE:
1918 	case ARPHRD_PPP:
1919 	case ARPHRD_NONE:
1920 		return 0;
1921 	case ARPHRD_6LOWPAN:
1922 		return EUI64_ADDR_LEN;
1923 	case ARPHRD_FDDI:
1924 		return FDDI_K_ALEN;
1925 	case ARPHRD_HIPPI:
1926 		return HIPPI_ALEN;
1927 	case ARPHRD_IEEE802:
1928 		return FC_ALEN;
1929 	case ARPHRD_ROSE:
1930 		return ROSE_ADDR_LEN;
1931 	case ARPHRD_NETROM:
1932 		return AX25_ADDR_LEN;
1933 	case ARPHRD_LOCALTLK:
1934 		return LTALK_ALEN;
1935 	default:
1936 		return 0;
1937 	}
1938 }
1939 
__tun_chr_ioctl(struct file * file,unsigned int cmd,unsigned long arg,int ifreq_len)1940 static long __tun_chr_ioctl(struct file *file, unsigned int cmd,
1941 			    unsigned long arg, int ifreq_len)
1942 {
1943 	struct tun_file *tfile = file->private_data;
1944 	struct tun_struct *tun;
1945 	void __user* argp = (void __user*)arg;
1946 	struct ifreq ifr;
1947 	kuid_t owner;
1948 	kgid_t group;
1949 	int sndbuf;
1950 	int vnet_hdr_sz;
1951 	unsigned int ifindex;
1952 	int le;
1953 	int ret;
1954 
1955 #ifdef CONFIG_ANDROID_PARANOID_NETWORK
1956 	if (cmd != TUNGETIFF && !capable(CAP_NET_ADMIN)) {
1957 		return -EPERM;
1958 	}
1959 #endif
1960 
1961 	if (cmd == TUNSETIFF || cmd == TUNSETQUEUE || _IOC_TYPE(cmd) == 0x89) {
1962 		if (copy_from_user(&ifr, argp, ifreq_len))
1963 			return -EFAULT;
1964 	} else {
1965 		memset(&ifr, 0, sizeof(ifr));
1966 	}
1967 	if (cmd == TUNGETFEATURES) {
1968 		/* Currently this just means: "what IFF flags are valid?".
1969 		 * This is needed because we never checked for invalid flags on
1970 		 * TUNSETIFF.
1971 		 */
1972 		return put_user(IFF_TUN | IFF_TAP | TUN_FEATURES,
1973 				(unsigned int __user*)argp);
1974 	} else if (cmd == TUNSETQUEUE)
1975 		return tun_set_queue(file, &ifr);
1976 
1977 	ret = 0;
1978 	rtnl_lock();
1979 
1980 	tun = __tun_get(tfile);
1981 	if (cmd == TUNSETIFF && !tun) {
1982 		ifr.ifr_name[IFNAMSIZ-1] = '\0';
1983 
1984 		ret = tun_set_iff(sock_net(&tfile->sk), file, &ifr);
1985 
1986 		if (ret)
1987 			goto unlock;
1988 
1989 		if (copy_to_user(argp, &ifr, ifreq_len))
1990 			ret = -EFAULT;
1991 		goto unlock;
1992 	}
1993 	if (cmd == TUNSETIFINDEX) {
1994 		ret = -EPERM;
1995 		if (tun)
1996 			goto unlock;
1997 
1998 		ret = -EFAULT;
1999 		if (copy_from_user(&ifindex, argp, sizeof(ifindex)))
2000 			goto unlock;
2001 
2002 		ret = 0;
2003 		tfile->ifindex = ifindex;
2004 		goto unlock;
2005 	}
2006 
2007 	ret = -EBADFD;
2008 	if (!tun)
2009 		goto unlock;
2010 
2011 	tun_debug(KERN_INFO, tun, "tun_chr_ioctl cmd %u\n", cmd);
2012 
2013 	ret = 0;
2014 	switch (cmd) {
2015 	case TUNGETIFF:
2016 		tun_get_iff(current->nsproxy->net_ns, tun, &ifr);
2017 
2018 		if (tfile->detached)
2019 			ifr.ifr_flags |= IFF_DETACH_QUEUE;
2020 		if (!tfile->socket.sk->sk_filter)
2021 			ifr.ifr_flags |= IFF_NOFILTER;
2022 
2023 		if (copy_to_user(argp, &ifr, ifreq_len))
2024 			ret = -EFAULT;
2025 		break;
2026 
2027 	case TUNSETNOCSUM:
2028 		/* Disable/Enable checksum */
2029 
2030 		/* [unimplemented] */
2031 		tun_debug(KERN_INFO, tun, "ignored: set checksum %s\n",
2032 			  arg ? "disabled" : "enabled");
2033 		break;
2034 
2035 	case TUNSETPERSIST:
2036 		/* Disable/Enable persist mode. Keep an extra reference to the
2037 		 * module to prevent the module being unprobed.
2038 		 */
2039 		if (arg && !(tun->flags & IFF_PERSIST)) {
2040 			tun->flags |= IFF_PERSIST;
2041 			__module_get(THIS_MODULE);
2042 		}
2043 		if (!arg && (tun->flags & IFF_PERSIST)) {
2044 			tun->flags &= ~IFF_PERSIST;
2045 			module_put(THIS_MODULE);
2046 		}
2047 
2048 		tun_debug(KERN_INFO, tun, "persist %s\n",
2049 			  arg ? "enabled" : "disabled");
2050 		break;
2051 
2052 	case TUNSETOWNER:
2053 		/* Set owner of the device */
2054 		owner = make_kuid(current_user_ns(), arg);
2055 		if (!uid_valid(owner)) {
2056 			ret = -EINVAL;
2057 			break;
2058 		}
2059 		tun->owner = owner;
2060 		tun_debug(KERN_INFO, tun, "owner set to %u\n",
2061 			  from_kuid(&init_user_ns, tun->owner));
2062 		break;
2063 
2064 	case TUNSETGROUP:
2065 		/* Set group of the device */
2066 		group = make_kgid(current_user_ns(), arg);
2067 		if (!gid_valid(group)) {
2068 			ret = -EINVAL;
2069 			break;
2070 		}
2071 		tun->group = group;
2072 		tun_debug(KERN_INFO, tun, "group set to %u\n",
2073 			  from_kgid(&init_user_ns, tun->group));
2074 		break;
2075 
2076 	case TUNSETLINK:
2077 		/* Only allow setting the type when the interface is down */
2078 		if (tun->dev->flags & IFF_UP) {
2079 			tun_debug(KERN_INFO, tun,
2080 				  "Linktype set failed because interface is up\n");
2081 			ret = -EBUSY;
2082 		} else {
2083 			tun->dev->type = (int) arg;
2084 			tun->dev->addr_len = tun_get_addr_len(tun->dev->type);
2085 			tun_debug(KERN_INFO, tun, "linktype set to %d\n",
2086 				  tun->dev->type);
2087 			ret = 0;
2088 		}
2089 		break;
2090 
2091 #ifdef TUN_DEBUG
2092 	case TUNSETDEBUG:
2093 		tun->debug = arg;
2094 		break;
2095 #endif
2096 	case TUNSETOFFLOAD:
2097 		ret = set_offload(tun, arg);
2098 		break;
2099 
2100 	case TUNSETTXFILTER:
2101 		/* Can be set only for TAPs */
2102 		ret = -EINVAL;
2103 		if ((tun->flags & TUN_TYPE_MASK) != IFF_TAP)
2104 			break;
2105 		ret = update_filter(&tun->txflt, (void __user *)arg);
2106 		break;
2107 
2108 	case SIOCGIFHWADDR:
2109 		/* Get hw address */
2110 		memcpy(ifr.ifr_hwaddr.sa_data, tun->dev->dev_addr, ETH_ALEN);
2111 		ifr.ifr_hwaddr.sa_family = tun->dev->type;
2112 		if (copy_to_user(argp, &ifr, ifreq_len))
2113 			ret = -EFAULT;
2114 		break;
2115 
2116 	case SIOCSIFHWADDR:
2117 		/* Set hw address */
2118 		tun_debug(KERN_DEBUG, tun, "set hw address: %pM\n",
2119 			  ifr.ifr_hwaddr.sa_data);
2120 
2121 		ret = dev_set_mac_address(tun->dev, &ifr.ifr_hwaddr);
2122 		break;
2123 
2124 	case TUNGETSNDBUF:
2125 		sndbuf = tfile->socket.sk->sk_sndbuf;
2126 		if (copy_to_user(argp, &sndbuf, sizeof(sndbuf)))
2127 			ret = -EFAULT;
2128 		break;
2129 
2130 	case TUNSETSNDBUF:
2131 		if (copy_from_user(&sndbuf, argp, sizeof(sndbuf))) {
2132 			ret = -EFAULT;
2133 			break;
2134 		}
2135 		if (sndbuf <= 0) {
2136 			ret = -EINVAL;
2137 			break;
2138 		}
2139 
2140 		tun->sndbuf = sndbuf;
2141 		tun_set_sndbuf(tun);
2142 		break;
2143 
2144 	case TUNGETVNETHDRSZ:
2145 		vnet_hdr_sz = tun->vnet_hdr_sz;
2146 		if (copy_to_user(argp, &vnet_hdr_sz, sizeof(vnet_hdr_sz)))
2147 			ret = -EFAULT;
2148 		break;
2149 
2150 	case TUNSETVNETHDRSZ:
2151 		if (copy_from_user(&vnet_hdr_sz, argp, sizeof(vnet_hdr_sz))) {
2152 			ret = -EFAULT;
2153 			break;
2154 		}
2155 		if (vnet_hdr_sz < (int)sizeof(struct virtio_net_hdr)) {
2156 			ret = -EINVAL;
2157 			break;
2158 		}
2159 
2160 		tun->vnet_hdr_sz = vnet_hdr_sz;
2161 		break;
2162 
2163 	case TUNGETVNETLE:
2164 		le = !!(tun->flags & TUN_VNET_LE);
2165 		if (put_user(le, (int __user *)argp))
2166 			ret = -EFAULT;
2167 		break;
2168 
2169 	case TUNSETVNETLE:
2170 		if (get_user(le, (int __user *)argp)) {
2171 			ret = -EFAULT;
2172 			break;
2173 		}
2174 		if (le)
2175 			tun->flags |= TUN_VNET_LE;
2176 		else
2177 			tun->flags &= ~TUN_VNET_LE;
2178 		break;
2179 
2180 	case TUNGETVNETBE:
2181 		ret = tun_get_vnet_be(tun, argp);
2182 		break;
2183 
2184 	case TUNSETVNETBE:
2185 		ret = tun_set_vnet_be(tun, argp);
2186 		break;
2187 
2188 	case TUNATTACHFILTER:
2189 		/* Can be set only for TAPs */
2190 		ret = -EINVAL;
2191 		if ((tun->flags & TUN_TYPE_MASK) != IFF_TAP)
2192 			break;
2193 		ret = -EFAULT;
2194 		if (copy_from_user(&tun->fprog, argp, sizeof(tun->fprog)))
2195 			break;
2196 
2197 		ret = tun_attach_filter(tun);
2198 		break;
2199 
2200 	case TUNDETACHFILTER:
2201 		/* Can be set only for TAPs */
2202 		ret = -EINVAL;
2203 		if ((tun->flags & TUN_TYPE_MASK) != IFF_TAP)
2204 			break;
2205 		ret = 0;
2206 		tun_detach_filter(tun, tun->numqueues);
2207 		break;
2208 
2209 	case TUNGETFILTER:
2210 		ret = -EINVAL;
2211 		if ((tun->flags & TUN_TYPE_MASK) != IFF_TAP)
2212 			break;
2213 		ret = -EFAULT;
2214 		if (copy_to_user(argp, &tun->fprog, sizeof(tun->fprog)))
2215 			break;
2216 		ret = 0;
2217 		break;
2218 
2219 	default:
2220 		ret = -EINVAL;
2221 		break;
2222 	}
2223 
2224 unlock:
2225 	rtnl_unlock();
2226 	if (tun)
2227 		tun_put(tun);
2228 	return ret;
2229 }
2230 
tun_chr_ioctl(struct file * file,unsigned int cmd,unsigned long arg)2231 static long tun_chr_ioctl(struct file *file,
2232 			  unsigned int cmd, unsigned long arg)
2233 {
2234 	return __tun_chr_ioctl(file, cmd, arg, sizeof (struct ifreq));
2235 }
2236 
2237 #ifdef CONFIG_COMPAT
tun_chr_compat_ioctl(struct file * file,unsigned int cmd,unsigned long arg)2238 static long tun_chr_compat_ioctl(struct file *file,
2239 			 unsigned int cmd, unsigned long arg)
2240 {
2241 	switch (cmd) {
2242 	case TUNSETIFF:
2243 	case TUNGETIFF:
2244 	case TUNSETTXFILTER:
2245 	case TUNGETSNDBUF:
2246 	case TUNSETSNDBUF:
2247 	case SIOCGIFHWADDR:
2248 	case SIOCSIFHWADDR:
2249 		arg = (unsigned long)compat_ptr(arg);
2250 		break;
2251 	default:
2252 		arg = (compat_ulong_t)arg;
2253 		break;
2254 	}
2255 
2256 	/*
2257 	 * compat_ifreq is shorter than ifreq, so we must not access beyond
2258 	 * the end of that structure. All fields that are used in this
2259 	 * driver are compatible though, we don't need to convert the
2260 	 * contents.
2261 	 */
2262 	return __tun_chr_ioctl(file, cmd, arg, sizeof(struct compat_ifreq));
2263 }
2264 #endif /* CONFIG_COMPAT */
2265 
tun_chr_fasync(int fd,struct file * file,int on)2266 static int tun_chr_fasync(int fd, struct file *file, int on)
2267 {
2268 	struct tun_file *tfile = file->private_data;
2269 	int ret;
2270 
2271 	if ((ret = fasync_helper(fd, file, on, &tfile->fasync)) < 0)
2272 		goto out;
2273 
2274 	if (on) {
2275 		__f_setown(file, task_pid(current), PIDTYPE_PID, 0);
2276 		tfile->flags |= TUN_FASYNC;
2277 	} else
2278 		tfile->flags &= ~TUN_FASYNC;
2279 	ret = 0;
2280 out:
2281 	return ret;
2282 }
2283 
tun_chr_open(struct inode * inode,struct file * file)2284 static int tun_chr_open(struct inode *inode, struct file * file)
2285 {
2286 	struct net *net = current->nsproxy->net_ns;
2287 	struct tun_file *tfile;
2288 
2289 	DBG1(KERN_INFO, "tunX: tun_chr_open\n");
2290 
2291 	tfile = (struct tun_file *)sk_alloc(net, AF_UNSPEC, GFP_KERNEL,
2292 					    &tun_proto, 0);
2293 	if (!tfile)
2294 		return -ENOMEM;
2295 	RCU_INIT_POINTER(tfile->tun, NULL);
2296 	tfile->flags = 0;
2297 	tfile->ifindex = 0;
2298 
2299 	init_waitqueue_head(&tfile->wq.wait);
2300 	RCU_INIT_POINTER(tfile->socket.wq, &tfile->wq);
2301 
2302 	tfile->socket.file = file;
2303 	tfile->socket.ops = &tun_socket_ops;
2304 
2305 	sock_init_data(&tfile->socket, &tfile->sk);
2306 
2307 	tfile->sk.sk_write_space = tun_sock_write_space;
2308 	tfile->sk.sk_sndbuf = INT_MAX;
2309 
2310 	file->private_data = tfile;
2311 	INIT_LIST_HEAD(&tfile->next);
2312 
2313 	sock_set_flag(&tfile->sk, SOCK_ZEROCOPY);
2314 
2315 	return 0;
2316 }
2317 
tun_chr_close(struct inode * inode,struct file * file)2318 static int tun_chr_close(struct inode *inode, struct file *file)
2319 {
2320 	struct tun_file *tfile = file->private_data;
2321 
2322 	tun_detach(tfile, true);
2323 
2324 	return 0;
2325 }
2326 
2327 #ifdef CONFIG_PROC_FS
tun_chr_show_fdinfo(struct seq_file * m,struct file * f)2328 static void tun_chr_show_fdinfo(struct seq_file *m, struct file *f)
2329 {
2330 	struct tun_struct *tun;
2331 	struct ifreq ifr;
2332 
2333 	memset(&ifr, 0, sizeof(ifr));
2334 
2335 	rtnl_lock();
2336 	tun = tun_get(f);
2337 	if (tun)
2338 		tun_get_iff(current->nsproxy->net_ns, tun, &ifr);
2339 	rtnl_unlock();
2340 
2341 	if (tun)
2342 		tun_put(tun);
2343 
2344 	seq_printf(m, "iff:\t%s\n", ifr.ifr_name);
2345 }
2346 #endif
2347 
2348 static const struct file_operations tun_fops = {
2349 	.owner	= THIS_MODULE,
2350 	.llseek = no_llseek,
2351 	.read_iter  = tun_chr_read_iter,
2352 	.write_iter = tun_chr_write_iter,
2353 	.poll	= tun_chr_poll,
2354 	.unlocked_ioctl	= tun_chr_ioctl,
2355 #ifdef CONFIG_COMPAT
2356 	.compat_ioctl = tun_chr_compat_ioctl,
2357 #endif
2358 	.open	= tun_chr_open,
2359 	.release = tun_chr_close,
2360 	.fasync = tun_chr_fasync,
2361 #ifdef CONFIG_PROC_FS
2362 	.show_fdinfo = tun_chr_show_fdinfo,
2363 #endif
2364 };
2365 
2366 static struct miscdevice tun_miscdev = {
2367 	.minor = TUN_MINOR,
2368 	.name = "tun",
2369 	.nodename = "net/tun",
2370 	.fops = &tun_fops,
2371 };
2372 
2373 /* ethtool interface */
2374 
tun_get_settings(struct net_device * dev,struct ethtool_cmd * cmd)2375 static int tun_get_settings(struct net_device *dev, struct ethtool_cmd *cmd)
2376 {
2377 	cmd->supported		= 0;
2378 	cmd->advertising	= 0;
2379 	ethtool_cmd_speed_set(cmd, SPEED_10);
2380 	cmd->duplex		= DUPLEX_FULL;
2381 	cmd->port		= PORT_TP;
2382 	cmd->phy_address	= 0;
2383 	cmd->transceiver	= XCVR_INTERNAL;
2384 	cmd->autoneg		= AUTONEG_DISABLE;
2385 	cmd->maxtxpkt		= 0;
2386 	cmd->maxrxpkt		= 0;
2387 	return 0;
2388 }
2389 
tun_get_drvinfo(struct net_device * dev,struct ethtool_drvinfo * info)2390 static void tun_get_drvinfo(struct net_device *dev, struct ethtool_drvinfo *info)
2391 {
2392 	struct tun_struct *tun = netdev_priv(dev);
2393 
2394 	strlcpy(info->driver, DRV_NAME, sizeof(info->driver));
2395 	strlcpy(info->version, DRV_VERSION, sizeof(info->version));
2396 
2397 	switch (tun->flags & TUN_TYPE_MASK) {
2398 	case IFF_TUN:
2399 		strlcpy(info->bus_info, "tun", sizeof(info->bus_info));
2400 		break;
2401 	case IFF_TAP:
2402 		strlcpy(info->bus_info, "tap", sizeof(info->bus_info));
2403 		break;
2404 	}
2405 }
2406 
tun_get_msglevel(struct net_device * dev)2407 static u32 tun_get_msglevel(struct net_device *dev)
2408 {
2409 #ifdef TUN_DEBUG
2410 	struct tun_struct *tun = netdev_priv(dev);
2411 	return tun->debug;
2412 #else
2413 	return -EOPNOTSUPP;
2414 #endif
2415 }
2416 
tun_set_msglevel(struct net_device * dev,u32 value)2417 static void tun_set_msglevel(struct net_device *dev, u32 value)
2418 {
2419 #ifdef TUN_DEBUG
2420 	struct tun_struct *tun = netdev_priv(dev);
2421 	tun->debug = value;
2422 #endif
2423 }
2424 
2425 static const struct ethtool_ops tun_ethtool_ops = {
2426 	.get_settings	= tun_get_settings,
2427 	.get_drvinfo	= tun_get_drvinfo,
2428 	.get_msglevel	= tun_get_msglevel,
2429 	.set_msglevel	= tun_set_msglevel,
2430 	.get_link	= ethtool_op_get_link,
2431 	.get_ts_info	= ethtool_op_get_ts_info,
2432 };
2433 
2434 
tun_init(void)2435 static int __init tun_init(void)
2436 {
2437 	int ret = 0;
2438 
2439 	pr_info("%s, %s\n", DRV_DESCRIPTION, DRV_VERSION);
2440 	pr_info("%s\n", DRV_COPYRIGHT);
2441 
2442 	ret = rtnl_link_register(&tun_link_ops);
2443 	if (ret) {
2444 		pr_err("Can't register link_ops\n");
2445 		goto err_linkops;
2446 	}
2447 
2448 	ret = misc_register(&tun_miscdev);
2449 	if (ret) {
2450 		pr_err("Can't register misc device %d\n", TUN_MINOR);
2451 		goto err_misc;
2452 	}
2453 	return  0;
2454 err_misc:
2455 	rtnl_link_unregister(&tun_link_ops);
2456 err_linkops:
2457 	return ret;
2458 }
2459 
tun_cleanup(void)2460 static void tun_cleanup(void)
2461 {
2462 	misc_deregister(&tun_miscdev);
2463 	rtnl_link_unregister(&tun_link_ops);
2464 }
2465 
2466 /* Get an underlying socket object from tun file.  Returns error unless file is
2467  * attached to a device.  The returned object works like a packet socket, it
2468  * can be used for sock_sendmsg/sock_recvmsg.  The caller is responsible for
2469  * holding a reference to the file for as long as the socket is in use. */
tun_get_socket(struct file * file)2470 struct socket *tun_get_socket(struct file *file)
2471 {
2472 	struct tun_file *tfile;
2473 	if (file->f_op != &tun_fops)
2474 		return ERR_PTR(-EINVAL);
2475 	tfile = file->private_data;
2476 	if (!tfile)
2477 		return ERR_PTR(-EBADFD);
2478 	return &tfile->socket;
2479 }
2480 EXPORT_SYMBOL_GPL(tun_get_socket);
2481 
2482 module_init(tun_init);
2483 module_exit(tun_cleanup);
2484 MODULE_DESCRIPTION(DRV_DESCRIPTION);
2485 MODULE_AUTHOR(DRV_COPYRIGHT);
2486 MODULE_LICENSE("GPL");
2487 MODULE_ALIAS_MISCDEV(TUN_MINOR);
2488 MODULE_ALIAS("devname:net/tun");
2489