blob: 17923a508535f27b92bd797073f28405213ea054 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
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 *
Mike Kershawff4cc3a2005-09-01 17:40:05 -070021 * Mike Kershaw <dragorn@kismetwireless.net> 2005/08/14
22 * Add TUNSETLINK ioctl to set the link encapsulation
23 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070024 * Mark Smith <markzzzsmith@yahoo.com.au>
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -070025 * Use random_ether_addr() for tap MAC address.
Linus Torvalds1da177e2005-04-16 15:20:36 -070026 *
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
Linus Torvalds1da177e2005-04-16 15:20:36 -070042#include <linux/module.h>
43#include <linux/errno.h>
44#include <linux/kernel.h>
45#include <linux/major.h>
46#include <linux/slab.h>
Arnd Bergmannfd3e05b2008-05-20 19:16:24 +020047#include <linux/smp_lock.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070048#include <linux/poll.h>
49#include <linux/fcntl.h>
50#include <linux/init.h>
51#include <linux/skbuff.h>
52#include <linux/netdevice.h>
53#include <linux/etherdevice.h>
54#include <linux/miscdevice.h>
55#include <linux/ethtool.h>
56#include <linux/rtnetlink.h>
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>
Pavel Emelyanovd647a592008-04-16 00:41:16 -070062#include <linux/nsproxy.h>
Rusty Russellf43798c2008-07-03 03:48:02 -070063#include <linux/virtio_net.h>
Eric W. Biederman881d9662007-09-17 11:56:21 -070064#include <net/net_namespace.h>
Pavel Emelyanov79d17602008-04-16 00:40:46 -070065#include <net/netns/generic.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070066
67#include <asm/system.h>
68#include <asm/uaccess.h>
69
Rusty Russell14daa022008-04-12 18:48:58 -070070/* Uncomment to enable debugging */
71/* #define TUN_DEBUG 1 */
72
Linus Torvalds1da177e2005-04-16 15:20:36 -070073#ifdef TUN_DEBUG
74static int debug;
Rusty Russell14daa022008-04-12 18:48:58 -070075
76#define DBG if(tun->debug)printk
77#define DBG1 if(debug==2)printk
78#else
79#define DBG( a... )
80#define DBG1( a... )
Linus Torvalds1da177e2005-04-16 15:20:36 -070081#endif
82
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -070083#define FLT_EXACT_COUNT 8
84struct tap_filter {
85 unsigned int count; /* Number of addrs. Zero means disabled */
86 u32 mask[2]; /* Mask of the hashed addrs */
87 unsigned char addr[FLT_EXACT_COUNT][ETH_ALEN];
88};
89
Rusty Russell14daa022008-04-12 18:48:58 -070090struct tun_struct {
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -070091 unsigned int flags;
Rusty Russell14daa022008-04-12 18:48:58 -070092 int attached;
93 uid_t owner;
94 gid_t group;
95
96 wait_queue_head_t read_wait;
97 struct sk_buff_head readq;
98
99 struct net_device *dev;
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -0700100 struct fasync_struct *fasync;
Rusty Russell14daa022008-04-12 18:48:58 -0700101
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -0700102 struct tap_filter txflt;
Rusty Russell14daa022008-04-12 18:48:58 -0700103
104#ifdef TUN_DEBUG
105 int debug;
106#endif
107};
108
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -0700109/* TAP filterting */
110static void addr_hash_set(u32 *mask, const u8 *addr)
111{
112 int n = ether_crc(ETH_ALEN, addr) >> 26;
113 mask[n >> 5] |= (1 << (n & 31));
114}
115
116static unsigned int addr_hash_test(const u32 *mask, const u8 *addr)
117{
118 int n = ether_crc(ETH_ALEN, addr) >> 26;
119 return mask[n >> 5] & (1 << (n & 31));
120}
121
122static int update_filter(struct tap_filter *filter, void __user *arg)
123{
124 struct { u8 u[ETH_ALEN]; } *addr;
125 struct tun_filter uf;
126 int err, alen, n, nexact;
127
128 if (copy_from_user(&uf, arg, sizeof(uf)))
129 return -EFAULT;
130
131 if (!uf.count) {
132 /* Disabled */
133 filter->count = 0;
134 return 0;
135 }
136
137 alen = ETH_ALEN * uf.count;
138 addr = kmalloc(alen, GFP_KERNEL);
139 if (!addr)
140 return -ENOMEM;
141
142 if (copy_from_user(addr, arg + sizeof(uf), alen)) {
143 err = -EFAULT;
144 goto done;
145 }
146
147 /* The filter is updated without holding any locks. Which is
148 * perfectly safe. We disable it first and in the worst
149 * case we'll accept a few undesired packets. */
150 filter->count = 0;
151 wmb();
152
153 /* Use first set of addresses as an exact filter */
154 for (n = 0; n < uf.count && n < FLT_EXACT_COUNT; n++)
155 memcpy(filter->addr[n], addr[n].u, ETH_ALEN);
156
157 nexact = n;
158
159 /* The rest is hashed */
160 memset(filter->mask, 0, sizeof(filter->mask));
161 for (; n < uf.count; n++)
162 addr_hash_set(filter->mask, addr[n].u);
163
164 /* For ALLMULTI just set the mask to all ones.
165 * This overrides the mask populated above. */
166 if ((uf.flags & TUN_FLT_ALLMULTI))
167 memset(filter->mask, ~0, sizeof(filter->mask));
168
169 /* Now enable the filter */
170 wmb();
171 filter->count = nexact;
172
173 /* Return the number of exact filters */
174 err = nexact;
175
176done:
177 kfree(addr);
178 return err;
179}
180
181/* Returns: 0 - drop, !=0 - accept */
182static int run_filter(struct tap_filter *filter, const struct sk_buff *skb)
183{
184 /* Cannot use eth_hdr(skb) here because skb_mac_hdr() is incorrect
185 * at this point. */
186 struct ethhdr *eh = (struct ethhdr *) skb->data;
187 int i;
188
189 /* Exact match */
190 for (i = 0; i < filter->count; i++)
191 if (!compare_ether_addr(eh->h_dest, filter->addr[i]))
192 return 1;
193
194 /* Inexact match (multicast only) */
195 if (is_multicast_ether_addr(eh->h_dest))
196 return addr_hash_test(filter->mask, eh->h_dest);
197
198 return 0;
199}
200
201/*
202 * Checks whether the packet is accepted or not.
203 * Returns: 0 - drop, !=0 - accept
204 */
205static int check_filter(struct tap_filter *filter, const struct sk_buff *skb)
206{
207 if (!filter->count)
208 return 1;
209
210 return run_filter(filter, skb);
211}
212
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213/* Network device part of the driver */
214
Jeff Garzik7282d492006-09-13 14:30:00 -0400215static const struct ethtool_ops tun_ethtool_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216
217/* Net device open. */
218static int tun_net_open(struct net_device *dev)
219{
220 netif_start_queue(dev);
221 return 0;
222}
223
224/* Net device close. */
225static int tun_net_close(struct net_device *dev)
226{
227 netif_stop_queue(dev);
228 return 0;
229}
230
231/* Net device start xmit */
232static int tun_net_xmit(struct sk_buff *skb, struct net_device *dev)
233{
234 struct tun_struct *tun = netdev_priv(dev);
235
236 DBG(KERN_INFO "%s: tun_net_xmit %d\n", tun->dev->name, skb->len);
237
238 /* Drop packet if interface is not attached */
239 if (!tun->attached)
240 goto drop;
241
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -0700242 /* Drop if the filter does not like it.
243 * This is a noop if the filter is disabled.
244 * Filter can be enabled only for the TAP devices. */
245 if (!check_filter(&tun->txflt, skb))
246 goto drop;
247
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 if (skb_queue_len(&tun->readq) >= dev->tx_queue_len) {
249 if (!(tun->flags & TUN_ONE_QUEUE)) {
250 /* Normal queueing mode. */
251 /* Packet scheduler handles dropping of further packets. */
252 netif_stop_queue(dev);
253
254 /* We won't see all dropped packets individually, so overrun
255 * error is more appropriate. */
Jeff Garzik09f75cd2007-10-03 17:41:50 -0700256 dev->stats.tx_fifo_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257 } else {
258 /* Single queue mode.
259 * Driver handles dropping of all packets itself. */
260 goto drop;
261 }
262 }
263
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -0700264 /* Enqueue packet */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 skb_queue_tail(&tun->readq, skb);
266 dev->trans_start = jiffies;
267
268 /* Notify and wake up reader process */
269 if (tun->flags & TUN_FASYNC)
270 kill_fasync(&tun->fasync, SIGIO, POLL_IN);
271 wake_up_interruptible(&tun->read_wait);
272 return 0;
273
274drop:
Jeff Garzik09f75cd2007-10-03 17:41:50 -0700275 dev->stats.tx_dropped++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276 kfree_skb(skb);
277 return 0;
278}
279
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -0700280static void tun_net_mclist(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281{
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -0700282 /*
283 * This callback is supposed to deal with mc filter in
284 * _rx_ path and has nothing to do with the _tx_ path.
285 * In rx path we always accept everything userspace gives us.
286 */
287 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288}
289
Ed Swierk4885a502007-09-16 12:21:38 -0700290#define MIN_MTU 68
291#define MAX_MTU 65535
292
293static int
294tun_net_change_mtu(struct net_device *dev, int new_mtu)
295{
296 if (new_mtu < MIN_MTU || new_mtu + dev->hard_header_len > MAX_MTU)
297 return -EINVAL;
298 dev->mtu = new_mtu;
299 return 0;
300}
301
Stephen Hemminger758e43b2008-11-19 22:10:37 -0800302static const struct net_device_ops tun_netdev_ops = {
303 .ndo_open = tun_net_open,
304 .ndo_stop = tun_net_close,
Stephen Hemminger00829822008-11-20 20:14:53 -0800305 .ndo_start_xmit = tun_net_xmit,
Stephen Hemminger758e43b2008-11-19 22:10:37 -0800306 .ndo_change_mtu = tun_net_change_mtu,
Stephen Hemminger758e43b2008-11-19 22:10:37 -0800307};
308
309static const struct net_device_ops tap_netdev_ops = {
310 .ndo_open = tun_net_open,
311 .ndo_stop = tun_net_close,
Stephen Hemminger00829822008-11-20 20:14:53 -0800312 .ndo_start_xmit = tun_net_xmit,
Stephen Hemminger758e43b2008-11-19 22:10:37 -0800313 .ndo_change_mtu = tun_net_change_mtu,
314 .ndo_set_multicast_list = tun_net_mclist,
315 .ndo_set_mac_address = eth_mac_addr,
316 .ndo_validate_addr = eth_validate_addr,
317};
318
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319/* Initialize net device. */
320static void tun_net_init(struct net_device *dev)
321{
322 struct tun_struct *tun = netdev_priv(dev);
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400323
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 switch (tun->flags & TUN_TYPE_MASK) {
325 case TUN_TUN_DEV:
Stephen Hemminger758e43b2008-11-19 22:10:37 -0800326 dev->netdev_ops = &tun_netdev_ops;
327
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328 /* Point-to-Point TUN Device */
329 dev->hard_header_len = 0;
330 dev->addr_len = 0;
331 dev->mtu = 1500;
332
333 /* Zero header length */
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400334 dev->type = ARPHRD_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335 dev->flags = IFF_POINTOPOINT | IFF_NOARP | IFF_MULTICAST;
336 dev->tx_queue_len = TUN_READQ_SIZE; /* We prefer our own queue length */
337 break;
338
339 case TUN_TAP_DEV:
Kusanagi Kouichi7a0a9602008-12-29 18:23:28 -0800340 dev->netdev_ops = &tap_netdev_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 /* Ethernet TAP Device */
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -0700342 ether_setup(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -0700344 random_ether_addr(dev->dev_addr);
Brian Braunstein36226a82007-04-26 01:00:55 -0700345
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 dev->tx_queue_len = TUN_READQ_SIZE; /* We prefer our own queue length */
347 break;
348 }
349}
350
351/* Character device part */
352
353/* Poll */
354static unsigned int tun_chr_poll(struct file *file, poll_table * wait)
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400355{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356 struct tun_struct *tun = file->private_data;
357 unsigned int mask = POLLOUT | POLLWRNORM;
358
359 if (!tun)
360 return -EBADFD;
361
362 DBG(KERN_INFO "%s: tun_chr_poll\n", tun->dev->name);
363
364 poll_wait(file, &tun->read_wait, wait);
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400365
David S. Millerb03efcf2005-07-08 14:57:23 -0700366 if (!skb_queue_empty(&tun->readq))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 mask |= POLLIN | POLLRDNORM;
368
369 return mask;
370}
371
Rusty Russellf42157c2008-08-15 15:15:10 -0700372/* prepad is the amount to reserve at front. len is length after that.
373 * linear is a hint as to how much to copy (usually headers). */
374static struct sk_buff *tun_alloc_skb(size_t prepad, size_t len, size_t linear,
375 gfp_t gfp)
376{
377 struct sk_buff *skb;
378 unsigned int i;
379
380 skb = alloc_skb(prepad + len, gfp|__GFP_NOWARN);
381 if (skb) {
382 skb_reserve(skb, prepad);
383 skb_put(skb, len);
384 return skb;
385 }
386
387 /* Under a page? Don't bother with paged skb. */
388 if (prepad + len < PAGE_SIZE)
389 return NULL;
390
391 /* Start with a normal skb, and add pages. */
392 skb = alloc_skb(prepad + linear, gfp);
393 if (!skb)
394 return NULL;
395
396 skb_reserve(skb, prepad);
397 skb_put(skb, linear);
398
399 len -= linear;
400
401 for (i = 0; i < MAX_SKB_FRAGS; i++) {
402 skb_frag_t *f = &skb_shinfo(skb)->frags[i];
403
404 f->page = alloc_page(gfp|__GFP_ZERO);
405 if (!f->page)
406 break;
407
408 f->page_offset = 0;
409 f->size = PAGE_SIZE;
410
411 skb->data_len += PAGE_SIZE;
412 skb->len += PAGE_SIZE;
413 skb->truesize += PAGE_SIZE;
414 skb_shinfo(skb)->nr_frags++;
415
416 if (len < PAGE_SIZE) {
417 len = 0;
418 break;
419 }
420 len -= PAGE_SIZE;
421 }
422
423 /* Too large, or alloc fail? */
424 if (unlikely(len)) {
425 kfree_skb(skb);
426 skb = NULL;
427 }
428
429 return skb;
430}
431
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432/* Get packet from user space buffer */
433static __inline__ ssize_t tun_get_user(struct tun_struct *tun, struct iovec *iv, size_t count)
434{
435 struct tun_pi pi = { 0, __constant_htons(ETH_P_IP) };
436 struct sk_buff *skb;
437 size_t len = count, align = 0;
Rusty Russellf43798c2008-07-03 03:48:02 -0700438 struct virtio_net_hdr gso = { 0 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439
440 if (!(tun->flags & TUN_NO_PI)) {
441 if ((len -= sizeof(pi)) > count)
442 return -EINVAL;
443
444 if(memcpy_fromiovec((void *)&pi, iv, sizeof(pi)))
445 return -EFAULT;
446 }
447
Rusty Russellf43798c2008-07-03 03:48:02 -0700448 if (tun->flags & TUN_VNET_HDR) {
449 if ((len -= sizeof(gso)) > count)
450 return -EINVAL;
451
452 if (memcpy_fromiovec((void *)&gso, iv, sizeof(gso)))
453 return -EFAULT;
454
455 if (gso.hdr_len > len)
456 return -EINVAL;
457 }
458
Rusty Russelle01bf1c2008-04-12 18:49:30 -0700459 if ((tun->flags & TUN_TYPE_MASK) == TUN_TAP_DEV) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 align = NET_IP_ALIGN;
Rusty Russelle01bf1c2008-04-12 18:49:30 -0700461 if (unlikely(len < ETH_HLEN))
462 return -EINVAL;
463 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400464
Rusty Russellf42157c2008-08-15 15:15:10 -0700465 if (!(skb = tun_alloc_skb(align, len, gso.hdr_len, GFP_KERNEL))) {
Jeff Garzik09f75cd2007-10-03 17:41:50 -0700466 tun->dev->stats.rx_dropped++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467 return -ENOMEM;
468 }
469
Rusty Russellf42157c2008-08-15 15:15:10 -0700470 if (skb_copy_datagram_from_iovec(skb, 0, iv, len)) {
Jeff Garzik09f75cd2007-10-03 17:41:50 -0700471 tun->dev->stats.rx_dropped++;
Dave Jones8f227572006-03-11 18:49:13 -0800472 kfree_skb(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473 return -EFAULT;
Dave Jones8f227572006-03-11 18:49:13 -0800474 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475
Rusty Russellf43798c2008-07-03 03:48:02 -0700476 if (gso.flags & VIRTIO_NET_HDR_F_NEEDS_CSUM) {
477 if (!skb_partial_csum_set(skb, gso.csum_start,
478 gso.csum_offset)) {
479 tun->dev->stats.rx_frame_errors++;
480 kfree_skb(skb);
481 return -EINVAL;
482 }
483 } else if (tun->flags & TUN_NOCHECKSUM)
484 skb->ip_summed = CHECKSUM_UNNECESSARY;
485
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486 switch (tun->flags & TUN_TYPE_MASK) {
487 case TUN_TUN_DEV:
Ang Way Chuangf09f7ee2008-06-17 21:10:33 -0700488 if (tun->flags & TUN_NO_PI) {
489 switch (skb->data[0] & 0xf0) {
490 case 0x40:
491 pi.proto = htons(ETH_P_IP);
492 break;
493 case 0x60:
494 pi.proto = htons(ETH_P_IPV6);
495 break;
496 default:
497 tun->dev->stats.rx_dropped++;
498 kfree_skb(skb);
499 return -EINVAL;
500 }
501 }
502
Arnaldo Carvalho de Melo459a98e2007-03-19 15:30:44 -0700503 skb_reset_mac_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504 skb->protocol = pi.proto;
Arnaldo Carvalho de Melo4c13eb62007-04-25 17:40:23 -0700505 skb->dev = tun->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506 break;
507 case TUN_TAP_DEV:
508 skb->protocol = eth_type_trans(skb, tun->dev);
509 break;
510 };
511
Rusty Russellf43798c2008-07-03 03:48:02 -0700512 if (gso.gso_type != VIRTIO_NET_HDR_GSO_NONE) {
513 pr_debug("GSO!\n");
514 switch (gso.gso_type & ~VIRTIO_NET_HDR_GSO_ECN) {
515 case VIRTIO_NET_HDR_GSO_TCPV4:
516 skb_shinfo(skb)->gso_type = SKB_GSO_TCPV4;
517 break;
518 case VIRTIO_NET_HDR_GSO_TCPV6:
519 skb_shinfo(skb)->gso_type = SKB_GSO_TCPV6;
520 break;
521 default:
522 tun->dev->stats.rx_frame_errors++;
523 kfree_skb(skb);
524 return -EINVAL;
525 }
526
527 if (gso.gso_type & VIRTIO_NET_HDR_GSO_ECN)
528 skb_shinfo(skb)->gso_type |= SKB_GSO_TCP_ECN;
529
530 skb_shinfo(skb)->gso_size = gso.gso_size;
531 if (skb_shinfo(skb)->gso_size == 0) {
532 tun->dev->stats.rx_frame_errors++;
533 kfree_skb(skb);
534 return -EINVAL;
535 }
536
537 /* Header must be checked, and gso_segs computed. */
538 skb_shinfo(skb)->gso_type |= SKB_GSO_DODGY;
539 skb_shinfo(skb)->gso_segs = 0;
540 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400541
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542 netif_rx_ni(skb);
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400543
Jeff Garzik09f75cd2007-10-03 17:41:50 -0700544 tun->dev->stats.rx_packets++;
545 tun->dev->stats.rx_bytes += len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546
547 return count;
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400548}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549
Badari Pulavartyee0b3e62006-09-30 23:28:47 -0700550static ssize_t tun_chr_aio_write(struct kiocb *iocb, const struct iovec *iv,
551 unsigned long count, loff_t pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552{
Badari Pulavartyee0b3e62006-09-30 23:28:47 -0700553 struct tun_struct *tun = iocb->ki_filp->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554
555 if (!tun)
556 return -EBADFD;
557
558 DBG(KERN_INFO "%s: tun_chr_write %ld\n", tun->dev->name, count);
559
Akinobu Mita52427c92007-11-19 22:46:51 -0800560 return tun_get_user(tun, (struct iovec *) iv, iov_length(iv, count));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561}
562
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563/* Put packet to the user space buffer */
564static __inline__ ssize_t tun_put_user(struct tun_struct *tun,
565 struct sk_buff *skb,
566 struct iovec *iv, int len)
567{
568 struct tun_pi pi = { 0, skb->protocol };
569 ssize_t total = 0;
570
571 if (!(tun->flags & TUN_NO_PI)) {
572 if ((len -= sizeof(pi)) < 0)
573 return -EINVAL;
574
575 if (len < skb->len) {
576 /* Packet will be striped */
577 pi.flags |= TUN_PKT_STRIP;
578 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400579
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580 if (memcpy_toiovec(iv, (void *) &pi, sizeof(pi)))
581 return -EFAULT;
582 total += sizeof(pi);
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400583 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584
Rusty Russellf43798c2008-07-03 03:48:02 -0700585 if (tun->flags & TUN_VNET_HDR) {
586 struct virtio_net_hdr gso = { 0 }; /* no info leak */
587 if ((len -= sizeof(gso)) < 0)
588 return -EINVAL;
589
590 if (skb_is_gso(skb)) {
591 struct skb_shared_info *sinfo = skb_shinfo(skb);
592
593 /* This is a hint as to how much should be linear. */
594 gso.hdr_len = skb_headlen(skb);
595 gso.gso_size = sinfo->gso_size;
596 if (sinfo->gso_type & SKB_GSO_TCPV4)
597 gso.gso_type = VIRTIO_NET_HDR_GSO_TCPV4;
598 else if (sinfo->gso_type & SKB_GSO_TCPV6)
599 gso.gso_type = VIRTIO_NET_HDR_GSO_TCPV6;
600 else
601 BUG();
602 if (sinfo->gso_type & SKB_GSO_TCP_ECN)
603 gso.gso_type |= VIRTIO_NET_HDR_GSO_ECN;
604 } else
605 gso.gso_type = VIRTIO_NET_HDR_GSO_NONE;
606
607 if (skb->ip_summed == CHECKSUM_PARTIAL) {
608 gso.flags = VIRTIO_NET_HDR_F_NEEDS_CSUM;
609 gso.csum_start = skb->csum_start - skb_headroom(skb);
610 gso.csum_offset = skb->csum_offset;
611 } /* else everything is zero */
612
613 if (unlikely(memcpy_toiovec(iv, (void *)&gso, sizeof(gso))))
614 return -EFAULT;
615 total += sizeof(gso);
616 }
617
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618 len = min_t(int, skb->len, len);
619
620 skb_copy_datagram_iovec(skb, 0, iv, len);
621 total += len;
622
Jeff Garzik09f75cd2007-10-03 17:41:50 -0700623 tun->dev->stats.tx_packets++;
624 tun->dev->stats.tx_bytes += len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625
626 return total;
627}
628
Badari Pulavartyee0b3e62006-09-30 23:28:47 -0700629static ssize_t tun_chr_aio_read(struct kiocb *iocb, const struct iovec *iv,
630 unsigned long count, loff_t pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631{
Badari Pulavartyee0b3e62006-09-30 23:28:47 -0700632 struct file *file = iocb->ki_filp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633 struct tun_struct *tun = file->private_data;
634 DECLARE_WAITQUEUE(wait, current);
635 struct sk_buff *skb;
636 ssize_t len, ret = 0;
637
638 if (!tun)
639 return -EBADFD;
640
641 DBG(KERN_INFO "%s: tun_chr_read\n", tun->dev->name);
642
Akinobu Mita52427c92007-11-19 22:46:51 -0800643 len = iov_length(iv, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644 if (len < 0)
645 return -EINVAL;
646
647 add_wait_queue(&tun->read_wait, &wait);
648 while (len) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649 current->state = TASK_INTERRUPTIBLE;
650
651 /* Read frames from the queue */
652 if (!(skb=skb_dequeue(&tun->readq))) {
653 if (file->f_flags & O_NONBLOCK) {
654 ret = -EAGAIN;
655 break;
656 }
657 if (signal_pending(current)) {
658 ret = -ERESTARTSYS;
659 break;
660 }
661
662 /* Nothing to read, let's sleep */
663 schedule();
664 continue;
665 }
666 netif_wake_queue(tun->dev);
667
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -0700668 ret = tun_put_user(tun, skb, (struct iovec *) iv, len);
669 kfree_skb(skb);
670 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671 }
672
673 current->state = TASK_RUNNING;
674 remove_wait_queue(&tun->read_wait, &wait);
675
676 return ret;
677}
678
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679static void tun_setup(struct net_device *dev)
680{
681 struct tun_struct *tun = netdev_priv(dev);
682
683 skb_queue_head_init(&tun->readq);
684 init_waitqueue_head(&tun->read_wait);
685
686 tun->owner = -1;
Guido Guenther8c644622007-07-02 22:50:25 -0700687 tun->group = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689 dev->ethtool_ops = &tun_ethtool_ops;
690 dev->destructor = free_netdev;
Pavel Emelyanovfc54c652008-04-16 00:41:53 -0700691 dev->features |= NETIF_F_NETNS_LOCAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692}
693
Pavel Emelyanovd647a592008-04-16 00:41:16 -0700694static int tun_set_iff(struct net *net, struct file *file, struct ifreq *ifr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695{
696 struct tun_struct *tun;
697 struct net_device *dev;
David Howells86a264a2008-11-14 10:39:18 +1100698 const struct cred *cred = current_cred();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699 int err;
700
Eric W. Biederman74a3e5a2009-01-20 10:56:20 +0000701 dev = __dev_get_by_name(net, ifr->ifr_name);
702 if (dev) {
703 if ((ifr->ifr_flags & IFF_TUN) && dev->netdev_ops == &tun_netdev_ops)
704 tun = netdev_priv(dev);
705 else if ((ifr->ifr_flags & IFF_TAP) && dev->netdev_ops == &tap_netdev_ops)
706 tun = netdev_priv(dev);
707 else
708 return -EINVAL;
709
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710 if (tun->attached)
711 return -EBUSY;
712
713 /* Check permissions */
Guido Guenther8c644622007-07-02 22:50:25 -0700714 if (((tun->owner != -1 &&
David Howells86a264a2008-11-14 10:39:18 +1100715 cred->euid != tun->owner) ||
Guido Guenther8c644622007-07-02 22:50:25 -0700716 (tun->group != -1 &&
David Howells86a264a2008-11-14 10:39:18 +1100717 cred->egid != tun->group)) &&
718 !capable(CAP_NET_ADMIN)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719 return -EPERM;
David Howells86a264a2008-11-14 10:39:18 +1100720 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400721 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722 else {
723 char *name;
724 unsigned long flags = 0;
725
726 err = -EINVAL;
727
David Woodhouseca6bb5d2006-06-22 16:07:52 -0700728 if (!capable(CAP_NET_ADMIN))
729 return -EPERM;
730
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731 /* Set dev type */
732 if (ifr->ifr_flags & IFF_TUN) {
733 /* TUN device */
734 flags |= TUN_TUN_DEV;
735 name = "tun%d";
736 } else if (ifr->ifr_flags & IFF_TAP) {
737 /* TAP device */
738 flags |= TUN_TAP_DEV;
739 name = "tap%d";
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400740 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741 goto failed;
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400742
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743 if (*ifr->ifr_name)
744 name = ifr->ifr_name;
745
746 dev = alloc_netdev(sizeof(struct tun_struct), name,
747 tun_setup);
748 if (!dev)
749 return -ENOMEM;
750
Pavel Emelyanovfc54c652008-04-16 00:41:53 -0700751 dev_net_set(dev, net);
Stephen Hemminger758e43b2008-11-19 22:10:37 -0800752
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753 tun = netdev_priv(dev);
754 tun->dev = dev;
755 tun->flags = flags;
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -0700756 tun->txflt.count = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757
758 tun_net_init(dev);
759
760 if (strchr(dev->name, '%')) {
761 err = dev_alloc_name(dev, dev->name);
762 if (err < 0)
763 goto err_free_dev;
764 }
765
766 err = register_netdevice(tun->dev);
767 if (err < 0)
768 goto err_free_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769 }
770
771 DBG(KERN_INFO "%s: tun_set_iff\n", tun->dev->name);
772
773 if (ifr->ifr_flags & IFF_NO_PI)
774 tun->flags |= TUN_NO_PI;
Nathaniel Filardoa26af1e2008-02-05 03:05:07 -0800775 else
776 tun->flags &= ~TUN_NO_PI;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777
778 if (ifr->ifr_flags & IFF_ONE_QUEUE)
779 tun->flags |= TUN_ONE_QUEUE;
Nathaniel Filardoa26af1e2008-02-05 03:05:07 -0800780 else
781 tun->flags &= ~TUN_ONE_QUEUE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782
Rusty Russellf43798c2008-07-03 03:48:02 -0700783 if (ifr->ifr_flags & IFF_VNET_HDR)
784 tun->flags |= TUN_VNET_HDR;
785 else
786 tun->flags &= ~TUN_VNET_HDR;
787
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788 file->private_data = tun;
789 tun->attached = 1;
Pavel Emelyanovfc54c652008-04-16 00:41:53 -0700790 get_net(dev_net(tun->dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791
Max Krasnyanskye35259a2008-07-10 16:59:11 -0700792 /* Make sure persistent devices do not get stuck in
793 * xoff state.
794 */
795 if (netif_running(tun->dev))
796 netif_wake_queue(tun->dev);
797
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798 strcpy(ifr->ifr_name, tun->dev->name);
799 return 0;
800
801 err_free_dev:
802 free_netdev(dev);
803 failed:
804 return err;
805}
806
Mark McLoughline3b99552008-08-15 15:09:56 -0700807static int tun_get_iff(struct net *net, struct file *file, struct ifreq *ifr)
808{
809 struct tun_struct *tun = file->private_data;
810
811 if (!tun)
812 return -EBADFD;
813
814 DBG(KERN_INFO "%s: tun_get_iff\n", tun->dev->name);
815
816 strcpy(ifr->ifr_name, tun->dev->name);
817
818 ifr->ifr_flags = 0;
819
820 if (ifr->ifr_flags & TUN_TUN_DEV)
821 ifr->ifr_flags |= IFF_TUN;
822 else
823 ifr->ifr_flags |= IFF_TAP;
824
825 if (tun->flags & TUN_NO_PI)
826 ifr->ifr_flags |= IFF_NO_PI;
827
828 if (tun->flags & TUN_ONE_QUEUE)
829 ifr->ifr_flags |= IFF_ONE_QUEUE;
830
831 if (tun->flags & TUN_VNET_HDR)
832 ifr->ifr_flags |= IFF_VNET_HDR;
833
834 return 0;
835}
836
Rusty Russell5228ddc2008-07-03 03:46:16 -0700837/* This is like a cut-down ethtool ops, except done via tun fd so no
838 * privs required. */
839static int set_offload(struct net_device *dev, unsigned long arg)
840{
841 unsigned int old_features, features;
842
843 old_features = dev->features;
844 /* Unset features, set them as we chew on the arg. */
845 features = (old_features & ~(NETIF_F_HW_CSUM|NETIF_F_SG|NETIF_F_FRAGLIST
846 |NETIF_F_TSO_ECN|NETIF_F_TSO|NETIF_F_TSO6));
847
848 if (arg & TUN_F_CSUM) {
849 features |= NETIF_F_HW_CSUM|NETIF_F_SG|NETIF_F_FRAGLIST;
850 arg &= ~TUN_F_CSUM;
851
852 if (arg & (TUN_F_TSO4|TUN_F_TSO6)) {
853 if (arg & TUN_F_TSO_ECN) {
854 features |= NETIF_F_TSO_ECN;
855 arg &= ~TUN_F_TSO_ECN;
856 }
857 if (arg & TUN_F_TSO4)
858 features |= NETIF_F_TSO;
859 if (arg & TUN_F_TSO6)
860 features |= NETIF_F_TSO6;
861 arg &= ~(TUN_F_TSO4|TUN_F_TSO6);
862 }
863 }
864
865 /* This gives the user a way to test for new features in future by
866 * trying to set them. */
867 if (arg)
868 return -EINVAL;
869
870 dev->features = features;
871 if (old_features != dev->features)
872 netdev_features_change(dev);
873
874 return 0;
875}
876
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400877static int tun_chr_ioctl(struct inode *inode, struct file *file,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878 unsigned int cmd, unsigned long arg)
879{
880 struct tun_struct *tun = file->private_data;
881 void __user* argp = (void __user*)arg;
882 struct ifreq ifr;
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -0700883 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884
885 if (cmd == TUNSETIFF || _IOC_TYPE(cmd) == 0x89)
886 if (copy_from_user(&ifr, argp, sizeof ifr))
887 return -EFAULT;
888
889 if (cmd == TUNSETIFF && !tun) {
890 int err;
891
892 ifr.ifr_name[IFNAMSIZ-1] = '\0';
893
894 rtnl_lock();
Pavel Emelyanovd647a592008-04-16 00:41:16 -0700895 err = tun_set_iff(current->nsproxy->net_ns, file, &ifr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896 rtnl_unlock();
897
898 if (err)
899 return err;
900
901 if (copy_to_user(argp, &ifr, sizeof(ifr)))
902 return -EFAULT;
903 return 0;
904 }
905
Rusty Russell07240fd2008-07-03 03:45:32 -0700906 if (cmd == TUNGETFEATURES) {
907 /* Currently this just means: "what IFF flags are valid?".
908 * This is needed because we never checked for invalid flags on
909 * TUNSETIFF. */
Rusty Russellf43798c2008-07-03 03:48:02 -0700910 return put_user(IFF_TUN | IFF_TAP | IFF_NO_PI | IFF_ONE_QUEUE |
911 IFF_VNET_HDR,
Rusty Russell07240fd2008-07-03 03:45:32 -0700912 (unsigned int __user*)argp);
913 }
914
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915 if (!tun)
916 return -EBADFD;
917
918 DBG(KERN_INFO "%s: tun_chr_ioctl cmd %d\n", tun->dev->name, cmd);
919
920 switch (cmd) {
Mark McLoughline3b99552008-08-15 15:09:56 -0700921 case TUNGETIFF:
922 ret = tun_get_iff(current->nsproxy->net_ns, file, &ifr);
923 if (ret)
924 return ret;
925
926 if (copy_to_user(argp, &ifr, sizeof(ifr)))
927 return -EFAULT;
928 break;
929
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930 case TUNSETNOCSUM:
931 /* Disable/Enable checksum */
932 if (arg)
933 tun->flags |= TUN_NOCHECKSUM;
934 else
935 tun->flags &= ~TUN_NOCHECKSUM;
936
937 DBG(KERN_INFO "%s: checksum %s\n",
938 tun->dev->name, arg ? "disabled" : "enabled");
939 break;
940
941 case TUNSETPERSIST:
942 /* Disable/Enable persist mode */
943 if (arg)
944 tun->flags |= TUN_PERSIST;
945 else
946 tun->flags &= ~TUN_PERSIST;
947
948 DBG(KERN_INFO "%s: persist %s\n",
Toyo Abec6e991d2007-12-24 21:29:35 -0800949 tun->dev->name, arg ? "enabled" : "disabled");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950 break;
951
952 case TUNSETOWNER:
953 /* Set owner of the device */
954 tun->owner = (uid_t) arg;
955
956 DBG(KERN_INFO "%s: owner set to %d\n", tun->dev->name, tun->owner);
957 break;
958
Guido Guenther8c644622007-07-02 22:50:25 -0700959 case TUNSETGROUP:
960 /* Set group of the device */
961 tun->group= (gid_t) arg;
962
963 DBG(KERN_INFO "%s: group set to %d\n", tun->dev->name, tun->group);
964 break;
965
Mike Kershawff4cc3a2005-09-01 17:40:05 -0700966 case TUNSETLINK:
967 /* Only allow setting the type when the interface is down */
David S. Miller48abfe02008-04-23 19:37:58 -0700968 rtnl_lock();
Mike Kershawff4cc3a2005-09-01 17:40:05 -0700969 if (tun->dev->flags & IFF_UP) {
970 DBG(KERN_INFO "%s: Linktype set failed because interface is up\n",
971 tun->dev->name);
David S. Miller48abfe02008-04-23 19:37:58 -0700972 ret = -EBUSY;
Mike Kershawff4cc3a2005-09-01 17:40:05 -0700973 } else {
974 tun->dev->type = (int) arg;
975 DBG(KERN_INFO "%s: linktype set to %d\n", tun->dev->name, tun->dev->type);
David S. Miller48abfe02008-04-23 19:37:58 -0700976 ret = 0;
Mike Kershawff4cc3a2005-09-01 17:40:05 -0700977 }
David S. Miller48abfe02008-04-23 19:37:58 -0700978 rtnl_unlock();
979 return ret;
Mike Kershawff4cc3a2005-09-01 17:40:05 -0700980
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981#ifdef TUN_DEBUG
982 case TUNSETDEBUG:
983 tun->debug = arg;
984 break;
985#endif
Rusty Russell5228ddc2008-07-03 03:46:16 -0700986 case TUNSETOFFLOAD:
Rusty Russell5228ddc2008-07-03 03:46:16 -0700987 rtnl_lock();
988 ret = set_offload(tun->dev, arg);
989 rtnl_unlock();
990 return ret;
Rusty Russell5228ddc2008-07-03 03:46:16 -0700991
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -0700992 case TUNSETTXFILTER:
993 /* Can be set only for TAPs */
994 if ((tun->flags & TUN_TYPE_MASK) != TUN_TAP_DEV)
995 return -EINVAL;
996 rtnl_lock();
Harvey Harrisonc0e5a8c2008-07-16 12:45:34 -0700997 ret = update_filter(&tun->txflt, (void __user *)arg);
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -0700998 rtnl_unlock();
999 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000
1001 case SIOCGIFHWADDR:
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -07001002 /* Get hw addres */
1003 memcpy(ifr.ifr_hwaddr.sa_data, tun->dev->dev_addr, ETH_ALEN);
1004 ifr.ifr_hwaddr.sa_family = tun->dev->type;
1005 if (copy_to_user(argp, &ifr, sizeof ifr))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006 return -EFAULT;
1007 return 0;
1008
1009 case SIOCSIFHWADDR:
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -07001010 /* Set hw address */
Johannes Berge1749612008-10-27 15:59:26 -07001011 DBG(KERN_DEBUG "%s: set hw address: %pM\n",
1012 tun->dev->name, ifr.ifr_hwaddr.sa_data);
Kim B. Heino40102372008-02-29 12:26:21 -08001013
1014 rtnl_lock();
1015 ret = dev_set_mac_address(tun->dev, &ifr.ifr_hwaddr);
1016 rtnl_unlock();
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -07001017 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018
1019 default:
1020 return -EINVAL;
1021 };
1022
1023 return 0;
1024}
1025
1026static int tun_chr_fasync(int fd, struct file *file, int on)
1027{
1028 struct tun_struct *tun = file->private_data;
1029 int ret;
1030
1031 if (!tun)
1032 return -EBADFD;
1033
1034 DBG(KERN_INFO "%s: tun_chr_fasync %d\n", tun->dev->name, on);
1035
Jonathan Corbet9d319522008-06-19 15:50:37 -06001036 lock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037 if ((ret = fasync_helper(fd, file, on, &tun->fasync)) < 0)
Jonathan Corbet9d319522008-06-19 15:50:37 -06001038 goto out;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001039
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040 if (on) {
Eric W. Biederman609d7fa2006-10-02 02:17:15 -07001041 ret = __f_setown(file, task_pid(current), PIDTYPE_PID, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042 if (ret)
Jonathan Corbet9d319522008-06-19 15:50:37 -06001043 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044 tun->flags |= TUN_FASYNC;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001045 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046 tun->flags &= ~TUN_FASYNC;
Jonathan Corbet9d319522008-06-19 15:50:37 -06001047 ret = 0;
1048out:
1049 unlock_kernel();
1050 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051}
1052
1053static int tun_chr_open(struct inode *inode, struct file * file)
1054{
Arnd Bergmannfd3e05b2008-05-20 19:16:24 +02001055 cycle_kernel_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056 DBG1(KERN_INFO "tunX: tun_chr_open\n");
1057 file->private_data = NULL;
1058 return 0;
1059}
1060
1061static int tun_chr_close(struct inode *inode, struct file *file)
1062{
1063 struct tun_struct *tun = file->private_data;
1064
1065 if (!tun)
1066 return 0;
1067
1068 DBG(KERN_INFO "%s: tun_chr_close\n", tun->dev->name);
1069
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070 rtnl_lock();
1071
1072 /* Detach from net device */
1073 file->private_data = NULL;
1074 tun->attached = 0;
Pavel Emelyanovfc54c652008-04-16 00:41:53 -07001075 put_net(dev_net(tun->dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076
1077 /* Drop read queue */
1078 skb_queue_purge(&tun->readq);
1079
Eric W. Biederman74a3e5a2009-01-20 10:56:20 +00001080 if (!(tun->flags & TUN_PERSIST))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081 unregister_netdevice(tun->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082
1083 rtnl_unlock();
1084
1085 return 0;
1086}
1087
Arjan van de Vend54b1fd2007-02-12 00:55:34 -08001088static const struct file_operations tun_fops = {
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001089 .owner = THIS_MODULE,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090 .llseek = no_llseek,
Badari Pulavartyee0b3e62006-09-30 23:28:47 -07001091 .read = do_sync_read,
1092 .aio_read = tun_chr_aio_read,
1093 .write = do_sync_write,
1094 .aio_write = tun_chr_aio_write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095 .poll = tun_chr_poll,
1096 .ioctl = tun_chr_ioctl,
1097 .open = tun_chr_open,
1098 .release = tun_chr_close,
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001099 .fasync = tun_chr_fasync
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100};
1101
1102static struct miscdevice tun_miscdev = {
1103 .minor = TUN_MINOR,
1104 .name = "tun",
1105 .fops = &tun_fops,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106};
1107
1108/* ethtool interface */
1109
1110static int tun_get_settings(struct net_device *dev, struct ethtool_cmd *cmd)
1111{
1112 cmd->supported = 0;
1113 cmd->advertising = 0;
1114 cmd->speed = SPEED_10;
1115 cmd->duplex = DUPLEX_FULL;
1116 cmd->port = PORT_TP;
1117 cmd->phy_address = 0;
1118 cmd->transceiver = XCVR_INTERNAL;
1119 cmd->autoneg = AUTONEG_DISABLE;
1120 cmd->maxtxpkt = 0;
1121 cmd->maxrxpkt = 0;
1122 return 0;
1123}
1124
1125static void tun_get_drvinfo(struct net_device *dev, struct ethtool_drvinfo *info)
1126{
1127 struct tun_struct *tun = netdev_priv(dev);
1128
1129 strcpy(info->driver, DRV_NAME);
1130 strcpy(info->version, DRV_VERSION);
1131 strcpy(info->fw_version, "N/A");
1132
1133 switch (tun->flags & TUN_TYPE_MASK) {
1134 case TUN_TUN_DEV:
1135 strcpy(info->bus_info, "tun");
1136 break;
1137 case TUN_TAP_DEV:
1138 strcpy(info->bus_info, "tap");
1139 break;
1140 }
1141}
1142
1143static u32 tun_get_msglevel(struct net_device *dev)
1144{
1145#ifdef TUN_DEBUG
1146 struct tun_struct *tun = netdev_priv(dev);
1147 return tun->debug;
1148#else
1149 return -EOPNOTSUPP;
1150#endif
1151}
1152
1153static void tun_set_msglevel(struct net_device *dev, u32 value)
1154{
1155#ifdef TUN_DEBUG
1156 struct tun_struct *tun = netdev_priv(dev);
1157 tun->debug = value;
1158#endif
1159}
1160
1161static u32 tun_get_link(struct net_device *dev)
1162{
1163 struct tun_struct *tun = netdev_priv(dev);
1164 return tun->attached;
1165}
1166
1167static u32 tun_get_rx_csum(struct net_device *dev)
1168{
1169 struct tun_struct *tun = netdev_priv(dev);
1170 return (tun->flags & TUN_NOCHECKSUM) == 0;
1171}
1172
1173static int tun_set_rx_csum(struct net_device *dev, u32 data)
1174{
1175 struct tun_struct *tun = netdev_priv(dev);
1176 if (data)
1177 tun->flags &= ~TUN_NOCHECKSUM;
1178 else
1179 tun->flags |= TUN_NOCHECKSUM;
1180 return 0;
1181}
1182
Jeff Garzik7282d492006-09-13 14:30:00 -04001183static const struct ethtool_ops tun_ethtool_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184 .get_settings = tun_get_settings,
1185 .get_drvinfo = tun_get_drvinfo,
1186 .get_msglevel = tun_get_msglevel,
1187 .set_msglevel = tun_set_msglevel,
1188 .get_link = tun_get_link,
1189 .get_rx_csum = tun_get_rx_csum,
1190 .set_rx_csum = tun_set_rx_csum
1191};
1192
Pavel Emelyanov79d17602008-04-16 00:40:46 -07001193static int tun_init_net(struct net *net)
1194{
Pavel Emelyanov79d17602008-04-16 00:40:46 -07001195 return 0;
1196}
1197
1198static void tun_exit_net(struct net *net)
1199{
Eric W. Biederman74a3e5a2009-01-20 10:56:20 +00001200 struct net_device *dev, *next;
Pavel Emelyanovd647a592008-04-16 00:41:16 -07001201
1202 rtnl_lock();
Eric W. Biederman74a3e5a2009-01-20 10:56:20 +00001203 for_each_netdev_safe(net, dev, next) {
1204 if (dev->ethtool_ops != &tun_ethtool_ops)
1205 continue;
1206 DBG(KERN_INFO "%s cleaned up\n", dev->name);
1207 unregister_netdevice(dev);
Pavel Emelyanovd647a592008-04-16 00:41:16 -07001208 }
1209 rtnl_unlock();
Pavel Emelyanov79d17602008-04-16 00:40:46 -07001210}
1211
1212static struct pernet_operations tun_net_ops = {
1213 .init = tun_init_net,
1214 .exit = tun_exit_net,
1215};
1216
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217static int __init tun_init(void)
1218{
1219 int ret = 0;
1220
1221 printk(KERN_INFO "tun: %s, %s\n", DRV_DESCRIPTION, DRV_VERSION);
1222 printk(KERN_INFO "tun: %s\n", DRV_COPYRIGHT);
1223
Eric W. Biederman74a3e5a2009-01-20 10:56:20 +00001224 ret = register_pernet_device(&tun_net_ops);
Pavel Emelyanov79d17602008-04-16 00:40:46 -07001225 if (ret) {
1226 printk(KERN_ERR "tun: Can't register pernet ops\n");
1227 goto err_pernet;
1228 }
1229
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230 ret = misc_register(&tun_miscdev);
Pavel Emelyanov79d17602008-04-16 00:40:46 -07001231 if (ret) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232 printk(KERN_ERR "tun: Can't register misc device %d\n", TUN_MINOR);
Pavel Emelyanov79d17602008-04-16 00:40:46 -07001233 goto err_misc;
1234 }
1235 return 0;
1236
1237err_misc:
Eric W. Biederman74a3e5a2009-01-20 10:56:20 +00001238 unregister_pernet_device(&tun_net_ops);
Pavel Emelyanov79d17602008-04-16 00:40:46 -07001239err_pernet:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240 return ret;
1241}
1242
1243static void tun_cleanup(void)
1244{
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001245 misc_deregister(&tun_miscdev);
Eric W. Biederman74a3e5a2009-01-20 10:56:20 +00001246 unregister_pernet_device(&tun_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247}
1248
1249module_init(tun_init);
1250module_exit(tun_cleanup);
1251MODULE_DESCRIPTION(DRV_DESCRIPTION);
1252MODULE_AUTHOR(DRV_COPYRIGHT);
1253MODULE_LICENSE("GPL");
1254MODULE_ALIAS_MISCDEV(TUN_MINOR);