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