blob: d8b8e68ef70b98aaefeffeeee6aa6d3d78e25b6b [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 *
Brian Braunstein36226a82007-04-26 01:00:55 -070021 * Brian Braunstein <linuxkernel@bristyle.com> 2007/03/23
22 * Fixed hw address handling. Now net_device.dev_addr is kept consistent
23 * with tun.dev_addr when the address is set by this module.
24 *
Mike Kershawff4cc3a2005-09-01 17:40:05 -070025 * Mike Kershaw <dragorn@kismetwireless.net> 2005/08/14
26 * Add TUNSETLINK ioctl to set the link encapsulation
27 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070028 * Mark Smith <markzzzsmith@yahoo.com.au>
29 * Use random_ether_addr() for tap MAC address.
30 *
31 * Harald Roelle <harald.roelle@ifi.lmu.de> 2004/04/20
32 * Fixes in packet dropping, queue length setting and queue wakeup.
33 * Increased default tx queue length.
34 * Added ethtool API.
35 * Minor cleanups
36 *
37 * Daniel Podlejski <underley@underley.eu.org>
38 * Modifications for 2.3.99-pre5 kernel.
39 */
40
41#define DRV_NAME "tun"
42#define DRV_VERSION "1.6"
43#define DRV_DESCRIPTION "Universal TUN/TAP device driver"
44#define DRV_COPYRIGHT "(C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>"
45
Linus Torvalds1da177e2005-04-16 15:20:36 -070046#include <linux/module.h>
47#include <linux/errno.h>
48#include <linux/kernel.h>
49#include <linux/major.h>
50#include <linux/slab.h>
51#include <linux/poll.h>
52#include <linux/fcntl.h>
53#include <linux/init.h>
54#include <linux/skbuff.h>
55#include <linux/netdevice.h>
56#include <linux/etherdevice.h>
57#include <linux/miscdevice.h>
58#include <linux/ethtool.h>
59#include <linux/rtnetlink.h>
60#include <linux/if.h>
61#include <linux/if_arp.h>
62#include <linux/if_ether.h>
63#include <linux/if_tun.h>
64#include <linux/crc32.h>
Eric W. Biederman881d9662007-09-17 11:56:21 -070065#include <net/net_namespace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070066
67#include <asm/system.h>
68#include <asm/uaccess.h>
69
70#ifdef TUN_DEBUG
71static int debug;
72#endif
73
74/* Network device part of the driver */
75
76static LIST_HEAD(tun_dev_list);
Jeff Garzik7282d492006-09-13 14:30:00 -040077static const struct ethtool_ops tun_ethtool_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -070078
79/* Net device open. */
80static int tun_net_open(struct net_device *dev)
81{
82 netif_start_queue(dev);
83 return 0;
84}
85
86/* Net device close. */
87static int tun_net_close(struct net_device *dev)
88{
89 netif_stop_queue(dev);
90 return 0;
91}
92
93/* Net device start xmit */
94static int tun_net_xmit(struct sk_buff *skb, struct net_device *dev)
95{
96 struct tun_struct *tun = netdev_priv(dev);
97
98 DBG(KERN_INFO "%s: tun_net_xmit %d\n", tun->dev->name, skb->len);
99
100 /* Drop packet if interface is not attached */
101 if (!tun->attached)
102 goto drop;
103
104 /* Packet dropping */
105 if (skb_queue_len(&tun->readq) >= dev->tx_queue_len) {
106 if (!(tun->flags & TUN_ONE_QUEUE)) {
107 /* Normal queueing mode. */
108 /* Packet scheduler handles dropping of further packets. */
109 netif_stop_queue(dev);
110
111 /* We won't see all dropped packets individually, so overrun
112 * error is more appropriate. */
Jeff Garzik09f75cd2007-10-03 17:41:50 -0700113 dev->stats.tx_fifo_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 } else {
115 /* Single queue mode.
116 * Driver handles dropping of all packets itself. */
117 goto drop;
118 }
119 }
120
121 /* Queue packet */
122 skb_queue_tail(&tun->readq, skb);
123 dev->trans_start = jiffies;
124
125 /* Notify and wake up reader process */
126 if (tun->flags & TUN_FASYNC)
127 kill_fasync(&tun->fasync, SIGIO, POLL_IN);
128 wake_up_interruptible(&tun->read_wait);
129 return 0;
130
131drop:
Jeff Garzik09f75cd2007-10-03 17:41:50 -0700132 dev->stats.tx_dropped++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 kfree_skb(skb);
134 return 0;
135}
136
137/** Add the specified Ethernet address to this multicast filter. */
138static void
139add_multi(u32* filter, const u8* addr)
140{
141 int bit_nr = ether_crc(ETH_ALEN, addr) >> 26;
142 filter[bit_nr >> 5] |= 1 << (bit_nr & 31);
143}
144
145/** Remove the specified Ethernet addres from this multicast filter. */
146static void
147del_multi(u32* filter, const u8* addr)
148{
149 int bit_nr = ether_crc(ETH_ALEN, addr) >> 26;
150 filter[bit_nr >> 5] &= ~(1 << (bit_nr & 31));
151}
152
153/** Update the list of multicast groups to which the network device belongs.
154 * This list is used to filter packets being sent from the character device to
155 * the network device. */
156static void
157tun_net_mclist(struct net_device *dev)
158{
159 struct tun_struct *tun = netdev_priv(dev);
160 const struct dev_mc_list *mclist;
161 int i;
162 DBG(KERN_DEBUG "%s: tun_net_mclist: mc_count %d\n",
163 dev->name, dev->mc_count);
164 memset(tun->chr_filter, 0, sizeof tun->chr_filter);
165 for (i = 0, mclist = dev->mc_list; i < dev->mc_count && mclist != NULL;
166 i++, mclist = mclist->next) {
167 add_multi(tun->net_filter, mclist->dmi_addr);
168 DBG(KERN_DEBUG "%s: tun_net_mclist: %x:%x:%x:%x:%x:%x\n",
169 dev->name,
170 mclist->dmi_addr[0], mclist->dmi_addr[1], mclist->dmi_addr[2],
171 mclist->dmi_addr[3], mclist->dmi_addr[4], mclist->dmi_addr[5]);
172 }
173}
174
Ed Swierk4885a502007-09-16 12:21:38 -0700175#define MIN_MTU 68
176#define MAX_MTU 65535
177
178static int
179tun_net_change_mtu(struct net_device *dev, int new_mtu)
180{
181 if (new_mtu < MIN_MTU || new_mtu + dev->hard_header_len > MAX_MTU)
182 return -EINVAL;
183 dev->mtu = new_mtu;
184 return 0;
185}
186
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187/* Initialize net device. */
188static void tun_net_init(struct net_device *dev)
189{
190 struct tun_struct *tun = netdev_priv(dev);
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400191
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 switch (tun->flags & TUN_TYPE_MASK) {
193 case TUN_TUN_DEV:
194 /* Point-to-Point TUN Device */
195 dev->hard_header_len = 0;
196 dev->addr_len = 0;
197 dev->mtu = 1500;
Ed Swierk4885a502007-09-16 12:21:38 -0700198 dev->change_mtu = tun_net_change_mtu;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199
200 /* Zero header length */
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400201 dev->type = ARPHRD_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 dev->flags = IFF_POINTOPOINT | IFF_NOARP | IFF_MULTICAST;
203 dev->tx_queue_len = TUN_READQ_SIZE; /* We prefer our own queue length */
204 break;
205
206 case TUN_TAP_DEV:
207 /* Ethernet TAP Device */
208 dev->set_multicast_list = tun_net_mclist;
209
210 ether_setup(dev);
Ed Swierk4885a502007-09-16 12:21:38 -0700211 dev->change_mtu = tun_net_change_mtu;
Brian Braunstein36226a82007-04-26 01:00:55 -0700212
213 /* random address already created for us by tun_set_iff, use it */
214 memcpy(dev->dev_addr, tun->dev_addr, min(sizeof(tun->dev_addr), sizeof(dev->dev_addr)) );
215
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 dev->tx_queue_len = TUN_READQ_SIZE; /* We prefer our own queue length */
217 break;
218 }
219}
220
221/* Character device part */
222
223/* Poll */
224static unsigned int tun_chr_poll(struct file *file, poll_table * wait)
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400225{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 struct tun_struct *tun = file->private_data;
227 unsigned int mask = POLLOUT | POLLWRNORM;
228
229 if (!tun)
230 return -EBADFD;
231
232 DBG(KERN_INFO "%s: tun_chr_poll\n", tun->dev->name);
233
234 poll_wait(file, &tun->read_wait, wait);
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400235
David S. Millerb03efcf2005-07-08 14:57:23 -0700236 if (!skb_queue_empty(&tun->readq))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237 mask |= POLLIN | POLLRDNORM;
238
239 return mask;
240}
241
242/* Get packet from user space buffer */
243static __inline__ ssize_t tun_get_user(struct tun_struct *tun, struct iovec *iv, size_t count)
244{
245 struct tun_pi pi = { 0, __constant_htons(ETH_P_IP) };
246 struct sk_buff *skb;
247 size_t len = count, align = 0;
248
249 if (!(tun->flags & TUN_NO_PI)) {
250 if ((len -= sizeof(pi)) > count)
251 return -EINVAL;
252
253 if(memcpy_fromiovec((void *)&pi, iv, sizeof(pi)))
254 return -EFAULT;
255 }
256
257 if ((tun->flags & TUN_TYPE_MASK) == TUN_TAP_DEV)
258 align = NET_IP_ALIGN;
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400259
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260 if (!(skb = alloc_skb(len + align, GFP_KERNEL))) {
Jeff Garzik09f75cd2007-10-03 17:41:50 -0700261 tun->dev->stats.rx_dropped++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262 return -ENOMEM;
263 }
264
265 if (align)
266 skb_reserve(skb, align);
Dave Jones8f227572006-03-11 18:49:13 -0800267 if (memcpy_fromiovec(skb_put(skb, len), iv, len)) {
Jeff Garzik09f75cd2007-10-03 17:41:50 -0700268 tun->dev->stats.rx_dropped++;
Dave Jones8f227572006-03-11 18:49:13 -0800269 kfree_skb(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270 return -EFAULT;
Dave Jones8f227572006-03-11 18:49:13 -0800271 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273 switch (tun->flags & TUN_TYPE_MASK) {
274 case TUN_TUN_DEV:
Arnaldo Carvalho de Melo459a98e2007-03-19 15:30:44 -0700275 skb_reset_mac_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276 skb->protocol = pi.proto;
Arnaldo Carvalho de Melo4c13eb62007-04-25 17:40:23 -0700277 skb->dev = tun->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 break;
279 case TUN_TAP_DEV:
280 skb->protocol = eth_type_trans(skb, tun->dev);
281 break;
282 };
283
284 if (tun->flags & TUN_NOCHECKSUM)
285 skb->ip_summed = CHECKSUM_UNNECESSARY;
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400286
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287 netif_rx_ni(skb);
288 tun->dev->last_rx = jiffies;
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400289
Jeff Garzik09f75cd2007-10-03 17:41:50 -0700290 tun->dev->stats.rx_packets++;
291 tun->dev->stats.rx_bytes += len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292
293 return count;
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400294}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295
296static inline size_t iov_total(const struct iovec *iv, unsigned long count)
297{
298 unsigned long i;
299 size_t len;
300
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400301 for (i = 0, len = 0; i < count; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302 len += iv[i].iov_len;
303
304 return len;
305}
306
Badari Pulavartyee0b3e62006-09-30 23:28:47 -0700307static ssize_t tun_chr_aio_write(struct kiocb *iocb, const struct iovec *iv,
308 unsigned long count, loff_t pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309{
Badari Pulavartyee0b3e62006-09-30 23:28:47 -0700310 struct tun_struct *tun = iocb->ki_filp->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311
312 if (!tun)
313 return -EBADFD;
314
315 DBG(KERN_INFO "%s: tun_chr_write %ld\n", tun->dev->name, count);
316
317 return tun_get_user(tun, (struct iovec *) iv, iov_total(iv, count));
318}
319
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320/* Put packet to the user space buffer */
321static __inline__ ssize_t tun_put_user(struct tun_struct *tun,
322 struct sk_buff *skb,
323 struct iovec *iv, int len)
324{
325 struct tun_pi pi = { 0, skb->protocol };
326 ssize_t total = 0;
327
328 if (!(tun->flags & TUN_NO_PI)) {
329 if ((len -= sizeof(pi)) < 0)
330 return -EINVAL;
331
332 if (len < skb->len) {
333 /* Packet will be striped */
334 pi.flags |= TUN_PKT_STRIP;
335 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400336
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 if (memcpy_toiovec(iv, (void *) &pi, sizeof(pi)))
338 return -EFAULT;
339 total += sizeof(pi);
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400340 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341
342 len = min_t(int, skb->len, len);
343
344 skb_copy_datagram_iovec(skb, 0, iv, len);
345 total += len;
346
Jeff Garzik09f75cd2007-10-03 17:41:50 -0700347 tun->dev->stats.tx_packets++;
348 tun->dev->stats.tx_bytes += len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349
350 return total;
351}
352
Badari Pulavartyee0b3e62006-09-30 23:28:47 -0700353static ssize_t tun_chr_aio_read(struct kiocb *iocb, const struct iovec *iv,
354 unsigned long count, loff_t pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355{
Badari Pulavartyee0b3e62006-09-30 23:28:47 -0700356 struct file *file = iocb->ki_filp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357 struct tun_struct *tun = file->private_data;
358 DECLARE_WAITQUEUE(wait, current);
359 struct sk_buff *skb;
360 ssize_t len, ret = 0;
361
362 if (!tun)
363 return -EBADFD;
364
365 DBG(KERN_INFO "%s: tun_chr_read\n", tun->dev->name);
366
367 len = iov_total(iv, count);
368 if (len < 0)
369 return -EINVAL;
370
371 add_wait_queue(&tun->read_wait, &wait);
372 while (len) {
373 const u8 ones[ ETH_ALEN] = { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff };
374 u8 addr[ ETH_ALEN];
375 int bit_nr;
376
377 current->state = TASK_INTERRUPTIBLE;
378
379 /* Read frames from the queue */
380 if (!(skb=skb_dequeue(&tun->readq))) {
381 if (file->f_flags & O_NONBLOCK) {
382 ret = -EAGAIN;
383 break;
384 }
385 if (signal_pending(current)) {
386 ret = -ERESTARTSYS;
387 break;
388 }
389
390 /* Nothing to read, let's sleep */
391 schedule();
392 continue;
393 }
394 netif_wake_queue(tun->dev);
395
396 /** Decide whether to accept this packet. This code is designed to
397 * behave identically to an Ethernet interface. Accept the packet if
398 * - we are promiscuous.
399 * - the packet is addressed to us.
400 * - the packet is broadcast.
401 * - the packet is multicast and
402 * - we are multicast promiscous.
403 * - we belong to the multicast group.
404 */
Arnaldo Carvalho de Melod626f622007-03-27 18:55:52 -0300405 skb_copy_from_linear_data(skb, addr, min_t(size_t, sizeof addr,
406 skb->len));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407 bit_nr = ether_crc(sizeof addr, addr) >> 26;
408 if ((tun->if_flags & IFF_PROMISC) ||
409 memcmp(addr, tun->dev_addr, sizeof addr) == 0 ||
410 memcmp(addr, ones, sizeof addr) == 0 ||
411 (((addr[0] == 1 && addr[1] == 0 && addr[2] == 0x5e) ||
412 (addr[0] == 0x33 && addr[1] == 0x33)) &&
413 ((tun->if_flags & IFF_ALLMULTI) ||
414 (tun->chr_filter[bit_nr >> 5] & (1 << (bit_nr & 31)))))) {
415 DBG(KERN_DEBUG "%s: tun_chr_readv: accepted: %x:%x:%x:%x:%x:%x\n",
416 tun->dev->name, addr[0], addr[1], addr[2],
417 addr[3], addr[4], addr[5]);
418 ret = tun_put_user(tun, skb, (struct iovec *) iv, len);
419 kfree_skb(skb);
420 break;
421 } else {
422 DBG(KERN_DEBUG "%s: tun_chr_readv: rejected: %x:%x:%x:%x:%x:%x\n",
423 tun->dev->name, addr[0], addr[1], addr[2],
424 addr[3], addr[4], addr[5]);
425 kfree_skb(skb);
426 continue;
427 }
428 }
429
430 current->state = TASK_RUNNING;
431 remove_wait_queue(&tun->read_wait, &wait);
432
433 return ret;
434}
435
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436static void tun_setup(struct net_device *dev)
437{
438 struct tun_struct *tun = netdev_priv(dev);
439
440 skb_queue_head_init(&tun->readq);
441 init_waitqueue_head(&tun->read_wait);
442
443 tun->owner = -1;
Guido Guenther8c644622007-07-02 22:50:25 -0700444 tun->group = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446 dev->open = tun_net_open;
447 dev->hard_start_xmit = tun_net_xmit;
448 dev->stop = tun_net_close;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 dev->ethtool_ops = &tun_ethtool_ops;
450 dev->destructor = free_netdev;
451}
452
453static struct tun_struct *tun_get_by_name(const char *name)
454{
455 struct tun_struct *tun;
456
457 ASSERT_RTNL();
458 list_for_each_entry(tun, &tun_dev_list, list) {
459 if (!strncmp(tun->dev->name, name, IFNAMSIZ))
460 return tun;
461 }
462
463 return NULL;
464}
465
466static int tun_set_iff(struct file *file, struct ifreq *ifr)
467{
468 struct tun_struct *tun;
469 struct net_device *dev;
470 int err;
471
472 tun = tun_get_by_name(ifr->ifr_name);
473 if (tun) {
474 if (tun->attached)
475 return -EBUSY;
476
477 /* Check permissions */
Guido Guenther8c644622007-07-02 22:50:25 -0700478 if (((tun->owner != -1 &&
479 current->euid != tun->owner) ||
480 (tun->group != -1 &&
481 current->egid != tun->group)) &&
482 !capable(CAP_NET_ADMIN))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 return -EPERM;
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400484 }
Eric W. Biederman881d9662007-09-17 11:56:21 -0700485 else if (__dev_get_by_name(&init_net, ifr->ifr_name))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486 return -EINVAL;
487 else {
488 char *name;
489 unsigned long flags = 0;
490
491 err = -EINVAL;
492
David Woodhouseca6bb5d2006-06-22 16:07:52 -0700493 if (!capable(CAP_NET_ADMIN))
494 return -EPERM;
495
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496 /* Set dev type */
497 if (ifr->ifr_flags & IFF_TUN) {
498 /* TUN device */
499 flags |= TUN_TUN_DEV;
500 name = "tun%d";
501 } else if (ifr->ifr_flags & IFF_TAP) {
502 /* TAP device */
503 flags |= TUN_TAP_DEV;
504 name = "tap%d";
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400505 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506 goto failed;
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400507
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508 if (*ifr->ifr_name)
509 name = ifr->ifr_name;
510
511 dev = alloc_netdev(sizeof(struct tun_struct), name,
512 tun_setup);
513 if (!dev)
514 return -ENOMEM;
515
516 tun = netdev_priv(dev);
517 tun->dev = dev;
518 tun->flags = flags;
519 /* Be promiscuous by default to maintain previous behaviour. */
520 tun->if_flags = IFF_PROMISC;
521 /* Generate random Ethernet address. */
522 *(u16 *)tun->dev_addr = htons(0x00FF);
523 get_random_bytes(tun->dev_addr + sizeof(u16), 4);
524 memset(tun->chr_filter, 0, sizeof tun->chr_filter);
525
526 tun_net_init(dev);
527
528 if (strchr(dev->name, '%')) {
529 err = dev_alloc_name(dev, dev->name);
530 if (err < 0)
531 goto err_free_dev;
532 }
533
534 err = register_netdevice(tun->dev);
535 if (err < 0)
536 goto err_free_dev;
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400537
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 list_add(&tun->list, &tun_dev_list);
539 }
540
541 DBG(KERN_INFO "%s: tun_set_iff\n", tun->dev->name);
542
543 if (ifr->ifr_flags & IFF_NO_PI)
544 tun->flags |= TUN_NO_PI;
545
546 if (ifr->ifr_flags & IFF_ONE_QUEUE)
547 tun->flags |= TUN_ONE_QUEUE;
548
549 file->private_data = tun;
550 tun->attached = 1;
551
552 strcpy(ifr->ifr_name, tun->dev->name);
553 return 0;
554
555 err_free_dev:
556 free_netdev(dev);
557 failed:
558 return err;
559}
560
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400561static int tun_chr_ioctl(struct inode *inode, struct file *file,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 unsigned int cmd, unsigned long arg)
563{
564 struct tun_struct *tun = file->private_data;
565 void __user* argp = (void __user*)arg;
566 struct ifreq ifr;
567
568 if (cmd == TUNSETIFF || _IOC_TYPE(cmd) == 0x89)
569 if (copy_from_user(&ifr, argp, sizeof ifr))
570 return -EFAULT;
571
572 if (cmd == TUNSETIFF && !tun) {
573 int err;
574
575 ifr.ifr_name[IFNAMSIZ-1] = '\0';
576
577 rtnl_lock();
578 err = tun_set_iff(file, &ifr);
579 rtnl_unlock();
580
581 if (err)
582 return err;
583
584 if (copy_to_user(argp, &ifr, sizeof(ifr)))
585 return -EFAULT;
586 return 0;
587 }
588
589 if (!tun)
590 return -EBADFD;
591
592 DBG(KERN_INFO "%s: tun_chr_ioctl cmd %d\n", tun->dev->name, cmd);
593
594 switch (cmd) {
595 case TUNSETNOCSUM:
596 /* Disable/Enable checksum */
597 if (arg)
598 tun->flags |= TUN_NOCHECKSUM;
599 else
600 tun->flags &= ~TUN_NOCHECKSUM;
601
602 DBG(KERN_INFO "%s: checksum %s\n",
603 tun->dev->name, arg ? "disabled" : "enabled");
604 break;
605
606 case TUNSETPERSIST:
607 /* Disable/Enable persist mode */
608 if (arg)
609 tun->flags |= TUN_PERSIST;
610 else
611 tun->flags &= ~TUN_PERSIST;
612
613 DBG(KERN_INFO "%s: persist %s\n",
614 tun->dev->name, arg ? "disabled" : "enabled");
615 break;
616
617 case TUNSETOWNER:
618 /* Set owner of the device */
619 tun->owner = (uid_t) arg;
620
621 DBG(KERN_INFO "%s: owner set to %d\n", tun->dev->name, tun->owner);
622 break;
623
Guido Guenther8c644622007-07-02 22:50:25 -0700624 case TUNSETGROUP:
625 /* Set group of the device */
626 tun->group= (gid_t) arg;
627
628 DBG(KERN_INFO "%s: group set to %d\n", tun->dev->name, tun->group);
629 break;
630
Mike Kershawff4cc3a2005-09-01 17:40:05 -0700631 case TUNSETLINK:
632 /* Only allow setting the type when the interface is down */
633 if (tun->dev->flags & IFF_UP) {
634 DBG(KERN_INFO "%s: Linktype set failed because interface is up\n",
635 tun->dev->name);
636 return -EBUSY;
637 } else {
638 tun->dev->type = (int) arg;
639 DBG(KERN_INFO "%s: linktype set to %d\n", tun->dev->name, tun->dev->type);
640 }
641 break;
642
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643#ifdef TUN_DEBUG
644 case TUNSETDEBUG:
645 tun->debug = arg;
646 break;
647#endif
648
649 case SIOCGIFFLAGS:
650 ifr.ifr_flags = tun->if_flags;
651 if (copy_to_user( argp, &ifr, sizeof ifr))
652 return -EFAULT;
653 return 0;
654
655 case SIOCSIFFLAGS:
656 /** Set the character device's interface flags. Currently only
657 * IFF_PROMISC and IFF_ALLMULTI are used. */
658 tun->if_flags = ifr.ifr_flags;
659 DBG(KERN_INFO "%s: interface flags 0x%lx\n",
660 tun->dev->name, tun->if_flags);
661 return 0;
662
663 case SIOCGIFHWADDR:
Brian Braunstein36226a82007-04-26 01:00:55 -0700664 /* Note: the actual net device's address may be different */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665 memcpy(ifr.ifr_hwaddr.sa_data, tun->dev_addr,
666 min(sizeof ifr.ifr_hwaddr.sa_data, sizeof tun->dev_addr));
667 if (copy_to_user( argp, &ifr, sizeof ifr))
668 return -EFAULT;
669 return 0;
670
671 case SIOCSIFHWADDR:
Brian Braunstein36226a82007-04-26 01:00:55 -0700672 {
673 /* try to set the actual net device's hw address */
674 int ret = dev_set_mac_address(tun->dev, &ifr.ifr_hwaddr);
675
676 if (ret == 0) {
677 /** Set the character device's hardware address. This is used when
678 * filtering packets being sent from the network device to the character
679 * device. */
680 memcpy(tun->dev_addr, ifr.ifr_hwaddr.sa_data,
681 min(sizeof ifr.ifr_hwaddr.sa_data, sizeof tun->dev_addr));
682 DBG(KERN_DEBUG "%s: set hardware address: %x:%x:%x:%x:%x:%x\n",
683 tun->dev->name,
684 tun->dev_addr[0], tun->dev_addr[1], tun->dev_addr[2],
685 tun->dev_addr[3], tun->dev_addr[4], tun->dev_addr[5]);
686 }
687
688 return ret;
689 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690
691 case SIOCADDMULTI:
692 /** Add the specified group to the character device's multicast filter
693 * list. */
694 add_multi(tun->chr_filter, ifr.ifr_hwaddr.sa_data);
695 DBG(KERN_DEBUG "%s: add multi: %x:%x:%x:%x:%x:%x\n",
696 tun->dev->name,
697 (u8)ifr.ifr_hwaddr.sa_data[0], (u8)ifr.ifr_hwaddr.sa_data[1],
698 (u8)ifr.ifr_hwaddr.sa_data[2], (u8)ifr.ifr_hwaddr.sa_data[3],
699 (u8)ifr.ifr_hwaddr.sa_data[4], (u8)ifr.ifr_hwaddr.sa_data[5]);
700 return 0;
701
702 case SIOCDELMULTI:
703 /** Remove the specified group from the character device's multicast
704 * filter list. */
705 del_multi(tun->chr_filter, ifr.ifr_hwaddr.sa_data);
706 DBG(KERN_DEBUG "%s: del multi: %x:%x:%x:%x:%x:%x\n",
707 tun->dev->name,
708 (u8)ifr.ifr_hwaddr.sa_data[0], (u8)ifr.ifr_hwaddr.sa_data[1],
709 (u8)ifr.ifr_hwaddr.sa_data[2], (u8)ifr.ifr_hwaddr.sa_data[3],
710 (u8)ifr.ifr_hwaddr.sa_data[4], (u8)ifr.ifr_hwaddr.sa_data[5]);
711 return 0;
712
713 default:
714 return -EINVAL;
715 };
716
717 return 0;
718}
719
720static int tun_chr_fasync(int fd, struct file *file, int on)
721{
722 struct tun_struct *tun = file->private_data;
723 int ret;
724
725 if (!tun)
726 return -EBADFD;
727
728 DBG(KERN_INFO "%s: tun_chr_fasync %d\n", tun->dev->name, on);
729
730 if ((ret = fasync_helper(fd, file, on, &tun->fasync)) < 0)
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400731 return ret;
732
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733 if (on) {
Eric W. Biederman609d7fa2006-10-02 02:17:15 -0700734 ret = __f_setown(file, task_pid(current), PIDTYPE_PID, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735 if (ret)
736 return ret;
737 tun->flags |= TUN_FASYNC;
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400738 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739 tun->flags &= ~TUN_FASYNC;
740
741 return 0;
742}
743
744static int tun_chr_open(struct inode *inode, struct file * file)
745{
746 DBG1(KERN_INFO "tunX: tun_chr_open\n");
747 file->private_data = NULL;
748 return 0;
749}
750
751static int tun_chr_close(struct inode *inode, struct file *file)
752{
753 struct tun_struct *tun = file->private_data;
754
755 if (!tun)
756 return 0;
757
758 DBG(KERN_INFO "%s: tun_chr_close\n", tun->dev->name);
759
760 tun_chr_fasync(-1, file, 0);
761
762 rtnl_lock();
763
764 /* Detach from net device */
765 file->private_data = NULL;
766 tun->attached = 0;
767
768 /* Drop read queue */
769 skb_queue_purge(&tun->readq);
770
771 if (!(tun->flags & TUN_PERSIST)) {
772 list_del(&tun->list);
773 unregister_netdevice(tun->dev);
774 }
775
776 rtnl_unlock();
777
778 return 0;
779}
780
Arjan van de Vend54b1fd2007-02-12 00:55:34 -0800781static const struct file_operations tun_fops = {
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400782 .owner = THIS_MODULE,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783 .llseek = no_llseek,
Badari Pulavartyee0b3e62006-09-30 23:28:47 -0700784 .read = do_sync_read,
785 .aio_read = tun_chr_aio_read,
786 .write = do_sync_write,
787 .aio_write = tun_chr_aio_write,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788 .poll = tun_chr_poll,
789 .ioctl = tun_chr_ioctl,
790 .open = tun_chr_open,
791 .release = tun_chr_close,
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400792 .fasync = tun_chr_fasync
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793};
794
795static struct miscdevice tun_miscdev = {
796 .minor = TUN_MINOR,
797 .name = "tun",
798 .fops = &tun_fops,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799};
800
801/* ethtool interface */
802
803static int tun_get_settings(struct net_device *dev, struct ethtool_cmd *cmd)
804{
805 cmd->supported = 0;
806 cmd->advertising = 0;
807 cmd->speed = SPEED_10;
808 cmd->duplex = DUPLEX_FULL;
809 cmd->port = PORT_TP;
810 cmd->phy_address = 0;
811 cmd->transceiver = XCVR_INTERNAL;
812 cmd->autoneg = AUTONEG_DISABLE;
813 cmd->maxtxpkt = 0;
814 cmd->maxrxpkt = 0;
815 return 0;
816}
817
818static void tun_get_drvinfo(struct net_device *dev, struct ethtool_drvinfo *info)
819{
820 struct tun_struct *tun = netdev_priv(dev);
821
822 strcpy(info->driver, DRV_NAME);
823 strcpy(info->version, DRV_VERSION);
824 strcpy(info->fw_version, "N/A");
825
826 switch (tun->flags & TUN_TYPE_MASK) {
827 case TUN_TUN_DEV:
828 strcpy(info->bus_info, "tun");
829 break;
830 case TUN_TAP_DEV:
831 strcpy(info->bus_info, "tap");
832 break;
833 }
834}
835
836static u32 tun_get_msglevel(struct net_device *dev)
837{
838#ifdef TUN_DEBUG
839 struct tun_struct *tun = netdev_priv(dev);
840 return tun->debug;
841#else
842 return -EOPNOTSUPP;
843#endif
844}
845
846static void tun_set_msglevel(struct net_device *dev, u32 value)
847{
848#ifdef TUN_DEBUG
849 struct tun_struct *tun = netdev_priv(dev);
850 tun->debug = value;
851#endif
852}
853
854static u32 tun_get_link(struct net_device *dev)
855{
856 struct tun_struct *tun = netdev_priv(dev);
857 return tun->attached;
858}
859
860static u32 tun_get_rx_csum(struct net_device *dev)
861{
862 struct tun_struct *tun = netdev_priv(dev);
863 return (tun->flags & TUN_NOCHECKSUM) == 0;
864}
865
866static int tun_set_rx_csum(struct net_device *dev, u32 data)
867{
868 struct tun_struct *tun = netdev_priv(dev);
869 if (data)
870 tun->flags &= ~TUN_NOCHECKSUM;
871 else
872 tun->flags |= TUN_NOCHECKSUM;
873 return 0;
874}
875
Jeff Garzik7282d492006-09-13 14:30:00 -0400876static const struct ethtool_ops tun_ethtool_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877 .get_settings = tun_get_settings,
878 .get_drvinfo = tun_get_drvinfo,
879 .get_msglevel = tun_get_msglevel,
880 .set_msglevel = tun_set_msglevel,
881 .get_link = tun_get_link,
882 .get_rx_csum = tun_get_rx_csum,
883 .set_rx_csum = tun_set_rx_csum
884};
885
886static int __init tun_init(void)
887{
888 int ret = 0;
889
890 printk(KERN_INFO "tun: %s, %s\n", DRV_DESCRIPTION, DRV_VERSION);
891 printk(KERN_INFO "tun: %s\n", DRV_COPYRIGHT);
892
893 ret = misc_register(&tun_miscdev);
894 if (ret)
895 printk(KERN_ERR "tun: Can't register misc device %d\n", TUN_MINOR);
896 return ret;
897}
898
899static void tun_cleanup(void)
900{
901 struct tun_struct *tun, *nxt;
902
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400903 misc_deregister(&tun_miscdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904
905 rtnl_lock();
906 list_for_each_entry_safe(tun, nxt, &tun_dev_list, list) {
907 DBG(KERN_INFO "%s cleaned up\n", tun->dev->name);
908 unregister_netdevice(tun->dev);
909 }
910 rtnl_unlock();
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400911
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912}
913
914module_init(tun_init);
915module_exit(tun_cleanup);
916MODULE_DESCRIPTION(DRV_DESCRIPTION);
917MODULE_AUTHOR(DRV_COPYRIGHT);
918MODULE_LICENSE("GPL");
919MODULE_ALIAS_MISCDEV(TUN_MINOR);