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