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