blob: a36b56f0940bd9b2718c3ff522c1b6f2c5bc972e [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * TUN - Universal TUN/TAP device driver.
3 * Copyright (C) 1999-2002 Maxim Krasnyansky <maxk@qualcomm.com>
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * $Id: tun.c,v 1.15 2002/03/01 02:44:24 maxk Exp $
16 */
17
18/*
19 * Changes:
20 *
Mike Kershawff4cc3a2005-09-01 17:40:05 -070021 * Mike Kershaw <dragorn@kismetwireless.net> 2005/08/14
22 * Add TUNSETLINK ioctl to set the link encapsulation
23 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070024 * Mark Smith <markzzzsmith@yahoo.com.au>
Joe Perches344dc8e2012-07-12 19:33:09 +000025 * Use eth_random_addr() for tap MAC address.
Linus Torvalds1da177e2005-04-16 15:20:36 -070026 *
27 * Harald Roelle <harald.roelle@ifi.lmu.de> 2004/04/20
28 * Fixes in packet dropping, queue length setting and queue wakeup.
29 * Increased default tx queue length.
30 * Added ethtool API.
31 * Minor cleanups
32 *
33 * Daniel Podlejski <underley@underley.eu.org>
34 * Modifications for 2.3.99-pre5 kernel.
35 */
36
Joe Perches6b8a66e2011-03-02 07:18:10 +000037#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
38
Linus Torvalds1da177e2005-04-16 15:20:36 -070039#define DRV_NAME "tun"
40#define DRV_VERSION "1.6"
41#define DRV_DESCRIPTION "Universal TUN/TAP device driver"
42#define DRV_COPYRIGHT "(C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>"
43
Linus Torvalds1da177e2005-04-16 15:20:36 -070044#include <linux/module.h>
45#include <linux/errno.h>
46#include <linux/kernel.h>
47#include <linux/major.h>
48#include <linux/slab.h>
49#include <linux/poll.h>
50#include <linux/fcntl.h>
51#include <linux/init.h>
52#include <linux/skbuff.h>
53#include <linux/netdevice.h>
54#include <linux/etherdevice.h>
55#include <linux/miscdevice.h>
56#include <linux/ethtool.h>
57#include <linux/rtnetlink.h>
Arnd Bergmann50857e22009-11-06 22:52:32 -080058#include <linux/compat.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070059#include <linux/if.h>
60#include <linux/if_arp.h>
61#include <linux/if_ether.h>
62#include <linux/if_tun.h>
63#include <linux/crc32.h>
Pavel Emelyanovd647a592008-04-16 00:41:16 -070064#include <linux/nsproxy.h>
Rusty Russellf43798c2008-07-03 03:48:02 -070065#include <linux/virtio_net.h>
Michael S. Tsirkin99405162010-02-14 01:01:10 +000066#include <linux/rcupdate.h>
Eric W. Biederman881d9662007-09-17 11:56:21 -070067#include <net/net_namespace.h>
Pavel Emelyanov79d17602008-04-16 00:40:46 -070068#include <net/netns/generic.h>
Eric W. Biedermanf019a7a2009-01-21 16:02:16 -080069#include <net/rtnetlink.h>
Herbert Xu33dccbb2009-02-05 21:25:32 -080070#include <net/sock.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070071
Linus Torvalds1da177e2005-04-16 15:20:36 -070072#include <asm/uaccess.h>
73
Rusty Russell14daa022008-04-12 18:48:58 -070074/* Uncomment to enable debugging */
75/* #define TUN_DEBUG 1 */
76
Linus Torvalds1da177e2005-04-16 15:20:36 -070077#ifdef TUN_DEBUG
78static int debug;
Rusty Russell14daa022008-04-12 18:48:58 -070079
Joe Perches6b8a66e2011-03-02 07:18:10 +000080#define tun_debug(level, tun, fmt, args...) \
81do { \
82 if (tun->debug) \
83 netdev_printk(level, tun->dev, fmt, ##args); \
84} while (0)
85#define DBG1(level, fmt, args...) \
86do { \
87 if (debug == 2) \
88 printk(level fmt, ##args); \
89} while (0)
Rusty Russell14daa022008-04-12 18:48:58 -070090#else
Joe Perches6b8a66e2011-03-02 07:18:10 +000091#define tun_debug(level, tun, fmt, args...) \
92do { \
93 if (0) \
94 netdev_printk(level, tun->dev, fmt, ##args); \
95} while (0)
96#define DBG1(level, fmt, args...) \
97do { \
98 if (0) \
99 printk(level fmt, ##args); \
100} while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101#endif
102
Michael S. Tsirkin06908992012-07-20 09:23:23 +0000103#define GOODCOPY_LEN 128
104
Max Krasnyanskyf271b2c2008-07-14 22:18:19 -0700105#define FLT_EXACT_COUNT 8
106struct tap_filter {
107 unsigned int count; /* Number of addrs. Zero means disabled */
108 u32 mask[2]; /* Mask of the hashed addrs */
109 unsigned char addr[FLT_EXACT_COUNT][ETH_ALEN];
110};
111
Jason Wangc8d68e62012-10-31 19:46:00 +0000112/* 1024 is probably a high enough limit: modern hypervisors seem to support on
113 * the order of 100-200 CPUs so this leaves us some breathing space if we want
114 * to match a queue per guest CPU.
115 */
116#define MAX_TAP_QUEUES 1024
117
Jason Wang96442e422012-10-31 19:46:02 +0000118#define TUN_FLOW_EXPIRE (3 * HZ)
119
Jason Wang54f968d2012-10-31 19:45:57 +0000120/* A tun_file connects an open character device to a tuntap netdevice. It
121 * also contains all socket related strctures (except sock_fprog and tap_filter)
122 * to serve as one transmit queue for tuntap device. The sock_fprog and
123 * tap_filter were kept in tun_struct since they were used for filtering for the
Rami Rosen36fe8c092012-11-25 22:07:40 +0000124 * netdevice not for a specific queue (at least I didn't see the requirement for
Jason Wang54f968d2012-10-31 19:45:57 +0000125 * this).
Jason Wang6e914fc2012-10-31 19:45:58 +0000126 *
127 * RCU usage:
Rami Rosen36fe8c092012-11-25 22:07:40 +0000128 * The tun_file and tun_struct are loosely coupled, the pointer from one to the
Jason Wang6e914fc2012-10-31 19:45:58 +0000129 * other can only be read while rcu_read_lock or rtnl_lock is held.
Jason Wang54f968d2012-10-31 19:45:57 +0000130 */
Eric W. Biederman631ab462009-01-20 11:00:40 +0000131struct tun_file {
Jason Wang54f968d2012-10-31 19:45:57 +0000132 struct sock sk;
133 struct socket socket;
134 struct socket_wq wq;
Jason Wang6e914fc2012-10-31 19:45:58 +0000135 struct tun_struct __rcu *tun;
Eric W. Biederman36b50ba2009-01-20 11:01:48 +0000136 struct net *net;
Jason Wang54f968d2012-10-31 19:45:57 +0000137 struct fasync_struct *fasync;
138 /* only used for fasnyc */
139 unsigned int flags;
Jason Wangc8d68e62012-10-31 19:46:00 +0000140 u16 queue_index;
Jason Wang4008e972012-12-13 23:53:30 +0000141 struct list_head next;
142 struct tun_struct *detached;
Eric W. Biederman631ab462009-01-20 11:00:40 +0000143};
144
Jason Wang96442e422012-10-31 19:46:02 +0000145struct tun_flow_entry {
146 struct hlist_node hash_link;
147 struct rcu_head rcu;
148 struct tun_struct *tun;
149
150 u32 rxhash;
151 int queue_index;
152 unsigned long updated;
153};
154
155#define TUN_NUM_FLOW_ENTRIES 1024
156
Jason Wang54f968d2012-10-31 19:45:57 +0000157/* Since the socket were moved to tun_file, to preserve the behavior of persist
Rami Rosen36fe8c092012-11-25 22:07:40 +0000158 * device, socket filter, sndbuf and vnet header size were restore when the
Jason Wang54f968d2012-10-31 19:45:57 +0000159 * file were attached to a persist device.
160 */
Rusty Russell14daa022008-04-12 18:48:58 -0700161struct tun_struct {
Jason Wangc8d68e62012-10-31 19:46:00 +0000162 struct tun_file __rcu *tfiles[MAX_TAP_QUEUES];
163 unsigned int numqueues;
Max Krasnyanskyf271b2c2008-07-14 22:18:19 -0700164 unsigned int flags;
Eric W. Biederman0625c882012-02-07 16:48:55 -0800165 kuid_t owner;
166 kgid_t group;
Rusty Russell14daa022008-04-12 18:48:58 -0700167
Rusty Russell14daa022008-04-12 18:48:58 -0700168 struct net_device *dev;
Michał Mirosławc8f44af2011-11-15 15:29:55 +0000169 netdev_features_t set_features;
Michał Mirosław88255372011-04-19 06:13:10 +0000170#define TUN_USER_FEATURES (NETIF_F_HW_CSUM|NETIF_F_TSO_ECN|NETIF_F_TSO| \
171 NETIF_F_TSO6|NETIF_F_UFO)
Michael S. Tsirkind9d52b52010-03-17 17:45:01 +0200172
173 int vnet_hdr_sz;
Jason Wang54f968d2012-10-31 19:45:57 +0000174 int sndbuf;
175 struct tap_filter txflt;
176 struct sock_fprog fprog;
177 /* protected by rtnl lock */
178 bool filter_attached;
Rusty Russell14daa022008-04-12 18:48:58 -0700179#ifdef TUN_DEBUG
180 int debug;
181#endif
Jason Wang96442e422012-10-31 19:46:02 +0000182 spinlock_t lock;
Jason Wang96442e422012-10-31 19:46:02 +0000183 struct hlist_head flows[TUN_NUM_FLOW_ENTRIES];
184 struct timer_list flow_gc_timer;
185 unsigned long ageing_time;
Jason Wang4008e972012-12-13 23:53:30 +0000186 unsigned int numdisabled;
187 struct list_head disabled;
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 Wang4008e972012-12-13 23:53:30 +0000431 } else if (tfile->detached && clean)
432 tun = tun_enable_queue(tfile);
Jason Wangc8d68e62012-10-31 19:46:00 +0000433
434 if (clean) {
Jason Wang4008e972012-12-13 23:53:30 +0000435 if (tun && tun->numqueues == 0 && tun->numdisabled == 0 &&
436 !(tun->flags & TUN_PERSIST))
437 if (tun->dev->reg_state == NETREG_REGISTERED)
438 unregister_netdevice(tun->dev);
439
Jason Wangc8d68e62012-10-31 19:46:00 +0000440 BUG_ON(!test_bit(SOCK_EXTERNALLY_ALLOCATED,
441 &tfile->socket.flags));
442 sk_release_kernel(&tfile->sk);
443 }
444}
445
446static void tun_detach(struct tun_file *tfile, bool clean)
447{
448 rtnl_lock();
449 __tun_detach(tfile, clean);
450 rtnl_unlock();
451}
452
453static void tun_detach_all(struct net_device *dev)
454{
455 struct tun_struct *tun = netdev_priv(dev);
Jason Wang4008e972012-12-13 23:53:30 +0000456 struct tun_file *tfile, *tmp;
Jason Wangc8d68e62012-10-31 19:46:00 +0000457 int i, n = tun->numqueues;
458
459 for (i = 0; i < n; i++) {
Jason Wangb8deabd2013-01-11 16:59:32 +0000460 tfile = rtnl_dereference(tun->tfiles[i]);
Jason Wangc8d68e62012-10-31 19:46:00 +0000461 BUG_ON(!tfile);
462 wake_up_all(&tfile->wq.wait);
463 rcu_assign_pointer(tfile->tun, NULL);
464 --tun->numqueues;
465 }
466 BUG_ON(tun->numqueues != 0);
467
468 synchronize_net();
469 for (i = 0; i < n; i++) {
Jason Wangb8deabd2013-01-11 16:59:32 +0000470 tfile = rtnl_dereference(tun->tfiles[i]);
Jason Wangc8d68e62012-10-31 19:46:00 +0000471 /* Drop read queue */
472 skb_queue_purge(&tfile->sk.sk_receive_queue);
473 sock_put(&tfile->sk);
474 }
Jason Wang4008e972012-12-13 23:53:30 +0000475 list_for_each_entry_safe(tfile, tmp, &tun->disabled, next) {
476 tun_enable_queue(tfile);
477 skb_queue_purge(&tfile->sk.sk_receive_queue);
478 sock_put(&tfile->sk);
479 }
480 BUG_ON(tun->numdisabled != 0);
Jason Wangc8d68e62012-10-31 19:46:00 +0000481}
482
Eric W. Biedermana7385ba2009-01-20 10:57:48 +0000483static int tun_attach(struct tun_struct *tun, struct file *file)
484{
Eric W. Biederman631ab462009-01-20 11:00:40 +0000485 struct tun_file *tfile = file->private_data;
Eric W. Biederman38231b72009-01-20 11:02:28 +0000486 int err;
Eric W. Biedermana7385ba2009-01-20 10:57:48 +0000487
Eric W. Biederman38231b72009-01-20 11:02:28 +0000488 err = -EINVAL;
Jason Wangb8deabd2013-01-11 16:59:32 +0000489 if (rtnl_dereference(tfile->tun))
Eric W. Biederman38231b72009-01-20 11:02:28 +0000490 goto out;
491
492 err = -EBUSY;
Jason Wangc8d68e62012-10-31 19:46:00 +0000493 if (!(tun->flags & TUN_TAP_MQ) && tun->numqueues == 1)
494 goto out;
495
496 err = -E2BIG;
Jason Wang4008e972012-12-13 23:53:30 +0000497 if (!tfile->detached &&
498 tun->numqueues + tun->numdisabled == MAX_TAP_QUEUES)
Eric W. Biederman38231b72009-01-20 11:02:28 +0000499 goto out;
500
501 err = 0;
Jason Wang54f968d2012-10-31 19:45:57 +0000502
Jason Wangc8d68e62012-10-31 19:46:00 +0000503 /* Re-attach the filter to presist device */
Jason Wang54f968d2012-10-31 19:45:57 +0000504 if (tun->filter_attached == true) {
505 err = sk_attach_filter(&tun->fprog, tfile->socket.sk);
506 if (!err)
507 goto out;
508 }
Jason Wangc8d68e62012-10-31 19:46:00 +0000509 tfile->queue_index = tun->numqueues;
Jason Wang6e914fc2012-10-31 19:45:58 +0000510 rcu_assign_pointer(tfile->tun, tun);
Jason Wangc8d68e62012-10-31 19:46:00 +0000511 rcu_assign_pointer(tun->tfiles[tun->numqueues], tfile);
Jason Wangc8d68e62012-10-31 19:46:00 +0000512 tun->numqueues++;
513
Jason Wang4008e972012-12-13 23:53:30 +0000514 if (tfile->detached)
515 tun_enable_queue(tfile);
516 else
517 sock_hold(&tfile->sk);
518
Jason Wangc8d68e62012-10-31 19:46:00 +0000519 tun_set_real_num_queues(tun);
520
Jason Wangc8d68e62012-10-31 19:46:00 +0000521 /* device is allowed to go away first, so no need to hold extra
522 * refcnt.
523 */
Eric W. Biedermana7385ba2009-01-20 10:57:48 +0000524
Eric W. Biederman38231b72009-01-20 11:02:28 +0000525out:
Eric W. Biederman38231b72009-01-20 11:02:28 +0000526 return err;
Eric W. Biedermana7385ba2009-01-20 10:57:48 +0000527}
528
Eric W. Biederman631ab462009-01-20 11:00:40 +0000529static struct tun_struct *__tun_get(struct tun_file *tfile)
530{
Jason Wang6e914fc2012-10-31 19:45:58 +0000531 struct tun_struct *tun;
Eric W. Biedermanc70f1822009-01-20 11:07:17 +0000532
Jason Wang6e914fc2012-10-31 19:45:58 +0000533 rcu_read_lock();
534 tun = rcu_dereference(tfile->tun);
535 if (tun)
536 dev_hold(tun->dev);
537 rcu_read_unlock();
Eric W. Biedermanc70f1822009-01-20 11:07:17 +0000538
539 return tun;
Eric W. Biederman631ab462009-01-20 11:00:40 +0000540}
541
542static struct tun_struct *tun_get(struct file *file)
543{
544 return __tun_get(file->private_data);
545}
546
547static void tun_put(struct tun_struct *tun)
548{
Jason Wang6e914fc2012-10-31 19:45:58 +0000549 dev_put(tun->dev);
Eric W. Biederman631ab462009-01-20 11:00:40 +0000550}
551
Joe Perches6b8a66e2011-03-02 07:18:10 +0000552/* TAP filtering */
Max Krasnyanskyf271b2c2008-07-14 22:18:19 -0700553static void addr_hash_set(u32 *mask, const u8 *addr)
554{
555 int n = ether_crc(ETH_ALEN, addr) >> 26;
556 mask[n >> 5] |= (1 << (n & 31));
557}
558
559static unsigned int addr_hash_test(const u32 *mask, const u8 *addr)
560{
561 int n = ether_crc(ETH_ALEN, addr) >> 26;
562 return mask[n >> 5] & (1 << (n & 31));
563}
564
565static int update_filter(struct tap_filter *filter, void __user *arg)
566{
567 struct { u8 u[ETH_ALEN]; } *addr;
568 struct tun_filter uf;
569 int err, alen, n, nexact;
570
571 if (copy_from_user(&uf, arg, sizeof(uf)))
572 return -EFAULT;
573
574 if (!uf.count) {
575 /* Disabled */
576 filter->count = 0;
577 return 0;
578 }
579
580 alen = ETH_ALEN * uf.count;
581 addr = kmalloc(alen, GFP_KERNEL);
582 if (!addr)
583 return -ENOMEM;
584
585 if (copy_from_user(addr, arg + sizeof(uf), alen)) {
586 err = -EFAULT;
587 goto done;
588 }
589
590 /* The filter is updated without holding any locks. Which is
591 * perfectly safe. We disable it first and in the worst
592 * case we'll accept a few undesired packets. */
593 filter->count = 0;
594 wmb();
595
596 /* Use first set of addresses as an exact filter */
597 for (n = 0; n < uf.count && n < FLT_EXACT_COUNT; n++)
598 memcpy(filter->addr[n], addr[n].u, ETH_ALEN);
599
600 nexact = n;
601
Alex Williamsoncfbf84f2009-02-08 17:49:17 -0800602 /* Remaining multicast addresses are hashed,
603 * unicast will leave the filter disabled. */
Max Krasnyanskyf271b2c2008-07-14 22:18:19 -0700604 memset(filter->mask, 0, sizeof(filter->mask));
Alex Williamsoncfbf84f2009-02-08 17:49:17 -0800605 for (; n < uf.count; n++) {
606 if (!is_multicast_ether_addr(addr[n].u)) {
607 err = 0; /* no filter */
608 goto done;
609 }
Max Krasnyanskyf271b2c2008-07-14 22:18:19 -0700610 addr_hash_set(filter->mask, addr[n].u);
Alex Williamsoncfbf84f2009-02-08 17:49:17 -0800611 }
Max Krasnyanskyf271b2c2008-07-14 22:18:19 -0700612
613 /* For ALLMULTI just set the mask to all ones.
614 * This overrides the mask populated above. */
615 if ((uf.flags & TUN_FLT_ALLMULTI))
616 memset(filter->mask, ~0, sizeof(filter->mask));
617
618 /* Now enable the filter */
619 wmb();
620 filter->count = nexact;
621
622 /* Return the number of exact filters */
623 err = nexact;
624
625done:
626 kfree(addr);
627 return err;
628}
629
630/* Returns: 0 - drop, !=0 - accept */
631static int run_filter(struct tap_filter *filter, const struct sk_buff *skb)
632{
633 /* Cannot use eth_hdr(skb) here because skb_mac_hdr() is incorrect
634 * at this point. */
635 struct ethhdr *eh = (struct ethhdr *) skb->data;
636 int i;
637
638 /* Exact match */
639 for (i = 0; i < filter->count; i++)
Joe Perches2e42e472012-05-09 17:17:46 +0000640 if (ether_addr_equal(eh->h_dest, filter->addr[i]))
Max Krasnyanskyf271b2c2008-07-14 22:18:19 -0700641 return 1;
642
643 /* Inexact match (multicast only) */
644 if (is_multicast_ether_addr(eh->h_dest))
645 return addr_hash_test(filter->mask, eh->h_dest);
646
647 return 0;
648}
649
650/*
651 * Checks whether the packet is accepted or not.
652 * Returns: 0 - drop, !=0 - accept
653 */
654static int check_filter(struct tap_filter *filter, const struct sk_buff *skb)
655{
656 if (!filter->count)
657 return 1;
658
659 return run_filter(filter, skb);
660}
661
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662/* Network device part of the driver */
663
Jeff Garzik7282d492006-09-13 14:30:00 -0400664static const struct ethtool_ops tun_ethtool_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665
Eric W. Biedermanc70f1822009-01-20 11:07:17 +0000666/* Net device detach from fd. */
667static void tun_net_uninit(struct net_device *dev)
668{
Jason Wangc8d68e62012-10-31 19:46:00 +0000669 tun_detach_all(dev);
Eric W. Biedermanc70f1822009-01-20 11:07:17 +0000670}
671
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672/* Net device open. */
673static int tun_net_open(struct net_device *dev)
674{
Jason Wangc8d68e62012-10-31 19:46:00 +0000675 netif_tx_start_all_queues(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676 return 0;
677}
678
679/* Net device close. */
680static int tun_net_close(struct net_device *dev)
681{
Jason Wangc8d68e62012-10-31 19:46:00 +0000682 netif_tx_stop_all_queues(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683 return 0;
684}
685
686/* Net device start xmit */
Stephen Hemminger424efe92009-08-31 19:50:51 +0000687static netdev_tx_t tun_net_xmit(struct sk_buff *skb, struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688{
689 struct tun_struct *tun = netdev_priv(dev);
Jason Wangc8d68e62012-10-31 19:46:00 +0000690 int txq = skb->queue_mapping;
Jason Wang6e914fc2012-10-31 19:45:58 +0000691 struct tun_file *tfile;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692
Jason Wang6e914fc2012-10-31 19:45:58 +0000693 rcu_read_lock();
Jason Wangc8d68e62012-10-31 19:46:00 +0000694 tfile = rcu_dereference(tun->tfiles[txq]);
695
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696 /* Drop packet if interface is not attached */
Jason Wangc8d68e62012-10-31 19:46:00 +0000697 if (txq >= tun->numqueues)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698 goto drop;
699
Jason Wang6e914fc2012-10-31 19:45:58 +0000700 tun_debug(KERN_INFO, tun, "tun_net_xmit %d\n", skb->len);
701
Jason Wangc8d68e62012-10-31 19:46:00 +0000702 BUG_ON(!tfile);
703
Max Krasnyanskyf271b2c2008-07-14 22:18:19 -0700704 /* Drop if the filter does not like it.
705 * This is a noop if the filter is disabled.
706 * Filter can be enabled only for the TAP devices. */
707 if (!check_filter(&tun->txflt, skb))
708 goto drop;
709
Jason Wang54f968d2012-10-31 19:45:57 +0000710 if (tfile->socket.sk->sk_filter &&
711 sk_filter(tfile->socket.sk, skb))
Michael S. Tsirkin99405162010-02-14 01:01:10 +0000712 goto drop;
713
Rami Rosen36fe8c092012-11-25 22:07:40 +0000714 /* Limit the number of packets queued by dividing txq length with the
Jason Wangc8d68e62012-10-31 19:46:00 +0000715 * number of queues.
716 */
Jason Wang54f968d2012-10-31 19:45:57 +0000717 if (skb_queue_len(&tfile->socket.sk->sk_receive_queue)
Michael S. Tsirkin5d097102012-12-03 10:07:14 +0000718 >= dev->tx_queue_len / tun->numqueues)
719 goto drop;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720
Michael S. Tsirkin0110d6f2010-04-13 04:59:44 +0000721 /* Orphan the skb - required as we might hang on to it
722 * for indefinite time. */
Michael S. Tsirkin868eefe2012-07-20 09:23:14 +0000723 if (unlikely(skb_orphan_frags(skb, GFP_ATOMIC)))
724 goto drop;
Michael S. Tsirkin0110d6f2010-04-13 04:59:44 +0000725 skb_orphan(skb);
726
Max Krasnyanskyf271b2c2008-07-14 22:18:19 -0700727 /* Enqueue packet */
Jason Wang54f968d2012-10-31 19:45:57 +0000728 skb_queue_tail(&tfile->socket.sk->sk_receive_queue, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729
730 /* Notify and wake up reader process */
Jason Wang54f968d2012-10-31 19:45:57 +0000731 if (tfile->flags & TUN_FASYNC)
732 kill_fasync(&tfile->fasync, SIGIO, POLL_IN);
733 wake_up_interruptible_poll(&tfile->wq.wait, POLLIN |
Michael S. Tsirkin05c28282010-01-14 06:17:09 +0000734 POLLRDNORM | POLLRDBAND);
Jason Wang6e914fc2012-10-31 19:45:58 +0000735
736 rcu_read_unlock();
Patrick McHardy6ed10652009-06-23 06:03:08 +0000737 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738
739drop:
Jeff Garzik09f75cd2007-10-03 17:41:50 -0700740 dev->stats.tx_dropped++;
Michael S. Tsirkin149d36f2012-11-01 09:16:32 +0000741 skb_tx_error(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742 kfree_skb(skb);
Jason Wang6e914fc2012-10-31 19:45:58 +0000743 rcu_read_unlock();
Patrick McHardy6ed10652009-06-23 06:03:08 +0000744 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745}
746
Max Krasnyanskyf271b2c2008-07-14 22:18:19 -0700747static void tun_net_mclist(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748{
Max Krasnyanskyf271b2c2008-07-14 22:18:19 -0700749 /*
750 * This callback is supposed to deal with mc filter in
751 * _rx_ path and has nothing to do with the _tx_ path.
752 * In rx path we always accept everything userspace gives us.
753 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754}
755
Ed Swierk4885a502007-09-16 12:21:38 -0700756#define MIN_MTU 68
757#define MAX_MTU 65535
758
759static int
760tun_net_change_mtu(struct net_device *dev, int new_mtu)
761{
762 if (new_mtu < MIN_MTU || new_mtu + dev->hard_header_len > MAX_MTU)
763 return -EINVAL;
764 dev->mtu = new_mtu;
765 return 0;
766}
767
Michał Mirosławc8f44af2011-11-15 15:29:55 +0000768static netdev_features_t tun_net_fix_features(struct net_device *dev,
769 netdev_features_t features)
Michał Mirosław88255372011-04-19 06:13:10 +0000770{
771 struct tun_struct *tun = netdev_priv(dev);
772
773 return (features & tun->set_features) | (features & ~TUN_USER_FEATURES);
774}
Neil Hormanbebd0972011-06-15 05:25:01 +0000775#ifdef CONFIG_NET_POLL_CONTROLLER
776static void tun_poll_controller(struct net_device *dev)
777{
778 /*
779 * Tun only receives frames when:
780 * 1) the char device endpoint gets data from user space
781 * 2) the tun socket gets a sendmsg call from user space
782 * Since both of those are syncronous operations, we are guaranteed
783 * never to have pending data when we poll for it
784 * so theres nothing to do here but return.
785 * We need this though so netpoll recognizes us as an interface that
786 * supports polling, which enables bridge devices in virt setups to
787 * still use netconsole
788 */
789 return;
790}
791#endif
Stephen Hemminger758e43b2008-11-19 22:10:37 -0800792static const struct net_device_ops tun_netdev_ops = {
Eric W. Biedermanc70f1822009-01-20 11:07:17 +0000793 .ndo_uninit = tun_net_uninit,
Stephen Hemminger758e43b2008-11-19 22:10:37 -0800794 .ndo_open = tun_net_open,
795 .ndo_stop = tun_net_close,
Stephen Hemminger00829822008-11-20 20:14:53 -0800796 .ndo_start_xmit = tun_net_xmit,
Stephen Hemminger758e43b2008-11-19 22:10:37 -0800797 .ndo_change_mtu = tun_net_change_mtu,
Michał Mirosław88255372011-04-19 06:13:10 +0000798 .ndo_fix_features = tun_net_fix_features,
Jason Wangc8d68e62012-10-31 19:46:00 +0000799 .ndo_select_queue = tun_select_queue,
Neil Hormanbebd0972011-06-15 05:25:01 +0000800#ifdef CONFIG_NET_POLL_CONTROLLER
801 .ndo_poll_controller = tun_poll_controller,
802#endif
Stephen Hemminger758e43b2008-11-19 22:10:37 -0800803};
804
805static const struct net_device_ops tap_netdev_ops = {
Eric W. Biedermanc70f1822009-01-20 11:07:17 +0000806 .ndo_uninit = tun_net_uninit,
Stephen Hemminger758e43b2008-11-19 22:10:37 -0800807 .ndo_open = tun_net_open,
808 .ndo_stop = tun_net_close,
Stephen Hemminger00829822008-11-20 20:14:53 -0800809 .ndo_start_xmit = tun_net_xmit,
Stephen Hemminger758e43b2008-11-19 22:10:37 -0800810 .ndo_change_mtu = tun_net_change_mtu,
Michał Mirosław88255372011-04-19 06:13:10 +0000811 .ndo_fix_features = tun_net_fix_features,
Jiri Pirkoafc4b132011-08-16 06:29:01 +0000812 .ndo_set_rx_mode = tun_net_mclist,
Stephen Hemminger758e43b2008-11-19 22:10:37 -0800813 .ndo_set_mac_address = eth_mac_addr,
814 .ndo_validate_addr = eth_validate_addr,
Jason Wangc8d68e62012-10-31 19:46:00 +0000815 .ndo_select_queue = tun_select_queue,
Neil Hormanbebd0972011-06-15 05:25:01 +0000816#ifdef CONFIG_NET_POLL_CONTROLLER
817 .ndo_poll_controller = tun_poll_controller,
818#endif
Stephen Hemminger758e43b2008-11-19 22:10:37 -0800819};
820
Jason Wang96442e422012-10-31 19:46:02 +0000821static int tun_flow_init(struct tun_struct *tun)
822{
823 int i;
824
Jason Wang96442e422012-10-31 19:46:02 +0000825 for (i = 0; i < TUN_NUM_FLOW_ENTRIES; i++)
826 INIT_HLIST_HEAD(&tun->flows[i]);
827
828 tun->ageing_time = TUN_FLOW_EXPIRE;
829 setup_timer(&tun->flow_gc_timer, tun_flow_cleanup, (unsigned long)tun);
830 mod_timer(&tun->flow_gc_timer,
831 round_jiffies_up(jiffies + tun->ageing_time));
832
833 return 0;
834}
835
836static void tun_flow_uninit(struct tun_struct *tun)
837{
838 del_timer_sync(&tun->flow_gc_timer);
839 tun_flow_flush(tun);
Jason Wang96442e422012-10-31 19:46:02 +0000840}
841
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842/* Initialize net device. */
843static void tun_net_init(struct net_device *dev)
844{
845 struct tun_struct *tun = netdev_priv(dev);
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400846
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847 switch (tun->flags & TUN_TYPE_MASK) {
848 case TUN_TUN_DEV:
Stephen Hemminger758e43b2008-11-19 22:10:37 -0800849 dev->netdev_ops = &tun_netdev_ops;
850
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851 /* Point-to-Point TUN Device */
852 dev->hard_header_len = 0;
853 dev->addr_len = 0;
854 dev->mtu = 1500;
855
856 /* Zero header length */
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400857 dev->type = ARPHRD_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858 dev->flags = IFF_POINTOPOINT | IFF_NOARP | IFF_MULTICAST;
859 dev->tx_queue_len = TUN_READQ_SIZE; /* We prefer our own queue length */
860 break;
861
862 case TUN_TAP_DEV:
Kusanagi Kouichi7a0a9602008-12-29 18:23:28 -0800863 dev->netdev_ops = &tap_netdev_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864 /* Ethernet TAP Device */
Max Krasnyanskyf271b2c2008-07-14 22:18:19 -0700865 ether_setup(dev);
Neil Horman550fd082011-07-26 06:05:38 +0000866 dev->priv_flags &= ~IFF_TX_SKB_SHARING;
stephen hemmingera6768472012-12-10 15:16:00 +0000867 dev->priv_flags |= IFF_LIVE_ADDR_CHANGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868
Danny Kukawkaf2cedb62012-02-15 06:45:39 +0000869 eth_hw_addr_random(dev);
Brian Braunstein36226a82007-04-26 01:00:55 -0700870
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871 dev->tx_queue_len = TUN_READQ_SIZE; /* We prefer our own queue length */
872 break;
873 }
874}
875
876/* Character device part */
877
878/* Poll */
Jason Wangc8d68e62012-10-31 19:46:00 +0000879static unsigned int tun_chr_poll(struct file *file, poll_table *wait)
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400880{
Eric W. Biedermanb2430de2009-01-20 11:03:21 +0000881 struct tun_file *tfile = file->private_data;
882 struct tun_struct *tun = __tun_get(tfile);
Mariusz Kozlowski3c8a9c62009-07-05 19:48:35 +0000883 struct sock *sk;
Herbert Xu33dccbb2009-02-05 21:25:32 -0800884 unsigned int mask = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885
886 if (!tun)
Eric W. Biedermaneac9e902009-01-20 10:59:05 +0000887 return POLLERR;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888
Jason Wang54f968d2012-10-31 19:45:57 +0000889 sk = tfile->socket.sk;
Mariusz Kozlowski3c8a9c62009-07-05 19:48:35 +0000890
Joe Perches6b8a66e2011-03-02 07:18:10 +0000891 tun_debug(KERN_INFO, tun, "tun_chr_poll\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892
Jason Wang54f968d2012-10-31 19:45:57 +0000893 poll_wait(file, &tfile->wq.wait, wait);
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400894
Michael S. Tsirkin89f56d12009-08-30 07:04:42 +0000895 if (!skb_queue_empty(&sk->sk_receive_queue))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896 mask |= POLLIN | POLLRDNORM;
897
Herbert Xu33dccbb2009-02-05 21:25:32 -0800898 if (sock_writeable(sk) ||
899 (!test_and_set_bit(SOCK_ASYNC_NOSPACE, &sk->sk_socket->flags) &&
900 sock_writeable(sk)))
901 mask |= POLLOUT | POLLWRNORM;
902
Eric W. Biedermanc70f1822009-01-20 11:07:17 +0000903 if (tun->dev->reg_state != NETREG_REGISTERED)
904 mask = POLLERR;
905
Eric W. Biederman631ab462009-01-20 11:00:40 +0000906 tun_put(tun);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907 return mask;
908}
909
Rusty Russellf42157c2008-08-15 15:15:10 -0700910/* prepad is the amount to reserve at front. len is length after that.
911 * linear is a hint as to how much to copy (usually headers). */
Jason Wang54f968d2012-10-31 19:45:57 +0000912static struct sk_buff *tun_alloc_skb(struct tun_file *tfile,
stephen hemminger6f7c1562011-06-08 14:33:08 +0000913 size_t prepad, size_t len,
914 size_t linear, int noblock)
Rusty Russellf42157c2008-08-15 15:15:10 -0700915{
Jason Wang54f968d2012-10-31 19:45:57 +0000916 struct sock *sk = tfile->socket.sk;
Rusty Russellf42157c2008-08-15 15:15:10 -0700917 struct sk_buff *skb;
Herbert Xu33dccbb2009-02-05 21:25:32 -0800918 int err;
Rusty Russellf42157c2008-08-15 15:15:10 -0700919
920 /* Under a page? Don't bother with paged skb. */
Herbert Xu0eca93b2009-04-14 02:09:43 -0700921 if (prepad + len < PAGE_SIZE || !linear)
Herbert Xu33dccbb2009-02-05 21:25:32 -0800922 linear = len;
Rusty Russellf42157c2008-08-15 15:15:10 -0700923
Herbert Xu33dccbb2009-02-05 21:25:32 -0800924 skb = sock_alloc_send_pskb(sk, prepad + linear, len - linear, noblock,
925 &err);
Rusty Russellf42157c2008-08-15 15:15:10 -0700926 if (!skb)
Herbert Xu33dccbb2009-02-05 21:25:32 -0800927 return ERR_PTR(err);
Rusty Russellf42157c2008-08-15 15:15:10 -0700928
929 skb_reserve(skb, prepad);
930 skb_put(skb, linear);
Herbert Xu33dccbb2009-02-05 21:25:32 -0800931 skb->data_len = len - linear;
932 skb->len += len - linear;
Rusty Russellf42157c2008-08-15 15:15:10 -0700933
934 return skb;
935}
936
Michael S. Tsirkin06908992012-07-20 09:23:23 +0000937/* set skb frags from iovec, this can move to core network code for reuse */
938static int zerocopy_sg_from_iovec(struct sk_buff *skb, const struct iovec *from,
939 int offset, size_t count)
940{
941 int len = iov_length(from, count) - offset;
942 int copy = skb_headlen(skb);
943 int size, offset1 = 0;
944 int i = 0;
945
946 /* Skip over from offset */
947 while (count && (offset >= from->iov_len)) {
948 offset -= from->iov_len;
949 ++from;
950 --count;
951 }
952
953 /* copy up to skb headlen */
954 while (count && (copy > 0)) {
955 size = min_t(unsigned int, copy, from->iov_len - offset);
956 if (copy_from_user(skb->data + offset1, from->iov_base + offset,
957 size))
958 return -EFAULT;
959 if (copy > size) {
960 ++from;
961 --count;
962 offset = 0;
963 } else
964 offset += size;
965 copy -= size;
966 offset1 += size;
967 }
968
969 if (len == offset1)
970 return 0;
971
972 while (count--) {
973 struct page *page[MAX_SKB_FRAGS];
974 int num_pages;
975 unsigned long base;
976 unsigned long truesize;
977
978 len = from->iov_len - offset;
979 if (!len) {
980 offset = 0;
981 ++from;
982 continue;
983 }
984 base = (unsigned long)from->iov_base + offset;
985 size = ((base & ~PAGE_MASK) + len + ~PAGE_MASK) >> PAGE_SHIFT;
986 if (i + size > MAX_SKB_FRAGS)
987 return -EMSGSIZE;
988 num_pages = get_user_pages_fast(base, size, 0, &page[i]);
989 if (num_pages != size) {
990 for (i = 0; i < num_pages; i++)
991 put_page(page[i]);
992 return -EFAULT;
993 }
994 truesize = size * PAGE_SIZE;
995 skb->data_len += len;
996 skb->len += len;
997 skb->truesize += truesize;
998 atomic_add(truesize, &skb->sk->sk_wmem_alloc);
999 while (len) {
1000 int off = base & ~PAGE_MASK;
1001 int size = min_t(int, len, PAGE_SIZE - off);
1002 __skb_fill_page_desc(skb, i, page[i], off, size);
1003 skb_shinfo(skb)->nr_frags++;
1004 /* increase sk_wmem_alloc */
1005 base += size;
1006 len -= size;
1007 i++;
1008 }
1009 offset = 0;
1010 ++from;
1011 }
1012 return 0;
1013}
1014
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015/* Get packet from user space buffer */
Jason Wang54f968d2012-10-31 19:45:57 +00001016static ssize_t tun_get_user(struct tun_struct *tun, struct tun_file *tfile,
1017 void *msg_control, const struct iovec *iv,
1018 size_t total_len, size_t count, int noblock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019{
Harvey Harrison09640e62009-02-01 00:45:17 -08001020 struct tun_pi pi = { 0, cpu_to_be16(ETH_P_IP) };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021 struct sk_buff *skb;
Michael S. Tsirkin06908992012-07-20 09:23:23 +00001022 size_t len = total_len, align = NET_SKB_PAD;
Rusty Russellf43798c2008-07-03 03:48:02 -07001023 struct virtio_net_hdr gso = { 0 };
Michael S. Tsirkin6f26c9a2009-04-20 01:26:11 +00001024 int offset = 0;
Michael S. Tsirkin06908992012-07-20 09:23:23 +00001025 int copylen;
1026 bool zerocopy = false;
1027 int err;
Eric Dumazet49974422012-12-12 19:22:57 +00001028 u32 rxhash;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029
1030 if (!(tun->flags & TUN_NO_PI)) {
Michael S. Tsirkin06908992012-07-20 09:23:23 +00001031 if ((len -= sizeof(pi)) > total_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032 return -EINVAL;
1033
Michael S. Tsirkin6f26c9a2009-04-20 01:26:11 +00001034 if (memcpy_fromiovecend((void *)&pi, iv, 0, sizeof(pi)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035 return -EFAULT;
Michael S. Tsirkin6f26c9a2009-04-20 01:26:11 +00001036 offset += sizeof(pi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037 }
1038
Rusty Russellf43798c2008-07-03 03:48:02 -07001039 if (tun->flags & TUN_VNET_HDR) {
Michael S. Tsirkin06908992012-07-20 09:23:23 +00001040 if ((len -= tun->vnet_hdr_sz) > total_len)
Rusty Russellf43798c2008-07-03 03:48:02 -07001041 return -EINVAL;
1042
Michael S. Tsirkin6f26c9a2009-04-20 01:26:11 +00001043 if (memcpy_fromiovecend((void *)&gso, iv, offset, sizeof(gso)))
Rusty Russellf43798c2008-07-03 03:48:02 -07001044 return -EFAULT;
1045
Herbert Xu49091222009-06-08 00:20:01 -07001046 if ((gso.flags & VIRTIO_NET_HDR_F_NEEDS_CSUM) &&
1047 gso.csum_start + gso.csum_offset + 2 > gso.hdr_len)
1048 gso.hdr_len = gso.csum_start + gso.csum_offset + 2;
1049
Rusty Russellf43798c2008-07-03 03:48:02 -07001050 if (gso.hdr_len > len)
1051 return -EINVAL;
Michael S. Tsirkind9d52b52010-03-17 17:45:01 +02001052 offset += tun->vnet_hdr_sz;
Rusty Russellf43798c2008-07-03 03:48:02 -07001053 }
1054
Rusty Russelle01bf1c2008-04-12 18:49:30 -07001055 if ((tun->flags & TUN_TYPE_MASK) == TUN_TAP_DEV) {
stephen hemmingera504b862011-06-08 14:33:07 +00001056 align += NET_IP_ALIGN;
Herbert Xu0eca93b2009-04-14 02:09:43 -07001057 if (unlikely(len < ETH_HLEN ||
1058 (gso.hdr_len && gso.hdr_len < ETH_HLEN)))
Rusty Russelle01bf1c2008-04-12 18:49:30 -07001059 return -EINVAL;
1060 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001061
Michael S. Tsirkin06908992012-07-20 09:23:23 +00001062 if (msg_control)
1063 zerocopy = true;
1064
1065 if (zerocopy) {
1066 /* Userspace may produce vectors with count greater than
1067 * MAX_SKB_FRAGS, so we need to linearize parts of the skb
1068 * to let the rest of data to be fit in the frags.
1069 */
1070 if (count > MAX_SKB_FRAGS) {
1071 copylen = iov_length(iv, count - MAX_SKB_FRAGS);
1072 if (copylen < offset)
1073 copylen = 0;
1074 else
1075 copylen -= offset;
1076 } else
1077 copylen = 0;
1078 /* There are 256 bytes to be copied in skb, so there is enough
1079 * room for skb expand head in case it is used.
1080 * The rest of the buffer is mapped from userspace.
1081 */
1082 if (copylen < gso.hdr_len)
1083 copylen = gso.hdr_len;
1084 if (!copylen)
1085 copylen = GOODCOPY_LEN;
1086 } else
1087 copylen = len;
1088
Jason Wang54f968d2012-10-31 19:45:57 +00001089 skb = tun_alloc_skb(tfile, align, copylen, gso.hdr_len, noblock);
Herbert Xu33dccbb2009-02-05 21:25:32 -08001090 if (IS_ERR(skb)) {
1091 if (PTR_ERR(skb) != -EAGAIN)
1092 tun->dev->stats.rx_dropped++;
1093 return PTR_ERR(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094 }
1095
Michael S. Tsirkin06908992012-07-20 09:23:23 +00001096 if (zerocopy)
1097 err = zerocopy_sg_from_iovec(skb, iv, offset, count);
1098 else
1099 err = skb_copy_datagram_from_iovec(skb, 0, iv, offset, len);
1100
1101 if (err) {
Jeff Garzik09f75cd2007-10-03 17:41:50 -07001102 tun->dev->stats.rx_dropped++;
Dave Jones8f227572006-03-11 18:49:13 -08001103 kfree_skb(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104 return -EFAULT;
Dave Jones8f227572006-03-11 18:49:13 -08001105 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106
Rusty Russellf43798c2008-07-03 03:48:02 -07001107 if (gso.flags & VIRTIO_NET_HDR_F_NEEDS_CSUM) {
1108 if (!skb_partial_csum_set(skb, gso.csum_start,
1109 gso.csum_offset)) {
1110 tun->dev->stats.rx_frame_errors++;
1111 kfree_skb(skb);
1112 return -EINVAL;
1113 }
Michał Mirosław88255372011-04-19 06:13:10 +00001114 }
Rusty Russellf43798c2008-07-03 03:48:02 -07001115
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116 switch (tun->flags & TUN_TYPE_MASK) {
1117 case TUN_TUN_DEV:
Ang Way Chuangf09f7ee2008-06-17 21:10:33 -07001118 if (tun->flags & TUN_NO_PI) {
1119 switch (skb->data[0] & 0xf0) {
1120 case 0x40:
1121 pi.proto = htons(ETH_P_IP);
1122 break;
1123 case 0x60:
1124 pi.proto = htons(ETH_P_IPV6);
1125 break;
1126 default:
1127 tun->dev->stats.rx_dropped++;
1128 kfree_skb(skb);
1129 return -EINVAL;
1130 }
1131 }
1132
Arnaldo Carvalho de Melo459a98e2007-03-19 15:30:44 -07001133 skb_reset_mac_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134 skb->protocol = pi.proto;
Arnaldo Carvalho de Melo4c13eb62007-04-25 17:40:23 -07001135 skb->dev = tun->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136 break;
1137 case TUN_TAP_DEV:
1138 skb->protocol = eth_type_trans(skb, tun->dev);
1139 break;
Joe Perches6403eab2011-06-03 11:51:20 +00001140 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001141
Rusty Russellf43798c2008-07-03 03:48:02 -07001142 if (gso.gso_type != VIRTIO_NET_HDR_GSO_NONE) {
1143 pr_debug("GSO!\n");
1144 switch (gso.gso_type & ~VIRTIO_NET_HDR_GSO_ECN) {
1145 case VIRTIO_NET_HDR_GSO_TCPV4:
1146 skb_shinfo(skb)->gso_type = SKB_GSO_TCPV4;
1147 break;
1148 case VIRTIO_NET_HDR_GSO_TCPV6:
1149 skb_shinfo(skb)->gso_type = SKB_GSO_TCPV6;
1150 break;
Sridhar Samudralae36aa252009-07-14 14:21:04 +00001151 case VIRTIO_NET_HDR_GSO_UDP:
1152 skb_shinfo(skb)->gso_type = SKB_GSO_UDP;
1153 break;
Rusty Russellf43798c2008-07-03 03:48:02 -07001154 default:
1155 tun->dev->stats.rx_frame_errors++;
1156 kfree_skb(skb);
1157 return -EINVAL;
1158 }
1159
1160 if (gso.gso_type & VIRTIO_NET_HDR_GSO_ECN)
1161 skb_shinfo(skb)->gso_type |= SKB_GSO_TCP_ECN;
1162
1163 skb_shinfo(skb)->gso_size = gso.gso_size;
1164 if (skb_shinfo(skb)->gso_size == 0) {
1165 tun->dev->stats.rx_frame_errors++;
1166 kfree_skb(skb);
1167 return -EINVAL;
1168 }
1169
1170 /* Header must be checked, and gso_segs computed. */
1171 skb_shinfo(skb)->gso_type |= SKB_GSO_DODGY;
1172 skb_shinfo(skb)->gso_segs = 0;
1173 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001174
Michael S. Tsirkin06908992012-07-20 09:23:23 +00001175 /* copy skb_ubuf_info for callback when skb has no error */
1176 if (zerocopy) {
1177 skb_shinfo(skb)->destructor_arg = msg_control;
1178 skb_shinfo(skb)->tx_flags |= SKBTX_DEV_ZEROCOPY;
1179 }
1180
Eric Dumazet76fe4582012-12-17 04:39:20 +00001181 skb_reset_network_header(skb);
Eric Dumazet49974422012-12-12 19:22:57 +00001182 rxhash = skb_get_rxhash(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183 netif_rx_ni(skb);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001184
Jeff Garzik09f75cd2007-10-03 17:41:50 -07001185 tun->dev->stats.rx_packets++;
1186 tun->dev->stats.rx_bytes += len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187
Eric Dumazet49974422012-12-12 19:22:57 +00001188 tun_flow_update(tun, rxhash, tfile->queue_index);
Michael S. Tsirkin06908992012-07-20 09:23:23 +00001189 return total_len;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001190}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191
Badari Pulavartyee0b3e62006-09-30 23:28:47 -07001192static ssize_t tun_chr_aio_write(struct kiocb *iocb, const struct iovec *iv,
1193 unsigned long count, loff_t pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194{
Herbert Xu33dccbb2009-02-05 21:25:32 -08001195 struct file *file = iocb->ki_filp;
Herbert Xuab46d772009-02-14 20:46:39 -08001196 struct tun_struct *tun = tun_get(file);
Jason Wang54f968d2012-10-31 19:45:57 +00001197 struct tun_file *tfile = file->private_data;
Eric W. Biederman631ab462009-01-20 11:00:40 +00001198 ssize_t result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199
1200 if (!tun)
1201 return -EBADFD;
1202
Joe Perches6b8a66e2011-03-02 07:18:10 +00001203 tun_debug(KERN_INFO, tun, "tun_chr_write %ld\n", count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204
Jason Wang54f968d2012-10-31 19:45:57 +00001205 result = tun_get_user(tun, tfile, NULL, iv, iov_length(iv, count),
1206 count, file->f_flags & O_NONBLOCK);
Eric W. Biederman631ab462009-01-20 11:00:40 +00001207
1208 tun_put(tun);
1209 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210}
1211
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212/* Put packet to the user space buffer */
stephen hemminger6f7c1562011-06-08 14:33:08 +00001213static ssize_t tun_put_user(struct tun_struct *tun,
Jason Wang54f968d2012-10-31 19:45:57 +00001214 struct tun_file *tfile,
stephen hemminger6f7c1562011-06-08 14:33:08 +00001215 struct sk_buff *skb,
1216 const struct iovec *iv, int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217{
1218 struct tun_pi pi = { 0, skb->protocol };
1219 ssize_t total = 0;
1220
1221 if (!(tun->flags & TUN_NO_PI)) {
1222 if ((len -= sizeof(pi)) < 0)
1223 return -EINVAL;
1224
1225 if (len < skb->len) {
1226 /* Packet will be striped */
1227 pi.flags |= TUN_PKT_STRIP;
1228 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001229
Michael S. Tsirkin43b39dc2009-04-20 01:25:59 +00001230 if (memcpy_toiovecend(iv, (void *) &pi, 0, sizeof(pi)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231 return -EFAULT;
1232 total += sizeof(pi);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001233 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234
Rusty Russellf43798c2008-07-03 03:48:02 -07001235 if (tun->flags & TUN_VNET_HDR) {
1236 struct virtio_net_hdr gso = { 0 }; /* no info leak */
Michael S. Tsirkind9d52b52010-03-17 17:45:01 +02001237 if ((len -= tun->vnet_hdr_sz) < 0)
Rusty Russellf43798c2008-07-03 03:48:02 -07001238 return -EINVAL;
1239
1240 if (skb_is_gso(skb)) {
1241 struct skb_shared_info *sinfo = skb_shinfo(skb);
1242
1243 /* This is a hint as to how much should be linear. */
1244 gso.hdr_len = skb_headlen(skb);
1245 gso.gso_size = sinfo->gso_size;
1246 if (sinfo->gso_type & SKB_GSO_TCPV4)
1247 gso.gso_type = VIRTIO_NET_HDR_GSO_TCPV4;
1248 else if (sinfo->gso_type & SKB_GSO_TCPV6)
1249 gso.gso_type = VIRTIO_NET_HDR_GSO_TCPV6;
Sridhar Samudralae36aa252009-07-14 14:21:04 +00001250 else if (sinfo->gso_type & SKB_GSO_UDP)
1251 gso.gso_type = VIRTIO_NET_HDR_GSO_UDP;
Michael S. Tsirkinef3db4a2010-07-21 04:32:45 +00001252 else {
Joe Perches6b8a66e2011-03-02 07:18:10 +00001253 pr_err("unexpected GSO type: "
Michael S. Tsirkinef3db4a2010-07-21 04:32:45 +00001254 "0x%x, gso_size %d, hdr_len %d\n",
1255 sinfo->gso_type, gso.gso_size,
1256 gso.hdr_len);
1257 print_hex_dump(KERN_ERR, "tun: ",
1258 DUMP_PREFIX_NONE,
1259 16, 1, skb->head,
1260 min((int)gso.hdr_len, 64), true);
1261 WARN_ON_ONCE(1);
1262 return -EINVAL;
1263 }
Rusty Russellf43798c2008-07-03 03:48:02 -07001264 if (sinfo->gso_type & SKB_GSO_TCP_ECN)
1265 gso.gso_type |= VIRTIO_NET_HDR_GSO_ECN;
1266 } else
1267 gso.gso_type = VIRTIO_NET_HDR_GSO_NONE;
1268
1269 if (skb->ip_summed == CHECKSUM_PARTIAL) {
1270 gso.flags = VIRTIO_NET_HDR_F_NEEDS_CSUM;
Michał Mirosław55508d62010-12-14 15:24:08 +00001271 gso.csum_start = skb_checksum_start_offset(skb);
Rusty Russellf43798c2008-07-03 03:48:02 -07001272 gso.csum_offset = skb->csum_offset;
Jason Wang10a8d942011-06-10 00:56:17 +00001273 } else if (skb->ip_summed == CHECKSUM_UNNECESSARY) {
1274 gso.flags = VIRTIO_NET_HDR_F_DATA_VALID;
Rusty Russellf43798c2008-07-03 03:48:02 -07001275 } /* else everything is zero */
1276
Michael S. Tsirkin43b39dc2009-04-20 01:25:59 +00001277 if (unlikely(memcpy_toiovecend(iv, (void *)&gso, total,
1278 sizeof(gso))))
Rusty Russellf43798c2008-07-03 03:48:02 -07001279 return -EFAULT;
Michael S. Tsirkind9d52b52010-03-17 17:45:01 +02001280 total += tun->vnet_hdr_sz;
Rusty Russellf43798c2008-07-03 03:48:02 -07001281 }
1282
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283 len = min_t(int, skb->len, len);
1284
Michael S. Tsirkin43b39dc2009-04-20 01:25:59 +00001285 skb_copy_datagram_const_iovec(skb, 0, iv, total, len);
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00001286 total += skb->len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287
Jeff Garzik09f75cd2007-10-03 17:41:50 -07001288 tun->dev->stats.tx_packets++;
1289 tun->dev->stats.tx_bytes += len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290
1291 return total;
1292}
1293
Jason Wang54f968d2012-10-31 19:45:57 +00001294static ssize_t tun_do_read(struct tun_struct *tun, struct tun_file *tfile,
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00001295 struct kiocb *iocb, const struct iovec *iv,
1296 ssize_t len, int noblock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298 DECLARE_WAITQUEUE(wait, current);
1299 struct sk_buff *skb;
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00001300 ssize_t ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001301
Rami Rosen3872baf2012-11-25 22:07:41 +00001302 tun_debug(KERN_INFO, tun, "tun_do_read\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303
Amos Kong61a5ff12011-06-09 00:27:10 -07001304 if (unlikely(!noblock))
Jason Wang54f968d2012-10-31 19:45:57 +00001305 add_wait_queue(&tfile->wq.wait, &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001306 while (len) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307 current->state = TASK_INTERRUPTIBLE;
1308
1309 /* Read frames from the queue */
Jason Wang54f968d2012-10-31 19:45:57 +00001310 if (!(skb = skb_dequeue(&tfile->socket.sk->sk_receive_queue))) {
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00001311 if (noblock) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001312 ret = -EAGAIN;
1313 break;
1314 }
1315 if (signal_pending(current)) {
1316 ret = -ERESTARTSYS;
1317 break;
1318 }
Eric W. Biedermanc70f1822009-01-20 11:07:17 +00001319 if (tun->dev->reg_state != NETREG_REGISTERED) {
1320 ret = -EIO;
1321 break;
1322 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323
1324 /* Nothing to read, let's sleep */
1325 schedule();
1326 continue;
1327 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328
Jason Wang54f968d2012-10-31 19:45:57 +00001329 ret = tun_put_user(tun, tfile, skb, iv, len);
Max Krasnyanskyf271b2c2008-07-14 22:18:19 -07001330 kfree_skb(skb);
1331 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332 }
1333
1334 current->state = TASK_RUNNING;
Amos Kong61a5ff12011-06-09 00:27:10 -07001335 if (unlikely(!noblock))
Jason Wang54f968d2012-10-31 19:45:57 +00001336 remove_wait_queue(&tfile->wq.wait, &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00001338 return ret;
1339}
1340
1341static ssize_t tun_chr_aio_read(struct kiocb *iocb, const struct iovec *iv,
1342 unsigned long count, loff_t pos)
1343{
1344 struct file *file = iocb->ki_filp;
1345 struct tun_file *tfile = file->private_data;
1346 struct tun_struct *tun = __tun_get(tfile);
1347 ssize_t len, ret;
1348
1349 if (!tun)
1350 return -EBADFD;
1351 len = iov_length(iv, count);
1352 if (len < 0) {
1353 ret = -EINVAL;
1354 goto out;
1355 }
1356
Jason Wang54f968d2012-10-31 19:45:57 +00001357 ret = tun_do_read(tun, tfile, iocb, iv, len,
1358 file->f_flags & O_NONBLOCK);
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00001359 ret = min_t(ssize_t, ret, len);
Eric W. Biederman631ab462009-01-20 11:00:40 +00001360out:
1361 tun_put(tun);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362 return ret;
1363}
1364
Jason Wang96442e422012-10-31 19:46:02 +00001365static void tun_free_netdev(struct net_device *dev)
1366{
1367 struct tun_struct *tun = netdev_priv(dev);
1368
Jason Wang4008e972012-12-13 23:53:30 +00001369 BUG_ON(!(list_empty(&tun->disabled)));
Jason Wang96442e422012-10-31 19:46:02 +00001370 tun_flow_uninit(tun);
1371 free_netdev(dev);
1372}
1373
Linus Torvalds1da177e2005-04-16 15:20:36 -07001374static void tun_setup(struct net_device *dev)
1375{
1376 struct tun_struct *tun = netdev_priv(dev);
1377
Eric W. Biederman0625c882012-02-07 16:48:55 -08001378 tun->owner = INVALID_UID;
1379 tun->group = INVALID_GID;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380
Linus Torvalds1da177e2005-04-16 15:20:36 -07001381 dev->ethtool_ops = &tun_ethtool_ops;
Jason Wang96442e422012-10-31 19:46:02 +00001382 dev->destructor = tun_free_netdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383}
1384
Eric W. Biedermanf019a7a2009-01-21 16:02:16 -08001385/* Trivial set of netlink ops to allow deleting tun or tap
1386 * device with netlink.
1387 */
1388static int tun_validate(struct nlattr *tb[], struct nlattr *data[])
1389{
1390 return -EINVAL;
1391}
1392
1393static struct rtnl_link_ops tun_link_ops __read_mostly = {
1394 .kind = DRV_NAME,
1395 .priv_size = sizeof(struct tun_struct),
1396 .setup = tun_setup,
1397 .validate = tun_validate,
1398};
1399
Herbert Xu33dccbb2009-02-05 21:25:32 -08001400static void tun_sock_write_space(struct sock *sk)
1401{
Jason Wang54f968d2012-10-31 19:45:57 +00001402 struct tun_file *tfile;
Eric Dumazet43815482010-04-29 11:01:49 +00001403 wait_queue_head_t *wqueue;
Herbert Xu33dccbb2009-02-05 21:25:32 -08001404
1405 if (!sock_writeable(sk))
1406 return;
1407
Herbert Xu33dccbb2009-02-05 21:25:32 -08001408 if (!test_and_clear_bit(SOCK_ASYNC_NOSPACE, &sk->sk_socket->flags))
1409 return;
1410
Eric Dumazet43815482010-04-29 11:01:49 +00001411 wqueue = sk_sleep(sk);
1412 if (wqueue && waitqueue_active(wqueue))
1413 wake_up_interruptible_sync_poll(wqueue, POLLOUT |
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00001414 POLLWRNORM | POLLWRBAND);
Herbert Xuc722c622009-06-03 21:45:55 -07001415
Jason Wang54f968d2012-10-31 19:45:57 +00001416 tfile = container_of(sk, struct tun_file, sk);
1417 kill_fasync(&tfile->fasync, SIGIO, POLL_OUT);
Herbert Xu33dccbb2009-02-05 21:25:32 -08001418}
1419
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00001420static int tun_sendmsg(struct kiocb *iocb, struct socket *sock,
1421 struct msghdr *m, size_t total_len)
1422{
Jason Wang54f968d2012-10-31 19:45:57 +00001423 int ret;
1424 struct tun_file *tfile = container_of(sock, struct tun_file, socket);
1425 struct tun_struct *tun = __tun_get(tfile);
1426
1427 if (!tun)
1428 return -EBADFD;
Jason Wang54f968d2012-10-31 19:45:57 +00001429 ret = tun_get_user(tun, tfile, m->msg_control, m->msg_iov, total_len,
1430 m->msg_iovlen, m->msg_flags & MSG_DONTWAIT);
1431 tun_put(tun);
1432 return ret;
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00001433}
1434
Jason Wang54f968d2012-10-31 19:45:57 +00001435
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00001436static int tun_recvmsg(struct kiocb *iocb, struct socket *sock,
1437 struct msghdr *m, size_t total_len,
1438 int flags)
1439{
Jason Wang54f968d2012-10-31 19:45:57 +00001440 struct tun_file *tfile = container_of(sock, struct tun_file, socket);
1441 struct tun_struct *tun = __tun_get(tfile);
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00001442 int ret;
Jason Wang54f968d2012-10-31 19:45:57 +00001443
1444 if (!tun)
1445 return -EBADFD;
1446
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00001447 if (flags & ~(MSG_DONTWAIT|MSG_TRUNC))
1448 return -EINVAL;
Jason Wang54f968d2012-10-31 19:45:57 +00001449 ret = tun_do_read(tun, tfile, iocb, m->msg_iov, total_len,
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00001450 flags & MSG_DONTWAIT);
1451 if (ret > total_len) {
1452 m->msg_flags |= MSG_TRUNC;
1453 ret = flags & MSG_TRUNC ? ret : total_len;
1454 }
Jason Wang54f968d2012-10-31 19:45:57 +00001455 tun_put(tun);
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00001456 return ret;
1457}
1458
Stanislav Kinsbursky1ab5ecb2012-03-12 02:59:41 +00001459static int tun_release(struct socket *sock)
1460{
1461 if (sock->sk)
1462 sock_put(sock->sk);
1463 return 0;
1464}
1465
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00001466/* Ops structure to mimic raw sockets with tun */
1467static const struct proto_ops tun_socket_ops = {
1468 .sendmsg = tun_sendmsg,
1469 .recvmsg = tun_recvmsg,
Stanislav Kinsbursky1ab5ecb2012-03-12 02:59:41 +00001470 .release = tun_release,
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00001471};
1472
Herbert Xu33dccbb2009-02-05 21:25:32 -08001473static struct proto tun_proto = {
1474 .name = "tun",
1475 .owner = THIS_MODULE,
Jason Wang54f968d2012-10-31 19:45:57 +00001476 .obj_size = sizeof(struct tun_file),
Herbert Xu33dccbb2009-02-05 21:25:32 -08001477};
Eric W. Biedermanf019a7a2009-01-21 16:02:16 -08001478
David Woodhouse980c9e82009-05-09 22:54:21 -07001479static int tun_flags(struct tun_struct *tun)
1480{
1481 int flags = 0;
1482
1483 if (tun->flags & TUN_TUN_DEV)
1484 flags |= IFF_TUN;
1485 else
1486 flags |= IFF_TAP;
1487
1488 if (tun->flags & TUN_NO_PI)
1489 flags |= IFF_NO_PI;
1490
Michael S. Tsirkin5d097102012-12-03 10:07:14 +00001491 /* This flag has no real effect. We track the value for backwards
1492 * compatibility.
1493 */
David Woodhouse980c9e82009-05-09 22:54:21 -07001494 if (tun->flags & TUN_ONE_QUEUE)
1495 flags |= IFF_ONE_QUEUE;
1496
1497 if (tun->flags & TUN_VNET_HDR)
1498 flags |= IFF_VNET_HDR;
1499
Jason Wangc8d68e62012-10-31 19:46:00 +00001500 if (tun->flags & TUN_TAP_MQ)
1501 flags |= IFF_MULTI_QUEUE;
1502
David Woodhouse980c9e82009-05-09 22:54:21 -07001503 return flags;
1504}
1505
1506static ssize_t tun_show_flags(struct device *dev, struct device_attribute *attr,
1507 char *buf)
1508{
1509 struct tun_struct *tun = netdev_priv(to_net_dev(dev));
1510 return sprintf(buf, "0x%x\n", tun_flags(tun));
1511}
1512
1513static ssize_t tun_show_owner(struct device *dev, struct device_attribute *attr,
1514 char *buf)
1515{
1516 struct tun_struct *tun = netdev_priv(to_net_dev(dev));
Eric W. Biederman0625c882012-02-07 16:48:55 -08001517 return uid_valid(tun->owner)?
1518 sprintf(buf, "%u\n",
1519 from_kuid_munged(current_user_ns(), tun->owner)):
1520 sprintf(buf, "-1\n");
David Woodhouse980c9e82009-05-09 22:54:21 -07001521}
1522
1523static ssize_t tun_show_group(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 gid_valid(tun->group) ?
1528 sprintf(buf, "%u\n",
1529 from_kgid_munged(current_user_ns(), tun->group)):
1530 sprintf(buf, "-1\n");
David Woodhouse980c9e82009-05-09 22:54:21 -07001531}
1532
1533static DEVICE_ATTR(tun_flags, 0444, tun_show_flags, NULL);
1534static DEVICE_ATTR(owner, 0444, tun_show_owner, NULL);
1535static DEVICE_ATTR(group, 0444, tun_show_group, NULL);
1536
Pavel Emelyanovd647a592008-04-16 00:41:16 -07001537static int tun_set_iff(struct net *net, struct file *file, struct ifreq *ifr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538{
1539 struct tun_struct *tun;
Jason Wang54f968d2012-10-31 19:45:57 +00001540 struct tun_file *tfile = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001541 struct net_device *dev;
1542 int err;
1543
Jason Wang7c0c3b12013-01-11 16:59:33 +00001544 if (tfile->detached)
1545 return -EINVAL;
1546
Eric W. Biederman74a3e5a2009-01-20 10:56:20 +00001547 dev = __dev_get_by_name(net, ifr->ifr_name);
1548 if (dev) {
David Woodhousef85ba782009-04-27 03:23:54 -07001549 if (ifr->ifr_flags & IFF_TUN_EXCL)
1550 return -EBUSY;
Eric W. Biederman74a3e5a2009-01-20 10:56:20 +00001551 if ((ifr->ifr_flags & IFF_TUN) && dev->netdev_ops == &tun_netdev_ops)
1552 tun = netdev_priv(dev);
1553 else if ((ifr->ifr_flags & IFF_TAP) && dev->netdev_ops == &tap_netdev_ops)
1554 tun = netdev_priv(dev);
1555 else
1556 return -EINVAL;
1557
Jason Wangcde8b152012-10-31 19:46:01 +00001558 if (tun_not_capable(tun))
Paul Moore2b980db2009-08-28 18:12:43 -04001559 return -EPERM;
Jason Wang54f968d2012-10-31 19:45:57 +00001560 err = security_tun_dev_attach(tfile->socket.sk);
Paul Moore2b980db2009-08-28 18:12:43 -04001561 if (err < 0)
1562 return err;
1563
Eric W. Biedermana7385ba2009-01-20 10:57:48 +00001564 err = tun_attach(tun, file);
1565 if (err < 0)
1566 return err;
Jason Wang4008e972012-12-13 23:53:30 +00001567
1568 if (tun->flags & TUN_TAP_MQ &&
1569 (tun->numqueues + tun->numdisabled > 1))
1570 return err;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001571 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001572 else {
1573 char *name;
1574 unsigned long flags = 0;
1575
Eric W. Biedermanc260b772012-11-18 21:34:11 +00001576 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
David Woodhouseca6bb5d2006-06-22 16:07:52 -07001577 return -EPERM;
Paul Moore2b980db2009-08-28 18:12:43 -04001578 err = security_tun_dev_create();
1579 if (err < 0)
1580 return err;
David Woodhouseca6bb5d2006-06-22 16:07:52 -07001581
Linus Torvalds1da177e2005-04-16 15:20:36 -07001582 /* Set dev type */
1583 if (ifr->ifr_flags & IFF_TUN) {
1584 /* TUN device */
1585 flags |= TUN_TUN_DEV;
1586 name = "tun%d";
1587 } else if (ifr->ifr_flags & IFF_TAP) {
1588 /* TAP device */
1589 flags |= TUN_TAP_DEV;
1590 name = "tap%d";
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001591 } else
Kusanagi Kouichi36989b92009-09-16 21:36:13 +00001592 return -EINVAL;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001593
Linus Torvalds1da177e2005-04-16 15:20:36 -07001594 if (*ifr->ifr_name)
1595 name = ifr->ifr_name;
1596
Jason Wangc8d68e62012-10-31 19:46:00 +00001597 dev = alloc_netdev_mqs(sizeof(struct tun_struct), name,
1598 tun_setup,
1599 MAX_TAP_QUEUES, MAX_TAP_QUEUES);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001600 if (!dev)
1601 return -ENOMEM;
1602
Pavel Emelyanovfc54c652008-04-16 00:41:53 -07001603 dev_net_set(dev, net);
Eric W. Biedermanf019a7a2009-01-21 16:02:16 -08001604 dev->rtnl_link_ops = &tun_link_ops;
Stephen Hemminger758e43b2008-11-19 22:10:37 -08001605
Linus Torvalds1da177e2005-04-16 15:20:36 -07001606 tun = netdev_priv(dev);
1607 tun->dev = dev;
1608 tun->flags = flags;
Max Krasnyanskyf271b2c2008-07-14 22:18:19 -07001609 tun->txflt.count = 0;
Michael S. Tsirkind9d52b52010-03-17 17:45:01 +02001610 tun->vnet_hdr_sz = sizeof(struct virtio_net_hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001611
Jason Wang54f968d2012-10-31 19:45:57 +00001612 tun->filter_attached = false;
1613 tun->sndbuf = tfile->socket.sk->sk_sndbuf;
Herbert Xu33dccbb2009-02-05 21:25:32 -08001614
Jason Wang96442e422012-10-31 19:46:02 +00001615 spin_lock_init(&tun->lock);
1616
Jason Wang54f968d2012-10-31 19:45:57 +00001617 security_tun_dev_post_create(&tfile->sk);
Paul Moore2b980db2009-08-28 18:12:43 -04001618
Linus Torvalds1da177e2005-04-16 15:20:36 -07001619 tun_net_init(dev);
1620
Paul Mooreb3943ae2012-12-06 05:48:38 +00001621 err = tun_flow_init(tun);
1622 if (err < 0)
Jason Wang96442e422012-10-31 19:46:02 +00001623 goto err_free_dev;
1624
Michał Mirosław88255372011-04-19 06:13:10 +00001625 dev->hw_features = NETIF_F_SG | NETIF_F_FRAGLIST |
1626 TUN_USER_FEATURES;
1627 dev->features = dev->hw_features;
1628
Jason Wang4008e972012-12-13 23:53:30 +00001629 INIT_LIST_HEAD(&tun->disabled);
Jason Wangeb0fb362012-12-02 17:19:45 +00001630 err = tun_attach(tun, file);
1631 if (err < 0)
1632 goto err_free_dev;
1633
Linus Torvalds1da177e2005-04-16 15:20:36 -07001634 err = register_netdevice(tun->dev);
1635 if (err < 0)
Jason Wang54f968d2012-10-31 19:45:57 +00001636 goto err_free_dev;
Herbert Xu9c3fea62009-04-18 14:15:52 +00001637
David Woodhouse980c9e82009-05-09 22:54:21 -07001638 if (device_create_file(&tun->dev->dev, &dev_attr_tun_flags) ||
1639 device_create_file(&tun->dev->dev, &dev_attr_owner) ||
1640 device_create_file(&tun->dev->dev, &dev_attr_group))
Joe Perches6b8a66e2011-03-02 07:18:10 +00001641 pr_err("Failed to create tun sysfs files\n");
David Woodhouse980c9e82009-05-09 22:54:21 -07001642
Jason Wangeb0fb362012-12-02 17:19:45 +00001643 netif_carrier_on(tun->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001644 }
1645
Joe Perches6b8a66e2011-03-02 07:18:10 +00001646 tun_debug(KERN_INFO, tun, "tun_set_iff\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001647
1648 if (ifr->ifr_flags & IFF_NO_PI)
1649 tun->flags |= TUN_NO_PI;
Nathaniel Filardoa26af1e2008-02-05 03:05:07 -08001650 else
1651 tun->flags &= ~TUN_NO_PI;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001652
Michael S. Tsirkin5d097102012-12-03 10:07:14 +00001653 /* This flag has no real effect. We track the value for backwards
1654 * compatibility.
1655 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001656 if (ifr->ifr_flags & IFF_ONE_QUEUE)
1657 tun->flags |= TUN_ONE_QUEUE;
Nathaniel Filardoa26af1e2008-02-05 03:05:07 -08001658 else
1659 tun->flags &= ~TUN_ONE_QUEUE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001660
Rusty Russellf43798c2008-07-03 03:48:02 -07001661 if (ifr->ifr_flags & IFF_VNET_HDR)
1662 tun->flags |= TUN_VNET_HDR;
1663 else
1664 tun->flags &= ~TUN_VNET_HDR;
1665
Jason Wangc8d68e62012-10-31 19:46:00 +00001666 if (ifr->ifr_flags & IFF_MULTI_QUEUE)
1667 tun->flags |= TUN_TAP_MQ;
1668 else
1669 tun->flags &= ~TUN_TAP_MQ;
1670
Max Krasnyanskye35259a2008-07-10 16:59:11 -07001671 /* Make sure persistent devices do not get stuck in
1672 * xoff state.
1673 */
1674 if (netif_running(tun->dev))
Jason Wangc8d68e62012-10-31 19:46:00 +00001675 netif_tx_wake_all_queues(tun->dev);
Max Krasnyanskye35259a2008-07-10 16:59:11 -07001676
Linus Torvalds1da177e2005-04-16 15:20:36 -07001677 strcpy(ifr->ifr_name, tun->dev->name);
1678 return 0;
1679
1680 err_free_dev:
1681 free_netdev(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001682 return err;
1683}
1684
Rami Rosen9ce99cf2012-11-23 03:58:10 +00001685static void tun_get_iff(struct net *net, struct tun_struct *tun,
Herbert Xu876bfd42009-08-06 14:22:44 +00001686 struct ifreq *ifr)
Mark McLoughline3b99552008-08-15 15:09:56 -07001687{
Joe Perches6b8a66e2011-03-02 07:18:10 +00001688 tun_debug(KERN_INFO, tun, "tun_get_iff\n");
Mark McLoughline3b99552008-08-15 15:09:56 -07001689
1690 strcpy(ifr->ifr_name, tun->dev->name);
1691
David Woodhouse980c9e82009-05-09 22:54:21 -07001692 ifr->ifr_flags = tun_flags(tun);
Mark McLoughline3b99552008-08-15 15:09:56 -07001693
Mark McLoughline3b99552008-08-15 15:09:56 -07001694}
1695
Rusty Russell5228ddc2008-07-03 03:46:16 -07001696/* This is like a cut-down ethtool ops, except done via tun fd so no
1697 * privs required. */
Michał Mirosław88255372011-04-19 06:13:10 +00001698static int set_offload(struct tun_struct *tun, unsigned long arg)
Rusty Russell5228ddc2008-07-03 03:46:16 -07001699{
Michał Mirosławc8f44af2011-11-15 15:29:55 +00001700 netdev_features_t features = 0;
Rusty Russell5228ddc2008-07-03 03:46:16 -07001701
1702 if (arg & TUN_F_CSUM) {
Michał Mirosław88255372011-04-19 06:13:10 +00001703 features |= NETIF_F_HW_CSUM;
Rusty Russell5228ddc2008-07-03 03:46:16 -07001704 arg &= ~TUN_F_CSUM;
1705
1706 if (arg & (TUN_F_TSO4|TUN_F_TSO6)) {
1707 if (arg & TUN_F_TSO_ECN) {
1708 features |= NETIF_F_TSO_ECN;
1709 arg &= ~TUN_F_TSO_ECN;
1710 }
1711 if (arg & TUN_F_TSO4)
1712 features |= NETIF_F_TSO;
1713 if (arg & TUN_F_TSO6)
1714 features |= NETIF_F_TSO6;
1715 arg &= ~(TUN_F_TSO4|TUN_F_TSO6);
1716 }
Sridhar Samudralae36aa252009-07-14 14:21:04 +00001717
1718 if (arg & TUN_F_UFO) {
1719 features |= NETIF_F_UFO;
1720 arg &= ~TUN_F_UFO;
1721 }
Rusty Russell5228ddc2008-07-03 03:46:16 -07001722 }
1723
1724 /* This gives the user a way to test for new features in future by
1725 * trying to set them. */
1726 if (arg)
1727 return -EINVAL;
1728
Michał Mirosław88255372011-04-19 06:13:10 +00001729 tun->set_features = features;
1730 netdev_update_features(tun->dev);
Rusty Russell5228ddc2008-07-03 03:46:16 -07001731
1732 return 0;
1733}
1734
Jason Wangc8d68e62012-10-31 19:46:00 +00001735static void tun_detach_filter(struct tun_struct *tun, int n)
1736{
1737 int i;
1738 struct tun_file *tfile;
1739
1740 for (i = 0; i < n; i++) {
Jason Wangb8deabd2013-01-11 16:59:32 +00001741 tfile = rtnl_dereference(tun->tfiles[i]);
Jason Wangc8d68e62012-10-31 19:46:00 +00001742 sk_detach_filter(tfile->socket.sk);
1743 }
1744
1745 tun->filter_attached = false;
1746}
1747
1748static int tun_attach_filter(struct tun_struct *tun)
1749{
1750 int i, ret = 0;
1751 struct tun_file *tfile;
1752
1753 for (i = 0; i < tun->numqueues; i++) {
Jason Wangb8deabd2013-01-11 16:59:32 +00001754 tfile = rtnl_dereference(tun->tfiles[i]);
Jason Wangc8d68e62012-10-31 19:46:00 +00001755 ret = sk_attach_filter(&tun->fprog, tfile->socket.sk);
1756 if (ret) {
1757 tun_detach_filter(tun, i);
1758 return ret;
1759 }
1760 }
1761
1762 tun->filter_attached = true;
1763 return ret;
1764}
1765
1766static void tun_set_sndbuf(struct tun_struct *tun)
1767{
1768 struct tun_file *tfile;
1769 int i;
1770
1771 for (i = 0; i < tun->numqueues; i++) {
Jason Wangb8deabd2013-01-11 16:59:32 +00001772 tfile = rtnl_dereference(tun->tfiles[i]);
Jason Wangc8d68e62012-10-31 19:46:00 +00001773 tfile->socket.sk->sk_sndbuf = tun->sndbuf;
1774 }
1775}
1776
Jason Wangcde8b152012-10-31 19:46:01 +00001777static int tun_set_queue(struct file *file, struct ifreq *ifr)
1778{
1779 struct tun_file *tfile = file->private_data;
1780 struct tun_struct *tun;
Jason Wangcde8b152012-10-31 19:46:01 +00001781 int ret = 0;
1782
1783 rtnl_lock();
1784
1785 if (ifr->ifr_flags & IFF_ATTACH_QUEUE) {
Jason Wang4008e972012-12-13 23:53:30 +00001786 tun = tfile->detached;
1787 if (!tun)
Jason Wangcde8b152012-10-31 19:46:01 +00001788 ret = -EINVAL;
Jason Wangcde8b152012-10-31 19:46:01 +00001789 else
1790 ret = tun_attach(tun, file);
Jason Wang4008e972012-12-13 23:53:30 +00001791 } else if (ifr->ifr_flags & IFF_DETACH_QUEUE) {
Jason Wangb8deabd2013-01-11 16:59:32 +00001792 tun = rtnl_dereference(tfile->tun);
Jason Wang4008e972012-12-13 23:53:30 +00001793 if (!tun || !(tun->flags & TUN_TAP_MQ))
1794 ret = -EINVAL;
1795 else
1796 __tun_detach(tfile, false);
1797 } else
Jason Wangcde8b152012-10-31 19:46:01 +00001798 ret = -EINVAL;
1799
Jason Wangcde8b152012-10-31 19:46:01 +00001800 rtnl_unlock();
1801 return ret;
1802}
1803
Arnd Bergmann50857e22009-11-06 22:52:32 -08001804static long __tun_chr_ioctl(struct file *file, unsigned int cmd,
1805 unsigned long arg, int ifreq_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001806{
Eric W. Biederman36b50ba2009-01-20 11:01:48 +00001807 struct tun_file *tfile = file->private_data;
Eric W. Biederman631ab462009-01-20 11:00:40 +00001808 struct tun_struct *tun;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001809 void __user* argp = (void __user*)arg;
1810 struct ifreq ifr;
Eric W. Biederman0625c882012-02-07 16:48:55 -08001811 kuid_t owner;
1812 kgid_t group;
Herbert Xu33dccbb2009-02-05 21:25:32 -08001813 int sndbuf;
Michael S. Tsirkind9d52b52010-03-17 17:45:01 +02001814 int vnet_hdr_sz;
Max Krasnyanskyf271b2c2008-07-14 22:18:19 -07001815 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001816
Jason Wangcde8b152012-10-31 19:46:01 +00001817 if (cmd == TUNSETIFF || cmd == TUNSETQUEUE || _IOC_TYPE(cmd) == 0x89) {
Arnd Bergmann50857e22009-11-06 22:52:32 -08001818 if (copy_from_user(&ifr, argp, ifreq_len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001819 return -EFAULT;
David S. Miller8bbb1812012-07-30 14:52:48 -07001820 } else {
Mathias Krausea117dac2012-07-29 19:45:14 +00001821 memset(&ifr, 0, sizeof(ifr));
David S. Miller8bbb1812012-07-30 14:52:48 -07001822 }
Eric W. Biederman631ab462009-01-20 11:00:40 +00001823 if (cmd == TUNGETFEATURES) {
1824 /* Currently this just means: "what IFF flags are valid?".
1825 * This is needed because we never checked for invalid flags on
1826 * TUNSETIFF. */
1827 return put_user(IFF_TUN | IFF_TAP | IFF_NO_PI | IFF_ONE_QUEUE |
Jason Wangcde8b152012-10-31 19:46:01 +00001828 IFF_VNET_HDR | IFF_MULTI_QUEUE,
Eric W. Biederman631ab462009-01-20 11:00:40 +00001829 (unsigned int __user*)argp);
Jason Wangcde8b152012-10-31 19:46:01 +00001830 } else if (cmd == TUNSETQUEUE)
1831 return tun_set_queue(file, &ifr);
Eric W. Biederman631ab462009-01-20 11:00:40 +00001832
Jason Wangc8d68e62012-10-31 19:46:00 +00001833 ret = 0;
Herbert Xu876bfd42009-08-06 14:22:44 +00001834 rtnl_lock();
1835
Eric W. Biederman36b50ba2009-01-20 11:01:48 +00001836 tun = __tun_get(tfile);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001837 if (cmd == TUNSETIFF && !tun) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001838 ifr.ifr_name[IFNAMSIZ-1] = '\0';
1839
Herbert Xu876bfd42009-08-06 14:22:44 +00001840 ret = tun_set_iff(tfile->net, file, &ifr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001841
Herbert Xu876bfd42009-08-06 14:22:44 +00001842 if (ret)
1843 goto unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001844
Arnd Bergmann50857e22009-11-06 22:52:32 -08001845 if (copy_to_user(argp, &ifr, ifreq_len))
Herbert Xu876bfd42009-08-06 14:22:44 +00001846 ret = -EFAULT;
1847 goto unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001848 }
1849
Herbert Xu876bfd42009-08-06 14:22:44 +00001850 ret = -EBADFD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001851 if (!tun)
Herbert Xu876bfd42009-08-06 14:22:44 +00001852 goto unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001853
Jason Wang1e588332012-10-31 19:45:56 +00001854 tun_debug(KERN_INFO, tun, "tun_chr_ioctl cmd %u\n", cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001855
Eric W. Biederman631ab462009-01-20 11:00:40 +00001856 ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001857 switch (cmd) {
Mark McLoughline3b99552008-08-15 15:09:56 -07001858 case TUNGETIFF:
Rami Rosen9ce99cf2012-11-23 03:58:10 +00001859 tun_get_iff(current->nsproxy->net_ns, tun, &ifr);
Mark McLoughline3b99552008-08-15 15:09:56 -07001860
Arnd Bergmann50857e22009-11-06 22:52:32 -08001861 if (copy_to_user(argp, &ifr, ifreq_len))
Eric W. Biederman631ab462009-01-20 11:00:40 +00001862 ret = -EFAULT;
Mark McLoughline3b99552008-08-15 15:09:56 -07001863 break;
1864
Linus Torvalds1da177e2005-04-16 15:20:36 -07001865 case TUNSETNOCSUM:
1866 /* Disable/Enable checksum */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001867
Michał Mirosław88255372011-04-19 06:13:10 +00001868 /* [unimplemented] */
1869 tun_debug(KERN_INFO, tun, "ignored: set checksum %s\n",
Joe Perches6b8a66e2011-03-02 07:18:10 +00001870 arg ? "disabled" : "enabled");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001871 break;
1872
1873 case TUNSETPERSIST:
Jason Wang54f968d2012-10-31 19:45:57 +00001874 /* Disable/Enable persist mode. Keep an extra reference to the
1875 * module to prevent the module being unprobed.
1876 */
1877 if (arg) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001878 tun->flags |= TUN_PERSIST;
Jason Wang54f968d2012-10-31 19:45:57 +00001879 __module_get(THIS_MODULE);
1880 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001881 tun->flags &= ~TUN_PERSIST;
Jason Wang54f968d2012-10-31 19:45:57 +00001882 module_put(THIS_MODULE);
1883 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001884
Joe Perches6b8a66e2011-03-02 07:18:10 +00001885 tun_debug(KERN_INFO, tun, "persist %s\n",
1886 arg ? "enabled" : "disabled");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001887 break;
1888
1889 case TUNSETOWNER:
1890 /* Set owner of the device */
Eric W. Biederman0625c882012-02-07 16:48:55 -08001891 owner = make_kuid(current_user_ns(), arg);
1892 if (!uid_valid(owner)) {
1893 ret = -EINVAL;
1894 break;
1895 }
1896 tun->owner = owner;
Jason Wang1e588332012-10-31 19:45:56 +00001897 tun_debug(KERN_INFO, tun, "owner set to %u\n",
Eric W. Biederman0625c882012-02-07 16:48:55 -08001898 from_kuid(&init_user_ns, tun->owner));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001899 break;
1900
Guido Guenther8c644622007-07-02 22:50:25 -07001901 case TUNSETGROUP:
1902 /* Set group of the device */
Eric W. Biederman0625c882012-02-07 16:48:55 -08001903 group = make_kgid(current_user_ns(), arg);
1904 if (!gid_valid(group)) {
1905 ret = -EINVAL;
1906 break;
1907 }
1908 tun->group = group;
Jason Wang1e588332012-10-31 19:45:56 +00001909 tun_debug(KERN_INFO, tun, "group set to %u\n",
Eric W. Biederman0625c882012-02-07 16:48:55 -08001910 from_kgid(&init_user_ns, tun->group));
Guido Guenther8c644622007-07-02 22:50:25 -07001911 break;
1912
Mike Kershawff4cc3a2005-09-01 17:40:05 -07001913 case TUNSETLINK:
1914 /* Only allow setting the type when the interface is down */
1915 if (tun->dev->flags & IFF_UP) {
Joe Perches6b8a66e2011-03-02 07:18:10 +00001916 tun_debug(KERN_INFO, tun,
1917 "Linktype set failed because interface is up\n");
David S. Miller48abfe02008-04-23 19:37:58 -07001918 ret = -EBUSY;
Mike Kershawff4cc3a2005-09-01 17:40:05 -07001919 } else {
1920 tun->dev->type = (int) arg;
Joe Perches6b8a66e2011-03-02 07:18:10 +00001921 tun_debug(KERN_INFO, tun, "linktype set to %d\n",
1922 tun->dev->type);
David S. Miller48abfe02008-04-23 19:37:58 -07001923 ret = 0;
Mike Kershawff4cc3a2005-09-01 17:40:05 -07001924 }
Eric W. Biederman631ab462009-01-20 11:00:40 +00001925 break;
Mike Kershawff4cc3a2005-09-01 17:40:05 -07001926
Linus Torvalds1da177e2005-04-16 15:20:36 -07001927#ifdef TUN_DEBUG
1928 case TUNSETDEBUG:
1929 tun->debug = arg;
1930 break;
1931#endif
Rusty Russell5228ddc2008-07-03 03:46:16 -07001932 case TUNSETOFFLOAD:
Michał Mirosław88255372011-04-19 06:13:10 +00001933 ret = set_offload(tun, arg);
Eric W. Biederman631ab462009-01-20 11:00:40 +00001934 break;
Rusty Russell5228ddc2008-07-03 03:46:16 -07001935
Max Krasnyanskyf271b2c2008-07-14 22:18:19 -07001936 case TUNSETTXFILTER:
1937 /* Can be set only for TAPs */
Eric W. Biederman631ab462009-01-20 11:00:40 +00001938 ret = -EINVAL;
Max Krasnyanskyf271b2c2008-07-14 22:18:19 -07001939 if ((tun->flags & TUN_TYPE_MASK) != TUN_TAP_DEV)
Eric W. Biederman631ab462009-01-20 11:00:40 +00001940 break;
Harvey Harrisonc0e5a8c2008-07-16 12:45:34 -07001941 ret = update_filter(&tun->txflt, (void __user *)arg);
Eric W. Biederman631ab462009-01-20 11:00:40 +00001942 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001943
1944 case SIOCGIFHWADDR:
Uwe Kleine-Königb5950762010-11-01 15:38:34 -04001945 /* Get hw address */
Max Krasnyanskyf271b2c2008-07-14 22:18:19 -07001946 memcpy(ifr.ifr_hwaddr.sa_data, tun->dev->dev_addr, ETH_ALEN);
1947 ifr.ifr_hwaddr.sa_family = tun->dev->type;
Arnd Bergmann50857e22009-11-06 22:52:32 -08001948 if (copy_to_user(argp, &ifr, ifreq_len))
Eric W. Biederman631ab462009-01-20 11:00:40 +00001949 ret = -EFAULT;
1950 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001951
1952 case SIOCSIFHWADDR:
Max Krasnyanskyf271b2c2008-07-14 22:18:19 -07001953 /* Set hw address */
Joe Perches6b8a66e2011-03-02 07:18:10 +00001954 tun_debug(KERN_DEBUG, tun, "set hw address: %pM\n",
1955 ifr.ifr_hwaddr.sa_data);
Kim B. Heino40102372008-02-29 12:26:21 -08001956
Kim B. Heino40102372008-02-29 12:26:21 -08001957 ret = dev_set_mac_address(tun->dev, &ifr.ifr_hwaddr);
Eric W. Biederman631ab462009-01-20 11:00:40 +00001958 break;
Herbert Xu33dccbb2009-02-05 21:25:32 -08001959
1960 case TUNGETSNDBUF:
Jason Wang54f968d2012-10-31 19:45:57 +00001961 sndbuf = tfile->socket.sk->sk_sndbuf;
Herbert Xu33dccbb2009-02-05 21:25:32 -08001962 if (copy_to_user(argp, &sndbuf, sizeof(sndbuf)))
1963 ret = -EFAULT;
1964 break;
1965
1966 case TUNSETSNDBUF:
1967 if (copy_from_user(&sndbuf, argp, sizeof(sndbuf))) {
1968 ret = -EFAULT;
1969 break;
1970 }
1971
Jason Wangc8d68e62012-10-31 19:46:00 +00001972 tun->sndbuf = sndbuf;
1973 tun_set_sndbuf(tun);
Herbert Xu33dccbb2009-02-05 21:25:32 -08001974 break;
1975
Michael S. Tsirkind9d52b52010-03-17 17:45:01 +02001976 case TUNGETVNETHDRSZ:
1977 vnet_hdr_sz = tun->vnet_hdr_sz;
1978 if (copy_to_user(argp, &vnet_hdr_sz, sizeof(vnet_hdr_sz)))
1979 ret = -EFAULT;
1980 break;
1981
1982 case TUNSETVNETHDRSZ:
1983 if (copy_from_user(&vnet_hdr_sz, argp, sizeof(vnet_hdr_sz))) {
1984 ret = -EFAULT;
1985 break;
1986 }
1987 if (vnet_hdr_sz < (int)sizeof(struct virtio_net_hdr)) {
1988 ret = -EINVAL;
1989 break;
1990 }
1991
1992 tun->vnet_hdr_sz = vnet_hdr_sz;
1993 break;
1994
Michael S. Tsirkin99405162010-02-14 01:01:10 +00001995 case TUNATTACHFILTER:
1996 /* Can be set only for TAPs */
1997 ret = -EINVAL;
1998 if ((tun->flags & TUN_TYPE_MASK) != TUN_TAP_DEV)
1999 break;
2000 ret = -EFAULT;
Jason Wang54f968d2012-10-31 19:45:57 +00002001 if (copy_from_user(&tun->fprog, argp, sizeof(tun->fprog)))
Michael S. Tsirkin99405162010-02-14 01:01:10 +00002002 break;
2003
Jason Wangc8d68e62012-10-31 19:46:00 +00002004 ret = tun_attach_filter(tun);
Michael S. Tsirkin99405162010-02-14 01:01:10 +00002005 break;
2006
2007 case TUNDETACHFILTER:
2008 /* Can be set only for TAPs */
2009 ret = -EINVAL;
2010 if ((tun->flags & TUN_TYPE_MASK) != TUN_TAP_DEV)
2011 break;
Jason Wangc8d68e62012-10-31 19:46:00 +00002012 ret = 0;
2013 tun_detach_filter(tun, tun->numqueues);
Michael S. Tsirkin99405162010-02-14 01:01:10 +00002014 break;
2015
Linus Torvalds1da177e2005-04-16 15:20:36 -07002016 default:
Eric W. Biederman631ab462009-01-20 11:00:40 +00002017 ret = -EINVAL;
2018 break;
Joe Perchesee289b62010-05-17 22:47:34 -07002019 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002020
Herbert Xu876bfd42009-08-06 14:22:44 +00002021unlock:
2022 rtnl_unlock();
2023 if (tun)
2024 tun_put(tun);
Eric W. Biederman631ab462009-01-20 11:00:40 +00002025 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002026}
2027
Arnd Bergmann50857e22009-11-06 22:52:32 -08002028static long tun_chr_ioctl(struct file *file,
2029 unsigned int cmd, unsigned long arg)
2030{
2031 return __tun_chr_ioctl(file, cmd, arg, sizeof (struct ifreq));
2032}
2033
2034#ifdef CONFIG_COMPAT
2035static long tun_chr_compat_ioctl(struct file *file,
2036 unsigned int cmd, unsigned long arg)
2037{
2038 switch (cmd) {
2039 case TUNSETIFF:
2040 case TUNGETIFF:
2041 case TUNSETTXFILTER:
2042 case TUNGETSNDBUF:
2043 case TUNSETSNDBUF:
2044 case SIOCGIFHWADDR:
2045 case SIOCSIFHWADDR:
2046 arg = (unsigned long)compat_ptr(arg);
2047 break;
2048 default:
2049 arg = (compat_ulong_t)arg;
2050 break;
2051 }
2052
2053 /*
2054 * compat_ifreq is shorter than ifreq, so we must not access beyond
2055 * the end of that structure. All fields that are used in this
2056 * driver are compatible though, we don't need to convert the
2057 * contents.
2058 */
2059 return __tun_chr_ioctl(file, cmd, arg, sizeof(struct compat_ifreq));
2060}
2061#endif /* CONFIG_COMPAT */
2062
Linus Torvalds1da177e2005-04-16 15:20:36 -07002063static int tun_chr_fasync(int fd, struct file *file, int on)
2064{
Jason Wang54f968d2012-10-31 19:45:57 +00002065 struct tun_file *tfile = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002066 int ret;
2067
Jason Wang54f968d2012-10-31 19:45:57 +00002068 if ((ret = fasync_helper(fd, file, on, &tfile->fasync)) < 0)
Jonathan Corbet9d319522008-06-19 15:50:37 -06002069 goto out;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002070
Linus Torvalds1da177e2005-04-16 15:20:36 -07002071 if (on) {
Eric W. Biederman609d7fa2006-10-02 02:17:15 -07002072 ret = __f_setown(file, task_pid(current), PIDTYPE_PID, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002073 if (ret)
Jonathan Corbet9d319522008-06-19 15:50:37 -06002074 goto out;
Jason Wang54f968d2012-10-31 19:45:57 +00002075 tfile->flags |= TUN_FASYNC;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002076 } else
Jason Wang54f968d2012-10-31 19:45:57 +00002077 tfile->flags &= ~TUN_FASYNC;
Jonathan Corbet9d319522008-06-19 15:50:37 -06002078 ret = 0;
2079out:
Jonathan Corbet9d319522008-06-19 15:50:37 -06002080 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002081}
2082
2083static int tun_chr_open(struct inode *inode, struct file * file)
2084{
Eric W. Biederman631ab462009-01-20 11:00:40 +00002085 struct tun_file *tfile;
Thomas Gleixnerdeed49f2009-10-14 01:19:46 -07002086
Joe Perches6b8a66e2011-03-02 07:18:10 +00002087 DBG1(KERN_INFO, "tunX: tun_chr_open\n");
Eric W. Biederman631ab462009-01-20 11:00:40 +00002088
Jason Wang54f968d2012-10-31 19:45:57 +00002089 tfile = (struct tun_file *)sk_alloc(&init_net, AF_UNSPEC, GFP_KERNEL,
2090 &tun_proto);
Eric W. Biederman631ab462009-01-20 11:00:40 +00002091 if (!tfile)
2092 return -ENOMEM;
Jason Wang6e914fc2012-10-31 19:45:58 +00002093 rcu_assign_pointer(tfile->tun, NULL);
Eric W. Biederman36b50ba2009-01-20 11:01:48 +00002094 tfile->net = get_net(current->nsproxy->net_ns);
Jason Wang54f968d2012-10-31 19:45:57 +00002095 tfile->flags = 0;
2096
2097 rcu_assign_pointer(tfile->socket.wq, &tfile->wq);
2098 init_waitqueue_head(&tfile->wq.wait);
2099
2100 tfile->socket.file = file;
2101 tfile->socket.ops = &tun_socket_ops;
2102
2103 sock_init_data(&tfile->socket, &tfile->sk);
2104 sk_change_net(&tfile->sk, tfile->net);
2105
2106 tfile->sk.sk_write_space = tun_sock_write_space;
2107 tfile->sk.sk_sndbuf = INT_MAX;
2108
Eric W. Biederman631ab462009-01-20 11:00:40 +00002109 file->private_data = tfile;
Jason Wang54f968d2012-10-31 19:45:57 +00002110 set_bit(SOCK_EXTERNALLY_ALLOCATED, &tfile->socket.flags);
Jason Wang4008e972012-12-13 23:53:30 +00002111 INIT_LIST_HEAD(&tfile->next);
Jason Wang54f968d2012-10-31 19:45:57 +00002112
Linus Torvalds1da177e2005-04-16 15:20:36 -07002113 return 0;
2114}
2115
2116static int tun_chr_close(struct inode *inode, struct file *file)
2117{
Eric W. Biederman631ab462009-01-20 11:00:40 +00002118 struct tun_file *tfile = file->private_data;
Jason Wang54f968d2012-10-31 19:45:57 +00002119 struct net *net = tfile->net;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002120
Jason Wangc8d68e62012-10-31 19:46:00 +00002121 tun_detach(tfile, true);
Jason Wang54f968d2012-10-31 19:45:57 +00002122 put_net(net);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002123
2124 return 0;
2125}
2126
Arjan van de Vend54b1fd2007-02-12 00:55:34 -08002127static const struct file_operations tun_fops = {
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002128 .owner = THIS_MODULE,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002129 .llseek = no_llseek,
Badari Pulavartyee0b3e62006-09-30 23:28:47 -07002130 .read = do_sync_read,
2131 .aio_read = tun_chr_aio_read,
2132 .write = do_sync_write,
2133 .aio_write = tun_chr_aio_write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002134 .poll = tun_chr_poll,
Arnd Bergmann50857e22009-11-06 22:52:32 -08002135 .unlocked_ioctl = tun_chr_ioctl,
2136#ifdef CONFIG_COMPAT
2137 .compat_ioctl = tun_chr_compat_ioctl,
2138#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002139 .open = tun_chr_open,
2140 .release = tun_chr_close,
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002141 .fasync = tun_chr_fasync
Linus Torvalds1da177e2005-04-16 15:20:36 -07002142};
2143
2144static struct miscdevice tun_miscdev = {
2145 .minor = TUN_MINOR,
2146 .name = "tun",
Kay Sieverse454cea2009-09-18 23:01:12 +02002147 .nodename = "net/tun",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002148 .fops = &tun_fops,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002149};
2150
2151/* ethtool interface */
2152
2153static int tun_get_settings(struct net_device *dev, struct ethtool_cmd *cmd)
2154{
2155 cmd->supported = 0;
2156 cmd->advertising = 0;
David Decotigny70739492011-04-27 18:32:40 +00002157 ethtool_cmd_speed_set(cmd, SPEED_10);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002158 cmd->duplex = DUPLEX_FULL;
2159 cmd->port = PORT_TP;
2160 cmd->phy_address = 0;
2161 cmd->transceiver = XCVR_INTERNAL;
2162 cmd->autoneg = AUTONEG_DISABLE;
2163 cmd->maxtxpkt = 0;
2164 cmd->maxrxpkt = 0;
2165 return 0;
2166}
2167
2168static void tun_get_drvinfo(struct net_device *dev, struct ethtool_drvinfo *info)
2169{
2170 struct tun_struct *tun = netdev_priv(dev);
2171
Rick Jones33a5ba12011-11-15 14:59:53 +00002172 strlcpy(info->driver, DRV_NAME, sizeof(info->driver));
2173 strlcpy(info->version, DRV_VERSION, sizeof(info->version));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002174
2175 switch (tun->flags & TUN_TYPE_MASK) {
2176 case TUN_TUN_DEV:
Rick Jones33a5ba12011-11-15 14:59:53 +00002177 strlcpy(info->bus_info, "tun", sizeof(info->bus_info));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002178 break;
2179 case TUN_TAP_DEV:
Rick Jones33a5ba12011-11-15 14:59:53 +00002180 strlcpy(info->bus_info, "tap", sizeof(info->bus_info));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002181 break;
2182 }
2183}
2184
2185static u32 tun_get_msglevel(struct net_device *dev)
2186{
2187#ifdef TUN_DEBUG
2188 struct tun_struct *tun = netdev_priv(dev);
2189 return tun->debug;
2190#else
2191 return -EOPNOTSUPP;
2192#endif
2193}
2194
2195static void tun_set_msglevel(struct net_device *dev, u32 value)
2196{
2197#ifdef TUN_DEBUG
2198 struct tun_struct *tun = netdev_priv(dev);
2199 tun->debug = value;
2200#endif
2201}
2202
Jeff Garzik7282d492006-09-13 14:30:00 -04002203static const struct ethtool_ops tun_ethtool_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002204 .get_settings = tun_get_settings,
2205 .get_drvinfo = tun_get_drvinfo,
2206 .get_msglevel = tun_get_msglevel,
2207 .set_msglevel = tun_set_msglevel,
Nolan Leakebee31362010-07-27 13:53:43 +00002208 .get_link = ethtool_op_get_link,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002209};
2210
Pavel Emelyanov79d17602008-04-16 00:40:46 -07002211
Linus Torvalds1da177e2005-04-16 15:20:36 -07002212static int __init tun_init(void)
2213{
2214 int ret = 0;
2215
Joe Perches6b8a66e2011-03-02 07:18:10 +00002216 pr_info("%s, %s\n", DRV_DESCRIPTION, DRV_VERSION);
2217 pr_info("%s\n", DRV_COPYRIGHT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002218
Eric W. Biedermanf019a7a2009-01-21 16:02:16 -08002219 ret = rtnl_link_register(&tun_link_ops);
Pavel Emelyanov79d17602008-04-16 00:40:46 -07002220 if (ret) {
Joe Perches6b8a66e2011-03-02 07:18:10 +00002221 pr_err("Can't register link_ops\n");
Eric W. Biedermanf019a7a2009-01-21 16:02:16 -08002222 goto err_linkops;
Pavel Emelyanov79d17602008-04-16 00:40:46 -07002223 }
2224
Linus Torvalds1da177e2005-04-16 15:20:36 -07002225 ret = misc_register(&tun_miscdev);
Pavel Emelyanov79d17602008-04-16 00:40:46 -07002226 if (ret) {
Joe Perches6b8a66e2011-03-02 07:18:10 +00002227 pr_err("Can't register misc device %d\n", TUN_MINOR);
Pavel Emelyanov79d17602008-04-16 00:40:46 -07002228 goto err_misc;
2229 }
Eric W. Biedermanf019a7a2009-01-21 16:02:16 -08002230 return 0;
Pavel Emelyanov79d17602008-04-16 00:40:46 -07002231err_misc:
Eric W. Biedermanf019a7a2009-01-21 16:02:16 -08002232 rtnl_link_unregister(&tun_link_ops);
2233err_linkops:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002234 return ret;
2235}
2236
2237static void tun_cleanup(void)
2238{
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002239 misc_deregister(&tun_miscdev);
Eric W. Biedermanf019a7a2009-01-21 16:02:16 -08002240 rtnl_link_unregister(&tun_link_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002241}
2242
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00002243/* Get an underlying socket object from tun file. Returns error unless file is
2244 * attached to a device. The returned object works like a packet socket, it
2245 * can be used for sock_sendmsg/sock_recvmsg. The caller is responsible for
2246 * holding a reference to the file for as long as the socket is in use. */
2247struct socket *tun_get_socket(struct file *file)
2248{
Jason Wang6e914fc2012-10-31 19:45:58 +00002249 struct tun_file *tfile;
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00002250 if (file->f_op != &tun_fops)
2251 return ERR_PTR(-EINVAL);
Jason Wang6e914fc2012-10-31 19:45:58 +00002252 tfile = file->private_data;
2253 if (!tfile)
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00002254 return ERR_PTR(-EBADFD);
Jason Wang54f968d2012-10-31 19:45:57 +00002255 return &tfile->socket;
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00002256}
2257EXPORT_SYMBOL_GPL(tun_get_socket);
2258
Linus Torvalds1da177e2005-04-16 15:20:36 -07002259module_init(tun_init);
2260module_exit(tun_cleanup);
2261MODULE_DESCRIPTION(DRV_DESCRIPTION);
2262MODULE_AUTHOR(DRV_COPYRIGHT);
2263MODULE_LICENSE("GPL");
2264MODULE_ALIAS_MISCDEV(TUN_MINOR);
Kay Sievers578454f2010-05-20 18:07:20 +02002265MODULE_ALIAS("devname:net/tun");