blob: 2ac2164a1e39bd70b0a046ee6dc7df05b76e1045 [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 Krasnyanskyf271b2cc2008-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
Rami Rosen36fe8c092012-11-25 22:07:40 +0000124 * netdevice not for a specific queue (at least I didn't see the requirement for
Jason Wang54f968d2012-10-31 19:45:57 +0000125 * this).
Jason Wang6e914fc2012-10-31 19:45:58 +0000126 *
127 * RCU usage:
Rami Rosen36fe8c092012-11-25 22:07:40 +0000128 * The tun_file and tun_struct are loosely coupled, the pointer from one to the
Jason Wang6e914fc2012-10-31 19:45:58 +0000129 * 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
Rami Rosen36fe8c092012-11-25 22:07:40 +0000156 * device, socket filter, sndbuf and vnet header size were restore when the
Jason Wang54f968d2012-10-31 19:45:57 +0000157 * 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 Krasnyanskyf271b2cc2008-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();
Eric W. Biedermanc260b772012-11-18 21:34:11 +0000376 struct net *net = dev_net(tun->dev);
Jason Wangcde8b152012-10-31 19:46:01 +0000377
378 return ((uid_valid(tun->owner) && !uid_eq(cred->euid, tun->owner)) ||
379 (gid_valid(tun->group) && !in_egroup_p(tun->group))) &&
Eric W. Biedermanc260b772012-11-18 21:34:11 +0000380 !ns_capable(net->user_ns, CAP_NET_ADMIN);
Jason Wangcde8b152012-10-31 19:46:01 +0000381}
382
Jason Wangc8d68e62012-10-31 19:46:00 +0000383static void tun_set_real_num_queues(struct tun_struct *tun)
384{
385 netif_set_real_num_tx_queues(tun->dev, tun->numqueues);
386 netif_set_real_num_rx_queues(tun->dev, tun->numqueues);
387}
388
389static void __tun_detach(struct tun_file *tfile, bool clean)
390{
391 struct tun_file *ntfile;
392 struct tun_struct *tun;
393 struct net_device *dev;
394
395 tun = rcu_dereference_protected(tfile->tun,
396 lockdep_rtnl_is_held());
397 if (tun) {
398 u16 index = tfile->queue_index;
399 BUG_ON(index >= tun->numqueues);
400 dev = tun->dev;
401
402 rcu_assign_pointer(tun->tfiles[index],
403 tun->tfiles[tun->numqueues - 1]);
404 rcu_assign_pointer(tfile->tun, NULL);
405 ntfile = rcu_dereference_protected(tun->tfiles[index],
406 lockdep_rtnl_is_held());
407 ntfile->queue_index = index;
408
409 --tun->numqueues;
410 sock_put(&tfile->sk);
411
412 synchronize_net();
Jason Wang96442e422012-10-31 19:46:02 +0000413 tun_flow_delete_by_queue(tun, tun->numqueues + 1);
Jason Wangc8d68e62012-10-31 19:46:00 +0000414 /* Drop read queue */
415 skb_queue_purge(&tfile->sk.sk_receive_queue);
416 tun_set_real_num_queues(tun);
417
418 if (tun->numqueues == 0 && !(tun->flags & TUN_PERSIST))
419 if (dev->reg_state == NETREG_REGISTERED)
420 unregister_netdevice(dev);
421 }
422
423 if (clean) {
424 BUG_ON(!test_bit(SOCK_EXTERNALLY_ALLOCATED,
425 &tfile->socket.flags));
426 sk_release_kernel(&tfile->sk);
427 }
428}
429
430static void tun_detach(struct tun_file *tfile, bool clean)
431{
432 rtnl_lock();
433 __tun_detach(tfile, clean);
434 rtnl_unlock();
435}
436
437static void tun_detach_all(struct net_device *dev)
438{
439 struct tun_struct *tun = netdev_priv(dev);
440 struct tun_file *tfile;
441 int i, n = tun->numqueues;
442
443 for (i = 0; i < n; i++) {
444 tfile = rcu_dereference_protected(tun->tfiles[i],
445 lockdep_rtnl_is_held());
446 BUG_ON(!tfile);
447 wake_up_all(&tfile->wq.wait);
448 rcu_assign_pointer(tfile->tun, NULL);
449 --tun->numqueues;
450 }
451 BUG_ON(tun->numqueues != 0);
452
453 synchronize_net();
454 for (i = 0; i < n; i++) {
455 tfile = rcu_dereference_protected(tun->tfiles[i],
456 lockdep_rtnl_is_held());
457 /* Drop read queue */
458 skb_queue_purge(&tfile->sk.sk_receive_queue);
459 sock_put(&tfile->sk);
460 }
461}
462
Eric W. Biedermana7385ba2009-01-20 10:57:48 +0000463static int tun_attach(struct tun_struct *tun, struct file *file)
464{
Eric W. Biederman631ab462009-01-20 11:00:40 +0000465 struct tun_file *tfile = file->private_data;
Eric W. Biederman38231b72009-01-20 11:02:28 +0000466 int err;
Eric W. Biedermana7385ba2009-01-20 10:57:48 +0000467
Eric W. Biederman38231b72009-01-20 11:02:28 +0000468 err = -EINVAL;
Jason Wangc8d68e62012-10-31 19:46:00 +0000469 if (rcu_dereference_protected(tfile->tun, lockdep_rtnl_is_held()))
Eric W. Biederman38231b72009-01-20 11:02:28 +0000470 goto out;
471
472 err = -EBUSY;
Jason Wangc8d68e62012-10-31 19:46:00 +0000473 if (!(tun->flags & TUN_TAP_MQ) && tun->numqueues == 1)
474 goto out;
475
476 err = -E2BIG;
477 if (tun->numqueues == MAX_TAP_QUEUES)
Eric W. Biederman38231b72009-01-20 11:02:28 +0000478 goto out;
479
480 err = 0;
Jason Wang54f968d2012-10-31 19:45:57 +0000481
Jason Wangc8d68e62012-10-31 19:46:00 +0000482 /* Re-attach the filter to presist device */
Jason Wang54f968d2012-10-31 19:45:57 +0000483 if (tun->filter_attached == true) {
484 err = sk_attach_filter(&tun->fprog, tfile->socket.sk);
485 if (!err)
486 goto out;
487 }
Jason Wangc8d68e62012-10-31 19:46:00 +0000488 tfile->queue_index = tun->numqueues;
Jason Wang6e914fc2012-10-31 19:45:58 +0000489 rcu_assign_pointer(tfile->tun, tun);
Jason Wangc8d68e62012-10-31 19:46:00 +0000490 rcu_assign_pointer(tun->tfiles[tun->numqueues], tfile);
Jason Wang54f968d2012-10-31 19:45:57 +0000491 sock_hold(&tfile->sk);
Jason Wangc8d68e62012-10-31 19:46:00 +0000492 tun->numqueues++;
493
494 tun_set_real_num_queues(tun);
495
Jason Wangc8d68e62012-10-31 19:46:00 +0000496 /* device is allowed to go away first, so no need to hold extra
497 * refcnt.
498 */
Eric W. Biedermana7385ba2009-01-20 10:57:48 +0000499
Eric W. Biederman38231b72009-01-20 11:02:28 +0000500out:
Eric W. Biederman38231b72009-01-20 11:02:28 +0000501 return err;
Eric W. Biedermana7385ba2009-01-20 10:57:48 +0000502}
503
Eric W. Biederman631ab462009-01-20 11:00:40 +0000504static struct tun_struct *__tun_get(struct tun_file *tfile)
505{
Jason Wang6e914fc2012-10-31 19:45:58 +0000506 struct tun_struct *tun;
Eric W. Biedermanc70f1822009-01-20 11:07:17 +0000507
Jason Wang6e914fc2012-10-31 19:45:58 +0000508 rcu_read_lock();
509 tun = rcu_dereference(tfile->tun);
510 if (tun)
511 dev_hold(tun->dev);
512 rcu_read_unlock();
Eric W. Biedermanc70f1822009-01-20 11:07:17 +0000513
514 return tun;
Eric W. Biederman631ab462009-01-20 11:00:40 +0000515}
516
517static struct tun_struct *tun_get(struct file *file)
518{
519 return __tun_get(file->private_data);
520}
521
522static void tun_put(struct tun_struct *tun)
523{
Jason Wang6e914fc2012-10-31 19:45:58 +0000524 dev_put(tun->dev);
Eric W. Biederman631ab462009-01-20 11:00:40 +0000525}
526
Joe Perches6b8a66e2011-03-02 07:18:10 +0000527/* TAP filtering */
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -0700528static void addr_hash_set(u32 *mask, const u8 *addr)
529{
530 int n = ether_crc(ETH_ALEN, addr) >> 26;
531 mask[n >> 5] |= (1 << (n & 31));
532}
533
534static unsigned int addr_hash_test(const u32 *mask, const u8 *addr)
535{
536 int n = ether_crc(ETH_ALEN, addr) >> 26;
537 return mask[n >> 5] & (1 << (n & 31));
538}
539
540static int update_filter(struct tap_filter *filter, void __user *arg)
541{
542 struct { u8 u[ETH_ALEN]; } *addr;
543 struct tun_filter uf;
544 int err, alen, n, nexact;
545
546 if (copy_from_user(&uf, arg, sizeof(uf)))
547 return -EFAULT;
548
549 if (!uf.count) {
550 /* Disabled */
551 filter->count = 0;
552 return 0;
553 }
554
555 alen = ETH_ALEN * uf.count;
556 addr = kmalloc(alen, GFP_KERNEL);
557 if (!addr)
558 return -ENOMEM;
559
560 if (copy_from_user(addr, arg + sizeof(uf), alen)) {
561 err = -EFAULT;
562 goto done;
563 }
564
565 /* The filter is updated without holding any locks. Which is
566 * perfectly safe. We disable it first and in the worst
567 * case we'll accept a few undesired packets. */
568 filter->count = 0;
569 wmb();
570
571 /* Use first set of addresses as an exact filter */
572 for (n = 0; n < uf.count && n < FLT_EXACT_COUNT; n++)
573 memcpy(filter->addr[n], addr[n].u, ETH_ALEN);
574
575 nexact = n;
576
Alex Williamsoncfbf84f2009-02-08 17:49:17 -0800577 /* Remaining multicast addresses are hashed,
578 * unicast will leave the filter disabled. */
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -0700579 memset(filter->mask, 0, sizeof(filter->mask));
Alex Williamsoncfbf84f2009-02-08 17:49:17 -0800580 for (; n < uf.count; n++) {
581 if (!is_multicast_ether_addr(addr[n].u)) {
582 err = 0; /* no filter */
583 goto done;
584 }
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -0700585 addr_hash_set(filter->mask, addr[n].u);
Alex Williamsoncfbf84f2009-02-08 17:49:17 -0800586 }
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -0700587
588 /* For ALLMULTI just set the mask to all ones.
589 * This overrides the mask populated above. */
590 if ((uf.flags & TUN_FLT_ALLMULTI))
591 memset(filter->mask, ~0, sizeof(filter->mask));
592
593 /* Now enable the filter */
594 wmb();
595 filter->count = nexact;
596
597 /* Return the number of exact filters */
598 err = nexact;
599
600done:
601 kfree(addr);
602 return err;
603}
604
605/* Returns: 0 - drop, !=0 - accept */
606static int run_filter(struct tap_filter *filter, const struct sk_buff *skb)
607{
608 /* Cannot use eth_hdr(skb) here because skb_mac_hdr() is incorrect
609 * at this point. */
610 struct ethhdr *eh = (struct ethhdr *) skb->data;
611 int i;
612
613 /* Exact match */
614 for (i = 0; i < filter->count; i++)
Joe Perches2e42e472012-05-09 17:17:46 +0000615 if (ether_addr_equal(eh->h_dest, filter->addr[i]))
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -0700616 return 1;
617
618 /* Inexact match (multicast only) */
619 if (is_multicast_ether_addr(eh->h_dest))
620 return addr_hash_test(filter->mask, eh->h_dest);
621
622 return 0;
623}
624
625/*
626 * Checks whether the packet is accepted or not.
627 * Returns: 0 - drop, !=0 - accept
628 */
629static int check_filter(struct tap_filter *filter, const struct sk_buff *skb)
630{
631 if (!filter->count)
632 return 1;
633
634 return run_filter(filter, skb);
635}
636
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637/* Network device part of the driver */
638
Jeff Garzik7282d492006-09-13 14:30:00 -0400639static const struct ethtool_ops tun_ethtool_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640
Eric W. Biedermanc70f1822009-01-20 11:07:17 +0000641/* Net device detach from fd. */
642static void tun_net_uninit(struct net_device *dev)
643{
Jason Wangc8d68e62012-10-31 19:46:00 +0000644 tun_detach_all(dev);
Eric W. Biedermanc70f1822009-01-20 11:07:17 +0000645}
646
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647/* Net device open. */
648static int tun_net_open(struct net_device *dev)
649{
Jason Wangc8d68e62012-10-31 19:46:00 +0000650 netif_tx_start_all_queues(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651 return 0;
652}
653
654/* Net device close. */
655static int tun_net_close(struct net_device *dev)
656{
Jason Wangc8d68e62012-10-31 19:46:00 +0000657 netif_tx_stop_all_queues(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658 return 0;
659}
660
661/* Net device start xmit */
Stephen Hemminger424efe92009-08-31 19:50:51 +0000662static netdev_tx_t tun_net_xmit(struct sk_buff *skb, struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663{
664 struct tun_struct *tun = netdev_priv(dev);
Jason Wangc8d68e62012-10-31 19:46:00 +0000665 int txq = skb->queue_mapping;
Jason Wang6e914fc2012-10-31 19:45:58 +0000666 struct tun_file *tfile;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667
Jason Wang6e914fc2012-10-31 19:45:58 +0000668 rcu_read_lock();
Jason Wangc8d68e62012-10-31 19:46:00 +0000669 tfile = rcu_dereference(tun->tfiles[txq]);
670
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671 /* Drop packet if interface is not attached */
Jason Wangc8d68e62012-10-31 19:46:00 +0000672 if (txq >= tun->numqueues)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673 goto drop;
674
Jason Wang6e914fc2012-10-31 19:45:58 +0000675 tun_debug(KERN_INFO, tun, "tun_net_xmit %d\n", skb->len);
676
Jason Wangc8d68e62012-10-31 19:46:00 +0000677 BUG_ON(!tfile);
678
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -0700679 /* Drop if the filter does not like it.
680 * This is a noop if the filter is disabled.
681 * Filter can be enabled only for the TAP devices. */
682 if (!check_filter(&tun->txflt, skb))
683 goto drop;
684
Jason Wang54f968d2012-10-31 19:45:57 +0000685 if (tfile->socket.sk->sk_filter &&
686 sk_filter(tfile->socket.sk, skb))
Michael S. Tsirkin99405162010-02-14 01:01:10 +0000687 goto drop;
688
Rami Rosen36fe8c092012-11-25 22:07:40 +0000689 /* Limit the number of packets queued by dividing txq length with the
Jason Wangc8d68e62012-10-31 19:46:00 +0000690 * number of queues.
691 */
Jason Wang54f968d2012-10-31 19:45:57 +0000692 if (skb_queue_len(&tfile->socket.sk->sk_receive_queue)
Michael S. Tsirkin5d097102012-12-03 10:07:14 +0000693 >= dev->tx_queue_len / tun->numqueues)
694 goto drop;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695
Michael S. Tsirkin0110d6f2010-04-13 04:59:44 +0000696 /* Orphan the skb - required as we might hang on to it
697 * for indefinite time. */
Michael S. Tsirkin868eefe2012-07-20 09:23:14 +0000698 if (unlikely(skb_orphan_frags(skb, GFP_ATOMIC)))
699 goto drop;
Michael S. Tsirkin0110d6f2010-04-13 04:59:44 +0000700 skb_orphan(skb);
701
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -0700702 /* Enqueue packet */
Jason Wang54f968d2012-10-31 19:45:57 +0000703 skb_queue_tail(&tfile->socket.sk->sk_receive_queue, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704
705 /* Notify and wake up reader process */
Jason Wang54f968d2012-10-31 19:45:57 +0000706 if (tfile->flags & TUN_FASYNC)
707 kill_fasync(&tfile->fasync, SIGIO, POLL_IN);
708 wake_up_interruptible_poll(&tfile->wq.wait, POLLIN |
Michael S. Tsirkin05c28282010-01-14 06:17:09 +0000709 POLLRDNORM | POLLRDBAND);
Jason Wang6e914fc2012-10-31 19:45:58 +0000710
711 rcu_read_unlock();
Patrick McHardy6ed10652009-06-23 06:03:08 +0000712 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713
714drop:
Jeff Garzik09f75cd2007-10-03 17:41:50 -0700715 dev->stats.tx_dropped++;
Michael S. Tsirkin149d36f2012-11-01 09:16:32 +0000716 skb_tx_error(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717 kfree_skb(skb);
Jason Wang6e914fc2012-10-31 19:45:58 +0000718 rcu_read_unlock();
Patrick McHardy6ed10652009-06-23 06:03:08 +0000719 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720}
721
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -0700722static void tun_net_mclist(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723{
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -0700724 /*
725 * This callback is supposed to deal with mc filter in
726 * _rx_ path and has nothing to do with the _tx_ path.
727 * In rx path we always accept everything userspace gives us.
728 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729}
730
Ed Swierk4885a502007-09-16 12:21:38 -0700731#define MIN_MTU 68
732#define MAX_MTU 65535
733
734static int
735tun_net_change_mtu(struct net_device *dev, int new_mtu)
736{
737 if (new_mtu < MIN_MTU || new_mtu + dev->hard_header_len > MAX_MTU)
738 return -EINVAL;
739 dev->mtu = new_mtu;
740 return 0;
741}
742
Michał Mirosławc8f44af2011-11-15 15:29:55 +0000743static netdev_features_t tun_net_fix_features(struct net_device *dev,
744 netdev_features_t features)
Michał Mirosław88255372011-04-19 06:13:10 +0000745{
746 struct tun_struct *tun = netdev_priv(dev);
747
748 return (features & tun->set_features) | (features & ~TUN_USER_FEATURES);
749}
Neil Hormanbebd0972011-06-15 05:25:01 +0000750#ifdef CONFIG_NET_POLL_CONTROLLER
751static void tun_poll_controller(struct net_device *dev)
752{
753 /*
754 * Tun only receives frames when:
755 * 1) the char device endpoint gets data from user space
756 * 2) the tun socket gets a sendmsg call from user space
757 * Since both of those are syncronous operations, we are guaranteed
758 * never to have pending data when we poll for it
759 * so theres nothing to do here but return.
760 * We need this though so netpoll recognizes us as an interface that
761 * supports polling, which enables bridge devices in virt setups to
762 * still use netconsole
763 */
764 return;
765}
766#endif
Stephen Hemminger758e43b2008-11-19 22:10:37 -0800767static const struct net_device_ops tun_netdev_ops = {
Eric W. Biedermanc70f1822009-01-20 11:07:17 +0000768 .ndo_uninit = tun_net_uninit,
Stephen Hemminger758e43b2008-11-19 22:10:37 -0800769 .ndo_open = tun_net_open,
770 .ndo_stop = tun_net_close,
Stephen Hemminger00829822008-11-20 20:14:53 -0800771 .ndo_start_xmit = tun_net_xmit,
Stephen Hemminger758e43b2008-11-19 22:10:37 -0800772 .ndo_change_mtu = tun_net_change_mtu,
Michał Mirosław88255372011-04-19 06:13:10 +0000773 .ndo_fix_features = tun_net_fix_features,
Jason Wangc8d68e62012-10-31 19:46:00 +0000774 .ndo_select_queue = tun_select_queue,
Neil Hormanbebd0972011-06-15 05:25:01 +0000775#ifdef CONFIG_NET_POLL_CONTROLLER
776 .ndo_poll_controller = tun_poll_controller,
777#endif
Stephen Hemminger758e43b2008-11-19 22:10:37 -0800778};
779
780static const struct net_device_ops tap_netdev_ops = {
Eric W. Biedermanc70f1822009-01-20 11:07:17 +0000781 .ndo_uninit = tun_net_uninit,
Stephen Hemminger758e43b2008-11-19 22:10:37 -0800782 .ndo_open = tun_net_open,
783 .ndo_stop = tun_net_close,
Stephen Hemminger00829822008-11-20 20:14:53 -0800784 .ndo_start_xmit = tun_net_xmit,
Stephen Hemminger758e43b2008-11-19 22:10:37 -0800785 .ndo_change_mtu = tun_net_change_mtu,
Michał Mirosław88255372011-04-19 06:13:10 +0000786 .ndo_fix_features = tun_net_fix_features,
Jiri Pirkoafc4b132011-08-16 06:29:01 +0000787 .ndo_set_rx_mode = tun_net_mclist,
Stephen Hemminger758e43b2008-11-19 22:10:37 -0800788 .ndo_set_mac_address = eth_mac_addr,
789 .ndo_validate_addr = eth_validate_addr,
Jason Wangc8d68e62012-10-31 19:46:00 +0000790 .ndo_select_queue = tun_select_queue,
Neil Hormanbebd0972011-06-15 05:25:01 +0000791#ifdef CONFIG_NET_POLL_CONTROLLER
792 .ndo_poll_controller = tun_poll_controller,
793#endif
Stephen Hemminger758e43b2008-11-19 22:10:37 -0800794};
795
Jason Wang96442e422012-10-31 19:46:02 +0000796static int tun_flow_init(struct tun_struct *tun)
797{
798 int i;
799
800 tun->flow_cache = kmem_cache_create("tun_flow_cache",
801 sizeof(struct tun_flow_entry), 0, 0,
802 NULL);
803 if (!tun->flow_cache)
804 return -ENOMEM;
805
806 for (i = 0; i < TUN_NUM_FLOW_ENTRIES; i++)
807 INIT_HLIST_HEAD(&tun->flows[i]);
808
809 tun->ageing_time = TUN_FLOW_EXPIRE;
810 setup_timer(&tun->flow_gc_timer, tun_flow_cleanup, (unsigned long)tun);
811 mod_timer(&tun->flow_gc_timer,
812 round_jiffies_up(jiffies + tun->ageing_time));
813
814 return 0;
815}
816
817static void tun_flow_uninit(struct tun_struct *tun)
818{
819 del_timer_sync(&tun->flow_gc_timer);
820 tun_flow_flush(tun);
821
822 /* Wait for completion of call_rcu()'s */
823 rcu_barrier();
824 kmem_cache_destroy(tun->flow_cache);
825}
826
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827/* Initialize net device. */
828static void tun_net_init(struct net_device *dev)
829{
830 struct tun_struct *tun = netdev_priv(dev);
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400831
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832 switch (tun->flags & TUN_TYPE_MASK) {
833 case TUN_TUN_DEV:
Stephen Hemminger758e43b2008-11-19 22:10:37 -0800834 dev->netdev_ops = &tun_netdev_ops;
835
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836 /* Point-to-Point TUN Device */
837 dev->hard_header_len = 0;
838 dev->addr_len = 0;
839 dev->mtu = 1500;
840
841 /* Zero header length */
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400842 dev->type = ARPHRD_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843 dev->flags = IFF_POINTOPOINT | IFF_NOARP | IFF_MULTICAST;
844 dev->tx_queue_len = TUN_READQ_SIZE; /* We prefer our own queue length */
845 break;
846
847 case TUN_TAP_DEV:
Kusanagi Kouichi7a0a9602008-12-29 18:23:28 -0800848 dev->netdev_ops = &tap_netdev_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849 /* Ethernet TAP Device */
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -0700850 ether_setup(dev);
Neil Horman550fd082011-07-26 06:05:38 +0000851 dev->priv_flags &= ~IFF_TX_SKB_SHARING;
stephen hemmingera6768472012-12-10 15:16:00 +0000852 dev->priv_flags |= IFF_LIVE_ADDR_CHANGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853
Danny Kukawkaf2cedb62012-02-15 06:45:39 +0000854 eth_hw_addr_random(dev);
Brian Braunstein36226a82007-04-26 01:00:55 -0700855
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856 dev->tx_queue_len = TUN_READQ_SIZE; /* We prefer our own queue length */
857 break;
858 }
859}
860
861/* Character device part */
862
863/* Poll */
Jason Wangc8d68e62012-10-31 19:46:00 +0000864static unsigned int tun_chr_poll(struct file *file, poll_table *wait)
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400865{
Eric W. Biedermanb2430de2009-01-20 11:03:21 +0000866 struct tun_file *tfile = file->private_data;
867 struct tun_struct *tun = __tun_get(tfile);
Mariusz Kozlowski3c8a9c62009-07-05 19:48:35 +0000868 struct sock *sk;
Herbert Xu33dccbb2009-02-05 21:25:32 -0800869 unsigned int mask = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870
871 if (!tun)
Eric W. Biedermaneac9e902009-01-20 10:59:05 +0000872 return POLLERR;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873
Jason Wang54f968d2012-10-31 19:45:57 +0000874 sk = tfile->socket.sk;
Mariusz Kozlowski3c8a9c62009-07-05 19:48:35 +0000875
Joe Perches6b8a66e2011-03-02 07:18:10 +0000876 tun_debug(KERN_INFO, tun, "tun_chr_poll\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877
Jason Wang54f968d2012-10-31 19:45:57 +0000878 poll_wait(file, &tfile->wq.wait, wait);
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400879
Michael S. Tsirkin89f56d12009-08-30 07:04:42 +0000880 if (!skb_queue_empty(&sk->sk_receive_queue))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881 mask |= POLLIN | POLLRDNORM;
882
Herbert Xu33dccbb2009-02-05 21:25:32 -0800883 if (sock_writeable(sk) ||
884 (!test_and_set_bit(SOCK_ASYNC_NOSPACE, &sk->sk_socket->flags) &&
885 sock_writeable(sk)))
886 mask |= POLLOUT | POLLWRNORM;
887
Eric W. Biedermanc70f1822009-01-20 11:07:17 +0000888 if (tun->dev->reg_state != NETREG_REGISTERED)
889 mask = POLLERR;
890
Eric W. Biederman631ab462009-01-20 11:00:40 +0000891 tun_put(tun);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892 return mask;
893}
894
Rusty Russellf42157c2008-08-15 15:15:10 -0700895/* prepad is the amount to reserve at front. len is length after that.
896 * linear is a hint as to how much to copy (usually headers). */
Jason Wang54f968d2012-10-31 19:45:57 +0000897static struct sk_buff *tun_alloc_skb(struct tun_file *tfile,
stephen hemminger6f7c1562011-06-08 14:33:08 +0000898 size_t prepad, size_t len,
899 size_t linear, int noblock)
Rusty Russellf42157c2008-08-15 15:15:10 -0700900{
Jason Wang54f968d2012-10-31 19:45:57 +0000901 struct sock *sk = tfile->socket.sk;
Rusty Russellf42157c2008-08-15 15:15:10 -0700902 struct sk_buff *skb;
Herbert Xu33dccbb2009-02-05 21:25:32 -0800903 int err;
Rusty Russellf42157c2008-08-15 15:15:10 -0700904
905 /* Under a page? Don't bother with paged skb. */
Herbert Xu0eca93b2009-04-14 02:09:43 -0700906 if (prepad + len < PAGE_SIZE || !linear)
Herbert Xu33dccbb2009-02-05 21:25:32 -0800907 linear = len;
Rusty Russellf42157c2008-08-15 15:15:10 -0700908
Herbert Xu33dccbb2009-02-05 21:25:32 -0800909 skb = sock_alloc_send_pskb(sk, prepad + linear, len - linear, noblock,
910 &err);
Rusty Russellf42157c2008-08-15 15:15:10 -0700911 if (!skb)
Herbert Xu33dccbb2009-02-05 21:25:32 -0800912 return ERR_PTR(err);
Rusty Russellf42157c2008-08-15 15:15:10 -0700913
914 skb_reserve(skb, prepad);
915 skb_put(skb, linear);
Herbert Xu33dccbb2009-02-05 21:25:32 -0800916 skb->data_len = len - linear;
917 skb->len += len - linear;
Rusty Russellf42157c2008-08-15 15:15:10 -0700918
919 return skb;
920}
921
Michael S. Tsirkin06908992012-07-20 09:23:23 +0000922/* set skb frags from iovec, this can move to core network code for reuse */
923static int zerocopy_sg_from_iovec(struct sk_buff *skb, const struct iovec *from,
924 int offset, size_t count)
925{
926 int len = iov_length(from, count) - offset;
927 int copy = skb_headlen(skb);
928 int size, offset1 = 0;
929 int i = 0;
930
931 /* Skip over from offset */
932 while (count && (offset >= from->iov_len)) {
933 offset -= from->iov_len;
934 ++from;
935 --count;
936 }
937
938 /* copy up to skb headlen */
939 while (count && (copy > 0)) {
940 size = min_t(unsigned int, copy, from->iov_len - offset);
941 if (copy_from_user(skb->data + offset1, from->iov_base + offset,
942 size))
943 return -EFAULT;
944 if (copy > size) {
945 ++from;
946 --count;
947 offset = 0;
948 } else
949 offset += size;
950 copy -= size;
951 offset1 += size;
952 }
953
954 if (len == offset1)
955 return 0;
956
957 while (count--) {
958 struct page *page[MAX_SKB_FRAGS];
959 int num_pages;
960 unsigned long base;
961 unsigned long truesize;
962
963 len = from->iov_len - offset;
964 if (!len) {
965 offset = 0;
966 ++from;
967 continue;
968 }
969 base = (unsigned long)from->iov_base + offset;
970 size = ((base & ~PAGE_MASK) + len + ~PAGE_MASK) >> PAGE_SHIFT;
971 if (i + size > MAX_SKB_FRAGS)
972 return -EMSGSIZE;
973 num_pages = get_user_pages_fast(base, size, 0, &page[i]);
974 if (num_pages != size) {
975 for (i = 0; i < num_pages; i++)
976 put_page(page[i]);
977 return -EFAULT;
978 }
979 truesize = size * PAGE_SIZE;
980 skb->data_len += len;
981 skb->len += len;
982 skb->truesize += truesize;
983 atomic_add(truesize, &skb->sk->sk_wmem_alloc);
984 while (len) {
985 int off = base & ~PAGE_MASK;
986 int size = min_t(int, len, PAGE_SIZE - off);
987 __skb_fill_page_desc(skb, i, page[i], off, size);
988 skb_shinfo(skb)->nr_frags++;
989 /* increase sk_wmem_alloc */
990 base += size;
991 len -= size;
992 i++;
993 }
994 offset = 0;
995 ++from;
996 }
997 return 0;
998}
999
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000/* Get packet from user space buffer */
Jason Wang54f968d2012-10-31 19:45:57 +00001001static ssize_t tun_get_user(struct tun_struct *tun, struct tun_file *tfile,
1002 void *msg_control, const struct iovec *iv,
1003 size_t total_len, size_t count, int noblock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004{
Harvey Harrison09640e62009-02-01 00:45:17 -08001005 struct tun_pi pi = { 0, cpu_to_be16(ETH_P_IP) };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006 struct sk_buff *skb;
Michael S. Tsirkin06908992012-07-20 09:23:23 +00001007 size_t len = total_len, align = NET_SKB_PAD;
Rusty Russellf43798c2008-07-03 03:48:02 -07001008 struct virtio_net_hdr gso = { 0 };
Michael S. Tsirkin6f26c9a2009-04-20 01:26:11 +00001009 int offset = 0;
Michael S. Tsirkin06908992012-07-20 09:23:23 +00001010 int copylen;
1011 bool zerocopy = false;
1012 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013
1014 if (!(tun->flags & TUN_NO_PI)) {
Michael S. Tsirkin06908992012-07-20 09:23:23 +00001015 if ((len -= sizeof(pi)) > total_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016 return -EINVAL;
1017
Michael S. Tsirkin6f26c9a2009-04-20 01:26:11 +00001018 if (memcpy_fromiovecend((void *)&pi, iv, 0, sizeof(pi)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019 return -EFAULT;
Michael S. Tsirkin6f26c9a2009-04-20 01:26:11 +00001020 offset += sizeof(pi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021 }
1022
Rusty Russellf43798c2008-07-03 03:48:02 -07001023 if (tun->flags & TUN_VNET_HDR) {
Michael S. Tsirkin06908992012-07-20 09:23:23 +00001024 if ((len -= tun->vnet_hdr_sz) > total_len)
Rusty Russellf43798c2008-07-03 03:48:02 -07001025 return -EINVAL;
1026
Michael S. Tsirkin6f26c9a2009-04-20 01:26:11 +00001027 if (memcpy_fromiovecend((void *)&gso, iv, offset, sizeof(gso)))
Rusty Russellf43798c2008-07-03 03:48:02 -07001028 return -EFAULT;
1029
Herbert Xu49091222009-06-08 00:20:01 -07001030 if ((gso.flags & VIRTIO_NET_HDR_F_NEEDS_CSUM) &&
1031 gso.csum_start + gso.csum_offset + 2 > gso.hdr_len)
1032 gso.hdr_len = gso.csum_start + gso.csum_offset + 2;
1033
Rusty Russellf43798c2008-07-03 03:48:02 -07001034 if (gso.hdr_len > len)
1035 return -EINVAL;
Michael S. Tsirkind9d52b52010-03-17 17:45:01 +02001036 offset += tun->vnet_hdr_sz;
Rusty Russellf43798c2008-07-03 03:48:02 -07001037 }
1038
Rusty Russelle01bf1c2008-04-12 18:49:30 -07001039 if ((tun->flags & TUN_TYPE_MASK) == TUN_TAP_DEV) {
stephen hemmingera504b862011-06-08 14:33:07 +00001040 align += NET_IP_ALIGN;
Herbert Xu0eca93b2009-04-14 02:09:43 -07001041 if (unlikely(len < ETH_HLEN ||
1042 (gso.hdr_len && gso.hdr_len < ETH_HLEN)))
Rusty Russelle01bf1c2008-04-12 18:49:30 -07001043 return -EINVAL;
1044 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001045
Michael S. Tsirkin06908992012-07-20 09:23:23 +00001046 if (msg_control)
1047 zerocopy = true;
1048
1049 if (zerocopy) {
1050 /* Userspace may produce vectors with count greater than
1051 * MAX_SKB_FRAGS, so we need to linearize parts of the skb
1052 * to let the rest of data to be fit in the frags.
1053 */
1054 if (count > MAX_SKB_FRAGS) {
1055 copylen = iov_length(iv, count - MAX_SKB_FRAGS);
1056 if (copylen < offset)
1057 copylen = 0;
1058 else
1059 copylen -= offset;
1060 } else
1061 copylen = 0;
1062 /* There are 256 bytes to be copied in skb, so there is enough
1063 * room for skb expand head in case it is used.
1064 * The rest of the buffer is mapped from userspace.
1065 */
1066 if (copylen < gso.hdr_len)
1067 copylen = gso.hdr_len;
1068 if (!copylen)
1069 copylen = GOODCOPY_LEN;
1070 } else
1071 copylen = len;
1072
Jason Wang54f968d2012-10-31 19:45:57 +00001073 skb = tun_alloc_skb(tfile, align, copylen, gso.hdr_len, noblock);
Herbert Xu33dccbb2009-02-05 21:25:32 -08001074 if (IS_ERR(skb)) {
1075 if (PTR_ERR(skb) != -EAGAIN)
1076 tun->dev->stats.rx_dropped++;
1077 return PTR_ERR(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078 }
1079
Michael S. Tsirkin06908992012-07-20 09:23:23 +00001080 if (zerocopy)
1081 err = zerocopy_sg_from_iovec(skb, iv, offset, count);
1082 else
1083 err = skb_copy_datagram_from_iovec(skb, 0, iv, offset, len);
1084
1085 if (err) {
Jeff Garzik09f75cd2007-10-03 17:41:50 -07001086 tun->dev->stats.rx_dropped++;
Dave Jones8f227572006-03-11 18:49:13 -08001087 kfree_skb(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088 return -EFAULT;
Dave Jones8f227572006-03-11 18:49:13 -08001089 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090
Rusty Russellf43798c2008-07-03 03:48:02 -07001091 if (gso.flags & VIRTIO_NET_HDR_F_NEEDS_CSUM) {
1092 if (!skb_partial_csum_set(skb, gso.csum_start,
1093 gso.csum_offset)) {
1094 tun->dev->stats.rx_frame_errors++;
1095 kfree_skb(skb);
1096 return -EINVAL;
1097 }
Michał Mirosław88255372011-04-19 06:13:10 +00001098 }
Rusty Russellf43798c2008-07-03 03:48:02 -07001099
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100 switch (tun->flags & TUN_TYPE_MASK) {
1101 case TUN_TUN_DEV:
Ang Way Chuangf09f7ee2008-06-17 21:10:33 -07001102 if (tun->flags & TUN_NO_PI) {
1103 switch (skb->data[0] & 0xf0) {
1104 case 0x40:
1105 pi.proto = htons(ETH_P_IP);
1106 break;
1107 case 0x60:
1108 pi.proto = htons(ETH_P_IPV6);
1109 break;
1110 default:
1111 tun->dev->stats.rx_dropped++;
1112 kfree_skb(skb);
1113 return -EINVAL;
1114 }
1115 }
1116
Arnaldo Carvalho de Melo459a98e2007-03-19 15:30:44 -07001117 skb_reset_mac_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118 skb->protocol = pi.proto;
Arnaldo Carvalho de Melo4c13eb62007-04-25 17:40:23 -07001119 skb->dev = tun->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120 break;
1121 case TUN_TAP_DEV:
1122 skb->protocol = eth_type_trans(skb, tun->dev);
1123 break;
Joe Perches6403eab2011-06-03 11:51:20 +00001124 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125
Rusty Russellf43798c2008-07-03 03:48:02 -07001126 if (gso.gso_type != VIRTIO_NET_HDR_GSO_NONE) {
1127 pr_debug("GSO!\n");
1128 switch (gso.gso_type & ~VIRTIO_NET_HDR_GSO_ECN) {
1129 case VIRTIO_NET_HDR_GSO_TCPV4:
1130 skb_shinfo(skb)->gso_type = SKB_GSO_TCPV4;
1131 break;
1132 case VIRTIO_NET_HDR_GSO_TCPV6:
1133 skb_shinfo(skb)->gso_type = SKB_GSO_TCPV6;
1134 break;
Sridhar Samudralae36aa252009-07-14 14:21:04 +00001135 case VIRTIO_NET_HDR_GSO_UDP:
1136 skb_shinfo(skb)->gso_type = SKB_GSO_UDP;
1137 break;
Rusty Russellf43798c2008-07-03 03:48:02 -07001138 default:
1139 tun->dev->stats.rx_frame_errors++;
1140 kfree_skb(skb);
1141 return -EINVAL;
1142 }
1143
1144 if (gso.gso_type & VIRTIO_NET_HDR_GSO_ECN)
1145 skb_shinfo(skb)->gso_type |= SKB_GSO_TCP_ECN;
1146
1147 skb_shinfo(skb)->gso_size = gso.gso_size;
1148 if (skb_shinfo(skb)->gso_size == 0) {
1149 tun->dev->stats.rx_frame_errors++;
1150 kfree_skb(skb);
1151 return -EINVAL;
1152 }
1153
1154 /* Header must be checked, and gso_segs computed. */
1155 skb_shinfo(skb)->gso_type |= SKB_GSO_DODGY;
1156 skb_shinfo(skb)->gso_segs = 0;
1157 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001158
Michael S. Tsirkin06908992012-07-20 09:23:23 +00001159 /* copy skb_ubuf_info for callback when skb has no error */
1160 if (zerocopy) {
1161 skb_shinfo(skb)->destructor_arg = msg_control;
1162 skb_shinfo(skb)->tx_flags |= SKBTX_DEV_ZEROCOPY;
1163 }
1164
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165 netif_rx_ni(skb);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001166
Jeff Garzik09f75cd2007-10-03 17:41:50 -07001167 tun->dev->stats.rx_packets++;
1168 tun->dev->stats.rx_bytes += len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169
Jason Wang96442e422012-10-31 19:46:02 +00001170 tun_flow_update(tun, skb, tfile->queue_index);
Michael S. Tsirkin06908992012-07-20 09:23:23 +00001171 return total_len;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001172}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001173
Badari Pulavartyee0b3e62006-09-30 23:28:47 -07001174static ssize_t tun_chr_aio_write(struct kiocb *iocb, const struct iovec *iv,
1175 unsigned long count, loff_t pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176{
Herbert Xu33dccbb2009-02-05 21:25:32 -08001177 struct file *file = iocb->ki_filp;
Herbert Xuab46d772009-02-14 20:46:39 -08001178 struct tun_struct *tun = tun_get(file);
Jason Wang54f968d2012-10-31 19:45:57 +00001179 struct tun_file *tfile = file->private_data;
Eric W. Biederman631ab462009-01-20 11:00:40 +00001180 ssize_t result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181
1182 if (!tun)
1183 return -EBADFD;
1184
Joe Perches6b8a66e2011-03-02 07:18:10 +00001185 tun_debug(KERN_INFO, tun, "tun_chr_write %ld\n", count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186
Jason Wang54f968d2012-10-31 19:45:57 +00001187 result = tun_get_user(tun, tfile, NULL, iv, iov_length(iv, count),
1188 count, file->f_flags & O_NONBLOCK);
Eric W. Biederman631ab462009-01-20 11:00:40 +00001189
1190 tun_put(tun);
1191 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192}
1193
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194/* Put packet to the user space buffer */
stephen hemminger6f7c1562011-06-08 14:33:08 +00001195static ssize_t tun_put_user(struct tun_struct *tun,
Jason Wang54f968d2012-10-31 19:45:57 +00001196 struct tun_file *tfile,
stephen hemminger6f7c1562011-06-08 14:33:08 +00001197 struct sk_buff *skb,
1198 const struct iovec *iv, int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199{
1200 struct tun_pi pi = { 0, skb->protocol };
1201 ssize_t total = 0;
1202
1203 if (!(tun->flags & TUN_NO_PI)) {
1204 if ((len -= sizeof(pi)) < 0)
1205 return -EINVAL;
1206
1207 if (len < skb->len) {
1208 /* Packet will be striped */
1209 pi.flags |= TUN_PKT_STRIP;
1210 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001211
Michael S. Tsirkin43b39dc2009-04-20 01:25:59 +00001212 if (memcpy_toiovecend(iv, (void *) &pi, 0, sizeof(pi)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213 return -EFAULT;
1214 total += sizeof(pi);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001215 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216
Rusty Russellf43798c2008-07-03 03:48:02 -07001217 if (tun->flags & TUN_VNET_HDR) {
1218 struct virtio_net_hdr gso = { 0 }; /* no info leak */
Michael S. Tsirkind9d52b52010-03-17 17:45:01 +02001219 if ((len -= tun->vnet_hdr_sz) < 0)
Rusty Russellf43798c2008-07-03 03:48:02 -07001220 return -EINVAL;
1221
1222 if (skb_is_gso(skb)) {
1223 struct skb_shared_info *sinfo = skb_shinfo(skb);
1224
1225 /* This is a hint as to how much should be linear. */
1226 gso.hdr_len = skb_headlen(skb);
1227 gso.gso_size = sinfo->gso_size;
1228 if (sinfo->gso_type & SKB_GSO_TCPV4)
1229 gso.gso_type = VIRTIO_NET_HDR_GSO_TCPV4;
1230 else if (sinfo->gso_type & SKB_GSO_TCPV6)
1231 gso.gso_type = VIRTIO_NET_HDR_GSO_TCPV6;
Sridhar Samudralae36aa252009-07-14 14:21:04 +00001232 else if (sinfo->gso_type & SKB_GSO_UDP)
1233 gso.gso_type = VIRTIO_NET_HDR_GSO_UDP;
Michael S. Tsirkinef3db4a2010-07-21 04:32:45 +00001234 else {
Joe Perches6b8a66e2011-03-02 07:18:10 +00001235 pr_err("unexpected GSO type: "
Michael S. Tsirkinef3db4a2010-07-21 04:32:45 +00001236 "0x%x, gso_size %d, hdr_len %d\n",
1237 sinfo->gso_type, gso.gso_size,
1238 gso.hdr_len);
1239 print_hex_dump(KERN_ERR, "tun: ",
1240 DUMP_PREFIX_NONE,
1241 16, 1, skb->head,
1242 min((int)gso.hdr_len, 64), true);
1243 WARN_ON_ONCE(1);
1244 return -EINVAL;
1245 }
Rusty Russellf43798c2008-07-03 03:48:02 -07001246 if (sinfo->gso_type & SKB_GSO_TCP_ECN)
1247 gso.gso_type |= VIRTIO_NET_HDR_GSO_ECN;
1248 } else
1249 gso.gso_type = VIRTIO_NET_HDR_GSO_NONE;
1250
1251 if (skb->ip_summed == CHECKSUM_PARTIAL) {
1252 gso.flags = VIRTIO_NET_HDR_F_NEEDS_CSUM;
Michał Mirosław55508d62010-12-14 15:24:08 +00001253 gso.csum_start = skb_checksum_start_offset(skb);
Rusty Russellf43798c2008-07-03 03:48:02 -07001254 gso.csum_offset = skb->csum_offset;
Jason Wang10a8d942011-06-10 00:56:17 +00001255 } else if (skb->ip_summed == CHECKSUM_UNNECESSARY) {
1256 gso.flags = VIRTIO_NET_HDR_F_DATA_VALID;
Rusty Russellf43798c2008-07-03 03:48:02 -07001257 } /* else everything is zero */
1258
Michael S. Tsirkin43b39dc2009-04-20 01:25:59 +00001259 if (unlikely(memcpy_toiovecend(iv, (void *)&gso, total,
1260 sizeof(gso))))
Rusty Russellf43798c2008-07-03 03:48:02 -07001261 return -EFAULT;
Michael S. Tsirkind9d52b52010-03-17 17:45:01 +02001262 total += tun->vnet_hdr_sz;
Rusty Russellf43798c2008-07-03 03:48:02 -07001263 }
1264
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265 len = min_t(int, skb->len, len);
1266
Michael S. Tsirkin43b39dc2009-04-20 01:25:59 +00001267 skb_copy_datagram_const_iovec(skb, 0, iv, total, len);
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00001268 total += skb->len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269
Jeff Garzik09f75cd2007-10-03 17:41:50 -07001270 tun->dev->stats.tx_packets++;
1271 tun->dev->stats.tx_bytes += len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272
1273 return total;
1274}
1275
Jason Wang54f968d2012-10-31 19:45:57 +00001276static ssize_t tun_do_read(struct tun_struct *tun, struct tun_file *tfile,
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00001277 struct kiocb *iocb, const struct iovec *iv,
1278 ssize_t len, int noblock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280 DECLARE_WAITQUEUE(wait, current);
1281 struct sk_buff *skb;
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00001282 ssize_t ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283
Rami Rosen3872baf2012-11-25 22:07:41 +00001284 tun_debug(KERN_INFO, tun, "tun_do_read\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285
Amos Kong61a5ff12011-06-09 00:27:10 -07001286 if (unlikely(!noblock))
Jason Wang54f968d2012-10-31 19:45:57 +00001287 add_wait_queue(&tfile->wq.wait, &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288 while (len) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289 current->state = TASK_INTERRUPTIBLE;
1290
1291 /* Read frames from the queue */
Jason Wang54f968d2012-10-31 19:45:57 +00001292 if (!(skb = skb_dequeue(&tfile->socket.sk->sk_receive_queue))) {
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00001293 if (noblock) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294 ret = -EAGAIN;
1295 break;
1296 }
1297 if (signal_pending(current)) {
1298 ret = -ERESTARTSYS;
1299 break;
1300 }
Eric W. Biedermanc70f1822009-01-20 11:07:17 +00001301 if (tun->dev->reg_state != NETREG_REGISTERED) {
1302 ret = -EIO;
1303 break;
1304 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001305
1306 /* Nothing to read, let's sleep */
1307 schedule();
1308 continue;
1309 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310
Jason Wang54f968d2012-10-31 19:45:57 +00001311 ret = tun_put_user(tun, tfile, skb, iv, len);
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -07001312 kfree_skb(skb);
1313 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314 }
1315
1316 current->state = TASK_RUNNING;
Amos Kong61a5ff12011-06-09 00:27:10 -07001317 if (unlikely(!noblock))
Jason Wang54f968d2012-10-31 19:45:57 +00001318 remove_wait_queue(&tfile->wq.wait, &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001319
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00001320 return ret;
1321}
1322
1323static ssize_t tun_chr_aio_read(struct kiocb *iocb, const struct iovec *iv,
1324 unsigned long count, loff_t pos)
1325{
1326 struct file *file = iocb->ki_filp;
1327 struct tun_file *tfile = file->private_data;
1328 struct tun_struct *tun = __tun_get(tfile);
1329 ssize_t len, ret;
1330
1331 if (!tun)
1332 return -EBADFD;
1333 len = iov_length(iv, count);
1334 if (len < 0) {
1335 ret = -EINVAL;
1336 goto out;
1337 }
1338
Jason Wang54f968d2012-10-31 19:45:57 +00001339 ret = tun_do_read(tun, tfile, iocb, iv, len,
1340 file->f_flags & O_NONBLOCK);
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00001341 ret = min_t(ssize_t, ret, len);
Eric W. Biederman631ab462009-01-20 11:00:40 +00001342out:
1343 tun_put(tun);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001344 return ret;
1345}
1346
Jason Wang96442e422012-10-31 19:46:02 +00001347static void tun_free_netdev(struct net_device *dev)
1348{
1349 struct tun_struct *tun = netdev_priv(dev);
1350
1351 tun_flow_uninit(tun);
1352 free_netdev(dev);
1353}
1354
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355static void tun_setup(struct net_device *dev)
1356{
1357 struct tun_struct *tun = netdev_priv(dev);
1358
Eric W. Biederman0625c882012-02-07 16:48:55 -08001359 tun->owner = INVALID_UID;
1360 tun->group = INVALID_GID;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001361
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362 dev->ethtool_ops = &tun_ethtool_ops;
Jason Wang96442e422012-10-31 19:46:02 +00001363 dev->destructor = tun_free_netdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364}
1365
Eric W. Biedermanf019a7a2009-01-21 16:02:16 -08001366/* Trivial set of netlink ops to allow deleting tun or tap
1367 * device with netlink.
1368 */
1369static int tun_validate(struct nlattr *tb[], struct nlattr *data[])
1370{
1371 return -EINVAL;
1372}
1373
1374static struct rtnl_link_ops tun_link_ops __read_mostly = {
1375 .kind = DRV_NAME,
1376 .priv_size = sizeof(struct tun_struct),
1377 .setup = tun_setup,
1378 .validate = tun_validate,
1379};
1380
Herbert Xu33dccbb2009-02-05 21:25:32 -08001381static void tun_sock_write_space(struct sock *sk)
1382{
Jason Wang54f968d2012-10-31 19:45:57 +00001383 struct tun_file *tfile;
Eric Dumazet43815482010-04-29 11:01:49 +00001384 wait_queue_head_t *wqueue;
Herbert Xu33dccbb2009-02-05 21:25:32 -08001385
1386 if (!sock_writeable(sk))
1387 return;
1388
Herbert Xu33dccbb2009-02-05 21:25:32 -08001389 if (!test_and_clear_bit(SOCK_ASYNC_NOSPACE, &sk->sk_socket->flags))
1390 return;
1391
Eric Dumazet43815482010-04-29 11:01:49 +00001392 wqueue = sk_sleep(sk);
1393 if (wqueue && waitqueue_active(wqueue))
1394 wake_up_interruptible_sync_poll(wqueue, POLLOUT |
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00001395 POLLWRNORM | POLLWRBAND);
Herbert Xuc722c622009-06-03 21:45:55 -07001396
Jason Wang54f968d2012-10-31 19:45:57 +00001397 tfile = container_of(sk, struct tun_file, sk);
1398 kill_fasync(&tfile->fasync, SIGIO, POLL_OUT);
Herbert Xu33dccbb2009-02-05 21:25:32 -08001399}
1400
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00001401static int tun_sendmsg(struct kiocb *iocb, struct socket *sock,
1402 struct msghdr *m, size_t total_len)
1403{
Jason Wang54f968d2012-10-31 19:45:57 +00001404 int ret;
1405 struct tun_file *tfile = container_of(sock, struct tun_file, socket);
1406 struct tun_struct *tun = __tun_get(tfile);
1407
1408 if (!tun)
1409 return -EBADFD;
Jason Wang54f968d2012-10-31 19:45:57 +00001410 ret = tun_get_user(tun, tfile, m->msg_control, m->msg_iov, total_len,
1411 m->msg_iovlen, m->msg_flags & MSG_DONTWAIT);
1412 tun_put(tun);
1413 return ret;
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00001414}
1415
Jason Wang54f968d2012-10-31 19:45:57 +00001416
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00001417static int tun_recvmsg(struct kiocb *iocb, struct socket *sock,
1418 struct msghdr *m, size_t total_len,
1419 int flags)
1420{
Jason Wang54f968d2012-10-31 19:45:57 +00001421 struct tun_file *tfile = container_of(sock, struct tun_file, socket);
1422 struct tun_struct *tun = __tun_get(tfile);
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00001423 int ret;
Jason Wang54f968d2012-10-31 19:45:57 +00001424
1425 if (!tun)
1426 return -EBADFD;
1427
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00001428 if (flags & ~(MSG_DONTWAIT|MSG_TRUNC))
1429 return -EINVAL;
Jason Wang54f968d2012-10-31 19:45:57 +00001430 ret = tun_do_read(tun, tfile, iocb, m->msg_iov, total_len,
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00001431 flags & MSG_DONTWAIT);
1432 if (ret > total_len) {
1433 m->msg_flags |= MSG_TRUNC;
1434 ret = flags & MSG_TRUNC ? ret : total_len;
1435 }
Jason Wang54f968d2012-10-31 19:45:57 +00001436 tun_put(tun);
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00001437 return ret;
1438}
1439
Stanislav Kinsbursky1ab5ecb2012-03-12 02:59:41 +00001440static int tun_release(struct socket *sock)
1441{
1442 if (sock->sk)
1443 sock_put(sock->sk);
1444 return 0;
1445}
1446
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00001447/* Ops structure to mimic raw sockets with tun */
1448static const struct proto_ops tun_socket_ops = {
1449 .sendmsg = tun_sendmsg,
1450 .recvmsg = tun_recvmsg,
Stanislav Kinsbursky1ab5ecb2012-03-12 02:59:41 +00001451 .release = tun_release,
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00001452};
1453
Herbert Xu33dccbb2009-02-05 21:25:32 -08001454static struct proto tun_proto = {
1455 .name = "tun",
1456 .owner = THIS_MODULE,
Jason Wang54f968d2012-10-31 19:45:57 +00001457 .obj_size = sizeof(struct tun_file),
Herbert Xu33dccbb2009-02-05 21:25:32 -08001458};
Eric W. Biedermanf019a7a2009-01-21 16:02:16 -08001459
David Woodhouse980c9e82009-05-09 22:54:21 -07001460static int tun_flags(struct tun_struct *tun)
1461{
1462 int flags = 0;
1463
1464 if (tun->flags & TUN_TUN_DEV)
1465 flags |= IFF_TUN;
1466 else
1467 flags |= IFF_TAP;
1468
1469 if (tun->flags & TUN_NO_PI)
1470 flags |= IFF_NO_PI;
1471
Michael S. Tsirkin5d097102012-12-03 10:07:14 +00001472 /* This flag has no real effect. We track the value for backwards
1473 * compatibility.
1474 */
David Woodhouse980c9e82009-05-09 22:54:21 -07001475 if (tun->flags & TUN_ONE_QUEUE)
1476 flags |= IFF_ONE_QUEUE;
1477
1478 if (tun->flags & TUN_VNET_HDR)
1479 flags |= IFF_VNET_HDR;
1480
Jason Wangc8d68e62012-10-31 19:46:00 +00001481 if (tun->flags & TUN_TAP_MQ)
1482 flags |= IFF_MULTI_QUEUE;
1483
David Woodhouse980c9e82009-05-09 22:54:21 -07001484 return flags;
1485}
1486
1487static ssize_t tun_show_flags(struct device *dev, struct device_attribute *attr,
1488 char *buf)
1489{
1490 struct tun_struct *tun = netdev_priv(to_net_dev(dev));
1491 return sprintf(buf, "0x%x\n", tun_flags(tun));
1492}
1493
1494static ssize_t tun_show_owner(struct device *dev, struct device_attribute *attr,
1495 char *buf)
1496{
1497 struct tun_struct *tun = netdev_priv(to_net_dev(dev));
Eric W. Biederman0625c882012-02-07 16:48:55 -08001498 return uid_valid(tun->owner)?
1499 sprintf(buf, "%u\n",
1500 from_kuid_munged(current_user_ns(), tun->owner)):
1501 sprintf(buf, "-1\n");
David Woodhouse980c9e82009-05-09 22:54:21 -07001502}
1503
1504static ssize_t tun_show_group(struct device *dev, struct device_attribute *attr,
1505 char *buf)
1506{
1507 struct tun_struct *tun = netdev_priv(to_net_dev(dev));
Eric W. Biederman0625c882012-02-07 16:48:55 -08001508 return gid_valid(tun->group) ?
1509 sprintf(buf, "%u\n",
1510 from_kgid_munged(current_user_ns(), tun->group)):
1511 sprintf(buf, "-1\n");
David Woodhouse980c9e82009-05-09 22:54:21 -07001512}
1513
1514static DEVICE_ATTR(tun_flags, 0444, tun_show_flags, NULL);
1515static DEVICE_ATTR(owner, 0444, tun_show_owner, NULL);
1516static DEVICE_ATTR(group, 0444, tun_show_group, NULL);
1517
Pavel Emelyanovd647a592008-04-16 00:41:16 -07001518static int tun_set_iff(struct net *net, struct file *file, struct ifreq *ifr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001519{
1520 struct tun_struct *tun;
Jason Wang54f968d2012-10-31 19:45:57 +00001521 struct tun_file *tfile = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001522 struct net_device *dev;
1523 int err;
1524
Eric W. Biederman74a3e5a2009-01-20 10:56:20 +00001525 dev = __dev_get_by_name(net, ifr->ifr_name);
1526 if (dev) {
David Woodhousef85ba782009-04-27 03:23:54 -07001527 if (ifr->ifr_flags & IFF_TUN_EXCL)
1528 return -EBUSY;
Eric W. Biederman74a3e5a2009-01-20 10:56:20 +00001529 if ((ifr->ifr_flags & IFF_TUN) && dev->netdev_ops == &tun_netdev_ops)
1530 tun = netdev_priv(dev);
1531 else if ((ifr->ifr_flags & IFF_TAP) && dev->netdev_ops == &tap_netdev_ops)
1532 tun = netdev_priv(dev);
1533 else
1534 return -EINVAL;
1535
Jason Wangcde8b152012-10-31 19:46:01 +00001536 if (tun_not_capable(tun))
Paul Moore2b980db2009-08-28 18:12:43 -04001537 return -EPERM;
Jason Wang54f968d2012-10-31 19:45:57 +00001538 err = security_tun_dev_attach(tfile->socket.sk);
Paul Moore2b980db2009-08-28 18:12:43 -04001539 if (err < 0)
1540 return err;
1541
Eric W. Biedermana7385ba2009-01-20 10:57:48 +00001542 err = tun_attach(tun, file);
1543 if (err < 0)
1544 return err;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001545 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001546 else {
1547 char *name;
1548 unsigned long flags = 0;
1549
Eric W. Biedermanc260b772012-11-18 21:34:11 +00001550 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
David Woodhouseca6bb5d2006-06-22 16:07:52 -07001551 return -EPERM;
Paul Moore2b980db2009-08-28 18:12:43 -04001552 err = security_tun_dev_create();
1553 if (err < 0)
1554 return err;
David Woodhouseca6bb5d2006-06-22 16:07:52 -07001555
Linus Torvalds1da177e2005-04-16 15:20:36 -07001556 /* Set dev type */
1557 if (ifr->ifr_flags & IFF_TUN) {
1558 /* TUN device */
1559 flags |= TUN_TUN_DEV;
1560 name = "tun%d";
1561 } else if (ifr->ifr_flags & IFF_TAP) {
1562 /* TAP device */
1563 flags |= TUN_TAP_DEV;
1564 name = "tap%d";
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001565 } else
Kusanagi Kouichi36989b92009-09-16 21:36:13 +00001566 return -EINVAL;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001567
Linus Torvalds1da177e2005-04-16 15:20:36 -07001568 if (*ifr->ifr_name)
1569 name = ifr->ifr_name;
1570
Jason Wangc8d68e62012-10-31 19:46:00 +00001571 dev = alloc_netdev_mqs(sizeof(struct tun_struct), name,
1572 tun_setup,
1573 MAX_TAP_QUEUES, MAX_TAP_QUEUES);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001574 if (!dev)
1575 return -ENOMEM;
1576
Pavel Emelyanovfc54c652008-04-16 00:41:53 -07001577 dev_net_set(dev, net);
Eric W. Biedermanf019a7a2009-01-21 16:02:16 -08001578 dev->rtnl_link_ops = &tun_link_ops;
Stephen Hemminger758e43b2008-11-19 22:10:37 -08001579
Linus Torvalds1da177e2005-04-16 15:20:36 -07001580 tun = netdev_priv(dev);
1581 tun->dev = dev;
1582 tun->flags = flags;
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -07001583 tun->txflt.count = 0;
Michael S. Tsirkind9d52b52010-03-17 17:45:01 +02001584 tun->vnet_hdr_sz = sizeof(struct virtio_net_hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585
Jason Wang54f968d2012-10-31 19:45:57 +00001586 tun->filter_attached = false;
1587 tun->sndbuf = tfile->socket.sk->sk_sndbuf;
Herbert Xu33dccbb2009-02-05 21:25:32 -08001588
Jason Wang96442e422012-10-31 19:46:02 +00001589 spin_lock_init(&tun->lock);
1590
Jason Wang54f968d2012-10-31 19:45:57 +00001591 security_tun_dev_post_create(&tfile->sk);
Paul Moore2b980db2009-08-28 18:12:43 -04001592
Linus Torvalds1da177e2005-04-16 15:20:36 -07001593 tun_net_init(dev);
1594
Paul Mooreb3943ae2012-12-06 05:48:38 +00001595 err = tun_flow_init(tun);
1596 if (err < 0)
Jason Wang96442e422012-10-31 19:46:02 +00001597 goto err_free_dev;
1598
Michał Mirosław88255372011-04-19 06:13:10 +00001599 dev->hw_features = NETIF_F_SG | NETIF_F_FRAGLIST |
1600 TUN_USER_FEATURES;
1601 dev->features = dev->hw_features;
1602
Jason Wangeb0fb362012-12-02 17:19:45 +00001603 err = tun_attach(tun, file);
1604 if (err < 0)
1605 goto err_free_dev;
1606
Linus Torvalds1da177e2005-04-16 15:20:36 -07001607 err = register_netdevice(tun->dev);
1608 if (err < 0)
Jason Wang54f968d2012-10-31 19:45:57 +00001609 goto err_free_dev;
Herbert Xu9c3fea62009-04-18 14:15:52 +00001610
David Woodhouse980c9e82009-05-09 22:54:21 -07001611 if (device_create_file(&tun->dev->dev, &dev_attr_tun_flags) ||
1612 device_create_file(&tun->dev->dev, &dev_attr_owner) ||
1613 device_create_file(&tun->dev->dev, &dev_attr_group))
Joe Perches6b8a66e2011-03-02 07:18:10 +00001614 pr_err("Failed to create tun sysfs files\n");
David Woodhouse980c9e82009-05-09 22:54:21 -07001615
Jason Wangeb0fb362012-12-02 17:19:45 +00001616 netif_carrier_on(tun->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001617 }
1618
Joe Perches6b8a66e2011-03-02 07:18:10 +00001619 tun_debug(KERN_INFO, tun, "tun_set_iff\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001620
1621 if (ifr->ifr_flags & IFF_NO_PI)
1622 tun->flags |= TUN_NO_PI;
Nathaniel Filardoa26af1e2008-02-05 03:05:07 -08001623 else
1624 tun->flags &= ~TUN_NO_PI;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001625
Michael S. Tsirkin5d097102012-12-03 10:07:14 +00001626 /* This flag has no real effect. We track the value for backwards
1627 * compatibility.
1628 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001629 if (ifr->ifr_flags & IFF_ONE_QUEUE)
1630 tun->flags |= TUN_ONE_QUEUE;
Nathaniel Filardoa26af1e2008-02-05 03:05:07 -08001631 else
1632 tun->flags &= ~TUN_ONE_QUEUE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001633
Rusty Russellf43798c2008-07-03 03:48:02 -07001634 if (ifr->ifr_flags & IFF_VNET_HDR)
1635 tun->flags |= TUN_VNET_HDR;
1636 else
1637 tun->flags &= ~TUN_VNET_HDR;
1638
Jason Wangc8d68e62012-10-31 19:46:00 +00001639 if (ifr->ifr_flags & IFF_MULTI_QUEUE)
1640 tun->flags |= TUN_TAP_MQ;
1641 else
1642 tun->flags &= ~TUN_TAP_MQ;
1643
Max Krasnyanskye35259a2008-07-10 16:59:11 -07001644 /* Make sure persistent devices do not get stuck in
1645 * xoff state.
1646 */
1647 if (netif_running(tun->dev))
Jason Wangc8d68e62012-10-31 19:46:00 +00001648 netif_tx_wake_all_queues(tun->dev);
Max Krasnyanskye35259a2008-07-10 16:59:11 -07001649
Linus Torvalds1da177e2005-04-16 15:20:36 -07001650 strcpy(ifr->ifr_name, tun->dev->name);
1651 return 0;
1652
1653 err_free_dev:
1654 free_netdev(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001655 return err;
1656}
1657
Rami Rosen9ce99cf2012-11-23 03:58:10 +00001658static void tun_get_iff(struct net *net, struct tun_struct *tun,
Herbert Xu876bfd42009-08-06 14:22:44 +00001659 struct ifreq *ifr)
Mark McLoughline3b99552008-08-15 15:09:56 -07001660{
Joe Perches6b8a66e2011-03-02 07:18:10 +00001661 tun_debug(KERN_INFO, tun, "tun_get_iff\n");
Mark McLoughline3b99552008-08-15 15:09:56 -07001662
1663 strcpy(ifr->ifr_name, tun->dev->name);
1664
David Woodhouse980c9e82009-05-09 22:54:21 -07001665 ifr->ifr_flags = tun_flags(tun);
Mark McLoughline3b99552008-08-15 15:09:56 -07001666
Mark McLoughline3b99552008-08-15 15:09:56 -07001667}
1668
Rusty Russell5228ddc2008-07-03 03:46:16 -07001669/* This is like a cut-down ethtool ops, except done via tun fd so no
1670 * privs required. */
Michał Mirosław88255372011-04-19 06:13:10 +00001671static int set_offload(struct tun_struct *tun, unsigned long arg)
Rusty Russell5228ddc2008-07-03 03:46:16 -07001672{
Michał Mirosławc8f44af2011-11-15 15:29:55 +00001673 netdev_features_t features = 0;
Rusty Russell5228ddc2008-07-03 03:46:16 -07001674
1675 if (arg & TUN_F_CSUM) {
Michał Mirosław88255372011-04-19 06:13:10 +00001676 features |= NETIF_F_HW_CSUM;
Rusty Russell5228ddc2008-07-03 03:46:16 -07001677 arg &= ~TUN_F_CSUM;
1678
1679 if (arg & (TUN_F_TSO4|TUN_F_TSO6)) {
1680 if (arg & TUN_F_TSO_ECN) {
1681 features |= NETIF_F_TSO_ECN;
1682 arg &= ~TUN_F_TSO_ECN;
1683 }
1684 if (arg & TUN_F_TSO4)
1685 features |= NETIF_F_TSO;
1686 if (arg & TUN_F_TSO6)
1687 features |= NETIF_F_TSO6;
1688 arg &= ~(TUN_F_TSO4|TUN_F_TSO6);
1689 }
Sridhar Samudralae36aa252009-07-14 14:21:04 +00001690
1691 if (arg & TUN_F_UFO) {
1692 features |= NETIF_F_UFO;
1693 arg &= ~TUN_F_UFO;
1694 }
Rusty Russell5228ddc2008-07-03 03:46:16 -07001695 }
1696
1697 /* This gives the user a way to test for new features in future by
1698 * trying to set them. */
1699 if (arg)
1700 return -EINVAL;
1701
Michał Mirosław88255372011-04-19 06:13:10 +00001702 tun->set_features = features;
1703 netdev_update_features(tun->dev);
Rusty Russell5228ddc2008-07-03 03:46:16 -07001704
1705 return 0;
1706}
1707
Jason Wangc8d68e62012-10-31 19:46:00 +00001708static void tun_detach_filter(struct tun_struct *tun, int n)
1709{
1710 int i;
1711 struct tun_file *tfile;
1712
1713 for (i = 0; i < n; i++) {
1714 tfile = rcu_dereference_protected(tun->tfiles[i],
1715 lockdep_rtnl_is_held());
1716 sk_detach_filter(tfile->socket.sk);
1717 }
1718
1719 tun->filter_attached = false;
1720}
1721
1722static int tun_attach_filter(struct tun_struct *tun)
1723{
1724 int i, ret = 0;
1725 struct tun_file *tfile;
1726
1727 for (i = 0; i < tun->numqueues; i++) {
1728 tfile = rcu_dereference_protected(tun->tfiles[i],
1729 lockdep_rtnl_is_held());
1730 ret = sk_attach_filter(&tun->fprog, tfile->socket.sk);
1731 if (ret) {
1732 tun_detach_filter(tun, i);
1733 return ret;
1734 }
1735 }
1736
1737 tun->filter_attached = true;
1738 return ret;
1739}
1740
1741static void tun_set_sndbuf(struct tun_struct *tun)
1742{
1743 struct tun_file *tfile;
1744 int i;
1745
1746 for (i = 0; i < tun->numqueues; i++) {
1747 tfile = rcu_dereference_protected(tun->tfiles[i],
1748 lockdep_rtnl_is_held());
1749 tfile->socket.sk->sk_sndbuf = tun->sndbuf;
1750 }
1751}
1752
Jason Wangcde8b152012-10-31 19:46:01 +00001753static int tun_set_queue(struct file *file, struct ifreq *ifr)
1754{
1755 struct tun_file *tfile = file->private_data;
1756 struct tun_struct *tun;
1757 struct net_device *dev;
1758 int ret = 0;
1759
1760 rtnl_lock();
1761
1762 if (ifr->ifr_flags & IFF_ATTACH_QUEUE) {
1763 dev = __dev_get_by_name(tfile->net, ifr->ifr_name);
1764 if (!dev) {
1765 ret = -EINVAL;
1766 goto unlock;
1767 }
1768
1769 tun = netdev_priv(dev);
1770 if (dev->netdev_ops != &tap_netdev_ops &&
1771 dev->netdev_ops != &tun_netdev_ops)
1772 ret = -EINVAL;
1773 else if (tun_not_capable(tun))
1774 ret = -EPERM;
1775 else
1776 ret = tun_attach(tun, file);
1777 } else if (ifr->ifr_flags & IFF_DETACH_QUEUE)
1778 __tun_detach(tfile, false);
1779 else
1780 ret = -EINVAL;
1781
1782unlock:
1783 rtnl_unlock();
1784 return ret;
1785}
1786
Arnd Bergmann50857e22009-11-06 22:52:32 -08001787static long __tun_chr_ioctl(struct file *file, unsigned int cmd,
1788 unsigned long arg, int ifreq_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001789{
Eric W. Biederman36b50ba2009-01-20 11:01:48 +00001790 struct tun_file *tfile = file->private_data;
Eric W. Biederman631ab462009-01-20 11:00:40 +00001791 struct tun_struct *tun;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001792 void __user* argp = (void __user*)arg;
1793 struct ifreq ifr;
Eric W. Biederman0625c882012-02-07 16:48:55 -08001794 kuid_t owner;
1795 kgid_t group;
Herbert Xu33dccbb2009-02-05 21:25:32 -08001796 int sndbuf;
Michael S. Tsirkind9d52b52010-03-17 17:45:01 +02001797 int vnet_hdr_sz;
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -07001798 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001799
Jason Wangcde8b152012-10-31 19:46:01 +00001800 if (cmd == TUNSETIFF || cmd == TUNSETQUEUE || _IOC_TYPE(cmd) == 0x89) {
Arnd Bergmann50857e22009-11-06 22:52:32 -08001801 if (copy_from_user(&ifr, argp, ifreq_len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001802 return -EFAULT;
David S. Miller8bbb1812012-07-30 14:52:48 -07001803 } else {
Mathias Krausea117dac2012-07-29 19:45:14 +00001804 memset(&ifr, 0, sizeof(ifr));
David S. Miller8bbb1812012-07-30 14:52:48 -07001805 }
Eric W. Biederman631ab462009-01-20 11:00:40 +00001806 if (cmd == TUNGETFEATURES) {
1807 /* Currently this just means: "what IFF flags are valid?".
1808 * This is needed because we never checked for invalid flags on
1809 * TUNSETIFF. */
1810 return put_user(IFF_TUN | IFF_TAP | IFF_NO_PI | IFF_ONE_QUEUE |
Jason Wangcde8b152012-10-31 19:46:01 +00001811 IFF_VNET_HDR | IFF_MULTI_QUEUE,
Eric W. Biederman631ab462009-01-20 11:00:40 +00001812 (unsigned int __user*)argp);
Jason Wangcde8b152012-10-31 19:46:01 +00001813 } else if (cmd == TUNSETQUEUE)
1814 return tun_set_queue(file, &ifr);
Eric W. Biederman631ab462009-01-20 11:00:40 +00001815
Jason Wangc8d68e62012-10-31 19:46:00 +00001816 ret = 0;
Herbert Xu876bfd42009-08-06 14:22:44 +00001817 rtnl_lock();
1818
Eric W. Biederman36b50ba2009-01-20 11:01:48 +00001819 tun = __tun_get(tfile);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001820 if (cmd == TUNSETIFF && !tun) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001821 ifr.ifr_name[IFNAMSIZ-1] = '\0';
1822
Herbert Xu876bfd42009-08-06 14:22:44 +00001823 ret = tun_set_iff(tfile->net, file, &ifr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001824
Herbert Xu876bfd42009-08-06 14:22:44 +00001825 if (ret)
1826 goto unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001827
Arnd Bergmann50857e22009-11-06 22:52:32 -08001828 if (copy_to_user(argp, &ifr, ifreq_len))
Herbert Xu876bfd42009-08-06 14:22:44 +00001829 ret = -EFAULT;
1830 goto unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001831 }
1832
Herbert Xu876bfd42009-08-06 14:22:44 +00001833 ret = -EBADFD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001834 if (!tun)
Herbert Xu876bfd42009-08-06 14:22:44 +00001835 goto unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001836
Jason Wang1e588332012-10-31 19:45:56 +00001837 tun_debug(KERN_INFO, tun, "tun_chr_ioctl cmd %u\n", cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001838
Eric W. Biederman631ab462009-01-20 11:00:40 +00001839 ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001840 switch (cmd) {
Mark McLoughline3b99552008-08-15 15:09:56 -07001841 case TUNGETIFF:
Rami Rosen9ce99cf2012-11-23 03:58:10 +00001842 tun_get_iff(current->nsproxy->net_ns, tun, &ifr);
Mark McLoughline3b99552008-08-15 15:09:56 -07001843
Arnd Bergmann50857e22009-11-06 22:52:32 -08001844 if (copy_to_user(argp, &ifr, ifreq_len))
Eric W. Biederman631ab462009-01-20 11:00:40 +00001845 ret = -EFAULT;
Mark McLoughline3b99552008-08-15 15:09:56 -07001846 break;
1847
Linus Torvalds1da177e2005-04-16 15:20:36 -07001848 case TUNSETNOCSUM:
1849 /* Disable/Enable checksum */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001850
Michał Mirosław88255372011-04-19 06:13:10 +00001851 /* [unimplemented] */
1852 tun_debug(KERN_INFO, tun, "ignored: set checksum %s\n",
Joe Perches6b8a66e2011-03-02 07:18:10 +00001853 arg ? "disabled" : "enabled");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001854 break;
1855
1856 case TUNSETPERSIST:
Jason Wang54f968d2012-10-31 19:45:57 +00001857 /* Disable/Enable persist mode. Keep an extra reference to the
1858 * module to prevent the module being unprobed.
1859 */
1860 if (arg) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001861 tun->flags |= TUN_PERSIST;
Jason Wang54f968d2012-10-31 19:45:57 +00001862 __module_get(THIS_MODULE);
1863 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001864 tun->flags &= ~TUN_PERSIST;
Jason Wang54f968d2012-10-31 19:45:57 +00001865 module_put(THIS_MODULE);
1866 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001867
Joe Perches6b8a66e2011-03-02 07:18:10 +00001868 tun_debug(KERN_INFO, tun, "persist %s\n",
1869 arg ? "enabled" : "disabled");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001870 break;
1871
1872 case TUNSETOWNER:
1873 /* Set owner of the device */
Eric W. Biederman0625c882012-02-07 16:48:55 -08001874 owner = make_kuid(current_user_ns(), arg);
1875 if (!uid_valid(owner)) {
1876 ret = -EINVAL;
1877 break;
1878 }
1879 tun->owner = owner;
Jason Wang1e588332012-10-31 19:45:56 +00001880 tun_debug(KERN_INFO, tun, "owner set to %u\n",
Eric W. Biederman0625c882012-02-07 16:48:55 -08001881 from_kuid(&init_user_ns, tun->owner));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001882 break;
1883
Guido Guenther8c644622007-07-02 22:50:25 -07001884 case TUNSETGROUP:
1885 /* Set group of the device */
Eric W. Biederman0625c882012-02-07 16:48:55 -08001886 group = make_kgid(current_user_ns(), arg);
1887 if (!gid_valid(group)) {
1888 ret = -EINVAL;
1889 break;
1890 }
1891 tun->group = group;
Jason Wang1e588332012-10-31 19:45:56 +00001892 tun_debug(KERN_INFO, tun, "group set to %u\n",
Eric W. Biederman0625c882012-02-07 16:48:55 -08001893 from_kgid(&init_user_ns, tun->group));
Guido Guenther8c644622007-07-02 22:50:25 -07001894 break;
1895
Mike Kershawff4cc3a2005-09-01 17:40:05 -07001896 case TUNSETLINK:
1897 /* Only allow setting the type when the interface is down */
1898 if (tun->dev->flags & IFF_UP) {
Joe Perches6b8a66e2011-03-02 07:18:10 +00001899 tun_debug(KERN_INFO, tun,
1900 "Linktype set failed because interface is up\n");
David S. Miller48abfe02008-04-23 19:37:58 -07001901 ret = -EBUSY;
Mike Kershawff4cc3a2005-09-01 17:40:05 -07001902 } else {
1903 tun->dev->type = (int) arg;
Joe Perches6b8a66e2011-03-02 07:18:10 +00001904 tun_debug(KERN_INFO, tun, "linktype set to %d\n",
1905 tun->dev->type);
David S. Miller48abfe02008-04-23 19:37:58 -07001906 ret = 0;
Mike Kershawff4cc3a2005-09-01 17:40:05 -07001907 }
Eric W. Biederman631ab462009-01-20 11:00:40 +00001908 break;
Mike Kershawff4cc3a2005-09-01 17:40:05 -07001909
Linus Torvalds1da177e2005-04-16 15:20:36 -07001910#ifdef TUN_DEBUG
1911 case TUNSETDEBUG:
1912 tun->debug = arg;
1913 break;
1914#endif
Rusty Russell5228ddc2008-07-03 03:46:16 -07001915 case TUNSETOFFLOAD:
Michał Mirosław88255372011-04-19 06:13:10 +00001916 ret = set_offload(tun, arg);
Eric W. Biederman631ab462009-01-20 11:00:40 +00001917 break;
Rusty Russell5228ddc2008-07-03 03:46:16 -07001918
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -07001919 case TUNSETTXFILTER:
1920 /* Can be set only for TAPs */
Eric W. Biederman631ab462009-01-20 11:00:40 +00001921 ret = -EINVAL;
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -07001922 if ((tun->flags & TUN_TYPE_MASK) != TUN_TAP_DEV)
Eric W. Biederman631ab462009-01-20 11:00:40 +00001923 break;
Harvey Harrisonc0e5a8c2008-07-16 12:45:34 -07001924 ret = update_filter(&tun->txflt, (void __user *)arg);
Eric W. Biederman631ab462009-01-20 11:00:40 +00001925 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001926
1927 case SIOCGIFHWADDR:
Uwe Kleine-Königb5950762010-11-01 15:38:34 -04001928 /* Get hw address */
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -07001929 memcpy(ifr.ifr_hwaddr.sa_data, tun->dev->dev_addr, ETH_ALEN);
1930 ifr.ifr_hwaddr.sa_family = tun->dev->type;
Arnd Bergmann50857e22009-11-06 22:52:32 -08001931 if (copy_to_user(argp, &ifr, ifreq_len))
Eric W. Biederman631ab462009-01-20 11:00:40 +00001932 ret = -EFAULT;
1933 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001934
1935 case SIOCSIFHWADDR:
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -07001936 /* Set hw address */
Joe Perches6b8a66e2011-03-02 07:18:10 +00001937 tun_debug(KERN_DEBUG, tun, "set hw address: %pM\n",
1938 ifr.ifr_hwaddr.sa_data);
Kim B. Heino40102372008-02-29 12:26:21 -08001939
Kim B. Heino40102372008-02-29 12:26:21 -08001940 ret = dev_set_mac_address(tun->dev, &ifr.ifr_hwaddr);
Eric W. Biederman631ab462009-01-20 11:00:40 +00001941 break;
Herbert Xu33dccbb2009-02-05 21:25:32 -08001942
1943 case TUNGETSNDBUF:
Jason Wang54f968d2012-10-31 19:45:57 +00001944 sndbuf = tfile->socket.sk->sk_sndbuf;
Herbert Xu33dccbb2009-02-05 21:25:32 -08001945 if (copy_to_user(argp, &sndbuf, sizeof(sndbuf)))
1946 ret = -EFAULT;
1947 break;
1948
1949 case TUNSETSNDBUF:
1950 if (copy_from_user(&sndbuf, argp, sizeof(sndbuf))) {
1951 ret = -EFAULT;
1952 break;
1953 }
1954
Jason Wangc8d68e62012-10-31 19:46:00 +00001955 tun->sndbuf = sndbuf;
1956 tun_set_sndbuf(tun);
Herbert Xu33dccbb2009-02-05 21:25:32 -08001957 break;
1958
Michael S. Tsirkind9d52b52010-03-17 17:45:01 +02001959 case TUNGETVNETHDRSZ:
1960 vnet_hdr_sz = tun->vnet_hdr_sz;
1961 if (copy_to_user(argp, &vnet_hdr_sz, sizeof(vnet_hdr_sz)))
1962 ret = -EFAULT;
1963 break;
1964
1965 case TUNSETVNETHDRSZ:
1966 if (copy_from_user(&vnet_hdr_sz, argp, sizeof(vnet_hdr_sz))) {
1967 ret = -EFAULT;
1968 break;
1969 }
1970 if (vnet_hdr_sz < (int)sizeof(struct virtio_net_hdr)) {
1971 ret = -EINVAL;
1972 break;
1973 }
1974
1975 tun->vnet_hdr_sz = vnet_hdr_sz;
1976 break;
1977
Michael S. Tsirkin99405162010-02-14 01:01:10 +00001978 case TUNATTACHFILTER:
1979 /* Can be set only for TAPs */
1980 ret = -EINVAL;
1981 if ((tun->flags & TUN_TYPE_MASK) != TUN_TAP_DEV)
1982 break;
1983 ret = -EFAULT;
Jason Wang54f968d2012-10-31 19:45:57 +00001984 if (copy_from_user(&tun->fprog, argp, sizeof(tun->fprog)))
Michael S. Tsirkin99405162010-02-14 01:01:10 +00001985 break;
1986
Jason Wangc8d68e62012-10-31 19:46:00 +00001987 ret = tun_attach_filter(tun);
Michael S. Tsirkin99405162010-02-14 01:01:10 +00001988 break;
1989
1990 case TUNDETACHFILTER:
1991 /* Can be set only for TAPs */
1992 ret = -EINVAL;
1993 if ((tun->flags & TUN_TYPE_MASK) != TUN_TAP_DEV)
1994 break;
Jason Wangc8d68e62012-10-31 19:46:00 +00001995 ret = 0;
1996 tun_detach_filter(tun, tun->numqueues);
Michael S. Tsirkin99405162010-02-14 01:01:10 +00001997 break;
1998
Linus Torvalds1da177e2005-04-16 15:20:36 -07001999 default:
Eric W. Biederman631ab462009-01-20 11:00:40 +00002000 ret = -EINVAL;
2001 break;
Joe Perchesee289b62010-05-17 22:47:34 -07002002 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002003
Herbert Xu876bfd42009-08-06 14:22:44 +00002004unlock:
2005 rtnl_unlock();
2006 if (tun)
2007 tun_put(tun);
Eric W. Biederman631ab462009-01-20 11:00:40 +00002008 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002009}
2010
Arnd Bergmann50857e22009-11-06 22:52:32 -08002011static long tun_chr_ioctl(struct file *file,
2012 unsigned int cmd, unsigned long arg)
2013{
2014 return __tun_chr_ioctl(file, cmd, arg, sizeof (struct ifreq));
2015}
2016
2017#ifdef CONFIG_COMPAT
2018static long tun_chr_compat_ioctl(struct file *file,
2019 unsigned int cmd, unsigned long arg)
2020{
2021 switch (cmd) {
2022 case TUNSETIFF:
2023 case TUNGETIFF:
2024 case TUNSETTXFILTER:
2025 case TUNGETSNDBUF:
2026 case TUNSETSNDBUF:
2027 case SIOCGIFHWADDR:
2028 case SIOCSIFHWADDR:
2029 arg = (unsigned long)compat_ptr(arg);
2030 break;
2031 default:
2032 arg = (compat_ulong_t)arg;
2033 break;
2034 }
2035
2036 /*
2037 * compat_ifreq is shorter than ifreq, so we must not access beyond
2038 * the end of that structure. All fields that are used in this
2039 * driver are compatible though, we don't need to convert the
2040 * contents.
2041 */
2042 return __tun_chr_ioctl(file, cmd, arg, sizeof(struct compat_ifreq));
2043}
2044#endif /* CONFIG_COMPAT */
2045
Linus Torvalds1da177e2005-04-16 15:20:36 -07002046static int tun_chr_fasync(int fd, struct file *file, int on)
2047{
Jason Wang54f968d2012-10-31 19:45:57 +00002048 struct tun_file *tfile = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002049 int ret;
2050
Jason Wang54f968d2012-10-31 19:45:57 +00002051 if ((ret = fasync_helper(fd, file, on, &tfile->fasync)) < 0)
Jonathan Corbet9d319522008-06-19 15:50:37 -06002052 goto out;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002053
Linus Torvalds1da177e2005-04-16 15:20:36 -07002054 if (on) {
Eric W. Biederman609d7fa2006-10-02 02:17:15 -07002055 ret = __f_setown(file, task_pid(current), PIDTYPE_PID, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002056 if (ret)
Jonathan Corbet9d319522008-06-19 15:50:37 -06002057 goto out;
Jason Wang54f968d2012-10-31 19:45:57 +00002058 tfile->flags |= TUN_FASYNC;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002059 } else
Jason Wang54f968d2012-10-31 19:45:57 +00002060 tfile->flags &= ~TUN_FASYNC;
Jonathan Corbet9d319522008-06-19 15:50:37 -06002061 ret = 0;
2062out:
Jonathan Corbet9d319522008-06-19 15:50:37 -06002063 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002064}
2065
2066static int tun_chr_open(struct inode *inode, struct file * file)
2067{
Eric W. Biederman631ab462009-01-20 11:00:40 +00002068 struct tun_file *tfile;
Thomas Gleixnerdeed49f2009-10-14 01:19:46 -07002069
Joe Perches6b8a66e2011-03-02 07:18:10 +00002070 DBG1(KERN_INFO, "tunX: tun_chr_open\n");
Eric W. Biederman631ab462009-01-20 11:00:40 +00002071
Jason Wang54f968d2012-10-31 19:45:57 +00002072 tfile = (struct tun_file *)sk_alloc(&init_net, AF_UNSPEC, GFP_KERNEL,
2073 &tun_proto);
Eric W. Biederman631ab462009-01-20 11:00:40 +00002074 if (!tfile)
2075 return -ENOMEM;
Jason Wang6e914fc2012-10-31 19:45:58 +00002076 rcu_assign_pointer(tfile->tun, NULL);
Eric W. Biederman36b50ba2009-01-20 11:01:48 +00002077 tfile->net = get_net(current->nsproxy->net_ns);
Jason Wang54f968d2012-10-31 19:45:57 +00002078 tfile->flags = 0;
2079
2080 rcu_assign_pointer(tfile->socket.wq, &tfile->wq);
2081 init_waitqueue_head(&tfile->wq.wait);
2082
2083 tfile->socket.file = file;
2084 tfile->socket.ops = &tun_socket_ops;
2085
2086 sock_init_data(&tfile->socket, &tfile->sk);
2087 sk_change_net(&tfile->sk, tfile->net);
2088
2089 tfile->sk.sk_write_space = tun_sock_write_space;
2090 tfile->sk.sk_sndbuf = INT_MAX;
2091
Eric W. Biederman631ab462009-01-20 11:00:40 +00002092 file->private_data = tfile;
Jason Wang54f968d2012-10-31 19:45:57 +00002093 set_bit(SOCK_EXTERNALLY_ALLOCATED, &tfile->socket.flags);
2094
Linus Torvalds1da177e2005-04-16 15:20:36 -07002095 return 0;
2096}
2097
2098static int tun_chr_close(struct inode *inode, struct file *file)
2099{
Eric W. Biederman631ab462009-01-20 11:00:40 +00002100 struct tun_file *tfile = file->private_data;
Jason Wang54f968d2012-10-31 19:45:57 +00002101 struct net *net = tfile->net;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002102
Jason Wangc8d68e62012-10-31 19:46:00 +00002103 tun_detach(tfile, true);
Jason Wang54f968d2012-10-31 19:45:57 +00002104 put_net(net);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002105
2106 return 0;
2107}
2108
Arjan van de Vend54b1fd2007-02-12 00:55:34 -08002109static const struct file_operations tun_fops = {
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002110 .owner = THIS_MODULE,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002111 .llseek = no_llseek,
Badari Pulavartyee0b3e62006-09-30 23:28:47 -07002112 .read = do_sync_read,
2113 .aio_read = tun_chr_aio_read,
2114 .write = do_sync_write,
2115 .aio_write = tun_chr_aio_write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002116 .poll = tun_chr_poll,
Arnd Bergmann50857e22009-11-06 22:52:32 -08002117 .unlocked_ioctl = tun_chr_ioctl,
2118#ifdef CONFIG_COMPAT
2119 .compat_ioctl = tun_chr_compat_ioctl,
2120#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002121 .open = tun_chr_open,
2122 .release = tun_chr_close,
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002123 .fasync = tun_chr_fasync
Linus Torvalds1da177e2005-04-16 15:20:36 -07002124};
2125
2126static struct miscdevice tun_miscdev = {
2127 .minor = TUN_MINOR,
2128 .name = "tun",
Kay Sieverse454cea2009-09-18 23:01:12 +02002129 .nodename = "net/tun",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002130 .fops = &tun_fops,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002131};
2132
2133/* ethtool interface */
2134
2135static int tun_get_settings(struct net_device *dev, struct ethtool_cmd *cmd)
2136{
2137 cmd->supported = 0;
2138 cmd->advertising = 0;
David Decotigny70739492011-04-27 18:32:40 +00002139 ethtool_cmd_speed_set(cmd, SPEED_10);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002140 cmd->duplex = DUPLEX_FULL;
2141 cmd->port = PORT_TP;
2142 cmd->phy_address = 0;
2143 cmd->transceiver = XCVR_INTERNAL;
2144 cmd->autoneg = AUTONEG_DISABLE;
2145 cmd->maxtxpkt = 0;
2146 cmd->maxrxpkt = 0;
2147 return 0;
2148}
2149
2150static void tun_get_drvinfo(struct net_device *dev, struct ethtool_drvinfo *info)
2151{
2152 struct tun_struct *tun = netdev_priv(dev);
2153
Rick Jones33a5ba12011-11-15 14:59:53 +00002154 strlcpy(info->driver, DRV_NAME, sizeof(info->driver));
2155 strlcpy(info->version, DRV_VERSION, sizeof(info->version));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002156
2157 switch (tun->flags & TUN_TYPE_MASK) {
2158 case TUN_TUN_DEV:
Rick Jones33a5ba12011-11-15 14:59:53 +00002159 strlcpy(info->bus_info, "tun", sizeof(info->bus_info));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002160 break;
2161 case TUN_TAP_DEV:
Rick Jones33a5ba12011-11-15 14:59:53 +00002162 strlcpy(info->bus_info, "tap", sizeof(info->bus_info));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002163 break;
2164 }
2165}
2166
2167static u32 tun_get_msglevel(struct net_device *dev)
2168{
2169#ifdef TUN_DEBUG
2170 struct tun_struct *tun = netdev_priv(dev);
2171 return tun->debug;
2172#else
2173 return -EOPNOTSUPP;
2174#endif
2175}
2176
2177static void tun_set_msglevel(struct net_device *dev, u32 value)
2178{
2179#ifdef TUN_DEBUG
2180 struct tun_struct *tun = netdev_priv(dev);
2181 tun->debug = value;
2182#endif
2183}
2184
Jeff Garzik7282d492006-09-13 14:30:00 -04002185static const struct ethtool_ops tun_ethtool_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002186 .get_settings = tun_get_settings,
2187 .get_drvinfo = tun_get_drvinfo,
2188 .get_msglevel = tun_get_msglevel,
2189 .set_msglevel = tun_set_msglevel,
Nolan Leakebee31362010-07-27 13:53:43 +00002190 .get_link = ethtool_op_get_link,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002191};
2192
Pavel Emelyanov79d17602008-04-16 00:40:46 -07002193
Linus Torvalds1da177e2005-04-16 15:20:36 -07002194static int __init tun_init(void)
2195{
2196 int ret = 0;
2197
Joe Perches6b8a66e2011-03-02 07:18:10 +00002198 pr_info("%s, %s\n", DRV_DESCRIPTION, DRV_VERSION);
2199 pr_info("%s\n", DRV_COPYRIGHT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002200
Eric W. Biedermanf019a7a2009-01-21 16:02:16 -08002201 ret = rtnl_link_register(&tun_link_ops);
Pavel Emelyanov79d17602008-04-16 00:40:46 -07002202 if (ret) {
Joe Perches6b8a66e2011-03-02 07:18:10 +00002203 pr_err("Can't register link_ops\n");
Eric W. Biedermanf019a7a2009-01-21 16:02:16 -08002204 goto err_linkops;
Pavel Emelyanov79d17602008-04-16 00:40:46 -07002205 }
2206
Linus Torvalds1da177e2005-04-16 15:20:36 -07002207 ret = misc_register(&tun_miscdev);
Pavel Emelyanov79d17602008-04-16 00:40:46 -07002208 if (ret) {
Joe Perches6b8a66e2011-03-02 07:18:10 +00002209 pr_err("Can't register misc device %d\n", TUN_MINOR);
Pavel Emelyanov79d17602008-04-16 00:40:46 -07002210 goto err_misc;
2211 }
Eric W. Biedermanf019a7a2009-01-21 16:02:16 -08002212 return 0;
Pavel Emelyanov79d17602008-04-16 00:40:46 -07002213err_misc:
Eric W. Biedermanf019a7a2009-01-21 16:02:16 -08002214 rtnl_link_unregister(&tun_link_ops);
2215err_linkops:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002216 return ret;
2217}
2218
2219static void tun_cleanup(void)
2220{
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002221 misc_deregister(&tun_miscdev);
Eric W. Biedermanf019a7a2009-01-21 16:02:16 -08002222 rtnl_link_unregister(&tun_link_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002223}
2224
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00002225/* Get an underlying socket object from tun file. Returns error unless file is
2226 * attached to a device. The returned object works like a packet socket, it
2227 * can be used for sock_sendmsg/sock_recvmsg. The caller is responsible for
2228 * holding a reference to the file for as long as the socket is in use. */
2229struct socket *tun_get_socket(struct file *file)
2230{
Jason Wang6e914fc2012-10-31 19:45:58 +00002231 struct tun_file *tfile;
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00002232 if (file->f_op != &tun_fops)
2233 return ERR_PTR(-EINVAL);
Jason Wang6e914fc2012-10-31 19:45:58 +00002234 tfile = file->private_data;
2235 if (!tfile)
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00002236 return ERR_PTR(-EBADFD);
Jason Wang54f968d2012-10-31 19:45:57 +00002237 return &tfile->socket;
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00002238}
2239EXPORT_SYMBOL_GPL(tun_get_socket);
2240
Linus Torvalds1da177e2005-04-16 15:20:36 -07002241module_init(tun_init);
2242module_exit(tun_cleanup);
2243MODULE_DESCRIPTION(DRV_DESCRIPTION);
2244MODULE_AUTHOR(DRV_COPYRIGHT);
2245MODULE_LICENSE("GPL");
2246MODULE_ALIAS_MISCDEV(TUN_MINOR);
Kay Sievers578454f2010-05-20 18:07:20 +02002247MODULE_ALIAS("devname:net/tun");