blob: 1e655ea631022353487b0a05e474fc1938b65d5e [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>
Pavel Emelyanovd647a592008-04-16 00:41:16 -070065#include <linux/nsproxy.h>
Eric W. Biederman881d9662007-09-17 11:56:21 -070066#include <net/net_namespace.h>
Pavel Emelyanov79d17602008-04-16 00:40:46 -070067#include <net/netns/generic.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070068
69#include <asm/system.h>
70#include <asm/uaccess.h>
71
Rusty Russell14daa022008-04-12 18:48:58 -070072/* Uncomment to enable debugging */
73/* #define TUN_DEBUG 1 */
74
Linus Torvalds1da177e2005-04-16 15:20:36 -070075#ifdef TUN_DEBUG
76static int debug;
Rusty Russell14daa022008-04-12 18:48:58 -070077
78#define DBG if(tun->debug)printk
79#define DBG1 if(debug==2)printk
80#else
81#define DBG( a... )
82#define DBG1( a... )
Linus Torvalds1da177e2005-04-16 15:20:36 -070083#endif
84
Rusty Russell14daa022008-04-12 18:48:58 -070085struct tun_struct {
86 struct list_head list;
87 unsigned long flags;
88 int attached;
89 uid_t owner;
90 gid_t group;
91
92 wait_queue_head_t read_wait;
93 struct sk_buff_head readq;
94
95 struct net_device *dev;
96
97 struct fasync_struct *fasync;
98
99 unsigned long if_flags;
100 u8 dev_addr[ETH_ALEN];
101 u32 chr_filter[2];
102 u32 net_filter[2];
103
104#ifdef TUN_DEBUG
105 int debug;
106#endif
107};
108
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109/* Network device part of the driver */
110
Pavel Emelyanov79d17602008-04-16 00:40:46 -0700111static unsigned int tun_net_id;
112struct tun_net {
113 struct list_head dev_list;
114};
115
Jeff Garzik7282d492006-09-13 14:30:00 -0400116static const struct ethtool_ops tun_ethtool_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117
118/* Net device open. */
119static int tun_net_open(struct net_device *dev)
120{
121 netif_start_queue(dev);
122 return 0;
123}
124
125/* Net device close. */
126static int tun_net_close(struct net_device *dev)
127{
128 netif_stop_queue(dev);
129 return 0;
130}
131
132/* Net device start xmit */
133static int tun_net_xmit(struct sk_buff *skb, struct net_device *dev)
134{
135 struct tun_struct *tun = netdev_priv(dev);
136
137 DBG(KERN_INFO "%s: tun_net_xmit %d\n", tun->dev->name, skb->len);
138
139 /* Drop packet if interface is not attached */
140 if (!tun->attached)
141 goto drop;
142
143 /* Packet dropping */
144 if (skb_queue_len(&tun->readq) >= dev->tx_queue_len) {
145 if (!(tun->flags & TUN_ONE_QUEUE)) {
146 /* Normal queueing mode. */
147 /* Packet scheduler handles dropping of further packets. */
148 netif_stop_queue(dev);
149
150 /* We won't see all dropped packets individually, so overrun
151 * error is more appropriate. */
Jeff Garzik09f75cd2007-10-03 17:41:50 -0700152 dev->stats.tx_fifo_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 } else {
154 /* Single queue mode.
155 * Driver handles dropping of all packets itself. */
156 goto drop;
157 }
158 }
159
160 /* Queue packet */
161 skb_queue_tail(&tun->readq, skb);
162 dev->trans_start = jiffies;
163
164 /* Notify and wake up reader process */
165 if (tun->flags & TUN_FASYNC)
166 kill_fasync(&tun->fasync, SIGIO, POLL_IN);
167 wake_up_interruptible(&tun->read_wait);
168 return 0;
169
170drop:
Jeff Garzik09f75cd2007-10-03 17:41:50 -0700171 dev->stats.tx_dropped++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172 kfree_skb(skb);
173 return 0;
174}
175
176/** Add the specified Ethernet address to this multicast filter. */
177static void
178add_multi(u32* filter, const u8* addr)
179{
180 int bit_nr = ether_crc(ETH_ALEN, addr) >> 26;
181 filter[bit_nr >> 5] |= 1 << (bit_nr & 31);
182}
183
184/** Remove the specified Ethernet addres from this multicast filter. */
185static void
186del_multi(u32* filter, const u8* addr)
187{
188 int bit_nr = ether_crc(ETH_ALEN, addr) >> 26;
189 filter[bit_nr >> 5] &= ~(1 << (bit_nr & 31));
190}
191
192/** Update the list of multicast groups to which the network device belongs.
193 * This list is used to filter packets being sent from the character device to
194 * the network device. */
195static void
196tun_net_mclist(struct net_device *dev)
197{
198 struct tun_struct *tun = netdev_priv(dev);
199 const struct dev_mc_list *mclist;
200 int i;
Joe Perches0795af52007-10-03 17:59:30 -0700201 DECLARE_MAC_BUF(mac);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 DBG(KERN_DEBUG "%s: tun_net_mclist: mc_count %d\n",
203 dev->name, dev->mc_count);
204 memset(tun->chr_filter, 0, sizeof tun->chr_filter);
205 for (i = 0, mclist = dev->mc_list; i < dev->mc_count && mclist != NULL;
206 i++, mclist = mclist->next) {
207 add_multi(tun->net_filter, mclist->dmi_addr);
Joe Perches0795af52007-10-03 17:59:30 -0700208 DBG(KERN_DEBUG "%s: tun_net_mclist: %s\n",
209 dev->name, print_mac(mac, mclist->dmi_addr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 }
211}
212
Ed Swierk4885a502007-09-16 12:21:38 -0700213#define MIN_MTU 68
214#define MAX_MTU 65535
215
216static int
217tun_net_change_mtu(struct net_device *dev, int new_mtu)
218{
219 if (new_mtu < MIN_MTU || new_mtu + dev->hard_header_len > MAX_MTU)
220 return -EINVAL;
221 dev->mtu = new_mtu;
222 return 0;
223}
224
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225/* Initialize net device. */
226static void tun_net_init(struct net_device *dev)
227{
228 struct tun_struct *tun = netdev_priv(dev);
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400229
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 switch (tun->flags & TUN_TYPE_MASK) {
231 case TUN_TUN_DEV:
232 /* Point-to-Point TUN Device */
233 dev->hard_header_len = 0;
234 dev->addr_len = 0;
235 dev->mtu = 1500;
Ed Swierk4885a502007-09-16 12:21:38 -0700236 dev->change_mtu = tun_net_change_mtu;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237
238 /* Zero header length */
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400239 dev->type = ARPHRD_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240 dev->flags = IFF_POINTOPOINT | IFF_NOARP | IFF_MULTICAST;
241 dev->tx_queue_len = TUN_READQ_SIZE; /* We prefer our own queue length */
242 break;
243
244 case TUN_TAP_DEV:
245 /* Ethernet TAP Device */
246 dev->set_multicast_list = tun_net_mclist;
247
248 ether_setup(dev);
Ed Swierk4885a502007-09-16 12:21:38 -0700249 dev->change_mtu = tun_net_change_mtu;
Brian Braunstein36226a82007-04-26 01:00:55 -0700250
251 /* random address already created for us by tun_set_iff, use it */
252 memcpy(dev->dev_addr, tun->dev_addr, min(sizeof(tun->dev_addr), sizeof(dev->dev_addr)) );
253
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 dev->tx_queue_len = TUN_READQ_SIZE; /* We prefer our own queue length */
255 break;
256 }
257}
258
259/* Character device part */
260
261/* Poll */
262static unsigned int tun_chr_poll(struct file *file, poll_table * wait)
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400263{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264 struct tun_struct *tun = file->private_data;
265 unsigned int mask = POLLOUT | POLLWRNORM;
266
267 if (!tun)
268 return -EBADFD;
269
270 DBG(KERN_INFO "%s: tun_chr_poll\n", tun->dev->name);
271
272 poll_wait(file, &tun->read_wait, wait);
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400273
David S. Millerb03efcf2005-07-08 14:57:23 -0700274 if (!skb_queue_empty(&tun->readq))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275 mask |= POLLIN | POLLRDNORM;
276
277 return mask;
278}
279
280/* Get packet from user space buffer */
281static __inline__ ssize_t tun_get_user(struct tun_struct *tun, struct iovec *iv, size_t count)
282{
283 struct tun_pi pi = { 0, __constant_htons(ETH_P_IP) };
284 struct sk_buff *skb;
285 size_t len = count, align = 0;
286
287 if (!(tun->flags & TUN_NO_PI)) {
288 if ((len -= sizeof(pi)) > count)
289 return -EINVAL;
290
291 if(memcpy_fromiovec((void *)&pi, iv, sizeof(pi)))
292 return -EFAULT;
293 }
294
Rusty Russelle01bf1c2008-04-12 18:49:30 -0700295 if ((tun->flags & TUN_TYPE_MASK) == TUN_TAP_DEV) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 align = NET_IP_ALIGN;
Rusty Russelle01bf1c2008-04-12 18:49:30 -0700297 if (unlikely(len < ETH_HLEN))
298 return -EINVAL;
299 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400300
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 if (!(skb = alloc_skb(len + align, GFP_KERNEL))) {
Jeff Garzik09f75cd2007-10-03 17:41:50 -0700302 tun->dev->stats.rx_dropped++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303 return -ENOMEM;
304 }
305
306 if (align)
307 skb_reserve(skb, align);
Dave Jones8f227572006-03-11 18:49:13 -0800308 if (memcpy_fromiovec(skb_put(skb, len), iv, len)) {
Jeff Garzik09f75cd2007-10-03 17:41:50 -0700309 tun->dev->stats.rx_dropped++;
Dave Jones8f227572006-03-11 18:49:13 -0800310 kfree_skb(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311 return -EFAULT;
Dave Jones8f227572006-03-11 18:49:13 -0800312 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 switch (tun->flags & TUN_TYPE_MASK) {
315 case TUN_TUN_DEV:
Arnaldo Carvalho de Melo459a98e2007-03-19 15:30:44 -0700316 skb_reset_mac_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 skb->protocol = pi.proto;
Arnaldo Carvalho de Melo4c13eb62007-04-25 17:40:23 -0700318 skb->dev = tun->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 break;
320 case TUN_TAP_DEV:
321 skb->protocol = eth_type_trans(skb, tun->dev);
322 break;
323 };
324
325 if (tun->flags & TUN_NOCHECKSUM)
326 skb->ip_summed = CHECKSUM_UNNECESSARY;
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400327
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328 netif_rx_ni(skb);
329 tun->dev->last_rx = jiffies;
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400330
Jeff Garzik09f75cd2007-10-03 17:41:50 -0700331 tun->dev->stats.rx_packets++;
332 tun->dev->stats.rx_bytes += len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333
334 return count;
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400335}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336
Badari Pulavartyee0b3e62006-09-30 23:28:47 -0700337static ssize_t tun_chr_aio_write(struct kiocb *iocb, const struct iovec *iv,
338 unsigned long count, loff_t pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339{
Badari Pulavartyee0b3e62006-09-30 23:28:47 -0700340 struct tun_struct *tun = iocb->ki_filp->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341
342 if (!tun)
343 return -EBADFD;
344
345 DBG(KERN_INFO "%s: tun_chr_write %ld\n", tun->dev->name, count);
346
Akinobu Mita52427c92007-11-19 22:46:51 -0800347 return tun_get_user(tun, (struct iovec *) iv, iov_length(iv, count));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348}
349
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350/* Put packet to the user space buffer */
351static __inline__ ssize_t tun_put_user(struct tun_struct *tun,
352 struct sk_buff *skb,
353 struct iovec *iv, int len)
354{
355 struct tun_pi pi = { 0, skb->protocol };
356 ssize_t total = 0;
357
358 if (!(tun->flags & TUN_NO_PI)) {
359 if ((len -= sizeof(pi)) < 0)
360 return -EINVAL;
361
362 if (len < skb->len) {
363 /* Packet will be striped */
364 pi.flags |= TUN_PKT_STRIP;
365 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400366
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 if (memcpy_toiovec(iv, (void *) &pi, sizeof(pi)))
368 return -EFAULT;
369 total += sizeof(pi);
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400370 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371
372 len = min_t(int, skb->len, len);
373
374 skb_copy_datagram_iovec(skb, 0, iv, len);
375 total += len;
376
Jeff Garzik09f75cd2007-10-03 17:41:50 -0700377 tun->dev->stats.tx_packets++;
378 tun->dev->stats.tx_bytes += len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379
380 return total;
381}
382
Badari Pulavartyee0b3e62006-09-30 23:28:47 -0700383static ssize_t tun_chr_aio_read(struct kiocb *iocb, const struct iovec *iv,
384 unsigned long count, loff_t pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385{
Badari Pulavartyee0b3e62006-09-30 23:28:47 -0700386 struct file *file = iocb->ki_filp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 struct tun_struct *tun = file->private_data;
388 DECLARE_WAITQUEUE(wait, current);
389 struct sk_buff *skb;
390 ssize_t len, ret = 0;
Joe Perches0795af52007-10-03 17:59:30 -0700391 DECLARE_MAC_BUF(mac);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392
393 if (!tun)
394 return -EBADFD;
395
396 DBG(KERN_INFO "%s: tun_chr_read\n", tun->dev->name);
397
Akinobu Mita52427c92007-11-19 22:46:51 -0800398 len = iov_length(iv, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 if (len < 0)
400 return -EINVAL;
401
402 add_wait_queue(&tun->read_wait, &wait);
403 while (len) {
404 const u8 ones[ ETH_ALEN] = { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff };
405 u8 addr[ ETH_ALEN];
406 int bit_nr;
407
408 current->state = TASK_INTERRUPTIBLE;
409
410 /* Read frames from the queue */
411 if (!(skb=skb_dequeue(&tun->readq))) {
412 if (file->f_flags & O_NONBLOCK) {
413 ret = -EAGAIN;
414 break;
415 }
416 if (signal_pending(current)) {
417 ret = -ERESTARTSYS;
418 break;
419 }
420
421 /* Nothing to read, let's sleep */
422 schedule();
423 continue;
424 }
425 netif_wake_queue(tun->dev);
426
427 /** Decide whether to accept this packet. This code is designed to
428 * behave identically to an Ethernet interface. Accept the packet if
429 * - we are promiscuous.
430 * - the packet is addressed to us.
431 * - the packet is broadcast.
432 * - the packet is multicast and
433 * - we are multicast promiscous.
434 * - we belong to the multicast group.
435 */
Arnaldo Carvalho de Melod626f622007-03-27 18:55:52 -0300436 skb_copy_from_linear_data(skb, addr, min_t(size_t, sizeof addr,
437 skb->len));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438 bit_nr = ether_crc(sizeof addr, addr) >> 26;
439 if ((tun->if_flags & IFF_PROMISC) ||
440 memcmp(addr, tun->dev_addr, sizeof addr) == 0 ||
441 memcmp(addr, ones, sizeof addr) == 0 ||
442 (((addr[0] == 1 && addr[1] == 0 && addr[2] == 0x5e) ||
443 (addr[0] == 0x33 && addr[1] == 0x33)) &&
444 ((tun->if_flags & IFF_ALLMULTI) ||
445 (tun->chr_filter[bit_nr >> 5] & (1 << (bit_nr & 31)))))) {
Joe Perches0795af52007-10-03 17:59:30 -0700446 DBG(KERN_DEBUG "%s: tun_chr_readv: accepted: %s\n",
447 tun->dev->name, print_mac(mac, addr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 ret = tun_put_user(tun, skb, (struct iovec *) iv, len);
449 kfree_skb(skb);
450 break;
451 } else {
Joe Perches0795af52007-10-03 17:59:30 -0700452 DBG(KERN_DEBUG "%s: tun_chr_readv: rejected: %s\n",
453 tun->dev->name, print_mac(mac, addr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454 kfree_skb(skb);
455 continue;
456 }
457 }
458
459 current->state = TASK_RUNNING;
460 remove_wait_queue(&tun->read_wait, &wait);
461
462 return ret;
463}
464
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465static void tun_setup(struct net_device *dev)
466{
467 struct tun_struct *tun = netdev_priv(dev);
468
469 skb_queue_head_init(&tun->readq);
470 init_waitqueue_head(&tun->read_wait);
471
472 tun->owner = -1;
Guido Guenther8c644622007-07-02 22:50:25 -0700473 tun->group = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475 dev->open = tun_net_open;
476 dev->hard_start_xmit = tun_net_xmit;
477 dev->stop = tun_net_close;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 dev->ethtool_ops = &tun_ethtool_ops;
479 dev->destructor = free_netdev;
480}
481
Pavel Emelyanovd647a592008-04-16 00:41:16 -0700482static struct tun_struct *tun_get_by_name(struct tun_net *tn, const char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483{
484 struct tun_struct *tun;
485
486 ASSERT_RTNL();
Pavel Emelyanovd647a592008-04-16 00:41:16 -0700487 list_for_each_entry(tun, &tn->dev_list, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 if (!strncmp(tun->dev->name, name, IFNAMSIZ))
489 return tun;
490 }
491
492 return NULL;
493}
494
Pavel Emelyanovd647a592008-04-16 00:41:16 -0700495static int tun_set_iff(struct net *net, struct file *file, struct ifreq *ifr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496{
Pavel Emelyanovd647a592008-04-16 00:41:16 -0700497 struct tun_net *tn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498 struct tun_struct *tun;
499 struct net_device *dev;
500 int err;
501
Pavel Emelyanovd647a592008-04-16 00:41:16 -0700502 tn = net_generic(net, tun_net_id);
503 tun = tun_get_by_name(tn, ifr->ifr_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504 if (tun) {
505 if (tun->attached)
506 return -EBUSY;
507
508 /* Check permissions */
Guido Guenther8c644622007-07-02 22:50:25 -0700509 if (((tun->owner != -1 &&
510 current->euid != tun->owner) ||
511 (tun->group != -1 &&
512 current->egid != tun->group)) &&
513 !capable(CAP_NET_ADMIN))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 return -EPERM;
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400515 }
Pavel Emelyanovd647a592008-04-16 00:41:16 -0700516 else if (__dev_get_by_name(net, ifr->ifr_name))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 return -EINVAL;
518 else {
519 char *name;
520 unsigned long flags = 0;
521
522 err = -EINVAL;
523
David Woodhouseca6bb5d2006-06-22 16:07:52 -0700524 if (!capable(CAP_NET_ADMIN))
525 return -EPERM;
526
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 /* Set dev type */
528 if (ifr->ifr_flags & IFF_TUN) {
529 /* TUN device */
530 flags |= TUN_TUN_DEV;
531 name = "tun%d";
532 } else if (ifr->ifr_flags & IFF_TAP) {
533 /* TAP device */
534 flags |= TUN_TAP_DEV;
535 name = "tap%d";
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400536 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537 goto failed;
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400538
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 if (*ifr->ifr_name)
540 name = ifr->ifr_name;
541
542 dev = alloc_netdev(sizeof(struct tun_struct), name,
543 tun_setup);
544 if (!dev)
545 return -ENOMEM;
546
547 tun = netdev_priv(dev);
548 tun->dev = dev;
549 tun->flags = flags;
550 /* Be promiscuous by default to maintain previous behaviour. */
551 tun->if_flags = IFF_PROMISC;
552 /* Generate random Ethernet address. */
Al Viroa3edb082007-12-22 17:52:42 +0000553 *(__be16 *)tun->dev_addr = htons(0x00FF);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554 get_random_bytes(tun->dev_addr + sizeof(u16), 4);
555 memset(tun->chr_filter, 0, sizeof tun->chr_filter);
556
557 tun_net_init(dev);
558
559 if (strchr(dev->name, '%')) {
560 err = dev_alloc_name(dev, dev->name);
561 if (err < 0)
562 goto err_free_dev;
563 }
564
565 err = register_netdevice(tun->dev);
566 if (err < 0)
567 goto err_free_dev;
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400568
Pavel Emelyanovd647a592008-04-16 00:41:16 -0700569 list_add(&tun->list, &tn->dev_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570 }
571
572 DBG(KERN_INFO "%s: tun_set_iff\n", tun->dev->name);
573
574 if (ifr->ifr_flags & IFF_NO_PI)
575 tun->flags |= TUN_NO_PI;
Nathaniel Filardoa26af1e2008-02-05 03:05:07 -0800576 else
577 tun->flags &= ~TUN_NO_PI;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578
579 if (ifr->ifr_flags & IFF_ONE_QUEUE)
580 tun->flags |= TUN_ONE_QUEUE;
Nathaniel Filardoa26af1e2008-02-05 03:05:07 -0800581 else
582 tun->flags &= ~TUN_ONE_QUEUE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583
584 file->private_data = tun;
585 tun->attached = 1;
586
587 strcpy(ifr->ifr_name, tun->dev->name);
588 return 0;
589
590 err_free_dev:
591 free_netdev(dev);
592 failed:
593 return err;
594}
595
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400596static int tun_chr_ioctl(struct inode *inode, struct file *file,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 unsigned int cmd, unsigned long arg)
598{
599 struct tun_struct *tun = file->private_data;
600 void __user* argp = (void __user*)arg;
601 struct ifreq ifr;
Joe Perches0795af52007-10-03 17:59:30 -0700602 DECLARE_MAC_BUF(mac);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603
604 if (cmd == TUNSETIFF || _IOC_TYPE(cmd) == 0x89)
605 if (copy_from_user(&ifr, argp, sizeof ifr))
606 return -EFAULT;
607
608 if (cmd == TUNSETIFF && !tun) {
609 int err;
610
611 ifr.ifr_name[IFNAMSIZ-1] = '\0';
612
613 rtnl_lock();
Pavel Emelyanovd647a592008-04-16 00:41:16 -0700614 err = tun_set_iff(current->nsproxy->net_ns, file, &ifr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615 rtnl_unlock();
616
617 if (err)
618 return err;
619
620 if (copy_to_user(argp, &ifr, sizeof(ifr)))
621 return -EFAULT;
622 return 0;
623 }
624
625 if (!tun)
626 return -EBADFD;
627
628 DBG(KERN_INFO "%s: tun_chr_ioctl cmd %d\n", tun->dev->name, cmd);
629
630 switch (cmd) {
631 case TUNSETNOCSUM:
632 /* Disable/Enable checksum */
633 if (arg)
634 tun->flags |= TUN_NOCHECKSUM;
635 else
636 tun->flags &= ~TUN_NOCHECKSUM;
637
638 DBG(KERN_INFO "%s: checksum %s\n",
639 tun->dev->name, arg ? "disabled" : "enabled");
640 break;
641
642 case TUNSETPERSIST:
643 /* Disable/Enable persist mode */
644 if (arg)
645 tun->flags |= TUN_PERSIST;
646 else
647 tun->flags &= ~TUN_PERSIST;
648
649 DBG(KERN_INFO "%s: persist %s\n",
Toyo Abec6e991d2007-12-24 21:29:35 -0800650 tun->dev->name, arg ? "enabled" : "disabled");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651 break;
652
653 case TUNSETOWNER:
654 /* Set owner of the device */
655 tun->owner = (uid_t) arg;
656
657 DBG(KERN_INFO "%s: owner set to %d\n", tun->dev->name, tun->owner);
658 break;
659
Guido Guenther8c644622007-07-02 22:50:25 -0700660 case TUNSETGROUP:
661 /* Set group of the device */
662 tun->group= (gid_t) arg;
663
664 DBG(KERN_INFO "%s: group set to %d\n", tun->dev->name, tun->group);
665 break;
666
Mike Kershawff4cc3a2005-09-01 17:40:05 -0700667 case TUNSETLINK:
668 /* Only allow setting the type when the interface is down */
669 if (tun->dev->flags & IFF_UP) {
670 DBG(KERN_INFO "%s: Linktype set failed because interface is up\n",
671 tun->dev->name);
672 return -EBUSY;
673 } else {
674 tun->dev->type = (int) arg;
675 DBG(KERN_INFO "%s: linktype set to %d\n", tun->dev->name, tun->dev->type);
676 }
677 break;
678
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679#ifdef TUN_DEBUG
680 case TUNSETDEBUG:
681 tun->debug = arg;
682 break;
683#endif
684
685 case SIOCGIFFLAGS:
686 ifr.ifr_flags = tun->if_flags;
687 if (copy_to_user( argp, &ifr, sizeof ifr))
688 return -EFAULT;
689 return 0;
690
691 case SIOCSIFFLAGS:
692 /** Set the character device's interface flags. Currently only
693 * IFF_PROMISC and IFF_ALLMULTI are used. */
694 tun->if_flags = ifr.ifr_flags;
695 DBG(KERN_INFO "%s: interface flags 0x%lx\n",
696 tun->dev->name, tun->if_flags);
697 return 0;
698
699 case SIOCGIFHWADDR:
Brian Braunstein36226a82007-04-26 01:00:55 -0700700 /* Note: the actual net device's address may be different */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701 memcpy(ifr.ifr_hwaddr.sa_data, tun->dev_addr,
702 min(sizeof ifr.ifr_hwaddr.sa_data, sizeof tun->dev_addr));
703 if (copy_to_user( argp, &ifr, sizeof ifr))
704 return -EFAULT;
705 return 0;
706
707 case SIOCSIFHWADDR:
Brian Braunstein36226a82007-04-26 01:00:55 -0700708 {
709 /* try to set the actual net device's hw address */
Kim B. Heino40102372008-02-29 12:26:21 -0800710 int ret;
711
712 rtnl_lock();
713 ret = dev_set_mac_address(tun->dev, &ifr.ifr_hwaddr);
714 rtnl_unlock();
Brian Braunstein36226a82007-04-26 01:00:55 -0700715
716 if (ret == 0) {
717 /** Set the character device's hardware address. This is used when
718 * filtering packets being sent from the network device to the character
719 * device. */
720 memcpy(tun->dev_addr, ifr.ifr_hwaddr.sa_data,
721 min(sizeof ifr.ifr_hwaddr.sa_data, sizeof tun->dev_addr));
722 DBG(KERN_DEBUG "%s: set hardware address: %x:%x:%x:%x:%x:%x\n",
723 tun->dev->name,
724 tun->dev_addr[0], tun->dev_addr[1], tun->dev_addr[2],
725 tun->dev_addr[3], tun->dev_addr[4], tun->dev_addr[5]);
726 }
727
728 return ret;
729 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730
731 case SIOCADDMULTI:
732 /** Add the specified group to the character device's multicast filter
733 * list. */
734 add_multi(tun->chr_filter, ifr.ifr_hwaddr.sa_data);
Joe Perches0795af52007-10-03 17:59:30 -0700735 DBG(KERN_DEBUG "%s: add multi: %s\n",
736 tun->dev->name, print_mac(mac, ifr.ifr_hwaddr.sa_data));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737 return 0;
738
739 case SIOCDELMULTI:
740 /** Remove the specified group from the character device's multicast
741 * filter list. */
742 del_multi(tun->chr_filter, ifr.ifr_hwaddr.sa_data);
Joe Perches0795af52007-10-03 17:59:30 -0700743 DBG(KERN_DEBUG "%s: del multi: %s\n",
744 tun->dev->name, print_mac(mac, ifr.ifr_hwaddr.sa_data));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745 return 0;
746
747 default:
748 return -EINVAL;
749 };
750
751 return 0;
752}
753
754static int tun_chr_fasync(int fd, struct file *file, int on)
755{
756 struct tun_struct *tun = file->private_data;
757 int ret;
758
759 if (!tun)
760 return -EBADFD;
761
762 DBG(KERN_INFO "%s: tun_chr_fasync %d\n", tun->dev->name, on);
763
764 if ((ret = fasync_helper(fd, file, on, &tun->fasync)) < 0)
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400765 return ret;
766
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767 if (on) {
Eric W. Biederman609d7fa2006-10-02 02:17:15 -0700768 ret = __f_setown(file, task_pid(current), PIDTYPE_PID, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769 if (ret)
770 return ret;
771 tun->flags |= TUN_FASYNC;
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400772 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773 tun->flags &= ~TUN_FASYNC;
774
775 return 0;
776}
777
778static int tun_chr_open(struct inode *inode, struct file * file)
779{
780 DBG1(KERN_INFO "tunX: tun_chr_open\n");
781 file->private_data = NULL;
782 return 0;
783}
784
785static int tun_chr_close(struct inode *inode, struct file *file)
786{
787 struct tun_struct *tun = file->private_data;
788
789 if (!tun)
790 return 0;
791
792 DBG(KERN_INFO "%s: tun_chr_close\n", tun->dev->name);
793
794 tun_chr_fasync(-1, file, 0);
795
796 rtnl_lock();
797
798 /* Detach from net device */
799 file->private_data = NULL;
800 tun->attached = 0;
801
802 /* Drop read queue */
803 skb_queue_purge(&tun->readq);
804
805 if (!(tun->flags & TUN_PERSIST)) {
806 list_del(&tun->list);
807 unregister_netdevice(tun->dev);
808 }
809
810 rtnl_unlock();
811
812 return 0;
813}
814
Arjan van de Vend54b1fd2007-02-12 00:55:34 -0800815static const struct file_operations tun_fops = {
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400816 .owner = THIS_MODULE,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817 .llseek = no_llseek,
Badari Pulavartyee0b3e62006-09-30 23:28:47 -0700818 .read = do_sync_read,
819 .aio_read = tun_chr_aio_read,
820 .write = do_sync_write,
821 .aio_write = tun_chr_aio_write,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822 .poll = tun_chr_poll,
823 .ioctl = tun_chr_ioctl,
824 .open = tun_chr_open,
825 .release = tun_chr_close,
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400826 .fasync = tun_chr_fasync
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827};
828
829static struct miscdevice tun_miscdev = {
830 .minor = TUN_MINOR,
831 .name = "tun",
832 .fops = &tun_fops,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833};
834
835/* ethtool interface */
836
837static int tun_get_settings(struct net_device *dev, struct ethtool_cmd *cmd)
838{
839 cmd->supported = 0;
840 cmd->advertising = 0;
841 cmd->speed = SPEED_10;
842 cmd->duplex = DUPLEX_FULL;
843 cmd->port = PORT_TP;
844 cmd->phy_address = 0;
845 cmd->transceiver = XCVR_INTERNAL;
846 cmd->autoneg = AUTONEG_DISABLE;
847 cmd->maxtxpkt = 0;
848 cmd->maxrxpkt = 0;
849 return 0;
850}
851
852static void tun_get_drvinfo(struct net_device *dev, struct ethtool_drvinfo *info)
853{
854 struct tun_struct *tun = netdev_priv(dev);
855
856 strcpy(info->driver, DRV_NAME);
857 strcpy(info->version, DRV_VERSION);
858 strcpy(info->fw_version, "N/A");
859
860 switch (tun->flags & TUN_TYPE_MASK) {
861 case TUN_TUN_DEV:
862 strcpy(info->bus_info, "tun");
863 break;
864 case TUN_TAP_DEV:
865 strcpy(info->bus_info, "tap");
866 break;
867 }
868}
869
870static u32 tun_get_msglevel(struct net_device *dev)
871{
872#ifdef TUN_DEBUG
873 struct tun_struct *tun = netdev_priv(dev);
874 return tun->debug;
875#else
876 return -EOPNOTSUPP;
877#endif
878}
879
880static void tun_set_msglevel(struct net_device *dev, u32 value)
881{
882#ifdef TUN_DEBUG
883 struct tun_struct *tun = netdev_priv(dev);
884 tun->debug = value;
885#endif
886}
887
888static u32 tun_get_link(struct net_device *dev)
889{
890 struct tun_struct *tun = netdev_priv(dev);
891 return tun->attached;
892}
893
894static u32 tun_get_rx_csum(struct net_device *dev)
895{
896 struct tun_struct *tun = netdev_priv(dev);
897 return (tun->flags & TUN_NOCHECKSUM) == 0;
898}
899
900static int tun_set_rx_csum(struct net_device *dev, u32 data)
901{
902 struct tun_struct *tun = netdev_priv(dev);
903 if (data)
904 tun->flags &= ~TUN_NOCHECKSUM;
905 else
906 tun->flags |= TUN_NOCHECKSUM;
907 return 0;
908}
909
Jeff Garzik7282d492006-09-13 14:30:00 -0400910static const struct ethtool_ops tun_ethtool_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911 .get_settings = tun_get_settings,
912 .get_drvinfo = tun_get_drvinfo,
913 .get_msglevel = tun_get_msglevel,
914 .set_msglevel = tun_set_msglevel,
915 .get_link = tun_get_link,
916 .get_rx_csum = tun_get_rx_csum,
917 .set_rx_csum = tun_set_rx_csum
918};
919
Pavel Emelyanov79d17602008-04-16 00:40:46 -0700920static int tun_init_net(struct net *net)
921{
922 struct tun_net *tn;
923
924 tn = kmalloc(sizeof(*tn), GFP_KERNEL);
925 if (tn == NULL)
926 return -ENOMEM;
927
928 INIT_LIST_HEAD(&tn->dev_list);
929
930 if (net_assign_generic(net, tun_net_id, tn)) {
931 kfree(tn);
932 return -ENOMEM;
933 }
934
935 return 0;
936}
937
938static void tun_exit_net(struct net *net)
939{
940 struct tun_net *tn;
Pavel Emelyanovd647a592008-04-16 00:41:16 -0700941 struct tun_struct *tun, *nxt;
Pavel Emelyanov79d17602008-04-16 00:40:46 -0700942
943 tn = net_generic(net, tun_net_id);
Pavel Emelyanovd647a592008-04-16 00:41:16 -0700944
945 rtnl_lock();
946 list_for_each_entry_safe(tun, nxt, &tn->dev_list, list) {
947 DBG(KERN_INFO "%s cleaned up\n", tun->dev->name);
948 unregister_netdevice(tun->dev);
949 }
950 rtnl_unlock();
951
Pavel Emelyanov79d17602008-04-16 00:40:46 -0700952 kfree(tn);
953}
954
955static struct pernet_operations tun_net_ops = {
956 .init = tun_init_net,
957 .exit = tun_exit_net,
958};
959
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960static int __init tun_init(void)
961{
962 int ret = 0;
963
964 printk(KERN_INFO "tun: %s, %s\n", DRV_DESCRIPTION, DRV_VERSION);
965 printk(KERN_INFO "tun: %s\n", DRV_COPYRIGHT);
966
Pavel Emelyanov79d17602008-04-16 00:40:46 -0700967 ret = register_pernet_gen_device(&tun_net_id, &tun_net_ops);
968 if (ret) {
969 printk(KERN_ERR "tun: Can't register pernet ops\n");
970 goto err_pernet;
971 }
972
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973 ret = misc_register(&tun_miscdev);
Pavel Emelyanov79d17602008-04-16 00:40:46 -0700974 if (ret) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975 printk(KERN_ERR "tun: Can't register misc device %d\n", TUN_MINOR);
Pavel Emelyanov79d17602008-04-16 00:40:46 -0700976 goto err_misc;
977 }
978 return 0;
979
980err_misc:
981 unregister_pernet_gen_device(tun_net_id, &tun_net_ops);
982err_pernet:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983 return ret;
984}
985
986static void tun_cleanup(void)
987{
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400988 misc_deregister(&tun_miscdev);
Pavel Emelyanov79d17602008-04-16 00:40:46 -0700989 unregister_pernet_gen_device(tun_net_id, &tun_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990}
991
992module_init(tun_init);
993module_exit(tun_cleanup);
994MODULE_DESCRIPTION(DRV_DESCRIPTION);
995MODULE_AUTHOR(DRV_COPYRIGHT);
996MODULE_LICENSE("GPL");
997MODULE_ALIAS_MISCDEV(TUN_MINOR);