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