]> git.ipfire.org Git - thirdparty/linux.git/blame - drivers/net/tun.c
[TUN]: Introduce the tun_net structure and init/exit net ops.
[thirdparty/linux.git] / drivers / net / tun.c
CommitLineData
1da177e4
LT
1/*
2 * TUN - Universal TUN/TAP device driver.
3 * Copyright (C) 1999-2002 Maxim Krasnyansky <maxk@qualcomm.com>
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * $Id: tun.c,v 1.15 2002/03/01 02:44:24 maxk Exp $
16 */
17
18/*
19 * Changes:
20 *
36226a8d
BB
21 * 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 *
ff4cc3ac
MK
25 * Mike Kershaw <dragorn@kismetwireless.net> 2005/08/14
26 * Add TUNSETLINK ioctl to set the link encapsulation
27 *
1da177e4
LT
28 * 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
1da177e4
LT
46#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>
881d966b 65#include <net/net_namespace.h>
79d17604 66#include <net/netns/generic.h>
1da177e4
LT
67
68#include <asm/system.h>
69#include <asm/uaccess.h>
70
14daa021
RR
71/* Uncomment to enable debugging */
72/* #define TUN_DEBUG 1 */
73
1da177e4
LT
74#ifdef TUN_DEBUG
75static int debug;
14daa021
RR
76
77#define DBG if(tun->debug)printk
78#define DBG1 if(debug==2)printk
79#else
80#define DBG( a... )
81#define DBG1( a... )
82#endif
83
84struct tun_struct {
85 struct list_head list;
86 unsigned long flags;
87 int attached;
88 uid_t owner;
89 gid_t group;
90
91 wait_queue_head_t read_wait;
92 struct sk_buff_head readq;
93
94 struct net_device *dev;
95
96 struct fasync_struct *fasync;
97
98 unsigned long if_flags;
99 u8 dev_addr[ETH_ALEN];
100 u32 chr_filter[2];
101 u32 net_filter[2];
102
103#ifdef TUN_DEBUG
104 int debug;
1da177e4 105#endif
14daa021 106};
1da177e4
LT
107
108/* Network device part of the driver */
109
79d17604
PE
110static unsigned int tun_net_id;
111struct tun_net {
112 struct list_head dev_list;
113};
114
1da177e4 115static LIST_HEAD(tun_dev_list);
7282d491 116static const struct ethtool_ops tun_ethtool_ops;
1da177e4
LT
117
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. */
09f75cd7 152 dev->stats.tx_fifo_errors++;
1da177e4
LT
153 } 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:
09f75cd7 171 dev->stats.tx_dropped++;
1da177e4
LT
172 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;
0795af57 201 DECLARE_MAC_BUF(mac);
1da177e4
LT
202 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);
0795af57
JP
208 DBG(KERN_DEBUG "%s: tun_net_mclist: %s\n",
209 dev->name, print_mac(mac, mclist->dmi_addr));
1da177e4
LT
210 }
211}
212
4885a504
ES
213#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
1da177e4
LT
225/* Initialize net device. */
226static void tun_net_init(struct net_device *dev)
227{
228 struct tun_struct *tun = netdev_priv(dev);
6aa20a22 229
1da177e4
LT
230 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;
4885a504 236 dev->change_mtu = tun_net_change_mtu;
1da177e4
LT
237
238 /* Zero header length */
6aa20a22 239 dev->type = ARPHRD_NONE;
1da177e4
LT
240 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);
4885a504 249 dev->change_mtu = tun_net_change_mtu;
36226a8d
BB
250
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
1da177e4
LT
254 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)
6aa20a22 263{
1da177e4
LT
264 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);
6aa20a22 273
b03efcfb 274 if (!skb_queue_empty(&tun->readq))
1da177e4
LT
275 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
e01bf1c8 295 if ((tun->flags & TUN_TYPE_MASK) == TUN_TAP_DEV) {
1da177e4 296 align = NET_IP_ALIGN;
e01bf1c8
RR
297 if (unlikely(len < ETH_HLEN))
298 return -EINVAL;
299 }
6aa20a22 300
1da177e4 301 if (!(skb = alloc_skb(len + align, GFP_KERNEL))) {
09f75cd7 302 tun->dev->stats.rx_dropped++;
1da177e4
LT
303 return -ENOMEM;
304 }
305
306 if (align)
307 skb_reserve(skb, align);
8f22757e 308 if (memcpy_fromiovec(skb_put(skb, len), iv, len)) {
09f75cd7 309 tun->dev->stats.rx_dropped++;
8f22757e 310 kfree_skb(skb);
1da177e4 311 return -EFAULT;
8f22757e 312 }
1da177e4 313
1da177e4
LT
314 switch (tun->flags & TUN_TYPE_MASK) {
315 case TUN_TUN_DEV:
459a98ed 316 skb_reset_mac_header(skb);
1da177e4 317 skb->protocol = pi.proto;
4c13eb66 318 skb->dev = tun->dev;
1da177e4
LT
319 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;
6aa20a22 327
1da177e4
LT
328 netif_rx_ni(skb);
329 tun->dev->last_rx = jiffies;
6aa20a22 330
09f75cd7
JG
331 tun->dev->stats.rx_packets++;
332 tun->dev->stats.rx_bytes += len;
1da177e4
LT
333
334 return count;
6aa20a22 335}
1da177e4 336
ee0b3e67
BP
337static ssize_t tun_chr_aio_write(struct kiocb *iocb, const struct iovec *iv,
338 unsigned long count, loff_t pos)
1da177e4 339{
ee0b3e67 340 struct tun_struct *tun = iocb->ki_filp->private_data;
1da177e4
LT
341
342 if (!tun)
343 return -EBADFD;
344
345 DBG(KERN_INFO "%s: tun_chr_write %ld\n", tun->dev->name, count);
346
52427c9d 347 return tun_get_user(tun, (struct iovec *) iv, iov_length(iv, count));
1da177e4
LT
348}
349
1da177e4
LT
350/* 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 }
6aa20a22 366
1da177e4
LT
367 if (memcpy_toiovec(iv, (void *) &pi, sizeof(pi)))
368 return -EFAULT;
369 total += sizeof(pi);
6aa20a22 370 }
1da177e4
LT
371
372 len = min_t(int, skb->len, len);
373
374 skb_copy_datagram_iovec(skb, 0, iv, len);
375 total += len;
376
09f75cd7
JG
377 tun->dev->stats.tx_packets++;
378 tun->dev->stats.tx_bytes += len;
1da177e4
LT
379
380 return total;
381}
382
ee0b3e67
BP
383static ssize_t tun_chr_aio_read(struct kiocb *iocb, const struct iovec *iv,
384 unsigned long count, loff_t pos)
1da177e4 385{
ee0b3e67 386 struct file *file = iocb->ki_filp;
1da177e4
LT
387 struct tun_struct *tun = file->private_data;
388 DECLARE_WAITQUEUE(wait, current);
389 struct sk_buff *skb;
390 ssize_t len, ret = 0;
0795af57 391 DECLARE_MAC_BUF(mac);
1da177e4
LT
392
393 if (!tun)
394 return -EBADFD;
395
396 DBG(KERN_INFO "%s: tun_chr_read\n", tun->dev->name);
397
52427c9d 398 len = iov_length(iv, count);
1da177e4
LT
399 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 */
d626f62b
ACM
436 skb_copy_from_linear_data(skb, addr, min_t(size_t, sizeof addr,
437 skb->len));
1da177e4
LT
438 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)))))) {
0795af57
JP
446 DBG(KERN_DEBUG "%s: tun_chr_readv: accepted: %s\n",
447 tun->dev->name, print_mac(mac, addr));
1da177e4
LT
448 ret = tun_put_user(tun, skb, (struct iovec *) iv, len);
449 kfree_skb(skb);
450 break;
451 } else {
0795af57
JP
452 DBG(KERN_DEBUG "%s: tun_chr_readv: rejected: %s\n",
453 tun->dev->name, print_mac(mac, addr));
1da177e4
LT
454 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
1da177e4
LT
465static 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;
8c644623 473 tun->group = -1;
1da177e4 474
1da177e4
LT
475 dev->open = tun_net_open;
476 dev->hard_start_xmit = tun_net_xmit;
477 dev->stop = tun_net_close;
1da177e4
LT
478 dev->ethtool_ops = &tun_ethtool_ops;
479 dev->destructor = free_netdev;
480}
481
482static struct tun_struct *tun_get_by_name(const char *name)
483{
484 struct tun_struct *tun;
485
486 ASSERT_RTNL();
487 list_for_each_entry(tun, &tun_dev_list, list) {
488 if (!strncmp(tun->dev->name, name, IFNAMSIZ))
489 return tun;
490 }
491
492 return NULL;
493}
494
495static int tun_set_iff(struct file *file, struct ifreq *ifr)
496{
497 struct tun_struct *tun;
498 struct net_device *dev;
499 int err;
500
501 tun = tun_get_by_name(ifr->ifr_name);
502 if (tun) {
503 if (tun->attached)
504 return -EBUSY;
505
506 /* Check permissions */
8c644623
GG
507 if (((tun->owner != -1 &&
508 current->euid != tun->owner) ||
509 (tun->group != -1 &&
510 current->egid != tun->group)) &&
511 !capable(CAP_NET_ADMIN))
1da177e4 512 return -EPERM;
6aa20a22 513 }
881d966b 514 else if (__dev_get_by_name(&init_net, ifr->ifr_name))
1da177e4
LT
515 return -EINVAL;
516 else {
517 char *name;
518 unsigned long flags = 0;
519
520 err = -EINVAL;
521
ca6bb5d7
DW
522 if (!capable(CAP_NET_ADMIN))
523 return -EPERM;
524
1da177e4
LT
525 /* Set dev type */
526 if (ifr->ifr_flags & IFF_TUN) {
527 /* TUN device */
528 flags |= TUN_TUN_DEV;
529 name = "tun%d";
530 } else if (ifr->ifr_flags & IFF_TAP) {
531 /* TAP device */
532 flags |= TUN_TAP_DEV;
533 name = "tap%d";
6aa20a22 534 } else
1da177e4 535 goto failed;
6aa20a22 536
1da177e4
LT
537 if (*ifr->ifr_name)
538 name = ifr->ifr_name;
539
540 dev = alloc_netdev(sizeof(struct tun_struct), name,
541 tun_setup);
542 if (!dev)
543 return -ENOMEM;
544
545 tun = netdev_priv(dev);
546 tun->dev = dev;
547 tun->flags = flags;
548 /* Be promiscuous by default to maintain previous behaviour. */
549 tun->if_flags = IFF_PROMISC;
550 /* Generate random Ethernet address. */
a3edb083 551 *(__be16 *)tun->dev_addr = htons(0x00FF);
1da177e4
LT
552 get_random_bytes(tun->dev_addr + sizeof(u16), 4);
553 memset(tun->chr_filter, 0, sizeof tun->chr_filter);
554
555 tun_net_init(dev);
556
557 if (strchr(dev->name, '%')) {
558 err = dev_alloc_name(dev, dev->name);
559 if (err < 0)
560 goto err_free_dev;
561 }
562
563 err = register_netdevice(tun->dev);
564 if (err < 0)
565 goto err_free_dev;
6aa20a22 566
1da177e4
LT
567 list_add(&tun->list, &tun_dev_list);
568 }
569
570 DBG(KERN_INFO "%s: tun_set_iff\n", tun->dev->name);
571
572 if (ifr->ifr_flags & IFF_NO_PI)
573 tun->flags |= TUN_NO_PI;
a26af1e0
NF
574 else
575 tun->flags &= ~TUN_NO_PI;
1da177e4
LT
576
577 if (ifr->ifr_flags & IFF_ONE_QUEUE)
578 tun->flags |= TUN_ONE_QUEUE;
a26af1e0
NF
579 else
580 tun->flags &= ~TUN_ONE_QUEUE;
1da177e4
LT
581
582 file->private_data = tun;
583 tun->attached = 1;
584
585 strcpy(ifr->ifr_name, tun->dev->name);
586 return 0;
587
588 err_free_dev:
589 free_netdev(dev);
590 failed:
591 return err;
592}
593
6aa20a22 594static int tun_chr_ioctl(struct inode *inode, struct file *file,
1da177e4
LT
595 unsigned int cmd, unsigned long arg)
596{
597 struct tun_struct *tun = file->private_data;
598 void __user* argp = (void __user*)arg;
599 struct ifreq ifr;
0795af57 600 DECLARE_MAC_BUF(mac);
1da177e4
LT
601
602 if (cmd == TUNSETIFF || _IOC_TYPE(cmd) == 0x89)
603 if (copy_from_user(&ifr, argp, sizeof ifr))
604 return -EFAULT;
605
606 if (cmd == TUNSETIFF && !tun) {
607 int err;
608
609 ifr.ifr_name[IFNAMSIZ-1] = '\0';
610
611 rtnl_lock();
612 err = tun_set_iff(file, &ifr);
613 rtnl_unlock();
614
615 if (err)
616 return err;
617
618 if (copy_to_user(argp, &ifr, sizeof(ifr)))
619 return -EFAULT;
620 return 0;
621 }
622
623 if (!tun)
624 return -EBADFD;
625
626 DBG(KERN_INFO "%s: tun_chr_ioctl cmd %d\n", tun->dev->name, cmd);
627
628 switch (cmd) {
629 case TUNSETNOCSUM:
630 /* Disable/Enable checksum */
631 if (arg)
632 tun->flags |= TUN_NOCHECKSUM;
633 else
634 tun->flags &= ~TUN_NOCHECKSUM;
635
636 DBG(KERN_INFO "%s: checksum %s\n",
637 tun->dev->name, arg ? "disabled" : "enabled");
638 break;
639
640 case TUNSETPERSIST:
641 /* Disable/Enable persist mode */
642 if (arg)
643 tun->flags |= TUN_PERSIST;
644 else
645 tun->flags &= ~TUN_PERSIST;
646
647 DBG(KERN_INFO "%s: persist %s\n",
c6e991de 648 tun->dev->name, arg ? "enabled" : "disabled");
1da177e4
LT
649 break;
650
651 case TUNSETOWNER:
652 /* Set owner of the device */
653 tun->owner = (uid_t) arg;
654
655 DBG(KERN_INFO "%s: owner set to %d\n", tun->dev->name, tun->owner);
656 break;
657
8c644623
GG
658 case TUNSETGROUP:
659 /* Set group of the device */
660 tun->group= (gid_t) arg;
661
662 DBG(KERN_INFO "%s: group set to %d\n", tun->dev->name, tun->group);
663 break;
664
ff4cc3ac
MK
665 case TUNSETLINK:
666 /* Only allow setting the type when the interface is down */
667 if (tun->dev->flags & IFF_UP) {
668 DBG(KERN_INFO "%s: Linktype set failed because interface is up\n",
669 tun->dev->name);
670 return -EBUSY;
671 } else {
672 tun->dev->type = (int) arg;
673 DBG(KERN_INFO "%s: linktype set to %d\n", tun->dev->name, tun->dev->type);
674 }
675 break;
676
1da177e4
LT
677#ifdef TUN_DEBUG
678 case TUNSETDEBUG:
679 tun->debug = arg;
680 break;
681#endif
682
683 case SIOCGIFFLAGS:
684 ifr.ifr_flags = tun->if_flags;
685 if (copy_to_user( argp, &ifr, sizeof ifr))
686 return -EFAULT;
687 return 0;
688
689 case SIOCSIFFLAGS:
690 /** Set the character device's interface flags. Currently only
691 * IFF_PROMISC and IFF_ALLMULTI are used. */
692 tun->if_flags = ifr.ifr_flags;
693 DBG(KERN_INFO "%s: interface flags 0x%lx\n",
694 tun->dev->name, tun->if_flags);
695 return 0;
696
697 case SIOCGIFHWADDR:
36226a8d 698 /* Note: the actual net device's address may be different */
1da177e4
LT
699 memcpy(ifr.ifr_hwaddr.sa_data, tun->dev_addr,
700 min(sizeof ifr.ifr_hwaddr.sa_data, sizeof tun->dev_addr));
701 if (copy_to_user( argp, &ifr, sizeof ifr))
702 return -EFAULT;
703 return 0;
704
705 case SIOCSIFHWADDR:
36226a8d
BB
706 {
707 /* try to set the actual net device's hw address */
40102371
KH
708 int ret;
709
710 rtnl_lock();
711 ret = dev_set_mac_address(tun->dev, &ifr.ifr_hwaddr);
712 rtnl_unlock();
36226a8d
BB
713
714 if (ret == 0) {
715 /** Set the character device's hardware address. This is used when
716 * filtering packets being sent from the network device to the character
717 * device. */
718 memcpy(tun->dev_addr, ifr.ifr_hwaddr.sa_data,
719 min(sizeof ifr.ifr_hwaddr.sa_data, sizeof tun->dev_addr));
720 DBG(KERN_DEBUG "%s: set hardware address: %x:%x:%x:%x:%x:%x\n",
721 tun->dev->name,
722 tun->dev_addr[0], tun->dev_addr[1], tun->dev_addr[2],
723 tun->dev_addr[3], tun->dev_addr[4], tun->dev_addr[5]);
724 }
725
726 return ret;
727 }
1da177e4
LT
728
729 case SIOCADDMULTI:
730 /** Add the specified group to the character device's multicast filter
731 * list. */
732 add_multi(tun->chr_filter, ifr.ifr_hwaddr.sa_data);
0795af57
JP
733 DBG(KERN_DEBUG "%s: add multi: %s\n",
734 tun->dev->name, print_mac(mac, ifr.ifr_hwaddr.sa_data));
1da177e4
LT
735 return 0;
736
737 case SIOCDELMULTI:
738 /** Remove the specified group from the character device's multicast
739 * filter list. */
740 del_multi(tun->chr_filter, ifr.ifr_hwaddr.sa_data);
0795af57
JP
741 DBG(KERN_DEBUG "%s: del multi: %s\n",
742 tun->dev->name, print_mac(mac, ifr.ifr_hwaddr.sa_data));
1da177e4
LT
743 return 0;
744
745 default:
746 return -EINVAL;
747 };
748
749 return 0;
750}
751
752static int tun_chr_fasync(int fd, struct file *file, int on)
753{
754 struct tun_struct *tun = file->private_data;
755 int ret;
756
757 if (!tun)
758 return -EBADFD;
759
760 DBG(KERN_INFO "%s: tun_chr_fasync %d\n", tun->dev->name, on);
761
762 if ((ret = fasync_helper(fd, file, on, &tun->fasync)) < 0)
6aa20a22
JG
763 return ret;
764
1da177e4 765 if (on) {
609d7fa9 766 ret = __f_setown(file, task_pid(current), PIDTYPE_PID, 0);
1da177e4
LT
767 if (ret)
768 return ret;
769 tun->flags |= TUN_FASYNC;
6aa20a22 770 } else
1da177e4
LT
771 tun->flags &= ~TUN_FASYNC;
772
773 return 0;
774}
775
776static int tun_chr_open(struct inode *inode, struct file * file)
777{
778 DBG1(KERN_INFO "tunX: tun_chr_open\n");
779 file->private_data = NULL;
780 return 0;
781}
782
783static int tun_chr_close(struct inode *inode, struct file *file)
784{
785 struct tun_struct *tun = file->private_data;
786
787 if (!tun)
788 return 0;
789
790 DBG(KERN_INFO "%s: tun_chr_close\n", tun->dev->name);
791
792 tun_chr_fasync(-1, file, 0);
793
794 rtnl_lock();
795
796 /* Detach from net device */
797 file->private_data = NULL;
798 tun->attached = 0;
799
800 /* Drop read queue */
801 skb_queue_purge(&tun->readq);
802
803 if (!(tun->flags & TUN_PERSIST)) {
804 list_del(&tun->list);
805 unregister_netdevice(tun->dev);
806 }
807
808 rtnl_unlock();
809
810 return 0;
811}
812
d54b1fdb 813static const struct file_operations tun_fops = {
6aa20a22 814 .owner = THIS_MODULE,
1da177e4 815 .llseek = no_llseek,
ee0b3e67
BP
816 .read = do_sync_read,
817 .aio_read = tun_chr_aio_read,
818 .write = do_sync_write,
819 .aio_write = tun_chr_aio_write,
1da177e4
LT
820 .poll = tun_chr_poll,
821 .ioctl = tun_chr_ioctl,
822 .open = tun_chr_open,
823 .release = tun_chr_close,
6aa20a22 824 .fasync = tun_chr_fasync
1da177e4
LT
825};
826
827static struct miscdevice tun_miscdev = {
828 .minor = TUN_MINOR,
829 .name = "tun",
830 .fops = &tun_fops,
1da177e4
LT
831};
832
833/* ethtool interface */
834
835static int tun_get_settings(struct net_device *dev, struct ethtool_cmd *cmd)
836{
837 cmd->supported = 0;
838 cmd->advertising = 0;
839 cmd->speed = SPEED_10;
840 cmd->duplex = DUPLEX_FULL;
841 cmd->port = PORT_TP;
842 cmd->phy_address = 0;
843 cmd->transceiver = XCVR_INTERNAL;
844 cmd->autoneg = AUTONEG_DISABLE;
845 cmd->maxtxpkt = 0;
846 cmd->maxrxpkt = 0;
847 return 0;
848}
849
850static void tun_get_drvinfo(struct net_device *dev, struct ethtool_drvinfo *info)
851{
852 struct tun_struct *tun = netdev_priv(dev);
853
854 strcpy(info->driver, DRV_NAME);
855 strcpy(info->version, DRV_VERSION);
856 strcpy(info->fw_version, "N/A");
857
858 switch (tun->flags & TUN_TYPE_MASK) {
859 case TUN_TUN_DEV:
860 strcpy(info->bus_info, "tun");
861 break;
862 case TUN_TAP_DEV:
863 strcpy(info->bus_info, "tap");
864 break;
865 }
866}
867
868static u32 tun_get_msglevel(struct net_device *dev)
869{
870#ifdef TUN_DEBUG
871 struct tun_struct *tun = netdev_priv(dev);
872 return tun->debug;
873#else
874 return -EOPNOTSUPP;
875#endif
876}
877
878static void tun_set_msglevel(struct net_device *dev, u32 value)
879{
880#ifdef TUN_DEBUG
881 struct tun_struct *tun = netdev_priv(dev);
882 tun->debug = value;
883#endif
884}
885
886static u32 tun_get_link(struct net_device *dev)
887{
888 struct tun_struct *tun = netdev_priv(dev);
889 return tun->attached;
890}
891
892static u32 tun_get_rx_csum(struct net_device *dev)
893{
894 struct tun_struct *tun = netdev_priv(dev);
895 return (tun->flags & TUN_NOCHECKSUM) == 0;
896}
897
898static int tun_set_rx_csum(struct net_device *dev, u32 data)
899{
900 struct tun_struct *tun = netdev_priv(dev);
901 if (data)
902 tun->flags &= ~TUN_NOCHECKSUM;
903 else
904 tun->flags |= TUN_NOCHECKSUM;
905 return 0;
906}
907
7282d491 908static const struct ethtool_ops tun_ethtool_ops = {
1da177e4
LT
909 .get_settings = tun_get_settings,
910 .get_drvinfo = tun_get_drvinfo,
911 .get_msglevel = tun_get_msglevel,
912 .set_msglevel = tun_set_msglevel,
913 .get_link = tun_get_link,
914 .get_rx_csum = tun_get_rx_csum,
915 .set_rx_csum = tun_set_rx_csum
916};
917
79d17604
PE
918static int tun_init_net(struct net *net)
919{
920 struct tun_net *tn;
921
922 tn = kmalloc(sizeof(*tn), GFP_KERNEL);
923 if (tn == NULL)
924 return -ENOMEM;
925
926 INIT_LIST_HEAD(&tn->dev_list);
927
928 if (net_assign_generic(net, tun_net_id, tn)) {
929 kfree(tn);
930 return -ENOMEM;
931 }
932
933 return 0;
934}
935
936static void tun_exit_net(struct net *net)
937{
938 struct tun_net *tn;
939
940 tn = net_generic(net, tun_net_id);
941 kfree(tn);
942}
943
944static struct pernet_operations tun_net_ops = {
945 .init = tun_init_net,
946 .exit = tun_exit_net,
947};
948
1da177e4
LT
949static int __init tun_init(void)
950{
951 int ret = 0;
952
953 printk(KERN_INFO "tun: %s, %s\n", DRV_DESCRIPTION, DRV_VERSION);
954 printk(KERN_INFO "tun: %s\n", DRV_COPYRIGHT);
955
79d17604
PE
956 ret = register_pernet_gen_device(&tun_net_id, &tun_net_ops);
957 if (ret) {
958 printk(KERN_ERR "tun: Can't register pernet ops\n");
959 goto err_pernet;
960 }
961
1da177e4 962 ret = misc_register(&tun_miscdev);
79d17604 963 if (ret) {
1da177e4 964 printk(KERN_ERR "tun: Can't register misc device %d\n", TUN_MINOR);
79d17604
PE
965 goto err_misc;
966 }
967 return 0;
968
969err_misc:
970 unregister_pernet_gen_device(tun_net_id, &tun_net_ops);
971err_pernet:
1da177e4
LT
972 return ret;
973}
974
975static void tun_cleanup(void)
976{
977 struct tun_struct *tun, *nxt;
978
6aa20a22 979 misc_deregister(&tun_miscdev);
1da177e4
LT
980
981 rtnl_lock();
982 list_for_each_entry_safe(tun, nxt, &tun_dev_list, list) {
983 DBG(KERN_INFO "%s cleaned up\n", tun->dev->name);
984 unregister_netdevice(tun->dev);
985 }
986 rtnl_unlock();
6aa20a22 987
79d17604 988 unregister_pernet_gen_device(tun_net_id, &tun_net_ops);
1da177e4
LT
989}
990
991module_init(tun_init);
992module_exit(tun_cleanup);
993MODULE_DESCRIPTION(DRV_DESCRIPTION);
994MODULE_AUTHOR(DRV_COPYRIGHT);
995MODULE_LICENSE("GPL");
996MODULE_ALIAS_MISCDEV(TUN_MINOR);