blob: 8939d2117de2420784ba524cfc013bb85aaa5f92 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * TUN - Universal TUN/TAP device driver.
3 * Copyright (C) 1999-2002 Maxim Krasnyansky <maxk@qualcomm.com>
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * $Id: tun.c,v 1.15 2002/03/01 02:44:24 maxk Exp $
16 */
17
18/*
19 * Changes:
20 *
Mike Kershawff4cc3a2005-09-01 17:40:05 -070021 * Mike Kershaw <dragorn@kismetwireless.net> 2005/08/14
22 * Add TUNSETLINK ioctl to set the link encapsulation
23 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070024 * Mark Smith <markzzzsmith@yahoo.com.au>
Joe Perches344dc8e2012-07-12 19:33:09 +000025 * Use eth_random_addr() for tap MAC address.
Linus Torvalds1da177e2005-04-16 15:20:36 -070026 *
27 * Harald Roelle <harald.roelle@ifi.lmu.de> 2004/04/20
28 * Fixes in packet dropping, queue length setting and queue wakeup.
29 * Increased default tx queue length.
30 * Added ethtool API.
31 * Minor cleanups
32 *
33 * Daniel Podlejski <underley@underley.eu.org>
34 * Modifications for 2.3.99-pre5 kernel.
35 */
36
Joe Perches6b8a66e2011-03-02 07:18:10 +000037#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
38
Linus Torvalds1da177e2005-04-16 15:20:36 -070039#define DRV_NAME "tun"
40#define DRV_VERSION "1.6"
41#define DRV_DESCRIPTION "Universal TUN/TAP device driver"
42#define DRV_COPYRIGHT "(C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>"
43
Linus Torvalds1da177e2005-04-16 15:20:36 -070044#include <linux/module.h>
45#include <linux/errno.h>
46#include <linux/kernel.h>
47#include <linux/major.h>
48#include <linux/slab.h>
49#include <linux/poll.h>
50#include <linux/fcntl.h>
51#include <linux/init.h>
52#include <linux/skbuff.h>
53#include <linux/netdevice.h>
54#include <linux/etherdevice.h>
55#include <linux/miscdevice.h>
56#include <linux/ethtool.h>
57#include <linux/rtnetlink.h>
Arnd Bergmann50857e22009-11-06 22:52:32 -080058#include <linux/compat.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070059#include <linux/if.h>
60#include <linux/if_arp.h>
61#include <linux/if_ether.h>
62#include <linux/if_tun.h>
63#include <linux/crc32.h>
Pavel Emelyanovd647a592008-04-16 00:41:16 -070064#include <linux/nsproxy.h>
Rusty Russellf43798c2008-07-03 03:48:02 -070065#include <linux/virtio_net.h>
Michael S. Tsirkin99405162010-02-14 01:01:10 +000066#include <linux/rcupdate.h>
Eric W. Biederman881d9662007-09-17 11:56:21 -070067#include <net/net_namespace.h>
Pavel Emelyanov79d17602008-04-16 00:40:46 -070068#include <net/netns/generic.h>
Eric W. Biedermanf019a7a2009-01-21 16:02:16 -080069#include <net/rtnetlink.h>
Herbert Xu33dccbb2009-02-05 21:25:32 -080070#include <net/sock.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070071
Linus Torvalds1da177e2005-04-16 15:20:36 -070072#include <asm/uaccess.h>
73
Rusty Russell14daa022008-04-12 18:48:58 -070074/* Uncomment to enable debugging */
75/* #define TUN_DEBUG 1 */
76
Linus Torvalds1da177e2005-04-16 15:20:36 -070077#ifdef TUN_DEBUG
78static int debug;
Rusty Russell14daa022008-04-12 18:48:58 -070079
Joe Perches6b8a66e2011-03-02 07:18:10 +000080#define tun_debug(level, tun, fmt, args...) \
81do { \
82 if (tun->debug) \
83 netdev_printk(level, tun->dev, fmt, ##args); \
84} while (0)
85#define DBG1(level, fmt, args...) \
86do { \
87 if (debug == 2) \
88 printk(level fmt, ##args); \
89} while (0)
Rusty Russell14daa022008-04-12 18:48:58 -070090#else
Joe Perches6b8a66e2011-03-02 07:18:10 +000091#define tun_debug(level, tun, fmt, args...) \
92do { \
93 if (0) \
94 netdev_printk(level, tun->dev, fmt, ##args); \
95} while (0)
96#define DBG1(level, fmt, args...) \
97do { \
98 if (0) \
99 printk(level fmt, ##args); \
100} while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101#endif
102
Michael S. Tsirkin06908992012-07-20 09:23:23 +0000103#define GOODCOPY_LEN 128
104
Max Krasnyanskyf271b2c2008-07-14 22:18:19 -0700105#define FLT_EXACT_COUNT 8
106struct tap_filter {
107 unsigned int count; /* Number of addrs. Zero means disabled */
108 u32 mask[2]; /* Mask of the hashed addrs */
109 unsigned char addr[FLT_EXACT_COUNT][ETH_ALEN];
110};
111
Jason Wangedfb6a12013-01-23 03:59:12 +0000112/* DEFAULT_MAX_NUM_RSS_QUEUES were choosed to let the rx/tx queues allocated for
113 * the netdevice to be fit in one page. So we can make sure the success of
114 * memory allocation. TODO: increase the limit. */
115#define MAX_TAP_QUEUES DEFAULT_MAX_NUM_RSS_QUEUES
Jason Wangc8d68e62012-10-31 19:46:00 +0000116
Jason Wang96442e422012-10-31 19:46:02 +0000117#define TUN_FLOW_EXPIRE (3 * HZ)
118
Jason Wang54f968d2012-10-31 19:45:57 +0000119/* A tun_file connects an open character device to a tuntap netdevice. It
120 * also contains all socket related strctures (except sock_fprog and tap_filter)
121 * to serve as one transmit queue for tuntap device. The sock_fprog and
122 * tap_filter were kept in tun_struct since they were used for filtering for the
Rami Rosen36fe8c092012-11-25 22:07:40 +0000123 * netdevice not for a specific queue (at least I didn't see the requirement for
Jason Wang54f968d2012-10-31 19:45:57 +0000124 * this).
Jason Wang6e914fc2012-10-31 19:45:58 +0000125 *
126 * RCU usage:
Rami Rosen36fe8c092012-11-25 22:07:40 +0000127 * The tun_file and tun_struct are loosely coupled, the pointer from one to the
Jason Wang6e914fc2012-10-31 19:45:58 +0000128 * other can only be read while rcu_read_lock or rtnl_lock is held.
Jason Wang54f968d2012-10-31 19:45:57 +0000129 */
Eric W. Biederman631ab462009-01-20 11:00:40 +0000130struct tun_file {
Jason Wang54f968d2012-10-31 19:45:57 +0000131 struct sock sk;
132 struct socket socket;
133 struct socket_wq wq;
Jason Wang6e914fc2012-10-31 19:45:58 +0000134 struct tun_struct __rcu *tun;
Eric W. Biederman36b50ba2009-01-20 11:01:48 +0000135 struct net *net;
Jason Wang54f968d2012-10-31 19:45:57 +0000136 struct fasync_struct *fasync;
137 /* only used for fasnyc */
138 unsigned int flags;
Jason Wangc8d68e62012-10-31 19:46:00 +0000139 u16 queue_index;
Jason Wang4008e972012-12-13 23:53:30 +0000140 struct list_head next;
141 struct tun_struct *detached;
Eric W. Biederman631ab462009-01-20 11:00:40 +0000142};
143
Jason Wang96442e422012-10-31 19:46:02 +0000144struct tun_flow_entry {
145 struct hlist_node hash_link;
146 struct rcu_head rcu;
147 struct tun_struct *tun;
148
149 u32 rxhash;
150 int queue_index;
151 unsigned long updated;
152};
153
154#define TUN_NUM_FLOW_ENTRIES 1024
155
Jason Wang54f968d2012-10-31 19:45:57 +0000156/* Since the socket were moved to tun_file, to preserve the behavior of persist
Rami Rosen36fe8c092012-11-25 22:07:40 +0000157 * device, socket filter, sndbuf and vnet header size were restore when the
Jason Wang54f968d2012-10-31 19:45:57 +0000158 * file were attached to a persist device.
159 */
Rusty Russell14daa022008-04-12 18:48:58 -0700160struct tun_struct {
Jason Wangc8d68e62012-10-31 19:46:00 +0000161 struct tun_file __rcu *tfiles[MAX_TAP_QUEUES];
162 unsigned int numqueues;
Max Krasnyanskyf271b2c2008-07-14 22:18:19 -0700163 unsigned int flags;
Eric W. Biederman0625c882012-02-07 16:48:55 -0800164 kuid_t owner;
165 kgid_t group;
Rusty Russell14daa022008-04-12 18:48:58 -0700166
Rusty Russell14daa022008-04-12 18:48:58 -0700167 struct net_device *dev;
Michał Mirosławc8f44af2011-11-15 15:29:55 +0000168 netdev_features_t set_features;
Michał Mirosław88255372011-04-19 06:13:10 +0000169#define TUN_USER_FEATURES (NETIF_F_HW_CSUM|NETIF_F_TSO_ECN|NETIF_F_TSO| \
170 NETIF_F_TSO6|NETIF_F_UFO)
Michael S. Tsirkind9d52b52010-03-17 17:45:01 +0200171
172 int vnet_hdr_sz;
Jason Wang54f968d2012-10-31 19:45:57 +0000173 int sndbuf;
174 struct tap_filter txflt;
175 struct sock_fprog fprog;
176 /* protected by rtnl lock */
177 bool filter_attached;
Rusty Russell14daa022008-04-12 18:48:58 -0700178#ifdef TUN_DEBUG
179 int debug;
180#endif
Jason Wang96442e422012-10-31 19:46:02 +0000181 spinlock_t lock;
Jason Wang96442e422012-10-31 19:46:02 +0000182 struct hlist_head flows[TUN_NUM_FLOW_ENTRIES];
183 struct timer_list flow_gc_timer;
184 unsigned long ageing_time;
Jason Wang4008e972012-12-13 23:53:30 +0000185 unsigned int numdisabled;
186 struct list_head disabled;
Paul Moore5dbbaf22013-01-14 07:12:19 +0000187 void *security;
Rusty Russell14daa022008-04-12 18:48:58 -0700188};
189
Jason Wang96442e422012-10-31 19:46:02 +0000190static inline u32 tun_hashfn(u32 rxhash)
191{
192 return rxhash & 0x3ff;
193}
194
195static struct tun_flow_entry *tun_flow_find(struct hlist_head *head, u32 rxhash)
196{
197 struct tun_flow_entry *e;
198 struct hlist_node *n;
199
200 hlist_for_each_entry_rcu(e, n, head, hash_link) {
201 if (e->rxhash == rxhash)
202 return e;
203 }
204 return NULL;
205}
206
207static struct tun_flow_entry *tun_flow_create(struct tun_struct *tun,
208 struct hlist_head *head,
209 u32 rxhash, u16 queue_index)
210{
Eric Dumazet9fdc6be2012-12-21 07:17:21 +0000211 struct tun_flow_entry *e = kmalloc(sizeof(*e), GFP_ATOMIC);
212
Jason Wang96442e422012-10-31 19:46:02 +0000213 if (e) {
214 tun_debug(KERN_INFO, tun, "create flow: hash %u index %u\n",
215 rxhash, queue_index);
216 e->updated = jiffies;
217 e->rxhash = rxhash;
218 e->queue_index = queue_index;
219 e->tun = tun;
220 hlist_add_head_rcu(&e->hash_link, head);
221 }
222 return e;
223}
224
Jason Wang96442e422012-10-31 19:46:02 +0000225static void tun_flow_delete(struct tun_struct *tun, struct tun_flow_entry *e)
226{
227 tun_debug(KERN_INFO, tun, "delete flow: hash %u index %u\n",
228 e->rxhash, e->queue_index);
229 hlist_del_rcu(&e->hash_link);
Eric Dumazet9fdc6be2012-12-21 07:17:21 +0000230 kfree_rcu(e, rcu);
Jason Wang96442e422012-10-31 19:46:02 +0000231}
232
233static void tun_flow_flush(struct tun_struct *tun)
234{
235 int i;
236
237 spin_lock_bh(&tun->lock);
238 for (i = 0; i < TUN_NUM_FLOW_ENTRIES; i++) {
239 struct tun_flow_entry *e;
240 struct hlist_node *h, *n;
241
242 hlist_for_each_entry_safe(e, h, n, &tun->flows[i], hash_link)
243 tun_flow_delete(tun, e);
244 }
245 spin_unlock_bh(&tun->lock);
246}
247
248static void tun_flow_delete_by_queue(struct tun_struct *tun, u16 queue_index)
249{
250 int i;
251
252 spin_lock_bh(&tun->lock);
253 for (i = 0; i < TUN_NUM_FLOW_ENTRIES; i++) {
254 struct tun_flow_entry *e;
255 struct hlist_node *h, *n;
256
257 hlist_for_each_entry_safe(e, h, n, &tun->flows[i], hash_link) {
258 if (e->queue_index == queue_index)
259 tun_flow_delete(tun, e);
260 }
261 }
262 spin_unlock_bh(&tun->lock);
263}
264
265static void tun_flow_cleanup(unsigned long data)
266{
267 struct tun_struct *tun = (struct tun_struct *)data;
268 unsigned long delay = tun->ageing_time;
269 unsigned long next_timer = jiffies + delay;
270 unsigned long count = 0;
271 int i;
272
273 tun_debug(KERN_INFO, tun, "tun_flow_cleanup\n");
274
275 spin_lock_bh(&tun->lock);
276 for (i = 0; i < TUN_NUM_FLOW_ENTRIES; i++) {
277 struct tun_flow_entry *e;
278 struct hlist_node *h, *n;
279
280 hlist_for_each_entry_safe(e, h, n, &tun->flows[i], hash_link) {
281 unsigned long this_timer;
282 count++;
283 this_timer = e->updated + delay;
284 if (time_before_eq(this_timer, jiffies))
285 tun_flow_delete(tun, e);
286 else if (time_before(this_timer, next_timer))
287 next_timer = this_timer;
288 }
289 }
290
291 if (count)
292 mod_timer(&tun->flow_gc_timer, round_jiffies_up(next_timer));
293 spin_unlock_bh(&tun->lock);
294}
295
Eric Dumazet49974422012-12-12 19:22:57 +0000296static void tun_flow_update(struct tun_struct *tun, u32 rxhash,
Jason Wang96442e422012-10-31 19:46:02 +0000297 u16 queue_index)
298{
299 struct hlist_head *head;
300 struct tun_flow_entry *e;
301 unsigned long delay = tun->ageing_time;
Jason Wang96442e422012-10-31 19:46:02 +0000302
303 if (!rxhash)
304 return;
305 else
306 head = &tun->flows[tun_hashfn(rxhash)];
307
308 rcu_read_lock();
309
310 if (tun->numqueues == 1)
311 goto unlock;
312
313 e = tun_flow_find(head, rxhash);
314 if (likely(e)) {
315 /* TODO: keep queueing to old queue until it's empty? */
316 e->queue_index = queue_index;
317 e->updated = jiffies;
318 } else {
319 spin_lock_bh(&tun->lock);
320 if (!tun_flow_find(head, rxhash))
321 tun_flow_create(tun, head, rxhash, queue_index);
322
323 if (!timer_pending(&tun->flow_gc_timer))
324 mod_timer(&tun->flow_gc_timer,
325 round_jiffies_up(jiffies + delay));
326 spin_unlock_bh(&tun->lock);
327 }
328
329unlock:
330 rcu_read_unlock();
331}
332
Jason Wangc8d68e62012-10-31 19:46:00 +0000333/* We try to identify a flow through its rxhash first. The reason that
334 * we do not check rxq no. is becuase some cards(e.g 82599), chooses
335 * the rxq based on the txq where the last packet of the flow comes. As
336 * the userspace application move between processors, we may get a
337 * different rxq no. here. If we could not get rxhash, then we would
338 * hope the rxq no. may help here.
339 */
340static u16 tun_select_queue(struct net_device *dev, struct sk_buff *skb)
341{
342 struct tun_struct *tun = netdev_priv(dev);
Jason Wang96442e422012-10-31 19:46:02 +0000343 struct tun_flow_entry *e;
Jason Wangc8d68e62012-10-31 19:46:00 +0000344 u32 txq = 0;
345 u32 numqueues = 0;
346
347 rcu_read_lock();
348 numqueues = tun->numqueues;
349
350 txq = skb_get_rxhash(skb);
351 if (txq) {
Jason Wang96442e422012-10-31 19:46:02 +0000352 e = tun_flow_find(&tun->flows[tun_hashfn(txq)], txq);
353 if (e)
354 txq = e->queue_index;
355 else
356 /* use multiply and shift instead of expensive divide */
357 txq = ((u64)txq * numqueues) >> 32;
Jason Wangc8d68e62012-10-31 19:46:00 +0000358 } else if (likely(skb_rx_queue_recorded(skb))) {
359 txq = skb_get_rx_queue(skb);
360 while (unlikely(txq >= numqueues))
361 txq -= numqueues;
362 }
363
364 rcu_read_unlock();
365 return txq;
366}
367
Jason Wangcde8b152012-10-31 19:46:01 +0000368static inline bool tun_not_capable(struct tun_struct *tun)
369{
370 const struct cred *cred = current_cred();
Eric W. Biedermanc260b772012-11-18 21:34:11 +0000371 struct net *net = dev_net(tun->dev);
Jason Wangcde8b152012-10-31 19:46:01 +0000372
373 return ((uid_valid(tun->owner) && !uid_eq(cred->euid, tun->owner)) ||
374 (gid_valid(tun->group) && !in_egroup_p(tun->group))) &&
Eric W. Biedermanc260b772012-11-18 21:34:11 +0000375 !ns_capable(net->user_ns, CAP_NET_ADMIN);
Jason Wangcde8b152012-10-31 19:46:01 +0000376}
377
Jason Wangc8d68e62012-10-31 19:46:00 +0000378static void tun_set_real_num_queues(struct tun_struct *tun)
379{
380 netif_set_real_num_tx_queues(tun->dev, tun->numqueues);
381 netif_set_real_num_rx_queues(tun->dev, tun->numqueues);
382}
383
Jason Wang4008e972012-12-13 23:53:30 +0000384static void tun_disable_queue(struct tun_struct *tun, struct tun_file *tfile)
385{
386 tfile->detached = tun;
387 list_add_tail(&tfile->next, &tun->disabled);
388 ++tun->numdisabled;
389}
390
Jason Wangd32649d2012-12-18 11:00:27 +0800391static struct tun_struct *tun_enable_queue(struct tun_file *tfile)
Jason Wang4008e972012-12-13 23:53:30 +0000392{
393 struct tun_struct *tun = tfile->detached;
394
395 tfile->detached = NULL;
396 list_del_init(&tfile->next);
397 --tun->numdisabled;
398 return tun;
399}
400
Jason Wangc8d68e62012-10-31 19:46:00 +0000401static void __tun_detach(struct tun_file *tfile, bool clean)
402{
403 struct tun_file *ntfile;
404 struct tun_struct *tun;
405 struct net_device *dev;
406
Jason Wangb8deabd2013-01-11 16:59:32 +0000407 tun = rtnl_dereference(tfile->tun);
408
Jason Wangc8d68e62012-10-31 19:46:00 +0000409 if (tun) {
410 u16 index = tfile->queue_index;
411 BUG_ON(index >= tun->numqueues);
412 dev = tun->dev;
413
414 rcu_assign_pointer(tun->tfiles[index],
415 tun->tfiles[tun->numqueues - 1]);
416 rcu_assign_pointer(tfile->tun, NULL);
Jason Wangb8deabd2013-01-11 16:59:32 +0000417 ntfile = rtnl_dereference(tun->tfiles[index]);
Jason Wangc8d68e62012-10-31 19:46:00 +0000418 ntfile->queue_index = index;
419
420 --tun->numqueues;
Jason Wang4008e972012-12-13 23:53:30 +0000421 if (clean)
422 sock_put(&tfile->sk);
423 else
424 tun_disable_queue(tun, tfile);
Jason Wangc8d68e62012-10-31 19:46:00 +0000425
426 synchronize_net();
Jason Wang96442e422012-10-31 19:46:02 +0000427 tun_flow_delete_by_queue(tun, tun->numqueues + 1);
Jason Wangc8d68e62012-10-31 19:46:00 +0000428 /* Drop read queue */
429 skb_queue_purge(&tfile->sk.sk_receive_queue);
430 tun_set_real_num_queues(tun);
Jason Wangdd38bd82013-01-11 16:59:34 +0000431 } else if (tfile->detached && clean) {
Jason Wang4008e972012-12-13 23:53:30 +0000432 tun = tun_enable_queue(tfile);
Jason Wangdd38bd82013-01-11 16:59:34 +0000433 sock_put(&tfile->sk);
434 }
Jason Wangc8d68e62012-10-31 19:46:00 +0000435
436 if (clean) {
Jason Wang4008e972012-12-13 23:53:30 +0000437 if (tun && tun->numqueues == 0 && tun->numdisabled == 0 &&
438 !(tun->flags & TUN_PERSIST))
439 if (tun->dev->reg_state == NETREG_REGISTERED)
440 unregister_netdevice(tun->dev);
441
Jason Wangc8d68e62012-10-31 19:46:00 +0000442 BUG_ON(!test_bit(SOCK_EXTERNALLY_ALLOCATED,
443 &tfile->socket.flags));
444 sk_release_kernel(&tfile->sk);
445 }
446}
447
448static void tun_detach(struct tun_file *tfile, bool clean)
449{
450 rtnl_lock();
451 __tun_detach(tfile, clean);
452 rtnl_unlock();
453}
454
455static void tun_detach_all(struct net_device *dev)
456{
457 struct tun_struct *tun = netdev_priv(dev);
Jason Wang4008e972012-12-13 23:53:30 +0000458 struct tun_file *tfile, *tmp;
Jason Wangc8d68e62012-10-31 19:46:00 +0000459 int i, n = tun->numqueues;
460
461 for (i = 0; i < n; i++) {
Jason Wangb8deabd2013-01-11 16:59:32 +0000462 tfile = rtnl_dereference(tun->tfiles[i]);
Jason Wangc8d68e62012-10-31 19:46:00 +0000463 BUG_ON(!tfile);
464 wake_up_all(&tfile->wq.wait);
465 rcu_assign_pointer(tfile->tun, NULL);
466 --tun->numqueues;
467 }
468 BUG_ON(tun->numqueues != 0);
469
470 synchronize_net();
471 for (i = 0; i < n; i++) {
Jason Wangb8deabd2013-01-11 16:59:32 +0000472 tfile = rtnl_dereference(tun->tfiles[i]);
Jason Wangc8d68e62012-10-31 19:46:00 +0000473 /* Drop read queue */
474 skb_queue_purge(&tfile->sk.sk_receive_queue);
475 sock_put(&tfile->sk);
476 }
Jason Wang4008e972012-12-13 23:53:30 +0000477 list_for_each_entry_safe(tfile, tmp, &tun->disabled, next) {
478 tun_enable_queue(tfile);
479 skb_queue_purge(&tfile->sk.sk_receive_queue);
480 sock_put(&tfile->sk);
481 }
482 BUG_ON(tun->numdisabled != 0);
Jason Wangdd38bd82013-01-11 16:59:34 +0000483
484 if (tun->flags & TUN_PERSIST)
485 module_put(THIS_MODULE);
Jason Wangc8d68e62012-10-31 19:46:00 +0000486}
487
Eric W. Biedermana7385ba2009-01-20 10:57:48 +0000488static int tun_attach(struct tun_struct *tun, struct file *file)
489{
Eric W. Biederman631ab462009-01-20 11:00:40 +0000490 struct tun_file *tfile = file->private_data;
Eric W. Biederman38231b72009-01-20 11:02:28 +0000491 int err;
Eric W. Biedermana7385ba2009-01-20 10:57:48 +0000492
Paul Moore5dbbaf22013-01-14 07:12:19 +0000493 err = security_tun_dev_attach(tfile->socket.sk, tun->security);
494 if (err < 0)
495 goto out;
496
Eric W. Biederman38231b72009-01-20 11:02:28 +0000497 err = -EINVAL;
Jason Wangb8deabd2013-01-11 16:59:32 +0000498 if (rtnl_dereference(tfile->tun))
Eric W. Biederman38231b72009-01-20 11:02:28 +0000499 goto out;
500
501 err = -EBUSY;
Jason Wangc8d68e62012-10-31 19:46:00 +0000502 if (!(tun->flags & TUN_TAP_MQ) && tun->numqueues == 1)
503 goto out;
504
505 err = -E2BIG;
Jason Wang4008e972012-12-13 23:53:30 +0000506 if (!tfile->detached &&
507 tun->numqueues + tun->numdisabled == MAX_TAP_QUEUES)
Eric W. Biederman38231b72009-01-20 11:02:28 +0000508 goto out;
509
510 err = 0;
Jason Wang54f968d2012-10-31 19:45:57 +0000511
Jason Wangc8d68e62012-10-31 19:46:00 +0000512 /* Re-attach the filter to presist device */
Jason Wang54f968d2012-10-31 19:45:57 +0000513 if (tun->filter_attached == true) {
514 err = sk_attach_filter(&tun->fprog, tfile->socket.sk);
515 if (!err)
516 goto out;
517 }
Jason Wangc8d68e62012-10-31 19:46:00 +0000518 tfile->queue_index = tun->numqueues;
Jason Wang6e914fc2012-10-31 19:45:58 +0000519 rcu_assign_pointer(tfile->tun, tun);
Jason Wangc8d68e62012-10-31 19:46:00 +0000520 rcu_assign_pointer(tun->tfiles[tun->numqueues], tfile);
Jason Wangc8d68e62012-10-31 19:46:00 +0000521 tun->numqueues++;
522
Jason Wang4008e972012-12-13 23:53:30 +0000523 if (tfile->detached)
524 tun_enable_queue(tfile);
525 else
526 sock_hold(&tfile->sk);
527
Jason Wangc8d68e62012-10-31 19:46:00 +0000528 tun_set_real_num_queues(tun);
529
Jason Wangc8d68e62012-10-31 19:46:00 +0000530 /* device is allowed to go away first, so no need to hold extra
531 * refcnt.
532 */
Eric W. Biedermana7385ba2009-01-20 10:57:48 +0000533
Eric W. Biederman38231b72009-01-20 11:02:28 +0000534out:
Eric W. Biederman38231b72009-01-20 11:02:28 +0000535 return err;
Eric W. Biedermana7385ba2009-01-20 10:57:48 +0000536}
537
Eric W. Biederman631ab462009-01-20 11:00:40 +0000538static struct tun_struct *__tun_get(struct tun_file *tfile)
539{
Jason Wang6e914fc2012-10-31 19:45:58 +0000540 struct tun_struct *tun;
Eric W. Biedermanc70f1822009-01-20 11:07:17 +0000541
Jason Wang6e914fc2012-10-31 19:45:58 +0000542 rcu_read_lock();
543 tun = rcu_dereference(tfile->tun);
544 if (tun)
545 dev_hold(tun->dev);
546 rcu_read_unlock();
Eric W. Biedermanc70f1822009-01-20 11:07:17 +0000547
548 return tun;
Eric W. Biederman631ab462009-01-20 11:00:40 +0000549}
550
551static struct tun_struct *tun_get(struct file *file)
552{
553 return __tun_get(file->private_data);
554}
555
556static void tun_put(struct tun_struct *tun)
557{
Jason Wang6e914fc2012-10-31 19:45:58 +0000558 dev_put(tun->dev);
Eric W. Biederman631ab462009-01-20 11:00:40 +0000559}
560
Joe Perches6b8a66e2011-03-02 07:18:10 +0000561/* TAP filtering */
Max Krasnyanskyf271b2c2008-07-14 22:18:19 -0700562static void addr_hash_set(u32 *mask, const u8 *addr)
563{
564 int n = ether_crc(ETH_ALEN, addr) >> 26;
565 mask[n >> 5] |= (1 << (n & 31));
566}
567
568static unsigned int addr_hash_test(const u32 *mask, const u8 *addr)
569{
570 int n = ether_crc(ETH_ALEN, addr) >> 26;
571 return mask[n >> 5] & (1 << (n & 31));
572}
573
574static int update_filter(struct tap_filter *filter, void __user *arg)
575{
576 struct { u8 u[ETH_ALEN]; } *addr;
577 struct tun_filter uf;
578 int err, alen, n, nexact;
579
580 if (copy_from_user(&uf, arg, sizeof(uf)))
581 return -EFAULT;
582
583 if (!uf.count) {
584 /* Disabled */
585 filter->count = 0;
586 return 0;
587 }
588
589 alen = ETH_ALEN * uf.count;
590 addr = kmalloc(alen, GFP_KERNEL);
591 if (!addr)
592 return -ENOMEM;
593
594 if (copy_from_user(addr, arg + sizeof(uf), alen)) {
595 err = -EFAULT;
596 goto done;
597 }
598
599 /* The filter is updated without holding any locks. Which is
600 * perfectly safe. We disable it first and in the worst
601 * case we'll accept a few undesired packets. */
602 filter->count = 0;
603 wmb();
604
605 /* Use first set of addresses as an exact filter */
606 for (n = 0; n < uf.count && n < FLT_EXACT_COUNT; n++)
607 memcpy(filter->addr[n], addr[n].u, ETH_ALEN);
608
609 nexact = n;
610
Alex Williamsoncfbf84f2009-02-08 17:49:17 -0800611 /* Remaining multicast addresses are hashed,
612 * unicast will leave the filter disabled. */
Max Krasnyanskyf271b2c2008-07-14 22:18:19 -0700613 memset(filter->mask, 0, sizeof(filter->mask));
Alex Williamsoncfbf84f2009-02-08 17:49:17 -0800614 for (; n < uf.count; n++) {
615 if (!is_multicast_ether_addr(addr[n].u)) {
616 err = 0; /* no filter */
617 goto done;
618 }
Max Krasnyanskyf271b2c2008-07-14 22:18:19 -0700619 addr_hash_set(filter->mask, addr[n].u);
Alex Williamsoncfbf84f2009-02-08 17:49:17 -0800620 }
Max Krasnyanskyf271b2c2008-07-14 22:18:19 -0700621
622 /* For ALLMULTI just set the mask to all ones.
623 * This overrides the mask populated above. */
624 if ((uf.flags & TUN_FLT_ALLMULTI))
625 memset(filter->mask, ~0, sizeof(filter->mask));
626
627 /* Now enable the filter */
628 wmb();
629 filter->count = nexact;
630
631 /* Return the number of exact filters */
632 err = nexact;
633
634done:
635 kfree(addr);
636 return err;
637}
638
639/* Returns: 0 - drop, !=0 - accept */
640static int run_filter(struct tap_filter *filter, const struct sk_buff *skb)
641{
642 /* Cannot use eth_hdr(skb) here because skb_mac_hdr() is incorrect
643 * at this point. */
644 struct ethhdr *eh = (struct ethhdr *) skb->data;
645 int i;
646
647 /* Exact match */
648 for (i = 0; i < filter->count; i++)
Joe Perches2e42e472012-05-09 17:17:46 +0000649 if (ether_addr_equal(eh->h_dest, filter->addr[i]))
Max Krasnyanskyf271b2c2008-07-14 22:18:19 -0700650 return 1;
651
652 /* Inexact match (multicast only) */
653 if (is_multicast_ether_addr(eh->h_dest))
654 return addr_hash_test(filter->mask, eh->h_dest);
655
656 return 0;
657}
658
659/*
660 * Checks whether the packet is accepted or not.
661 * Returns: 0 - drop, !=0 - accept
662 */
663static int check_filter(struct tap_filter *filter, const struct sk_buff *skb)
664{
665 if (!filter->count)
666 return 1;
667
668 return run_filter(filter, skb);
669}
670
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671/* Network device part of the driver */
672
Jeff Garzik7282d492006-09-13 14:30:00 -0400673static const struct ethtool_ops tun_ethtool_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674
Eric W. Biedermanc70f1822009-01-20 11:07:17 +0000675/* Net device detach from fd. */
676static void tun_net_uninit(struct net_device *dev)
677{
Jason Wangc8d68e62012-10-31 19:46:00 +0000678 tun_detach_all(dev);
Eric W. Biedermanc70f1822009-01-20 11:07:17 +0000679}
680
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681/* Net device open. */
682static int tun_net_open(struct net_device *dev)
683{
Jason Wangc8d68e62012-10-31 19:46:00 +0000684 netif_tx_start_all_queues(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685 return 0;
686}
687
688/* Net device close. */
689static int tun_net_close(struct net_device *dev)
690{
Jason Wangc8d68e62012-10-31 19:46:00 +0000691 netif_tx_stop_all_queues(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692 return 0;
693}
694
695/* Net device start xmit */
Stephen Hemminger424efe92009-08-31 19:50:51 +0000696static netdev_tx_t tun_net_xmit(struct sk_buff *skb, struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697{
698 struct tun_struct *tun = netdev_priv(dev);
Jason Wangc8d68e62012-10-31 19:46:00 +0000699 int txq = skb->queue_mapping;
Jason Wang6e914fc2012-10-31 19:45:58 +0000700 struct tun_file *tfile;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701
Jason Wang6e914fc2012-10-31 19:45:58 +0000702 rcu_read_lock();
Jason Wangc8d68e62012-10-31 19:46:00 +0000703 tfile = rcu_dereference(tun->tfiles[txq]);
704
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705 /* Drop packet if interface is not attached */
Jason Wangc8d68e62012-10-31 19:46:00 +0000706 if (txq >= tun->numqueues)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707 goto drop;
708
Jason Wang6e914fc2012-10-31 19:45:58 +0000709 tun_debug(KERN_INFO, tun, "tun_net_xmit %d\n", skb->len);
710
Jason Wangc8d68e62012-10-31 19:46:00 +0000711 BUG_ON(!tfile);
712
Max Krasnyanskyf271b2c2008-07-14 22:18:19 -0700713 /* Drop if the filter does not like it.
714 * This is a noop if the filter is disabled.
715 * Filter can be enabled only for the TAP devices. */
716 if (!check_filter(&tun->txflt, skb))
717 goto drop;
718
Jason Wang54f968d2012-10-31 19:45:57 +0000719 if (tfile->socket.sk->sk_filter &&
720 sk_filter(tfile->socket.sk, skb))
Michael S. Tsirkin99405162010-02-14 01:01:10 +0000721 goto drop;
722
Rami Rosen36fe8c092012-11-25 22:07:40 +0000723 /* Limit the number of packets queued by dividing txq length with the
Jason Wangc8d68e62012-10-31 19:46:00 +0000724 * number of queues.
725 */
Jason Wang54f968d2012-10-31 19:45:57 +0000726 if (skb_queue_len(&tfile->socket.sk->sk_receive_queue)
Michael S. Tsirkin5d097102012-12-03 10:07:14 +0000727 >= dev->tx_queue_len / tun->numqueues)
728 goto drop;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729
Michael S. Tsirkin0110d6f2010-04-13 04:59:44 +0000730 /* Orphan the skb - required as we might hang on to it
731 * for indefinite time. */
Michael S. Tsirkin868eefe2012-07-20 09:23:14 +0000732 if (unlikely(skb_orphan_frags(skb, GFP_ATOMIC)))
733 goto drop;
Michael S. Tsirkin0110d6f2010-04-13 04:59:44 +0000734 skb_orphan(skb);
735
Max Krasnyanskyf271b2c2008-07-14 22:18:19 -0700736 /* Enqueue packet */
Jason Wang54f968d2012-10-31 19:45:57 +0000737 skb_queue_tail(&tfile->socket.sk->sk_receive_queue, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738
739 /* Notify and wake up reader process */
Jason Wang54f968d2012-10-31 19:45:57 +0000740 if (tfile->flags & TUN_FASYNC)
741 kill_fasync(&tfile->fasync, SIGIO, POLL_IN);
742 wake_up_interruptible_poll(&tfile->wq.wait, POLLIN |
Michael S. Tsirkin05c28282010-01-14 06:17:09 +0000743 POLLRDNORM | POLLRDBAND);
Jason Wang6e914fc2012-10-31 19:45:58 +0000744
745 rcu_read_unlock();
Patrick McHardy6ed10652009-06-23 06:03:08 +0000746 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747
748drop:
Jeff Garzik09f75cd2007-10-03 17:41:50 -0700749 dev->stats.tx_dropped++;
Michael S. Tsirkin149d36f2012-11-01 09:16:32 +0000750 skb_tx_error(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751 kfree_skb(skb);
Jason Wang6e914fc2012-10-31 19:45:58 +0000752 rcu_read_unlock();
Patrick McHardy6ed10652009-06-23 06:03:08 +0000753 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754}
755
Max Krasnyanskyf271b2c2008-07-14 22:18:19 -0700756static void tun_net_mclist(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757{
Max Krasnyanskyf271b2c2008-07-14 22:18:19 -0700758 /*
759 * This callback is supposed to deal with mc filter in
760 * _rx_ path and has nothing to do with the _tx_ path.
761 * In rx path we always accept everything userspace gives us.
762 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763}
764
Ed Swierk4885a502007-09-16 12:21:38 -0700765#define MIN_MTU 68
766#define MAX_MTU 65535
767
768static int
769tun_net_change_mtu(struct net_device *dev, int new_mtu)
770{
771 if (new_mtu < MIN_MTU || new_mtu + dev->hard_header_len > MAX_MTU)
772 return -EINVAL;
773 dev->mtu = new_mtu;
774 return 0;
775}
776
Michał Mirosławc8f44af2011-11-15 15:29:55 +0000777static netdev_features_t tun_net_fix_features(struct net_device *dev,
778 netdev_features_t features)
Michał Mirosław88255372011-04-19 06:13:10 +0000779{
780 struct tun_struct *tun = netdev_priv(dev);
781
782 return (features & tun->set_features) | (features & ~TUN_USER_FEATURES);
783}
Neil Hormanbebd0972011-06-15 05:25:01 +0000784#ifdef CONFIG_NET_POLL_CONTROLLER
785static void tun_poll_controller(struct net_device *dev)
786{
787 /*
788 * Tun only receives frames when:
789 * 1) the char device endpoint gets data from user space
790 * 2) the tun socket gets a sendmsg call from user space
791 * Since both of those are syncronous operations, we are guaranteed
792 * never to have pending data when we poll for it
793 * so theres nothing to do here but return.
794 * We need this though so netpoll recognizes us as an interface that
795 * supports polling, which enables bridge devices in virt setups to
796 * still use netconsole
797 */
798 return;
799}
800#endif
Stephen Hemminger758e43b2008-11-19 22:10:37 -0800801static const struct net_device_ops tun_netdev_ops = {
Eric W. Biedermanc70f1822009-01-20 11:07:17 +0000802 .ndo_uninit = tun_net_uninit,
Stephen Hemminger758e43b2008-11-19 22:10:37 -0800803 .ndo_open = tun_net_open,
804 .ndo_stop = tun_net_close,
Stephen Hemminger00829822008-11-20 20:14:53 -0800805 .ndo_start_xmit = tun_net_xmit,
Stephen Hemminger758e43b2008-11-19 22:10:37 -0800806 .ndo_change_mtu = tun_net_change_mtu,
Michał Mirosław88255372011-04-19 06:13:10 +0000807 .ndo_fix_features = tun_net_fix_features,
Jason Wangc8d68e62012-10-31 19:46:00 +0000808 .ndo_select_queue = tun_select_queue,
Neil Hormanbebd0972011-06-15 05:25:01 +0000809#ifdef CONFIG_NET_POLL_CONTROLLER
810 .ndo_poll_controller = tun_poll_controller,
811#endif
Stephen Hemminger758e43b2008-11-19 22:10:37 -0800812};
813
814static const struct net_device_ops tap_netdev_ops = {
Eric W. Biedermanc70f1822009-01-20 11:07:17 +0000815 .ndo_uninit = tun_net_uninit,
Stephen Hemminger758e43b2008-11-19 22:10:37 -0800816 .ndo_open = tun_net_open,
817 .ndo_stop = tun_net_close,
Stephen Hemminger00829822008-11-20 20:14:53 -0800818 .ndo_start_xmit = tun_net_xmit,
Stephen Hemminger758e43b2008-11-19 22:10:37 -0800819 .ndo_change_mtu = tun_net_change_mtu,
Michał Mirosław88255372011-04-19 06:13:10 +0000820 .ndo_fix_features = tun_net_fix_features,
Jiri Pirkoafc4b132011-08-16 06:29:01 +0000821 .ndo_set_rx_mode = tun_net_mclist,
Stephen Hemminger758e43b2008-11-19 22:10:37 -0800822 .ndo_set_mac_address = eth_mac_addr,
823 .ndo_validate_addr = eth_validate_addr,
Jason Wangc8d68e62012-10-31 19:46:00 +0000824 .ndo_select_queue = tun_select_queue,
Neil Hormanbebd0972011-06-15 05:25:01 +0000825#ifdef CONFIG_NET_POLL_CONTROLLER
826 .ndo_poll_controller = tun_poll_controller,
827#endif
Stephen Hemminger758e43b2008-11-19 22:10:37 -0800828};
829
Jason Wang96442e422012-10-31 19:46:02 +0000830static int tun_flow_init(struct tun_struct *tun)
831{
832 int i;
833
Jason Wang96442e422012-10-31 19:46:02 +0000834 for (i = 0; i < TUN_NUM_FLOW_ENTRIES; i++)
835 INIT_HLIST_HEAD(&tun->flows[i]);
836
837 tun->ageing_time = TUN_FLOW_EXPIRE;
838 setup_timer(&tun->flow_gc_timer, tun_flow_cleanup, (unsigned long)tun);
839 mod_timer(&tun->flow_gc_timer,
840 round_jiffies_up(jiffies + tun->ageing_time));
841
842 return 0;
843}
844
845static void tun_flow_uninit(struct tun_struct *tun)
846{
847 del_timer_sync(&tun->flow_gc_timer);
848 tun_flow_flush(tun);
Jason Wang96442e422012-10-31 19:46:02 +0000849}
850
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851/* Initialize net device. */
852static void tun_net_init(struct net_device *dev)
853{
854 struct tun_struct *tun = netdev_priv(dev);
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400855
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856 switch (tun->flags & TUN_TYPE_MASK) {
857 case TUN_TUN_DEV:
Stephen Hemminger758e43b2008-11-19 22:10:37 -0800858 dev->netdev_ops = &tun_netdev_ops;
859
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860 /* Point-to-Point TUN Device */
861 dev->hard_header_len = 0;
862 dev->addr_len = 0;
863 dev->mtu = 1500;
864
865 /* Zero header length */
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400866 dev->type = ARPHRD_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867 dev->flags = IFF_POINTOPOINT | IFF_NOARP | IFF_MULTICAST;
868 dev->tx_queue_len = TUN_READQ_SIZE; /* We prefer our own queue length */
869 break;
870
871 case TUN_TAP_DEV:
Kusanagi Kouichi7a0a9602008-12-29 18:23:28 -0800872 dev->netdev_ops = &tap_netdev_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873 /* Ethernet TAP Device */
Max Krasnyanskyf271b2c2008-07-14 22:18:19 -0700874 ether_setup(dev);
Neil Horman550fd082011-07-26 06:05:38 +0000875 dev->priv_flags &= ~IFF_TX_SKB_SHARING;
stephen hemmingera6768472012-12-10 15:16:00 +0000876 dev->priv_flags |= IFF_LIVE_ADDR_CHANGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877
Danny Kukawkaf2cedb62012-02-15 06:45:39 +0000878 eth_hw_addr_random(dev);
Brian Braunstein36226a82007-04-26 01:00:55 -0700879
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880 dev->tx_queue_len = TUN_READQ_SIZE; /* We prefer our own queue length */
881 break;
882 }
883}
884
885/* Character device part */
886
887/* Poll */
Jason Wangc8d68e62012-10-31 19:46:00 +0000888static unsigned int tun_chr_poll(struct file *file, poll_table *wait)
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400889{
Eric W. Biedermanb2430de2009-01-20 11:03:21 +0000890 struct tun_file *tfile = file->private_data;
891 struct tun_struct *tun = __tun_get(tfile);
Mariusz Kozlowski3c8a9c62009-07-05 19:48:35 +0000892 struct sock *sk;
Herbert Xu33dccbb2009-02-05 21:25:32 -0800893 unsigned int mask = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894
895 if (!tun)
Eric W. Biedermaneac9e902009-01-20 10:59:05 +0000896 return POLLERR;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897
Jason Wang54f968d2012-10-31 19:45:57 +0000898 sk = tfile->socket.sk;
Mariusz Kozlowski3c8a9c62009-07-05 19:48:35 +0000899
Joe Perches6b8a66e2011-03-02 07:18:10 +0000900 tun_debug(KERN_INFO, tun, "tun_chr_poll\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901
Jason Wang54f968d2012-10-31 19:45:57 +0000902 poll_wait(file, &tfile->wq.wait, wait);
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400903
Michael S. Tsirkin89f56d12009-08-30 07:04:42 +0000904 if (!skb_queue_empty(&sk->sk_receive_queue))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905 mask |= POLLIN | POLLRDNORM;
906
Herbert Xu33dccbb2009-02-05 21:25:32 -0800907 if (sock_writeable(sk) ||
908 (!test_and_set_bit(SOCK_ASYNC_NOSPACE, &sk->sk_socket->flags) &&
909 sock_writeable(sk)))
910 mask |= POLLOUT | POLLWRNORM;
911
Eric W. Biedermanc70f1822009-01-20 11:07:17 +0000912 if (tun->dev->reg_state != NETREG_REGISTERED)
913 mask = POLLERR;
914
Eric W. Biederman631ab462009-01-20 11:00:40 +0000915 tun_put(tun);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916 return mask;
917}
918
Rusty Russellf42157c2008-08-15 15:15:10 -0700919/* prepad is the amount to reserve at front. len is length after that.
920 * linear is a hint as to how much to copy (usually headers). */
Jason Wang54f968d2012-10-31 19:45:57 +0000921static struct sk_buff *tun_alloc_skb(struct tun_file *tfile,
stephen hemminger6f7c1562011-06-08 14:33:08 +0000922 size_t prepad, size_t len,
923 size_t linear, int noblock)
Rusty Russellf42157c2008-08-15 15:15:10 -0700924{
Jason Wang54f968d2012-10-31 19:45:57 +0000925 struct sock *sk = tfile->socket.sk;
Rusty Russellf42157c2008-08-15 15:15:10 -0700926 struct sk_buff *skb;
Herbert Xu33dccbb2009-02-05 21:25:32 -0800927 int err;
Rusty Russellf42157c2008-08-15 15:15:10 -0700928
929 /* Under a page? Don't bother with paged skb. */
Herbert Xu0eca93b2009-04-14 02:09:43 -0700930 if (prepad + len < PAGE_SIZE || !linear)
Herbert Xu33dccbb2009-02-05 21:25:32 -0800931 linear = len;
Rusty Russellf42157c2008-08-15 15:15:10 -0700932
Herbert Xu33dccbb2009-02-05 21:25:32 -0800933 skb = sock_alloc_send_pskb(sk, prepad + linear, len - linear, noblock,
934 &err);
Rusty Russellf42157c2008-08-15 15:15:10 -0700935 if (!skb)
Herbert Xu33dccbb2009-02-05 21:25:32 -0800936 return ERR_PTR(err);
Rusty Russellf42157c2008-08-15 15:15:10 -0700937
938 skb_reserve(skb, prepad);
939 skb_put(skb, linear);
Herbert Xu33dccbb2009-02-05 21:25:32 -0800940 skb->data_len = len - linear;
941 skb->len += len - linear;
Rusty Russellf42157c2008-08-15 15:15:10 -0700942
943 return skb;
944}
945
Michael S. Tsirkin06908992012-07-20 09:23:23 +0000946/* set skb frags from iovec, this can move to core network code for reuse */
947static int zerocopy_sg_from_iovec(struct sk_buff *skb, const struct iovec *from,
948 int offset, size_t count)
949{
950 int len = iov_length(from, count) - offset;
951 int copy = skb_headlen(skb);
952 int size, offset1 = 0;
953 int i = 0;
954
955 /* Skip over from offset */
956 while (count && (offset >= from->iov_len)) {
957 offset -= from->iov_len;
958 ++from;
959 --count;
960 }
961
962 /* copy up to skb headlen */
963 while (count && (copy > 0)) {
964 size = min_t(unsigned int, copy, from->iov_len - offset);
965 if (copy_from_user(skb->data + offset1, from->iov_base + offset,
966 size))
967 return -EFAULT;
968 if (copy > size) {
969 ++from;
970 --count;
971 offset = 0;
972 } else
973 offset += size;
974 copy -= size;
975 offset1 += size;
976 }
977
978 if (len == offset1)
979 return 0;
980
981 while (count--) {
982 struct page *page[MAX_SKB_FRAGS];
983 int num_pages;
984 unsigned long base;
985 unsigned long truesize;
986
987 len = from->iov_len - offset;
988 if (!len) {
989 offset = 0;
990 ++from;
991 continue;
992 }
993 base = (unsigned long)from->iov_base + offset;
994 size = ((base & ~PAGE_MASK) + len + ~PAGE_MASK) >> PAGE_SHIFT;
995 if (i + size > MAX_SKB_FRAGS)
996 return -EMSGSIZE;
997 num_pages = get_user_pages_fast(base, size, 0, &page[i]);
998 if (num_pages != size) {
999 for (i = 0; i < num_pages; i++)
1000 put_page(page[i]);
1001 return -EFAULT;
1002 }
1003 truesize = size * PAGE_SIZE;
1004 skb->data_len += len;
1005 skb->len += len;
1006 skb->truesize += truesize;
1007 atomic_add(truesize, &skb->sk->sk_wmem_alloc);
1008 while (len) {
1009 int off = base & ~PAGE_MASK;
1010 int size = min_t(int, len, PAGE_SIZE - off);
1011 __skb_fill_page_desc(skb, i, page[i], off, size);
1012 skb_shinfo(skb)->nr_frags++;
1013 /* increase sk_wmem_alloc */
1014 base += size;
1015 len -= size;
1016 i++;
1017 }
1018 offset = 0;
1019 ++from;
1020 }
1021 return 0;
1022}
1023
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024/* Get packet from user space buffer */
Jason Wang54f968d2012-10-31 19:45:57 +00001025static ssize_t tun_get_user(struct tun_struct *tun, struct tun_file *tfile,
1026 void *msg_control, const struct iovec *iv,
1027 size_t total_len, size_t count, int noblock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028{
Harvey Harrison09640e62009-02-01 00:45:17 -08001029 struct tun_pi pi = { 0, cpu_to_be16(ETH_P_IP) };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030 struct sk_buff *skb;
Michael S. Tsirkin06908992012-07-20 09:23:23 +00001031 size_t len = total_len, align = NET_SKB_PAD;
Rusty Russellf43798c2008-07-03 03:48:02 -07001032 struct virtio_net_hdr gso = { 0 };
Michael S. Tsirkin6f26c9a2009-04-20 01:26:11 +00001033 int offset = 0;
Michael S. Tsirkin06908992012-07-20 09:23:23 +00001034 int copylen;
1035 bool zerocopy = false;
1036 int err;
Eric Dumazet49974422012-12-12 19:22:57 +00001037 u32 rxhash;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038
1039 if (!(tun->flags & TUN_NO_PI)) {
Michael S. Tsirkin06908992012-07-20 09:23:23 +00001040 if ((len -= sizeof(pi)) > total_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041 return -EINVAL;
1042
Michael S. Tsirkin6f26c9a2009-04-20 01:26:11 +00001043 if (memcpy_fromiovecend((void *)&pi, iv, 0, sizeof(pi)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044 return -EFAULT;
Michael S. Tsirkin6f26c9a2009-04-20 01:26:11 +00001045 offset += sizeof(pi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046 }
1047
Rusty Russellf43798c2008-07-03 03:48:02 -07001048 if (tun->flags & TUN_VNET_HDR) {
Michael S. Tsirkin06908992012-07-20 09:23:23 +00001049 if ((len -= tun->vnet_hdr_sz) > total_len)
Rusty Russellf43798c2008-07-03 03:48:02 -07001050 return -EINVAL;
1051
Michael S. Tsirkin6f26c9a2009-04-20 01:26:11 +00001052 if (memcpy_fromiovecend((void *)&gso, iv, offset, sizeof(gso)))
Rusty Russellf43798c2008-07-03 03:48:02 -07001053 return -EFAULT;
1054
Herbert Xu49091222009-06-08 00:20:01 -07001055 if ((gso.flags & VIRTIO_NET_HDR_F_NEEDS_CSUM) &&
1056 gso.csum_start + gso.csum_offset + 2 > gso.hdr_len)
1057 gso.hdr_len = gso.csum_start + gso.csum_offset + 2;
1058
Rusty Russellf43798c2008-07-03 03:48:02 -07001059 if (gso.hdr_len > len)
1060 return -EINVAL;
Michael S. Tsirkind9d52b52010-03-17 17:45:01 +02001061 offset += tun->vnet_hdr_sz;
Rusty Russellf43798c2008-07-03 03:48:02 -07001062 }
1063
Rusty Russelle01bf1c2008-04-12 18:49:30 -07001064 if ((tun->flags & TUN_TYPE_MASK) == TUN_TAP_DEV) {
stephen hemmingera504b862011-06-08 14:33:07 +00001065 align += NET_IP_ALIGN;
Herbert Xu0eca93b2009-04-14 02:09:43 -07001066 if (unlikely(len < ETH_HLEN ||
1067 (gso.hdr_len && gso.hdr_len < ETH_HLEN)))
Rusty Russelle01bf1c2008-04-12 18:49:30 -07001068 return -EINVAL;
1069 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001070
Michael S. Tsirkin06908992012-07-20 09:23:23 +00001071 if (msg_control)
1072 zerocopy = true;
1073
1074 if (zerocopy) {
1075 /* Userspace may produce vectors with count greater than
1076 * MAX_SKB_FRAGS, so we need to linearize parts of the skb
1077 * to let the rest of data to be fit in the frags.
1078 */
1079 if (count > MAX_SKB_FRAGS) {
1080 copylen = iov_length(iv, count - MAX_SKB_FRAGS);
1081 if (copylen < offset)
1082 copylen = 0;
1083 else
1084 copylen -= offset;
1085 } else
1086 copylen = 0;
1087 /* There are 256 bytes to be copied in skb, so there is enough
1088 * room for skb expand head in case it is used.
1089 * The rest of the buffer is mapped from userspace.
1090 */
1091 if (copylen < gso.hdr_len)
1092 copylen = gso.hdr_len;
1093 if (!copylen)
1094 copylen = GOODCOPY_LEN;
1095 } else
1096 copylen = len;
1097
Jason Wang54f968d2012-10-31 19:45:57 +00001098 skb = tun_alloc_skb(tfile, align, copylen, gso.hdr_len, noblock);
Herbert Xu33dccbb2009-02-05 21:25:32 -08001099 if (IS_ERR(skb)) {
1100 if (PTR_ERR(skb) != -EAGAIN)
1101 tun->dev->stats.rx_dropped++;
1102 return PTR_ERR(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103 }
1104
Michael S. Tsirkin06908992012-07-20 09:23:23 +00001105 if (zerocopy)
1106 err = zerocopy_sg_from_iovec(skb, iv, offset, count);
1107 else
1108 err = skb_copy_datagram_from_iovec(skb, 0, iv, offset, len);
1109
1110 if (err) {
Jeff Garzik09f75cd2007-10-03 17:41:50 -07001111 tun->dev->stats.rx_dropped++;
Dave Jones8f227572006-03-11 18:49:13 -08001112 kfree_skb(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113 return -EFAULT;
Dave Jones8f227572006-03-11 18:49:13 -08001114 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115
Rusty Russellf43798c2008-07-03 03:48:02 -07001116 if (gso.flags & VIRTIO_NET_HDR_F_NEEDS_CSUM) {
1117 if (!skb_partial_csum_set(skb, gso.csum_start,
1118 gso.csum_offset)) {
1119 tun->dev->stats.rx_frame_errors++;
1120 kfree_skb(skb);
1121 return -EINVAL;
1122 }
Michał Mirosław88255372011-04-19 06:13:10 +00001123 }
Rusty Russellf43798c2008-07-03 03:48:02 -07001124
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125 switch (tun->flags & TUN_TYPE_MASK) {
1126 case TUN_TUN_DEV:
Ang Way Chuangf09f7ee2008-06-17 21:10:33 -07001127 if (tun->flags & TUN_NO_PI) {
1128 switch (skb->data[0] & 0xf0) {
1129 case 0x40:
1130 pi.proto = htons(ETH_P_IP);
1131 break;
1132 case 0x60:
1133 pi.proto = htons(ETH_P_IPV6);
1134 break;
1135 default:
1136 tun->dev->stats.rx_dropped++;
1137 kfree_skb(skb);
1138 return -EINVAL;
1139 }
1140 }
1141
Arnaldo Carvalho de Melo459a98e2007-03-19 15:30:44 -07001142 skb_reset_mac_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143 skb->protocol = pi.proto;
Arnaldo Carvalho de Melo4c13eb62007-04-25 17:40:23 -07001144 skb->dev = tun->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145 break;
1146 case TUN_TAP_DEV:
1147 skb->protocol = eth_type_trans(skb, tun->dev);
1148 break;
Joe Perches6403eab2011-06-03 11:51:20 +00001149 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001150
Rusty Russellf43798c2008-07-03 03:48:02 -07001151 if (gso.gso_type != VIRTIO_NET_HDR_GSO_NONE) {
1152 pr_debug("GSO!\n");
1153 switch (gso.gso_type & ~VIRTIO_NET_HDR_GSO_ECN) {
1154 case VIRTIO_NET_HDR_GSO_TCPV4:
1155 skb_shinfo(skb)->gso_type = SKB_GSO_TCPV4;
1156 break;
1157 case VIRTIO_NET_HDR_GSO_TCPV6:
1158 skb_shinfo(skb)->gso_type = SKB_GSO_TCPV6;
1159 break;
Sridhar Samudralae36aa252009-07-14 14:21:04 +00001160 case VIRTIO_NET_HDR_GSO_UDP:
1161 skb_shinfo(skb)->gso_type = SKB_GSO_UDP;
1162 break;
Rusty Russellf43798c2008-07-03 03:48:02 -07001163 default:
1164 tun->dev->stats.rx_frame_errors++;
1165 kfree_skb(skb);
1166 return -EINVAL;
1167 }
1168
1169 if (gso.gso_type & VIRTIO_NET_HDR_GSO_ECN)
1170 skb_shinfo(skb)->gso_type |= SKB_GSO_TCP_ECN;
1171
1172 skb_shinfo(skb)->gso_size = gso.gso_size;
1173 if (skb_shinfo(skb)->gso_size == 0) {
1174 tun->dev->stats.rx_frame_errors++;
1175 kfree_skb(skb);
1176 return -EINVAL;
1177 }
1178
1179 /* Header must be checked, and gso_segs computed. */
1180 skb_shinfo(skb)->gso_type |= SKB_GSO_DODGY;
1181 skb_shinfo(skb)->gso_segs = 0;
1182 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001183
Michael S. Tsirkin06908992012-07-20 09:23:23 +00001184 /* copy skb_ubuf_info for callback when skb has no error */
1185 if (zerocopy) {
1186 skb_shinfo(skb)->destructor_arg = msg_control;
1187 skb_shinfo(skb)->tx_flags |= SKBTX_DEV_ZEROCOPY;
1188 }
1189
Eric Dumazet76fe4582012-12-17 04:39:20 +00001190 skb_reset_network_header(skb);
Eric Dumazet49974422012-12-12 19:22:57 +00001191 rxhash = skb_get_rxhash(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192 netif_rx_ni(skb);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001193
Jeff Garzik09f75cd2007-10-03 17:41:50 -07001194 tun->dev->stats.rx_packets++;
1195 tun->dev->stats.rx_bytes += len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196
Eric Dumazet49974422012-12-12 19:22:57 +00001197 tun_flow_update(tun, rxhash, tfile->queue_index);
Michael S. Tsirkin06908992012-07-20 09:23:23 +00001198 return total_len;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001199}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200
Badari Pulavartyee0b3e62006-09-30 23:28:47 -07001201static ssize_t tun_chr_aio_write(struct kiocb *iocb, const struct iovec *iv,
1202 unsigned long count, loff_t pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203{
Herbert Xu33dccbb2009-02-05 21:25:32 -08001204 struct file *file = iocb->ki_filp;
Herbert Xuab46d772009-02-14 20:46:39 -08001205 struct tun_struct *tun = tun_get(file);
Jason Wang54f968d2012-10-31 19:45:57 +00001206 struct tun_file *tfile = file->private_data;
Eric W. Biederman631ab462009-01-20 11:00:40 +00001207 ssize_t result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208
1209 if (!tun)
1210 return -EBADFD;
1211
Joe Perches6b8a66e2011-03-02 07:18:10 +00001212 tun_debug(KERN_INFO, tun, "tun_chr_write %ld\n", count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213
Jason Wang54f968d2012-10-31 19:45:57 +00001214 result = tun_get_user(tun, tfile, NULL, iv, iov_length(iv, count),
1215 count, file->f_flags & O_NONBLOCK);
Eric W. Biederman631ab462009-01-20 11:00:40 +00001216
1217 tun_put(tun);
1218 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219}
1220
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221/* Put packet to the user space buffer */
stephen hemminger6f7c1562011-06-08 14:33:08 +00001222static ssize_t tun_put_user(struct tun_struct *tun,
Jason Wang54f968d2012-10-31 19:45:57 +00001223 struct tun_file *tfile,
stephen hemminger6f7c1562011-06-08 14:33:08 +00001224 struct sk_buff *skb,
1225 const struct iovec *iv, int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226{
1227 struct tun_pi pi = { 0, skb->protocol };
1228 ssize_t total = 0;
1229
1230 if (!(tun->flags & TUN_NO_PI)) {
1231 if ((len -= sizeof(pi)) < 0)
1232 return -EINVAL;
1233
1234 if (len < skb->len) {
1235 /* Packet will be striped */
1236 pi.flags |= TUN_PKT_STRIP;
1237 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001238
Michael S. Tsirkin43b39dc2009-04-20 01:25:59 +00001239 if (memcpy_toiovecend(iv, (void *) &pi, 0, sizeof(pi)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240 return -EFAULT;
1241 total += sizeof(pi);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001242 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243
Rusty Russellf43798c2008-07-03 03:48:02 -07001244 if (tun->flags & TUN_VNET_HDR) {
1245 struct virtio_net_hdr gso = { 0 }; /* no info leak */
Michael S. Tsirkind9d52b52010-03-17 17:45:01 +02001246 if ((len -= tun->vnet_hdr_sz) < 0)
Rusty Russellf43798c2008-07-03 03:48:02 -07001247 return -EINVAL;
1248
1249 if (skb_is_gso(skb)) {
1250 struct skb_shared_info *sinfo = skb_shinfo(skb);
1251
1252 /* This is a hint as to how much should be linear. */
1253 gso.hdr_len = skb_headlen(skb);
1254 gso.gso_size = sinfo->gso_size;
1255 if (sinfo->gso_type & SKB_GSO_TCPV4)
1256 gso.gso_type = VIRTIO_NET_HDR_GSO_TCPV4;
1257 else if (sinfo->gso_type & SKB_GSO_TCPV6)
1258 gso.gso_type = VIRTIO_NET_HDR_GSO_TCPV6;
Sridhar Samudralae36aa252009-07-14 14:21:04 +00001259 else if (sinfo->gso_type & SKB_GSO_UDP)
1260 gso.gso_type = VIRTIO_NET_HDR_GSO_UDP;
Michael S. Tsirkinef3db4a2010-07-21 04:32:45 +00001261 else {
Joe Perches6b8a66e2011-03-02 07:18:10 +00001262 pr_err("unexpected GSO type: "
Michael S. Tsirkinef3db4a2010-07-21 04:32:45 +00001263 "0x%x, gso_size %d, hdr_len %d\n",
1264 sinfo->gso_type, gso.gso_size,
1265 gso.hdr_len);
1266 print_hex_dump(KERN_ERR, "tun: ",
1267 DUMP_PREFIX_NONE,
1268 16, 1, skb->head,
1269 min((int)gso.hdr_len, 64), true);
1270 WARN_ON_ONCE(1);
1271 return -EINVAL;
1272 }
Rusty Russellf43798c2008-07-03 03:48:02 -07001273 if (sinfo->gso_type & SKB_GSO_TCP_ECN)
1274 gso.gso_type |= VIRTIO_NET_HDR_GSO_ECN;
1275 } else
1276 gso.gso_type = VIRTIO_NET_HDR_GSO_NONE;
1277
1278 if (skb->ip_summed == CHECKSUM_PARTIAL) {
1279 gso.flags = VIRTIO_NET_HDR_F_NEEDS_CSUM;
Michał Mirosław55508d62010-12-14 15:24:08 +00001280 gso.csum_start = skb_checksum_start_offset(skb);
Rusty Russellf43798c2008-07-03 03:48:02 -07001281 gso.csum_offset = skb->csum_offset;
Jason Wang10a8d942011-06-10 00:56:17 +00001282 } else if (skb->ip_summed == CHECKSUM_UNNECESSARY) {
1283 gso.flags = VIRTIO_NET_HDR_F_DATA_VALID;
Rusty Russellf43798c2008-07-03 03:48:02 -07001284 } /* else everything is zero */
1285
Michael S. Tsirkin43b39dc2009-04-20 01:25:59 +00001286 if (unlikely(memcpy_toiovecend(iv, (void *)&gso, total,
1287 sizeof(gso))))
Rusty Russellf43798c2008-07-03 03:48:02 -07001288 return -EFAULT;
Michael S. Tsirkind9d52b52010-03-17 17:45:01 +02001289 total += tun->vnet_hdr_sz;
Rusty Russellf43798c2008-07-03 03:48:02 -07001290 }
1291
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292 len = min_t(int, skb->len, len);
1293
Michael S. Tsirkin43b39dc2009-04-20 01:25:59 +00001294 skb_copy_datagram_const_iovec(skb, 0, iv, total, len);
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00001295 total += skb->len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296
Jeff Garzik09f75cd2007-10-03 17:41:50 -07001297 tun->dev->stats.tx_packets++;
1298 tun->dev->stats.tx_bytes += len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299
1300 return total;
1301}
1302
Jason Wang54f968d2012-10-31 19:45:57 +00001303static ssize_t tun_do_read(struct tun_struct *tun, struct tun_file *tfile,
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00001304 struct kiocb *iocb, const struct iovec *iv,
1305 ssize_t len, int noblock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001306{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307 DECLARE_WAITQUEUE(wait, current);
1308 struct sk_buff *skb;
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00001309 ssize_t ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310
Rami Rosen3872baf2012-11-25 22:07:41 +00001311 tun_debug(KERN_INFO, tun, "tun_do_read\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001312
Amos Kong61a5ff12011-06-09 00:27:10 -07001313 if (unlikely(!noblock))
Jason Wang54f968d2012-10-31 19:45:57 +00001314 add_wait_queue(&tfile->wq.wait, &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315 while (len) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316 current->state = TASK_INTERRUPTIBLE;
1317
1318 /* Read frames from the queue */
Jason Wang54f968d2012-10-31 19:45:57 +00001319 if (!(skb = skb_dequeue(&tfile->socket.sk->sk_receive_queue))) {
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00001320 if (noblock) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001321 ret = -EAGAIN;
1322 break;
1323 }
1324 if (signal_pending(current)) {
1325 ret = -ERESTARTSYS;
1326 break;
1327 }
Eric W. Biedermanc70f1822009-01-20 11:07:17 +00001328 if (tun->dev->reg_state != NETREG_REGISTERED) {
1329 ret = -EIO;
1330 break;
1331 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332
1333 /* Nothing to read, let's sleep */
1334 schedule();
1335 continue;
1336 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337
Jason Wang54f968d2012-10-31 19:45:57 +00001338 ret = tun_put_user(tun, tfile, skb, iv, len);
Max Krasnyanskyf271b2c2008-07-14 22:18:19 -07001339 kfree_skb(skb);
1340 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341 }
1342
1343 current->state = TASK_RUNNING;
Amos Kong61a5ff12011-06-09 00:27:10 -07001344 if (unlikely(!noblock))
Jason Wang54f968d2012-10-31 19:45:57 +00001345 remove_wait_queue(&tfile->wq.wait, &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00001347 return ret;
1348}
1349
1350static ssize_t tun_chr_aio_read(struct kiocb *iocb, const struct iovec *iv,
1351 unsigned long count, loff_t pos)
1352{
1353 struct file *file = iocb->ki_filp;
1354 struct tun_file *tfile = file->private_data;
1355 struct tun_struct *tun = __tun_get(tfile);
1356 ssize_t len, ret;
1357
1358 if (!tun)
1359 return -EBADFD;
1360 len = iov_length(iv, count);
1361 if (len < 0) {
1362 ret = -EINVAL;
1363 goto out;
1364 }
1365
Jason Wang54f968d2012-10-31 19:45:57 +00001366 ret = tun_do_read(tun, tfile, iocb, iv, len,
1367 file->f_flags & O_NONBLOCK);
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00001368 ret = min_t(ssize_t, ret, len);
Eric W. Biederman631ab462009-01-20 11:00:40 +00001369out:
1370 tun_put(tun);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371 return ret;
1372}
1373
Jason Wang96442e422012-10-31 19:46:02 +00001374static void tun_free_netdev(struct net_device *dev)
1375{
1376 struct tun_struct *tun = netdev_priv(dev);
1377
Jason Wang4008e972012-12-13 23:53:30 +00001378 BUG_ON(!(list_empty(&tun->disabled)));
Jason Wang96442e422012-10-31 19:46:02 +00001379 tun_flow_uninit(tun);
Paul Moore5dbbaf22013-01-14 07:12:19 +00001380 security_tun_dev_free_security(tun->security);
Jason Wang96442e422012-10-31 19:46:02 +00001381 free_netdev(dev);
1382}
1383
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384static void tun_setup(struct net_device *dev)
1385{
1386 struct tun_struct *tun = netdev_priv(dev);
1387
Eric W. Biederman0625c882012-02-07 16:48:55 -08001388 tun->owner = INVALID_UID;
1389 tun->group = INVALID_GID;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391 dev->ethtool_ops = &tun_ethtool_ops;
Jason Wang96442e422012-10-31 19:46:02 +00001392 dev->destructor = tun_free_netdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393}
1394
Eric W. Biedermanf019a7a2009-01-21 16:02:16 -08001395/* Trivial set of netlink ops to allow deleting tun or tap
1396 * device with netlink.
1397 */
1398static int tun_validate(struct nlattr *tb[], struct nlattr *data[])
1399{
1400 return -EINVAL;
1401}
1402
1403static struct rtnl_link_ops tun_link_ops __read_mostly = {
1404 .kind = DRV_NAME,
1405 .priv_size = sizeof(struct tun_struct),
1406 .setup = tun_setup,
1407 .validate = tun_validate,
1408};
1409
Herbert Xu33dccbb2009-02-05 21:25:32 -08001410static void tun_sock_write_space(struct sock *sk)
1411{
Jason Wang54f968d2012-10-31 19:45:57 +00001412 struct tun_file *tfile;
Eric Dumazet43815482010-04-29 11:01:49 +00001413 wait_queue_head_t *wqueue;
Herbert Xu33dccbb2009-02-05 21:25:32 -08001414
1415 if (!sock_writeable(sk))
1416 return;
1417
Herbert Xu33dccbb2009-02-05 21:25:32 -08001418 if (!test_and_clear_bit(SOCK_ASYNC_NOSPACE, &sk->sk_socket->flags))
1419 return;
1420
Eric Dumazet43815482010-04-29 11:01:49 +00001421 wqueue = sk_sleep(sk);
1422 if (wqueue && waitqueue_active(wqueue))
1423 wake_up_interruptible_sync_poll(wqueue, POLLOUT |
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00001424 POLLWRNORM | POLLWRBAND);
Herbert Xuc722c622009-06-03 21:45:55 -07001425
Jason Wang54f968d2012-10-31 19:45:57 +00001426 tfile = container_of(sk, struct tun_file, sk);
1427 kill_fasync(&tfile->fasync, SIGIO, POLL_OUT);
Herbert Xu33dccbb2009-02-05 21:25:32 -08001428}
1429
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00001430static int tun_sendmsg(struct kiocb *iocb, struct socket *sock,
1431 struct msghdr *m, size_t total_len)
1432{
Jason Wang54f968d2012-10-31 19:45:57 +00001433 int ret;
1434 struct tun_file *tfile = container_of(sock, struct tun_file, socket);
1435 struct tun_struct *tun = __tun_get(tfile);
1436
1437 if (!tun)
1438 return -EBADFD;
Jason Wang54f968d2012-10-31 19:45:57 +00001439 ret = tun_get_user(tun, tfile, m->msg_control, m->msg_iov, total_len,
1440 m->msg_iovlen, m->msg_flags & MSG_DONTWAIT);
1441 tun_put(tun);
1442 return ret;
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00001443}
1444
Jason Wang54f968d2012-10-31 19:45:57 +00001445
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00001446static int tun_recvmsg(struct kiocb *iocb, struct socket *sock,
1447 struct msghdr *m, size_t total_len,
1448 int flags)
1449{
Jason Wang54f968d2012-10-31 19:45:57 +00001450 struct tun_file *tfile = container_of(sock, struct tun_file, socket);
1451 struct tun_struct *tun = __tun_get(tfile);
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00001452 int ret;
Jason Wang54f968d2012-10-31 19:45:57 +00001453
1454 if (!tun)
1455 return -EBADFD;
1456
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00001457 if (flags & ~(MSG_DONTWAIT|MSG_TRUNC))
1458 return -EINVAL;
Jason Wang54f968d2012-10-31 19:45:57 +00001459 ret = tun_do_read(tun, tfile, iocb, m->msg_iov, total_len,
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00001460 flags & MSG_DONTWAIT);
1461 if (ret > total_len) {
1462 m->msg_flags |= MSG_TRUNC;
1463 ret = flags & MSG_TRUNC ? ret : total_len;
1464 }
Jason Wang54f968d2012-10-31 19:45:57 +00001465 tun_put(tun);
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00001466 return ret;
1467}
1468
Stanislav Kinsbursky1ab5ecb2012-03-12 02:59:41 +00001469static int tun_release(struct socket *sock)
1470{
1471 if (sock->sk)
1472 sock_put(sock->sk);
1473 return 0;
1474}
1475
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00001476/* Ops structure to mimic raw sockets with tun */
1477static const struct proto_ops tun_socket_ops = {
1478 .sendmsg = tun_sendmsg,
1479 .recvmsg = tun_recvmsg,
Stanislav Kinsbursky1ab5ecb2012-03-12 02:59:41 +00001480 .release = tun_release,
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00001481};
1482
Herbert Xu33dccbb2009-02-05 21:25:32 -08001483static struct proto tun_proto = {
1484 .name = "tun",
1485 .owner = THIS_MODULE,
Jason Wang54f968d2012-10-31 19:45:57 +00001486 .obj_size = sizeof(struct tun_file),
Herbert Xu33dccbb2009-02-05 21:25:32 -08001487};
Eric W. Biedermanf019a7a2009-01-21 16:02:16 -08001488
David Woodhouse980c9e82009-05-09 22:54:21 -07001489static int tun_flags(struct tun_struct *tun)
1490{
1491 int flags = 0;
1492
1493 if (tun->flags & TUN_TUN_DEV)
1494 flags |= IFF_TUN;
1495 else
1496 flags |= IFF_TAP;
1497
1498 if (tun->flags & TUN_NO_PI)
1499 flags |= IFF_NO_PI;
1500
Michael S. Tsirkin5d097102012-12-03 10:07:14 +00001501 /* This flag has no real effect. We track the value for backwards
1502 * compatibility.
1503 */
David Woodhouse980c9e82009-05-09 22:54:21 -07001504 if (tun->flags & TUN_ONE_QUEUE)
1505 flags |= IFF_ONE_QUEUE;
1506
1507 if (tun->flags & TUN_VNET_HDR)
1508 flags |= IFF_VNET_HDR;
1509
Jason Wangc8d68e62012-10-31 19:46:00 +00001510 if (tun->flags & TUN_TAP_MQ)
1511 flags |= IFF_MULTI_QUEUE;
1512
David Woodhouse980c9e82009-05-09 22:54:21 -07001513 return flags;
1514}
1515
1516static ssize_t tun_show_flags(struct device *dev, struct device_attribute *attr,
1517 char *buf)
1518{
1519 struct tun_struct *tun = netdev_priv(to_net_dev(dev));
1520 return sprintf(buf, "0x%x\n", tun_flags(tun));
1521}
1522
1523static ssize_t tun_show_owner(struct device *dev, struct device_attribute *attr,
1524 char *buf)
1525{
1526 struct tun_struct *tun = netdev_priv(to_net_dev(dev));
Eric W. Biederman0625c882012-02-07 16:48:55 -08001527 return uid_valid(tun->owner)?
1528 sprintf(buf, "%u\n",
1529 from_kuid_munged(current_user_ns(), tun->owner)):
1530 sprintf(buf, "-1\n");
David Woodhouse980c9e82009-05-09 22:54:21 -07001531}
1532
1533static ssize_t tun_show_group(struct device *dev, struct device_attribute *attr,
1534 char *buf)
1535{
1536 struct tun_struct *tun = netdev_priv(to_net_dev(dev));
Eric W. Biederman0625c882012-02-07 16:48:55 -08001537 return gid_valid(tun->group) ?
1538 sprintf(buf, "%u\n",
1539 from_kgid_munged(current_user_ns(), tun->group)):
1540 sprintf(buf, "-1\n");
David Woodhouse980c9e82009-05-09 22:54:21 -07001541}
1542
1543static DEVICE_ATTR(tun_flags, 0444, tun_show_flags, NULL);
1544static DEVICE_ATTR(owner, 0444, tun_show_owner, NULL);
1545static DEVICE_ATTR(group, 0444, tun_show_group, NULL);
1546
Pavel Emelyanovd647a592008-04-16 00:41:16 -07001547static int tun_set_iff(struct net *net, struct file *file, struct ifreq *ifr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001548{
1549 struct tun_struct *tun;
Jason Wang54f968d2012-10-31 19:45:57 +00001550 struct tun_file *tfile = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001551 struct net_device *dev;
1552 int err;
1553
Jason Wang7c0c3b12013-01-11 16:59:33 +00001554 if (tfile->detached)
1555 return -EINVAL;
1556
Eric W. Biederman74a3e5a2009-01-20 10:56:20 +00001557 dev = __dev_get_by_name(net, ifr->ifr_name);
1558 if (dev) {
David Woodhousef85ba782009-04-27 03:23:54 -07001559 if (ifr->ifr_flags & IFF_TUN_EXCL)
1560 return -EBUSY;
Eric W. Biederman74a3e5a2009-01-20 10:56:20 +00001561 if ((ifr->ifr_flags & IFF_TUN) && dev->netdev_ops == &tun_netdev_ops)
1562 tun = netdev_priv(dev);
1563 else if ((ifr->ifr_flags & IFF_TAP) && dev->netdev_ops == &tap_netdev_ops)
1564 tun = netdev_priv(dev);
1565 else
1566 return -EINVAL;
1567
Jason Wangcde8b152012-10-31 19:46:01 +00001568 if (tun_not_capable(tun))
Paul Moore2b980db2009-08-28 18:12:43 -04001569 return -EPERM;
Paul Moore5dbbaf22013-01-14 07:12:19 +00001570 err = security_tun_dev_open(tun->security);
Paul Moore2b980db2009-08-28 18:12:43 -04001571 if (err < 0)
1572 return err;
1573
Eric W. Biedermana7385ba2009-01-20 10:57:48 +00001574 err = tun_attach(tun, file);
1575 if (err < 0)
1576 return err;
Jason Wang4008e972012-12-13 23:53:30 +00001577
1578 if (tun->flags & TUN_TAP_MQ &&
1579 (tun->numqueues + tun->numdisabled > 1))
1580 return err;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001581 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001582 else {
1583 char *name;
1584 unsigned long flags = 0;
Jason Wangedfb6a12013-01-23 03:59:12 +00001585 int queues = ifr->ifr_flags & IFF_MULTI_QUEUE ?
1586 MAX_TAP_QUEUES : 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001587
Eric W. Biedermanc260b772012-11-18 21:34:11 +00001588 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
David Woodhouseca6bb5d2006-06-22 16:07:52 -07001589 return -EPERM;
Paul Moore2b980db2009-08-28 18:12:43 -04001590 err = security_tun_dev_create();
1591 if (err < 0)
1592 return err;
David Woodhouseca6bb5d2006-06-22 16:07:52 -07001593
Linus Torvalds1da177e2005-04-16 15:20:36 -07001594 /* Set dev type */
1595 if (ifr->ifr_flags & IFF_TUN) {
1596 /* TUN device */
1597 flags |= TUN_TUN_DEV;
1598 name = "tun%d";
1599 } else if (ifr->ifr_flags & IFF_TAP) {
1600 /* TAP device */
1601 flags |= TUN_TAP_DEV;
1602 name = "tap%d";
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001603 } else
Kusanagi Kouichi36989b92009-09-16 21:36:13 +00001604 return -EINVAL;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001605
Linus Torvalds1da177e2005-04-16 15:20:36 -07001606 if (*ifr->ifr_name)
1607 name = ifr->ifr_name;
1608
Jason Wangc8d68e62012-10-31 19:46:00 +00001609 dev = alloc_netdev_mqs(sizeof(struct tun_struct), name,
Jason Wangedfb6a12013-01-23 03:59:12 +00001610 tun_setup, queues, queues);
1611
Linus Torvalds1da177e2005-04-16 15:20:36 -07001612 if (!dev)
1613 return -ENOMEM;
1614
Pavel Emelyanovfc54c652008-04-16 00:41:53 -07001615 dev_net_set(dev, net);
Eric W. Biedermanf019a7a2009-01-21 16:02:16 -08001616 dev->rtnl_link_ops = &tun_link_ops;
Stephen Hemminger758e43b2008-11-19 22:10:37 -08001617
Linus Torvalds1da177e2005-04-16 15:20:36 -07001618 tun = netdev_priv(dev);
1619 tun->dev = dev;
1620 tun->flags = flags;
Max Krasnyanskyf271b2c2008-07-14 22:18:19 -07001621 tun->txflt.count = 0;
Michael S. Tsirkind9d52b52010-03-17 17:45:01 +02001622 tun->vnet_hdr_sz = sizeof(struct virtio_net_hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001623
Jason Wang54f968d2012-10-31 19:45:57 +00001624 tun->filter_attached = false;
1625 tun->sndbuf = tfile->socket.sk->sk_sndbuf;
Herbert Xu33dccbb2009-02-05 21:25:32 -08001626
Jason Wang96442e422012-10-31 19:46:02 +00001627 spin_lock_init(&tun->lock);
1628
Paul Moore5dbbaf22013-01-14 07:12:19 +00001629 err = security_tun_dev_alloc_security(&tun->security);
1630 if (err < 0)
1631 goto err_free_dev;
Paul Moore2b980db2009-08-28 18:12:43 -04001632
Linus Torvalds1da177e2005-04-16 15:20:36 -07001633 tun_net_init(dev);
1634
Paul Mooreb3943ae2012-12-06 05:48:38 +00001635 err = tun_flow_init(tun);
1636 if (err < 0)
Jason Wang96442e422012-10-31 19:46:02 +00001637 goto err_free_dev;
1638
Michał Mirosław88255372011-04-19 06:13:10 +00001639 dev->hw_features = NETIF_F_SG | NETIF_F_FRAGLIST |
1640 TUN_USER_FEATURES;
1641 dev->features = dev->hw_features;
1642
Jason Wang4008e972012-12-13 23:53:30 +00001643 INIT_LIST_HEAD(&tun->disabled);
Jason Wangeb0fb362012-12-02 17:19:45 +00001644 err = tun_attach(tun, file);
1645 if (err < 0)
1646 goto err_free_dev;
1647
Linus Torvalds1da177e2005-04-16 15:20:36 -07001648 err = register_netdevice(tun->dev);
1649 if (err < 0)
Jason Wang54f968d2012-10-31 19:45:57 +00001650 goto err_free_dev;
Herbert Xu9c3fea62009-04-18 14:15:52 +00001651
David Woodhouse980c9e82009-05-09 22:54:21 -07001652 if (device_create_file(&tun->dev->dev, &dev_attr_tun_flags) ||
1653 device_create_file(&tun->dev->dev, &dev_attr_owner) ||
1654 device_create_file(&tun->dev->dev, &dev_attr_group))
Joe Perches6b8a66e2011-03-02 07:18:10 +00001655 pr_err("Failed to create tun sysfs files\n");
David Woodhouse980c9e82009-05-09 22:54:21 -07001656
Jason Wangeb0fb362012-12-02 17:19:45 +00001657 netif_carrier_on(tun->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001658 }
1659
Joe Perches6b8a66e2011-03-02 07:18:10 +00001660 tun_debug(KERN_INFO, tun, "tun_set_iff\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001661
1662 if (ifr->ifr_flags & IFF_NO_PI)
1663 tun->flags |= TUN_NO_PI;
Nathaniel Filardoa26af1e2008-02-05 03:05:07 -08001664 else
1665 tun->flags &= ~TUN_NO_PI;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001666
Michael S. Tsirkin5d097102012-12-03 10:07:14 +00001667 /* This flag has no real effect. We track the value for backwards
1668 * compatibility.
1669 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001670 if (ifr->ifr_flags & IFF_ONE_QUEUE)
1671 tun->flags |= TUN_ONE_QUEUE;
Nathaniel Filardoa26af1e2008-02-05 03:05:07 -08001672 else
1673 tun->flags &= ~TUN_ONE_QUEUE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001674
Rusty Russellf43798c2008-07-03 03:48:02 -07001675 if (ifr->ifr_flags & IFF_VNET_HDR)
1676 tun->flags |= TUN_VNET_HDR;
1677 else
1678 tun->flags &= ~TUN_VNET_HDR;
1679
Jason Wangc8d68e62012-10-31 19:46:00 +00001680 if (ifr->ifr_flags & IFF_MULTI_QUEUE)
1681 tun->flags |= TUN_TAP_MQ;
1682 else
1683 tun->flags &= ~TUN_TAP_MQ;
1684
Max Krasnyanskye35259a2008-07-10 16:59:11 -07001685 /* Make sure persistent devices do not get stuck in
1686 * xoff state.
1687 */
1688 if (netif_running(tun->dev))
Jason Wangc8d68e62012-10-31 19:46:00 +00001689 netif_tx_wake_all_queues(tun->dev);
Max Krasnyanskye35259a2008-07-10 16:59:11 -07001690
Linus Torvalds1da177e2005-04-16 15:20:36 -07001691 strcpy(ifr->ifr_name, tun->dev->name);
1692 return 0;
1693
1694 err_free_dev:
1695 free_netdev(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001696 return err;
1697}
1698
Rami Rosen9ce99cf2012-11-23 03:58:10 +00001699static void tun_get_iff(struct net *net, struct tun_struct *tun,
Herbert Xu876bfd42009-08-06 14:22:44 +00001700 struct ifreq *ifr)
Mark McLoughline3b99552008-08-15 15:09:56 -07001701{
Joe Perches6b8a66e2011-03-02 07:18:10 +00001702 tun_debug(KERN_INFO, tun, "tun_get_iff\n");
Mark McLoughline3b99552008-08-15 15:09:56 -07001703
1704 strcpy(ifr->ifr_name, tun->dev->name);
1705
David Woodhouse980c9e82009-05-09 22:54:21 -07001706 ifr->ifr_flags = tun_flags(tun);
Mark McLoughline3b99552008-08-15 15:09:56 -07001707
Mark McLoughline3b99552008-08-15 15:09:56 -07001708}
1709
Rusty Russell5228ddc2008-07-03 03:46:16 -07001710/* This is like a cut-down ethtool ops, except done via tun fd so no
1711 * privs required. */
Michał Mirosław88255372011-04-19 06:13:10 +00001712static int set_offload(struct tun_struct *tun, unsigned long arg)
Rusty Russell5228ddc2008-07-03 03:46:16 -07001713{
Michał Mirosławc8f44af2011-11-15 15:29:55 +00001714 netdev_features_t features = 0;
Rusty Russell5228ddc2008-07-03 03:46:16 -07001715
1716 if (arg & TUN_F_CSUM) {
Michał Mirosław88255372011-04-19 06:13:10 +00001717 features |= NETIF_F_HW_CSUM;
Rusty Russell5228ddc2008-07-03 03:46:16 -07001718 arg &= ~TUN_F_CSUM;
1719
1720 if (arg & (TUN_F_TSO4|TUN_F_TSO6)) {
1721 if (arg & TUN_F_TSO_ECN) {
1722 features |= NETIF_F_TSO_ECN;
1723 arg &= ~TUN_F_TSO_ECN;
1724 }
1725 if (arg & TUN_F_TSO4)
1726 features |= NETIF_F_TSO;
1727 if (arg & TUN_F_TSO6)
1728 features |= NETIF_F_TSO6;
1729 arg &= ~(TUN_F_TSO4|TUN_F_TSO6);
1730 }
Sridhar Samudralae36aa252009-07-14 14:21:04 +00001731
1732 if (arg & TUN_F_UFO) {
1733 features |= NETIF_F_UFO;
1734 arg &= ~TUN_F_UFO;
1735 }
Rusty Russell5228ddc2008-07-03 03:46:16 -07001736 }
1737
1738 /* This gives the user a way to test for new features in future by
1739 * trying to set them. */
1740 if (arg)
1741 return -EINVAL;
1742
Michał Mirosław88255372011-04-19 06:13:10 +00001743 tun->set_features = features;
1744 netdev_update_features(tun->dev);
Rusty Russell5228ddc2008-07-03 03:46:16 -07001745
1746 return 0;
1747}
1748
Jason Wangc8d68e62012-10-31 19:46:00 +00001749static void tun_detach_filter(struct tun_struct *tun, int n)
1750{
1751 int i;
1752 struct tun_file *tfile;
1753
1754 for (i = 0; i < n; i++) {
Jason Wangb8deabd2013-01-11 16:59:32 +00001755 tfile = rtnl_dereference(tun->tfiles[i]);
Jason Wangc8d68e62012-10-31 19:46:00 +00001756 sk_detach_filter(tfile->socket.sk);
1757 }
1758
1759 tun->filter_attached = false;
1760}
1761
1762static int tun_attach_filter(struct tun_struct *tun)
1763{
1764 int i, ret = 0;
1765 struct tun_file *tfile;
1766
1767 for (i = 0; i < tun->numqueues; i++) {
Jason Wangb8deabd2013-01-11 16:59:32 +00001768 tfile = rtnl_dereference(tun->tfiles[i]);
Jason Wangc8d68e62012-10-31 19:46:00 +00001769 ret = sk_attach_filter(&tun->fprog, tfile->socket.sk);
1770 if (ret) {
1771 tun_detach_filter(tun, i);
1772 return ret;
1773 }
1774 }
1775
1776 tun->filter_attached = true;
1777 return ret;
1778}
1779
1780static void tun_set_sndbuf(struct tun_struct *tun)
1781{
1782 struct tun_file *tfile;
1783 int i;
1784
1785 for (i = 0; i < tun->numqueues; i++) {
Jason Wangb8deabd2013-01-11 16:59:32 +00001786 tfile = rtnl_dereference(tun->tfiles[i]);
Jason Wangc8d68e62012-10-31 19:46:00 +00001787 tfile->socket.sk->sk_sndbuf = tun->sndbuf;
1788 }
1789}
1790
Jason Wangcde8b152012-10-31 19:46:01 +00001791static int tun_set_queue(struct file *file, struct ifreq *ifr)
1792{
1793 struct tun_file *tfile = file->private_data;
1794 struct tun_struct *tun;
Jason Wangcde8b152012-10-31 19:46:01 +00001795 int ret = 0;
1796
1797 rtnl_lock();
1798
1799 if (ifr->ifr_flags & IFF_ATTACH_QUEUE) {
Jason Wang4008e972012-12-13 23:53:30 +00001800 tun = tfile->detached;
Paul Moore5dbbaf22013-01-14 07:12:19 +00001801 if (!tun) {
Jason Wangcde8b152012-10-31 19:46:01 +00001802 ret = -EINVAL;
Paul Moore5dbbaf22013-01-14 07:12:19 +00001803 goto unlock;
1804 }
1805 ret = security_tun_dev_attach_queue(tun->security);
1806 if (ret < 0)
1807 goto unlock;
1808 ret = tun_attach(tun, file);
Jason Wang4008e972012-12-13 23:53:30 +00001809 } else if (ifr->ifr_flags & IFF_DETACH_QUEUE) {
Jason Wangb8deabd2013-01-11 16:59:32 +00001810 tun = rtnl_dereference(tfile->tun);
Jason Wang4008e972012-12-13 23:53:30 +00001811 if (!tun || !(tun->flags & TUN_TAP_MQ))
1812 ret = -EINVAL;
1813 else
1814 __tun_detach(tfile, false);
1815 } else
Jason Wangcde8b152012-10-31 19:46:01 +00001816 ret = -EINVAL;
1817
Paul Moore5dbbaf22013-01-14 07:12:19 +00001818unlock:
Jason Wangcde8b152012-10-31 19:46:01 +00001819 rtnl_unlock();
1820 return ret;
1821}
1822
Arnd Bergmann50857e22009-11-06 22:52:32 -08001823static long __tun_chr_ioctl(struct file *file, unsigned int cmd,
1824 unsigned long arg, int ifreq_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001825{
Eric W. Biederman36b50ba2009-01-20 11:01:48 +00001826 struct tun_file *tfile = file->private_data;
Eric W. Biederman631ab462009-01-20 11:00:40 +00001827 struct tun_struct *tun;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001828 void __user* argp = (void __user*)arg;
1829 struct ifreq ifr;
Eric W. Biederman0625c882012-02-07 16:48:55 -08001830 kuid_t owner;
1831 kgid_t group;
Herbert Xu33dccbb2009-02-05 21:25:32 -08001832 int sndbuf;
Michael S. Tsirkind9d52b52010-03-17 17:45:01 +02001833 int vnet_hdr_sz;
Max Krasnyanskyf271b2c2008-07-14 22:18:19 -07001834 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001835
Jason Wangcde8b152012-10-31 19:46:01 +00001836 if (cmd == TUNSETIFF || cmd == TUNSETQUEUE || _IOC_TYPE(cmd) == 0x89) {
Arnd Bergmann50857e22009-11-06 22:52:32 -08001837 if (copy_from_user(&ifr, argp, ifreq_len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001838 return -EFAULT;
David S. Miller8bbb1812012-07-30 14:52:48 -07001839 } else {
Mathias Krausea117dac2012-07-29 19:45:14 +00001840 memset(&ifr, 0, sizeof(ifr));
David S. Miller8bbb1812012-07-30 14:52:48 -07001841 }
Eric W. Biederman631ab462009-01-20 11:00:40 +00001842 if (cmd == TUNGETFEATURES) {
1843 /* Currently this just means: "what IFF flags are valid?".
1844 * This is needed because we never checked for invalid flags on
1845 * TUNSETIFF. */
1846 return put_user(IFF_TUN | IFF_TAP | IFF_NO_PI | IFF_ONE_QUEUE |
Jason Wangcde8b152012-10-31 19:46:01 +00001847 IFF_VNET_HDR | IFF_MULTI_QUEUE,
Eric W. Biederman631ab462009-01-20 11:00:40 +00001848 (unsigned int __user*)argp);
Jason Wangcde8b152012-10-31 19:46:01 +00001849 } else if (cmd == TUNSETQUEUE)
1850 return tun_set_queue(file, &ifr);
Eric W. Biederman631ab462009-01-20 11:00:40 +00001851
Jason Wangc8d68e62012-10-31 19:46:00 +00001852 ret = 0;
Herbert Xu876bfd42009-08-06 14:22:44 +00001853 rtnl_lock();
1854
Eric W. Biederman36b50ba2009-01-20 11:01:48 +00001855 tun = __tun_get(tfile);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001856 if (cmd == TUNSETIFF && !tun) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001857 ifr.ifr_name[IFNAMSIZ-1] = '\0';
1858
Herbert Xu876bfd42009-08-06 14:22:44 +00001859 ret = tun_set_iff(tfile->net, file, &ifr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001860
Herbert Xu876bfd42009-08-06 14:22:44 +00001861 if (ret)
1862 goto unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001863
Arnd Bergmann50857e22009-11-06 22:52:32 -08001864 if (copy_to_user(argp, &ifr, ifreq_len))
Herbert Xu876bfd42009-08-06 14:22:44 +00001865 ret = -EFAULT;
1866 goto unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001867 }
1868
Herbert Xu876bfd42009-08-06 14:22:44 +00001869 ret = -EBADFD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001870 if (!tun)
Herbert Xu876bfd42009-08-06 14:22:44 +00001871 goto unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001872
Jason Wang1e588332012-10-31 19:45:56 +00001873 tun_debug(KERN_INFO, tun, "tun_chr_ioctl cmd %u\n", cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001874
Eric W. Biederman631ab462009-01-20 11:00:40 +00001875 ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001876 switch (cmd) {
Mark McLoughline3b99552008-08-15 15:09:56 -07001877 case TUNGETIFF:
Rami Rosen9ce99cf2012-11-23 03:58:10 +00001878 tun_get_iff(current->nsproxy->net_ns, tun, &ifr);
Mark McLoughline3b99552008-08-15 15:09:56 -07001879
Arnd Bergmann50857e22009-11-06 22:52:32 -08001880 if (copy_to_user(argp, &ifr, ifreq_len))
Eric W. Biederman631ab462009-01-20 11:00:40 +00001881 ret = -EFAULT;
Mark McLoughline3b99552008-08-15 15:09:56 -07001882 break;
1883
Linus Torvalds1da177e2005-04-16 15:20:36 -07001884 case TUNSETNOCSUM:
1885 /* Disable/Enable checksum */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001886
Michał Mirosław88255372011-04-19 06:13:10 +00001887 /* [unimplemented] */
1888 tun_debug(KERN_INFO, tun, "ignored: set checksum %s\n",
Joe Perches6b8a66e2011-03-02 07:18:10 +00001889 arg ? "disabled" : "enabled");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001890 break;
1891
1892 case TUNSETPERSIST:
Jason Wang54f968d2012-10-31 19:45:57 +00001893 /* Disable/Enable persist mode. Keep an extra reference to the
1894 * module to prevent the module being unprobed.
1895 */
Jason Wangdd38bd82013-01-11 16:59:34 +00001896 if (arg && !(tun->flags & TUN_PERSIST)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001897 tun->flags |= TUN_PERSIST;
Jason Wang54f968d2012-10-31 19:45:57 +00001898 __module_get(THIS_MODULE);
Jason Wangdd38bd82013-01-11 16:59:34 +00001899 }
1900 if (!arg && (tun->flags & TUN_PERSIST)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001901 tun->flags &= ~TUN_PERSIST;
Jason Wang54f968d2012-10-31 19:45:57 +00001902 module_put(THIS_MODULE);
1903 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001904
Joe Perches6b8a66e2011-03-02 07:18:10 +00001905 tun_debug(KERN_INFO, tun, "persist %s\n",
1906 arg ? "enabled" : "disabled");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001907 break;
1908
1909 case TUNSETOWNER:
1910 /* Set owner of the device */
Eric W. Biederman0625c882012-02-07 16:48:55 -08001911 owner = make_kuid(current_user_ns(), arg);
1912 if (!uid_valid(owner)) {
1913 ret = -EINVAL;
1914 break;
1915 }
1916 tun->owner = owner;
Jason Wang1e588332012-10-31 19:45:56 +00001917 tun_debug(KERN_INFO, tun, "owner set to %u\n",
Eric W. Biederman0625c882012-02-07 16:48:55 -08001918 from_kuid(&init_user_ns, tun->owner));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001919 break;
1920
Guido Guenther8c644622007-07-02 22:50:25 -07001921 case TUNSETGROUP:
1922 /* Set group of the device */
Eric W. Biederman0625c882012-02-07 16:48:55 -08001923 group = make_kgid(current_user_ns(), arg);
1924 if (!gid_valid(group)) {
1925 ret = -EINVAL;
1926 break;
1927 }
1928 tun->group = group;
Jason Wang1e588332012-10-31 19:45:56 +00001929 tun_debug(KERN_INFO, tun, "group set to %u\n",
Eric W. Biederman0625c882012-02-07 16:48:55 -08001930 from_kgid(&init_user_ns, tun->group));
Guido Guenther8c644622007-07-02 22:50:25 -07001931 break;
1932
Mike Kershawff4cc3a2005-09-01 17:40:05 -07001933 case TUNSETLINK:
1934 /* Only allow setting the type when the interface is down */
1935 if (tun->dev->flags & IFF_UP) {
Joe Perches6b8a66e2011-03-02 07:18:10 +00001936 tun_debug(KERN_INFO, tun,
1937 "Linktype set failed because interface is up\n");
David S. Miller48abfe02008-04-23 19:37:58 -07001938 ret = -EBUSY;
Mike Kershawff4cc3a2005-09-01 17:40:05 -07001939 } else {
1940 tun->dev->type = (int) arg;
Joe Perches6b8a66e2011-03-02 07:18:10 +00001941 tun_debug(KERN_INFO, tun, "linktype set to %d\n",
1942 tun->dev->type);
David S. Miller48abfe02008-04-23 19:37:58 -07001943 ret = 0;
Mike Kershawff4cc3a2005-09-01 17:40:05 -07001944 }
Eric W. Biederman631ab462009-01-20 11:00:40 +00001945 break;
Mike Kershawff4cc3a2005-09-01 17:40:05 -07001946
Linus Torvalds1da177e2005-04-16 15:20:36 -07001947#ifdef TUN_DEBUG
1948 case TUNSETDEBUG:
1949 tun->debug = arg;
1950 break;
1951#endif
Rusty Russell5228ddc2008-07-03 03:46:16 -07001952 case TUNSETOFFLOAD:
Michał Mirosław88255372011-04-19 06:13:10 +00001953 ret = set_offload(tun, arg);
Eric W. Biederman631ab462009-01-20 11:00:40 +00001954 break;
Rusty Russell5228ddc2008-07-03 03:46:16 -07001955
Max Krasnyanskyf271b2c2008-07-14 22:18:19 -07001956 case TUNSETTXFILTER:
1957 /* Can be set only for TAPs */
Eric W. Biederman631ab462009-01-20 11:00:40 +00001958 ret = -EINVAL;
Max Krasnyanskyf271b2c2008-07-14 22:18:19 -07001959 if ((tun->flags & TUN_TYPE_MASK) != TUN_TAP_DEV)
Eric W. Biederman631ab462009-01-20 11:00:40 +00001960 break;
Harvey Harrisonc0e5a8c2008-07-16 12:45:34 -07001961 ret = update_filter(&tun->txflt, (void __user *)arg);
Eric W. Biederman631ab462009-01-20 11:00:40 +00001962 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001963
1964 case SIOCGIFHWADDR:
Uwe Kleine-Königb5950762010-11-01 15:38:34 -04001965 /* Get hw address */
Max Krasnyanskyf271b2c2008-07-14 22:18:19 -07001966 memcpy(ifr.ifr_hwaddr.sa_data, tun->dev->dev_addr, ETH_ALEN);
1967 ifr.ifr_hwaddr.sa_family = tun->dev->type;
Arnd Bergmann50857e22009-11-06 22:52:32 -08001968 if (copy_to_user(argp, &ifr, ifreq_len))
Eric W. Biederman631ab462009-01-20 11:00:40 +00001969 ret = -EFAULT;
1970 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001971
1972 case SIOCSIFHWADDR:
Max Krasnyanskyf271b2c2008-07-14 22:18:19 -07001973 /* Set hw address */
Joe Perches6b8a66e2011-03-02 07:18:10 +00001974 tun_debug(KERN_DEBUG, tun, "set hw address: %pM\n",
1975 ifr.ifr_hwaddr.sa_data);
Kim B. Heino40102372008-02-29 12:26:21 -08001976
Kim B. Heino40102372008-02-29 12:26:21 -08001977 ret = dev_set_mac_address(tun->dev, &ifr.ifr_hwaddr);
Eric W. Biederman631ab462009-01-20 11:00:40 +00001978 break;
Herbert Xu33dccbb2009-02-05 21:25:32 -08001979
1980 case TUNGETSNDBUF:
Jason Wang54f968d2012-10-31 19:45:57 +00001981 sndbuf = tfile->socket.sk->sk_sndbuf;
Herbert Xu33dccbb2009-02-05 21:25:32 -08001982 if (copy_to_user(argp, &sndbuf, sizeof(sndbuf)))
1983 ret = -EFAULT;
1984 break;
1985
1986 case TUNSETSNDBUF:
1987 if (copy_from_user(&sndbuf, argp, sizeof(sndbuf))) {
1988 ret = -EFAULT;
1989 break;
1990 }
1991
Jason Wangc8d68e62012-10-31 19:46:00 +00001992 tun->sndbuf = sndbuf;
1993 tun_set_sndbuf(tun);
Herbert Xu33dccbb2009-02-05 21:25:32 -08001994 break;
1995
Michael S. Tsirkind9d52b52010-03-17 17:45:01 +02001996 case TUNGETVNETHDRSZ:
1997 vnet_hdr_sz = tun->vnet_hdr_sz;
1998 if (copy_to_user(argp, &vnet_hdr_sz, sizeof(vnet_hdr_sz)))
1999 ret = -EFAULT;
2000 break;
2001
2002 case TUNSETVNETHDRSZ:
2003 if (copy_from_user(&vnet_hdr_sz, argp, sizeof(vnet_hdr_sz))) {
2004 ret = -EFAULT;
2005 break;
2006 }
2007 if (vnet_hdr_sz < (int)sizeof(struct virtio_net_hdr)) {
2008 ret = -EINVAL;
2009 break;
2010 }
2011
2012 tun->vnet_hdr_sz = vnet_hdr_sz;
2013 break;
2014
Michael S. Tsirkin99405162010-02-14 01:01:10 +00002015 case TUNATTACHFILTER:
2016 /* Can be set only for TAPs */
2017 ret = -EINVAL;
2018 if ((tun->flags & TUN_TYPE_MASK) != TUN_TAP_DEV)
2019 break;
2020 ret = -EFAULT;
Jason Wang54f968d2012-10-31 19:45:57 +00002021 if (copy_from_user(&tun->fprog, argp, sizeof(tun->fprog)))
Michael S. Tsirkin99405162010-02-14 01:01:10 +00002022 break;
2023
Jason Wangc8d68e62012-10-31 19:46:00 +00002024 ret = tun_attach_filter(tun);
Michael S. Tsirkin99405162010-02-14 01:01:10 +00002025 break;
2026
2027 case TUNDETACHFILTER:
2028 /* Can be set only for TAPs */
2029 ret = -EINVAL;
2030 if ((tun->flags & TUN_TYPE_MASK) != TUN_TAP_DEV)
2031 break;
Jason Wangc8d68e62012-10-31 19:46:00 +00002032 ret = 0;
2033 tun_detach_filter(tun, tun->numqueues);
Michael S. Tsirkin99405162010-02-14 01:01:10 +00002034 break;
2035
Linus Torvalds1da177e2005-04-16 15:20:36 -07002036 default:
Eric W. Biederman631ab462009-01-20 11:00:40 +00002037 ret = -EINVAL;
2038 break;
Joe Perchesee289b62010-05-17 22:47:34 -07002039 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002040
Herbert Xu876bfd42009-08-06 14:22:44 +00002041unlock:
2042 rtnl_unlock();
2043 if (tun)
2044 tun_put(tun);
Eric W. Biederman631ab462009-01-20 11:00:40 +00002045 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002046}
2047
Arnd Bergmann50857e22009-11-06 22:52:32 -08002048static long tun_chr_ioctl(struct file *file,
2049 unsigned int cmd, unsigned long arg)
2050{
2051 return __tun_chr_ioctl(file, cmd, arg, sizeof (struct ifreq));
2052}
2053
2054#ifdef CONFIG_COMPAT
2055static long tun_chr_compat_ioctl(struct file *file,
2056 unsigned int cmd, unsigned long arg)
2057{
2058 switch (cmd) {
2059 case TUNSETIFF:
2060 case TUNGETIFF:
2061 case TUNSETTXFILTER:
2062 case TUNGETSNDBUF:
2063 case TUNSETSNDBUF:
2064 case SIOCGIFHWADDR:
2065 case SIOCSIFHWADDR:
2066 arg = (unsigned long)compat_ptr(arg);
2067 break;
2068 default:
2069 arg = (compat_ulong_t)arg;
2070 break;
2071 }
2072
2073 /*
2074 * compat_ifreq is shorter than ifreq, so we must not access beyond
2075 * the end of that structure. All fields that are used in this
2076 * driver are compatible though, we don't need to convert the
2077 * contents.
2078 */
2079 return __tun_chr_ioctl(file, cmd, arg, sizeof(struct compat_ifreq));
2080}
2081#endif /* CONFIG_COMPAT */
2082
Linus Torvalds1da177e2005-04-16 15:20:36 -07002083static int tun_chr_fasync(int fd, struct file *file, int on)
2084{
Jason Wang54f968d2012-10-31 19:45:57 +00002085 struct tun_file *tfile = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002086 int ret;
2087
Jason Wang54f968d2012-10-31 19:45:57 +00002088 if ((ret = fasync_helper(fd, file, on, &tfile->fasync)) < 0)
Jonathan Corbet9d319522008-06-19 15:50:37 -06002089 goto out;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002090
Linus Torvalds1da177e2005-04-16 15:20:36 -07002091 if (on) {
Eric W. Biederman609d7fa2006-10-02 02:17:15 -07002092 ret = __f_setown(file, task_pid(current), PIDTYPE_PID, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002093 if (ret)
Jonathan Corbet9d319522008-06-19 15:50:37 -06002094 goto out;
Jason Wang54f968d2012-10-31 19:45:57 +00002095 tfile->flags |= TUN_FASYNC;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002096 } else
Jason Wang54f968d2012-10-31 19:45:57 +00002097 tfile->flags &= ~TUN_FASYNC;
Jonathan Corbet9d319522008-06-19 15:50:37 -06002098 ret = 0;
2099out:
Jonathan Corbet9d319522008-06-19 15:50:37 -06002100 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002101}
2102
2103static int tun_chr_open(struct inode *inode, struct file * file)
2104{
Eric W. Biederman631ab462009-01-20 11:00:40 +00002105 struct tun_file *tfile;
Thomas Gleixnerdeed49f2009-10-14 01:19:46 -07002106
Joe Perches6b8a66e2011-03-02 07:18:10 +00002107 DBG1(KERN_INFO, "tunX: tun_chr_open\n");
Eric W. Biederman631ab462009-01-20 11:00:40 +00002108
Jason Wang54f968d2012-10-31 19:45:57 +00002109 tfile = (struct tun_file *)sk_alloc(&init_net, AF_UNSPEC, GFP_KERNEL,
2110 &tun_proto);
Eric W. Biederman631ab462009-01-20 11:00:40 +00002111 if (!tfile)
2112 return -ENOMEM;
Jason Wang6e914fc2012-10-31 19:45:58 +00002113 rcu_assign_pointer(tfile->tun, NULL);
Eric W. Biederman36b50ba2009-01-20 11:01:48 +00002114 tfile->net = get_net(current->nsproxy->net_ns);
Jason Wang54f968d2012-10-31 19:45:57 +00002115 tfile->flags = 0;
2116
2117 rcu_assign_pointer(tfile->socket.wq, &tfile->wq);
2118 init_waitqueue_head(&tfile->wq.wait);
2119
2120 tfile->socket.file = file;
2121 tfile->socket.ops = &tun_socket_ops;
2122
2123 sock_init_data(&tfile->socket, &tfile->sk);
2124 sk_change_net(&tfile->sk, tfile->net);
2125
2126 tfile->sk.sk_write_space = tun_sock_write_space;
2127 tfile->sk.sk_sndbuf = INT_MAX;
2128
Eric W. Biederman631ab462009-01-20 11:00:40 +00002129 file->private_data = tfile;
Jason Wang54f968d2012-10-31 19:45:57 +00002130 set_bit(SOCK_EXTERNALLY_ALLOCATED, &tfile->socket.flags);
Jason Wang4008e972012-12-13 23:53:30 +00002131 INIT_LIST_HEAD(&tfile->next);
Jason Wang54f968d2012-10-31 19:45:57 +00002132
Linus Torvalds1da177e2005-04-16 15:20:36 -07002133 return 0;
2134}
2135
2136static int tun_chr_close(struct inode *inode, struct file *file)
2137{
Eric W. Biederman631ab462009-01-20 11:00:40 +00002138 struct tun_file *tfile = file->private_data;
Jason Wang54f968d2012-10-31 19:45:57 +00002139 struct net *net = tfile->net;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002140
Jason Wangc8d68e62012-10-31 19:46:00 +00002141 tun_detach(tfile, true);
Jason Wang54f968d2012-10-31 19:45:57 +00002142 put_net(net);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002143
2144 return 0;
2145}
2146
Arjan van de Vend54b1fd2007-02-12 00:55:34 -08002147static const struct file_operations tun_fops = {
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002148 .owner = THIS_MODULE,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002149 .llseek = no_llseek,
Badari Pulavartyee0b3e62006-09-30 23:28:47 -07002150 .read = do_sync_read,
2151 .aio_read = tun_chr_aio_read,
2152 .write = do_sync_write,
2153 .aio_write = tun_chr_aio_write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002154 .poll = tun_chr_poll,
Arnd Bergmann50857e22009-11-06 22:52:32 -08002155 .unlocked_ioctl = tun_chr_ioctl,
2156#ifdef CONFIG_COMPAT
2157 .compat_ioctl = tun_chr_compat_ioctl,
2158#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002159 .open = tun_chr_open,
2160 .release = tun_chr_close,
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002161 .fasync = tun_chr_fasync
Linus Torvalds1da177e2005-04-16 15:20:36 -07002162};
2163
2164static struct miscdevice tun_miscdev = {
2165 .minor = TUN_MINOR,
2166 .name = "tun",
Kay Sieverse454cea2009-09-18 23:01:12 +02002167 .nodename = "net/tun",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002168 .fops = &tun_fops,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002169};
2170
2171/* ethtool interface */
2172
2173static int tun_get_settings(struct net_device *dev, struct ethtool_cmd *cmd)
2174{
2175 cmd->supported = 0;
2176 cmd->advertising = 0;
David Decotigny70739492011-04-27 18:32:40 +00002177 ethtool_cmd_speed_set(cmd, SPEED_10);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002178 cmd->duplex = DUPLEX_FULL;
2179 cmd->port = PORT_TP;
2180 cmd->phy_address = 0;
2181 cmd->transceiver = XCVR_INTERNAL;
2182 cmd->autoneg = AUTONEG_DISABLE;
2183 cmd->maxtxpkt = 0;
2184 cmd->maxrxpkt = 0;
2185 return 0;
2186}
2187
2188static void tun_get_drvinfo(struct net_device *dev, struct ethtool_drvinfo *info)
2189{
2190 struct tun_struct *tun = netdev_priv(dev);
2191
Rick Jones33a5ba12011-11-15 14:59:53 +00002192 strlcpy(info->driver, DRV_NAME, sizeof(info->driver));
2193 strlcpy(info->version, DRV_VERSION, sizeof(info->version));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002194
2195 switch (tun->flags & TUN_TYPE_MASK) {
2196 case TUN_TUN_DEV:
Rick Jones33a5ba12011-11-15 14:59:53 +00002197 strlcpy(info->bus_info, "tun", sizeof(info->bus_info));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002198 break;
2199 case TUN_TAP_DEV:
Rick Jones33a5ba12011-11-15 14:59:53 +00002200 strlcpy(info->bus_info, "tap", sizeof(info->bus_info));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002201 break;
2202 }
2203}
2204
2205static u32 tun_get_msglevel(struct net_device *dev)
2206{
2207#ifdef TUN_DEBUG
2208 struct tun_struct *tun = netdev_priv(dev);
2209 return tun->debug;
2210#else
2211 return -EOPNOTSUPP;
2212#endif
2213}
2214
2215static void tun_set_msglevel(struct net_device *dev, u32 value)
2216{
2217#ifdef TUN_DEBUG
2218 struct tun_struct *tun = netdev_priv(dev);
2219 tun->debug = value;
2220#endif
2221}
2222
Jeff Garzik7282d492006-09-13 14:30:00 -04002223static const struct ethtool_ops tun_ethtool_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002224 .get_settings = tun_get_settings,
2225 .get_drvinfo = tun_get_drvinfo,
2226 .get_msglevel = tun_get_msglevel,
2227 .set_msglevel = tun_set_msglevel,
Nolan Leakebee31362010-07-27 13:53:43 +00002228 .get_link = ethtool_op_get_link,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002229};
2230
Pavel Emelyanov79d17602008-04-16 00:40:46 -07002231
Linus Torvalds1da177e2005-04-16 15:20:36 -07002232static int __init tun_init(void)
2233{
2234 int ret = 0;
2235
Joe Perches6b8a66e2011-03-02 07:18:10 +00002236 pr_info("%s, %s\n", DRV_DESCRIPTION, DRV_VERSION);
2237 pr_info("%s\n", DRV_COPYRIGHT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002238
Eric W. Biedermanf019a7a2009-01-21 16:02:16 -08002239 ret = rtnl_link_register(&tun_link_ops);
Pavel Emelyanov79d17602008-04-16 00:40:46 -07002240 if (ret) {
Joe Perches6b8a66e2011-03-02 07:18:10 +00002241 pr_err("Can't register link_ops\n");
Eric W. Biedermanf019a7a2009-01-21 16:02:16 -08002242 goto err_linkops;
Pavel Emelyanov79d17602008-04-16 00:40:46 -07002243 }
2244
Linus Torvalds1da177e2005-04-16 15:20:36 -07002245 ret = misc_register(&tun_miscdev);
Pavel Emelyanov79d17602008-04-16 00:40:46 -07002246 if (ret) {
Joe Perches6b8a66e2011-03-02 07:18:10 +00002247 pr_err("Can't register misc device %d\n", TUN_MINOR);
Pavel Emelyanov79d17602008-04-16 00:40:46 -07002248 goto err_misc;
2249 }
Eric W. Biedermanf019a7a2009-01-21 16:02:16 -08002250 return 0;
Pavel Emelyanov79d17602008-04-16 00:40:46 -07002251err_misc:
Eric W. Biedermanf019a7a2009-01-21 16:02:16 -08002252 rtnl_link_unregister(&tun_link_ops);
2253err_linkops:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002254 return ret;
2255}
2256
2257static void tun_cleanup(void)
2258{
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002259 misc_deregister(&tun_miscdev);
Eric W. Biedermanf019a7a2009-01-21 16:02:16 -08002260 rtnl_link_unregister(&tun_link_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002261}
2262
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00002263/* Get an underlying socket object from tun file. Returns error unless file is
2264 * attached to a device. The returned object works like a packet socket, it
2265 * can be used for sock_sendmsg/sock_recvmsg. The caller is responsible for
2266 * holding a reference to the file for as long as the socket is in use. */
2267struct socket *tun_get_socket(struct file *file)
2268{
Jason Wang6e914fc2012-10-31 19:45:58 +00002269 struct tun_file *tfile;
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00002270 if (file->f_op != &tun_fops)
2271 return ERR_PTR(-EINVAL);
Jason Wang6e914fc2012-10-31 19:45:58 +00002272 tfile = file->private_data;
2273 if (!tfile)
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00002274 return ERR_PTR(-EBADFD);
Jason Wang54f968d2012-10-31 19:45:57 +00002275 return &tfile->socket;
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00002276}
2277EXPORT_SYMBOL_GPL(tun_get_socket);
2278
Linus Torvalds1da177e2005-04-16 15:20:36 -07002279module_init(tun_init);
2280module_exit(tun_cleanup);
2281MODULE_DESCRIPTION(DRV_DESCRIPTION);
2282MODULE_AUTHOR(DRV_COPYRIGHT);
2283MODULE_LICENSE("GPL");
2284MODULE_ALIAS_MISCDEV(TUN_MINOR);
Kay Sievers578454f2010-05-20 18:07:20 +02002285MODULE_ALIAS("devname:net/tun");