blob: 9c59a82784dc0b5ae16b36fa12549f670801fe05 [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 Krasnyanskyf271b2c2008-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>
47#include <linux/poll.h>
48#include <linux/fcntl.h>
49#include <linux/init.h>
50#include <linux/skbuff.h>
51#include <linux/netdevice.h>
52#include <linux/etherdevice.h>
53#include <linux/miscdevice.h>
54#include <linux/ethtool.h>
55#include <linux/rtnetlink.h>
56#include <linux/if.h>
57#include <linux/if_arp.h>
58#include <linux/if_ether.h>
59#include <linux/if_tun.h>
60#include <linux/crc32.h>
Pavel Emelyanovd647a592008-04-16 00:41:16 -070061#include <linux/nsproxy.h>
Rusty Russellf43798c2008-07-03 03:48:02 -070062#include <linux/virtio_net.h>
Eric W. Biederman881d9662007-09-17 11:56:21 -070063#include <net/net_namespace.h>
Pavel Emelyanov79d17602008-04-16 00:40:46 -070064#include <net/netns/generic.h>
Eric W. Biedermanf019a7a2009-01-21 16:02:16 -080065#include <net/rtnetlink.h>
Herbert Xu33dccbb2009-02-05 21:25:32 -080066#include <net/sock.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070067
68#include <asm/system.h>
69#include <asm/uaccess.h>
70
Rusty Russell14daa022008-04-12 18:48:58 -070071/* Uncomment to enable debugging */
72/* #define TUN_DEBUG 1 */
73
Linus Torvalds1da177e2005-04-16 15:20:36 -070074#ifdef TUN_DEBUG
75static int debug;
Rusty Russell14daa022008-04-12 18:48:58 -070076
77#define DBG if(tun->debug)printk
78#define DBG1 if(debug==2)printk
79#else
80#define DBG( a... )
81#define DBG1( a... )
Linus Torvalds1da177e2005-04-16 15:20:36 -070082#endif
83
Max Krasnyanskyf271b2c2008-07-14 22:18:19 -070084#define FLT_EXACT_COUNT 8
85struct tap_filter {
86 unsigned int count; /* Number of addrs. Zero means disabled */
87 u32 mask[2]; /* Mask of the hashed addrs */
88 unsigned char addr[FLT_EXACT_COUNT][ETH_ALEN];
89};
90
Eric W. Biederman631ab462009-01-20 11:00:40 +000091struct tun_file {
Eric W. Biedermanc70f1822009-01-20 11:07:17 +000092 atomic_t count;
Eric W. Biederman631ab462009-01-20 11:00:40 +000093 struct tun_struct *tun;
Eric W. Biederman36b50ba2009-01-20 11:01:48 +000094 struct net *net;
Eric W. Biederman631ab462009-01-20 11:00:40 +000095};
96
Herbert Xu33dccbb2009-02-05 21:25:32 -080097struct tun_sock;
98
Rusty Russell14daa022008-04-12 18:48:58 -070099struct tun_struct {
Eric W. Biederman631ab462009-01-20 11:00:40 +0000100 struct tun_file *tfile;
Max Krasnyanskyf271b2c2008-07-14 22:18:19 -0700101 unsigned int flags;
Rusty Russell14daa022008-04-12 18:48:58 -0700102 uid_t owner;
103 gid_t group;
104
Rusty Russell14daa022008-04-12 18:48:58 -0700105 struct net_device *dev;
Max Krasnyanskyf271b2c2008-07-14 22:18:19 -0700106 struct fasync_struct *fasync;
Rusty Russell14daa022008-04-12 18:48:58 -0700107
Max Krasnyanskyf271b2c2008-07-14 22:18:19 -0700108 struct tap_filter txflt;
Herbert Xu33dccbb2009-02-05 21:25:32 -0800109 struct socket socket;
Rusty Russell14daa022008-04-12 18:48:58 -0700110
111#ifdef TUN_DEBUG
112 int debug;
113#endif
114};
115
Herbert Xu33dccbb2009-02-05 21:25:32 -0800116struct tun_sock {
117 struct sock sk;
118 struct tun_struct *tun;
119};
120
121static inline struct tun_sock *tun_sk(struct sock *sk)
122{
123 return container_of(sk, struct tun_sock, sk);
124}
125
Eric W. Biedermana7385ba2009-01-20 10:57:48 +0000126static int tun_attach(struct tun_struct *tun, struct file *file)
127{
Eric W. Biederman631ab462009-01-20 11:00:40 +0000128 struct tun_file *tfile = file->private_data;
Eric W. Biederman38231b72009-01-20 11:02:28 +0000129 int err;
Eric W. Biedermana7385ba2009-01-20 10:57:48 +0000130
131 ASSERT_RTNL();
132
Eric W. Biederman38231b72009-01-20 11:02:28 +0000133 netif_tx_lock_bh(tun->dev);
134
135 err = -EINVAL;
136 if (tfile->tun)
137 goto out;
138
139 err = -EBUSY;
140 if (tun->tfile)
141 goto out;
142
143 err = 0;
Eric W. Biederman631ab462009-01-20 11:00:40 +0000144 tfile->tun = tun;
145 tun->tfile = tfile;
Eric W. Biedermanc70f1822009-01-20 11:07:17 +0000146 dev_hold(tun->dev);
Michael S. Tsirkin89f56d12009-08-30 07:04:42 +0000147 sock_hold(tun->socket.sk);
Eric W. Biedermanc70f1822009-01-20 11:07:17 +0000148 atomic_inc(&tfile->count);
Eric W. Biedermana7385ba2009-01-20 10:57:48 +0000149
Eric W. Biederman38231b72009-01-20 11:02:28 +0000150out:
151 netif_tx_unlock_bh(tun->dev);
152 return err;
Eric W. Biedermana7385ba2009-01-20 10:57:48 +0000153}
154
Eric W. Biederman631ab462009-01-20 11:00:40 +0000155static void __tun_detach(struct tun_struct *tun)
156{
Eric W. Biederman631ab462009-01-20 11:00:40 +0000157 /* Detach from net device */
Eric W. Biederman38231b72009-01-20 11:02:28 +0000158 netif_tx_lock_bh(tun->dev);
Eric W. Biederman631ab462009-01-20 11:00:40 +0000159 tun->tfile = NULL;
Eric W. Biederman38231b72009-01-20 11:02:28 +0000160 netif_tx_unlock_bh(tun->dev);
Eric W. Biederman631ab462009-01-20 11:00:40 +0000161
162 /* Drop read queue */
Michael S. Tsirkin89f56d12009-08-30 07:04:42 +0000163 skb_queue_purge(&tun->socket.sk->sk_receive_queue);
Eric W. Biedermanc70f1822009-01-20 11:07:17 +0000164
165 /* Drop the extra count on the net device */
166 dev_put(tun->dev);
167}
168
169static void tun_detach(struct tun_struct *tun)
170{
171 rtnl_lock();
172 __tun_detach(tun);
173 rtnl_unlock();
Eric W. Biederman631ab462009-01-20 11:00:40 +0000174}
175
176static struct tun_struct *__tun_get(struct tun_file *tfile)
177{
Eric W. Biedermanc70f1822009-01-20 11:07:17 +0000178 struct tun_struct *tun = NULL;
179
180 if (atomic_inc_not_zero(&tfile->count))
181 tun = tfile->tun;
182
183 return tun;
Eric W. Biederman631ab462009-01-20 11:00:40 +0000184}
185
186static struct tun_struct *tun_get(struct file *file)
187{
188 return __tun_get(file->private_data);
189}
190
191static void tun_put(struct tun_struct *tun)
192{
Eric W. Biedermanc70f1822009-01-20 11:07:17 +0000193 struct tun_file *tfile = tun->tfile;
194
195 if (atomic_dec_and_test(&tfile->count))
196 tun_detach(tfile->tun);
Eric W. Biederman631ab462009-01-20 11:00:40 +0000197}
198
Max Krasnyanskyf271b2c2008-07-14 22:18:19 -0700199/* TAP filterting */
200static void addr_hash_set(u32 *mask, const u8 *addr)
201{
202 int n = ether_crc(ETH_ALEN, addr) >> 26;
203 mask[n >> 5] |= (1 << (n & 31));
204}
205
206static unsigned int addr_hash_test(const u32 *mask, const u8 *addr)
207{
208 int n = ether_crc(ETH_ALEN, addr) >> 26;
209 return mask[n >> 5] & (1 << (n & 31));
210}
211
212static int update_filter(struct tap_filter *filter, void __user *arg)
213{
214 struct { u8 u[ETH_ALEN]; } *addr;
215 struct tun_filter uf;
216 int err, alen, n, nexact;
217
218 if (copy_from_user(&uf, arg, sizeof(uf)))
219 return -EFAULT;
220
221 if (!uf.count) {
222 /* Disabled */
223 filter->count = 0;
224 return 0;
225 }
226
227 alen = ETH_ALEN * uf.count;
228 addr = kmalloc(alen, GFP_KERNEL);
229 if (!addr)
230 return -ENOMEM;
231
232 if (copy_from_user(addr, arg + sizeof(uf), alen)) {
233 err = -EFAULT;
234 goto done;
235 }
236
237 /* The filter is updated without holding any locks. Which is
238 * perfectly safe. We disable it first and in the worst
239 * case we'll accept a few undesired packets. */
240 filter->count = 0;
241 wmb();
242
243 /* Use first set of addresses as an exact filter */
244 for (n = 0; n < uf.count && n < FLT_EXACT_COUNT; n++)
245 memcpy(filter->addr[n], addr[n].u, ETH_ALEN);
246
247 nexact = n;
248
Alex Williamsoncfbf84f2009-02-08 17:49:17 -0800249 /* Remaining multicast addresses are hashed,
250 * unicast will leave the filter disabled. */
Max Krasnyanskyf271b2c2008-07-14 22:18:19 -0700251 memset(filter->mask, 0, sizeof(filter->mask));
Alex Williamsoncfbf84f2009-02-08 17:49:17 -0800252 for (; n < uf.count; n++) {
253 if (!is_multicast_ether_addr(addr[n].u)) {
254 err = 0; /* no filter */
255 goto done;
256 }
Max Krasnyanskyf271b2c2008-07-14 22:18:19 -0700257 addr_hash_set(filter->mask, addr[n].u);
Alex Williamsoncfbf84f2009-02-08 17:49:17 -0800258 }
Max Krasnyanskyf271b2c2008-07-14 22:18:19 -0700259
260 /* For ALLMULTI just set the mask to all ones.
261 * This overrides the mask populated above. */
262 if ((uf.flags & TUN_FLT_ALLMULTI))
263 memset(filter->mask, ~0, sizeof(filter->mask));
264
265 /* Now enable the filter */
266 wmb();
267 filter->count = nexact;
268
269 /* Return the number of exact filters */
270 err = nexact;
271
272done:
273 kfree(addr);
274 return err;
275}
276
277/* Returns: 0 - drop, !=0 - accept */
278static int run_filter(struct tap_filter *filter, const struct sk_buff *skb)
279{
280 /* Cannot use eth_hdr(skb) here because skb_mac_hdr() is incorrect
281 * at this point. */
282 struct ethhdr *eh = (struct ethhdr *) skb->data;
283 int i;
284
285 /* Exact match */
286 for (i = 0; i < filter->count; i++)
287 if (!compare_ether_addr(eh->h_dest, filter->addr[i]))
288 return 1;
289
290 /* Inexact match (multicast only) */
291 if (is_multicast_ether_addr(eh->h_dest))
292 return addr_hash_test(filter->mask, eh->h_dest);
293
294 return 0;
295}
296
297/*
298 * Checks whether the packet is accepted or not.
299 * Returns: 0 - drop, !=0 - accept
300 */
301static int check_filter(struct tap_filter *filter, const struct sk_buff *skb)
302{
303 if (!filter->count)
304 return 1;
305
306 return run_filter(filter, skb);
307}
308
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309/* Network device part of the driver */
310
Jeff Garzik7282d492006-09-13 14:30:00 -0400311static const struct ethtool_ops tun_ethtool_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312
Eric W. Biedermanc70f1822009-01-20 11:07:17 +0000313/* Net device detach from fd. */
314static void tun_net_uninit(struct net_device *dev)
315{
316 struct tun_struct *tun = netdev_priv(dev);
317 struct tun_file *tfile = tun->tfile;
318
319 /* Inform the methods they need to stop using the dev.
320 */
321 if (tfile) {
Herbert Xuc40af842009-04-19 22:35:50 +0000322 wake_up_all(&tun->socket.wait);
Eric W. Biedermanc70f1822009-01-20 11:07:17 +0000323 if (atomic_dec_and_test(&tfile->count))
324 __tun_detach(tun);
325 }
326}
327
Herbert Xu9c3fea62009-04-18 14:15:52 +0000328static void tun_free_netdev(struct net_device *dev)
329{
330 struct tun_struct *tun = netdev_priv(dev);
331
Michael S. Tsirkin89f56d12009-08-30 07:04:42 +0000332 sock_put(tun->socket.sk);
Herbert Xu9c3fea62009-04-18 14:15:52 +0000333}
334
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335/* Net device open. */
336static int tun_net_open(struct net_device *dev)
337{
338 netif_start_queue(dev);
339 return 0;
340}
341
342/* Net device close. */
343static int tun_net_close(struct net_device *dev)
344{
345 netif_stop_queue(dev);
346 return 0;
347}
348
349/* Net device start xmit */
Stephen Hemminger424efe92009-08-31 19:50:51 +0000350static netdev_tx_t tun_net_xmit(struct sk_buff *skb, struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351{
352 struct tun_struct *tun = netdev_priv(dev);
353
354 DBG(KERN_INFO "%s: tun_net_xmit %d\n", tun->dev->name, skb->len);
355
356 /* Drop packet if interface is not attached */
Eric W. Biederman631ab462009-01-20 11:00:40 +0000357 if (!tun->tfile)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358 goto drop;
359
Max Krasnyanskyf271b2c2008-07-14 22:18:19 -0700360 /* Drop if the filter does not like it.
361 * This is a noop if the filter is disabled.
362 * Filter can be enabled only for the TAP devices. */
363 if (!check_filter(&tun->txflt, skb))
364 goto drop;
365
Michael S. Tsirkin89f56d12009-08-30 07:04:42 +0000366 if (skb_queue_len(&tun->socket.sk->sk_receive_queue) >= dev->tx_queue_len) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 if (!(tun->flags & TUN_ONE_QUEUE)) {
368 /* Normal queueing mode. */
369 /* Packet scheduler handles dropping of further packets. */
370 netif_stop_queue(dev);
371
372 /* We won't see all dropped packets individually, so overrun
373 * error is more appropriate. */
Jeff Garzik09f75cd2007-10-03 17:41:50 -0700374 dev->stats.tx_fifo_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 } else {
376 /* Single queue mode.
377 * Driver handles dropping of all packets itself. */
378 goto drop;
379 }
380 }
381
Max Krasnyanskyf271b2c2008-07-14 22:18:19 -0700382 /* Enqueue packet */
Michael S. Tsirkin89f56d12009-08-30 07:04:42 +0000383 skb_queue_tail(&tun->socket.sk->sk_receive_queue, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 dev->trans_start = jiffies;
385
386 /* Notify and wake up reader process */
387 if (tun->flags & TUN_FASYNC)
388 kill_fasync(&tun->fasync, SIGIO, POLL_IN);
Herbert Xuc40af842009-04-19 22:35:50 +0000389 wake_up_interruptible(&tun->socket.wait);
Patrick McHardy6ed10652009-06-23 06:03:08 +0000390 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391
392drop:
Jeff Garzik09f75cd2007-10-03 17:41:50 -0700393 dev->stats.tx_dropped++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 kfree_skb(skb);
Patrick McHardy6ed10652009-06-23 06:03:08 +0000395 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396}
397
Max Krasnyanskyf271b2c2008-07-14 22:18:19 -0700398static void tun_net_mclist(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399{
Max Krasnyanskyf271b2c2008-07-14 22:18:19 -0700400 /*
401 * This callback is supposed to deal with mc filter in
402 * _rx_ path and has nothing to do with the _tx_ path.
403 * In rx path we always accept everything userspace gives us.
404 */
405 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406}
407
Ed Swierk4885a502007-09-16 12:21:38 -0700408#define MIN_MTU 68
409#define MAX_MTU 65535
410
411static int
412tun_net_change_mtu(struct net_device *dev, int new_mtu)
413{
414 if (new_mtu < MIN_MTU || new_mtu + dev->hard_header_len > MAX_MTU)
415 return -EINVAL;
416 dev->mtu = new_mtu;
417 return 0;
418}
419
Stephen Hemminger758e43b2008-11-19 22:10:37 -0800420static const struct net_device_ops tun_netdev_ops = {
Eric W. Biedermanc70f1822009-01-20 11:07:17 +0000421 .ndo_uninit = tun_net_uninit,
Stephen Hemminger758e43b2008-11-19 22:10:37 -0800422 .ndo_open = tun_net_open,
423 .ndo_stop = tun_net_close,
Stephen Hemminger00829822008-11-20 20:14:53 -0800424 .ndo_start_xmit = tun_net_xmit,
Stephen Hemminger758e43b2008-11-19 22:10:37 -0800425 .ndo_change_mtu = tun_net_change_mtu,
Stephen Hemminger758e43b2008-11-19 22:10:37 -0800426};
427
428static const struct net_device_ops tap_netdev_ops = {
Eric W. Biedermanc70f1822009-01-20 11:07:17 +0000429 .ndo_uninit = tun_net_uninit,
Stephen Hemminger758e43b2008-11-19 22:10:37 -0800430 .ndo_open = tun_net_open,
431 .ndo_stop = tun_net_close,
Stephen Hemminger00829822008-11-20 20:14:53 -0800432 .ndo_start_xmit = tun_net_xmit,
Stephen Hemminger758e43b2008-11-19 22:10:37 -0800433 .ndo_change_mtu = tun_net_change_mtu,
434 .ndo_set_multicast_list = tun_net_mclist,
435 .ndo_set_mac_address = eth_mac_addr,
436 .ndo_validate_addr = eth_validate_addr,
437};
438
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439/* Initialize net device. */
440static void tun_net_init(struct net_device *dev)
441{
442 struct tun_struct *tun = netdev_priv(dev);
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400443
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444 switch (tun->flags & TUN_TYPE_MASK) {
445 case TUN_TUN_DEV:
Stephen Hemminger758e43b2008-11-19 22:10:37 -0800446 dev->netdev_ops = &tun_netdev_ops;
447
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 /* Point-to-Point TUN Device */
449 dev->hard_header_len = 0;
450 dev->addr_len = 0;
451 dev->mtu = 1500;
452
453 /* Zero header length */
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400454 dev->type = ARPHRD_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 dev->flags = IFF_POINTOPOINT | IFF_NOARP | IFF_MULTICAST;
456 dev->tx_queue_len = TUN_READQ_SIZE; /* We prefer our own queue length */
457 break;
458
459 case TUN_TAP_DEV:
Kusanagi Kouichi7a0a9602008-12-29 18:23:28 -0800460 dev->netdev_ops = &tap_netdev_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461 /* Ethernet TAP Device */
Max Krasnyanskyf271b2c2008-07-14 22:18:19 -0700462 ether_setup(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463
Max Krasnyanskyf271b2c2008-07-14 22:18:19 -0700464 random_ether_addr(dev->dev_addr);
Brian Braunstein36226a82007-04-26 01:00:55 -0700465
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466 dev->tx_queue_len = TUN_READQ_SIZE; /* We prefer our own queue length */
467 break;
468 }
469}
470
471/* Character device part */
472
473/* Poll */
474static unsigned int tun_chr_poll(struct file *file, poll_table * wait)
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400475{
Eric W. Biedermanb2430de2009-01-20 11:03:21 +0000476 struct tun_file *tfile = file->private_data;
477 struct tun_struct *tun = __tun_get(tfile);
Mariusz Kozlowski3c8a9c62009-07-05 19:48:35 +0000478 struct sock *sk;
Herbert Xu33dccbb2009-02-05 21:25:32 -0800479 unsigned int mask = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480
481 if (!tun)
Eric W. Biedermaneac9e902009-01-20 10:59:05 +0000482 return POLLERR;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483
Michael S. Tsirkin89f56d12009-08-30 07:04:42 +0000484 sk = tun->socket.sk;
Mariusz Kozlowski3c8a9c62009-07-05 19:48:35 +0000485
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486 DBG(KERN_INFO "%s: tun_chr_poll\n", tun->dev->name);
487
Herbert Xuc40af842009-04-19 22:35:50 +0000488 poll_wait(file, &tun->socket.wait, wait);
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400489
Michael S. Tsirkin89f56d12009-08-30 07:04:42 +0000490 if (!skb_queue_empty(&sk->sk_receive_queue))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 mask |= POLLIN | POLLRDNORM;
492
Herbert Xu33dccbb2009-02-05 21:25:32 -0800493 if (sock_writeable(sk) ||
494 (!test_and_set_bit(SOCK_ASYNC_NOSPACE, &sk->sk_socket->flags) &&
495 sock_writeable(sk)))
496 mask |= POLLOUT | POLLWRNORM;
497
Eric W. Biedermanc70f1822009-01-20 11:07:17 +0000498 if (tun->dev->reg_state != NETREG_REGISTERED)
499 mask = POLLERR;
500
Eric W. Biederman631ab462009-01-20 11:00:40 +0000501 tun_put(tun);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502 return mask;
503}
504
Rusty Russellf42157c2008-08-15 15:15:10 -0700505/* prepad is the amount to reserve at front. len is length after that.
506 * linear is a hint as to how much to copy (usually headers). */
Herbert Xu33dccbb2009-02-05 21:25:32 -0800507static inline struct sk_buff *tun_alloc_skb(struct tun_struct *tun,
508 size_t prepad, size_t len,
509 size_t linear, int noblock)
Rusty Russellf42157c2008-08-15 15:15:10 -0700510{
Michael S. Tsirkin89f56d12009-08-30 07:04:42 +0000511 struct sock *sk = tun->socket.sk;
Rusty Russellf42157c2008-08-15 15:15:10 -0700512 struct sk_buff *skb;
Herbert Xu33dccbb2009-02-05 21:25:32 -0800513 int err;
Rusty Russellf42157c2008-08-15 15:15:10 -0700514
515 /* Under a page? Don't bother with paged skb. */
Herbert Xu0eca93b2009-04-14 02:09:43 -0700516 if (prepad + len < PAGE_SIZE || !linear)
Herbert Xu33dccbb2009-02-05 21:25:32 -0800517 linear = len;
Rusty Russellf42157c2008-08-15 15:15:10 -0700518
Herbert Xu33dccbb2009-02-05 21:25:32 -0800519 skb = sock_alloc_send_pskb(sk, prepad + linear, len - linear, noblock,
520 &err);
Rusty Russellf42157c2008-08-15 15:15:10 -0700521 if (!skb)
Herbert Xu33dccbb2009-02-05 21:25:32 -0800522 return ERR_PTR(err);
Rusty Russellf42157c2008-08-15 15:15:10 -0700523
524 skb_reserve(skb, prepad);
525 skb_put(skb, linear);
Herbert Xu33dccbb2009-02-05 21:25:32 -0800526 skb->data_len = len - linear;
527 skb->len += len - linear;
Rusty Russellf42157c2008-08-15 15:15:10 -0700528
529 return skb;
530}
531
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532/* Get packet from user space buffer */
Herbert Xu33dccbb2009-02-05 21:25:32 -0800533static __inline__ ssize_t tun_get_user(struct tun_struct *tun,
Michael S. Tsirkin6f26c9a2009-04-20 01:26:11 +0000534 const struct iovec *iv, size_t count,
Herbert Xu33dccbb2009-02-05 21:25:32 -0800535 int noblock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536{
Harvey Harrison09640e62009-02-01 00:45:17 -0800537 struct tun_pi pi = { 0, cpu_to_be16(ETH_P_IP) };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 struct sk_buff *skb;
539 size_t len = count, align = 0;
Rusty Russellf43798c2008-07-03 03:48:02 -0700540 struct virtio_net_hdr gso = { 0 };
Michael S. Tsirkin6f26c9a2009-04-20 01:26:11 +0000541 int offset = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542
543 if (!(tun->flags & TUN_NO_PI)) {
544 if ((len -= sizeof(pi)) > count)
545 return -EINVAL;
546
Michael S. Tsirkin6f26c9a2009-04-20 01:26:11 +0000547 if (memcpy_fromiovecend((void *)&pi, iv, 0, sizeof(pi)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 return -EFAULT;
Michael S. Tsirkin6f26c9a2009-04-20 01:26:11 +0000549 offset += sizeof(pi);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550 }
551
Rusty Russellf43798c2008-07-03 03:48:02 -0700552 if (tun->flags & TUN_VNET_HDR) {
553 if ((len -= sizeof(gso)) > count)
554 return -EINVAL;
555
Michael S. Tsirkin6f26c9a2009-04-20 01:26:11 +0000556 if (memcpy_fromiovecend((void *)&gso, iv, offset, sizeof(gso)))
Rusty Russellf43798c2008-07-03 03:48:02 -0700557 return -EFAULT;
558
Herbert Xu49091222009-06-08 00:20:01 -0700559 if ((gso.flags & VIRTIO_NET_HDR_F_NEEDS_CSUM) &&
560 gso.csum_start + gso.csum_offset + 2 > gso.hdr_len)
561 gso.hdr_len = gso.csum_start + gso.csum_offset + 2;
562
Rusty Russellf43798c2008-07-03 03:48:02 -0700563 if (gso.hdr_len > len)
564 return -EINVAL;
Sridhar Samudrala6f536f42009-06-08 00:27:28 -0700565 offset += sizeof(gso);
Rusty Russellf43798c2008-07-03 03:48:02 -0700566 }
567
Rusty Russelle01bf1c2008-04-12 18:49:30 -0700568 if ((tun->flags & TUN_TYPE_MASK) == TUN_TAP_DEV) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569 align = NET_IP_ALIGN;
Herbert Xu0eca93b2009-04-14 02:09:43 -0700570 if (unlikely(len < ETH_HLEN ||
571 (gso.hdr_len && gso.hdr_len < ETH_HLEN)))
Rusty Russelle01bf1c2008-04-12 18:49:30 -0700572 return -EINVAL;
573 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400574
Herbert Xu33dccbb2009-02-05 21:25:32 -0800575 skb = tun_alloc_skb(tun, align, len, gso.hdr_len, noblock);
576 if (IS_ERR(skb)) {
577 if (PTR_ERR(skb) != -EAGAIN)
578 tun->dev->stats.rx_dropped++;
579 return PTR_ERR(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580 }
581
Michael S. Tsirkin6f26c9a2009-04-20 01:26:11 +0000582 if (skb_copy_datagram_from_iovec(skb, 0, iv, offset, len)) {
Jeff Garzik09f75cd2007-10-03 17:41:50 -0700583 tun->dev->stats.rx_dropped++;
Dave Jones8f227572006-03-11 18:49:13 -0800584 kfree_skb(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585 return -EFAULT;
Dave Jones8f227572006-03-11 18:49:13 -0800586 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587
Rusty Russellf43798c2008-07-03 03:48:02 -0700588 if (gso.flags & VIRTIO_NET_HDR_F_NEEDS_CSUM) {
589 if (!skb_partial_csum_set(skb, gso.csum_start,
590 gso.csum_offset)) {
591 tun->dev->stats.rx_frame_errors++;
592 kfree_skb(skb);
593 return -EINVAL;
594 }
595 } else if (tun->flags & TUN_NOCHECKSUM)
596 skb->ip_summed = CHECKSUM_UNNECESSARY;
597
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598 switch (tun->flags & TUN_TYPE_MASK) {
599 case TUN_TUN_DEV:
Ang Way Chuangf09f7ee2008-06-17 21:10:33 -0700600 if (tun->flags & TUN_NO_PI) {
601 switch (skb->data[0] & 0xf0) {
602 case 0x40:
603 pi.proto = htons(ETH_P_IP);
604 break;
605 case 0x60:
606 pi.proto = htons(ETH_P_IPV6);
607 break;
608 default:
609 tun->dev->stats.rx_dropped++;
610 kfree_skb(skb);
611 return -EINVAL;
612 }
613 }
614
Arnaldo Carvalho de Melo459a98e2007-03-19 15:30:44 -0700615 skb_reset_mac_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616 skb->protocol = pi.proto;
Arnaldo Carvalho de Melo4c13eb62007-04-25 17:40:23 -0700617 skb->dev = tun->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618 break;
619 case TUN_TAP_DEV:
620 skb->protocol = eth_type_trans(skb, tun->dev);
621 break;
622 };
623
Rusty Russellf43798c2008-07-03 03:48:02 -0700624 if (gso.gso_type != VIRTIO_NET_HDR_GSO_NONE) {
625 pr_debug("GSO!\n");
626 switch (gso.gso_type & ~VIRTIO_NET_HDR_GSO_ECN) {
627 case VIRTIO_NET_HDR_GSO_TCPV4:
628 skb_shinfo(skb)->gso_type = SKB_GSO_TCPV4;
629 break;
630 case VIRTIO_NET_HDR_GSO_TCPV6:
631 skb_shinfo(skb)->gso_type = SKB_GSO_TCPV6;
632 break;
Sridhar Samudralae36aa252009-07-14 14:21:04 +0000633 case VIRTIO_NET_HDR_GSO_UDP:
634 skb_shinfo(skb)->gso_type = SKB_GSO_UDP;
635 break;
Rusty Russellf43798c2008-07-03 03:48:02 -0700636 default:
637 tun->dev->stats.rx_frame_errors++;
638 kfree_skb(skb);
639 return -EINVAL;
640 }
641
642 if (gso.gso_type & VIRTIO_NET_HDR_GSO_ECN)
643 skb_shinfo(skb)->gso_type |= SKB_GSO_TCP_ECN;
644
645 skb_shinfo(skb)->gso_size = gso.gso_size;
646 if (skb_shinfo(skb)->gso_size == 0) {
647 tun->dev->stats.rx_frame_errors++;
648 kfree_skb(skb);
649 return -EINVAL;
650 }
651
652 /* Header must be checked, and gso_segs computed. */
653 skb_shinfo(skb)->gso_type |= SKB_GSO_DODGY;
654 skb_shinfo(skb)->gso_segs = 0;
655 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400656
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657 netif_rx_ni(skb);
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400658
Jeff Garzik09f75cd2007-10-03 17:41:50 -0700659 tun->dev->stats.rx_packets++;
660 tun->dev->stats.rx_bytes += len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661
662 return count;
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400663}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664
Badari Pulavartyee0b3e62006-09-30 23:28:47 -0700665static ssize_t tun_chr_aio_write(struct kiocb *iocb, const struct iovec *iv,
666 unsigned long count, loff_t pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667{
Herbert Xu33dccbb2009-02-05 21:25:32 -0800668 struct file *file = iocb->ki_filp;
Herbert Xuab46d772009-02-14 20:46:39 -0800669 struct tun_struct *tun = tun_get(file);
Eric W. Biederman631ab462009-01-20 11:00:40 +0000670 ssize_t result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671
672 if (!tun)
673 return -EBADFD;
674
675 DBG(KERN_INFO "%s: tun_chr_write %ld\n", tun->dev->name, count);
676
Michael S. Tsirkin6f26c9a2009-04-20 01:26:11 +0000677 result = tun_get_user(tun, iv, iov_length(iv, count),
Herbert Xu33dccbb2009-02-05 21:25:32 -0800678 file->f_flags & O_NONBLOCK);
Eric W. Biederman631ab462009-01-20 11:00:40 +0000679
680 tun_put(tun);
681 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682}
683
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684/* Put packet to the user space buffer */
685static __inline__ ssize_t tun_put_user(struct tun_struct *tun,
686 struct sk_buff *skb,
Michael S. Tsirkin43b39dc2009-04-20 01:25:59 +0000687 const struct iovec *iv, int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688{
689 struct tun_pi pi = { 0, skb->protocol };
690 ssize_t total = 0;
691
692 if (!(tun->flags & TUN_NO_PI)) {
693 if ((len -= sizeof(pi)) < 0)
694 return -EINVAL;
695
696 if (len < skb->len) {
697 /* Packet will be striped */
698 pi.flags |= TUN_PKT_STRIP;
699 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400700
Michael S. Tsirkin43b39dc2009-04-20 01:25:59 +0000701 if (memcpy_toiovecend(iv, (void *) &pi, 0, sizeof(pi)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702 return -EFAULT;
703 total += sizeof(pi);
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400704 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705
Rusty Russellf43798c2008-07-03 03:48:02 -0700706 if (tun->flags & TUN_VNET_HDR) {
707 struct virtio_net_hdr gso = { 0 }; /* no info leak */
708 if ((len -= sizeof(gso)) < 0)
709 return -EINVAL;
710
711 if (skb_is_gso(skb)) {
712 struct skb_shared_info *sinfo = skb_shinfo(skb);
713
714 /* This is a hint as to how much should be linear. */
715 gso.hdr_len = skb_headlen(skb);
716 gso.gso_size = sinfo->gso_size;
717 if (sinfo->gso_type & SKB_GSO_TCPV4)
718 gso.gso_type = VIRTIO_NET_HDR_GSO_TCPV4;
719 else if (sinfo->gso_type & SKB_GSO_TCPV6)
720 gso.gso_type = VIRTIO_NET_HDR_GSO_TCPV6;
Sridhar Samudralae36aa252009-07-14 14:21:04 +0000721 else if (sinfo->gso_type & SKB_GSO_UDP)
722 gso.gso_type = VIRTIO_NET_HDR_GSO_UDP;
Rusty Russellf43798c2008-07-03 03:48:02 -0700723 else
724 BUG();
725 if (sinfo->gso_type & SKB_GSO_TCP_ECN)
726 gso.gso_type |= VIRTIO_NET_HDR_GSO_ECN;
727 } else
728 gso.gso_type = VIRTIO_NET_HDR_GSO_NONE;
729
730 if (skb->ip_summed == CHECKSUM_PARTIAL) {
731 gso.flags = VIRTIO_NET_HDR_F_NEEDS_CSUM;
732 gso.csum_start = skb->csum_start - skb_headroom(skb);
733 gso.csum_offset = skb->csum_offset;
734 } /* else everything is zero */
735
Michael S. Tsirkin43b39dc2009-04-20 01:25:59 +0000736 if (unlikely(memcpy_toiovecend(iv, (void *)&gso, total,
737 sizeof(gso))))
Rusty Russellf43798c2008-07-03 03:48:02 -0700738 return -EFAULT;
739 total += sizeof(gso);
740 }
741
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742 len = min_t(int, skb->len, len);
743
Michael S. Tsirkin43b39dc2009-04-20 01:25:59 +0000744 skb_copy_datagram_const_iovec(skb, 0, iv, total, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745 total += len;
746
Jeff Garzik09f75cd2007-10-03 17:41:50 -0700747 tun->dev->stats.tx_packets++;
748 tun->dev->stats.tx_bytes += len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749
750 return total;
751}
752
Badari Pulavartyee0b3e62006-09-30 23:28:47 -0700753static ssize_t tun_chr_aio_read(struct kiocb *iocb, const struct iovec *iv,
754 unsigned long count, loff_t pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755{
Badari Pulavartyee0b3e62006-09-30 23:28:47 -0700756 struct file *file = iocb->ki_filp;
Eric W. Biedermanb2430de2009-01-20 11:03:21 +0000757 struct tun_file *tfile = file->private_data;
758 struct tun_struct *tun = __tun_get(tfile);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759 DECLARE_WAITQUEUE(wait, current);
760 struct sk_buff *skb;
761 ssize_t len, ret = 0;
762
763 if (!tun)
764 return -EBADFD;
765
766 DBG(KERN_INFO "%s: tun_chr_read\n", tun->dev->name);
767
Akinobu Mita52427c92007-11-19 22:46:51 -0800768 len = iov_length(iv, count);
Eric W. Biederman631ab462009-01-20 11:00:40 +0000769 if (len < 0) {
770 ret = -EINVAL;
771 goto out;
772 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773
Herbert Xuc40af842009-04-19 22:35:50 +0000774 add_wait_queue(&tun->socket.wait, &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775 while (len) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776 current->state = TASK_INTERRUPTIBLE;
777
778 /* Read frames from the queue */
Michael S. Tsirkin89f56d12009-08-30 07:04:42 +0000779 if (!(skb=skb_dequeue(&tun->socket.sk->sk_receive_queue))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780 if (file->f_flags & O_NONBLOCK) {
781 ret = -EAGAIN;
782 break;
783 }
784 if (signal_pending(current)) {
785 ret = -ERESTARTSYS;
786 break;
787 }
Eric W. Biedermanc70f1822009-01-20 11:07:17 +0000788 if (tun->dev->reg_state != NETREG_REGISTERED) {
789 ret = -EIO;
790 break;
791 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792
793 /* Nothing to read, let's sleep */
794 schedule();
795 continue;
796 }
797 netif_wake_queue(tun->dev);
798
Michael S. Tsirkin43b39dc2009-04-20 01:25:59 +0000799 ret = tun_put_user(tun, skb, iv, len);
Max Krasnyanskyf271b2c2008-07-14 22:18:19 -0700800 kfree_skb(skb);
801 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802 }
803
804 current->state = TASK_RUNNING;
Herbert Xuc40af842009-04-19 22:35:50 +0000805 remove_wait_queue(&tun->socket.wait, &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806
Eric W. Biederman631ab462009-01-20 11:00:40 +0000807out:
808 tun_put(tun);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809 return ret;
810}
811
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812static void tun_setup(struct net_device *dev)
813{
814 struct tun_struct *tun = netdev_priv(dev);
815
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816 tun->owner = -1;
Guido Guenther8c644622007-07-02 22:50:25 -0700817 tun->group = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819 dev->ethtool_ops = &tun_ethtool_ops;
Herbert Xu9c3fea62009-04-18 14:15:52 +0000820 dev->destructor = tun_free_netdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821}
822
Eric W. Biedermanf019a7a2009-01-21 16:02:16 -0800823/* Trivial set of netlink ops to allow deleting tun or tap
824 * device with netlink.
825 */
826static int tun_validate(struct nlattr *tb[], struct nlattr *data[])
827{
828 return -EINVAL;
829}
830
831static struct rtnl_link_ops tun_link_ops __read_mostly = {
832 .kind = DRV_NAME,
833 .priv_size = sizeof(struct tun_struct),
834 .setup = tun_setup,
835 .validate = tun_validate,
836};
837
Herbert Xu33dccbb2009-02-05 21:25:32 -0800838static void tun_sock_write_space(struct sock *sk)
839{
840 struct tun_struct *tun;
841
842 if (!sock_writeable(sk))
843 return;
844
Herbert Xu33dccbb2009-02-05 21:25:32 -0800845 if (!test_and_clear_bit(SOCK_ASYNC_NOSPACE, &sk->sk_socket->flags))
846 return;
847
Herbert Xuc722c622009-06-03 21:45:55 -0700848 if (sk->sk_sleep && waitqueue_active(sk->sk_sleep))
849 wake_up_interruptible_sync(sk->sk_sleep);
850
Herbert Xu33dccbb2009-02-05 21:25:32 -0800851 tun = container_of(sk, struct tun_sock, sk)->tun;
852 kill_fasync(&tun->fasync, SIGIO, POLL_OUT);
853}
854
855static void tun_sock_destruct(struct sock *sk)
856{
Herbert Xu9c3fea62009-04-18 14:15:52 +0000857 free_netdev(container_of(sk, struct tun_sock, sk)->tun->dev);
Herbert Xu33dccbb2009-02-05 21:25:32 -0800858}
859
860static struct proto tun_proto = {
861 .name = "tun",
862 .owner = THIS_MODULE,
863 .obj_size = sizeof(struct tun_sock),
864};
Eric W. Biedermanf019a7a2009-01-21 16:02:16 -0800865
David Woodhouse980c9e82009-05-09 22:54:21 -0700866static int tun_flags(struct tun_struct *tun)
867{
868 int flags = 0;
869
870 if (tun->flags & TUN_TUN_DEV)
871 flags |= IFF_TUN;
872 else
873 flags |= IFF_TAP;
874
875 if (tun->flags & TUN_NO_PI)
876 flags |= IFF_NO_PI;
877
878 if (tun->flags & TUN_ONE_QUEUE)
879 flags |= IFF_ONE_QUEUE;
880
881 if (tun->flags & TUN_VNET_HDR)
882 flags |= IFF_VNET_HDR;
883
884 return flags;
885}
886
887static ssize_t tun_show_flags(struct device *dev, struct device_attribute *attr,
888 char *buf)
889{
890 struct tun_struct *tun = netdev_priv(to_net_dev(dev));
891 return sprintf(buf, "0x%x\n", tun_flags(tun));
892}
893
894static ssize_t tun_show_owner(struct device *dev, struct device_attribute *attr,
895 char *buf)
896{
897 struct tun_struct *tun = netdev_priv(to_net_dev(dev));
898 return sprintf(buf, "%d\n", tun->owner);
899}
900
901static ssize_t tun_show_group(struct device *dev, struct device_attribute *attr,
902 char *buf)
903{
904 struct tun_struct *tun = netdev_priv(to_net_dev(dev));
905 return sprintf(buf, "%d\n", tun->group);
906}
907
908static DEVICE_ATTR(tun_flags, 0444, tun_show_flags, NULL);
909static DEVICE_ATTR(owner, 0444, tun_show_owner, NULL);
910static DEVICE_ATTR(group, 0444, tun_show_group, NULL);
911
Pavel Emelyanovd647a592008-04-16 00:41:16 -0700912static int tun_set_iff(struct net *net, struct file *file, struct ifreq *ifr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913{
Herbert Xu33dccbb2009-02-05 21:25:32 -0800914 struct sock *sk;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915 struct tun_struct *tun;
916 struct net_device *dev;
917 int err;
918
Eric W. Biederman74a3e5a2009-01-20 10:56:20 +0000919 dev = __dev_get_by_name(net, ifr->ifr_name);
920 if (dev) {
Paul Moore2b980db2009-08-28 18:12:43 -0400921 const struct cred *cred = current_cred();
922
David Woodhousef85ba782009-04-27 03:23:54 -0700923 if (ifr->ifr_flags & IFF_TUN_EXCL)
924 return -EBUSY;
Eric W. Biederman74a3e5a2009-01-20 10:56:20 +0000925 if ((ifr->ifr_flags & IFF_TUN) && dev->netdev_ops == &tun_netdev_ops)
926 tun = netdev_priv(dev);
927 else if ((ifr->ifr_flags & IFF_TAP) && dev->netdev_ops == &tap_netdev_ops)
928 tun = netdev_priv(dev);
929 else
930 return -EINVAL;
931
Paul Moore2b980db2009-08-28 18:12:43 -0400932 if (((tun->owner != -1 && cred->euid != tun->owner) ||
933 (tun->group != -1 && !in_egroup_p(tun->group))) &&
934 !capable(CAP_NET_ADMIN))
935 return -EPERM;
Linus Torvaldsd7e96602009-09-14 10:37:28 -0700936 err = security_tun_dev_attach(tun->socket.sk);
Paul Moore2b980db2009-08-28 18:12:43 -0400937 if (err < 0)
938 return err;
939
Eric W. Biedermana7385ba2009-01-20 10:57:48 +0000940 err = tun_attach(tun, file);
941 if (err < 0)
942 return err;
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400943 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944 else {
945 char *name;
946 unsigned long flags = 0;
947
David Woodhouseca6bb5d2006-06-22 16:07:52 -0700948 if (!capable(CAP_NET_ADMIN))
949 return -EPERM;
Paul Moore2b980db2009-08-28 18:12:43 -0400950 err = security_tun_dev_create();
951 if (err < 0)
952 return err;
David Woodhouseca6bb5d2006-06-22 16:07:52 -0700953
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954 /* Set dev type */
955 if (ifr->ifr_flags & IFF_TUN) {
956 /* TUN device */
957 flags |= TUN_TUN_DEV;
958 name = "tun%d";
959 } else if (ifr->ifr_flags & IFF_TAP) {
960 /* TAP device */
961 flags |= TUN_TAP_DEV;
962 name = "tap%d";
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400963 } else
Kusanagi Kouichi36989b92009-09-16 21:36:13 +0000964 return -EINVAL;
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400965
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966 if (*ifr->ifr_name)
967 name = ifr->ifr_name;
968
969 dev = alloc_netdev(sizeof(struct tun_struct), name,
970 tun_setup);
971 if (!dev)
972 return -ENOMEM;
973
Pavel Emelyanovfc54c652008-04-16 00:41:53 -0700974 dev_net_set(dev, net);
Eric W. Biedermanf019a7a2009-01-21 16:02:16 -0800975 dev->rtnl_link_ops = &tun_link_ops;
Stephen Hemminger758e43b2008-11-19 22:10:37 -0800976
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977 tun = netdev_priv(dev);
978 tun->dev = dev;
979 tun->flags = flags;
Max Krasnyanskyf271b2c2008-07-14 22:18:19 -0700980 tun->txflt.count = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981
Herbert Xu33dccbb2009-02-05 21:25:32 -0800982 err = -ENOMEM;
983 sk = sk_alloc(net, AF_UNSPEC, GFP_KERNEL, &tun_proto);
984 if (!sk)
985 goto err_free_dev;
986
Herbert Xuc40af842009-04-19 22:35:50 +0000987 init_waitqueue_head(&tun->socket.wait);
Herbert Xu33dccbb2009-02-05 21:25:32 -0800988 sock_init_data(&tun->socket, sk);
989 sk->sk_write_space = tun_sock_write_space;
Herbert Xu33dccbb2009-02-05 21:25:32 -0800990 sk->sk_sndbuf = INT_MAX;
Herbert Xu33dccbb2009-02-05 21:25:32 -0800991
Herbert Xu33dccbb2009-02-05 21:25:32 -0800992 container_of(sk, struct tun_sock, sk)->tun = tun;
993
Paul Moore2b980db2009-08-28 18:12:43 -0400994 security_tun_dev_post_create(sk);
995
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996 tun_net_init(dev);
997
998 if (strchr(dev->name, '%')) {
999 err = dev_alloc_name(dev, dev->name);
1000 if (err < 0)
Herbert Xu33dccbb2009-02-05 21:25:32 -08001001 goto err_free_sk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002 }
1003
1004 err = register_netdevice(tun->dev);
1005 if (err < 0)
Herbert Xu9c3fea62009-04-18 14:15:52 +00001006 goto err_free_sk;
1007
David Woodhouse980c9e82009-05-09 22:54:21 -07001008 if (device_create_file(&tun->dev->dev, &dev_attr_tun_flags) ||
1009 device_create_file(&tun->dev->dev, &dev_attr_owner) ||
1010 device_create_file(&tun->dev->dev, &dev_attr_group))
1011 printk(KERN_ERR "Failed to create tun sysfs files\n");
1012
Herbert Xu9c3fea62009-04-18 14:15:52 +00001013 sk->sk_destruct = tun_sock_destruct;
Eric W. Biedermana7385ba2009-01-20 10:57:48 +00001014
1015 err = tun_attach(tun, file);
1016 if (err < 0)
Herbert Xu9c3fea62009-04-18 14:15:52 +00001017 goto failed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018 }
1019
1020 DBG(KERN_INFO "%s: tun_set_iff\n", tun->dev->name);
1021
1022 if (ifr->ifr_flags & IFF_NO_PI)
1023 tun->flags |= TUN_NO_PI;
Nathaniel Filardoa26af1e2008-02-05 03:05:07 -08001024 else
1025 tun->flags &= ~TUN_NO_PI;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026
1027 if (ifr->ifr_flags & IFF_ONE_QUEUE)
1028 tun->flags |= TUN_ONE_QUEUE;
Nathaniel Filardoa26af1e2008-02-05 03:05:07 -08001029 else
1030 tun->flags &= ~TUN_ONE_QUEUE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031
Rusty Russellf43798c2008-07-03 03:48:02 -07001032 if (ifr->ifr_flags & IFF_VNET_HDR)
1033 tun->flags |= TUN_VNET_HDR;
1034 else
1035 tun->flags &= ~TUN_VNET_HDR;
1036
Max Krasnyanskye35259a2008-07-10 16:59:11 -07001037 /* Make sure persistent devices do not get stuck in
1038 * xoff state.
1039 */
1040 if (netif_running(tun->dev))
1041 netif_wake_queue(tun->dev);
1042
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043 strcpy(ifr->ifr_name, tun->dev->name);
1044 return 0;
1045
Herbert Xu33dccbb2009-02-05 21:25:32 -08001046 err_free_sk:
1047 sock_put(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048 err_free_dev:
1049 free_netdev(dev);
1050 failed:
1051 return err;
1052}
1053
Herbert Xu876bfd42009-08-06 14:22:44 +00001054static int tun_get_iff(struct net *net, struct tun_struct *tun,
1055 struct ifreq *ifr)
Mark McLoughline3b99552008-08-15 15:09:56 -07001056{
Mark McLoughline3b99552008-08-15 15:09:56 -07001057 DBG(KERN_INFO "%s: tun_get_iff\n", tun->dev->name);
1058
1059 strcpy(ifr->ifr_name, tun->dev->name);
1060
David Woodhouse980c9e82009-05-09 22:54:21 -07001061 ifr->ifr_flags = tun_flags(tun);
Mark McLoughline3b99552008-08-15 15:09:56 -07001062
1063 return 0;
1064}
1065
Rusty Russell5228ddc2008-07-03 03:46:16 -07001066/* This is like a cut-down ethtool ops, except done via tun fd so no
1067 * privs required. */
1068static int set_offload(struct net_device *dev, unsigned long arg)
1069{
1070 unsigned int old_features, features;
1071
1072 old_features = dev->features;
1073 /* Unset features, set them as we chew on the arg. */
1074 features = (old_features & ~(NETIF_F_HW_CSUM|NETIF_F_SG|NETIF_F_FRAGLIST
Sridhar Samudralae36aa252009-07-14 14:21:04 +00001075 |NETIF_F_TSO_ECN|NETIF_F_TSO|NETIF_F_TSO6
1076 |NETIF_F_UFO));
Rusty Russell5228ddc2008-07-03 03:46:16 -07001077
1078 if (arg & TUN_F_CSUM) {
1079 features |= NETIF_F_HW_CSUM|NETIF_F_SG|NETIF_F_FRAGLIST;
1080 arg &= ~TUN_F_CSUM;
1081
1082 if (arg & (TUN_F_TSO4|TUN_F_TSO6)) {
1083 if (arg & TUN_F_TSO_ECN) {
1084 features |= NETIF_F_TSO_ECN;
1085 arg &= ~TUN_F_TSO_ECN;
1086 }
1087 if (arg & TUN_F_TSO4)
1088 features |= NETIF_F_TSO;
1089 if (arg & TUN_F_TSO6)
1090 features |= NETIF_F_TSO6;
1091 arg &= ~(TUN_F_TSO4|TUN_F_TSO6);
1092 }
Sridhar Samudralae36aa252009-07-14 14:21:04 +00001093
1094 if (arg & TUN_F_UFO) {
1095 features |= NETIF_F_UFO;
1096 arg &= ~TUN_F_UFO;
1097 }
Rusty Russell5228ddc2008-07-03 03:46:16 -07001098 }
1099
1100 /* This gives the user a way to test for new features in future by
1101 * trying to set them. */
1102 if (arg)
1103 return -EINVAL;
1104
1105 dev->features = features;
1106 if (old_features != dev->features)
1107 netdev_features_change(dev);
1108
1109 return 0;
1110}
1111
Herbert Xu876bfd42009-08-06 14:22:44 +00001112static long tun_chr_ioctl(struct file *file, unsigned int cmd,
1113 unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114{
Eric W. Biederman36b50ba2009-01-20 11:01:48 +00001115 struct tun_file *tfile = file->private_data;
Eric W. Biederman631ab462009-01-20 11:00:40 +00001116 struct tun_struct *tun;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117 void __user* argp = (void __user*)arg;
1118 struct ifreq ifr;
Herbert Xu33dccbb2009-02-05 21:25:32 -08001119 int sndbuf;
Max Krasnyanskyf271b2c2008-07-14 22:18:19 -07001120 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121
1122 if (cmd == TUNSETIFF || _IOC_TYPE(cmd) == 0x89)
1123 if (copy_from_user(&ifr, argp, sizeof ifr))
1124 return -EFAULT;
1125
Eric W. Biederman631ab462009-01-20 11:00:40 +00001126 if (cmd == TUNGETFEATURES) {
1127 /* Currently this just means: "what IFF flags are valid?".
1128 * This is needed because we never checked for invalid flags on
1129 * TUNSETIFF. */
1130 return put_user(IFF_TUN | IFF_TAP | IFF_NO_PI | IFF_ONE_QUEUE |
1131 IFF_VNET_HDR,
1132 (unsigned int __user*)argp);
1133 }
1134
Herbert Xu876bfd42009-08-06 14:22:44 +00001135 rtnl_lock();
1136
Eric W. Biederman36b50ba2009-01-20 11:01:48 +00001137 tun = __tun_get(tfile);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138 if (cmd == TUNSETIFF && !tun) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139 ifr.ifr_name[IFNAMSIZ-1] = '\0';
1140
Herbert Xu876bfd42009-08-06 14:22:44 +00001141 ret = tun_set_iff(tfile->net, file, &ifr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142
Herbert Xu876bfd42009-08-06 14:22:44 +00001143 if (ret)
1144 goto unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145
1146 if (copy_to_user(argp, &ifr, sizeof(ifr)))
Herbert Xu876bfd42009-08-06 14:22:44 +00001147 ret = -EFAULT;
1148 goto unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149 }
1150
Herbert Xu876bfd42009-08-06 14:22:44 +00001151 ret = -EBADFD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152 if (!tun)
Herbert Xu876bfd42009-08-06 14:22:44 +00001153 goto unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154
1155 DBG(KERN_INFO "%s: tun_chr_ioctl cmd %d\n", tun->dev->name, cmd);
1156
Eric W. Biederman631ab462009-01-20 11:00:40 +00001157 ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158 switch (cmd) {
Mark McLoughline3b99552008-08-15 15:09:56 -07001159 case TUNGETIFF:
Herbert Xu876bfd42009-08-06 14:22:44 +00001160 ret = tun_get_iff(current->nsproxy->net_ns, tun, &ifr);
Mark McLoughline3b99552008-08-15 15:09:56 -07001161 if (ret)
Eric W. Biederman631ab462009-01-20 11:00:40 +00001162 break;
Mark McLoughline3b99552008-08-15 15:09:56 -07001163
1164 if (copy_to_user(argp, &ifr, sizeof(ifr)))
Eric W. Biederman631ab462009-01-20 11:00:40 +00001165 ret = -EFAULT;
Mark McLoughline3b99552008-08-15 15:09:56 -07001166 break;
1167
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168 case TUNSETNOCSUM:
1169 /* Disable/Enable checksum */
1170 if (arg)
1171 tun->flags |= TUN_NOCHECKSUM;
1172 else
1173 tun->flags &= ~TUN_NOCHECKSUM;
1174
1175 DBG(KERN_INFO "%s: checksum %s\n",
1176 tun->dev->name, arg ? "disabled" : "enabled");
1177 break;
1178
1179 case TUNSETPERSIST:
1180 /* Disable/Enable persist mode */
1181 if (arg)
1182 tun->flags |= TUN_PERSIST;
1183 else
1184 tun->flags &= ~TUN_PERSIST;
1185
1186 DBG(KERN_INFO "%s: persist %s\n",
Toyo Abec6e991d2007-12-24 21:29:35 -08001187 tun->dev->name, arg ? "enabled" : "disabled");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001188 break;
1189
1190 case TUNSETOWNER:
1191 /* Set owner of the device */
1192 tun->owner = (uid_t) arg;
1193
1194 DBG(KERN_INFO "%s: owner set to %d\n", tun->dev->name, tun->owner);
1195 break;
1196
Guido Guenther8c644622007-07-02 22:50:25 -07001197 case TUNSETGROUP:
1198 /* Set group of the device */
1199 tun->group= (gid_t) arg;
1200
1201 DBG(KERN_INFO "%s: group set to %d\n", tun->dev->name, tun->group);
1202 break;
1203
Mike Kershawff4cc3a2005-09-01 17:40:05 -07001204 case TUNSETLINK:
1205 /* Only allow setting the type when the interface is down */
1206 if (tun->dev->flags & IFF_UP) {
1207 DBG(KERN_INFO "%s: Linktype set failed because interface is up\n",
1208 tun->dev->name);
David S. Miller48abfe02008-04-23 19:37:58 -07001209 ret = -EBUSY;
Mike Kershawff4cc3a2005-09-01 17:40:05 -07001210 } else {
1211 tun->dev->type = (int) arg;
1212 DBG(KERN_INFO "%s: linktype set to %d\n", tun->dev->name, tun->dev->type);
David S. Miller48abfe02008-04-23 19:37:58 -07001213 ret = 0;
Mike Kershawff4cc3a2005-09-01 17:40:05 -07001214 }
Eric W. Biederman631ab462009-01-20 11:00:40 +00001215 break;
Mike Kershawff4cc3a2005-09-01 17:40:05 -07001216
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217#ifdef TUN_DEBUG
1218 case TUNSETDEBUG:
1219 tun->debug = arg;
1220 break;
1221#endif
Rusty Russell5228ddc2008-07-03 03:46:16 -07001222 case TUNSETOFFLOAD:
Rusty Russell5228ddc2008-07-03 03:46:16 -07001223 ret = set_offload(tun->dev, arg);
Eric W. Biederman631ab462009-01-20 11:00:40 +00001224 break;
Rusty Russell5228ddc2008-07-03 03:46:16 -07001225
Max Krasnyanskyf271b2c2008-07-14 22:18:19 -07001226 case TUNSETTXFILTER:
1227 /* Can be set only for TAPs */
Eric W. Biederman631ab462009-01-20 11:00:40 +00001228 ret = -EINVAL;
Max Krasnyanskyf271b2c2008-07-14 22:18:19 -07001229 if ((tun->flags & TUN_TYPE_MASK) != TUN_TAP_DEV)
Eric W. Biederman631ab462009-01-20 11:00:40 +00001230 break;
Harvey Harrisonc0e5a8c2008-07-16 12:45:34 -07001231 ret = update_filter(&tun->txflt, (void __user *)arg);
Eric W. Biederman631ab462009-01-20 11:00:40 +00001232 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233
1234 case SIOCGIFHWADDR:
Max Krasnyanskyf271b2c2008-07-14 22:18:19 -07001235 /* Get hw addres */
1236 memcpy(ifr.ifr_hwaddr.sa_data, tun->dev->dev_addr, ETH_ALEN);
1237 ifr.ifr_hwaddr.sa_family = tun->dev->type;
1238 if (copy_to_user(argp, &ifr, sizeof ifr))
Eric W. Biederman631ab462009-01-20 11:00:40 +00001239 ret = -EFAULT;
1240 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001241
1242 case SIOCSIFHWADDR:
Max Krasnyanskyf271b2c2008-07-14 22:18:19 -07001243 /* Set hw address */
Johannes Berge1749612008-10-27 15:59:26 -07001244 DBG(KERN_DEBUG "%s: set hw address: %pM\n",
1245 tun->dev->name, ifr.ifr_hwaddr.sa_data);
Kim B. Heino40102372008-02-29 12:26:21 -08001246
Kim B. Heino40102372008-02-29 12:26:21 -08001247 ret = dev_set_mac_address(tun->dev, &ifr.ifr_hwaddr);
Eric W. Biederman631ab462009-01-20 11:00:40 +00001248 break;
Herbert Xu33dccbb2009-02-05 21:25:32 -08001249
1250 case TUNGETSNDBUF:
Michael S. Tsirkin89f56d12009-08-30 07:04:42 +00001251 sndbuf = tun->socket.sk->sk_sndbuf;
Herbert Xu33dccbb2009-02-05 21:25:32 -08001252 if (copy_to_user(argp, &sndbuf, sizeof(sndbuf)))
1253 ret = -EFAULT;
1254 break;
1255
1256 case TUNSETSNDBUF:
1257 if (copy_from_user(&sndbuf, argp, sizeof(sndbuf))) {
1258 ret = -EFAULT;
1259 break;
1260 }
1261
Michael S. Tsirkin89f56d12009-08-30 07:04:42 +00001262 tun->socket.sk->sk_sndbuf = sndbuf;
Herbert Xu33dccbb2009-02-05 21:25:32 -08001263 break;
1264
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265 default:
Eric W. Biederman631ab462009-01-20 11:00:40 +00001266 ret = -EINVAL;
1267 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268 };
1269
Herbert Xu876bfd42009-08-06 14:22:44 +00001270unlock:
1271 rtnl_unlock();
1272 if (tun)
1273 tun_put(tun);
Eric W. Biederman631ab462009-01-20 11:00:40 +00001274 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275}
1276
1277static int tun_chr_fasync(int fd, struct file *file, int on)
1278{
Eric W. Biederman631ab462009-01-20 11:00:40 +00001279 struct tun_struct *tun = tun_get(file);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280 int ret;
1281
1282 if (!tun)
1283 return -EBADFD;
1284
1285 DBG(KERN_INFO "%s: tun_chr_fasync %d\n", tun->dev->name, on);
1286
1287 if ((ret = fasync_helper(fd, file, on, &tun->fasync)) < 0)
Jonathan Corbet9d319522008-06-19 15:50:37 -06001288 goto out;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001289
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290 if (on) {
Eric W. Biederman609d7fa2006-10-02 02:17:15 -07001291 ret = __f_setown(file, task_pid(current), PIDTYPE_PID, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292 if (ret)
Jonathan Corbet9d319522008-06-19 15:50:37 -06001293 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294 tun->flags |= TUN_FASYNC;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001295 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296 tun->flags &= ~TUN_FASYNC;
Jonathan Corbet9d319522008-06-19 15:50:37 -06001297 ret = 0;
1298out:
Eric W. Biederman631ab462009-01-20 11:00:40 +00001299 tun_put(tun);
Jonathan Corbet9d319522008-06-19 15:50:37 -06001300 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001301}
1302
1303static int tun_chr_open(struct inode *inode, struct file * file)
1304{
Eric W. Biederman631ab462009-01-20 11:00:40 +00001305 struct tun_file *tfile;
Thomas Gleixnerdeed49f2009-10-14 01:19:46 -07001306
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307 DBG1(KERN_INFO "tunX: tun_chr_open\n");
Eric W. Biederman631ab462009-01-20 11:00:40 +00001308
1309 tfile = kmalloc(sizeof(*tfile), GFP_KERNEL);
1310 if (!tfile)
1311 return -ENOMEM;
Eric W. Biedermanc70f1822009-01-20 11:07:17 +00001312 atomic_set(&tfile->count, 0);
Eric W. Biederman631ab462009-01-20 11:00:40 +00001313 tfile->tun = NULL;
Eric W. Biederman36b50ba2009-01-20 11:01:48 +00001314 tfile->net = get_net(current->nsproxy->net_ns);
Eric W. Biederman631ab462009-01-20 11:00:40 +00001315 file->private_data = tfile;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316 return 0;
1317}
1318
1319static int tun_chr_close(struct inode *inode, struct file *file)
1320{
Eric W. Biederman631ab462009-01-20 11:00:40 +00001321 struct tun_file *tfile = file->private_data;
Eric W. Biedermanf0a4d0e2009-06-08 00:44:31 -07001322 struct tun_struct *tun;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323
Eric W. Biedermanf0a4d0e2009-06-08 00:44:31 -07001324 tun = __tun_get(tfile);
Eric W. Biederman631ab462009-01-20 11:00:40 +00001325 if (tun) {
Herbert Xud23e4362009-07-02 23:03:55 +00001326 struct net_device *dev = tun->dev;
1327
1328 DBG(KERN_INFO "%s: tun_chr_close\n", dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329
Eric W. Biederman631ab462009-01-20 11:00:40 +00001330 __tun_detach(tun);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001331
Eric W. Biederman631ab462009-01-20 11:00:40 +00001332 /* If desireable, unregister the netdevice. */
Herbert Xud23e4362009-07-02 23:03:55 +00001333 if (!(tun->flags & TUN_PERSIST)) {
1334 rtnl_lock();
1335 if (dev->reg_state == NETREG_REGISTERED)
1336 unregister_netdevice(dev);
1337 rtnl_unlock();
1338 }
Eric W. Biederman631ab462009-01-20 11:00:40 +00001339 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340
Herbert Xu9c3fea62009-04-18 14:15:52 +00001341 tun = tfile->tun;
1342 if (tun)
Michael S. Tsirkin89f56d12009-08-30 07:04:42 +00001343 sock_put(tun->socket.sk);
Herbert Xu9c3fea62009-04-18 14:15:52 +00001344
Eric W. Biederman36b50ba2009-01-20 11:01:48 +00001345 put_net(tfile->net);
Eric W. Biederman631ab462009-01-20 11:00:40 +00001346 kfree(tfile);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347
1348 return 0;
1349}
1350
Arjan van de Vend54b1fd2007-02-12 00:55:34 -08001351static const struct file_operations tun_fops = {
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001352 .owner = THIS_MODULE,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353 .llseek = no_llseek,
Badari Pulavartyee0b3e62006-09-30 23:28:47 -07001354 .read = do_sync_read,
1355 .aio_read = tun_chr_aio_read,
1356 .write = do_sync_write,
1357 .aio_write = tun_chr_aio_write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358 .poll = tun_chr_poll,
Herbert Xu876bfd42009-08-06 14:22:44 +00001359 .unlocked_ioctl = tun_chr_ioctl,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360 .open = tun_chr_open,
1361 .release = tun_chr_close,
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001362 .fasync = tun_chr_fasync
Linus Torvalds1da177e2005-04-16 15:20:36 -07001363};
1364
1365static struct miscdevice tun_miscdev = {
1366 .minor = TUN_MINOR,
1367 .name = "tun",
Kay Sieverse454cea2009-09-18 23:01:12 +02001368 .nodename = "net/tun",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001369 .fops = &tun_fops,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370};
1371
1372/* ethtool interface */
1373
1374static int tun_get_settings(struct net_device *dev, struct ethtool_cmd *cmd)
1375{
1376 cmd->supported = 0;
1377 cmd->advertising = 0;
1378 cmd->speed = SPEED_10;
1379 cmd->duplex = DUPLEX_FULL;
1380 cmd->port = PORT_TP;
1381 cmd->phy_address = 0;
1382 cmd->transceiver = XCVR_INTERNAL;
1383 cmd->autoneg = AUTONEG_DISABLE;
1384 cmd->maxtxpkt = 0;
1385 cmd->maxrxpkt = 0;
1386 return 0;
1387}
1388
1389static void tun_get_drvinfo(struct net_device *dev, struct ethtool_drvinfo *info)
1390{
1391 struct tun_struct *tun = netdev_priv(dev);
1392
1393 strcpy(info->driver, DRV_NAME);
1394 strcpy(info->version, DRV_VERSION);
1395 strcpy(info->fw_version, "N/A");
1396
1397 switch (tun->flags & TUN_TYPE_MASK) {
1398 case TUN_TUN_DEV:
1399 strcpy(info->bus_info, "tun");
1400 break;
1401 case TUN_TAP_DEV:
1402 strcpy(info->bus_info, "tap");
1403 break;
1404 }
1405}
1406
1407static u32 tun_get_msglevel(struct net_device *dev)
1408{
1409#ifdef TUN_DEBUG
1410 struct tun_struct *tun = netdev_priv(dev);
1411 return tun->debug;
1412#else
1413 return -EOPNOTSUPP;
1414#endif
1415}
1416
1417static void tun_set_msglevel(struct net_device *dev, u32 value)
1418{
1419#ifdef TUN_DEBUG
1420 struct tun_struct *tun = netdev_priv(dev);
1421 tun->debug = value;
1422#endif
1423}
1424
1425static u32 tun_get_link(struct net_device *dev)
1426{
1427 struct tun_struct *tun = netdev_priv(dev);
Eric W. Biederman631ab462009-01-20 11:00:40 +00001428 return !!tun->tfile;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001429}
1430
1431static u32 tun_get_rx_csum(struct net_device *dev)
1432{
1433 struct tun_struct *tun = netdev_priv(dev);
1434 return (tun->flags & TUN_NOCHECKSUM) == 0;
1435}
1436
1437static int tun_set_rx_csum(struct net_device *dev, u32 data)
1438{
1439 struct tun_struct *tun = netdev_priv(dev);
1440 if (data)
1441 tun->flags &= ~TUN_NOCHECKSUM;
1442 else
1443 tun->flags |= TUN_NOCHECKSUM;
1444 return 0;
1445}
1446
Jeff Garzik7282d492006-09-13 14:30:00 -04001447static const struct ethtool_ops tun_ethtool_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448 .get_settings = tun_get_settings,
1449 .get_drvinfo = tun_get_drvinfo,
1450 .get_msglevel = tun_get_msglevel,
1451 .set_msglevel = tun_set_msglevel,
1452 .get_link = tun_get_link,
1453 .get_rx_csum = tun_get_rx_csum,
1454 .set_rx_csum = tun_set_rx_csum
1455};
1456
Pavel Emelyanov79d17602008-04-16 00:40:46 -07001457
Linus Torvalds1da177e2005-04-16 15:20:36 -07001458static int __init tun_init(void)
1459{
1460 int ret = 0;
1461
1462 printk(KERN_INFO "tun: %s, %s\n", DRV_DESCRIPTION, DRV_VERSION);
1463 printk(KERN_INFO "tun: %s\n", DRV_COPYRIGHT);
1464
Eric W. Biedermanf019a7a2009-01-21 16:02:16 -08001465 ret = rtnl_link_register(&tun_link_ops);
Pavel Emelyanov79d17602008-04-16 00:40:46 -07001466 if (ret) {
Eric W. Biedermanf019a7a2009-01-21 16:02:16 -08001467 printk(KERN_ERR "tun: Can't register link_ops\n");
1468 goto err_linkops;
Pavel Emelyanov79d17602008-04-16 00:40:46 -07001469 }
1470
Linus Torvalds1da177e2005-04-16 15:20:36 -07001471 ret = misc_register(&tun_miscdev);
Pavel Emelyanov79d17602008-04-16 00:40:46 -07001472 if (ret) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001473 printk(KERN_ERR "tun: Can't register misc device %d\n", TUN_MINOR);
Pavel Emelyanov79d17602008-04-16 00:40:46 -07001474 goto err_misc;
1475 }
Eric W. Biedermanf019a7a2009-01-21 16:02:16 -08001476 return 0;
Pavel Emelyanov79d17602008-04-16 00:40:46 -07001477err_misc:
Eric W. Biedermanf019a7a2009-01-21 16:02:16 -08001478 rtnl_link_unregister(&tun_link_ops);
1479err_linkops:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480 return ret;
1481}
1482
1483static void tun_cleanup(void)
1484{
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001485 misc_deregister(&tun_miscdev);
Eric W. Biedermanf019a7a2009-01-21 16:02:16 -08001486 rtnl_link_unregister(&tun_link_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001487}
1488
1489module_init(tun_init);
1490module_exit(tun_cleanup);
1491MODULE_DESCRIPTION(DRV_DESCRIPTION);
1492MODULE_AUTHOR(DRV_COPYRIGHT);
1493MODULE_LICENSE("GPL");
1494MODULE_ALIAS_MISCDEV(TUN_MINOR);