]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - drivers/net/tun.c
forcedeth: fix tx limit2 flag check
[mirror_ubuntu-bionic-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>
f271b2cc 25 * Use random_ether_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
37#define DRV_NAME "tun"
38#define DRV_VERSION "1.6"
39#define DRV_DESCRIPTION "Universal TUN/TAP device driver"
40#define DRV_COPYRIGHT "(C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>"
41
1da177e4
LT
42#include <linux/module.h>
43#include <linux/errno.h>
44#include <linux/kernel.h>
45#include <linux/major.h>
46#include <linux/slab.h>
47#include <linux/poll.h>
48#include <linux/fcntl.h>
49#include <linux/init.h>
50#include <linux/skbuff.h>
51#include <linux/netdevice.h>
52#include <linux/etherdevice.h>
53#include <linux/miscdevice.h>
54#include <linux/ethtool.h>
55#include <linux/rtnetlink.h>
50857e2a 56#include <linux/compat.h>
1da177e4
LT
57#include <linux/if.h>
58#include <linux/if_arp.h>
59#include <linux/if_ether.h>
60#include <linux/if_tun.h>
61#include <linux/crc32.h>
d647a591 62#include <linux/nsproxy.h>
f43798c2 63#include <linux/virtio_net.h>
99405162 64#include <linux/rcupdate.h>
881d966b 65#include <net/net_namespace.h>
79d17604 66#include <net/netns/generic.h>
f019a7a5 67#include <net/rtnetlink.h>
33dccbb0 68#include <net/sock.h>
1da177e4
LT
69
70#include <asm/system.h>
71#include <asm/uaccess.h>
72
14daa021
RR
73/* Uncomment to enable debugging */
74/* #define TUN_DEBUG 1 */
75
1da177e4
LT
76#ifdef TUN_DEBUG
77static int debug;
14daa021
RR
78
79#define DBG if(tun->debug)printk
80#define DBG1 if(debug==2)printk
81#else
82#define DBG( a... )
83#define DBG1( a... )
84#endif
85
f271b2cc
MK
86#define FLT_EXACT_COUNT 8
87struct tap_filter {
88 unsigned int count; /* Number of addrs. Zero means disabled */
89 u32 mask[2]; /* Mask of the hashed addrs */
90 unsigned char addr[FLT_EXACT_COUNT][ETH_ALEN];
91};
92
631ab46b 93struct tun_file {
c70f1829 94 atomic_t count;
631ab46b 95 struct tun_struct *tun;
36b50bab 96 struct net *net;
631ab46b
EB
97};
98
33dccbb0
HX
99struct tun_sock;
100
14daa021 101struct tun_struct {
631ab46b 102 struct tun_file *tfile;
f271b2cc 103 unsigned int flags;
14daa021
RR
104 uid_t owner;
105 gid_t group;
106
14daa021 107 struct net_device *dev;
f271b2cc 108 struct fasync_struct *fasync;
14daa021 109
f271b2cc 110 struct tap_filter txflt;
33dccbb0 111 struct socket socket;
14daa021
RR
112
113#ifdef TUN_DEBUG
114 int debug;
1da177e4 115#endif
14daa021 116};
1da177e4 117
33dccbb0
HX
118struct tun_sock {
119 struct sock sk;
120 struct tun_struct *tun;
121};
122
123static inline struct tun_sock *tun_sk(struct sock *sk)
124{
125 return container_of(sk, struct tun_sock, sk);
126}
127
a7385ba2
EB
128static int tun_attach(struct tun_struct *tun, struct file *file)
129{
631ab46b 130 struct tun_file *tfile = file->private_data;
38231b7a 131 int err;
a7385ba2
EB
132
133 ASSERT_RTNL();
134
38231b7a
EB
135 netif_tx_lock_bh(tun->dev);
136
137 err = -EINVAL;
138 if (tfile->tun)
139 goto out;
140
141 err = -EBUSY;
142 if (tun->tfile)
143 goto out;
144
145 err = 0;
631ab46b
EB
146 tfile->tun = tun;
147 tun->tfile = tfile;
05c2828c 148 tun->socket.file = file;
c70f1829 149 dev_hold(tun->dev);
89f56d1e 150 sock_hold(tun->socket.sk);
c70f1829 151 atomic_inc(&tfile->count);
a7385ba2 152
38231b7a
EB
153out:
154 netif_tx_unlock_bh(tun->dev);
155 return err;
a7385ba2
EB
156}
157
631ab46b
EB
158static void __tun_detach(struct tun_struct *tun)
159{
631ab46b 160 /* Detach from net device */
38231b7a 161 netif_tx_lock_bh(tun->dev);
631ab46b 162 tun->tfile = NULL;
05c2828c 163 tun->socket.file = NULL;
38231b7a 164 netif_tx_unlock_bh(tun->dev);
631ab46b
EB
165
166 /* Drop read queue */
89f56d1e 167 skb_queue_purge(&tun->socket.sk->sk_receive_queue);
c70f1829
EB
168
169 /* Drop the extra count on the net device */
170 dev_put(tun->dev);
171}
172
173static void tun_detach(struct tun_struct *tun)
174{
175 rtnl_lock();
176 __tun_detach(tun);
177 rtnl_unlock();
631ab46b
EB
178}
179
180static struct tun_struct *__tun_get(struct tun_file *tfile)
181{
c70f1829
EB
182 struct tun_struct *tun = NULL;
183
184 if (atomic_inc_not_zero(&tfile->count))
185 tun = tfile->tun;
186
187 return tun;
631ab46b
EB
188}
189
190static struct tun_struct *tun_get(struct file *file)
191{
192 return __tun_get(file->private_data);
193}
194
195static void tun_put(struct tun_struct *tun)
196{
c70f1829
EB
197 struct tun_file *tfile = tun->tfile;
198
199 if (atomic_dec_and_test(&tfile->count))
200 tun_detach(tfile->tun);
631ab46b
EB
201}
202
f271b2cc
MK
203/* TAP filterting */
204static void addr_hash_set(u32 *mask, const u8 *addr)
205{
206 int n = ether_crc(ETH_ALEN, addr) >> 26;
207 mask[n >> 5] |= (1 << (n & 31));
208}
209
210static unsigned int addr_hash_test(const u32 *mask, const u8 *addr)
211{
212 int n = ether_crc(ETH_ALEN, addr) >> 26;
213 return mask[n >> 5] & (1 << (n & 31));
214}
215
216static int update_filter(struct tap_filter *filter, void __user *arg)
217{
218 struct { u8 u[ETH_ALEN]; } *addr;
219 struct tun_filter uf;
220 int err, alen, n, nexact;
221
222 if (copy_from_user(&uf, arg, sizeof(uf)))
223 return -EFAULT;
224
225 if (!uf.count) {
226 /* Disabled */
227 filter->count = 0;
228 return 0;
229 }
230
231 alen = ETH_ALEN * uf.count;
232 addr = kmalloc(alen, GFP_KERNEL);
233 if (!addr)
234 return -ENOMEM;
235
236 if (copy_from_user(addr, arg + sizeof(uf), alen)) {
237 err = -EFAULT;
238 goto done;
239 }
240
241 /* The filter is updated without holding any locks. Which is
242 * perfectly safe. We disable it first and in the worst
243 * case we'll accept a few undesired packets. */
244 filter->count = 0;
245 wmb();
246
247 /* Use first set of addresses as an exact filter */
248 for (n = 0; n < uf.count && n < FLT_EXACT_COUNT; n++)
249 memcpy(filter->addr[n], addr[n].u, ETH_ALEN);
250
251 nexact = n;
252
cfbf84fc
AW
253 /* Remaining multicast addresses are hashed,
254 * unicast will leave the filter disabled. */
f271b2cc 255 memset(filter->mask, 0, sizeof(filter->mask));
cfbf84fc
AW
256 for (; n < uf.count; n++) {
257 if (!is_multicast_ether_addr(addr[n].u)) {
258 err = 0; /* no filter */
259 goto done;
260 }
f271b2cc 261 addr_hash_set(filter->mask, addr[n].u);
cfbf84fc 262 }
f271b2cc
MK
263
264 /* For ALLMULTI just set the mask to all ones.
265 * This overrides the mask populated above. */
266 if ((uf.flags & TUN_FLT_ALLMULTI))
267 memset(filter->mask, ~0, sizeof(filter->mask));
268
269 /* Now enable the filter */
270 wmb();
271 filter->count = nexact;
272
273 /* Return the number of exact filters */
274 err = nexact;
275
276done:
277 kfree(addr);
278 return err;
279}
280
281/* Returns: 0 - drop, !=0 - accept */
282static int run_filter(struct tap_filter *filter, const struct sk_buff *skb)
283{
284 /* Cannot use eth_hdr(skb) here because skb_mac_hdr() is incorrect
285 * at this point. */
286 struct ethhdr *eh = (struct ethhdr *) skb->data;
287 int i;
288
289 /* Exact match */
290 for (i = 0; i < filter->count; i++)
291 if (!compare_ether_addr(eh->h_dest, filter->addr[i]))
292 return 1;
293
294 /* Inexact match (multicast only) */
295 if (is_multicast_ether_addr(eh->h_dest))
296 return addr_hash_test(filter->mask, eh->h_dest);
297
298 return 0;
299}
300
301/*
302 * Checks whether the packet is accepted or not.
303 * Returns: 0 - drop, !=0 - accept
304 */
305static int check_filter(struct tap_filter *filter, const struct sk_buff *skb)
306{
307 if (!filter->count)
308 return 1;
309
310 return run_filter(filter, skb);
311}
312
1da177e4
LT
313/* Network device part of the driver */
314
7282d491 315static const struct ethtool_ops tun_ethtool_ops;
1da177e4 316
c70f1829
EB
317/* Net device detach from fd. */
318static void tun_net_uninit(struct net_device *dev)
319{
320 struct tun_struct *tun = netdev_priv(dev);
321 struct tun_file *tfile = tun->tfile;
322
323 /* Inform the methods they need to stop using the dev.
324 */
325 if (tfile) {
c40af84a 326 wake_up_all(&tun->socket.wait);
c70f1829
EB
327 if (atomic_dec_and_test(&tfile->count))
328 __tun_detach(tun);
329 }
330}
331
9c3fea6a
HX
332static void tun_free_netdev(struct net_device *dev)
333{
334 struct tun_struct *tun = netdev_priv(dev);
335
89f56d1e 336 sock_put(tun->socket.sk);
9c3fea6a
HX
337}
338
1da177e4
LT
339/* Net device open. */
340static int tun_net_open(struct net_device *dev)
341{
342 netif_start_queue(dev);
343 return 0;
344}
345
346/* Net device close. */
347static int tun_net_close(struct net_device *dev)
348{
349 netif_stop_queue(dev);
350 return 0;
351}
352
353/* Net device start xmit */
424efe9c 354static netdev_tx_t tun_net_xmit(struct sk_buff *skb, struct net_device *dev)
1da177e4
LT
355{
356 struct tun_struct *tun = netdev_priv(dev);
357
358 DBG(KERN_INFO "%s: tun_net_xmit %d\n", tun->dev->name, skb->len);
359
360 /* Drop packet if interface is not attached */
631ab46b 361 if (!tun->tfile)
1da177e4
LT
362 goto drop;
363
f271b2cc
MK
364 /* Drop if the filter does not like it.
365 * This is a noop if the filter is disabled.
366 * Filter can be enabled only for the TAP devices. */
367 if (!check_filter(&tun->txflt, skb))
368 goto drop;
369
99405162
MT
370 if (tun->socket.sk->sk_filter &&
371 sk_filter(tun->socket.sk, skb))
372 goto drop;
373
89f56d1e 374 if (skb_queue_len(&tun->socket.sk->sk_receive_queue) >= dev->tx_queue_len) {
1da177e4
LT
375 if (!(tun->flags & TUN_ONE_QUEUE)) {
376 /* Normal queueing mode. */
377 /* Packet scheduler handles dropping of further packets. */
378 netif_stop_queue(dev);
379
380 /* We won't see all dropped packets individually, so overrun
381 * error is more appropriate. */
09f75cd7 382 dev->stats.tx_fifo_errors++;
1da177e4
LT
383 } else {
384 /* Single queue mode.
385 * Driver handles dropping of all packets itself. */
386 goto drop;
387 }
388 }
389
f271b2cc 390 /* Enqueue packet */
89f56d1e 391 skb_queue_tail(&tun->socket.sk->sk_receive_queue, skb);
1da177e4
LT
392 dev->trans_start = jiffies;
393
394 /* Notify and wake up reader process */
395 if (tun->flags & TUN_FASYNC)
396 kill_fasync(&tun->fasync, SIGIO, POLL_IN);
05c2828c
MT
397 wake_up_interruptible_poll(&tun->socket.wait, POLLIN |
398 POLLRDNORM | POLLRDBAND);
6ed10654 399 return NETDEV_TX_OK;
1da177e4
LT
400
401drop:
09f75cd7 402 dev->stats.tx_dropped++;
1da177e4 403 kfree_skb(skb);
6ed10654 404 return NETDEV_TX_OK;
1da177e4
LT
405}
406
f271b2cc 407static void tun_net_mclist(struct net_device *dev)
1da177e4 408{
f271b2cc
MK
409 /*
410 * This callback is supposed to deal with mc filter in
411 * _rx_ path and has nothing to do with the _tx_ path.
412 * In rx path we always accept everything userspace gives us.
413 */
414 return;
1da177e4
LT
415}
416
4885a504
ES
417#define MIN_MTU 68
418#define MAX_MTU 65535
419
420static int
421tun_net_change_mtu(struct net_device *dev, int new_mtu)
422{
423 if (new_mtu < MIN_MTU || new_mtu + dev->hard_header_len > MAX_MTU)
424 return -EINVAL;
425 dev->mtu = new_mtu;
426 return 0;
427}
428
758e43b7 429static const struct net_device_ops tun_netdev_ops = {
c70f1829 430 .ndo_uninit = tun_net_uninit,
758e43b7
SH
431 .ndo_open = tun_net_open,
432 .ndo_stop = tun_net_close,
00829823 433 .ndo_start_xmit = tun_net_xmit,
758e43b7 434 .ndo_change_mtu = tun_net_change_mtu,
758e43b7
SH
435};
436
437static const struct net_device_ops tap_netdev_ops = {
c70f1829 438 .ndo_uninit = tun_net_uninit,
758e43b7
SH
439 .ndo_open = tun_net_open,
440 .ndo_stop = tun_net_close,
00829823 441 .ndo_start_xmit = tun_net_xmit,
758e43b7
SH
442 .ndo_change_mtu = tun_net_change_mtu,
443 .ndo_set_multicast_list = tun_net_mclist,
444 .ndo_set_mac_address = eth_mac_addr,
445 .ndo_validate_addr = eth_validate_addr,
446};
447
1da177e4
LT
448/* Initialize net device. */
449static void tun_net_init(struct net_device *dev)
450{
451 struct tun_struct *tun = netdev_priv(dev);
6aa20a22 452
1da177e4
LT
453 switch (tun->flags & TUN_TYPE_MASK) {
454 case TUN_TUN_DEV:
758e43b7
SH
455 dev->netdev_ops = &tun_netdev_ops;
456
1da177e4
LT
457 /* Point-to-Point TUN Device */
458 dev->hard_header_len = 0;
459 dev->addr_len = 0;
460 dev->mtu = 1500;
461
462 /* Zero header length */
6aa20a22 463 dev->type = ARPHRD_NONE;
1da177e4
LT
464 dev->flags = IFF_POINTOPOINT | IFF_NOARP | IFF_MULTICAST;
465 dev->tx_queue_len = TUN_READQ_SIZE; /* We prefer our own queue length */
466 break;
467
468 case TUN_TAP_DEV:
7a0a9608 469 dev->netdev_ops = &tap_netdev_ops;
1da177e4 470 /* Ethernet TAP Device */
1da177e4 471 ether_setup(dev);
36226a8d 472
f271b2cc 473 random_ether_addr(dev->dev_addr);
36226a8d 474
1da177e4
LT
475 dev->tx_queue_len = TUN_READQ_SIZE; /* We prefer our own queue length */
476 break;
477 }
478}
479
480/* Character device part */
481
482/* Poll */
483static unsigned int tun_chr_poll(struct file *file, poll_table * wait)
6aa20a22 484{
b2430de3
EB
485 struct tun_file *tfile = file->private_data;
486 struct tun_struct *tun = __tun_get(tfile);
3c8a9c63 487 struct sock *sk;
33dccbb0 488 unsigned int mask = 0;
1da177e4
LT
489
490 if (!tun)
eac9e902 491 return POLLERR;
1da177e4 492
89f56d1e 493 sk = tun->socket.sk;
3c8a9c63 494
1da177e4
LT
495 DBG(KERN_INFO "%s: tun_chr_poll\n", tun->dev->name);
496
c40af84a 497 poll_wait(file, &tun->socket.wait, wait);
6aa20a22 498
89f56d1e 499 if (!skb_queue_empty(&sk->sk_receive_queue))
1da177e4
LT
500 mask |= POLLIN | POLLRDNORM;
501
33dccbb0
HX
502 if (sock_writeable(sk) ||
503 (!test_and_set_bit(SOCK_ASYNC_NOSPACE, &sk->sk_socket->flags) &&
504 sock_writeable(sk)))
505 mask |= POLLOUT | POLLWRNORM;
506
c70f1829
EB
507 if (tun->dev->reg_state != NETREG_REGISTERED)
508 mask = POLLERR;
509
631ab46b 510 tun_put(tun);
1da177e4
LT
511 return mask;
512}
513
f42157cb
RR
514/* prepad is the amount to reserve at front. len is length after that.
515 * linear is a hint as to how much to copy (usually headers). */
33dccbb0
HX
516static inline struct sk_buff *tun_alloc_skb(struct tun_struct *tun,
517 size_t prepad, size_t len,
518 size_t linear, int noblock)
f42157cb 519{
89f56d1e 520 struct sock *sk = tun->socket.sk;
f42157cb 521 struct sk_buff *skb;
33dccbb0 522 int err;
f42157cb
RR
523
524 /* Under a page? Don't bother with paged skb. */
0eca93bc 525 if (prepad + len < PAGE_SIZE || !linear)
33dccbb0 526 linear = len;
f42157cb 527
33dccbb0
HX
528 skb = sock_alloc_send_pskb(sk, prepad + linear, len - linear, noblock,
529 &err);
f42157cb 530 if (!skb)
33dccbb0 531 return ERR_PTR(err);
f42157cb
RR
532
533 skb_reserve(skb, prepad);
534 skb_put(skb, linear);
33dccbb0
HX
535 skb->data_len = len - linear;
536 skb->len += len - linear;
f42157cb
RR
537
538 return skb;
539}
540
1da177e4 541/* Get packet from user space buffer */
33dccbb0 542static __inline__ ssize_t tun_get_user(struct tun_struct *tun,
6f26c9a7 543 const struct iovec *iv, size_t count,
33dccbb0 544 int noblock)
1da177e4 545{
09640e63 546 struct tun_pi pi = { 0, cpu_to_be16(ETH_P_IP) };
1da177e4
LT
547 struct sk_buff *skb;
548 size_t len = count, align = 0;
f43798c2 549 struct virtio_net_hdr gso = { 0 };
6f26c9a7 550 int offset = 0;
1da177e4
LT
551
552 if (!(tun->flags & TUN_NO_PI)) {
553 if ((len -= sizeof(pi)) > count)
554 return -EINVAL;
555
6f26c9a7 556 if (memcpy_fromiovecend((void *)&pi, iv, 0, sizeof(pi)))
1da177e4 557 return -EFAULT;
6f26c9a7 558 offset += sizeof(pi);
1da177e4
LT
559 }
560
f43798c2
RR
561 if (tun->flags & TUN_VNET_HDR) {
562 if ((len -= sizeof(gso)) > count)
563 return -EINVAL;
564
6f26c9a7 565 if (memcpy_fromiovecend((void *)&gso, iv, offset, sizeof(gso)))
f43798c2
RR
566 return -EFAULT;
567
4909122f
HX
568 if ((gso.flags & VIRTIO_NET_HDR_F_NEEDS_CSUM) &&
569 gso.csum_start + gso.csum_offset + 2 > gso.hdr_len)
570 gso.hdr_len = gso.csum_start + gso.csum_offset + 2;
571
f43798c2
RR
572 if (gso.hdr_len > len)
573 return -EINVAL;
6f536f40 574 offset += sizeof(gso);
f43798c2
RR
575 }
576
e01bf1c8 577 if ((tun->flags & TUN_TYPE_MASK) == TUN_TAP_DEV) {
1da177e4 578 align = NET_IP_ALIGN;
0eca93bc
HX
579 if (unlikely(len < ETH_HLEN ||
580 (gso.hdr_len && gso.hdr_len < ETH_HLEN)))
e01bf1c8
RR
581 return -EINVAL;
582 }
6aa20a22 583
33dccbb0
HX
584 skb = tun_alloc_skb(tun, align, len, gso.hdr_len, noblock);
585 if (IS_ERR(skb)) {
586 if (PTR_ERR(skb) != -EAGAIN)
587 tun->dev->stats.rx_dropped++;
588 return PTR_ERR(skb);
1da177e4
LT
589 }
590
6f26c9a7 591 if (skb_copy_datagram_from_iovec(skb, 0, iv, offset, len)) {
09f75cd7 592 tun->dev->stats.rx_dropped++;
8f22757e 593 kfree_skb(skb);
1da177e4 594 return -EFAULT;
8f22757e 595 }
1da177e4 596
f43798c2
RR
597 if (gso.flags & VIRTIO_NET_HDR_F_NEEDS_CSUM) {
598 if (!skb_partial_csum_set(skb, gso.csum_start,
599 gso.csum_offset)) {
600 tun->dev->stats.rx_frame_errors++;
601 kfree_skb(skb);
602 return -EINVAL;
603 }
604 } else if (tun->flags & TUN_NOCHECKSUM)
605 skb->ip_summed = CHECKSUM_UNNECESSARY;
606
1da177e4
LT
607 switch (tun->flags & TUN_TYPE_MASK) {
608 case TUN_TUN_DEV:
f09f7ee2
AWC
609 if (tun->flags & TUN_NO_PI) {
610 switch (skb->data[0] & 0xf0) {
611 case 0x40:
612 pi.proto = htons(ETH_P_IP);
613 break;
614 case 0x60:
615 pi.proto = htons(ETH_P_IPV6);
616 break;
617 default:
618 tun->dev->stats.rx_dropped++;
619 kfree_skb(skb);
620 return -EINVAL;
621 }
622 }
623
459a98ed 624 skb_reset_mac_header(skb);
1da177e4 625 skb->protocol = pi.proto;
4c13eb66 626 skb->dev = tun->dev;
1da177e4
LT
627 break;
628 case TUN_TAP_DEV:
629 skb->protocol = eth_type_trans(skb, tun->dev);
630 break;
631 };
632
f43798c2
RR
633 if (gso.gso_type != VIRTIO_NET_HDR_GSO_NONE) {
634 pr_debug("GSO!\n");
635 switch (gso.gso_type & ~VIRTIO_NET_HDR_GSO_ECN) {
636 case VIRTIO_NET_HDR_GSO_TCPV4:
637 skb_shinfo(skb)->gso_type = SKB_GSO_TCPV4;
638 break;
639 case VIRTIO_NET_HDR_GSO_TCPV6:
640 skb_shinfo(skb)->gso_type = SKB_GSO_TCPV6;
641 break;
e36aa25a
SS
642 case VIRTIO_NET_HDR_GSO_UDP:
643 skb_shinfo(skb)->gso_type = SKB_GSO_UDP;
644 break;
f43798c2
RR
645 default:
646 tun->dev->stats.rx_frame_errors++;
647 kfree_skb(skb);
648 return -EINVAL;
649 }
650
651 if (gso.gso_type & VIRTIO_NET_HDR_GSO_ECN)
652 skb_shinfo(skb)->gso_type |= SKB_GSO_TCP_ECN;
653
654 skb_shinfo(skb)->gso_size = gso.gso_size;
655 if (skb_shinfo(skb)->gso_size == 0) {
656 tun->dev->stats.rx_frame_errors++;
657 kfree_skb(skb);
658 return -EINVAL;
659 }
660
661 /* Header must be checked, and gso_segs computed. */
662 skb_shinfo(skb)->gso_type |= SKB_GSO_DODGY;
663 skb_shinfo(skb)->gso_segs = 0;
664 }
6aa20a22 665
1da177e4 666 netif_rx_ni(skb);
6aa20a22 667
09f75cd7
JG
668 tun->dev->stats.rx_packets++;
669 tun->dev->stats.rx_bytes += len;
1da177e4
LT
670
671 return count;
6aa20a22 672}
1da177e4 673
ee0b3e67
BP
674static ssize_t tun_chr_aio_write(struct kiocb *iocb, const struct iovec *iv,
675 unsigned long count, loff_t pos)
1da177e4 676{
33dccbb0 677 struct file *file = iocb->ki_filp;
ab46d779 678 struct tun_struct *tun = tun_get(file);
631ab46b 679 ssize_t result;
1da177e4
LT
680
681 if (!tun)
682 return -EBADFD;
683
684 DBG(KERN_INFO "%s: tun_chr_write %ld\n", tun->dev->name, count);
685
6f26c9a7 686 result = tun_get_user(tun, iv, iov_length(iv, count),
33dccbb0 687 file->f_flags & O_NONBLOCK);
631ab46b
EB
688
689 tun_put(tun);
690 return result;
1da177e4
LT
691}
692
1da177e4
LT
693/* Put packet to the user space buffer */
694static __inline__ ssize_t tun_put_user(struct tun_struct *tun,
695 struct sk_buff *skb,
43b39dcd 696 const struct iovec *iv, int len)
1da177e4
LT
697{
698 struct tun_pi pi = { 0, skb->protocol };
699 ssize_t total = 0;
700
701 if (!(tun->flags & TUN_NO_PI)) {
702 if ((len -= sizeof(pi)) < 0)
703 return -EINVAL;
704
705 if (len < skb->len) {
706 /* Packet will be striped */
707 pi.flags |= TUN_PKT_STRIP;
708 }
6aa20a22 709
43b39dcd 710 if (memcpy_toiovecend(iv, (void *) &pi, 0, sizeof(pi)))
1da177e4
LT
711 return -EFAULT;
712 total += sizeof(pi);
6aa20a22 713 }
1da177e4 714
f43798c2
RR
715 if (tun->flags & TUN_VNET_HDR) {
716 struct virtio_net_hdr gso = { 0 }; /* no info leak */
717 if ((len -= sizeof(gso)) < 0)
718 return -EINVAL;
719
720 if (skb_is_gso(skb)) {
721 struct skb_shared_info *sinfo = skb_shinfo(skb);
722
723 /* This is a hint as to how much should be linear. */
724 gso.hdr_len = skb_headlen(skb);
725 gso.gso_size = sinfo->gso_size;
726 if (sinfo->gso_type & SKB_GSO_TCPV4)
727 gso.gso_type = VIRTIO_NET_HDR_GSO_TCPV4;
728 else if (sinfo->gso_type & SKB_GSO_TCPV6)
729 gso.gso_type = VIRTIO_NET_HDR_GSO_TCPV6;
e36aa25a
SS
730 else if (sinfo->gso_type & SKB_GSO_UDP)
731 gso.gso_type = VIRTIO_NET_HDR_GSO_UDP;
f43798c2
RR
732 else
733 BUG();
734 if (sinfo->gso_type & SKB_GSO_TCP_ECN)
735 gso.gso_type |= VIRTIO_NET_HDR_GSO_ECN;
736 } else
737 gso.gso_type = VIRTIO_NET_HDR_GSO_NONE;
738
739 if (skb->ip_summed == CHECKSUM_PARTIAL) {
740 gso.flags = VIRTIO_NET_HDR_F_NEEDS_CSUM;
741 gso.csum_start = skb->csum_start - skb_headroom(skb);
742 gso.csum_offset = skb->csum_offset;
743 } /* else everything is zero */
744
43b39dcd
MT
745 if (unlikely(memcpy_toiovecend(iv, (void *)&gso, total,
746 sizeof(gso))))
f43798c2
RR
747 return -EFAULT;
748 total += sizeof(gso);
749 }
750
1da177e4
LT
751 len = min_t(int, skb->len, len);
752
43b39dcd 753 skb_copy_datagram_const_iovec(skb, 0, iv, total, len);
05c2828c 754 total += skb->len;
1da177e4 755
09f75cd7
JG
756 tun->dev->stats.tx_packets++;
757 tun->dev->stats.tx_bytes += len;
1da177e4
LT
758
759 return total;
760}
761
05c2828c
MT
762static ssize_t tun_do_read(struct tun_struct *tun,
763 struct kiocb *iocb, const struct iovec *iv,
764 ssize_t len, int noblock)
1da177e4 765{
1da177e4
LT
766 DECLARE_WAITQUEUE(wait, current);
767 struct sk_buff *skb;
05c2828c 768 ssize_t ret = 0;
1da177e4
LT
769
770 DBG(KERN_INFO "%s: tun_chr_read\n", tun->dev->name);
771
c40af84a 772 add_wait_queue(&tun->socket.wait, &wait);
1da177e4 773 while (len) {
1da177e4
LT
774 current->state = TASK_INTERRUPTIBLE;
775
776 /* Read frames from the queue */
89f56d1e 777 if (!(skb=skb_dequeue(&tun->socket.sk->sk_receive_queue))) {
05c2828c 778 if (noblock) {
1da177e4
LT
779 ret = -EAGAIN;
780 break;
781 }
782 if (signal_pending(current)) {
783 ret = -ERESTARTSYS;
784 break;
785 }
c70f1829
EB
786 if (tun->dev->reg_state != NETREG_REGISTERED) {
787 ret = -EIO;
788 break;
789 }
1da177e4
LT
790
791 /* Nothing to read, let's sleep */
792 schedule();
793 continue;
794 }
795 netif_wake_queue(tun->dev);
796
43b39dcd 797 ret = tun_put_user(tun, skb, iv, len);
f271b2cc
MK
798 kfree_skb(skb);
799 break;
1da177e4
LT
800 }
801
802 current->state = TASK_RUNNING;
c40af84a 803 remove_wait_queue(&tun->socket.wait, &wait);
1da177e4 804
05c2828c
MT
805 return ret;
806}
807
808static ssize_t tun_chr_aio_read(struct kiocb *iocb, const struct iovec *iv,
809 unsigned long count, loff_t pos)
810{
811 struct file *file = iocb->ki_filp;
812 struct tun_file *tfile = file->private_data;
813 struct tun_struct *tun = __tun_get(tfile);
814 ssize_t len, ret;
815
816 if (!tun)
817 return -EBADFD;
818 len = iov_length(iv, count);
819 if (len < 0) {
820 ret = -EINVAL;
821 goto out;
822 }
823
824 ret = tun_do_read(tun, iocb, iv, len, file->f_flags & O_NONBLOCK);
825 ret = min_t(ssize_t, ret, len);
631ab46b
EB
826out:
827 tun_put(tun);
1da177e4
LT
828 return ret;
829}
830
1da177e4
LT
831static void tun_setup(struct net_device *dev)
832{
833 struct tun_struct *tun = netdev_priv(dev);
834
1da177e4 835 tun->owner = -1;
8c644623 836 tun->group = -1;
1da177e4 837
1da177e4 838 dev->ethtool_ops = &tun_ethtool_ops;
9c3fea6a 839 dev->destructor = tun_free_netdev;
1da177e4
LT
840}
841
f019a7a5
EB
842/* Trivial set of netlink ops to allow deleting tun or tap
843 * device with netlink.
844 */
845static int tun_validate(struct nlattr *tb[], struct nlattr *data[])
846{
847 return -EINVAL;
848}
849
850static struct rtnl_link_ops tun_link_ops __read_mostly = {
851 .kind = DRV_NAME,
852 .priv_size = sizeof(struct tun_struct),
853 .setup = tun_setup,
854 .validate = tun_validate,
855};
856
33dccbb0
HX
857static void tun_sock_write_space(struct sock *sk)
858{
859 struct tun_struct *tun;
860
861 if (!sock_writeable(sk))
862 return;
863
33dccbb0
HX
864 if (!test_and_clear_bit(SOCK_ASYNC_NOSPACE, &sk->sk_socket->flags))
865 return;
866
c722c625 867 if (sk->sk_sleep && waitqueue_active(sk->sk_sleep))
05c2828c
MT
868 wake_up_interruptible_sync_poll(sk->sk_sleep, POLLOUT |
869 POLLWRNORM | POLLWRBAND);
c722c625 870
80924e5f 871 tun = tun_sk(sk)->tun;
33dccbb0
HX
872 kill_fasync(&tun->fasync, SIGIO, POLL_OUT);
873}
874
875static void tun_sock_destruct(struct sock *sk)
876{
80924e5f 877 free_netdev(tun_sk(sk)->tun->dev);
33dccbb0
HX
878}
879
05c2828c
MT
880static int tun_sendmsg(struct kiocb *iocb, struct socket *sock,
881 struct msghdr *m, size_t total_len)
882{
883 struct tun_struct *tun = container_of(sock, struct tun_struct, socket);
884 return tun_get_user(tun, m->msg_iov, total_len,
885 m->msg_flags & MSG_DONTWAIT);
886}
887
888static int tun_recvmsg(struct kiocb *iocb, struct socket *sock,
889 struct msghdr *m, size_t total_len,
890 int flags)
891{
892 struct tun_struct *tun = container_of(sock, struct tun_struct, socket);
893 int ret;
894 if (flags & ~(MSG_DONTWAIT|MSG_TRUNC))
895 return -EINVAL;
896 ret = tun_do_read(tun, iocb, m->msg_iov, total_len,
897 flags & MSG_DONTWAIT);
898 if (ret > total_len) {
899 m->msg_flags |= MSG_TRUNC;
900 ret = flags & MSG_TRUNC ? ret : total_len;
901 }
902 return ret;
903}
904
905/* Ops structure to mimic raw sockets with tun */
906static const struct proto_ops tun_socket_ops = {
907 .sendmsg = tun_sendmsg,
908 .recvmsg = tun_recvmsg,
909};
910
33dccbb0
HX
911static struct proto tun_proto = {
912 .name = "tun",
913 .owner = THIS_MODULE,
914 .obj_size = sizeof(struct tun_sock),
915};
f019a7a5 916
980c9e8c
DW
917static int tun_flags(struct tun_struct *tun)
918{
919 int flags = 0;
920
921 if (tun->flags & TUN_TUN_DEV)
922 flags |= IFF_TUN;
923 else
924 flags |= IFF_TAP;
925
926 if (tun->flags & TUN_NO_PI)
927 flags |= IFF_NO_PI;
928
929 if (tun->flags & TUN_ONE_QUEUE)
930 flags |= IFF_ONE_QUEUE;
931
932 if (tun->flags & TUN_VNET_HDR)
933 flags |= IFF_VNET_HDR;
934
935 return flags;
936}
937
938static ssize_t tun_show_flags(struct device *dev, struct device_attribute *attr,
939 char *buf)
940{
941 struct tun_struct *tun = netdev_priv(to_net_dev(dev));
942 return sprintf(buf, "0x%x\n", tun_flags(tun));
943}
944
945static ssize_t tun_show_owner(struct device *dev, struct device_attribute *attr,
946 char *buf)
947{
948 struct tun_struct *tun = netdev_priv(to_net_dev(dev));
949 return sprintf(buf, "%d\n", tun->owner);
950}
951
952static ssize_t tun_show_group(struct device *dev, struct device_attribute *attr,
953 char *buf)
954{
955 struct tun_struct *tun = netdev_priv(to_net_dev(dev));
956 return sprintf(buf, "%d\n", tun->group);
957}
958
959static DEVICE_ATTR(tun_flags, 0444, tun_show_flags, NULL);
960static DEVICE_ATTR(owner, 0444, tun_show_owner, NULL);
961static DEVICE_ATTR(group, 0444, tun_show_group, NULL);
962
d647a591 963static int tun_set_iff(struct net *net, struct file *file, struct ifreq *ifr)
1da177e4 964{
33dccbb0 965 struct sock *sk;
1da177e4
LT
966 struct tun_struct *tun;
967 struct net_device *dev;
968 int err;
969
74a3e5a7
EB
970 dev = __dev_get_by_name(net, ifr->ifr_name);
971 if (dev) {
2b980dbd
PM
972 const struct cred *cred = current_cred();
973
f85ba780
DW
974 if (ifr->ifr_flags & IFF_TUN_EXCL)
975 return -EBUSY;
74a3e5a7
EB
976 if ((ifr->ifr_flags & IFF_TUN) && dev->netdev_ops == &tun_netdev_ops)
977 tun = netdev_priv(dev);
978 else if ((ifr->ifr_flags & IFF_TAP) && dev->netdev_ops == &tap_netdev_ops)
979 tun = netdev_priv(dev);
980 else
981 return -EINVAL;
982
2b980dbd
PM
983 if (((tun->owner != -1 && cred->euid != tun->owner) ||
984 (tun->group != -1 && !in_egroup_p(tun->group))) &&
985 !capable(CAP_NET_ADMIN))
986 return -EPERM;
d7e9660a 987 err = security_tun_dev_attach(tun->socket.sk);
2b980dbd
PM
988 if (err < 0)
989 return err;
990
a7385ba2
EB
991 err = tun_attach(tun, file);
992 if (err < 0)
993 return err;
6aa20a22 994 }
1da177e4
LT
995 else {
996 char *name;
997 unsigned long flags = 0;
998
ca6bb5d7
DW
999 if (!capable(CAP_NET_ADMIN))
1000 return -EPERM;
2b980dbd
PM
1001 err = security_tun_dev_create();
1002 if (err < 0)
1003 return err;
ca6bb5d7 1004
1da177e4
LT
1005 /* Set dev type */
1006 if (ifr->ifr_flags & IFF_TUN) {
1007 /* TUN device */
1008 flags |= TUN_TUN_DEV;
1009 name = "tun%d";
1010 } else if (ifr->ifr_flags & IFF_TAP) {
1011 /* TAP device */
1012 flags |= TUN_TAP_DEV;
1013 name = "tap%d";
6aa20a22 1014 } else
36989b90 1015 return -EINVAL;
6aa20a22 1016
1da177e4
LT
1017 if (*ifr->ifr_name)
1018 name = ifr->ifr_name;
1019
1020 dev = alloc_netdev(sizeof(struct tun_struct), name,
1021 tun_setup);
1022 if (!dev)
1023 return -ENOMEM;
1024
fc54c658 1025 dev_net_set(dev, net);
f019a7a5 1026 dev->rtnl_link_ops = &tun_link_ops;
758e43b7 1027
1da177e4
LT
1028 tun = netdev_priv(dev);
1029 tun->dev = dev;
1030 tun->flags = flags;
f271b2cc 1031 tun->txflt.count = 0;
1da177e4 1032
33dccbb0
HX
1033 err = -ENOMEM;
1034 sk = sk_alloc(net, AF_UNSPEC, GFP_KERNEL, &tun_proto);
1035 if (!sk)
1036 goto err_free_dev;
1037
c40af84a 1038 init_waitqueue_head(&tun->socket.wait);
05c2828c 1039 tun->socket.ops = &tun_socket_ops;
33dccbb0
HX
1040 sock_init_data(&tun->socket, sk);
1041 sk->sk_write_space = tun_sock_write_space;
33dccbb0 1042 sk->sk_sndbuf = INT_MAX;
33dccbb0 1043
80924e5f 1044 tun_sk(sk)->tun = tun;
33dccbb0 1045
2b980dbd
PM
1046 security_tun_dev_post_create(sk);
1047
1da177e4
LT
1048 tun_net_init(dev);
1049
1050 if (strchr(dev->name, '%')) {
1051 err = dev_alloc_name(dev, dev->name);
1052 if (err < 0)
33dccbb0 1053 goto err_free_sk;
1da177e4
LT
1054 }
1055
1056 err = register_netdevice(tun->dev);
1057 if (err < 0)
9c3fea6a
HX
1058 goto err_free_sk;
1059
980c9e8c
DW
1060 if (device_create_file(&tun->dev->dev, &dev_attr_tun_flags) ||
1061 device_create_file(&tun->dev->dev, &dev_attr_owner) ||
1062 device_create_file(&tun->dev->dev, &dev_attr_group))
1063 printk(KERN_ERR "Failed to create tun sysfs files\n");
1064
9c3fea6a 1065 sk->sk_destruct = tun_sock_destruct;
a7385ba2
EB
1066
1067 err = tun_attach(tun, file);
1068 if (err < 0)
9c3fea6a 1069 goto failed;
1da177e4
LT
1070 }
1071
1072 DBG(KERN_INFO "%s: tun_set_iff\n", tun->dev->name);
1073
1074 if (ifr->ifr_flags & IFF_NO_PI)
1075 tun->flags |= TUN_NO_PI;
a26af1e0
NF
1076 else
1077 tun->flags &= ~TUN_NO_PI;
1da177e4
LT
1078
1079 if (ifr->ifr_flags & IFF_ONE_QUEUE)
1080 tun->flags |= TUN_ONE_QUEUE;
a26af1e0
NF
1081 else
1082 tun->flags &= ~TUN_ONE_QUEUE;
1da177e4 1083
f43798c2
RR
1084 if (ifr->ifr_flags & IFF_VNET_HDR)
1085 tun->flags |= TUN_VNET_HDR;
1086 else
1087 tun->flags &= ~TUN_VNET_HDR;
1088
e35259a9
MK
1089 /* Make sure persistent devices do not get stuck in
1090 * xoff state.
1091 */
1092 if (netif_running(tun->dev))
1093 netif_wake_queue(tun->dev);
1094
1da177e4
LT
1095 strcpy(ifr->ifr_name, tun->dev->name);
1096 return 0;
1097
33dccbb0
HX
1098 err_free_sk:
1099 sock_put(sk);
1da177e4
LT
1100 err_free_dev:
1101 free_netdev(dev);
1102 failed:
1103 return err;
1104}
1105
876bfd4d
HX
1106static int tun_get_iff(struct net *net, struct tun_struct *tun,
1107 struct ifreq *ifr)
e3b99556 1108{
e3b99556
MM
1109 DBG(KERN_INFO "%s: tun_get_iff\n", tun->dev->name);
1110
1111 strcpy(ifr->ifr_name, tun->dev->name);
1112
980c9e8c 1113 ifr->ifr_flags = tun_flags(tun);
e3b99556
MM
1114
1115 return 0;
1116}
1117
5228ddc9
RR
1118/* This is like a cut-down ethtool ops, except done via tun fd so no
1119 * privs required. */
1120static int set_offload(struct net_device *dev, unsigned long arg)
1121{
1122 unsigned int old_features, features;
1123
1124 old_features = dev->features;
1125 /* Unset features, set them as we chew on the arg. */
1126 features = (old_features & ~(NETIF_F_HW_CSUM|NETIF_F_SG|NETIF_F_FRAGLIST
e36aa25a
SS
1127 |NETIF_F_TSO_ECN|NETIF_F_TSO|NETIF_F_TSO6
1128 |NETIF_F_UFO));
5228ddc9
RR
1129
1130 if (arg & TUN_F_CSUM) {
1131 features |= NETIF_F_HW_CSUM|NETIF_F_SG|NETIF_F_FRAGLIST;
1132 arg &= ~TUN_F_CSUM;
1133
1134 if (arg & (TUN_F_TSO4|TUN_F_TSO6)) {
1135 if (arg & TUN_F_TSO_ECN) {
1136 features |= NETIF_F_TSO_ECN;
1137 arg &= ~TUN_F_TSO_ECN;
1138 }
1139 if (arg & TUN_F_TSO4)
1140 features |= NETIF_F_TSO;
1141 if (arg & TUN_F_TSO6)
1142 features |= NETIF_F_TSO6;
1143 arg &= ~(TUN_F_TSO4|TUN_F_TSO6);
1144 }
e36aa25a
SS
1145
1146 if (arg & TUN_F_UFO) {
1147 features |= NETIF_F_UFO;
1148 arg &= ~TUN_F_UFO;
1149 }
5228ddc9
RR
1150 }
1151
1152 /* This gives the user a way to test for new features in future by
1153 * trying to set them. */
1154 if (arg)
1155 return -EINVAL;
1156
1157 dev->features = features;
1158 if (old_features != dev->features)
1159 netdev_features_change(dev);
1160
1161 return 0;
1162}
1163
50857e2a
AB
1164static long __tun_chr_ioctl(struct file *file, unsigned int cmd,
1165 unsigned long arg, int ifreq_len)
1da177e4 1166{
36b50bab 1167 struct tun_file *tfile = file->private_data;
631ab46b 1168 struct tun_struct *tun;
1da177e4 1169 void __user* argp = (void __user*)arg;
99405162 1170 struct sock_fprog fprog;
1da177e4 1171 struct ifreq ifr;
33dccbb0 1172 int sndbuf;
f271b2cc 1173 int ret;
1da177e4
LT
1174
1175 if (cmd == TUNSETIFF || _IOC_TYPE(cmd) == 0x89)
50857e2a 1176 if (copy_from_user(&ifr, argp, ifreq_len))
1da177e4
LT
1177 return -EFAULT;
1178
631ab46b
EB
1179 if (cmd == TUNGETFEATURES) {
1180 /* Currently this just means: "what IFF flags are valid?".
1181 * This is needed because we never checked for invalid flags on
1182 * TUNSETIFF. */
1183 return put_user(IFF_TUN | IFF_TAP | IFF_NO_PI | IFF_ONE_QUEUE |
1184 IFF_VNET_HDR,
1185 (unsigned int __user*)argp);
1186 }
1187
876bfd4d
HX
1188 rtnl_lock();
1189
36b50bab 1190 tun = __tun_get(tfile);
1da177e4 1191 if (cmd == TUNSETIFF && !tun) {
1da177e4
LT
1192 ifr.ifr_name[IFNAMSIZ-1] = '\0';
1193
876bfd4d 1194 ret = tun_set_iff(tfile->net, file, &ifr);
1da177e4 1195
876bfd4d
HX
1196 if (ret)
1197 goto unlock;
1da177e4 1198
50857e2a 1199 if (copy_to_user(argp, &ifr, ifreq_len))
876bfd4d
HX
1200 ret = -EFAULT;
1201 goto unlock;
1da177e4
LT
1202 }
1203
876bfd4d 1204 ret = -EBADFD;
1da177e4 1205 if (!tun)
876bfd4d 1206 goto unlock;
1da177e4
LT
1207
1208 DBG(KERN_INFO "%s: tun_chr_ioctl cmd %d\n", tun->dev->name, cmd);
1209
631ab46b 1210 ret = 0;
1da177e4 1211 switch (cmd) {
e3b99556 1212 case TUNGETIFF:
876bfd4d 1213 ret = tun_get_iff(current->nsproxy->net_ns, tun, &ifr);
e3b99556 1214 if (ret)
631ab46b 1215 break;
e3b99556 1216
50857e2a 1217 if (copy_to_user(argp, &ifr, ifreq_len))
631ab46b 1218 ret = -EFAULT;
e3b99556
MM
1219 break;
1220
1da177e4
LT
1221 case TUNSETNOCSUM:
1222 /* Disable/Enable checksum */
1223 if (arg)
1224 tun->flags |= TUN_NOCHECKSUM;
1225 else
1226 tun->flags &= ~TUN_NOCHECKSUM;
1227
1228 DBG(KERN_INFO "%s: checksum %s\n",
1229 tun->dev->name, arg ? "disabled" : "enabled");
1230 break;
1231
1232 case TUNSETPERSIST:
1233 /* Disable/Enable persist mode */
1234 if (arg)
1235 tun->flags |= TUN_PERSIST;
1236 else
1237 tun->flags &= ~TUN_PERSIST;
1238
1239 DBG(KERN_INFO "%s: persist %s\n",
c6e991de 1240 tun->dev->name, arg ? "enabled" : "disabled");
1da177e4
LT
1241 break;
1242
1243 case TUNSETOWNER:
1244 /* Set owner of the device */
1245 tun->owner = (uid_t) arg;
1246
1247 DBG(KERN_INFO "%s: owner set to %d\n", tun->dev->name, tun->owner);
1248 break;
1249
8c644623
GG
1250 case TUNSETGROUP:
1251 /* Set group of the device */
1252 tun->group= (gid_t) arg;
1253
1254 DBG(KERN_INFO "%s: group set to %d\n", tun->dev->name, tun->group);
1255 break;
1256
ff4cc3ac
MK
1257 case TUNSETLINK:
1258 /* Only allow setting the type when the interface is down */
1259 if (tun->dev->flags & IFF_UP) {
1260 DBG(KERN_INFO "%s: Linktype set failed because interface is up\n",
1261 tun->dev->name);
48abfe05 1262 ret = -EBUSY;
ff4cc3ac
MK
1263 } else {
1264 tun->dev->type = (int) arg;
1265 DBG(KERN_INFO "%s: linktype set to %d\n", tun->dev->name, tun->dev->type);
48abfe05 1266 ret = 0;
ff4cc3ac 1267 }
631ab46b 1268 break;
ff4cc3ac 1269
1da177e4
LT
1270#ifdef TUN_DEBUG
1271 case TUNSETDEBUG:
1272 tun->debug = arg;
1273 break;
1274#endif
5228ddc9 1275 case TUNSETOFFLOAD:
5228ddc9 1276 ret = set_offload(tun->dev, arg);
631ab46b 1277 break;
5228ddc9 1278
f271b2cc
MK
1279 case TUNSETTXFILTER:
1280 /* Can be set only for TAPs */
631ab46b 1281 ret = -EINVAL;
f271b2cc 1282 if ((tun->flags & TUN_TYPE_MASK) != TUN_TAP_DEV)
631ab46b 1283 break;
c0e5a8c2 1284 ret = update_filter(&tun->txflt, (void __user *)arg);
631ab46b 1285 break;
1da177e4
LT
1286
1287 case SIOCGIFHWADDR:
f271b2cc
MK
1288 /* Get hw addres */
1289 memcpy(ifr.ifr_hwaddr.sa_data, tun->dev->dev_addr, ETH_ALEN);
1290 ifr.ifr_hwaddr.sa_family = tun->dev->type;
50857e2a 1291 if (copy_to_user(argp, &ifr, ifreq_len))
631ab46b
EB
1292 ret = -EFAULT;
1293 break;
1da177e4
LT
1294
1295 case SIOCSIFHWADDR:
f271b2cc 1296 /* Set hw address */
e174961c
JB
1297 DBG(KERN_DEBUG "%s: set hw address: %pM\n",
1298 tun->dev->name, ifr.ifr_hwaddr.sa_data);
40102371 1299
40102371 1300 ret = dev_set_mac_address(tun->dev, &ifr.ifr_hwaddr);
631ab46b 1301 break;
33dccbb0
HX
1302
1303 case TUNGETSNDBUF:
89f56d1e 1304 sndbuf = tun->socket.sk->sk_sndbuf;
33dccbb0
HX
1305 if (copy_to_user(argp, &sndbuf, sizeof(sndbuf)))
1306 ret = -EFAULT;
1307 break;
1308
1309 case TUNSETSNDBUF:
1310 if (copy_from_user(&sndbuf, argp, sizeof(sndbuf))) {
1311 ret = -EFAULT;
1312 break;
1313 }
1314
89f56d1e 1315 tun->socket.sk->sk_sndbuf = sndbuf;
33dccbb0
HX
1316 break;
1317
99405162
MT
1318 case TUNATTACHFILTER:
1319 /* Can be set only for TAPs */
1320 ret = -EINVAL;
1321 if ((tun->flags & TUN_TYPE_MASK) != TUN_TAP_DEV)
1322 break;
1323 ret = -EFAULT;
1324 if (copy_from_user(&fprog, argp, sizeof(fprog)))
1325 break;
1326
1327 ret = sk_attach_filter(&fprog, tun->socket.sk);
1328 break;
1329
1330 case TUNDETACHFILTER:
1331 /* Can be set only for TAPs */
1332 ret = -EINVAL;
1333 if ((tun->flags & TUN_TYPE_MASK) != TUN_TAP_DEV)
1334 break;
1335 ret = sk_detach_filter(tun->socket.sk);
1336 break;
1337
1da177e4 1338 default:
631ab46b
EB
1339 ret = -EINVAL;
1340 break;
1da177e4
LT
1341 };
1342
876bfd4d
HX
1343unlock:
1344 rtnl_unlock();
1345 if (tun)
1346 tun_put(tun);
631ab46b 1347 return ret;
1da177e4
LT
1348}
1349
50857e2a
AB
1350static long tun_chr_ioctl(struct file *file,
1351 unsigned int cmd, unsigned long arg)
1352{
1353 return __tun_chr_ioctl(file, cmd, arg, sizeof (struct ifreq));
1354}
1355
1356#ifdef CONFIG_COMPAT
1357static long tun_chr_compat_ioctl(struct file *file,
1358 unsigned int cmd, unsigned long arg)
1359{
1360 switch (cmd) {
1361 case TUNSETIFF:
1362 case TUNGETIFF:
1363 case TUNSETTXFILTER:
1364 case TUNGETSNDBUF:
1365 case TUNSETSNDBUF:
1366 case SIOCGIFHWADDR:
1367 case SIOCSIFHWADDR:
1368 arg = (unsigned long)compat_ptr(arg);
1369 break;
1370 default:
1371 arg = (compat_ulong_t)arg;
1372 break;
1373 }
1374
1375 /*
1376 * compat_ifreq is shorter than ifreq, so we must not access beyond
1377 * the end of that structure. All fields that are used in this
1378 * driver are compatible though, we don't need to convert the
1379 * contents.
1380 */
1381 return __tun_chr_ioctl(file, cmd, arg, sizeof(struct compat_ifreq));
1382}
1383#endif /* CONFIG_COMPAT */
1384
1da177e4
LT
1385static int tun_chr_fasync(int fd, struct file *file, int on)
1386{
631ab46b 1387 struct tun_struct *tun = tun_get(file);
1da177e4
LT
1388 int ret;
1389
1390 if (!tun)
1391 return -EBADFD;
1392
1393 DBG(KERN_INFO "%s: tun_chr_fasync %d\n", tun->dev->name, on);
1394
1395 if ((ret = fasync_helper(fd, file, on, &tun->fasync)) < 0)
9d319522 1396 goto out;
6aa20a22 1397
1da177e4 1398 if (on) {
609d7fa9 1399 ret = __f_setown(file, task_pid(current), PIDTYPE_PID, 0);
1da177e4 1400 if (ret)
9d319522 1401 goto out;
1da177e4 1402 tun->flags |= TUN_FASYNC;
6aa20a22 1403 } else
1da177e4 1404 tun->flags &= ~TUN_FASYNC;
9d319522
JC
1405 ret = 0;
1406out:
631ab46b 1407 tun_put(tun);
9d319522 1408 return ret;
1da177e4
LT
1409}
1410
1411static int tun_chr_open(struct inode *inode, struct file * file)
1412{
631ab46b 1413 struct tun_file *tfile;
deed49fb 1414
1da177e4 1415 DBG1(KERN_INFO "tunX: tun_chr_open\n");
631ab46b
EB
1416
1417 tfile = kmalloc(sizeof(*tfile), GFP_KERNEL);
1418 if (!tfile)
1419 return -ENOMEM;
c70f1829 1420 atomic_set(&tfile->count, 0);
631ab46b 1421 tfile->tun = NULL;
36b50bab 1422 tfile->net = get_net(current->nsproxy->net_ns);
631ab46b 1423 file->private_data = tfile;
1da177e4
LT
1424 return 0;
1425}
1426
1427static int tun_chr_close(struct inode *inode, struct file *file)
1428{
631ab46b 1429 struct tun_file *tfile = file->private_data;
f0a4d0e5 1430 struct tun_struct *tun;
1da177e4 1431
f0a4d0e5 1432 tun = __tun_get(tfile);
631ab46b 1433 if (tun) {
d23e4365
HX
1434 struct net_device *dev = tun->dev;
1435
1436 DBG(KERN_INFO "%s: tun_chr_close\n", dev->name);
1da177e4 1437
631ab46b 1438 __tun_detach(tun);
1da177e4 1439
3ad2f3fb 1440 /* If desirable, unregister the netdevice. */
d23e4365
HX
1441 if (!(tun->flags & TUN_PERSIST)) {
1442 rtnl_lock();
1443 if (dev->reg_state == NETREG_REGISTERED)
1444 unregister_netdevice(dev);
1445 rtnl_unlock();
1446 }
631ab46b 1447 }
1da177e4 1448
9c3fea6a
HX
1449 tun = tfile->tun;
1450 if (tun)
89f56d1e 1451 sock_put(tun->socket.sk);
9c3fea6a 1452
36b50bab 1453 put_net(tfile->net);
631ab46b 1454 kfree(tfile);
1da177e4
LT
1455
1456 return 0;
1457}
1458
d54b1fdb 1459static const struct file_operations tun_fops = {
6aa20a22 1460 .owner = THIS_MODULE,
1da177e4 1461 .llseek = no_llseek,
ee0b3e67
BP
1462 .read = do_sync_read,
1463 .aio_read = tun_chr_aio_read,
1464 .write = do_sync_write,
1465 .aio_write = tun_chr_aio_write,
1da177e4 1466 .poll = tun_chr_poll,
50857e2a
AB
1467 .unlocked_ioctl = tun_chr_ioctl,
1468#ifdef CONFIG_COMPAT
1469 .compat_ioctl = tun_chr_compat_ioctl,
1470#endif
1da177e4
LT
1471 .open = tun_chr_open,
1472 .release = tun_chr_close,
6aa20a22 1473 .fasync = tun_chr_fasync
1da177e4
LT
1474};
1475
1476static struct miscdevice tun_miscdev = {
1477 .minor = TUN_MINOR,
1478 .name = "tun",
e454cea2 1479 .nodename = "net/tun",
1da177e4 1480 .fops = &tun_fops,
1da177e4
LT
1481};
1482
1483/* ethtool interface */
1484
1485static int tun_get_settings(struct net_device *dev, struct ethtool_cmd *cmd)
1486{
1487 cmd->supported = 0;
1488 cmd->advertising = 0;
1489 cmd->speed = SPEED_10;
1490 cmd->duplex = DUPLEX_FULL;
1491 cmd->port = PORT_TP;
1492 cmd->phy_address = 0;
1493 cmd->transceiver = XCVR_INTERNAL;
1494 cmd->autoneg = AUTONEG_DISABLE;
1495 cmd->maxtxpkt = 0;
1496 cmd->maxrxpkt = 0;
1497 return 0;
1498}
1499
1500static void tun_get_drvinfo(struct net_device *dev, struct ethtool_drvinfo *info)
1501{
1502 struct tun_struct *tun = netdev_priv(dev);
1503
1504 strcpy(info->driver, DRV_NAME);
1505 strcpy(info->version, DRV_VERSION);
1506 strcpy(info->fw_version, "N/A");
1507
1508 switch (tun->flags & TUN_TYPE_MASK) {
1509 case TUN_TUN_DEV:
1510 strcpy(info->bus_info, "tun");
1511 break;
1512 case TUN_TAP_DEV:
1513 strcpy(info->bus_info, "tap");
1514 break;
1515 }
1516}
1517
1518static u32 tun_get_msglevel(struct net_device *dev)
1519{
1520#ifdef TUN_DEBUG
1521 struct tun_struct *tun = netdev_priv(dev);
1522 return tun->debug;
1523#else
1524 return -EOPNOTSUPP;
1525#endif
1526}
1527
1528static void tun_set_msglevel(struct net_device *dev, u32 value)
1529{
1530#ifdef TUN_DEBUG
1531 struct tun_struct *tun = netdev_priv(dev);
1532 tun->debug = value;
1533#endif
1534}
1535
1536static u32 tun_get_link(struct net_device *dev)
1537{
1538 struct tun_struct *tun = netdev_priv(dev);
631ab46b 1539 return !!tun->tfile;
1da177e4
LT
1540}
1541
1542static u32 tun_get_rx_csum(struct net_device *dev)
1543{
1544 struct tun_struct *tun = netdev_priv(dev);
1545 return (tun->flags & TUN_NOCHECKSUM) == 0;
1546}
1547
1548static int tun_set_rx_csum(struct net_device *dev, u32 data)
1549{
1550 struct tun_struct *tun = netdev_priv(dev);
1551 if (data)
1552 tun->flags &= ~TUN_NOCHECKSUM;
1553 else
1554 tun->flags |= TUN_NOCHECKSUM;
1555 return 0;
1556}
1557
7282d491 1558static const struct ethtool_ops tun_ethtool_ops = {
1da177e4
LT
1559 .get_settings = tun_get_settings,
1560 .get_drvinfo = tun_get_drvinfo,
1561 .get_msglevel = tun_get_msglevel,
1562 .set_msglevel = tun_set_msglevel,
1563 .get_link = tun_get_link,
1564 .get_rx_csum = tun_get_rx_csum,
1565 .set_rx_csum = tun_set_rx_csum
1566};
1567
79d17604 1568
1da177e4
LT
1569static int __init tun_init(void)
1570{
1571 int ret = 0;
1572
1573 printk(KERN_INFO "tun: %s, %s\n", DRV_DESCRIPTION, DRV_VERSION);
1574 printk(KERN_INFO "tun: %s\n", DRV_COPYRIGHT);
1575
f019a7a5 1576 ret = rtnl_link_register(&tun_link_ops);
79d17604 1577 if (ret) {
f019a7a5
EB
1578 printk(KERN_ERR "tun: Can't register link_ops\n");
1579 goto err_linkops;
79d17604
PE
1580 }
1581
1da177e4 1582 ret = misc_register(&tun_miscdev);
79d17604 1583 if (ret) {
1da177e4 1584 printk(KERN_ERR "tun: Can't register misc device %d\n", TUN_MINOR);
79d17604
PE
1585 goto err_misc;
1586 }
f019a7a5 1587 return 0;
79d17604 1588err_misc:
f019a7a5
EB
1589 rtnl_link_unregister(&tun_link_ops);
1590err_linkops:
1da177e4
LT
1591 return ret;
1592}
1593
1594static void tun_cleanup(void)
1595{
6aa20a22 1596 misc_deregister(&tun_miscdev);
f019a7a5 1597 rtnl_link_unregister(&tun_link_ops);
1da177e4
LT
1598}
1599
05c2828c
MT
1600/* Get an underlying socket object from tun file. Returns error unless file is
1601 * attached to a device. The returned object works like a packet socket, it
1602 * can be used for sock_sendmsg/sock_recvmsg. The caller is responsible for
1603 * holding a reference to the file for as long as the socket is in use. */
1604struct socket *tun_get_socket(struct file *file)
1605{
1606 struct tun_struct *tun;
1607 if (file->f_op != &tun_fops)
1608 return ERR_PTR(-EINVAL);
1609 tun = tun_get(file);
1610 if (!tun)
1611 return ERR_PTR(-EBADFD);
1612 tun_put(tun);
1613 return &tun->socket;
1614}
1615EXPORT_SYMBOL_GPL(tun_get_socket);
1616
1da177e4
LT
1617module_init(tun_init);
1618module_exit(tun_cleanup);
1619MODULE_DESCRIPTION(DRV_DESCRIPTION);
1620MODULE_AUTHOR(DRV_COPYRIGHT);
1621MODULE_LICENSE("GPL");
1622MODULE_ALIAS_MISCDEV(TUN_MINOR);