]> git.proxmox.com Git - mirror_ubuntu-hirsute-kernel.git/blame - drivers/net/tun.c
atm: br2684: Fix excessive queue bloat
[mirror_ubuntu-hirsute-kernel.git] / drivers / net / tun.c
CommitLineData
1da177e4
LT
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 *
ff4cc3ac
MK
21 * Mike Kershaw <dragorn@kismetwireless.net> 2005/08/14
22 * Add TUNSETLINK ioctl to set the link encapsulation
23 *
1da177e4 24 * Mark Smith <markzzzsmith@yahoo.com.au>
344dc8ed 25 * Use eth_random_addr() for tap MAC address.
1da177e4
LT
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
6b8a66ee
JP
37#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
38
1da177e4
LT
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
1da177e4
LT
44#include <linux/module.h>
45#include <linux/errno.h>
46#include <linux/kernel.h>
47#include <linux/major.h>
48#include <linux/slab.h>
49#include <linux/poll.h>
50#include <linux/fcntl.h>
51#include <linux/init.h>
52#include <linux/skbuff.h>
53#include <linux/netdevice.h>
54#include <linux/etherdevice.h>
55#include <linux/miscdevice.h>
56#include <linux/ethtool.h>
57#include <linux/rtnetlink.h>
50857e2a 58#include <linux/compat.h>
1da177e4
LT
59#include <linux/if.h>
60#include <linux/if_arp.h>
61#include <linux/if_ether.h>
62#include <linux/if_tun.h>
63#include <linux/crc32.h>
d647a591 64#include <linux/nsproxy.h>
f43798c2 65#include <linux/virtio_net.h>
99405162 66#include <linux/rcupdate.h>
881d966b 67#include <net/net_namespace.h>
79d17604 68#include <net/netns/generic.h>
f019a7a5 69#include <net/rtnetlink.h>
33dccbb0 70#include <net/sock.h>
1da177e4 71
1da177e4
LT
72#include <asm/uaccess.h>
73
14daa021
RR
74/* Uncomment to enable debugging */
75/* #define TUN_DEBUG 1 */
76
1da177e4
LT
77#ifdef TUN_DEBUG
78static int debug;
14daa021 79
6b8a66ee
JP
80#define tun_debug(level, tun, fmt, args...) \
81do { \
82 if (tun->debug) \
83 netdev_printk(level, tun->dev, fmt, ##args); \
84} while (0)
85#define DBG1(level, fmt, args...) \
86do { \
87 if (debug == 2) \
88 printk(level fmt, ##args); \
89} while (0)
14daa021 90#else
6b8a66ee
JP
91#define tun_debug(level, tun, fmt, args...) \
92do { \
93 if (0) \
94 netdev_printk(level, tun->dev, fmt, ##args); \
95} while (0)
96#define DBG1(level, fmt, args...) \
97do { \
98 if (0) \
99 printk(level fmt, ##args); \
100} while (0)
14daa021
RR
101#endif
102
0690899b
MT
103#define GOODCOPY_LEN 128
104
f271b2cc
MK
105#define FLT_EXACT_COUNT 8
106struct tap_filter {
107 unsigned int count; /* Number of addrs. Zero means disabled */
108 u32 mask[2]; /* Mask of the hashed addrs */
109 unsigned char addr[FLT_EXACT_COUNT][ETH_ALEN];
110};
111
c8d68e6b
JW
112/* 1024 is probably a high enough limit: modern hypervisors seem to support on
113 * the order of 100-200 CPUs so this leaves us some breathing space if we want
114 * to match a queue per guest CPU.
115 */
116#define MAX_TAP_QUEUES 1024
117
96442e42
JW
118#define TUN_FLOW_EXPIRE (3 * HZ)
119
54f968d6
JW
120/* A tun_file connects an open character device to a tuntap netdevice. It
121 * also contains all socket related strctures (except sock_fprog and tap_filter)
122 * to serve as one transmit queue for tuntap device. The sock_fprog and
123 * tap_filter were kept in tun_struct since they were used for filtering for the
124 * netdevice not for a specific queue (at least I didn't see the reqirement for
125 * this).
6e914fc7
JW
126 *
127 * RCU usage:
128 * The tun_file and tun_struct are loosely coupled, the pointer from on to the
129 * other can only be read while rcu_read_lock or rtnl_lock is held.
54f968d6 130 */
631ab46b 131struct tun_file {
54f968d6
JW
132 struct sock sk;
133 struct socket socket;
134 struct socket_wq wq;
6e914fc7 135 struct tun_struct __rcu *tun;
36b50bab 136 struct net *net;
54f968d6
JW
137 struct fasync_struct *fasync;
138 /* only used for fasnyc */
139 unsigned int flags;
c8d68e6b 140 u16 queue_index;
631ab46b
EB
141};
142
96442e42
JW
143struct tun_flow_entry {
144 struct hlist_node hash_link;
145 struct rcu_head rcu;
146 struct tun_struct *tun;
147
148 u32 rxhash;
149 int queue_index;
150 unsigned long updated;
151};
152
153#define TUN_NUM_FLOW_ENTRIES 1024
154
54f968d6
JW
155/* Since the socket were moved to tun_file, to preserve the behavior of persist
156 * device, socket fileter, sndbuf and vnet header size were restore when the
157 * file were attached to a persist device.
158 */
14daa021 159struct tun_struct {
c8d68e6b
JW
160 struct tun_file __rcu *tfiles[MAX_TAP_QUEUES];
161 unsigned int numqueues;
f271b2cc 162 unsigned int flags;
0625c883
EB
163 kuid_t owner;
164 kgid_t group;
14daa021 165
14daa021 166 struct net_device *dev;
c8f44aff 167 netdev_features_t set_features;
88255375
MM
168#define TUN_USER_FEATURES (NETIF_F_HW_CSUM|NETIF_F_TSO_ECN|NETIF_F_TSO| \
169 NETIF_F_TSO6|NETIF_F_UFO)
d9d52b51
MT
170
171 int vnet_hdr_sz;
54f968d6
JW
172 int sndbuf;
173 struct tap_filter txflt;
174 struct sock_fprog fprog;
175 /* protected by rtnl lock */
176 bool filter_attached;
14daa021
RR
177#ifdef TUN_DEBUG
178 int debug;
1da177e4 179#endif
96442e42
JW
180 spinlock_t lock;
181 struct kmem_cache *flow_cache;
182 struct hlist_head flows[TUN_NUM_FLOW_ENTRIES];
183 struct timer_list flow_gc_timer;
184 unsigned long ageing_time;
14daa021 185};
1da177e4 186
96442e42
JW
187static inline u32 tun_hashfn(u32 rxhash)
188{
189 return rxhash & 0x3ff;
190}
191
192static struct tun_flow_entry *tun_flow_find(struct hlist_head *head, u32 rxhash)
193{
194 struct tun_flow_entry *e;
195 struct hlist_node *n;
196
197 hlist_for_each_entry_rcu(e, n, head, hash_link) {
198 if (e->rxhash == rxhash)
199 return e;
200 }
201 return NULL;
202}
203
204static struct tun_flow_entry *tun_flow_create(struct tun_struct *tun,
205 struct hlist_head *head,
206 u32 rxhash, u16 queue_index)
207{
208 struct tun_flow_entry *e = kmem_cache_alloc(tun->flow_cache,
209 GFP_ATOMIC);
210 if (e) {
211 tun_debug(KERN_INFO, tun, "create flow: hash %u index %u\n",
212 rxhash, queue_index);
213 e->updated = jiffies;
214 e->rxhash = rxhash;
215 e->queue_index = queue_index;
216 e->tun = tun;
217 hlist_add_head_rcu(&e->hash_link, head);
218 }
219 return e;
220}
221
222static void tun_flow_free(struct rcu_head *head)
223{
224 struct tun_flow_entry *e
225 = container_of(head, struct tun_flow_entry, rcu);
226 kmem_cache_free(e->tun->flow_cache, e);
227}
228
229static void tun_flow_delete(struct tun_struct *tun, struct tun_flow_entry *e)
230{
231 tun_debug(KERN_INFO, tun, "delete flow: hash %u index %u\n",
232 e->rxhash, e->queue_index);
233 hlist_del_rcu(&e->hash_link);
234 call_rcu(&e->rcu, tun_flow_free);
235}
236
237static void tun_flow_flush(struct tun_struct *tun)
238{
239 int i;
240
241 spin_lock_bh(&tun->lock);
242 for (i = 0; i < TUN_NUM_FLOW_ENTRIES; i++) {
243 struct tun_flow_entry *e;
244 struct hlist_node *h, *n;
245
246 hlist_for_each_entry_safe(e, h, n, &tun->flows[i], hash_link)
247 tun_flow_delete(tun, e);
248 }
249 spin_unlock_bh(&tun->lock);
250}
251
252static void tun_flow_delete_by_queue(struct tun_struct *tun, u16 queue_index)
253{
254 int i;
255
256 spin_lock_bh(&tun->lock);
257 for (i = 0; i < TUN_NUM_FLOW_ENTRIES; i++) {
258 struct tun_flow_entry *e;
259 struct hlist_node *h, *n;
260
261 hlist_for_each_entry_safe(e, h, n, &tun->flows[i], hash_link) {
262 if (e->queue_index == queue_index)
263 tun_flow_delete(tun, e);
264 }
265 }
266 spin_unlock_bh(&tun->lock);
267}
268
269static void tun_flow_cleanup(unsigned long data)
270{
271 struct tun_struct *tun = (struct tun_struct *)data;
272 unsigned long delay = tun->ageing_time;
273 unsigned long next_timer = jiffies + delay;
274 unsigned long count = 0;
275 int i;
276
277 tun_debug(KERN_INFO, tun, "tun_flow_cleanup\n");
278
279 spin_lock_bh(&tun->lock);
280 for (i = 0; i < TUN_NUM_FLOW_ENTRIES; i++) {
281 struct tun_flow_entry *e;
282 struct hlist_node *h, *n;
283
284 hlist_for_each_entry_safe(e, h, n, &tun->flows[i], hash_link) {
285 unsigned long this_timer;
286 count++;
287 this_timer = e->updated + delay;
288 if (time_before_eq(this_timer, jiffies))
289 tun_flow_delete(tun, e);
290 else if (time_before(this_timer, next_timer))
291 next_timer = this_timer;
292 }
293 }
294
295 if (count)
296 mod_timer(&tun->flow_gc_timer, round_jiffies_up(next_timer));
297 spin_unlock_bh(&tun->lock);
298}
299
300static void tun_flow_update(struct tun_struct *tun, struct sk_buff *skb,
301 u16 queue_index)
302{
303 struct hlist_head *head;
304 struct tun_flow_entry *e;
305 unsigned long delay = tun->ageing_time;
306 u32 rxhash = skb_get_rxhash(skb);
307
308 if (!rxhash)
309 return;
310 else
311 head = &tun->flows[tun_hashfn(rxhash)];
312
313 rcu_read_lock();
314
315 if (tun->numqueues == 1)
316 goto unlock;
317
318 e = tun_flow_find(head, rxhash);
319 if (likely(e)) {
320 /* TODO: keep queueing to old queue until it's empty? */
321 e->queue_index = queue_index;
322 e->updated = jiffies;
323 } else {
324 spin_lock_bh(&tun->lock);
325 if (!tun_flow_find(head, rxhash))
326 tun_flow_create(tun, head, rxhash, queue_index);
327
328 if (!timer_pending(&tun->flow_gc_timer))
329 mod_timer(&tun->flow_gc_timer,
330 round_jiffies_up(jiffies + delay));
331 spin_unlock_bh(&tun->lock);
332 }
333
334unlock:
335 rcu_read_unlock();
336}
337
c8d68e6b
JW
338/* We try to identify a flow through its rxhash first. The reason that
339 * we do not check rxq no. is becuase some cards(e.g 82599), chooses
340 * the rxq based on the txq where the last packet of the flow comes. As
341 * the userspace application move between processors, we may get a
342 * different rxq no. here. If we could not get rxhash, then we would
343 * hope the rxq no. may help here.
344 */
345static u16 tun_select_queue(struct net_device *dev, struct sk_buff *skb)
346{
347 struct tun_struct *tun = netdev_priv(dev);
96442e42 348 struct tun_flow_entry *e;
c8d68e6b
JW
349 u32 txq = 0;
350 u32 numqueues = 0;
351
352 rcu_read_lock();
353 numqueues = tun->numqueues;
354
355 txq = skb_get_rxhash(skb);
356 if (txq) {
96442e42
JW
357 e = tun_flow_find(&tun->flows[tun_hashfn(txq)], txq);
358 if (e)
359 txq = e->queue_index;
360 else
361 /* use multiply and shift instead of expensive divide */
362 txq = ((u64)txq * numqueues) >> 32;
c8d68e6b
JW
363 } else if (likely(skb_rx_queue_recorded(skb))) {
364 txq = skb_get_rx_queue(skb);
365 while (unlikely(txq >= numqueues))
366 txq -= numqueues;
367 }
368
369 rcu_read_unlock();
370 return txq;
371}
372
cde8b15f
JW
373static inline bool tun_not_capable(struct tun_struct *tun)
374{
375 const struct cred *cred = current_cred();
c260b772 376 struct net *net = dev_net(tun->dev);
cde8b15f
JW
377
378 return ((uid_valid(tun->owner) && !uid_eq(cred->euid, tun->owner)) ||
379 (gid_valid(tun->group) && !in_egroup_p(tun->group))) &&
c260b772 380 !ns_capable(net->user_ns, CAP_NET_ADMIN);
cde8b15f
JW
381}
382
c8d68e6b
JW
383static void tun_set_real_num_queues(struct tun_struct *tun)
384{
385 netif_set_real_num_tx_queues(tun->dev, tun->numqueues);
386 netif_set_real_num_rx_queues(tun->dev, tun->numqueues);
387}
388
389static void __tun_detach(struct tun_file *tfile, bool clean)
390{
391 struct tun_file *ntfile;
392 struct tun_struct *tun;
393 struct net_device *dev;
394
395 tun = rcu_dereference_protected(tfile->tun,
396 lockdep_rtnl_is_held());
397 if (tun) {
398 u16 index = tfile->queue_index;
399 BUG_ON(index >= tun->numqueues);
400 dev = tun->dev;
401
402 rcu_assign_pointer(tun->tfiles[index],
403 tun->tfiles[tun->numqueues - 1]);
404 rcu_assign_pointer(tfile->tun, NULL);
405 ntfile = rcu_dereference_protected(tun->tfiles[index],
406 lockdep_rtnl_is_held());
407 ntfile->queue_index = index;
408
409 --tun->numqueues;
410 sock_put(&tfile->sk);
411
412 synchronize_net();
96442e42 413 tun_flow_delete_by_queue(tun, tun->numqueues + 1);
c8d68e6b
JW
414 /* Drop read queue */
415 skb_queue_purge(&tfile->sk.sk_receive_queue);
416 tun_set_real_num_queues(tun);
417
418 if (tun->numqueues == 0 && !(tun->flags & TUN_PERSIST))
419 if (dev->reg_state == NETREG_REGISTERED)
420 unregister_netdevice(dev);
421 }
422
423 if (clean) {
424 BUG_ON(!test_bit(SOCK_EXTERNALLY_ALLOCATED,
425 &tfile->socket.flags));
426 sk_release_kernel(&tfile->sk);
427 }
428}
429
430static void tun_detach(struct tun_file *tfile, bool clean)
431{
432 rtnl_lock();
433 __tun_detach(tfile, clean);
434 rtnl_unlock();
435}
436
437static void tun_detach_all(struct net_device *dev)
438{
439 struct tun_struct *tun = netdev_priv(dev);
440 struct tun_file *tfile;
441 int i, n = tun->numqueues;
442
443 for (i = 0; i < n; i++) {
444 tfile = rcu_dereference_protected(tun->tfiles[i],
445 lockdep_rtnl_is_held());
446 BUG_ON(!tfile);
447 wake_up_all(&tfile->wq.wait);
448 rcu_assign_pointer(tfile->tun, NULL);
449 --tun->numqueues;
450 }
451 BUG_ON(tun->numqueues != 0);
452
453 synchronize_net();
454 for (i = 0; i < n; i++) {
455 tfile = rcu_dereference_protected(tun->tfiles[i],
456 lockdep_rtnl_is_held());
457 /* Drop read queue */
458 skb_queue_purge(&tfile->sk.sk_receive_queue);
459 sock_put(&tfile->sk);
460 }
461}
462
a7385ba2
EB
463static int tun_attach(struct tun_struct *tun, struct file *file)
464{
631ab46b 465 struct tun_file *tfile = file->private_data;
38231b7a 466 int err;
a7385ba2 467
38231b7a 468 err = -EINVAL;
c8d68e6b 469 if (rcu_dereference_protected(tfile->tun, lockdep_rtnl_is_held()))
38231b7a
EB
470 goto out;
471
472 err = -EBUSY;
c8d68e6b
JW
473 if (!(tun->flags & TUN_TAP_MQ) && tun->numqueues == 1)
474 goto out;
475
476 err = -E2BIG;
477 if (tun->numqueues == MAX_TAP_QUEUES)
38231b7a
EB
478 goto out;
479
480 err = 0;
54f968d6 481
c8d68e6b 482 /* Re-attach the filter to presist device */
54f968d6
JW
483 if (tun->filter_attached == true) {
484 err = sk_attach_filter(&tun->fprog, tfile->socket.sk);
485 if (!err)
486 goto out;
487 }
c8d68e6b 488 tfile->queue_index = tun->numqueues;
6e914fc7 489 rcu_assign_pointer(tfile->tun, tun);
c8d68e6b 490 rcu_assign_pointer(tun->tfiles[tun->numqueues], tfile);
54f968d6 491 sock_hold(&tfile->sk);
c8d68e6b 492 tun->numqueues++;
a7385ba2 493
c8d68e6b 494 tun_set_real_num_queues(tun);
a7385ba2 495
c8d68e6b
JW
496 if (tun->numqueues == 1)
497 netif_carrier_on(tun->dev);
c70f1829 498
c8d68e6b
JW
499 /* device is allowed to go away first, so no need to hold extra
500 * refcnt.
501 */
502
503out:
504 return err;
631ab46b
EB
505}
506
507static struct tun_struct *__tun_get(struct tun_file *tfile)
508{
6e914fc7 509 struct tun_struct *tun;
c70f1829 510
6e914fc7
JW
511 rcu_read_lock();
512 tun = rcu_dereference(tfile->tun);
513 if (tun)
514 dev_hold(tun->dev);
515 rcu_read_unlock();
c70f1829
EB
516
517 return tun;
631ab46b
EB
518}
519
520static struct tun_struct *tun_get(struct file *file)
521{
522 return __tun_get(file->private_data);
523}
524
525static void tun_put(struct tun_struct *tun)
526{
6e914fc7 527 dev_put(tun->dev);
631ab46b
EB
528}
529
6b8a66ee 530/* TAP filtering */
f271b2cc
MK
531static void addr_hash_set(u32 *mask, const u8 *addr)
532{
533 int n = ether_crc(ETH_ALEN, addr) >> 26;
534 mask[n >> 5] |= (1 << (n & 31));
535}
536
537static unsigned int addr_hash_test(const u32 *mask, const u8 *addr)
538{
539 int n = ether_crc(ETH_ALEN, addr) >> 26;
540 return mask[n >> 5] & (1 << (n & 31));
541}
542
543static int update_filter(struct tap_filter *filter, void __user *arg)
544{
545 struct { u8 u[ETH_ALEN]; } *addr;
546 struct tun_filter uf;
547 int err, alen, n, nexact;
548
549 if (copy_from_user(&uf, arg, sizeof(uf)))
550 return -EFAULT;
551
552 if (!uf.count) {
553 /* Disabled */
554 filter->count = 0;
555 return 0;
556 }
557
558 alen = ETH_ALEN * uf.count;
559 addr = kmalloc(alen, GFP_KERNEL);
560 if (!addr)
561 return -ENOMEM;
562
563 if (copy_from_user(addr, arg + sizeof(uf), alen)) {
564 err = -EFAULT;
565 goto done;
566 }
567
568 /* The filter is updated without holding any locks. Which is
569 * perfectly safe. We disable it first and in the worst
570 * case we'll accept a few undesired packets. */
571 filter->count = 0;
572 wmb();
573
574 /* Use first set of addresses as an exact filter */
575 for (n = 0; n < uf.count && n < FLT_EXACT_COUNT; n++)
576 memcpy(filter->addr[n], addr[n].u, ETH_ALEN);
577
578 nexact = n;
579
cfbf84fc
AW
580 /* Remaining multicast addresses are hashed,
581 * unicast will leave the filter disabled. */
f271b2cc 582 memset(filter->mask, 0, sizeof(filter->mask));
cfbf84fc
AW
583 for (; n < uf.count; n++) {
584 if (!is_multicast_ether_addr(addr[n].u)) {
585 err = 0; /* no filter */
586 goto done;
587 }
f271b2cc 588 addr_hash_set(filter->mask, addr[n].u);
cfbf84fc 589 }
f271b2cc
MK
590
591 /* For ALLMULTI just set the mask to all ones.
592 * This overrides the mask populated above. */
593 if ((uf.flags & TUN_FLT_ALLMULTI))
594 memset(filter->mask, ~0, sizeof(filter->mask));
595
596 /* Now enable the filter */
597 wmb();
598 filter->count = nexact;
599
600 /* Return the number of exact filters */
601 err = nexact;
602
603done:
604 kfree(addr);
605 return err;
606}
607
608/* Returns: 0 - drop, !=0 - accept */
609static int run_filter(struct tap_filter *filter, const struct sk_buff *skb)
610{
611 /* Cannot use eth_hdr(skb) here because skb_mac_hdr() is incorrect
612 * at this point. */
613 struct ethhdr *eh = (struct ethhdr *) skb->data;
614 int i;
615
616 /* Exact match */
617 for (i = 0; i < filter->count; i++)
2e42e474 618 if (ether_addr_equal(eh->h_dest, filter->addr[i]))
f271b2cc
MK
619 return 1;
620
621 /* Inexact match (multicast only) */
622 if (is_multicast_ether_addr(eh->h_dest))
623 return addr_hash_test(filter->mask, eh->h_dest);
624
625 return 0;
626}
627
628/*
629 * Checks whether the packet is accepted or not.
630 * Returns: 0 - drop, !=0 - accept
631 */
632static int check_filter(struct tap_filter *filter, const struct sk_buff *skb)
633{
634 if (!filter->count)
635 return 1;
636
637 return run_filter(filter, skb);
638}
639
1da177e4
LT
640/* Network device part of the driver */
641
7282d491 642static const struct ethtool_ops tun_ethtool_ops;
1da177e4 643
c70f1829
EB
644/* Net device detach from fd. */
645static void tun_net_uninit(struct net_device *dev)
646{
c8d68e6b 647 tun_detach_all(dev);
c70f1829
EB
648}
649
1da177e4
LT
650/* Net device open. */
651static int tun_net_open(struct net_device *dev)
652{
c8d68e6b 653 netif_tx_start_all_queues(dev);
1da177e4
LT
654 return 0;
655}
656
657/* Net device close. */
658static int tun_net_close(struct net_device *dev)
659{
c8d68e6b 660 netif_tx_stop_all_queues(dev);
1da177e4
LT
661 return 0;
662}
663
664/* Net device start xmit */
424efe9c 665static netdev_tx_t tun_net_xmit(struct sk_buff *skb, struct net_device *dev)
1da177e4
LT
666{
667 struct tun_struct *tun = netdev_priv(dev);
c8d68e6b 668 int txq = skb->queue_mapping;
6e914fc7 669 struct tun_file *tfile;
1da177e4 670
6e914fc7 671 rcu_read_lock();
c8d68e6b
JW
672 tfile = rcu_dereference(tun->tfiles[txq]);
673
1da177e4 674 /* Drop packet if interface is not attached */
c8d68e6b 675 if (txq >= tun->numqueues)
1da177e4
LT
676 goto drop;
677
6e914fc7
JW
678 tun_debug(KERN_INFO, tun, "tun_net_xmit %d\n", skb->len);
679
c8d68e6b
JW
680 BUG_ON(!tfile);
681
f271b2cc
MK
682 /* Drop if the filter does not like it.
683 * This is a noop if the filter is disabled.
684 * Filter can be enabled only for the TAP devices. */
685 if (!check_filter(&tun->txflt, skb))
686 goto drop;
687
54f968d6
JW
688 if (tfile->socket.sk->sk_filter &&
689 sk_filter(tfile->socket.sk, skb))
99405162
MT
690 goto drop;
691
c8d68e6b
JW
692 /* Limit the number of packets queued by divining txq length with the
693 * number of queues.
694 */
54f968d6 695 if (skb_queue_len(&tfile->socket.sk->sk_receive_queue)
c8d68e6b 696 >= dev->tx_queue_len / tun->numqueues){
1da177e4
LT
697 if (!(tun->flags & TUN_ONE_QUEUE)) {
698 /* Normal queueing mode. */
699 /* Packet scheduler handles dropping of further packets. */
c8d68e6b 700 netif_stop_subqueue(dev, txq);
1da177e4
LT
701
702 /* We won't see all dropped packets individually, so overrun
703 * error is more appropriate. */
09f75cd7 704 dev->stats.tx_fifo_errors++;
1da177e4
LT
705 } else {
706 /* Single queue mode.
707 * Driver handles dropping of all packets itself. */
708 goto drop;
709 }
710 }
711
0110d6f2
MT
712 /* Orphan the skb - required as we might hang on to it
713 * for indefinite time. */
868eefeb
MT
714 if (unlikely(skb_orphan_frags(skb, GFP_ATOMIC)))
715 goto drop;
0110d6f2
MT
716 skb_orphan(skb);
717
f271b2cc 718 /* Enqueue packet */
54f968d6 719 skb_queue_tail(&tfile->socket.sk->sk_receive_queue, skb);
1da177e4
LT
720
721 /* Notify and wake up reader process */
54f968d6
JW
722 if (tfile->flags & TUN_FASYNC)
723 kill_fasync(&tfile->fasync, SIGIO, POLL_IN);
724 wake_up_interruptible_poll(&tfile->wq.wait, POLLIN |
05c2828c 725 POLLRDNORM | POLLRDBAND);
6e914fc7
JW
726
727 rcu_read_unlock();
6ed10654 728 return NETDEV_TX_OK;
1da177e4
LT
729
730drop:
09f75cd7 731 dev->stats.tx_dropped++;
149d36f7 732 skb_tx_error(skb);
1da177e4 733 kfree_skb(skb);
6e914fc7 734 rcu_read_unlock();
6ed10654 735 return NETDEV_TX_OK;
1da177e4
LT
736}
737
f271b2cc 738static void tun_net_mclist(struct net_device *dev)
1da177e4 739{
f271b2cc
MK
740 /*
741 * This callback is supposed to deal with mc filter in
742 * _rx_ path and has nothing to do with the _tx_ path.
743 * In rx path we always accept everything userspace gives us.
744 */
1da177e4
LT
745}
746
4885a504
ES
747#define MIN_MTU 68
748#define MAX_MTU 65535
749
750static int
751tun_net_change_mtu(struct net_device *dev, int new_mtu)
752{
753 if (new_mtu < MIN_MTU || new_mtu + dev->hard_header_len > MAX_MTU)
754 return -EINVAL;
755 dev->mtu = new_mtu;
756 return 0;
757}
758
c8f44aff
MM
759static netdev_features_t tun_net_fix_features(struct net_device *dev,
760 netdev_features_t features)
88255375
MM
761{
762 struct tun_struct *tun = netdev_priv(dev);
763
764 return (features & tun->set_features) | (features & ~TUN_USER_FEATURES);
765}
bebd097a
NH
766#ifdef CONFIG_NET_POLL_CONTROLLER
767static void tun_poll_controller(struct net_device *dev)
768{
769 /*
770 * Tun only receives frames when:
771 * 1) the char device endpoint gets data from user space
772 * 2) the tun socket gets a sendmsg call from user space
773 * Since both of those are syncronous operations, we are guaranteed
774 * never to have pending data when we poll for it
775 * so theres nothing to do here but return.
776 * We need this though so netpoll recognizes us as an interface that
777 * supports polling, which enables bridge devices in virt setups to
778 * still use netconsole
779 */
780 return;
781}
782#endif
758e43b7 783static const struct net_device_ops tun_netdev_ops = {
c70f1829 784 .ndo_uninit = tun_net_uninit,
758e43b7
SH
785 .ndo_open = tun_net_open,
786 .ndo_stop = tun_net_close,
00829823 787 .ndo_start_xmit = tun_net_xmit,
758e43b7 788 .ndo_change_mtu = tun_net_change_mtu,
88255375 789 .ndo_fix_features = tun_net_fix_features,
c8d68e6b 790 .ndo_select_queue = tun_select_queue,
bebd097a
NH
791#ifdef CONFIG_NET_POLL_CONTROLLER
792 .ndo_poll_controller = tun_poll_controller,
793#endif
758e43b7
SH
794};
795
796static const struct net_device_ops tap_netdev_ops = {
c70f1829 797 .ndo_uninit = tun_net_uninit,
758e43b7
SH
798 .ndo_open = tun_net_open,
799 .ndo_stop = tun_net_close,
00829823 800 .ndo_start_xmit = tun_net_xmit,
758e43b7 801 .ndo_change_mtu = tun_net_change_mtu,
88255375 802 .ndo_fix_features = tun_net_fix_features,
afc4b13d 803 .ndo_set_rx_mode = tun_net_mclist,
758e43b7
SH
804 .ndo_set_mac_address = eth_mac_addr,
805 .ndo_validate_addr = eth_validate_addr,
c8d68e6b 806 .ndo_select_queue = tun_select_queue,
bebd097a
NH
807#ifdef CONFIG_NET_POLL_CONTROLLER
808 .ndo_poll_controller = tun_poll_controller,
809#endif
758e43b7
SH
810};
811
96442e42
JW
812static int tun_flow_init(struct tun_struct *tun)
813{
814 int i;
815
816 tun->flow_cache = kmem_cache_create("tun_flow_cache",
817 sizeof(struct tun_flow_entry), 0, 0,
818 NULL);
819 if (!tun->flow_cache)
820 return -ENOMEM;
821
822 for (i = 0; i < TUN_NUM_FLOW_ENTRIES; i++)
823 INIT_HLIST_HEAD(&tun->flows[i]);
824
825 tun->ageing_time = TUN_FLOW_EXPIRE;
826 setup_timer(&tun->flow_gc_timer, tun_flow_cleanup, (unsigned long)tun);
827 mod_timer(&tun->flow_gc_timer,
828 round_jiffies_up(jiffies + tun->ageing_time));
829
830 return 0;
831}
832
833static void tun_flow_uninit(struct tun_struct *tun)
834{
835 del_timer_sync(&tun->flow_gc_timer);
836 tun_flow_flush(tun);
837
838 /* Wait for completion of call_rcu()'s */
839 rcu_barrier();
840 kmem_cache_destroy(tun->flow_cache);
841}
842
1da177e4
LT
843/* Initialize net device. */
844static void tun_net_init(struct net_device *dev)
845{
846 struct tun_struct *tun = netdev_priv(dev);
6aa20a22 847
1da177e4
LT
848 switch (tun->flags & TUN_TYPE_MASK) {
849 case TUN_TUN_DEV:
758e43b7
SH
850 dev->netdev_ops = &tun_netdev_ops;
851
1da177e4
LT
852 /* Point-to-Point TUN Device */
853 dev->hard_header_len = 0;
854 dev->addr_len = 0;
855 dev->mtu = 1500;
856
857 /* Zero header length */
6aa20a22 858 dev->type = ARPHRD_NONE;
1da177e4
LT
859 dev->flags = IFF_POINTOPOINT | IFF_NOARP | IFF_MULTICAST;
860 dev->tx_queue_len = TUN_READQ_SIZE; /* We prefer our own queue length */
861 break;
862
863 case TUN_TAP_DEV:
7a0a9608 864 dev->netdev_ops = &tap_netdev_ops;
1da177e4 865 /* Ethernet TAP Device */
1da177e4 866 ether_setup(dev);
550fd08c 867 dev->priv_flags &= ~IFF_TX_SKB_SHARING;
36226a8d 868
f2cedb63 869 eth_hw_addr_random(dev);
36226a8d 870
1da177e4
LT
871 dev->tx_queue_len = TUN_READQ_SIZE; /* We prefer our own queue length */
872 break;
873 }
874}
875
876/* Character device part */
877
878/* Poll */
c8d68e6b 879static unsigned int tun_chr_poll(struct file *file, poll_table *wait)
6aa20a22 880{
b2430de3
EB
881 struct tun_file *tfile = file->private_data;
882 struct tun_struct *tun = __tun_get(tfile);
3c8a9c63 883 struct sock *sk;
33dccbb0 884 unsigned int mask = 0;
1da177e4
LT
885
886 if (!tun)
eac9e902 887 return POLLERR;
1da177e4 888
54f968d6 889 sk = tfile->socket.sk;
3c8a9c63 890
6b8a66ee 891 tun_debug(KERN_INFO, tun, "tun_chr_poll\n");
1da177e4 892
54f968d6 893 poll_wait(file, &tfile->wq.wait, wait);
6aa20a22 894
89f56d1e 895 if (!skb_queue_empty(&sk->sk_receive_queue))
1da177e4
LT
896 mask |= POLLIN | POLLRDNORM;
897
33dccbb0
HX
898 if (sock_writeable(sk) ||
899 (!test_and_set_bit(SOCK_ASYNC_NOSPACE, &sk->sk_socket->flags) &&
900 sock_writeable(sk)))
901 mask |= POLLOUT | POLLWRNORM;
902
c70f1829
EB
903 if (tun->dev->reg_state != NETREG_REGISTERED)
904 mask = POLLERR;
905
631ab46b 906 tun_put(tun);
1da177e4
LT
907 return mask;
908}
909
f42157cb
RR
910/* prepad is the amount to reserve at front. len is length after that.
911 * linear is a hint as to how much to copy (usually headers). */
54f968d6 912static struct sk_buff *tun_alloc_skb(struct tun_file *tfile,
6f7c156c 913 size_t prepad, size_t len,
914 size_t linear, int noblock)
f42157cb 915{
54f968d6 916 struct sock *sk = tfile->socket.sk;
f42157cb 917 struct sk_buff *skb;
33dccbb0 918 int err;
f42157cb
RR
919
920 /* Under a page? Don't bother with paged skb. */
0eca93bc 921 if (prepad + len < PAGE_SIZE || !linear)
33dccbb0 922 linear = len;
f42157cb 923
33dccbb0
HX
924 skb = sock_alloc_send_pskb(sk, prepad + linear, len - linear, noblock,
925 &err);
f42157cb 926 if (!skb)
33dccbb0 927 return ERR_PTR(err);
f42157cb
RR
928
929 skb_reserve(skb, prepad);
930 skb_put(skb, linear);
33dccbb0
HX
931 skb->data_len = len - linear;
932 skb->len += len - linear;
f42157cb
RR
933
934 return skb;
935}
936
0690899b
MT
937/* set skb frags from iovec, this can move to core network code for reuse */
938static int zerocopy_sg_from_iovec(struct sk_buff *skb, const struct iovec *from,
939 int offset, size_t count)
940{
941 int len = iov_length(from, count) - offset;
942 int copy = skb_headlen(skb);
943 int size, offset1 = 0;
944 int i = 0;
945
946 /* Skip over from offset */
947 while (count && (offset >= from->iov_len)) {
948 offset -= from->iov_len;
949 ++from;
950 --count;
951 }
952
953 /* copy up to skb headlen */
954 while (count && (copy > 0)) {
955 size = min_t(unsigned int, copy, from->iov_len - offset);
956 if (copy_from_user(skb->data + offset1, from->iov_base + offset,
957 size))
958 return -EFAULT;
959 if (copy > size) {
960 ++from;
961 --count;
962 offset = 0;
963 } else
964 offset += size;
965 copy -= size;
966 offset1 += size;
967 }
968
969 if (len == offset1)
970 return 0;
971
972 while (count--) {
973 struct page *page[MAX_SKB_FRAGS];
974 int num_pages;
975 unsigned long base;
976 unsigned long truesize;
977
978 len = from->iov_len - offset;
979 if (!len) {
980 offset = 0;
981 ++from;
982 continue;
983 }
984 base = (unsigned long)from->iov_base + offset;
985 size = ((base & ~PAGE_MASK) + len + ~PAGE_MASK) >> PAGE_SHIFT;
986 if (i + size > MAX_SKB_FRAGS)
987 return -EMSGSIZE;
988 num_pages = get_user_pages_fast(base, size, 0, &page[i]);
989 if (num_pages != size) {
990 for (i = 0; i < num_pages; i++)
991 put_page(page[i]);
992 return -EFAULT;
993 }
994 truesize = size * PAGE_SIZE;
995 skb->data_len += len;
996 skb->len += len;
997 skb->truesize += truesize;
998 atomic_add(truesize, &skb->sk->sk_wmem_alloc);
999 while (len) {
1000 int off = base & ~PAGE_MASK;
1001 int size = min_t(int, len, PAGE_SIZE - off);
1002 __skb_fill_page_desc(skb, i, page[i], off, size);
1003 skb_shinfo(skb)->nr_frags++;
1004 /* increase sk_wmem_alloc */
1005 base += size;
1006 len -= size;
1007 i++;
1008 }
1009 offset = 0;
1010 ++from;
1011 }
1012 return 0;
1013}
1014
1da177e4 1015/* Get packet from user space buffer */
54f968d6
JW
1016static ssize_t tun_get_user(struct tun_struct *tun, struct tun_file *tfile,
1017 void *msg_control, const struct iovec *iv,
1018 size_t total_len, size_t count, int noblock)
1da177e4 1019{
09640e63 1020 struct tun_pi pi = { 0, cpu_to_be16(ETH_P_IP) };
1da177e4 1021 struct sk_buff *skb;
0690899b 1022 size_t len = total_len, align = NET_SKB_PAD;
f43798c2 1023 struct virtio_net_hdr gso = { 0 };
6f26c9a7 1024 int offset = 0;
0690899b
MT
1025 int copylen;
1026 bool zerocopy = false;
1027 int err;
1da177e4
LT
1028
1029 if (!(tun->flags & TUN_NO_PI)) {
0690899b 1030 if ((len -= sizeof(pi)) > total_len)
1da177e4
LT
1031 return -EINVAL;
1032
6f26c9a7 1033 if (memcpy_fromiovecend((void *)&pi, iv, 0, sizeof(pi)))
1da177e4 1034 return -EFAULT;
6f26c9a7 1035 offset += sizeof(pi);
1da177e4
LT
1036 }
1037
f43798c2 1038 if (tun->flags & TUN_VNET_HDR) {
0690899b 1039 if ((len -= tun->vnet_hdr_sz) > total_len)
f43798c2
RR
1040 return -EINVAL;
1041
6f26c9a7 1042 if (memcpy_fromiovecend((void *)&gso, iv, offset, sizeof(gso)))
f43798c2
RR
1043 return -EFAULT;
1044
4909122f
HX
1045 if ((gso.flags & VIRTIO_NET_HDR_F_NEEDS_CSUM) &&
1046 gso.csum_start + gso.csum_offset + 2 > gso.hdr_len)
1047 gso.hdr_len = gso.csum_start + gso.csum_offset + 2;
1048
f43798c2
RR
1049 if (gso.hdr_len > len)
1050 return -EINVAL;
d9d52b51 1051 offset += tun->vnet_hdr_sz;
f43798c2
RR
1052 }
1053
e01bf1c8 1054 if ((tun->flags & TUN_TYPE_MASK) == TUN_TAP_DEV) {
a504b86e 1055 align += NET_IP_ALIGN;
0eca93bc
HX
1056 if (unlikely(len < ETH_HLEN ||
1057 (gso.hdr_len && gso.hdr_len < ETH_HLEN)))
e01bf1c8
RR
1058 return -EINVAL;
1059 }
6aa20a22 1060
0690899b
MT
1061 if (msg_control)
1062 zerocopy = true;
1063
1064 if (zerocopy) {
1065 /* Userspace may produce vectors with count greater than
1066 * MAX_SKB_FRAGS, so we need to linearize parts of the skb
1067 * to let the rest of data to be fit in the frags.
1068 */
1069 if (count > MAX_SKB_FRAGS) {
1070 copylen = iov_length(iv, count - MAX_SKB_FRAGS);
1071 if (copylen < offset)
1072 copylen = 0;
1073 else
1074 copylen -= offset;
1075 } else
1076 copylen = 0;
1077 /* There are 256 bytes to be copied in skb, so there is enough
1078 * room for skb expand head in case it is used.
1079 * The rest of the buffer is mapped from userspace.
1080 */
1081 if (copylen < gso.hdr_len)
1082 copylen = gso.hdr_len;
1083 if (!copylen)
1084 copylen = GOODCOPY_LEN;
1085 } else
1086 copylen = len;
1087
54f968d6 1088 skb = tun_alloc_skb(tfile, align, copylen, gso.hdr_len, noblock);
33dccbb0
HX
1089 if (IS_ERR(skb)) {
1090 if (PTR_ERR(skb) != -EAGAIN)
1091 tun->dev->stats.rx_dropped++;
1092 return PTR_ERR(skb);
1da177e4
LT
1093 }
1094
0690899b
MT
1095 if (zerocopy)
1096 err = zerocopy_sg_from_iovec(skb, iv, offset, count);
1097 else
1098 err = skb_copy_datagram_from_iovec(skb, 0, iv, offset, len);
1099
1100 if (err) {
09f75cd7 1101 tun->dev->stats.rx_dropped++;
8f22757e 1102 kfree_skb(skb);
1da177e4 1103 return -EFAULT;
8f22757e 1104 }
1da177e4 1105
f43798c2
RR
1106 if (gso.flags & VIRTIO_NET_HDR_F_NEEDS_CSUM) {
1107 if (!skb_partial_csum_set(skb, gso.csum_start,
1108 gso.csum_offset)) {
1109 tun->dev->stats.rx_frame_errors++;
1110 kfree_skb(skb);
1111 return -EINVAL;
1112 }
88255375 1113 }
f43798c2 1114
1da177e4
LT
1115 switch (tun->flags & TUN_TYPE_MASK) {
1116 case TUN_TUN_DEV:
f09f7ee2
AWC
1117 if (tun->flags & TUN_NO_PI) {
1118 switch (skb->data[0] & 0xf0) {
1119 case 0x40:
1120 pi.proto = htons(ETH_P_IP);
1121 break;
1122 case 0x60:
1123 pi.proto = htons(ETH_P_IPV6);
1124 break;
1125 default:
1126 tun->dev->stats.rx_dropped++;
1127 kfree_skb(skb);
1128 return -EINVAL;
1129 }
1130 }
1131
459a98ed 1132 skb_reset_mac_header(skb);
1da177e4 1133 skb->protocol = pi.proto;
4c13eb66 1134 skb->dev = tun->dev;
1da177e4
LT
1135 break;
1136 case TUN_TAP_DEV:
1137 skb->protocol = eth_type_trans(skb, tun->dev);
1138 break;
6403eab1 1139 }
1da177e4 1140
f43798c2
RR
1141 if (gso.gso_type != VIRTIO_NET_HDR_GSO_NONE) {
1142 pr_debug("GSO!\n");
1143 switch (gso.gso_type & ~VIRTIO_NET_HDR_GSO_ECN) {
1144 case VIRTIO_NET_HDR_GSO_TCPV4:
1145 skb_shinfo(skb)->gso_type = SKB_GSO_TCPV4;
1146 break;
1147 case VIRTIO_NET_HDR_GSO_TCPV6:
1148 skb_shinfo(skb)->gso_type = SKB_GSO_TCPV6;
1149 break;
e36aa25a
SS
1150 case VIRTIO_NET_HDR_GSO_UDP:
1151 skb_shinfo(skb)->gso_type = SKB_GSO_UDP;
1152 break;
f43798c2
RR
1153 default:
1154 tun->dev->stats.rx_frame_errors++;
1155 kfree_skb(skb);
1156 return -EINVAL;
1157 }
1158
1159 if (gso.gso_type & VIRTIO_NET_HDR_GSO_ECN)
1160 skb_shinfo(skb)->gso_type |= SKB_GSO_TCP_ECN;
1161
1162 skb_shinfo(skb)->gso_size = gso.gso_size;
1163 if (skb_shinfo(skb)->gso_size == 0) {
1164 tun->dev->stats.rx_frame_errors++;
1165 kfree_skb(skb);
1166 return -EINVAL;
1167 }
1168
1169 /* Header must be checked, and gso_segs computed. */
1170 skb_shinfo(skb)->gso_type |= SKB_GSO_DODGY;
1171 skb_shinfo(skb)->gso_segs = 0;
1172 }
6aa20a22 1173
0690899b
MT
1174 /* copy skb_ubuf_info for callback when skb has no error */
1175 if (zerocopy) {
1176 skb_shinfo(skb)->destructor_arg = msg_control;
1177 skb_shinfo(skb)->tx_flags |= SKBTX_DEV_ZEROCOPY;
1178 }
1179
1da177e4 1180 netif_rx_ni(skb);
6aa20a22 1181
09f75cd7
JG
1182 tun->dev->stats.rx_packets++;
1183 tun->dev->stats.rx_bytes += len;
1da177e4 1184
96442e42 1185 tun_flow_update(tun, skb, tfile->queue_index);
0690899b 1186 return total_len;
6aa20a22 1187}
1da177e4 1188
ee0b3e67
BP
1189static ssize_t tun_chr_aio_write(struct kiocb *iocb, const struct iovec *iv,
1190 unsigned long count, loff_t pos)
1da177e4 1191{
33dccbb0 1192 struct file *file = iocb->ki_filp;
ab46d779 1193 struct tun_struct *tun = tun_get(file);
54f968d6 1194 struct tun_file *tfile = file->private_data;
631ab46b 1195 ssize_t result;
1da177e4
LT
1196
1197 if (!tun)
1198 return -EBADFD;
1199
6b8a66ee 1200 tun_debug(KERN_INFO, tun, "tun_chr_write %ld\n", count);
1da177e4 1201
54f968d6
JW
1202 result = tun_get_user(tun, tfile, NULL, iv, iov_length(iv, count),
1203 count, file->f_flags & O_NONBLOCK);
631ab46b
EB
1204
1205 tun_put(tun);
1206 return result;
1da177e4
LT
1207}
1208
1da177e4 1209/* Put packet to the user space buffer */
6f7c156c 1210static ssize_t tun_put_user(struct tun_struct *tun,
54f968d6 1211 struct tun_file *tfile,
6f7c156c 1212 struct sk_buff *skb,
1213 const struct iovec *iv, int len)
1da177e4
LT
1214{
1215 struct tun_pi pi = { 0, skb->protocol };
1216 ssize_t total = 0;
1217
1218 if (!(tun->flags & TUN_NO_PI)) {
1219 if ((len -= sizeof(pi)) < 0)
1220 return -EINVAL;
1221
1222 if (len < skb->len) {
1223 /* Packet will be striped */
1224 pi.flags |= TUN_PKT_STRIP;
1225 }
6aa20a22 1226
43b39dcd 1227 if (memcpy_toiovecend(iv, (void *) &pi, 0, sizeof(pi)))
1da177e4
LT
1228 return -EFAULT;
1229 total += sizeof(pi);
6aa20a22 1230 }
1da177e4 1231
f43798c2
RR
1232 if (tun->flags & TUN_VNET_HDR) {
1233 struct virtio_net_hdr gso = { 0 }; /* no info leak */
d9d52b51 1234 if ((len -= tun->vnet_hdr_sz) < 0)
f43798c2
RR
1235 return -EINVAL;
1236
1237 if (skb_is_gso(skb)) {
1238 struct skb_shared_info *sinfo = skb_shinfo(skb);
1239
1240 /* This is a hint as to how much should be linear. */
1241 gso.hdr_len = skb_headlen(skb);
1242 gso.gso_size = sinfo->gso_size;
1243 if (sinfo->gso_type & SKB_GSO_TCPV4)
1244 gso.gso_type = VIRTIO_NET_HDR_GSO_TCPV4;
1245 else if (sinfo->gso_type & SKB_GSO_TCPV6)
1246 gso.gso_type = VIRTIO_NET_HDR_GSO_TCPV6;
e36aa25a
SS
1247 else if (sinfo->gso_type & SKB_GSO_UDP)
1248 gso.gso_type = VIRTIO_NET_HDR_GSO_UDP;
ef3db4a5 1249 else {
6b8a66ee 1250 pr_err("unexpected GSO type: "
ef3db4a5
MT
1251 "0x%x, gso_size %d, hdr_len %d\n",
1252 sinfo->gso_type, gso.gso_size,
1253 gso.hdr_len);
1254 print_hex_dump(KERN_ERR, "tun: ",
1255 DUMP_PREFIX_NONE,
1256 16, 1, skb->head,
1257 min((int)gso.hdr_len, 64), true);
1258 WARN_ON_ONCE(1);
1259 return -EINVAL;
1260 }
f43798c2
RR
1261 if (sinfo->gso_type & SKB_GSO_TCP_ECN)
1262 gso.gso_type |= VIRTIO_NET_HDR_GSO_ECN;
1263 } else
1264 gso.gso_type = VIRTIO_NET_HDR_GSO_NONE;
1265
1266 if (skb->ip_summed == CHECKSUM_PARTIAL) {
1267 gso.flags = VIRTIO_NET_HDR_F_NEEDS_CSUM;
55508d60 1268 gso.csum_start = skb_checksum_start_offset(skb);
f43798c2 1269 gso.csum_offset = skb->csum_offset;
10a8d94a
JW
1270 } else if (skb->ip_summed == CHECKSUM_UNNECESSARY) {
1271 gso.flags = VIRTIO_NET_HDR_F_DATA_VALID;
f43798c2
RR
1272 } /* else everything is zero */
1273
43b39dcd
MT
1274 if (unlikely(memcpy_toiovecend(iv, (void *)&gso, total,
1275 sizeof(gso))))
f43798c2 1276 return -EFAULT;
d9d52b51 1277 total += tun->vnet_hdr_sz;
f43798c2
RR
1278 }
1279
1da177e4
LT
1280 len = min_t(int, skb->len, len);
1281
43b39dcd 1282 skb_copy_datagram_const_iovec(skb, 0, iv, total, len);
05c2828c 1283 total += skb->len;
1da177e4 1284
09f75cd7
JG
1285 tun->dev->stats.tx_packets++;
1286 tun->dev->stats.tx_bytes += len;
1da177e4
LT
1287
1288 return total;
1289}
1290
54f968d6 1291static ssize_t tun_do_read(struct tun_struct *tun, struct tun_file *tfile,
05c2828c
MT
1292 struct kiocb *iocb, const struct iovec *iv,
1293 ssize_t len, int noblock)
1da177e4 1294{
1da177e4
LT
1295 DECLARE_WAITQUEUE(wait, current);
1296 struct sk_buff *skb;
05c2828c 1297 ssize_t ret = 0;
1da177e4 1298
6b8a66ee 1299 tun_debug(KERN_INFO, tun, "tun_chr_read\n");
1da177e4 1300
61a5ff15 1301 if (unlikely(!noblock))
54f968d6 1302 add_wait_queue(&tfile->wq.wait, &wait);
1da177e4 1303 while (len) {
1da177e4
LT
1304 current->state = TASK_INTERRUPTIBLE;
1305
1306 /* Read frames from the queue */
54f968d6 1307 if (!(skb = skb_dequeue(&tfile->socket.sk->sk_receive_queue))) {
05c2828c 1308 if (noblock) {
1da177e4
LT
1309 ret = -EAGAIN;
1310 break;
1311 }
1312 if (signal_pending(current)) {
1313 ret = -ERESTARTSYS;
1314 break;
1315 }
c70f1829
EB
1316 if (tun->dev->reg_state != NETREG_REGISTERED) {
1317 ret = -EIO;
1318 break;
1319 }
1da177e4
LT
1320
1321 /* Nothing to read, let's sleep */
1322 schedule();
1323 continue;
1324 }
c8d68e6b 1325 netif_wake_subqueue(tun->dev, tfile->queue_index);
1da177e4 1326
54f968d6 1327 ret = tun_put_user(tun, tfile, skb, iv, len);
f271b2cc
MK
1328 kfree_skb(skb);
1329 break;
1da177e4
LT
1330 }
1331
1332 current->state = TASK_RUNNING;
61a5ff15 1333 if (unlikely(!noblock))
54f968d6 1334 remove_wait_queue(&tfile->wq.wait, &wait);
1da177e4 1335
05c2828c
MT
1336 return ret;
1337}
1338
1339static ssize_t tun_chr_aio_read(struct kiocb *iocb, const struct iovec *iv,
1340 unsigned long count, loff_t pos)
1341{
1342 struct file *file = iocb->ki_filp;
1343 struct tun_file *tfile = file->private_data;
1344 struct tun_struct *tun = __tun_get(tfile);
1345 ssize_t len, ret;
1346
1347 if (!tun)
1348 return -EBADFD;
1349 len = iov_length(iv, count);
1350 if (len < 0) {
1351 ret = -EINVAL;
1352 goto out;
1353 }
1354
54f968d6
JW
1355 ret = tun_do_read(tun, tfile, iocb, iv, len,
1356 file->f_flags & O_NONBLOCK);
05c2828c 1357 ret = min_t(ssize_t, ret, len);
631ab46b
EB
1358out:
1359 tun_put(tun);
1da177e4
LT
1360 return ret;
1361}
1362
96442e42
JW
1363static void tun_free_netdev(struct net_device *dev)
1364{
1365 struct tun_struct *tun = netdev_priv(dev);
1366
1367 tun_flow_uninit(tun);
1368 free_netdev(dev);
1369}
1370
1da177e4
LT
1371static void tun_setup(struct net_device *dev)
1372{
1373 struct tun_struct *tun = netdev_priv(dev);
1374
0625c883
EB
1375 tun->owner = INVALID_UID;
1376 tun->group = INVALID_GID;
1da177e4 1377
1da177e4 1378 dev->ethtool_ops = &tun_ethtool_ops;
96442e42 1379 dev->destructor = tun_free_netdev;
1da177e4
LT
1380}
1381
f019a7a5
EB
1382/* Trivial set of netlink ops to allow deleting tun or tap
1383 * device with netlink.
1384 */
1385static int tun_validate(struct nlattr *tb[], struct nlattr *data[])
1386{
1387 return -EINVAL;
1388}
1389
1390static struct rtnl_link_ops tun_link_ops __read_mostly = {
1391 .kind = DRV_NAME,
1392 .priv_size = sizeof(struct tun_struct),
1393 .setup = tun_setup,
1394 .validate = tun_validate,
1395};
1396
33dccbb0
HX
1397static void tun_sock_write_space(struct sock *sk)
1398{
54f968d6 1399 struct tun_file *tfile;
43815482 1400 wait_queue_head_t *wqueue;
33dccbb0
HX
1401
1402 if (!sock_writeable(sk))
1403 return;
1404
33dccbb0
HX
1405 if (!test_and_clear_bit(SOCK_ASYNC_NOSPACE, &sk->sk_socket->flags))
1406 return;
1407
43815482
ED
1408 wqueue = sk_sleep(sk);
1409 if (wqueue && waitqueue_active(wqueue))
1410 wake_up_interruptible_sync_poll(wqueue, POLLOUT |
05c2828c 1411 POLLWRNORM | POLLWRBAND);
c722c625 1412
54f968d6
JW
1413 tfile = container_of(sk, struct tun_file, sk);
1414 kill_fasync(&tfile->fasync, SIGIO, POLL_OUT);
33dccbb0
HX
1415}
1416
05c2828c
MT
1417static int tun_sendmsg(struct kiocb *iocb, struct socket *sock,
1418 struct msghdr *m, size_t total_len)
1419{
54f968d6
JW
1420 int ret;
1421 struct tun_file *tfile = container_of(sock, struct tun_file, socket);
1422 struct tun_struct *tun = __tun_get(tfile);
1423
1424 if (!tun)
1425 return -EBADFD;
54f968d6
JW
1426 ret = tun_get_user(tun, tfile, m->msg_control, m->msg_iov, total_len,
1427 m->msg_iovlen, m->msg_flags & MSG_DONTWAIT);
1428 tun_put(tun);
1429 return ret;
05c2828c
MT
1430}
1431
54f968d6 1432
05c2828c
MT
1433static int tun_recvmsg(struct kiocb *iocb, struct socket *sock,
1434 struct msghdr *m, size_t total_len,
1435 int flags)
1436{
54f968d6
JW
1437 struct tun_file *tfile = container_of(sock, struct tun_file, socket);
1438 struct tun_struct *tun = __tun_get(tfile);
05c2828c 1439 int ret;
54f968d6
JW
1440
1441 if (!tun)
1442 return -EBADFD;
1443
05c2828c
MT
1444 if (flags & ~(MSG_DONTWAIT|MSG_TRUNC))
1445 return -EINVAL;
54f968d6 1446 ret = tun_do_read(tun, tfile, iocb, m->msg_iov, total_len,
05c2828c
MT
1447 flags & MSG_DONTWAIT);
1448 if (ret > total_len) {
1449 m->msg_flags |= MSG_TRUNC;
1450 ret = flags & MSG_TRUNC ? ret : total_len;
1451 }
54f968d6 1452 tun_put(tun);
05c2828c
MT
1453 return ret;
1454}
1455
1ab5ecb9
SK
1456static int tun_release(struct socket *sock)
1457{
1458 if (sock->sk)
1459 sock_put(sock->sk);
1460 return 0;
1461}
1462
05c2828c
MT
1463/* Ops structure to mimic raw sockets with tun */
1464static const struct proto_ops tun_socket_ops = {
1465 .sendmsg = tun_sendmsg,
1466 .recvmsg = tun_recvmsg,
1ab5ecb9 1467 .release = tun_release,
05c2828c
MT
1468};
1469
33dccbb0
HX
1470static struct proto tun_proto = {
1471 .name = "tun",
1472 .owner = THIS_MODULE,
54f968d6 1473 .obj_size = sizeof(struct tun_file),
33dccbb0 1474};
f019a7a5 1475
980c9e8c
DW
1476static int tun_flags(struct tun_struct *tun)
1477{
1478 int flags = 0;
1479
1480 if (tun->flags & TUN_TUN_DEV)
1481 flags |= IFF_TUN;
1482 else
1483 flags |= IFF_TAP;
1484
1485 if (tun->flags & TUN_NO_PI)
1486 flags |= IFF_NO_PI;
1487
1488 if (tun->flags & TUN_ONE_QUEUE)
1489 flags |= IFF_ONE_QUEUE;
1490
1491 if (tun->flags & TUN_VNET_HDR)
1492 flags |= IFF_VNET_HDR;
1493
c8d68e6b
JW
1494 if (tun->flags & TUN_TAP_MQ)
1495 flags |= IFF_MULTI_QUEUE;
1496
980c9e8c
DW
1497 return flags;
1498}
1499
1500static ssize_t tun_show_flags(struct device *dev, struct device_attribute *attr,
1501 char *buf)
1502{
1503 struct tun_struct *tun = netdev_priv(to_net_dev(dev));
1504 return sprintf(buf, "0x%x\n", tun_flags(tun));
1505}
1506
1507static ssize_t tun_show_owner(struct device *dev, struct device_attribute *attr,
1508 char *buf)
1509{
1510 struct tun_struct *tun = netdev_priv(to_net_dev(dev));
0625c883
EB
1511 return uid_valid(tun->owner)?
1512 sprintf(buf, "%u\n",
1513 from_kuid_munged(current_user_ns(), tun->owner)):
1514 sprintf(buf, "-1\n");
980c9e8c
DW
1515}
1516
1517static ssize_t tun_show_group(struct device *dev, struct device_attribute *attr,
1518 char *buf)
1519{
1520 struct tun_struct *tun = netdev_priv(to_net_dev(dev));
0625c883
EB
1521 return gid_valid(tun->group) ?
1522 sprintf(buf, "%u\n",
1523 from_kgid_munged(current_user_ns(), tun->group)):
1524 sprintf(buf, "-1\n");
980c9e8c
DW
1525}
1526
1527static DEVICE_ATTR(tun_flags, 0444, tun_show_flags, NULL);
1528static DEVICE_ATTR(owner, 0444, tun_show_owner, NULL);
1529static DEVICE_ATTR(group, 0444, tun_show_group, NULL);
1530
d647a591 1531static int tun_set_iff(struct net *net, struct file *file, struct ifreq *ifr)
1da177e4
LT
1532{
1533 struct tun_struct *tun;
54f968d6 1534 struct tun_file *tfile = file->private_data;
1da177e4
LT
1535 struct net_device *dev;
1536 int err;
1537
74a3e5a7
EB
1538 dev = __dev_get_by_name(net, ifr->ifr_name);
1539 if (dev) {
f85ba780
DW
1540 if (ifr->ifr_flags & IFF_TUN_EXCL)
1541 return -EBUSY;
74a3e5a7
EB
1542 if ((ifr->ifr_flags & IFF_TUN) && dev->netdev_ops == &tun_netdev_ops)
1543 tun = netdev_priv(dev);
1544 else if ((ifr->ifr_flags & IFF_TAP) && dev->netdev_ops == &tap_netdev_ops)
1545 tun = netdev_priv(dev);
1546 else
1547 return -EINVAL;
1548
cde8b15f 1549 if (tun_not_capable(tun))
2b980dbd 1550 return -EPERM;
54f968d6 1551 err = security_tun_dev_attach(tfile->socket.sk);
2b980dbd
PM
1552 if (err < 0)
1553 return err;
1554
a7385ba2
EB
1555 err = tun_attach(tun, file);
1556 if (err < 0)
1557 return err;
6aa20a22 1558 }
1da177e4
LT
1559 else {
1560 char *name;
1561 unsigned long flags = 0;
1562
c260b772 1563 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
ca6bb5d7 1564 return -EPERM;
2b980dbd
PM
1565 err = security_tun_dev_create();
1566 if (err < 0)
1567 return err;
ca6bb5d7 1568
1da177e4
LT
1569 /* Set dev type */
1570 if (ifr->ifr_flags & IFF_TUN) {
1571 /* TUN device */
1572 flags |= TUN_TUN_DEV;
1573 name = "tun%d";
1574 } else if (ifr->ifr_flags & IFF_TAP) {
1575 /* TAP device */
1576 flags |= TUN_TAP_DEV;
1577 name = "tap%d";
6aa20a22 1578 } else
36989b90 1579 return -EINVAL;
6aa20a22 1580
1da177e4
LT
1581 if (*ifr->ifr_name)
1582 name = ifr->ifr_name;
1583
c8d68e6b
JW
1584 dev = alloc_netdev_mqs(sizeof(struct tun_struct), name,
1585 tun_setup,
1586 MAX_TAP_QUEUES, MAX_TAP_QUEUES);
1da177e4
LT
1587 if (!dev)
1588 return -ENOMEM;
1589
fc54c658 1590 dev_net_set(dev, net);
f019a7a5 1591 dev->rtnl_link_ops = &tun_link_ops;
758e43b7 1592
1da177e4
LT
1593 tun = netdev_priv(dev);
1594 tun->dev = dev;
1595 tun->flags = flags;
f271b2cc 1596 tun->txflt.count = 0;
d9d52b51 1597 tun->vnet_hdr_sz = sizeof(struct virtio_net_hdr);
33dccbb0 1598
54f968d6
JW
1599 tun->filter_attached = false;
1600 tun->sndbuf = tfile->socket.sk->sk_sndbuf;
33dccbb0 1601
96442e42
JW
1602 spin_lock_init(&tun->lock);
1603
54f968d6 1604 security_tun_dev_post_create(&tfile->sk);
2b980dbd 1605
1da177e4
LT
1606 tun_net_init(dev);
1607
96442e42
JW
1608 if (tun_flow_init(tun))
1609 goto err_free_dev;
1610
88255375
MM
1611 dev->hw_features = NETIF_F_SG | NETIF_F_FRAGLIST |
1612 TUN_USER_FEATURES;
1613 dev->features = dev->hw_features;
1614
1da177e4
LT
1615 err = register_netdevice(tun->dev);
1616 if (err < 0)
54f968d6 1617 goto err_free_dev;
9c3fea6a 1618
980c9e8c
DW
1619 if (device_create_file(&tun->dev->dev, &dev_attr_tun_flags) ||
1620 device_create_file(&tun->dev->dev, &dev_attr_owner) ||
1621 device_create_file(&tun->dev->dev, &dev_attr_group))
6b8a66ee 1622 pr_err("Failed to create tun sysfs files\n");
980c9e8c 1623
a7385ba2
EB
1624 err = tun_attach(tun, file);
1625 if (err < 0)
c8d68e6b 1626 goto err_free_dev;
1da177e4
LT
1627 }
1628
6b8a66ee 1629 tun_debug(KERN_INFO, tun, "tun_set_iff\n");
1da177e4
LT
1630
1631 if (ifr->ifr_flags & IFF_NO_PI)
1632 tun->flags |= TUN_NO_PI;
a26af1e0
NF
1633 else
1634 tun->flags &= ~TUN_NO_PI;
1da177e4
LT
1635
1636 if (ifr->ifr_flags & IFF_ONE_QUEUE)
1637 tun->flags |= TUN_ONE_QUEUE;
a26af1e0
NF
1638 else
1639 tun->flags &= ~TUN_ONE_QUEUE;
1da177e4 1640
f43798c2
RR
1641 if (ifr->ifr_flags & IFF_VNET_HDR)
1642 tun->flags |= TUN_VNET_HDR;
1643 else
1644 tun->flags &= ~TUN_VNET_HDR;
1645
c8d68e6b
JW
1646 if (ifr->ifr_flags & IFF_MULTI_QUEUE)
1647 tun->flags |= TUN_TAP_MQ;
1648 else
1649 tun->flags &= ~TUN_TAP_MQ;
1650
e35259a9
MK
1651 /* Make sure persistent devices do not get stuck in
1652 * xoff state.
1653 */
1654 if (netif_running(tun->dev))
c8d68e6b 1655 netif_tx_wake_all_queues(tun->dev);
e35259a9 1656
1da177e4
LT
1657 strcpy(ifr->ifr_name, tun->dev->name);
1658 return 0;
1659
1660 err_free_dev:
1661 free_netdev(dev);
1da177e4
LT
1662 return err;
1663}
1664
9ce99cf6 1665static void tun_get_iff(struct net *net, struct tun_struct *tun,
876bfd4d 1666 struct ifreq *ifr)
e3b99556 1667{
6b8a66ee 1668 tun_debug(KERN_INFO, tun, "tun_get_iff\n");
e3b99556
MM
1669
1670 strcpy(ifr->ifr_name, tun->dev->name);
1671
980c9e8c 1672 ifr->ifr_flags = tun_flags(tun);
e3b99556 1673
e3b99556
MM
1674}
1675
5228ddc9
RR
1676/* This is like a cut-down ethtool ops, except done via tun fd so no
1677 * privs required. */
88255375 1678static int set_offload(struct tun_struct *tun, unsigned long arg)
5228ddc9 1679{
c8f44aff 1680 netdev_features_t features = 0;
5228ddc9
RR
1681
1682 if (arg & TUN_F_CSUM) {
88255375 1683 features |= NETIF_F_HW_CSUM;
5228ddc9
RR
1684 arg &= ~TUN_F_CSUM;
1685
1686 if (arg & (TUN_F_TSO4|TUN_F_TSO6)) {
1687 if (arg & TUN_F_TSO_ECN) {
1688 features |= NETIF_F_TSO_ECN;
1689 arg &= ~TUN_F_TSO_ECN;
1690 }
1691 if (arg & TUN_F_TSO4)
1692 features |= NETIF_F_TSO;
1693 if (arg & TUN_F_TSO6)
1694 features |= NETIF_F_TSO6;
1695 arg &= ~(TUN_F_TSO4|TUN_F_TSO6);
1696 }
e36aa25a
SS
1697
1698 if (arg & TUN_F_UFO) {
1699 features |= NETIF_F_UFO;
1700 arg &= ~TUN_F_UFO;
1701 }
5228ddc9
RR
1702 }
1703
1704 /* This gives the user a way to test for new features in future by
1705 * trying to set them. */
1706 if (arg)
1707 return -EINVAL;
1708
88255375
MM
1709 tun->set_features = features;
1710 netdev_update_features(tun->dev);
5228ddc9
RR
1711
1712 return 0;
1713}
1714
c8d68e6b
JW
1715static void tun_detach_filter(struct tun_struct *tun, int n)
1716{
1717 int i;
1718 struct tun_file *tfile;
1719
1720 for (i = 0; i < n; i++) {
1721 tfile = rcu_dereference_protected(tun->tfiles[i],
1722 lockdep_rtnl_is_held());
1723 sk_detach_filter(tfile->socket.sk);
1724 }
1725
1726 tun->filter_attached = false;
1727}
1728
1729static int tun_attach_filter(struct tun_struct *tun)
1730{
1731 int i, ret = 0;
1732 struct tun_file *tfile;
1733
1734 for (i = 0; i < tun->numqueues; i++) {
1735 tfile = rcu_dereference_protected(tun->tfiles[i],
1736 lockdep_rtnl_is_held());
1737 ret = sk_attach_filter(&tun->fprog, tfile->socket.sk);
1738 if (ret) {
1739 tun_detach_filter(tun, i);
1740 return ret;
1741 }
1742 }
1743
1744 tun->filter_attached = true;
1745 return ret;
1746}
1747
1748static void tun_set_sndbuf(struct tun_struct *tun)
1749{
1750 struct tun_file *tfile;
1751 int i;
1752
1753 for (i = 0; i < tun->numqueues; i++) {
1754 tfile = rcu_dereference_protected(tun->tfiles[i],
1755 lockdep_rtnl_is_held());
1756 tfile->socket.sk->sk_sndbuf = tun->sndbuf;
1757 }
1758}
1759
cde8b15f
JW
1760static int tun_set_queue(struct file *file, struct ifreq *ifr)
1761{
1762 struct tun_file *tfile = file->private_data;
1763 struct tun_struct *tun;
1764 struct net_device *dev;
1765 int ret = 0;
1766
1767 rtnl_lock();
1768
1769 if (ifr->ifr_flags & IFF_ATTACH_QUEUE) {
1770 dev = __dev_get_by_name(tfile->net, ifr->ifr_name);
1771 if (!dev) {
1772 ret = -EINVAL;
1773 goto unlock;
1774 }
1775
1776 tun = netdev_priv(dev);
1777 if (dev->netdev_ops != &tap_netdev_ops &&
1778 dev->netdev_ops != &tun_netdev_ops)
1779 ret = -EINVAL;
1780 else if (tun_not_capable(tun))
1781 ret = -EPERM;
1782 else
1783 ret = tun_attach(tun, file);
1784 } else if (ifr->ifr_flags & IFF_DETACH_QUEUE)
1785 __tun_detach(tfile, false);
1786 else
1787 ret = -EINVAL;
1788
1789unlock:
1790 rtnl_unlock();
1791 return ret;
1792}
1793
50857e2a
AB
1794static long __tun_chr_ioctl(struct file *file, unsigned int cmd,
1795 unsigned long arg, int ifreq_len)
1da177e4 1796{
36b50bab 1797 struct tun_file *tfile = file->private_data;
631ab46b 1798 struct tun_struct *tun;
1da177e4
LT
1799 void __user* argp = (void __user*)arg;
1800 struct ifreq ifr;
0625c883
EB
1801 kuid_t owner;
1802 kgid_t group;
33dccbb0 1803 int sndbuf;
d9d52b51 1804 int vnet_hdr_sz;
f271b2cc 1805 int ret;
1da177e4 1806
cde8b15f 1807 if (cmd == TUNSETIFF || cmd == TUNSETQUEUE || _IOC_TYPE(cmd) == 0x89) {
50857e2a 1808 if (copy_from_user(&ifr, argp, ifreq_len))
1da177e4 1809 return -EFAULT;
8bbb1813 1810 } else {
a117dacd 1811 memset(&ifr, 0, sizeof(ifr));
8bbb1813 1812 }
631ab46b
EB
1813 if (cmd == TUNGETFEATURES) {
1814 /* Currently this just means: "what IFF flags are valid?".
1815 * This is needed because we never checked for invalid flags on
1816 * TUNSETIFF. */
1817 return put_user(IFF_TUN | IFF_TAP | IFF_NO_PI | IFF_ONE_QUEUE |
cde8b15f 1818 IFF_VNET_HDR | IFF_MULTI_QUEUE,
631ab46b 1819 (unsigned int __user*)argp);
cde8b15f
JW
1820 } else if (cmd == TUNSETQUEUE)
1821 return tun_set_queue(file, &ifr);
631ab46b 1822
c8d68e6b 1823 ret = 0;
876bfd4d
HX
1824 rtnl_lock();
1825
36b50bab 1826 tun = __tun_get(tfile);
1da177e4 1827 if (cmd == TUNSETIFF && !tun) {
1da177e4
LT
1828 ifr.ifr_name[IFNAMSIZ-1] = '\0';
1829
876bfd4d 1830 ret = tun_set_iff(tfile->net, file, &ifr);
1da177e4 1831
876bfd4d
HX
1832 if (ret)
1833 goto unlock;
1da177e4 1834
50857e2a 1835 if (copy_to_user(argp, &ifr, ifreq_len))
876bfd4d
HX
1836 ret = -EFAULT;
1837 goto unlock;
1da177e4
LT
1838 }
1839
876bfd4d 1840 ret = -EBADFD;
1da177e4 1841 if (!tun)
876bfd4d 1842 goto unlock;
1da177e4 1843
1e588338 1844 tun_debug(KERN_INFO, tun, "tun_chr_ioctl cmd %u\n", cmd);
1da177e4 1845
631ab46b 1846 ret = 0;
1da177e4 1847 switch (cmd) {
e3b99556 1848 case TUNGETIFF:
9ce99cf6 1849 tun_get_iff(current->nsproxy->net_ns, tun, &ifr);
e3b99556 1850
50857e2a 1851 if (copy_to_user(argp, &ifr, ifreq_len))
631ab46b 1852 ret = -EFAULT;
e3b99556
MM
1853 break;
1854
1da177e4
LT
1855 case TUNSETNOCSUM:
1856 /* Disable/Enable checksum */
1da177e4 1857
88255375
MM
1858 /* [unimplemented] */
1859 tun_debug(KERN_INFO, tun, "ignored: set checksum %s\n",
6b8a66ee 1860 arg ? "disabled" : "enabled");
1da177e4
LT
1861 break;
1862
1863 case TUNSETPERSIST:
54f968d6
JW
1864 /* Disable/Enable persist mode. Keep an extra reference to the
1865 * module to prevent the module being unprobed.
1866 */
1867 if (arg) {
1da177e4 1868 tun->flags |= TUN_PERSIST;
54f968d6
JW
1869 __module_get(THIS_MODULE);
1870 } else {
1da177e4 1871 tun->flags &= ~TUN_PERSIST;
54f968d6
JW
1872 module_put(THIS_MODULE);
1873 }
1da177e4 1874
6b8a66ee
JP
1875 tun_debug(KERN_INFO, tun, "persist %s\n",
1876 arg ? "enabled" : "disabled");
1da177e4
LT
1877 break;
1878
1879 case TUNSETOWNER:
1880 /* Set owner of the device */
0625c883
EB
1881 owner = make_kuid(current_user_ns(), arg);
1882 if (!uid_valid(owner)) {
1883 ret = -EINVAL;
1884 break;
1885 }
1886 tun->owner = owner;
1e588338 1887 tun_debug(KERN_INFO, tun, "owner set to %u\n",
0625c883 1888 from_kuid(&init_user_ns, tun->owner));
1da177e4
LT
1889 break;
1890
8c644623
GG
1891 case TUNSETGROUP:
1892 /* Set group of the device */
0625c883
EB
1893 group = make_kgid(current_user_ns(), arg);
1894 if (!gid_valid(group)) {
1895 ret = -EINVAL;
1896 break;
1897 }
1898 tun->group = group;
1e588338 1899 tun_debug(KERN_INFO, tun, "group set to %u\n",
0625c883 1900 from_kgid(&init_user_ns, tun->group));
8c644623
GG
1901 break;
1902
ff4cc3ac
MK
1903 case TUNSETLINK:
1904 /* Only allow setting the type when the interface is down */
1905 if (tun->dev->flags & IFF_UP) {
6b8a66ee
JP
1906 tun_debug(KERN_INFO, tun,
1907 "Linktype set failed because interface is up\n");
48abfe05 1908 ret = -EBUSY;
ff4cc3ac
MK
1909 } else {
1910 tun->dev->type = (int) arg;
6b8a66ee
JP
1911 tun_debug(KERN_INFO, tun, "linktype set to %d\n",
1912 tun->dev->type);
48abfe05 1913 ret = 0;
ff4cc3ac 1914 }
631ab46b 1915 break;
ff4cc3ac 1916
1da177e4
LT
1917#ifdef TUN_DEBUG
1918 case TUNSETDEBUG:
1919 tun->debug = arg;
1920 break;
1921#endif
5228ddc9 1922 case TUNSETOFFLOAD:
88255375 1923 ret = set_offload(tun, arg);
631ab46b 1924 break;
5228ddc9 1925
f271b2cc
MK
1926 case TUNSETTXFILTER:
1927 /* Can be set only for TAPs */
631ab46b 1928 ret = -EINVAL;
f271b2cc 1929 if ((tun->flags & TUN_TYPE_MASK) != TUN_TAP_DEV)
631ab46b 1930 break;
c0e5a8c2 1931 ret = update_filter(&tun->txflt, (void __user *)arg);
631ab46b 1932 break;
1da177e4
LT
1933
1934 case SIOCGIFHWADDR:
b595076a 1935 /* Get hw address */
f271b2cc
MK
1936 memcpy(ifr.ifr_hwaddr.sa_data, tun->dev->dev_addr, ETH_ALEN);
1937 ifr.ifr_hwaddr.sa_family = tun->dev->type;
50857e2a 1938 if (copy_to_user(argp, &ifr, ifreq_len))
631ab46b
EB
1939 ret = -EFAULT;
1940 break;
1da177e4
LT
1941
1942 case SIOCSIFHWADDR:
f271b2cc 1943 /* Set hw address */
6b8a66ee
JP
1944 tun_debug(KERN_DEBUG, tun, "set hw address: %pM\n",
1945 ifr.ifr_hwaddr.sa_data);
40102371 1946
40102371 1947 ret = dev_set_mac_address(tun->dev, &ifr.ifr_hwaddr);
631ab46b 1948 break;
33dccbb0
HX
1949
1950 case TUNGETSNDBUF:
54f968d6 1951 sndbuf = tfile->socket.sk->sk_sndbuf;
33dccbb0
HX
1952 if (copy_to_user(argp, &sndbuf, sizeof(sndbuf)))
1953 ret = -EFAULT;
1954 break;
1955
1956 case TUNSETSNDBUF:
1957 if (copy_from_user(&sndbuf, argp, sizeof(sndbuf))) {
1958 ret = -EFAULT;
1959 break;
1960 }
1961
c8d68e6b
JW
1962 tun->sndbuf = sndbuf;
1963 tun_set_sndbuf(tun);
33dccbb0
HX
1964 break;
1965
d9d52b51
MT
1966 case TUNGETVNETHDRSZ:
1967 vnet_hdr_sz = tun->vnet_hdr_sz;
1968 if (copy_to_user(argp, &vnet_hdr_sz, sizeof(vnet_hdr_sz)))
1969 ret = -EFAULT;
1970 break;
1971
1972 case TUNSETVNETHDRSZ:
1973 if (copy_from_user(&vnet_hdr_sz, argp, sizeof(vnet_hdr_sz))) {
1974 ret = -EFAULT;
1975 break;
1976 }
1977 if (vnet_hdr_sz < (int)sizeof(struct virtio_net_hdr)) {
1978 ret = -EINVAL;
1979 break;
1980 }
1981
1982 tun->vnet_hdr_sz = vnet_hdr_sz;
1983 break;
1984
99405162
MT
1985 case TUNATTACHFILTER:
1986 /* Can be set only for TAPs */
1987 ret = -EINVAL;
1988 if ((tun->flags & TUN_TYPE_MASK) != TUN_TAP_DEV)
1989 break;
1990 ret = -EFAULT;
54f968d6 1991 if (copy_from_user(&tun->fprog, argp, sizeof(tun->fprog)))
99405162
MT
1992 break;
1993
c8d68e6b 1994 ret = tun_attach_filter(tun);
99405162
MT
1995 break;
1996
1997 case TUNDETACHFILTER:
1998 /* Can be set only for TAPs */
1999 ret = -EINVAL;
2000 if ((tun->flags & TUN_TYPE_MASK) != TUN_TAP_DEV)
2001 break;
c8d68e6b
JW
2002 ret = 0;
2003 tun_detach_filter(tun, tun->numqueues);
99405162
MT
2004 break;
2005
1da177e4 2006 default:
631ab46b
EB
2007 ret = -EINVAL;
2008 break;
ee289b64 2009 }
1da177e4 2010
876bfd4d
HX
2011unlock:
2012 rtnl_unlock();
2013 if (tun)
2014 tun_put(tun);
631ab46b 2015 return ret;
1da177e4
LT
2016}
2017
50857e2a
AB
2018static long tun_chr_ioctl(struct file *file,
2019 unsigned int cmd, unsigned long arg)
2020{
2021 return __tun_chr_ioctl(file, cmd, arg, sizeof (struct ifreq));
2022}
2023
2024#ifdef CONFIG_COMPAT
2025static long tun_chr_compat_ioctl(struct file *file,
2026 unsigned int cmd, unsigned long arg)
2027{
2028 switch (cmd) {
2029 case TUNSETIFF:
2030 case TUNGETIFF:
2031 case TUNSETTXFILTER:
2032 case TUNGETSNDBUF:
2033 case TUNSETSNDBUF:
2034 case SIOCGIFHWADDR:
2035 case SIOCSIFHWADDR:
2036 arg = (unsigned long)compat_ptr(arg);
2037 break;
2038 default:
2039 arg = (compat_ulong_t)arg;
2040 break;
2041 }
2042
2043 /*
2044 * compat_ifreq is shorter than ifreq, so we must not access beyond
2045 * the end of that structure. All fields that are used in this
2046 * driver are compatible though, we don't need to convert the
2047 * contents.
2048 */
2049 return __tun_chr_ioctl(file, cmd, arg, sizeof(struct compat_ifreq));
2050}
2051#endif /* CONFIG_COMPAT */
2052
1da177e4
LT
2053static int tun_chr_fasync(int fd, struct file *file, int on)
2054{
54f968d6 2055 struct tun_file *tfile = file->private_data;
1da177e4
LT
2056 int ret;
2057
54f968d6 2058 if ((ret = fasync_helper(fd, file, on, &tfile->fasync)) < 0)
9d319522 2059 goto out;
6aa20a22 2060
1da177e4 2061 if (on) {
609d7fa9 2062 ret = __f_setown(file, task_pid(current), PIDTYPE_PID, 0);
1da177e4 2063 if (ret)
9d319522 2064 goto out;
54f968d6 2065 tfile->flags |= TUN_FASYNC;
6aa20a22 2066 } else
54f968d6 2067 tfile->flags &= ~TUN_FASYNC;
9d319522
JC
2068 ret = 0;
2069out:
9d319522 2070 return ret;
1da177e4
LT
2071}
2072
2073static int tun_chr_open(struct inode *inode, struct file * file)
2074{
631ab46b 2075 struct tun_file *tfile;
deed49fb 2076
6b8a66ee 2077 DBG1(KERN_INFO, "tunX: tun_chr_open\n");
631ab46b 2078
54f968d6
JW
2079 tfile = (struct tun_file *)sk_alloc(&init_net, AF_UNSPEC, GFP_KERNEL,
2080 &tun_proto);
631ab46b
EB
2081 if (!tfile)
2082 return -ENOMEM;
6e914fc7 2083 rcu_assign_pointer(tfile->tun, NULL);
36b50bab 2084 tfile->net = get_net(current->nsproxy->net_ns);
54f968d6
JW
2085 tfile->flags = 0;
2086
2087 rcu_assign_pointer(tfile->socket.wq, &tfile->wq);
2088 init_waitqueue_head(&tfile->wq.wait);
2089
2090 tfile->socket.file = file;
2091 tfile->socket.ops = &tun_socket_ops;
2092
2093 sock_init_data(&tfile->socket, &tfile->sk);
2094 sk_change_net(&tfile->sk, tfile->net);
2095
2096 tfile->sk.sk_write_space = tun_sock_write_space;
2097 tfile->sk.sk_sndbuf = INT_MAX;
2098
631ab46b 2099 file->private_data = tfile;
54f968d6
JW
2100 set_bit(SOCK_EXTERNALLY_ALLOCATED, &tfile->socket.flags);
2101
1da177e4
LT
2102 return 0;
2103}
2104
2105static int tun_chr_close(struct inode *inode, struct file *file)
2106{
631ab46b 2107 struct tun_file *tfile = file->private_data;
54f968d6 2108 struct net *net = tfile->net;
1da177e4 2109
c8d68e6b 2110 tun_detach(tfile, true);
54f968d6 2111 put_net(net);
1da177e4
LT
2112
2113 return 0;
2114}
2115
d54b1fdb 2116static const struct file_operations tun_fops = {
6aa20a22 2117 .owner = THIS_MODULE,
1da177e4 2118 .llseek = no_llseek,
ee0b3e67
BP
2119 .read = do_sync_read,
2120 .aio_read = tun_chr_aio_read,
2121 .write = do_sync_write,
2122 .aio_write = tun_chr_aio_write,
1da177e4 2123 .poll = tun_chr_poll,
50857e2a
AB
2124 .unlocked_ioctl = tun_chr_ioctl,
2125#ifdef CONFIG_COMPAT
2126 .compat_ioctl = tun_chr_compat_ioctl,
2127#endif
1da177e4
LT
2128 .open = tun_chr_open,
2129 .release = tun_chr_close,
6aa20a22 2130 .fasync = tun_chr_fasync
1da177e4
LT
2131};
2132
2133static struct miscdevice tun_miscdev = {
2134 .minor = TUN_MINOR,
2135 .name = "tun",
e454cea2 2136 .nodename = "net/tun",
1da177e4 2137 .fops = &tun_fops,
1da177e4
LT
2138};
2139
2140/* ethtool interface */
2141
2142static int tun_get_settings(struct net_device *dev, struct ethtool_cmd *cmd)
2143{
2144 cmd->supported = 0;
2145 cmd->advertising = 0;
70739497 2146 ethtool_cmd_speed_set(cmd, SPEED_10);
1da177e4
LT
2147 cmd->duplex = DUPLEX_FULL;
2148 cmd->port = PORT_TP;
2149 cmd->phy_address = 0;
2150 cmd->transceiver = XCVR_INTERNAL;
2151 cmd->autoneg = AUTONEG_DISABLE;
2152 cmd->maxtxpkt = 0;
2153 cmd->maxrxpkt = 0;
2154 return 0;
2155}
2156
2157static void tun_get_drvinfo(struct net_device *dev, struct ethtool_drvinfo *info)
2158{
2159 struct tun_struct *tun = netdev_priv(dev);
2160
33a5ba14
RJ
2161 strlcpy(info->driver, DRV_NAME, sizeof(info->driver));
2162 strlcpy(info->version, DRV_VERSION, sizeof(info->version));
1da177e4
LT
2163
2164 switch (tun->flags & TUN_TYPE_MASK) {
2165 case TUN_TUN_DEV:
33a5ba14 2166 strlcpy(info->bus_info, "tun", sizeof(info->bus_info));
1da177e4
LT
2167 break;
2168 case TUN_TAP_DEV:
33a5ba14 2169 strlcpy(info->bus_info, "tap", sizeof(info->bus_info));
1da177e4
LT
2170 break;
2171 }
2172}
2173
2174static u32 tun_get_msglevel(struct net_device *dev)
2175{
2176#ifdef TUN_DEBUG
2177 struct tun_struct *tun = netdev_priv(dev);
2178 return tun->debug;
2179#else
2180 return -EOPNOTSUPP;
2181#endif
2182}
2183
2184static void tun_set_msglevel(struct net_device *dev, u32 value)
2185{
2186#ifdef TUN_DEBUG
2187 struct tun_struct *tun = netdev_priv(dev);
2188 tun->debug = value;
2189#endif
2190}
2191
7282d491 2192static const struct ethtool_ops tun_ethtool_ops = {
1da177e4
LT
2193 .get_settings = tun_get_settings,
2194 .get_drvinfo = tun_get_drvinfo,
2195 .get_msglevel = tun_get_msglevel,
2196 .set_msglevel = tun_set_msglevel,
bee31369 2197 .get_link = ethtool_op_get_link,
1da177e4
LT
2198};
2199
79d17604 2200
1da177e4
LT
2201static int __init tun_init(void)
2202{
2203 int ret = 0;
2204
6b8a66ee
JP
2205 pr_info("%s, %s\n", DRV_DESCRIPTION, DRV_VERSION);
2206 pr_info("%s\n", DRV_COPYRIGHT);
1da177e4 2207
f019a7a5 2208 ret = rtnl_link_register(&tun_link_ops);
79d17604 2209 if (ret) {
6b8a66ee 2210 pr_err("Can't register link_ops\n");
f019a7a5 2211 goto err_linkops;
79d17604
PE
2212 }
2213
1da177e4 2214 ret = misc_register(&tun_miscdev);
79d17604 2215 if (ret) {
6b8a66ee 2216 pr_err("Can't register misc device %d\n", TUN_MINOR);
79d17604
PE
2217 goto err_misc;
2218 }
f019a7a5 2219 return 0;
79d17604 2220err_misc:
f019a7a5
EB
2221 rtnl_link_unregister(&tun_link_ops);
2222err_linkops:
1da177e4
LT
2223 return ret;
2224}
2225
2226static void tun_cleanup(void)
2227{
6aa20a22 2228 misc_deregister(&tun_miscdev);
f019a7a5 2229 rtnl_link_unregister(&tun_link_ops);
1da177e4
LT
2230}
2231
05c2828c
MT
2232/* Get an underlying socket object from tun file. Returns error unless file is
2233 * attached to a device. The returned object works like a packet socket, it
2234 * can be used for sock_sendmsg/sock_recvmsg. The caller is responsible for
2235 * holding a reference to the file for as long as the socket is in use. */
2236struct socket *tun_get_socket(struct file *file)
2237{
6e914fc7 2238 struct tun_file *tfile;
05c2828c
MT
2239 if (file->f_op != &tun_fops)
2240 return ERR_PTR(-EINVAL);
6e914fc7
JW
2241 tfile = file->private_data;
2242 if (!tfile)
05c2828c 2243 return ERR_PTR(-EBADFD);
54f968d6 2244 return &tfile->socket;
05c2828c
MT
2245}
2246EXPORT_SYMBOL_GPL(tun_get_socket);
2247
1da177e4
LT
2248module_init(tun_init);
2249module_exit(tun_cleanup);
2250MODULE_DESCRIPTION(DRV_DESCRIPTION);
2251MODULE_AUTHOR(DRV_COPYRIGHT);
2252MODULE_LICENSE("GPL");
2253MODULE_ALIAS_MISCDEV(TUN_MINOR);
578454ff 2254MODULE_ALIAS("devname:net/tun");