blob: b44d7b79cddcef3562341c5c8ef78e14479d48fe [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>
Joe Perches344dc8e2012-07-12 19:33:09 +000025 * Use eth_random_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
Joe Perches6b8a66e2011-03-02 07:18:10 +000037#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
38
Linus Torvalds1da177e2005-04-16 15:20:36 -070039#define DRV_NAME "tun"
40#define DRV_VERSION "1.6"
41#define DRV_DESCRIPTION "Universal TUN/TAP device driver"
42#define DRV_COPYRIGHT "(C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>"
43
Linus Torvalds1da177e2005-04-16 15:20:36 -070044#include <linux/module.h>
45#include <linux/errno.h>
46#include <linux/kernel.h>
47#include <linux/major.h>
48#include <linux/slab.h>
49#include <linux/poll.h>
50#include <linux/fcntl.h>
51#include <linux/init.h>
52#include <linux/skbuff.h>
53#include <linux/netdevice.h>
54#include <linux/etherdevice.h>
55#include <linux/miscdevice.h>
56#include <linux/ethtool.h>
57#include <linux/rtnetlink.h>
Arnd Bergmann50857e22009-11-06 22:52:32 -080058#include <linux/compat.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070059#include <linux/if.h>
60#include <linux/if_arp.h>
61#include <linux/if_ether.h>
62#include <linux/if_tun.h>
63#include <linux/crc32.h>
Pavel Emelyanovd647a592008-04-16 00:41:16 -070064#include <linux/nsproxy.h>
Rusty Russellf43798c2008-07-03 03:48:02 -070065#include <linux/virtio_net.h>
Michael S. Tsirkin99405162010-02-14 01:01:10 +000066#include <linux/rcupdate.h>
Eric W. Biederman881d9662007-09-17 11:56:21 -070067#include <net/net_namespace.h>
Pavel Emelyanov79d17602008-04-16 00:40:46 -070068#include <net/netns/generic.h>
Eric W. Biedermanf019a7a2009-01-21 16:02:16 -080069#include <net/rtnetlink.h>
Herbert Xu33dccbb2009-02-05 21:25:32 -080070#include <net/sock.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070071
Linus Torvalds1da177e2005-04-16 15:20:36 -070072#include <asm/uaccess.h>
73
Rusty Russell14daa022008-04-12 18:48:58 -070074/* Uncomment to enable debugging */
75/* #define TUN_DEBUG 1 */
76
Linus Torvalds1da177e2005-04-16 15:20:36 -070077#ifdef TUN_DEBUG
78static int debug;
Rusty Russell14daa022008-04-12 18:48:58 -070079
Joe Perches6b8a66e2011-03-02 07:18:10 +000080#define tun_debug(level, tun, fmt, args...) \
81do { \
82 if (tun->debug) \
83 netdev_printk(level, tun->dev, fmt, ##args); \
84} while (0)
85#define DBG1(level, fmt, args...) \
86do { \
87 if (debug == 2) \
88 printk(level fmt, ##args); \
89} while (0)
Rusty Russell14daa022008-04-12 18:48:58 -070090#else
Joe Perches6b8a66e2011-03-02 07:18:10 +000091#define tun_debug(level, tun, fmt, args...) \
92do { \
93 if (0) \
94 netdev_printk(level, tun->dev, fmt, ##args); \
95} while (0)
96#define DBG1(level, fmt, args...) \
97do { \
98 if (0) \
99 printk(level fmt, ##args); \
100} while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101#endif
102
Michael S. Tsirkin06908992012-07-20 09:23:23 +0000103#define GOODCOPY_LEN 128
104
Max Krasnyanskyf271b2c2008-07-14 22:18:19 -0700105#define FLT_EXACT_COUNT 8
106struct tap_filter {
107 unsigned int count; /* Number of addrs. Zero means disabled */
108 u32 mask[2]; /* Mask of the hashed addrs */
109 unsigned char addr[FLT_EXACT_COUNT][ETH_ALEN];
110};
111
Jason Wangc8d68e62012-10-31 19:46:00 +0000112/* 1024 is probably a high enough limit: modern hypervisors seem to support on
113 * the order of 100-200 CPUs so this leaves us some breathing space if we want
114 * to match a queue per guest CPU.
115 */
116#define MAX_TAP_QUEUES 1024
117
Jason Wang96442e422012-10-31 19:46:02 +0000118#define TUN_FLOW_EXPIRE (3 * HZ)
119
Jason Wang54f968d2012-10-31 19:45:57 +0000120/* A tun_file connects an open character device to a tuntap netdevice. It
121 * also contains all socket related strctures (except sock_fprog and tap_filter)
122 * to serve as one transmit queue for tuntap device. The sock_fprog and
123 * tap_filter were kept in tun_struct since they were used for filtering for the
124 * netdevice not for a specific queue (at least I didn't see the reqirement for
125 * this).
Jason Wang6e914fc2012-10-31 19:45:58 +0000126 *
127 * RCU usage:
128 * The tun_file and tun_struct are loosely coupled, the pointer from on to the
129 * other can only be read while rcu_read_lock or rtnl_lock is held.
Jason Wang54f968d2012-10-31 19:45:57 +0000130 */
Eric W. Biederman631ab462009-01-20 11:00:40 +0000131struct tun_file {
Jason Wang54f968d2012-10-31 19:45:57 +0000132 struct sock sk;
133 struct socket socket;
134 struct socket_wq wq;
Jason Wang6e914fc2012-10-31 19:45:58 +0000135 struct tun_struct __rcu *tun;
Eric W. Biederman36b50ba2009-01-20 11:01:48 +0000136 struct net *net;
Jason Wang54f968d2012-10-31 19:45:57 +0000137 struct fasync_struct *fasync;
138 /* only used for fasnyc */
139 unsigned int flags;
Jason Wangc8d68e62012-10-31 19:46:00 +0000140 u16 queue_index;
Eric W. Biederman631ab462009-01-20 11:00:40 +0000141};
142
Jason Wang96442e422012-10-31 19:46:02 +0000143struct tun_flow_entry {
144 struct hlist_node hash_link;
145 struct rcu_head rcu;
146 struct tun_struct *tun;
147
148 u32 rxhash;
149 int queue_index;
150 unsigned long updated;
151};
152
153#define TUN_NUM_FLOW_ENTRIES 1024
154
Jason Wang54f968d2012-10-31 19:45:57 +0000155/* Since the socket were moved to tun_file, to preserve the behavior of persist
156 * device, socket fileter, sndbuf and vnet header size were restore when the
157 * file were attached to a persist device.
158 */
Rusty Russell14daa022008-04-12 18:48:58 -0700159struct tun_struct {
Jason Wangc8d68e62012-10-31 19:46:00 +0000160 struct tun_file __rcu *tfiles[MAX_TAP_QUEUES];
161 unsigned int numqueues;
Max Krasnyanskyf271b2c2008-07-14 22:18:19 -0700162 unsigned int flags;
Eric W. Biederman0625c882012-02-07 16:48:55 -0800163 kuid_t owner;
164 kgid_t group;
Rusty Russell14daa022008-04-12 18:48:58 -0700165
Rusty Russell14daa022008-04-12 18:48:58 -0700166 struct net_device *dev;
Michał Mirosławc8f44af2011-11-15 15:29:55 +0000167 netdev_features_t set_features;
Michał Mirosław88255372011-04-19 06:13:10 +0000168#define TUN_USER_FEATURES (NETIF_F_HW_CSUM|NETIF_F_TSO_ECN|NETIF_F_TSO| \
169 NETIF_F_TSO6|NETIF_F_UFO)
Michael S. Tsirkind9d52b52010-03-17 17:45:01 +0200170
171 int vnet_hdr_sz;
Jason Wang54f968d2012-10-31 19:45:57 +0000172 int sndbuf;
173 struct tap_filter txflt;
174 struct sock_fprog fprog;
175 /* protected by rtnl lock */
176 bool filter_attached;
Rusty Russell14daa022008-04-12 18:48:58 -0700177#ifdef TUN_DEBUG
178 int debug;
179#endif
Jason Wang96442e422012-10-31 19:46:02 +0000180 spinlock_t lock;
181 struct kmem_cache *flow_cache;
182 struct hlist_head flows[TUN_NUM_FLOW_ENTRIES];
183 struct timer_list flow_gc_timer;
184 unsigned long ageing_time;
Rusty Russell14daa022008-04-12 18:48:58 -0700185};
186
Jason Wang96442e422012-10-31 19:46:02 +0000187static inline u32 tun_hashfn(u32 rxhash)
188{
189 return rxhash & 0x3ff;
190}
191
192static struct tun_flow_entry *tun_flow_find(struct hlist_head *head, u32 rxhash)
193{
194 struct tun_flow_entry *e;
195 struct hlist_node *n;
196
197 hlist_for_each_entry_rcu(e, n, head, hash_link) {
198 if (e->rxhash == rxhash)
199 return e;
200 }
201 return NULL;
202}
203
204static struct tun_flow_entry *tun_flow_create(struct tun_struct *tun,
205 struct hlist_head *head,
206 u32 rxhash, u16 queue_index)
207{
208 struct tun_flow_entry *e = kmem_cache_alloc(tun->flow_cache,
209 GFP_ATOMIC);
210 if (e) {
211 tun_debug(KERN_INFO, tun, "create flow: hash %u index %u\n",
212 rxhash, queue_index);
213 e->updated = jiffies;
214 e->rxhash = rxhash;
215 e->queue_index = queue_index;
216 e->tun = tun;
217 hlist_add_head_rcu(&e->hash_link, head);
218 }
219 return e;
220}
221
222static void tun_flow_free(struct rcu_head *head)
223{
224 struct tun_flow_entry *e
225 = container_of(head, struct tun_flow_entry, rcu);
226 kmem_cache_free(e->tun->flow_cache, e);
227}
228
229static void tun_flow_delete(struct tun_struct *tun, struct tun_flow_entry *e)
230{
231 tun_debug(KERN_INFO, tun, "delete flow: hash %u index %u\n",
232 e->rxhash, e->queue_index);
233 hlist_del_rcu(&e->hash_link);
234 call_rcu(&e->rcu, tun_flow_free);
235}
236
237static void tun_flow_flush(struct tun_struct *tun)
238{
239 int i;
240
241 spin_lock_bh(&tun->lock);
242 for (i = 0; i < TUN_NUM_FLOW_ENTRIES; i++) {
243 struct tun_flow_entry *e;
244 struct hlist_node *h, *n;
245
246 hlist_for_each_entry_safe(e, h, n, &tun->flows[i], hash_link)
247 tun_flow_delete(tun, e);
248 }
249 spin_unlock_bh(&tun->lock);
250}
251
252static void tun_flow_delete_by_queue(struct tun_struct *tun, u16 queue_index)
253{
254 int i;
255
256 spin_lock_bh(&tun->lock);
257 for (i = 0; i < TUN_NUM_FLOW_ENTRIES; i++) {
258 struct tun_flow_entry *e;
259 struct hlist_node *h, *n;
260
261 hlist_for_each_entry_safe(e, h, n, &tun->flows[i], hash_link) {
262 if (e->queue_index == queue_index)
263 tun_flow_delete(tun, e);
264 }
265 }
266 spin_unlock_bh(&tun->lock);
267}
268
269static void tun_flow_cleanup(unsigned long data)
270{
271 struct tun_struct *tun = (struct tun_struct *)data;
272 unsigned long delay = tun->ageing_time;
273 unsigned long next_timer = jiffies + delay;
274 unsigned long count = 0;
275 int i;
276
277 tun_debug(KERN_INFO, tun, "tun_flow_cleanup\n");
278
279 spin_lock_bh(&tun->lock);
280 for (i = 0; i < TUN_NUM_FLOW_ENTRIES; i++) {
281 struct tun_flow_entry *e;
282 struct hlist_node *h, *n;
283
284 hlist_for_each_entry_safe(e, h, n, &tun->flows[i], hash_link) {
285 unsigned long this_timer;
286 count++;
287 this_timer = e->updated + delay;
288 if (time_before_eq(this_timer, jiffies))
289 tun_flow_delete(tun, e);
290 else if (time_before(this_timer, next_timer))
291 next_timer = this_timer;
292 }
293 }
294
295 if (count)
296 mod_timer(&tun->flow_gc_timer, round_jiffies_up(next_timer));
297 spin_unlock_bh(&tun->lock);
298}
299
300static void tun_flow_update(struct tun_struct *tun, struct sk_buff *skb,
301 u16 queue_index)
302{
303 struct hlist_head *head;
304 struct tun_flow_entry *e;
305 unsigned long delay = tun->ageing_time;
306 u32 rxhash = skb_get_rxhash(skb);
307
308 if (!rxhash)
309 return;
310 else
311 head = &tun->flows[tun_hashfn(rxhash)];
312
313 rcu_read_lock();
314
315 if (tun->numqueues == 1)
316 goto unlock;
317
318 e = tun_flow_find(head, rxhash);
319 if (likely(e)) {
320 /* TODO: keep queueing to old queue until it's empty? */
321 e->queue_index = queue_index;
322 e->updated = jiffies;
323 } else {
324 spin_lock_bh(&tun->lock);
325 if (!tun_flow_find(head, rxhash))
326 tun_flow_create(tun, head, rxhash, queue_index);
327
328 if (!timer_pending(&tun->flow_gc_timer))
329 mod_timer(&tun->flow_gc_timer,
330 round_jiffies_up(jiffies + delay));
331 spin_unlock_bh(&tun->lock);
332 }
333
334unlock:
335 rcu_read_unlock();
336}
337
Jason Wangc8d68e62012-10-31 19:46:00 +0000338/* We try to identify a flow through its rxhash first. The reason that
339 * we do not check rxq no. is becuase some cards(e.g 82599), chooses
340 * the rxq based on the txq where the last packet of the flow comes. As
341 * the userspace application move between processors, we may get a
342 * different rxq no. here. If we could not get rxhash, then we would
343 * hope the rxq no. may help here.
344 */
345static u16 tun_select_queue(struct net_device *dev, struct sk_buff *skb)
346{
347 struct tun_struct *tun = netdev_priv(dev);
Jason Wang96442e422012-10-31 19:46:02 +0000348 struct tun_flow_entry *e;
Jason Wangc8d68e62012-10-31 19:46:00 +0000349 u32 txq = 0;
350 u32 numqueues = 0;
351
352 rcu_read_lock();
353 numqueues = tun->numqueues;
354
355 txq = skb_get_rxhash(skb);
356 if (txq) {
Jason Wang96442e422012-10-31 19:46:02 +0000357 e = tun_flow_find(&tun->flows[tun_hashfn(txq)], txq);
358 if (e)
359 txq = e->queue_index;
360 else
361 /* use multiply and shift instead of expensive divide */
362 txq = ((u64)txq * numqueues) >> 32;
Jason Wangc8d68e62012-10-31 19:46:00 +0000363 } else if (likely(skb_rx_queue_recorded(skb))) {
364 txq = skb_get_rx_queue(skb);
365 while (unlikely(txq >= numqueues))
366 txq -= numqueues;
367 }
368
369 rcu_read_unlock();
370 return txq;
371}
372
Jason Wangcde8b152012-10-31 19:46:01 +0000373static inline bool tun_not_capable(struct tun_struct *tun)
374{
375 const struct cred *cred = current_cred();
376
377 return ((uid_valid(tun->owner) && !uid_eq(cred->euid, tun->owner)) ||
378 (gid_valid(tun->group) && !in_egroup_p(tun->group))) &&
379 !capable(CAP_NET_ADMIN);
380}
381
Jason Wangc8d68e62012-10-31 19:46:00 +0000382static void tun_set_real_num_queues(struct tun_struct *tun)
383{
384 netif_set_real_num_tx_queues(tun->dev, tun->numqueues);
385 netif_set_real_num_rx_queues(tun->dev, tun->numqueues);
386}
387
388static void __tun_detach(struct tun_file *tfile, bool clean)
389{
390 struct tun_file *ntfile;
391 struct tun_struct *tun;
392 struct net_device *dev;
393
394 tun = rcu_dereference_protected(tfile->tun,
395 lockdep_rtnl_is_held());
396 if (tun) {
397 u16 index = tfile->queue_index;
398 BUG_ON(index >= tun->numqueues);
399 dev = tun->dev;
400
401 rcu_assign_pointer(tun->tfiles[index],
402 tun->tfiles[tun->numqueues - 1]);
403 rcu_assign_pointer(tfile->tun, NULL);
404 ntfile = rcu_dereference_protected(tun->tfiles[index],
405 lockdep_rtnl_is_held());
406 ntfile->queue_index = index;
407
408 --tun->numqueues;
409 sock_put(&tfile->sk);
410
411 synchronize_net();
Jason Wang96442e422012-10-31 19:46:02 +0000412 tun_flow_delete_by_queue(tun, tun->numqueues + 1);
Jason Wangc8d68e62012-10-31 19:46:00 +0000413 /* Drop read queue */
414 skb_queue_purge(&tfile->sk.sk_receive_queue);
415 tun_set_real_num_queues(tun);
416
417 if (tun->numqueues == 0 && !(tun->flags & TUN_PERSIST))
418 if (dev->reg_state == NETREG_REGISTERED)
419 unregister_netdevice(dev);
420 }
421
422 if (clean) {
423 BUG_ON(!test_bit(SOCK_EXTERNALLY_ALLOCATED,
424 &tfile->socket.flags));
425 sk_release_kernel(&tfile->sk);
426 }
427}
428
429static void tun_detach(struct tun_file *tfile, bool clean)
430{
431 rtnl_lock();
432 __tun_detach(tfile, clean);
433 rtnl_unlock();
434}
435
436static void tun_detach_all(struct net_device *dev)
437{
438 struct tun_struct *tun = netdev_priv(dev);
439 struct tun_file *tfile;
440 int i, n = tun->numqueues;
441
442 for (i = 0; i < n; i++) {
443 tfile = rcu_dereference_protected(tun->tfiles[i],
444 lockdep_rtnl_is_held());
445 BUG_ON(!tfile);
446 wake_up_all(&tfile->wq.wait);
447 rcu_assign_pointer(tfile->tun, NULL);
448 --tun->numqueues;
449 }
450 BUG_ON(tun->numqueues != 0);
451
452 synchronize_net();
453 for (i = 0; i < n; i++) {
454 tfile = rcu_dereference_protected(tun->tfiles[i],
455 lockdep_rtnl_is_held());
456 /* Drop read queue */
457 skb_queue_purge(&tfile->sk.sk_receive_queue);
458 sock_put(&tfile->sk);
459 }
460}
461
Eric W. Biedermana7385ba2009-01-20 10:57:48 +0000462static int tun_attach(struct tun_struct *tun, struct file *file)
463{
Eric W. Biederman631ab462009-01-20 11:00:40 +0000464 struct tun_file *tfile = file->private_data;
Eric W. Biederman38231b72009-01-20 11:02:28 +0000465 int err;
Eric W. Biedermana7385ba2009-01-20 10:57:48 +0000466
Eric W. Biederman38231b72009-01-20 11:02:28 +0000467 err = -EINVAL;
Jason Wangc8d68e62012-10-31 19:46:00 +0000468 if (rcu_dereference_protected(tfile->tun, lockdep_rtnl_is_held()))
Eric W. Biederman38231b72009-01-20 11:02:28 +0000469 goto out;
470
471 err = -EBUSY;
Jason Wangc8d68e62012-10-31 19:46:00 +0000472 if (!(tun->flags & TUN_TAP_MQ) && tun->numqueues == 1)
473 goto out;
474
475 err = -E2BIG;
476 if (tun->numqueues == MAX_TAP_QUEUES)
Eric W. Biederman38231b72009-01-20 11:02:28 +0000477 goto out;
478
479 err = 0;
Jason Wang54f968d2012-10-31 19:45:57 +0000480
Jason Wangc8d68e62012-10-31 19:46:00 +0000481 /* Re-attach the filter to presist device */
Jason Wang54f968d2012-10-31 19:45:57 +0000482 if (tun->filter_attached == true) {
483 err = sk_attach_filter(&tun->fprog, tfile->socket.sk);
484 if (!err)
485 goto out;
486 }
Jason Wangc8d68e62012-10-31 19:46:00 +0000487 tfile->queue_index = tun->numqueues;
Jason Wang6e914fc2012-10-31 19:45:58 +0000488 rcu_assign_pointer(tfile->tun, tun);
Jason Wangc8d68e62012-10-31 19:46:00 +0000489 rcu_assign_pointer(tun->tfiles[tun->numqueues], tfile);
Jason Wang54f968d2012-10-31 19:45:57 +0000490 sock_hold(&tfile->sk);
Jason Wangc8d68e62012-10-31 19:46:00 +0000491 tun->numqueues++;
492
493 tun_set_real_num_queues(tun);
494
495 if (tun->numqueues == 1)
496 netif_carrier_on(tun->dev);
497
498 /* device is allowed to go away first, so no need to hold extra
499 * refcnt.
500 */
Eric W. Biedermana7385ba2009-01-20 10:57:48 +0000501
Eric W. Biederman38231b72009-01-20 11:02:28 +0000502out:
Eric W. Biederman38231b72009-01-20 11:02:28 +0000503 return err;
Eric W. Biedermana7385ba2009-01-20 10:57:48 +0000504}
505
Eric W. Biederman631ab462009-01-20 11:00:40 +0000506static struct tun_struct *__tun_get(struct tun_file *tfile)
507{
Jason Wang6e914fc2012-10-31 19:45:58 +0000508 struct tun_struct *tun;
Eric W. Biedermanc70f1822009-01-20 11:07:17 +0000509
Jason Wang6e914fc2012-10-31 19:45:58 +0000510 rcu_read_lock();
511 tun = rcu_dereference(tfile->tun);
512 if (tun)
513 dev_hold(tun->dev);
514 rcu_read_unlock();
Eric W. Biedermanc70f1822009-01-20 11:07:17 +0000515
516 return tun;
Eric W. Biederman631ab462009-01-20 11:00:40 +0000517}
518
519static struct tun_struct *tun_get(struct file *file)
520{
521 return __tun_get(file->private_data);
522}
523
524static void tun_put(struct tun_struct *tun)
525{
Jason Wang6e914fc2012-10-31 19:45:58 +0000526 dev_put(tun->dev);
Eric W. Biederman631ab462009-01-20 11:00:40 +0000527}
528
Joe Perches6b8a66e2011-03-02 07:18:10 +0000529/* TAP filtering */
Max Krasnyanskyf271b2c2008-07-14 22:18:19 -0700530static void addr_hash_set(u32 *mask, const u8 *addr)
531{
532 int n = ether_crc(ETH_ALEN, addr) >> 26;
533 mask[n >> 5] |= (1 << (n & 31));
534}
535
536static unsigned int addr_hash_test(const u32 *mask, const u8 *addr)
537{
538 int n = ether_crc(ETH_ALEN, addr) >> 26;
539 return mask[n >> 5] & (1 << (n & 31));
540}
541
542static int update_filter(struct tap_filter *filter, void __user *arg)
543{
544 struct { u8 u[ETH_ALEN]; } *addr;
545 struct tun_filter uf;
546 int err, alen, n, nexact;
547
548 if (copy_from_user(&uf, arg, sizeof(uf)))
549 return -EFAULT;
550
551 if (!uf.count) {
552 /* Disabled */
553 filter->count = 0;
554 return 0;
555 }
556
557 alen = ETH_ALEN * uf.count;
558 addr = kmalloc(alen, GFP_KERNEL);
559 if (!addr)
560 return -ENOMEM;
561
562 if (copy_from_user(addr, arg + sizeof(uf), alen)) {
563 err = -EFAULT;
564 goto done;
565 }
566
567 /* The filter is updated without holding any locks. Which is
568 * perfectly safe. We disable it first and in the worst
569 * case we'll accept a few undesired packets. */
570 filter->count = 0;
571 wmb();
572
573 /* Use first set of addresses as an exact filter */
574 for (n = 0; n < uf.count && n < FLT_EXACT_COUNT; n++)
575 memcpy(filter->addr[n], addr[n].u, ETH_ALEN);
576
577 nexact = n;
578
Alex Williamsoncfbf84f2009-02-08 17:49:17 -0800579 /* Remaining multicast addresses are hashed,
580 * unicast will leave the filter disabled. */
Max Krasnyanskyf271b2c2008-07-14 22:18:19 -0700581 memset(filter->mask, 0, sizeof(filter->mask));
Alex Williamsoncfbf84f2009-02-08 17:49:17 -0800582 for (; n < uf.count; n++) {
583 if (!is_multicast_ether_addr(addr[n].u)) {
584 err = 0; /* no filter */
585 goto done;
586 }
Max Krasnyanskyf271b2c2008-07-14 22:18:19 -0700587 addr_hash_set(filter->mask, addr[n].u);
Alex Williamsoncfbf84f2009-02-08 17:49:17 -0800588 }
Max Krasnyanskyf271b2c2008-07-14 22:18:19 -0700589
590 /* For ALLMULTI just set the mask to all ones.
591 * This overrides the mask populated above. */
592 if ((uf.flags & TUN_FLT_ALLMULTI))
593 memset(filter->mask, ~0, sizeof(filter->mask));
594
595 /* Now enable the filter */
596 wmb();
597 filter->count = nexact;
598
599 /* Return the number of exact filters */
600 err = nexact;
601
602done:
603 kfree(addr);
604 return err;
605}
606
607/* Returns: 0 - drop, !=0 - accept */
608static int run_filter(struct tap_filter *filter, const struct sk_buff *skb)
609{
610 /* Cannot use eth_hdr(skb) here because skb_mac_hdr() is incorrect
611 * at this point. */
612 struct ethhdr *eh = (struct ethhdr *) skb->data;
613 int i;
614
615 /* Exact match */
616 for (i = 0; i < filter->count; i++)
Joe Perches2e42e472012-05-09 17:17:46 +0000617 if (ether_addr_equal(eh->h_dest, filter->addr[i]))
Max Krasnyanskyf271b2c2008-07-14 22:18:19 -0700618 return 1;
619
620 /* Inexact match (multicast only) */
621 if (is_multicast_ether_addr(eh->h_dest))
622 return addr_hash_test(filter->mask, eh->h_dest);
623
624 return 0;
625}
626
627/*
628 * Checks whether the packet is accepted or not.
629 * Returns: 0 - drop, !=0 - accept
630 */
631static int check_filter(struct tap_filter *filter, const struct sk_buff *skb)
632{
633 if (!filter->count)
634 return 1;
635
636 return run_filter(filter, skb);
637}
638
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639/* Network device part of the driver */
640
Jeff Garzik7282d492006-09-13 14:30:00 -0400641static const struct ethtool_ops tun_ethtool_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642
Eric W. Biedermanc70f1822009-01-20 11:07:17 +0000643/* Net device detach from fd. */
644static void tun_net_uninit(struct net_device *dev)
645{
Jason Wangc8d68e62012-10-31 19:46:00 +0000646 tun_detach_all(dev);
Eric W. Biedermanc70f1822009-01-20 11:07:17 +0000647}
648
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649/* Net device open. */
650static int tun_net_open(struct net_device *dev)
651{
Jason Wangc8d68e62012-10-31 19:46:00 +0000652 netif_tx_start_all_queues(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653 return 0;
654}
655
656/* Net device close. */
657static int tun_net_close(struct net_device *dev)
658{
Jason Wangc8d68e62012-10-31 19:46:00 +0000659 netif_tx_stop_all_queues(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660 return 0;
661}
662
663/* Net device start xmit */
Stephen Hemminger424efe92009-08-31 19:50:51 +0000664static netdev_tx_t tun_net_xmit(struct sk_buff *skb, struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665{
666 struct tun_struct *tun = netdev_priv(dev);
Jason Wangc8d68e62012-10-31 19:46:00 +0000667 int txq = skb->queue_mapping;
Jason Wang6e914fc2012-10-31 19:45:58 +0000668 struct tun_file *tfile;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669
Jason Wang6e914fc2012-10-31 19:45:58 +0000670 rcu_read_lock();
Jason Wangc8d68e62012-10-31 19:46:00 +0000671 tfile = rcu_dereference(tun->tfiles[txq]);
672
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673 /* Drop packet if interface is not attached */
Jason Wangc8d68e62012-10-31 19:46:00 +0000674 if (txq >= tun->numqueues)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675 goto drop;
676
Jason Wang6e914fc2012-10-31 19:45:58 +0000677 tun_debug(KERN_INFO, tun, "tun_net_xmit %d\n", skb->len);
678
Jason Wangc8d68e62012-10-31 19:46:00 +0000679 BUG_ON(!tfile);
680
Max Krasnyanskyf271b2c2008-07-14 22:18:19 -0700681 /* Drop if the filter does not like it.
682 * This is a noop if the filter is disabled.
683 * Filter can be enabled only for the TAP devices. */
684 if (!check_filter(&tun->txflt, skb))
685 goto drop;
686
Jason Wang54f968d2012-10-31 19:45:57 +0000687 if (tfile->socket.sk->sk_filter &&
688 sk_filter(tfile->socket.sk, skb))
Michael S. Tsirkin99405162010-02-14 01:01:10 +0000689 goto drop;
690
Jason Wangc8d68e62012-10-31 19:46:00 +0000691 /* Limit the number of packets queued by divining txq length with the
692 * number of queues.
693 */
Jason Wang54f968d2012-10-31 19:45:57 +0000694 if (skb_queue_len(&tfile->socket.sk->sk_receive_queue)
Jason Wangc8d68e62012-10-31 19:46:00 +0000695 >= dev->tx_queue_len / tun->numqueues){
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696 if (!(tun->flags & TUN_ONE_QUEUE)) {
697 /* Normal queueing mode. */
698 /* Packet scheduler handles dropping of further packets. */
Jason Wangc8d68e62012-10-31 19:46:00 +0000699 netif_stop_subqueue(dev, txq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700
701 /* We won't see all dropped packets individually, so overrun
702 * error is more appropriate. */
Jeff Garzik09f75cd2007-10-03 17:41:50 -0700703 dev->stats.tx_fifo_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704 } else {
705 /* Single queue mode.
706 * Driver handles dropping of all packets itself. */
707 goto drop;
708 }
709 }
710
Michael S. Tsirkin0110d6f2010-04-13 04:59:44 +0000711 /* Orphan the skb - required as we might hang on to it
712 * for indefinite time. */
Michael S. Tsirkin868eefe2012-07-20 09:23:14 +0000713 if (unlikely(skb_orphan_frags(skb, GFP_ATOMIC)))
714 goto drop;
Michael S. Tsirkin0110d6f2010-04-13 04:59:44 +0000715 skb_orphan(skb);
716
Max Krasnyanskyf271b2c2008-07-14 22:18:19 -0700717 /* Enqueue packet */
Jason Wang54f968d2012-10-31 19:45:57 +0000718 skb_queue_tail(&tfile->socket.sk->sk_receive_queue, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719
720 /* Notify and wake up reader process */
Jason Wang54f968d2012-10-31 19:45:57 +0000721 if (tfile->flags & TUN_FASYNC)
722 kill_fasync(&tfile->fasync, SIGIO, POLL_IN);
723 wake_up_interruptible_poll(&tfile->wq.wait, POLLIN |
Michael S. Tsirkin05c28282010-01-14 06:17:09 +0000724 POLLRDNORM | POLLRDBAND);
Jason Wang6e914fc2012-10-31 19:45:58 +0000725
726 rcu_read_unlock();
Patrick McHardy6ed10652009-06-23 06:03:08 +0000727 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728
729drop:
Jeff Garzik09f75cd2007-10-03 17:41:50 -0700730 dev->stats.tx_dropped++;
Michael S. Tsirkin149d36f2012-11-01 09:16:32 +0000731 skb_tx_error(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732 kfree_skb(skb);
Jason Wang6e914fc2012-10-31 19:45:58 +0000733 rcu_read_unlock();
Patrick McHardy6ed10652009-06-23 06:03:08 +0000734 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735}
736
Max Krasnyanskyf271b2c2008-07-14 22:18:19 -0700737static void tun_net_mclist(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738{
Max Krasnyanskyf271b2c2008-07-14 22:18:19 -0700739 /*
740 * This callback is supposed to deal with mc filter in
741 * _rx_ path and has nothing to do with the _tx_ path.
742 * In rx path we always accept everything userspace gives us.
743 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744}
745
Ed Swierk4885a502007-09-16 12:21:38 -0700746#define MIN_MTU 68
747#define MAX_MTU 65535
748
749static int
750tun_net_change_mtu(struct net_device *dev, int new_mtu)
751{
752 if (new_mtu < MIN_MTU || new_mtu + dev->hard_header_len > MAX_MTU)
753 return -EINVAL;
754 dev->mtu = new_mtu;
755 return 0;
756}
757
Michał Mirosławc8f44af2011-11-15 15:29:55 +0000758static netdev_features_t tun_net_fix_features(struct net_device *dev,
759 netdev_features_t features)
Michał Mirosław88255372011-04-19 06:13:10 +0000760{
761 struct tun_struct *tun = netdev_priv(dev);
762
763 return (features & tun->set_features) | (features & ~TUN_USER_FEATURES);
764}
Neil Hormanbebd0972011-06-15 05:25:01 +0000765#ifdef CONFIG_NET_POLL_CONTROLLER
766static void tun_poll_controller(struct net_device *dev)
767{
768 /*
769 * Tun only receives frames when:
770 * 1) the char device endpoint gets data from user space
771 * 2) the tun socket gets a sendmsg call from user space
772 * Since both of those are syncronous operations, we are guaranteed
773 * never to have pending data when we poll for it
774 * so theres nothing to do here but return.
775 * We need this though so netpoll recognizes us as an interface that
776 * supports polling, which enables bridge devices in virt setups to
777 * still use netconsole
778 */
779 return;
780}
781#endif
Stephen Hemminger758e43b2008-11-19 22:10:37 -0800782static const struct net_device_ops tun_netdev_ops = {
Eric W. Biedermanc70f1822009-01-20 11:07:17 +0000783 .ndo_uninit = tun_net_uninit,
Stephen Hemminger758e43b2008-11-19 22:10:37 -0800784 .ndo_open = tun_net_open,
785 .ndo_stop = tun_net_close,
Stephen Hemminger00829822008-11-20 20:14:53 -0800786 .ndo_start_xmit = tun_net_xmit,
Stephen Hemminger758e43b2008-11-19 22:10:37 -0800787 .ndo_change_mtu = tun_net_change_mtu,
Michał Mirosław88255372011-04-19 06:13:10 +0000788 .ndo_fix_features = tun_net_fix_features,
Jason Wangc8d68e62012-10-31 19:46:00 +0000789 .ndo_select_queue = tun_select_queue,
Neil Hormanbebd0972011-06-15 05:25:01 +0000790#ifdef CONFIG_NET_POLL_CONTROLLER
791 .ndo_poll_controller = tun_poll_controller,
792#endif
Stephen Hemminger758e43b2008-11-19 22:10:37 -0800793};
794
795static const struct net_device_ops tap_netdev_ops = {
Eric W. Biedermanc70f1822009-01-20 11:07:17 +0000796 .ndo_uninit = tun_net_uninit,
Stephen Hemminger758e43b2008-11-19 22:10:37 -0800797 .ndo_open = tun_net_open,
798 .ndo_stop = tun_net_close,
Stephen Hemminger00829822008-11-20 20:14:53 -0800799 .ndo_start_xmit = tun_net_xmit,
Stephen Hemminger758e43b2008-11-19 22:10:37 -0800800 .ndo_change_mtu = tun_net_change_mtu,
Michał Mirosław88255372011-04-19 06:13:10 +0000801 .ndo_fix_features = tun_net_fix_features,
Jiri Pirkoafc4b132011-08-16 06:29:01 +0000802 .ndo_set_rx_mode = tun_net_mclist,
Stephen Hemminger758e43b2008-11-19 22:10:37 -0800803 .ndo_set_mac_address = eth_mac_addr,
804 .ndo_validate_addr = eth_validate_addr,
Jason Wangc8d68e62012-10-31 19:46:00 +0000805 .ndo_select_queue = tun_select_queue,
Neil Hormanbebd0972011-06-15 05:25:01 +0000806#ifdef CONFIG_NET_POLL_CONTROLLER
807 .ndo_poll_controller = tun_poll_controller,
808#endif
Stephen Hemminger758e43b2008-11-19 22:10:37 -0800809};
810
Jason Wang96442e422012-10-31 19:46:02 +0000811static int tun_flow_init(struct tun_struct *tun)
812{
813 int i;
814
815 tun->flow_cache = kmem_cache_create("tun_flow_cache",
816 sizeof(struct tun_flow_entry), 0, 0,
817 NULL);
818 if (!tun->flow_cache)
819 return -ENOMEM;
820
821 for (i = 0; i < TUN_NUM_FLOW_ENTRIES; i++)
822 INIT_HLIST_HEAD(&tun->flows[i]);
823
824 tun->ageing_time = TUN_FLOW_EXPIRE;
825 setup_timer(&tun->flow_gc_timer, tun_flow_cleanup, (unsigned long)tun);
826 mod_timer(&tun->flow_gc_timer,
827 round_jiffies_up(jiffies + tun->ageing_time));
828
829 return 0;
830}
831
832static void tun_flow_uninit(struct tun_struct *tun)
833{
834 del_timer_sync(&tun->flow_gc_timer);
835 tun_flow_flush(tun);
836
837 /* Wait for completion of call_rcu()'s */
838 rcu_barrier();
839 kmem_cache_destroy(tun->flow_cache);
840}
841
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842/* Initialize net device. */
843static void tun_net_init(struct net_device *dev)
844{
845 struct tun_struct *tun = netdev_priv(dev);
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400846
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847 switch (tun->flags & TUN_TYPE_MASK) {
848 case TUN_TUN_DEV:
Stephen Hemminger758e43b2008-11-19 22:10:37 -0800849 dev->netdev_ops = &tun_netdev_ops;
850
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851 /* Point-to-Point TUN Device */
852 dev->hard_header_len = 0;
853 dev->addr_len = 0;
854 dev->mtu = 1500;
855
856 /* Zero header length */
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400857 dev->type = ARPHRD_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858 dev->flags = IFF_POINTOPOINT | IFF_NOARP | IFF_MULTICAST;
859 dev->tx_queue_len = TUN_READQ_SIZE; /* We prefer our own queue length */
860 break;
861
862 case TUN_TAP_DEV:
Kusanagi Kouichi7a0a9602008-12-29 18:23:28 -0800863 dev->netdev_ops = &tap_netdev_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864 /* Ethernet TAP Device */
Max Krasnyanskyf271b2c2008-07-14 22:18:19 -0700865 ether_setup(dev);
Neil Horman550fd082011-07-26 06:05:38 +0000866 dev->priv_flags &= ~IFF_TX_SKB_SHARING;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867
Danny Kukawkaf2cedb62012-02-15 06:45:39 +0000868 eth_hw_addr_random(dev);
Brian Braunstein36226a82007-04-26 01:00:55 -0700869
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870 dev->tx_queue_len = TUN_READQ_SIZE; /* We prefer our own queue length */
871 break;
872 }
873}
874
875/* Character device part */
876
877/* Poll */
Jason Wangc8d68e62012-10-31 19:46:00 +0000878static unsigned int tun_chr_poll(struct file *file, poll_table *wait)
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400879{
Eric W. Biedermanb2430de2009-01-20 11:03:21 +0000880 struct tun_file *tfile = file->private_data;
881 struct tun_struct *tun = __tun_get(tfile);
Mariusz Kozlowski3c8a9c62009-07-05 19:48:35 +0000882 struct sock *sk;
Herbert Xu33dccbb2009-02-05 21:25:32 -0800883 unsigned int mask = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884
885 if (!tun)
Eric W. Biedermaneac9e902009-01-20 10:59:05 +0000886 return POLLERR;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887
Jason Wang54f968d2012-10-31 19:45:57 +0000888 sk = tfile->socket.sk;
Mariusz Kozlowski3c8a9c62009-07-05 19:48:35 +0000889
Joe Perches6b8a66e2011-03-02 07:18:10 +0000890 tun_debug(KERN_INFO, tun, "tun_chr_poll\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891
Jason Wang54f968d2012-10-31 19:45:57 +0000892 poll_wait(file, &tfile->wq.wait, wait);
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400893
Michael S. Tsirkin89f56d12009-08-30 07:04:42 +0000894 if (!skb_queue_empty(&sk->sk_receive_queue))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895 mask |= POLLIN | POLLRDNORM;
896
Herbert Xu33dccbb2009-02-05 21:25:32 -0800897 if (sock_writeable(sk) ||
898 (!test_and_set_bit(SOCK_ASYNC_NOSPACE, &sk->sk_socket->flags) &&
899 sock_writeable(sk)))
900 mask |= POLLOUT | POLLWRNORM;
901
Eric W. Biedermanc70f1822009-01-20 11:07:17 +0000902 if (tun->dev->reg_state != NETREG_REGISTERED)
903 mask = POLLERR;
904
Eric W. Biederman631ab462009-01-20 11:00:40 +0000905 tun_put(tun);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906 return mask;
907}
908
Rusty Russellf42157c2008-08-15 15:15:10 -0700909/* prepad is the amount to reserve at front. len is length after that.
910 * linear is a hint as to how much to copy (usually headers). */
Jason Wang54f968d2012-10-31 19:45:57 +0000911static struct sk_buff *tun_alloc_skb(struct tun_file *tfile,
stephen hemminger6f7c1562011-06-08 14:33:08 +0000912 size_t prepad, size_t len,
913 size_t linear, int noblock)
Rusty Russellf42157c2008-08-15 15:15:10 -0700914{
Jason Wang54f968d2012-10-31 19:45:57 +0000915 struct sock *sk = tfile->socket.sk;
Rusty Russellf42157c2008-08-15 15:15:10 -0700916 struct sk_buff *skb;
Herbert Xu33dccbb2009-02-05 21:25:32 -0800917 int err;
Rusty Russellf42157c2008-08-15 15:15:10 -0700918
919 /* Under a page? Don't bother with paged skb. */
Herbert Xu0eca93b2009-04-14 02:09:43 -0700920 if (prepad + len < PAGE_SIZE || !linear)
Herbert Xu33dccbb2009-02-05 21:25:32 -0800921 linear = len;
Rusty Russellf42157c2008-08-15 15:15:10 -0700922
Herbert Xu33dccbb2009-02-05 21:25:32 -0800923 skb = sock_alloc_send_pskb(sk, prepad + linear, len - linear, noblock,
924 &err);
Rusty Russellf42157c2008-08-15 15:15:10 -0700925 if (!skb)
Herbert Xu33dccbb2009-02-05 21:25:32 -0800926 return ERR_PTR(err);
Rusty Russellf42157c2008-08-15 15:15:10 -0700927
928 skb_reserve(skb, prepad);
929 skb_put(skb, linear);
Herbert Xu33dccbb2009-02-05 21:25:32 -0800930 skb->data_len = len - linear;
931 skb->len += len - linear;
Rusty Russellf42157c2008-08-15 15:15:10 -0700932
933 return skb;
934}
935
Michael S. Tsirkin06908992012-07-20 09:23:23 +0000936/* set skb frags from iovec, this can move to core network code for reuse */
937static int zerocopy_sg_from_iovec(struct sk_buff *skb, const struct iovec *from,
938 int offset, size_t count)
939{
940 int len = iov_length(from, count) - offset;
941 int copy = skb_headlen(skb);
942 int size, offset1 = 0;
943 int i = 0;
944
945 /* Skip over from offset */
946 while (count && (offset >= from->iov_len)) {
947 offset -= from->iov_len;
948 ++from;
949 --count;
950 }
951
952 /* copy up to skb headlen */
953 while (count && (copy > 0)) {
954 size = min_t(unsigned int, copy, from->iov_len - offset);
955 if (copy_from_user(skb->data + offset1, from->iov_base + offset,
956 size))
957 return -EFAULT;
958 if (copy > size) {
959 ++from;
960 --count;
961 offset = 0;
962 } else
963 offset += size;
964 copy -= size;
965 offset1 += size;
966 }
967
968 if (len == offset1)
969 return 0;
970
971 while (count--) {
972 struct page *page[MAX_SKB_FRAGS];
973 int num_pages;
974 unsigned long base;
975 unsigned long truesize;
976
977 len = from->iov_len - offset;
978 if (!len) {
979 offset = 0;
980 ++from;
981 continue;
982 }
983 base = (unsigned long)from->iov_base + offset;
984 size = ((base & ~PAGE_MASK) + len + ~PAGE_MASK) >> PAGE_SHIFT;
985 if (i + size > MAX_SKB_FRAGS)
986 return -EMSGSIZE;
987 num_pages = get_user_pages_fast(base, size, 0, &page[i]);
988 if (num_pages != size) {
989 for (i = 0; i < num_pages; i++)
990 put_page(page[i]);
991 return -EFAULT;
992 }
993 truesize = size * PAGE_SIZE;
994 skb->data_len += len;
995 skb->len += len;
996 skb->truesize += truesize;
997 atomic_add(truesize, &skb->sk->sk_wmem_alloc);
998 while (len) {
999 int off = base & ~PAGE_MASK;
1000 int size = min_t(int, len, PAGE_SIZE - off);
1001 __skb_fill_page_desc(skb, i, page[i], off, size);
1002 skb_shinfo(skb)->nr_frags++;
1003 /* increase sk_wmem_alloc */
1004 base += size;
1005 len -= size;
1006 i++;
1007 }
1008 offset = 0;
1009 ++from;
1010 }
1011 return 0;
1012}
1013
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014/* Get packet from user space buffer */
Jason Wang54f968d2012-10-31 19:45:57 +00001015static ssize_t tun_get_user(struct tun_struct *tun, struct tun_file *tfile,
1016 void *msg_control, const struct iovec *iv,
1017 size_t total_len, size_t count, int noblock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018{
Harvey Harrison09640e62009-02-01 00:45:17 -08001019 struct tun_pi pi = { 0, cpu_to_be16(ETH_P_IP) };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020 struct sk_buff *skb;
Michael S. Tsirkin06908992012-07-20 09:23:23 +00001021 size_t len = total_len, align = NET_SKB_PAD;
Rusty Russellf43798c2008-07-03 03:48:02 -07001022 struct virtio_net_hdr gso = { 0 };
Michael S. Tsirkin6f26c9a2009-04-20 01:26:11 +00001023 int offset = 0;
Michael S. Tsirkin06908992012-07-20 09:23:23 +00001024 int copylen;
1025 bool zerocopy = false;
1026 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027
1028 if (!(tun->flags & TUN_NO_PI)) {
Michael S. Tsirkin06908992012-07-20 09:23:23 +00001029 if ((len -= sizeof(pi)) > total_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030 return -EINVAL;
1031
Michael S. Tsirkin6f26c9a2009-04-20 01:26:11 +00001032 if (memcpy_fromiovecend((void *)&pi, iv, 0, sizeof(pi)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033 return -EFAULT;
Michael S. Tsirkin6f26c9a2009-04-20 01:26:11 +00001034 offset += sizeof(pi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035 }
1036
Rusty Russellf43798c2008-07-03 03:48:02 -07001037 if (tun->flags & TUN_VNET_HDR) {
Michael S. Tsirkin06908992012-07-20 09:23:23 +00001038 if ((len -= tun->vnet_hdr_sz) > total_len)
Rusty Russellf43798c2008-07-03 03:48:02 -07001039 return -EINVAL;
1040
Michael S. Tsirkin6f26c9a2009-04-20 01:26:11 +00001041 if (memcpy_fromiovecend((void *)&gso, iv, offset, sizeof(gso)))
Rusty Russellf43798c2008-07-03 03:48:02 -07001042 return -EFAULT;
1043
Herbert Xu49091222009-06-08 00:20:01 -07001044 if ((gso.flags & VIRTIO_NET_HDR_F_NEEDS_CSUM) &&
1045 gso.csum_start + gso.csum_offset + 2 > gso.hdr_len)
1046 gso.hdr_len = gso.csum_start + gso.csum_offset + 2;
1047
Rusty Russellf43798c2008-07-03 03:48:02 -07001048 if (gso.hdr_len > len)
1049 return -EINVAL;
Michael S. Tsirkind9d52b52010-03-17 17:45:01 +02001050 offset += tun->vnet_hdr_sz;
Rusty Russellf43798c2008-07-03 03:48:02 -07001051 }
1052
Rusty Russelle01bf1c2008-04-12 18:49:30 -07001053 if ((tun->flags & TUN_TYPE_MASK) == TUN_TAP_DEV) {
stephen hemmingera504b862011-06-08 14:33:07 +00001054 align += NET_IP_ALIGN;
Herbert Xu0eca93b2009-04-14 02:09:43 -07001055 if (unlikely(len < ETH_HLEN ||
1056 (gso.hdr_len && gso.hdr_len < ETH_HLEN)))
Rusty Russelle01bf1c2008-04-12 18:49:30 -07001057 return -EINVAL;
1058 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001059
Michael S. Tsirkin06908992012-07-20 09:23:23 +00001060 if (msg_control)
1061 zerocopy = true;
1062
1063 if (zerocopy) {
1064 /* Userspace may produce vectors with count greater than
1065 * MAX_SKB_FRAGS, so we need to linearize parts of the skb
1066 * to let the rest of data to be fit in the frags.
1067 */
1068 if (count > MAX_SKB_FRAGS) {
1069 copylen = iov_length(iv, count - MAX_SKB_FRAGS);
1070 if (copylen < offset)
1071 copylen = 0;
1072 else
1073 copylen -= offset;
1074 } else
1075 copylen = 0;
1076 /* There are 256 bytes to be copied in skb, so there is enough
1077 * room for skb expand head in case it is used.
1078 * The rest of the buffer is mapped from userspace.
1079 */
1080 if (copylen < gso.hdr_len)
1081 copylen = gso.hdr_len;
1082 if (!copylen)
1083 copylen = GOODCOPY_LEN;
1084 } else
1085 copylen = len;
1086
Jason Wang54f968d2012-10-31 19:45:57 +00001087 skb = tun_alloc_skb(tfile, align, copylen, gso.hdr_len, noblock);
Herbert Xu33dccbb2009-02-05 21:25:32 -08001088 if (IS_ERR(skb)) {
1089 if (PTR_ERR(skb) != -EAGAIN)
1090 tun->dev->stats.rx_dropped++;
1091 return PTR_ERR(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092 }
1093
Michael S. Tsirkin06908992012-07-20 09:23:23 +00001094 if (zerocopy)
1095 err = zerocopy_sg_from_iovec(skb, iv, offset, count);
1096 else
1097 err = skb_copy_datagram_from_iovec(skb, 0, iv, offset, len);
1098
1099 if (err) {
Jeff Garzik09f75cd2007-10-03 17:41:50 -07001100 tun->dev->stats.rx_dropped++;
Dave Jones8f227572006-03-11 18:49:13 -08001101 kfree_skb(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102 return -EFAULT;
Dave Jones8f227572006-03-11 18:49:13 -08001103 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104
Rusty Russellf43798c2008-07-03 03:48:02 -07001105 if (gso.flags & VIRTIO_NET_HDR_F_NEEDS_CSUM) {
1106 if (!skb_partial_csum_set(skb, gso.csum_start,
1107 gso.csum_offset)) {
1108 tun->dev->stats.rx_frame_errors++;
1109 kfree_skb(skb);
1110 return -EINVAL;
1111 }
Michał Mirosław88255372011-04-19 06:13:10 +00001112 }
Rusty Russellf43798c2008-07-03 03:48:02 -07001113
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114 switch (tun->flags & TUN_TYPE_MASK) {
1115 case TUN_TUN_DEV:
Ang Way Chuangf09f7ee2008-06-17 21:10:33 -07001116 if (tun->flags & TUN_NO_PI) {
1117 switch (skb->data[0] & 0xf0) {
1118 case 0x40:
1119 pi.proto = htons(ETH_P_IP);
1120 break;
1121 case 0x60:
1122 pi.proto = htons(ETH_P_IPV6);
1123 break;
1124 default:
1125 tun->dev->stats.rx_dropped++;
1126 kfree_skb(skb);
1127 return -EINVAL;
1128 }
1129 }
1130
Arnaldo Carvalho de Melo459a98e2007-03-19 15:30:44 -07001131 skb_reset_mac_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132 skb->protocol = pi.proto;
Arnaldo Carvalho de Melo4c13eb62007-04-25 17:40:23 -07001133 skb->dev = tun->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134 break;
1135 case TUN_TAP_DEV:
1136 skb->protocol = eth_type_trans(skb, tun->dev);
1137 break;
Joe Perches6403eab2011-06-03 11:51:20 +00001138 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139
Rusty Russellf43798c2008-07-03 03:48:02 -07001140 if (gso.gso_type != VIRTIO_NET_HDR_GSO_NONE) {
1141 pr_debug("GSO!\n");
1142 switch (gso.gso_type & ~VIRTIO_NET_HDR_GSO_ECN) {
1143 case VIRTIO_NET_HDR_GSO_TCPV4:
1144 skb_shinfo(skb)->gso_type = SKB_GSO_TCPV4;
1145 break;
1146 case VIRTIO_NET_HDR_GSO_TCPV6:
1147 skb_shinfo(skb)->gso_type = SKB_GSO_TCPV6;
1148 break;
Sridhar Samudralae36aa252009-07-14 14:21:04 +00001149 case VIRTIO_NET_HDR_GSO_UDP:
1150 skb_shinfo(skb)->gso_type = SKB_GSO_UDP;
1151 break;
Rusty Russellf43798c2008-07-03 03:48:02 -07001152 default:
1153 tun->dev->stats.rx_frame_errors++;
1154 kfree_skb(skb);
1155 return -EINVAL;
1156 }
1157
1158 if (gso.gso_type & VIRTIO_NET_HDR_GSO_ECN)
1159 skb_shinfo(skb)->gso_type |= SKB_GSO_TCP_ECN;
1160
1161 skb_shinfo(skb)->gso_size = gso.gso_size;
1162 if (skb_shinfo(skb)->gso_size == 0) {
1163 tun->dev->stats.rx_frame_errors++;
1164 kfree_skb(skb);
1165 return -EINVAL;
1166 }
1167
1168 /* Header must be checked, and gso_segs computed. */
1169 skb_shinfo(skb)->gso_type |= SKB_GSO_DODGY;
1170 skb_shinfo(skb)->gso_segs = 0;
1171 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001172
Michael S. Tsirkin06908992012-07-20 09:23:23 +00001173 /* copy skb_ubuf_info for callback when skb has no error */
1174 if (zerocopy) {
1175 skb_shinfo(skb)->destructor_arg = msg_control;
1176 skb_shinfo(skb)->tx_flags |= SKBTX_DEV_ZEROCOPY;
1177 }
1178
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179 netif_rx_ni(skb);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001180
Jeff Garzik09f75cd2007-10-03 17:41:50 -07001181 tun->dev->stats.rx_packets++;
1182 tun->dev->stats.rx_bytes += len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183
Jason Wang96442e422012-10-31 19:46:02 +00001184 tun_flow_update(tun, skb, tfile->queue_index);
Michael S. Tsirkin06908992012-07-20 09:23:23 +00001185 return total_len;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001186}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187
Badari Pulavartyee0b3e62006-09-30 23:28:47 -07001188static ssize_t tun_chr_aio_write(struct kiocb *iocb, const struct iovec *iv,
1189 unsigned long count, loff_t pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190{
Herbert Xu33dccbb2009-02-05 21:25:32 -08001191 struct file *file = iocb->ki_filp;
Herbert Xuab46d772009-02-14 20:46:39 -08001192 struct tun_struct *tun = tun_get(file);
Jason Wang54f968d2012-10-31 19:45:57 +00001193 struct tun_file *tfile = file->private_data;
Eric W. Biederman631ab462009-01-20 11:00:40 +00001194 ssize_t result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195
1196 if (!tun)
1197 return -EBADFD;
1198
Joe Perches6b8a66e2011-03-02 07:18:10 +00001199 tun_debug(KERN_INFO, tun, "tun_chr_write %ld\n", count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200
Jason Wang54f968d2012-10-31 19:45:57 +00001201 result = tun_get_user(tun, tfile, NULL, iv, iov_length(iv, count),
1202 count, file->f_flags & O_NONBLOCK);
Eric W. Biederman631ab462009-01-20 11:00:40 +00001203
1204 tun_put(tun);
1205 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206}
1207
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208/* Put packet to the user space buffer */
stephen hemminger6f7c1562011-06-08 14:33:08 +00001209static ssize_t tun_put_user(struct tun_struct *tun,
Jason Wang54f968d2012-10-31 19:45:57 +00001210 struct tun_file *tfile,
stephen hemminger6f7c1562011-06-08 14:33:08 +00001211 struct sk_buff *skb,
1212 const struct iovec *iv, int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213{
1214 struct tun_pi pi = { 0, skb->protocol };
1215 ssize_t total = 0;
1216
1217 if (!(tun->flags & TUN_NO_PI)) {
1218 if ((len -= sizeof(pi)) < 0)
1219 return -EINVAL;
1220
1221 if (len < skb->len) {
1222 /* Packet will be striped */
1223 pi.flags |= TUN_PKT_STRIP;
1224 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001225
Michael S. Tsirkin43b39dc2009-04-20 01:25:59 +00001226 if (memcpy_toiovecend(iv, (void *) &pi, 0, sizeof(pi)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227 return -EFAULT;
1228 total += sizeof(pi);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001229 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230
Rusty Russellf43798c2008-07-03 03:48:02 -07001231 if (tun->flags & TUN_VNET_HDR) {
1232 struct virtio_net_hdr gso = { 0 }; /* no info leak */
Michael S. Tsirkind9d52b52010-03-17 17:45:01 +02001233 if ((len -= tun->vnet_hdr_sz) < 0)
Rusty Russellf43798c2008-07-03 03:48:02 -07001234 return -EINVAL;
1235
1236 if (skb_is_gso(skb)) {
1237 struct skb_shared_info *sinfo = skb_shinfo(skb);
1238
1239 /* This is a hint as to how much should be linear. */
1240 gso.hdr_len = skb_headlen(skb);
1241 gso.gso_size = sinfo->gso_size;
1242 if (sinfo->gso_type & SKB_GSO_TCPV4)
1243 gso.gso_type = VIRTIO_NET_HDR_GSO_TCPV4;
1244 else if (sinfo->gso_type & SKB_GSO_TCPV6)
1245 gso.gso_type = VIRTIO_NET_HDR_GSO_TCPV6;
Sridhar Samudralae36aa252009-07-14 14:21:04 +00001246 else if (sinfo->gso_type & SKB_GSO_UDP)
1247 gso.gso_type = VIRTIO_NET_HDR_GSO_UDP;
Michael S. Tsirkinef3db4a2010-07-21 04:32:45 +00001248 else {
Joe Perches6b8a66e2011-03-02 07:18:10 +00001249 pr_err("unexpected GSO type: "
Michael S. Tsirkinef3db4a2010-07-21 04:32:45 +00001250 "0x%x, gso_size %d, hdr_len %d\n",
1251 sinfo->gso_type, gso.gso_size,
1252 gso.hdr_len);
1253 print_hex_dump(KERN_ERR, "tun: ",
1254 DUMP_PREFIX_NONE,
1255 16, 1, skb->head,
1256 min((int)gso.hdr_len, 64), true);
1257 WARN_ON_ONCE(1);
1258 return -EINVAL;
1259 }
Rusty Russellf43798c2008-07-03 03:48:02 -07001260 if (sinfo->gso_type & SKB_GSO_TCP_ECN)
1261 gso.gso_type |= VIRTIO_NET_HDR_GSO_ECN;
1262 } else
1263 gso.gso_type = VIRTIO_NET_HDR_GSO_NONE;
1264
1265 if (skb->ip_summed == CHECKSUM_PARTIAL) {
1266 gso.flags = VIRTIO_NET_HDR_F_NEEDS_CSUM;
Michał Mirosław55508d62010-12-14 15:24:08 +00001267 gso.csum_start = skb_checksum_start_offset(skb);
Rusty Russellf43798c2008-07-03 03:48:02 -07001268 gso.csum_offset = skb->csum_offset;
Jason Wang10a8d942011-06-10 00:56:17 +00001269 } else if (skb->ip_summed == CHECKSUM_UNNECESSARY) {
1270 gso.flags = VIRTIO_NET_HDR_F_DATA_VALID;
Rusty Russellf43798c2008-07-03 03:48:02 -07001271 } /* else everything is zero */
1272
Michael S. Tsirkin43b39dc2009-04-20 01:25:59 +00001273 if (unlikely(memcpy_toiovecend(iv, (void *)&gso, total,
1274 sizeof(gso))))
Rusty Russellf43798c2008-07-03 03:48:02 -07001275 return -EFAULT;
Michael S. Tsirkind9d52b52010-03-17 17:45:01 +02001276 total += tun->vnet_hdr_sz;
Rusty Russellf43798c2008-07-03 03:48:02 -07001277 }
1278
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279 len = min_t(int, skb->len, len);
1280
Michael S. Tsirkin43b39dc2009-04-20 01:25:59 +00001281 skb_copy_datagram_const_iovec(skb, 0, iv, total, len);
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00001282 total += skb->len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283
Jeff Garzik09f75cd2007-10-03 17:41:50 -07001284 tun->dev->stats.tx_packets++;
1285 tun->dev->stats.tx_bytes += len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286
1287 return total;
1288}
1289
Jason Wang54f968d2012-10-31 19:45:57 +00001290static ssize_t tun_do_read(struct tun_struct *tun, struct tun_file *tfile,
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00001291 struct kiocb *iocb, const struct iovec *iv,
1292 ssize_t len, int noblock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294 DECLARE_WAITQUEUE(wait, current);
1295 struct sk_buff *skb;
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00001296 ssize_t ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297
Joe Perches6b8a66e2011-03-02 07:18:10 +00001298 tun_debug(KERN_INFO, tun, "tun_chr_read\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299
Amos Kong61a5ff12011-06-09 00:27:10 -07001300 if (unlikely(!noblock))
Jason Wang54f968d2012-10-31 19:45:57 +00001301 add_wait_queue(&tfile->wq.wait, &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302 while (len) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303 current->state = TASK_INTERRUPTIBLE;
1304
1305 /* Read frames from the queue */
Jason Wang54f968d2012-10-31 19:45:57 +00001306 if (!(skb = skb_dequeue(&tfile->socket.sk->sk_receive_queue))) {
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00001307 if (noblock) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001308 ret = -EAGAIN;
1309 break;
1310 }
1311 if (signal_pending(current)) {
1312 ret = -ERESTARTSYS;
1313 break;
1314 }
Eric W. Biedermanc70f1822009-01-20 11:07:17 +00001315 if (tun->dev->reg_state != NETREG_REGISTERED) {
1316 ret = -EIO;
1317 break;
1318 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001319
1320 /* Nothing to read, let's sleep */
1321 schedule();
1322 continue;
1323 }
Jason Wangc8d68e62012-10-31 19:46:00 +00001324 netif_wake_subqueue(tun->dev, tfile->queue_index);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001325
Jason Wang54f968d2012-10-31 19:45:57 +00001326 ret = tun_put_user(tun, tfile, skb, iv, len);
Max Krasnyanskyf271b2c2008-07-14 22:18:19 -07001327 kfree_skb(skb);
1328 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329 }
1330
1331 current->state = TASK_RUNNING;
Amos Kong61a5ff12011-06-09 00:27:10 -07001332 if (unlikely(!noblock))
Jason Wang54f968d2012-10-31 19:45:57 +00001333 remove_wait_queue(&tfile->wq.wait, &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00001335 return ret;
1336}
1337
1338static ssize_t tun_chr_aio_read(struct kiocb *iocb, const struct iovec *iv,
1339 unsigned long count, loff_t pos)
1340{
1341 struct file *file = iocb->ki_filp;
1342 struct tun_file *tfile = file->private_data;
1343 struct tun_struct *tun = __tun_get(tfile);
1344 ssize_t len, ret;
1345
1346 if (!tun)
1347 return -EBADFD;
1348 len = iov_length(iv, count);
1349 if (len < 0) {
1350 ret = -EINVAL;
1351 goto out;
1352 }
1353
Jason Wang54f968d2012-10-31 19:45:57 +00001354 ret = tun_do_read(tun, tfile, iocb, iv, len,
1355 file->f_flags & O_NONBLOCK);
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00001356 ret = min_t(ssize_t, ret, len);
Eric W. Biederman631ab462009-01-20 11:00:40 +00001357out:
1358 tun_put(tun);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359 return ret;
1360}
1361
Jason Wang96442e422012-10-31 19:46:02 +00001362static void tun_free_netdev(struct net_device *dev)
1363{
1364 struct tun_struct *tun = netdev_priv(dev);
1365
1366 tun_flow_uninit(tun);
1367 free_netdev(dev);
1368}
1369
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370static void tun_setup(struct net_device *dev)
1371{
1372 struct tun_struct *tun = netdev_priv(dev);
1373
Eric W. Biederman0625c882012-02-07 16:48:55 -08001374 tun->owner = INVALID_UID;
1375 tun->group = INVALID_GID;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001376
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377 dev->ethtool_ops = &tun_ethtool_ops;
Jason Wang96442e422012-10-31 19:46:02 +00001378 dev->destructor = tun_free_netdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379}
1380
Eric W. Biedermanf019a7a2009-01-21 16:02:16 -08001381/* Trivial set of netlink ops to allow deleting tun or tap
1382 * device with netlink.
1383 */
1384static int tun_validate(struct nlattr *tb[], struct nlattr *data[])
1385{
1386 return -EINVAL;
1387}
1388
1389static struct rtnl_link_ops tun_link_ops __read_mostly = {
1390 .kind = DRV_NAME,
1391 .priv_size = sizeof(struct tun_struct),
1392 .setup = tun_setup,
1393 .validate = tun_validate,
1394};
1395
Herbert Xu33dccbb2009-02-05 21:25:32 -08001396static void tun_sock_write_space(struct sock *sk)
1397{
Jason Wang54f968d2012-10-31 19:45:57 +00001398 struct tun_file *tfile;
Eric Dumazet43815482010-04-29 11:01:49 +00001399 wait_queue_head_t *wqueue;
Herbert Xu33dccbb2009-02-05 21:25:32 -08001400
1401 if (!sock_writeable(sk))
1402 return;
1403
Herbert Xu33dccbb2009-02-05 21:25:32 -08001404 if (!test_and_clear_bit(SOCK_ASYNC_NOSPACE, &sk->sk_socket->flags))
1405 return;
1406
Eric Dumazet43815482010-04-29 11:01:49 +00001407 wqueue = sk_sleep(sk);
1408 if (wqueue && waitqueue_active(wqueue))
1409 wake_up_interruptible_sync_poll(wqueue, POLLOUT |
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00001410 POLLWRNORM | POLLWRBAND);
Herbert Xuc722c622009-06-03 21:45:55 -07001411
Jason Wang54f968d2012-10-31 19:45:57 +00001412 tfile = container_of(sk, struct tun_file, sk);
1413 kill_fasync(&tfile->fasync, SIGIO, POLL_OUT);
Herbert Xu33dccbb2009-02-05 21:25:32 -08001414}
1415
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00001416static int tun_sendmsg(struct kiocb *iocb, struct socket *sock,
1417 struct msghdr *m, size_t total_len)
1418{
Jason Wang54f968d2012-10-31 19:45:57 +00001419 int ret;
1420 struct tun_file *tfile = container_of(sock, struct tun_file, socket);
1421 struct tun_struct *tun = __tun_get(tfile);
1422
1423 if (!tun)
1424 return -EBADFD;
Jason Wang54f968d2012-10-31 19:45:57 +00001425 ret = tun_get_user(tun, tfile, m->msg_control, m->msg_iov, total_len,
1426 m->msg_iovlen, m->msg_flags & MSG_DONTWAIT);
1427 tun_put(tun);
1428 return ret;
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00001429}
1430
Jason Wang54f968d2012-10-31 19:45:57 +00001431
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00001432static int tun_recvmsg(struct kiocb *iocb, struct socket *sock,
1433 struct msghdr *m, size_t total_len,
1434 int flags)
1435{
Jason Wang54f968d2012-10-31 19:45:57 +00001436 struct tun_file *tfile = container_of(sock, struct tun_file, socket);
1437 struct tun_struct *tun = __tun_get(tfile);
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00001438 int ret;
Jason Wang54f968d2012-10-31 19:45:57 +00001439
1440 if (!tun)
1441 return -EBADFD;
1442
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00001443 if (flags & ~(MSG_DONTWAIT|MSG_TRUNC))
1444 return -EINVAL;
Jason Wang54f968d2012-10-31 19:45:57 +00001445 ret = tun_do_read(tun, tfile, iocb, m->msg_iov, total_len,
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00001446 flags & MSG_DONTWAIT);
1447 if (ret > total_len) {
1448 m->msg_flags |= MSG_TRUNC;
1449 ret = flags & MSG_TRUNC ? ret : total_len;
1450 }
Jason Wang54f968d2012-10-31 19:45:57 +00001451 tun_put(tun);
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00001452 return ret;
1453}
1454
Stanislav Kinsbursky1ab5ecb2012-03-12 02:59:41 +00001455static int tun_release(struct socket *sock)
1456{
1457 if (sock->sk)
1458 sock_put(sock->sk);
1459 return 0;
1460}
1461
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00001462/* Ops structure to mimic raw sockets with tun */
1463static const struct proto_ops tun_socket_ops = {
1464 .sendmsg = tun_sendmsg,
1465 .recvmsg = tun_recvmsg,
Stanislav Kinsbursky1ab5ecb2012-03-12 02:59:41 +00001466 .release = tun_release,
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00001467};
1468
Herbert Xu33dccbb2009-02-05 21:25:32 -08001469static struct proto tun_proto = {
1470 .name = "tun",
1471 .owner = THIS_MODULE,
Jason Wang54f968d2012-10-31 19:45:57 +00001472 .obj_size = sizeof(struct tun_file),
Herbert Xu33dccbb2009-02-05 21:25:32 -08001473};
Eric W. Biedermanf019a7a2009-01-21 16:02:16 -08001474
David Woodhouse980c9e82009-05-09 22:54:21 -07001475static int tun_flags(struct tun_struct *tun)
1476{
1477 int flags = 0;
1478
1479 if (tun->flags & TUN_TUN_DEV)
1480 flags |= IFF_TUN;
1481 else
1482 flags |= IFF_TAP;
1483
1484 if (tun->flags & TUN_NO_PI)
1485 flags |= IFF_NO_PI;
1486
1487 if (tun->flags & TUN_ONE_QUEUE)
1488 flags |= IFF_ONE_QUEUE;
1489
1490 if (tun->flags & TUN_VNET_HDR)
1491 flags |= IFF_VNET_HDR;
1492
Jason Wangc8d68e62012-10-31 19:46:00 +00001493 if (tun->flags & TUN_TAP_MQ)
1494 flags |= IFF_MULTI_QUEUE;
1495
David Woodhouse980c9e82009-05-09 22:54:21 -07001496 return flags;
1497}
1498
1499static ssize_t tun_show_flags(struct device *dev, struct device_attribute *attr,
1500 char *buf)
1501{
1502 struct tun_struct *tun = netdev_priv(to_net_dev(dev));
1503 return sprintf(buf, "0x%x\n", tun_flags(tun));
1504}
1505
1506static ssize_t tun_show_owner(struct device *dev, struct device_attribute *attr,
1507 char *buf)
1508{
1509 struct tun_struct *tun = netdev_priv(to_net_dev(dev));
Eric W. Biederman0625c882012-02-07 16:48:55 -08001510 return uid_valid(tun->owner)?
1511 sprintf(buf, "%u\n",
1512 from_kuid_munged(current_user_ns(), tun->owner)):
1513 sprintf(buf, "-1\n");
David Woodhouse980c9e82009-05-09 22:54:21 -07001514}
1515
1516static ssize_t tun_show_group(struct device *dev, struct device_attribute *attr,
1517 char *buf)
1518{
1519 struct tun_struct *tun = netdev_priv(to_net_dev(dev));
Eric W. Biederman0625c882012-02-07 16:48:55 -08001520 return gid_valid(tun->group) ?
1521 sprintf(buf, "%u\n",
1522 from_kgid_munged(current_user_ns(), tun->group)):
1523 sprintf(buf, "-1\n");
David Woodhouse980c9e82009-05-09 22:54:21 -07001524}
1525
1526static DEVICE_ATTR(tun_flags, 0444, tun_show_flags, NULL);
1527static DEVICE_ATTR(owner, 0444, tun_show_owner, NULL);
1528static DEVICE_ATTR(group, 0444, tun_show_group, NULL);
1529
Pavel Emelyanovd647a592008-04-16 00:41:16 -07001530static int tun_set_iff(struct net *net, struct file *file, struct ifreq *ifr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001531{
1532 struct tun_struct *tun;
Jason Wang54f968d2012-10-31 19:45:57 +00001533 struct tun_file *tfile = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001534 struct net_device *dev;
1535 int err;
1536
Eric W. Biederman74a3e5a2009-01-20 10:56:20 +00001537 dev = __dev_get_by_name(net, ifr->ifr_name);
1538 if (dev) {
David Woodhousef85ba782009-04-27 03:23:54 -07001539 if (ifr->ifr_flags & IFF_TUN_EXCL)
1540 return -EBUSY;
Eric W. Biederman74a3e5a2009-01-20 10:56:20 +00001541 if ((ifr->ifr_flags & IFF_TUN) && dev->netdev_ops == &tun_netdev_ops)
1542 tun = netdev_priv(dev);
1543 else if ((ifr->ifr_flags & IFF_TAP) && dev->netdev_ops == &tap_netdev_ops)
1544 tun = netdev_priv(dev);
1545 else
1546 return -EINVAL;
1547
Jason Wangcde8b152012-10-31 19:46:01 +00001548 if (tun_not_capable(tun))
Paul Moore2b980db2009-08-28 18:12:43 -04001549 return -EPERM;
Jason Wang54f968d2012-10-31 19:45:57 +00001550 err = security_tun_dev_attach(tfile->socket.sk);
Paul Moore2b980db2009-08-28 18:12:43 -04001551 if (err < 0)
1552 return err;
1553
Eric W. Biedermana7385ba2009-01-20 10:57:48 +00001554 err = tun_attach(tun, file);
1555 if (err < 0)
1556 return err;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001557 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558 else {
1559 char *name;
1560 unsigned long flags = 0;
1561
David Woodhouseca6bb5d2006-06-22 16:07:52 -07001562 if (!capable(CAP_NET_ADMIN))
1563 return -EPERM;
Paul Moore2b980db2009-08-28 18:12:43 -04001564 err = security_tun_dev_create();
1565 if (err < 0)
1566 return err;
David Woodhouseca6bb5d2006-06-22 16:07:52 -07001567
Linus Torvalds1da177e2005-04-16 15:20:36 -07001568 /* Set dev type */
1569 if (ifr->ifr_flags & IFF_TUN) {
1570 /* TUN device */
1571 flags |= TUN_TUN_DEV;
1572 name = "tun%d";
1573 } else if (ifr->ifr_flags & IFF_TAP) {
1574 /* TAP device */
1575 flags |= TUN_TAP_DEV;
1576 name = "tap%d";
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001577 } else
Kusanagi Kouichi36989b92009-09-16 21:36:13 +00001578 return -EINVAL;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001579
Linus Torvalds1da177e2005-04-16 15:20:36 -07001580 if (*ifr->ifr_name)
1581 name = ifr->ifr_name;
1582
Jason Wangc8d68e62012-10-31 19:46:00 +00001583 dev = alloc_netdev_mqs(sizeof(struct tun_struct), name,
1584 tun_setup,
1585 MAX_TAP_QUEUES, MAX_TAP_QUEUES);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001586 if (!dev)
1587 return -ENOMEM;
1588
Pavel Emelyanovfc54c652008-04-16 00:41:53 -07001589 dev_net_set(dev, net);
Eric W. Biedermanf019a7a2009-01-21 16:02:16 -08001590 dev->rtnl_link_ops = &tun_link_ops;
Stephen Hemminger758e43b2008-11-19 22:10:37 -08001591
Linus Torvalds1da177e2005-04-16 15:20:36 -07001592 tun = netdev_priv(dev);
1593 tun->dev = dev;
1594 tun->flags = flags;
Max Krasnyanskyf271b2c2008-07-14 22:18:19 -07001595 tun->txflt.count = 0;
Michael S. Tsirkind9d52b52010-03-17 17:45:01 +02001596 tun->vnet_hdr_sz = sizeof(struct virtio_net_hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001597
Jason Wang54f968d2012-10-31 19:45:57 +00001598 tun->filter_attached = false;
1599 tun->sndbuf = tfile->socket.sk->sk_sndbuf;
Herbert Xu33dccbb2009-02-05 21:25:32 -08001600
Jason Wang96442e422012-10-31 19:46:02 +00001601 spin_lock_init(&tun->lock);
1602
Jason Wang54f968d2012-10-31 19:45:57 +00001603 security_tun_dev_post_create(&tfile->sk);
Paul Moore2b980db2009-08-28 18:12:43 -04001604
Linus Torvalds1da177e2005-04-16 15:20:36 -07001605 tun_net_init(dev);
1606
Jason Wang96442e422012-10-31 19:46:02 +00001607 if (tun_flow_init(tun))
1608 goto err_free_dev;
1609
Michał Mirosław88255372011-04-19 06:13:10 +00001610 dev->hw_features = NETIF_F_SG | NETIF_F_FRAGLIST |
1611 TUN_USER_FEATURES;
1612 dev->features = dev->hw_features;
1613
Linus Torvalds1da177e2005-04-16 15:20:36 -07001614 err = register_netdevice(tun->dev);
1615 if (err < 0)
Jason Wang54f968d2012-10-31 19:45:57 +00001616 goto err_free_dev;
Herbert Xu9c3fea62009-04-18 14:15:52 +00001617
David Woodhouse980c9e82009-05-09 22:54:21 -07001618 if (device_create_file(&tun->dev->dev, &dev_attr_tun_flags) ||
1619 device_create_file(&tun->dev->dev, &dev_attr_owner) ||
1620 device_create_file(&tun->dev->dev, &dev_attr_group))
Joe Perches6b8a66e2011-03-02 07:18:10 +00001621 pr_err("Failed to create tun sysfs files\n");
David Woodhouse980c9e82009-05-09 22:54:21 -07001622
Eric W. Biedermana7385ba2009-01-20 10:57:48 +00001623 err = tun_attach(tun, file);
1624 if (err < 0)
Jason Wangc8d68e62012-10-31 19:46:00 +00001625 goto err_free_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001626 }
1627
Joe Perches6b8a66e2011-03-02 07:18:10 +00001628 tun_debug(KERN_INFO, tun, "tun_set_iff\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001629
1630 if (ifr->ifr_flags & IFF_NO_PI)
1631 tun->flags |= TUN_NO_PI;
Nathaniel Filardoa26af1e2008-02-05 03:05:07 -08001632 else
1633 tun->flags &= ~TUN_NO_PI;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001634
1635 if (ifr->ifr_flags & IFF_ONE_QUEUE)
1636 tun->flags |= TUN_ONE_QUEUE;
Nathaniel Filardoa26af1e2008-02-05 03:05:07 -08001637 else
1638 tun->flags &= ~TUN_ONE_QUEUE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001639
Rusty Russellf43798c2008-07-03 03:48:02 -07001640 if (ifr->ifr_flags & IFF_VNET_HDR)
1641 tun->flags |= TUN_VNET_HDR;
1642 else
1643 tun->flags &= ~TUN_VNET_HDR;
1644
Jason Wangc8d68e62012-10-31 19:46:00 +00001645 if (ifr->ifr_flags & IFF_MULTI_QUEUE)
1646 tun->flags |= TUN_TAP_MQ;
1647 else
1648 tun->flags &= ~TUN_TAP_MQ;
1649
Max Krasnyanskye35259a2008-07-10 16:59:11 -07001650 /* Make sure persistent devices do not get stuck in
1651 * xoff state.
1652 */
1653 if (netif_running(tun->dev))
Jason Wangc8d68e62012-10-31 19:46:00 +00001654 netif_tx_wake_all_queues(tun->dev);
Max Krasnyanskye35259a2008-07-10 16:59:11 -07001655
Linus Torvalds1da177e2005-04-16 15:20:36 -07001656 strcpy(ifr->ifr_name, tun->dev->name);
1657 return 0;
1658
1659 err_free_dev:
1660 free_netdev(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001661 return err;
1662}
1663
Herbert Xu876bfd42009-08-06 14:22:44 +00001664static int tun_get_iff(struct net *net, struct tun_struct *tun,
1665 struct ifreq *ifr)
Mark McLoughline3b99552008-08-15 15:09:56 -07001666{
Joe Perches6b8a66e2011-03-02 07:18:10 +00001667 tun_debug(KERN_INFO, tun, "tun_get_iff\n");
Mark McLoughline3b99552008-08-15 15:09:56 -07001668
1669 strcpy(ifr->ifr_name, tun->dev->name);
1670
David Woodhouse980c9e82009-05-09 22:54:21 -07001671 ifr->ifr_flags = tun_flags(tun);
Mark McLoughline3b99552008-08-15 15:09:56 -07001672
1673 return 0;
1674}
1675
Rusty Russell5228ddc2008-07-03 03:46:16 -07001676/* This is like a cut-down ethtool ops, except done via tun fd so no
1677 * privs required. */
Michał Mirosław88255372011-04-19 06:13:10 +00001678static int set_offload(struct tun_struct *tun, unsigned long arg)
Rusty Russell5228ddc2008-07-03 03:46:16 -07001679{
Michał Mirosławc8f44af2011-11-15 15:29:55 +00001680 netdev_features_t features = 0;
Rusty Russell5228ddc2008-07-03 03:46:16 -07001681
1682 if (arg & TUN_F_CSUM) {
Michał Mirosław88255372011-04-19 06:13:10 +00001683 features |= NETIF_F_HW_CSUM;
Rusty Russell5228ddc2008-07-03 03:46:16 -07001684 arg &= ~TUN_F_CSUM;
1685
1686 if (arg & (TUN_F_TSO4|TUN_F_TSO6)) {
1687 if (arg & TUN_F_TSO_ECN) {
1688 features |= NETIF_F_TSO_ECN;
1689 arg &= ~TUN_F_TSO_ECN;
1690 }
1691 if (arg & TUN_F_TSO4)
1692 features |= NETIF_F_TSO;
1693 if (arg & TUN_F_TSO6)
1694 features |= NETIF_F_TSO6;
1695 arg &= ~(TUN_F_TSO4|TUN_F_TSO6);
1696 }
Sridhar Samudralae36aa252009-07-14 14:21:04 +00001697
1698 if (arg & TUN_F_UFO) {
1699 features |= NETIF_F_UFO;
1700 arg &= ~TUN_F_UFO;
1701 }
Rusty Russell5228ddc2008-07-03 03:46:16 -07001702 }
1703
1704 /* This gives the user a way to test for new features in future by
1705 * trying to set them. */
1706 if (arg)
1707 return -EINVAL;
1708
Michał Mirosław88255372011-04-19 06:13:10 +00001709 tun->set_features = features;
1710 netdev_update_features(tun->dev);
Rusty Russell5228ddc2008-07-03 03:46:16 -07001711
1712 return 0;
1713}
1714
Jason Wangc8d68e62012-10-31 19:46:00 +00001715static void tun_detach_filter(struct tun_struct *tun, int n)
1716{
1717 int i;
1718 struct tun_file *tfile;
1719
1720 for (i = 0; i < n; i++) {
1721 tfile = rcu_dereference_protected(tun->tfiles[i],
1722 lockdep_rtnl_is_held());
1723 sk_detach_filter(tfile->socket.sk);
1724 }
1725
1726 tun->filter_attached = false;
1727}
1728
1729static int tun_attach_filter(struct tun_struct *tun)
1730{
1731 int i, ret = 0;
1732 struct tun_file *tfile;
1733
1734 for (i = 0; i < tun->numqueues; i++) {
1735 tfile = rcu_dereference_protected(tun->tfiles[i],
1736 lockdep_rtnl_is_held());
1737 ret = sk_attach_filter(&tun->fprog, tfile->socket.sk);
1738 if (ret) {
1739 tun_detach_filter(tun, i);
1740 return ret;
1741 }
1742 }
1743
1744 tun->filter_attached = true;
1745 return ret;
1746}
1747
1748static void tun_set_sndbuf(struct tun_struct *tun)
1749{
1750 struct tun_file *tfile;
1751 int i;
1752
1753 for (i = 0; i < tun->numqueues; i++) {
1754 tfile = rcu_dereference_protected(tun->tfiles[i],
1755 lockdep_rtnl_is_held());
1756 tfile->socket.sk->sk_sndbuf = tun->sndbuf;
1757 }
1758}
1759
Jason Wangcde8b152012-10-31 19:46:01 +00001760static int tun_set_queue(struct file *file, struct ifreq *ifr)
1761{
1762 struct tun_file *tfile = file->private_data;
1763 struct tun_struct *tun;
1764 struct net_device *dev;
1765 int ret = 0;
1766
1767 rtnl_lock();
1768
1769 if (ifr->ifr_flags & IFF_ATTACH_QUEUE) {
1770 dev = __dev_get_by_name(tfile->net, ifr->ifr_name);
1771 if (!dev) {
1772 ret = -EINVAL;
1773 goto unlock;
1774 }
1775
1776 tun = netdev_priv(dev);
1777 if (dev->netdev_ops != &tap_netdev_ops &&
1778 dev->netdev_ops != &tun_netdev_ops)
1779 ret = -EINVAL;
1780 else if (tun_not_capable(tun))
1781 ret = -EPERM;
1782 else
1783 ret = tun_attach(tun, file);
1784 } else if (ifr->ifr_flags & IFF_DETACH_QUEUE)
1785 __tun_detach(tfile, false);
1786 else
1787 ret = -EINVAL;
1788
1789unlock:
1790 rtnl_unlock();
1791 return ret;
1792}
1793
Arnd Bergmann50857e22009-11-06 22:52:32 -08001794static long __tun_chr_ioctl(struct file *file, unsigned int cmd,
1795 unsigned long arg, int ifreq_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001796{
Eric W. Biederman36b50ba2009-01-20 11:01:48 +00001797 struct tun_file *tfile = file->private_data;
Eric W. Biederman631ab462009-01-20 11:00:40 +00001798 struct tun_struct *tun;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001799 void __user* argp = (void __user*)arg;
1800 struct ifreq ifr;
Eric W. Biederman0625c882012-02-07 16:48:55 -08001801 kuid_t owner;
1802 kgid_t group;
Herbert Xu33dccbb2009-02-05 21:25:32 -08001803 int sndbuf;
Michael S. Tsirkind9d52b52010-03-17 17:45:01 +02001804 int vnet_hdr_sz;
Max Krasnyanskyf271b2c2008-07-14 22:18:19 -07001805 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001806
Jason Wangcde8b152012-10-31 19:46:01 +00001807 if (cmd == TUNSETIFF || cmd == TUNSETQUEUE || _IOC_TYPE(cmd) == 0x89) {
Arnd Bergmann50857e22009-11-06 22:52:32 -08001808 if (copy_from_user(&ifr, argp, ifreq_len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001809 return -EFAULT;
David S. Miller8bbb1812012-07-30 14:52:48 -07001810 } else {
Mathias Krausea117dac2012-07-29 19:45:14 +00001811 memset(&ifr, 0, sizeof(ifr));
David S. Miller8bbb1812012-07-30 14:52:48 -07001812 }
Eric W. Biederman631ab462009-01-20 11:00:40 +00001813 if (cmd == TUNGETFEATURES) {
1814 /* Currently this just means: "what IFF flags are valid?".
1815 * This is needed because we never checked for invalid flags on
1816 * TUNSETIFF. */
1817 return put_user(IFF_TUN | IFF_TAP | IFF_NO_PI | IFF_ONE_QUEUE |
Jason Wangcde8b152012-10-31 19:46:01 +00001818 IFF_VNET_HDR | IFF_MULTI_QUEUE,
Eric W. Biederman631ab462009-01-20 11:00:40 +00001819 (unsigned int __user*)argp);
Jason Wangcde8b152012-10-31 19:46:01 +00001820 } else if (cmd == TUNSETQUEUE)
1821 return tun_set_queue(file, &ifr);
Eric W. Biederman631ab462009-01-20 11:00:40 +00001822
Jason Wangc8d68e62012-10-31 19:46:00 +00001823 ret = 0;
Herbert Xu876bfd42009-08-06 14:22:44 +00001824 rtnl_lock();
1825
Eric W. Biederman36b50ba2009-01-20 11:01:48 +00001826 tun = __tun_get(tfile);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001827 if (cmd == TUNSETIFF && !tun) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001828 ifr.ifr_name[IFNAMSIZ-1] = '\0';
1829
Herbert Xu876bfd42009-08-06 14:22:44 +00001830 ret = tun_set_iff(tfile->net, file, &ifr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001831
Herbert Xu876bfd42009-08-06 14:22:44 +00001832 if (ret)
1833 goto unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001834
Arnd Bergmann50857e22009-11-06 22:52:32 -08001835 if (copy_to_user(argp, &ifr, ifreq_len))
Herbert Xu876bfd42009-08-06 14:22:44 +00001836 ret = -EFAULT;
1837 goto unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001838 }
1839
Herbert Xu876bfd42009-08-06 14:22:44 +00001840 ret = -EBADFD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001841 if (!tun)
Herbert Xu876bfd42009-08-06 14:22:44 +00001842 goto unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001843
Jason Wang1e588332012-10-31 19:45:56 +00001844 tun_debug(KERN_INFO, tun, "tun_chr_ioctl cmd %u\n", cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001845
Eric W. Biederman631ab462009-01-20 11:00:40 +00001846 ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001847 switch (cmd) {
Mark McLoughline3b99552008-08-15 15:09:56 -07001848 case TUNGETIFF:
Herbert Xu876bfd42009-08-06 14:22:44 +00001849 ret = tun_get_iff(current->nsproxy->net_ns, tun, &ifr);
Mark McLoughline3b99552008-08-15 15:09:56 -07001850 if (ret)
Eric W. Biederman631ab462009-01-20 11:00:40 +00001851 break;
Mark McLoughline3b99552008-08-15 15:09:56 -07001852
Arnd Bergmann50857e22009-11-06 22:52:32 -08001853 if (copy_to_user(argp, &ifr, ifreq_len))
Eric W. Biederman631ab462009-01-20 11:00:40 +00001854 ret = -EFAULT;
Mark McLoughline3b99552008-08-15 15:09:56 -07001855 break;
1856
Linus Torvalds1da177e2005-04-16 15:20:36 -07001857 case TUNSETNOCSUM:
1858 /* Disable/Enable checksum */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001859
Michał Mirosław88255372011-04-19 06:13:10 +00001860 /* [unimplemented] */
1861 tun_debug(KERN_INFO, tun, "ignored: set checksum %s\n",
Joe Perches6b8a66e2011-03-02 07:18:10 +00001862 arg ? "disabled" : "enabled");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001863 break;
1864
1865 case TUNSETPERSIST:
Jason Wang54f968d2012-10-31 19:45:57 +00001866 /* Disable/Enable persist mode. Keep an extra reference to the
1867 * module to prevent the module being unprobed.
1868 */
1869 if (arg) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001870 tun->flags |= TUN_PERSIST;
Jason Wang54f968d2012-10-31 19:45:57 +00001871 __module_get(THIS_MODULE);
1872 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001873 tun->flags &= ~TUN_PERSIST;
Jason Wang54f968d2012-10-31 19:45:57 +00001874 module_put(THIS_MODULE);
1875 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001876
Joe Perches6b8a66e2011-03-02 07:18:10 +00001877 tun_debug(KERN_INFO, tun, "persist %s\n",
1878 arg ? "enabled" : "disabled");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001879 break;
1880
1881 case TUNSETOWNER:
1882 /* Set owner of the device */
Eric W. Biederman0625c882012-02-07 16:48:55 -08001883 owner = make_kuid(current_user_ns(), arg);
1884 if (!uid_valid(owner)) {
1885 ret = -EINVAL;
1886 break;
1887 }
1888 tun->owner = owner;
Jason Wang1e588332012-10-31 19:45:56 +00001889 tun_debug(KERN_INFO, tun, "owner set to %u\n",
Eric W. Biederman0625c882012-02-07 16:48:55 -08001890 from_kuid(&init_user_ns, tun->owner));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001891 break;
1892
Guido Guenther8c644622007-07-02 22:50:25 -07001893 case TUNSETGROUP:
1894 /* Set group of the device */
Eric W. Biederman0625c882012-02-07 16:48:55 -08001895 group = make_kgid(current_user_ns(), arg);
1896 if (!gid_valid(group)) {
1897 ret = -EINVAL;
1898 break;
1899 }
1900 tun->group = group;
Jason Wang1e588332012-10-31 19:45:56 +00001901 tun_debug(KERN_INFO, tun, "group set to %u\n",
Eric W. Biederman0625c882012-02-07 16:48:55 -08001902 from_kgid(&init_user_ns, tun->group));
Guido Guenther8c644622007-07-02 22:50:25 -07001903 break;
1904
Mike Kershawff4cc3a2005-09-01 17:40:05 -07001905 case TUNSETLINK:
1906 /* Only allow setting the type when the interface is down */
1907 if (tun->dev->flags & IFF_UP) {
Joe Perches6b8a66e2011-03-02 07:18:10 +00001908 tun_debug(KERN_INFO, tun,
1909 "Linktype set failed because interface is up\n");
David S. Miller48abfe02008-04-23 19:37:58 -07001910 ret = -EBUSY;
Mike Kershawff4cc3a2005-09-01 17:40:05 -07001911 } else {
1912 tun->dev->type = (int) arg;
Joe Perches6b8a66e2011-03-02 07:18:10 +00001913 tun_debug(KERN_INFO, tun, "linktype set to %d\n",
1914 tun->dev->type);
David S. Miller48abfe02008-04-23 19:37:58 -07001915 ret = 0;
Mike Kershawff4cc3a2005-09-01 17:40:05 -07001916 }
Eric W. Biederman631ab462009-01-20 11:00:40 +00001917 break;
Mike Kershawff4cc3a2005-09-01 17:40:05 -07001918
Linus Torvalds1da177e2005-04-16 15:20:36 -07001919#ifdef TUN_DEBUG
1920 case TUNSETDEBUG:
1921 tun->debug = arg;
1922 break;
1923#endif
Rusty Russell5228ddc2008-07-03 03:46:16 -07001924 case TUNSETOFFLOAD:
Michał Mirosław88255372011-04-19 06:13:10 +00001925 ret = set_offload(tun, arg);
Eric W. Biederman631ab462009-01-20 11:00:40 +00001926 break;
Rusty Russell5228ddc2008-07-03 03:46:16 -07001927
Max Krasnyanskyf271b2c2008-07-14 22:18:19 -07001928 case TUNSETTXFILTER:
1929 /* Can be set only for TAPs */
Eric W. Biederman631ab462009-01-20 11:00:40 +00001930 ret = -EINVAL;
Max Krasnyanskyf271b2c2008-07-14 22:18:19 -07001931 if ((tun->flags & TUN_TYPE_MASK) != TUN_TAP_DEV)
Eric W. Biederman631ab462009-01-20 11:00:40 +00001932 break;
Harvey Harrisonc0e5a8c2008-07-16 12:45:34 -07001933 ret = update_filter(&tun->txflt, (void __user *)arg);
Eric W. Biederman631ab462009-01-20 11:00:40 +00001934 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001935
1936 case SIOCGIFHWADDR:
Uwe Kleine-Königb5950762010-11-01 15:38:34 -04001937 /* Get hw address */
Max Krasnyanskyf271b2c2008-07-14 22:18:19 -07001938 memcpy(ifr.ifr_hwaddr.sa_data, tun->dev->dev_addr, ETH_ALEN);
1939 ifr.ifr_hwaddr.sa_family = tun->dev->type;
Arnd Bergmann50857e22009-11-06 22:52:32 -08001940 if (copy_to_user(argp, &ifr, ifreq_len))
Eric W. Biederman631ab462009-01-20 11:00:40 +00001941 ret = -EFAULT;
1942 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001943
1944 case SIOCSIFHWADDR:
Max Krasnyanskyf271b2c2008-07-14 22:18:19 -07001945 /* Set hw address */
Joe Perches6b8a66e2011-03-02 07:18:10 +00001946 tun_debug(KERN_DEBUG, tun, "set hw address: %pM\n",
1947 ifr.ifr_hwaddr.sa_data);
Kim B. Heino40102372008-02-29 12:26:21 -08001948
Kim B. Heino40102372008-02-29 12:26:21 -08001949 ret = dev_set_mac_address(tun->dev, &ifr.ifr_hwaddr);
Eric W. Biederman631ab462009-01-20 11:00:40 +00001950 break;
Herbert Xu33dccbb2009-02-05 21:25:32 -08001951
1952 case TUNGETSNDBUF:
Jason Wang54f968d2012-10-31 19:45:57 +00001953 sndbuf = tfile->socket.sk->sk_sndbuf;
Herbert Xu33dccbb2009-02-05 21:25:32 -08001954 if (copy_to_user(argp, &sndbuf, sizeof(sndbuf)))
1955 ret = -EFAULT;
1956 break;
1957
1958 case TUNSETSNDBUF:
1959 if (copy_from_user(&sndbuf, argp, sizeof(sndbuf))) {
1960 ret = -EFAULT;
1961 break;
1962 }
1963
Jason Wangc8d68e62012-10-31 19:46:00 +00001964 tun->sndbuf = sndbuf;
1965 tun_set_sndbuf(tun);
Herbert Xu33dccbb2009-02-05 21:25:32 -08001966 break;
1967
Michael S. Tsirkind9d52b52010-03-17 17:45:01 +02001968 case TUNGETVNETHDRSZ:
1969 vnet_hdr_sz = tun->vnet_hdr_sz;
1970 if (copy_to_user(argp, &vnet_hdr_sz, sizeof(vnet_hdr_sz)))
1971 ret = -EFAULT;
1972 break;
1973
1974 case TUNSETVNETHDRSZ:
1975 if (copy_from_user(&vnet_hdr_sz, argp, sizeof(vnet_hdr_sz))) {
1976 ret = -EFAULT;
1977 break;
1978 }
1979 if (vnet_hdr_sz < (int)sizeof(struct virtio_net_hdr)) {
1980 ret = -EINVAL;
1981 break;
1982 }
1983
1984 tun->vnet_hdr_sz = vnet_hdr_sz;
1985 break;
1986
Michael S. Tsirkin99405162010-02-14 01:01:10 +00001987 case TUNATTACHFILTER:
1988 /* Can be set only for TAPs */
1989 ret = -EINVAL;
1990 if ((tun->flags & TUN_TYPE_MASK) != TUN_TAP_DEV)
1991 break;
1992 ret = -EFAULT;
Jason Wang54f968d2012-10-31 19:45:57 +00001993 if (copy_from_user(&tun->fprog, argp, sizeof(tun->fprog)))
Michael S. Tsirkin99405162010-02-14 01:01:10 +00001994 break;
1995
Jason Wangc8d68e62012-10-31 19:46:00 +00001996 ret = tun_attach_filter(tun);
Michael S. Tsirkin99405162010-02-14 01:01:10 +00001997 break;
1998
1999 case TUNDETACHFILTER:
2000 /* Can be set only for TAPs */
2001 ret = -EINVAL;
2002 if ((tun->flags & TUN_TYPE_MASK) != TUN_TAP_DEV)
2003 break;
Jason Wangc8d68e62012-10-31 19:46:00 +00002004 ret = 0;
2005 tun_detach_filter(tun, tun->numqueues);
Michael S. Tsirkin99405162010-02-14 01:01:10 +00002006 break;
2007
Linus Torvalds1da177e2005-04-16 15:20:36 -07002008 default:
Eric W. Biederman631ab462009-01-20 11:00:40 +00002009 ret = -EINVAL;
2010 break;
Joe Perchesee289b62010-05-17 22:47:34 -07002011 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002012
Herbert Xu876bfd42009-08-06 14:22:44 +00002013unlock:
2014 rtnl_unlock();
2015 if (tun)
2016 tun_put(tun);
Eric W. Biederman631ab462009-01-20 11:00:40 +00002017 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002018}
2019
Arnd Bergmann50857e22009-11-06 22:52:32 -08002020static long tun_chr_ioctl(struct file *file,
2021 unsigned int cmd, unsigned long arg)
2022{
2023 return __tun_chr_ioctl(file, cmd, arg, sizeof (struct ifreq));
2024}
2025
2026#ifdef CONFIG_COMPAT
2027static long tun_chr_compat_ioctl(struct file *file,
2028 unsigned int cmd, unsigned long arg)
2029{
2030 switch (cmd) {
2031 case TUNSETIFF:
2032 case TUNGETIFF:
2033 case TUNSETTXFILTER:
2034 case TUNGETSNDBUF:
2035 case TUNSETSNDBUF:
2036 case SIOCGIFHWADDR:
2037 case SIOCSIFHWADDR:
2038 arg = (unsigned long)compat_ptr(arg);
2039 break;
2040 default:
2041 arg = (compat_ulong_t)arg;
2042 break;
2043 }
2044
2045 /*
2046 * compat_ifreq is shorter than ifreq, so we must not access beyond
2047 * the end of that structure. All fields that are used in this
2048 * driver are compatible though, we don't need to convert the
2049 * contents.
2050 */
2051 return __tun_chr_ioctl(file, cmd, arg, sizeof(struct compat_ifreq));
2052}
2053#endif /* CONFIG_COMPAT */
2054
Linus Torvalds1da177e2005-04-16 15:20:36 -07002055static int tun_chr_fasync(int fd, struct file *file, int on)
2056{
Jason Wang54f968d2012-10-31 19:45:57 +00002057 struct tun_file *tfile = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002058 int ret;
2059
Jason Wang54f968d2012-10-31 19:45:57 +00002060 if ((ret = fasync_helper(fd, file, on, &tfile->fasync)) < 0)
Jonathan Corbet9d319522008-06-19 15:50:37 -06002061 goto out;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002062
Linus Torvalds1da177e2005-04-16 15:20:36 -07002063 if (on) {
Eric W. Biederman609d7fa2006-10-02 02:17:15 -07002064 ret = __f_setown(file, task_pid(current), PIDTYPE_PID, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002065 if (ret)
Jonathan Corbet9d319522008-06-19 15:50:37 -06002066 goto out;
Jason Wang54f968d2012-10-31 19:45:57 +00002067 tfile->flags |= TUN_FASYNC;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002068 } else
Jason Wang54f968d2012-10-31 19:45:57 +00002069 tfile->flags &= ~TUN_FASYNC;
Jonathan Corbet9d319522008-06-19 15:50:37 -06002070 ret = 0;
2071out:
Jonathan Corbet9d319522008-06-19 15:50:37 -06002072 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002073}
2074
2075static int tun_chr_open(struct inode *inode, struct file * file)
2076{
Eric W. Biederman631ab462009-01-20 11:00:40 +00002077 struct tun_file *tfile;
Thomas Gleixnerdeed49f2009-10-14 01:19:46 -07002078
Joe Perches6b8a66e2011-03-02 07:18:10 +00002079 DBG1(KERN_INFO, "tunX: tun_chr_open\n");
Eric W. Biederman631ab462009-01-20 11:00:40 +00002080
Jason Wang54f968d2012-10-31 19:45:57 +00002081 tfile = (struct tun_file *)sk_alloc(&init_net, AF_UNSPEC, GFP_KERNEL,
2082 &tun_proto);
Eric W. Biederman631ab462009-01-20 11:00:40 +00002083 if (!tfile)
2084 return -ENOMEM;
Jason Wang6e914fc2012-10-31 19:45:58 +00002085 rcu_assign_pointer(tfile->tun, NULL);
Eric W. Biederman36b50ba2009-01-20 11:01:48 +00002086 tfile->net = get_net(current->nsproxy->net_ns);
Jason Wang54f968d2012-10-31 19:45:57 +00002087 tfile->flags = 0;
2088
2089 rcu_assign_pointer(tfile->socket.wq, &tfile->wq);
2090 init_waitqueue_head(&tfile->wq.wait);
2091
2092 tfile->socket.file = file;
2093 tfile->socket.ops = &tun_socket_ops;
2094
2095 sock_init_data(&tfile->socket, &tfile->sk);
2096 sk_change_net(&tfile->sk, tfile->net);
2097
2098 tfile->sk.sk_write_space = tun_sock_write_space;
2099 tfile->sk.sk_sndbuf = INT_MAX;
2100
Eric W. Biederman631ab462009-01-20 11:00:40 +00002101 file->private_data = tfile;
Jason Wang54f968d2012-10-31 19:45:57 +00002102 set_bit(SOCK_EXTERNALLY_ALLOCATED, &tfile->socket.flags);
2103
Linus Torvalds1da177e2005-04-16 15:20:36 -07002104 return 0;
2105}
2106
2107static int tun_chr_close(struct inode *inode, struct file *file)
2108{
Eric W. Biederman631ab462009-01-20 11:00:40 +00002109 struct tun_file *tfile = file->private_data;
Jason Wang54f968d2012-10-31 19:45:57 +00002110 struct net *net = tfile->net;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002111
Jason Wangc8d68e62012-10-31 19:46:00 +00002112 tun_detach(tfile, true);
Jason Wang54f968d2012-10-31 19:45:57 +00002113 put_net(net);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002114
2115 return 0;
2116}
2117
Arjan van de Vend54b1fd2007-02-12 00:55:34 -08002118static const struct file_operations tun_fops = {
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002119 .owner = THIS_MODULE,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002120 .llseek = no_llseek,
Badari Pulavartyee0b3e62006-09-30 23:28:47 -07002121 .read = do_sync_read,
2122 .aio_read = tun_chr_aio_read,
2123 .write = do_sync_write,
2124 .aio_write = tun_chr_aio_write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002125 .poll = tun_chr_poll,
Arnd Bergmann50857e22009-11-06 22:52:32 -08002126 .unlocked_ioctl = tun_chr_ioctl,
2127#ifdef CONFIG_COMPAT
2128 .compat_ioctl = tun_chr_compat_ioctl,
2129#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002130 .open = tun_chr_open,
2131 .release = tun_chr_close,
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002132 .fasync = tun_chr_fasync
Linus Torvalds1da177e2005-04-16 15:20:36 -07002133};
2134
2135static struct miscdevice tun_miscdev = {
2136 .minor = TUN_MINOR,
2137 .name = "tun",
Kay Sieverse454cea2009-09-18 23:01:12 +02002138 .nodename = "net/tun",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002139 .fops = &tun_fops,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002140};
2141
2142/* ethtool interface */
2143
2144static int tun_get_settings(struct net_device *dev, struct ethtool_cmd *cmd)
2145{
2146 cmd->supported = 0;
2147 cmd->advertising = 0;
David Decotigny70739492011-04-27 18:32:40 +00002148 ethtool_cmd_speed_set(cmd, SPEED_10);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002149 cmd->duplex = DUPLEX_FULL;
2150 cmd->port = PORT_TP;
2151 cmd->phy_address = 0;
2152 cmd->transceiver = XCVR_INTERNAL;
2153 cmd->autoneg = AUTONEG_DISABLE;
2154 cmd->maxtxpkt = 0;
2155 cmd->maxrxpkt = 0;
2156 return 0;
2157}
2158
2159static void tun_get_drvinfo(struct net_device *dev, struct ethtool_drvinfo *info)
2160{
2161 struct tun_struct *tun = netdev_priv(dev);
2162
Rick Jones33a5ba12011-11-15 14:59:53 +00002163 strlcpy(info->driver, DRV_NAME, sizeof(info->driver));
2164 strlcpy(info->version, DRV_VERSION, sizeof(info->version));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002165
2166 switch (tun->flags & TUN_TYPE_MASK) {
2167 case TUN_TUN_DEV:
Rick Jones33a5ba12011-11-15 14:59:53 +00002168 strlcpy(info->bus_info, "tun", sizeof(info->bus_info));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002169 break;
2170 case TUN_TAP_DEV:
Rick Jones33a5ba12011-11-15 14:59:53 +00002171 strlcpy(info->bus_info, "tap", sizeof(info->bus_info));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002172 break;
2173 }
2174}
2175
2176static u32 tun_get_msglevel(struct net_device *dev)
2177{
2178#ifdef TUN_DEBUG
2179 struct tun_struct *tun = netdev_priv(dev);
2180 return tun->debug;
2181#else
2182 return -EOPNOTSUPP;
2183#endif
2184}
2185
2186static void tun_set_msglevel(struct net_device *dev, u32 value)
2187{
2188#ifdef TUN_DEBUG
2189 struct tun_struct *tun = netdev_priv(dev);
2190 tun->debug = value;
2191#endif
2192}
2193
Jeff Garzik7282d492006-09-13 14:30:00 -04002194static const struct ethtool_ops tun_ethtool_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002195 .get_settings = tun_get_settings,
2196 .get_drvinfo = tun_get_drvinfo,
2197 .get_msglevel = tun_get_msglevel,
2198 .set_msglevel = tun_set_msglevel,
Nolan Leakebee31362010-07-27 13:53:43 +00002199 .get_link = ethtool_op_get_link,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002200};
2201
Pavel Emelyanov79d17602008-04-16 00:40:46 -07002202
Linus Torvalds1da177e2005-04-16 15:20:36 -07002203static int __init tun_init(void)
2204{
2205 int ret = 0;
2206
Joe Perches6b8a66e2011-03-02 07:18:10 +00002207 pr_info("%s, %s\n", DRV_DESCRIPTION, DRV_VERSION);
2208 pr_info("%s\n", DRV_COPYRIGHT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002209
Eric W. Biedermanf019a7a2009-01-21 16:02:16 -08002210 ret = rtnl_link_register(&tun_link_ops);
Pavel Emelyanov79d17602008-04-16 00:40:46 -07002211 if (ret) {
Joe Perches6b8a66e2011-03-02 07:18:10 +00002212 pr_err("Can't register link_ops\n");
Eric W. Biedermanf019a7a2009-01-21 16:02:16 -08002213 goto err_linkops;
Pavel Emelyanov79d17602008-04-16 00:40:46 -07002214 }
2215
Linus Torvalds1da177e2005-04-16 15:20:36 -07002216 ret = misc_register(&tun_miscdev);
Pavel Emelyanov79d17602008-04-16 00:40:46 -07002217 if (ret) {
Joe Perches6b8a66e2011-03-02 07:18:10 +00002218 pr_err("Can't register misc device %d\n", TUN_MINOR);
Pavel Emelyanov79d17602008-04-16 00:40:46 -07002219 goto err_misc;
2220 }
Eric W. Biedermanf019a7a2009-01-21 16:02:16 -08002221 return 0;
Pavel Emelyanov79d17602008-04-16 00:40:46 -07002222err_misc:
Eric W. Biedermanf019a7a2009-01-21 16:02:16 -08002223 rtnl_link_unregister(&tun_link_ops);
2224err_linkops:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002225 return ret;
2226}
2227
2228static void tun_cleanup(void)
2229{
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002230 misc_deregister(&tun_miscdev);
Eric W. Biedermanf019a7a2009-01-21 16:02:16 -08002231 rtnl_link_unregister(&tun_link_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002232}
2233
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00002234/* Get an underlying socket object from tun file. Returns error unless file is
2235 * attached to a device. The returned object works like a packet socket, it
2236 * can be used for sock_sendmsg/sock_recvmsg. The caller is responsible for
2237 * holding a reference to the file for as long as the socket is in use. */
2238struct socket *tun_get_socket(struct file *file)
2239{
Jason Wang6e914fc2012-10-31 19:45:58 +00002240 struct tun_file *tfile;
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00002241 if (file->f_op != &tun_fops)
2242 return ERR_PTR(-EINVAL);
Jason Wang6e914fc2012-10-31 19:45:58 +00002243 tfile = file->private_data;
2244 if (!tfile)
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00002245 return ERR_PTR(-EBADFD);
Jason Wang54f968d2012-10-31 19:45:57 +00002246 return &tfile->socket;
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00002247}
2248EXPORT_SYMBOL_GPL(tun_get_socket);
2249
Linus Torvalds1da177e2005-04-16 15:20:36 -07002250module_init(tun_init);
2251module_exit(tun_cleanup);
2252MODULE_DESCRIPTION(DRV_DESCRIPTION);
2253MODULE_AUTHOR(DRV_COPYRIGHT);
2254MODULE_LICENSE("GPL");
2255MODULE_ALIAS_MISCDEV(TUN_MINOR);
Kay Sievers578454f2010-05-20 18:07:20 +02002256MODULE_ALIAS("devname:net/tun");