blob: aa963c44450a7e866eaa1c0670dcf36c5f3c147b [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;
Stefan Hajnoczi6e331f42013-01-09 21:59:48 +0000491 if (tfile->detached && tun != tfile->detached)
492 goto out;
Eric W. Biederman38231b72009-01-20 11:02:28 +0000493
494 err = -EBUSY;
Jason Wangc8d68e62012-10-31 19:46:00 +0000495 if (!(tun->flags & TUN_TAP_MQ) && tun->numqueues == 1)
496 goto out;
497
498 err = -E2BIG;
Jason Wang4008e972012-12-13 23:53:30 +0000499 if (!tfile->detached &&
500 tun->numqueues + tun->numdisabled == MAX_TAP_QUEUES)
Eric W. Biederman38231b72009-01-20 11:02:28 +0000501 goto out;
502
503 err = 0;
Jason Wang54f968d2012-10-31 19:45:57 +0000504
Jason Wangc8d68e62012-10-31 19:46:00 +0000505 /* Re-attach the filter to presist device */
Jason Wang54f968d2012-10-31 19:45:57 +0000506 if (tun->filter_attached == true) {
507 err = sk_attach_filter(&tun->fprog, tfile->socket.sk);
508 if (!err)
509 goto out;
510 }
Jason Wangc8d68e62012-10-31 19:46:00 +0000511 tfile->queue_index = tun->numqueues;
Jason Wang6e914fc2012-10-31 19:45:58 +0000512 rcu_assign_pointer(tfile->tun, tun);
Jason Wangc8d68e62012-10-31 19:46:00 +0000513 rcu_assign_pointer(tun->tfiles[tun->numqueues], tfile);
Jason Wangc8d68e62012-10-31 19:46:00 +0000514 tun->numqueues++;
515
Jason Wang4008e972012-12-13 23:53:30 +0000516 if (tfile->detached)
517 tun_enable_queue(tfile);
518 else
519 sock_hold(&tfile->sk);
520
Jason Wangc8d68e62012-10-31 19:46:00 +0000521 tun_set_real_num_queues(tun);
522
Jason Wangc8d68e62012-10-31 19:46:00 +0000523 /* device is allowed to go away first, so no need to hold extra
524 * refcnt.
525 */
Eric W. Biedermana7385ba2009-01-20 10:57:48 +0000526
Eric W. Biederman38231b72009-01-20 11:02:28 +0000527out:
Eric W. Biederman38231b72009-01-20 11:02:28 +0000528 return err;
Eric W. Biedermana7385ba2009-01-20 10:57:48 +0000529}
530
Eric W. Biederman631ab462009-01-20 11:00:40 +0000531static struct tun_struct *__tun_get(struct tun_file *tfile)
532{
Jason Wang6e914fc2012-10-31 19:45:58 +0000533 struct tun_struct *tun;
Eric W. Biedermanc70f1822009-01-20 11:07:17 +0000534
Jason Wang6e914fc2012-10-31 19:45:58 +0000535 rcu_read_lock();
536 tun = rcu_dereference(tfile->tun);
537 if (tun)
538 dev_hold(tun->dev);
539 rcu_read_unlock();
Eric W. Biedermanc70f1822009-01-20 11:07:17 +0000540
541 return tun;
Eric W. Biederman631ab462009-01-20 11:00:40 +0000542}
543
544static struct tun_struct *tun_get(struct file *file)
545{
546 return __tun_get(file->private_data);
547}
548
549static void tun_put(struct tun_struct *tun)
550{
Jason Wang6e914fc2012-10-31 19:45:58 +0000551 dev_put(tun->dev);
Eric W. Biederman631ab462009-01-20 11:00:40 +0000552}
553
Joe Perches6b8a66e2011-03-02 07:18:10 +0000554/* TAP filtering */
Max Krasnyanskyf271b2c2008-07-14 22:18:19 -0700555static void addr_hash_set(u32 *mask, const u8 *addr)
556{
557 int n = ether_crc(ETH_ALEN, addr) >> 26;
558 mask[n >> 5] |= (1 << (n & 31));
559}
560
561static unsigned int addr_hash_test(const u32 *mask, const u8 *addr)
562{
563 int n = ether_crc(ETH_ALEN, addr) >> 26;
564 return mask[n >> 5] & (1 << (n & 31));
565}
566
567static int update_filter(struct tap_filter *filter, void __user *arg)
568{
569 struct { u8 u[ETH_ALEN]; } *addr;
570 struct tun_filter uf;
571 int err, alen, n, nexact;
572
573 if (copy_from_user(&uf, arg, sizeof(uf)))
574 return -EFAULT;
575
576 if (!uf.count) {
577 /* Disabled */
578 filter->count = 0;
579 return 0;
580 }
581
582 alen = ETH_ALEN * uf.count;
583 addr = kmalloc(alen, GFP_KERNEL);
584 if (!addr)
585 return -ENOMEM;
586
587 if (copy_from_user(addr, arg + sizeof(uf), alen)) {
588 err = -EFAULT;
589 goto done;
590 }
591
592 /* The filter is updated without holding any locks. Which is
593 * perfectly safe. We disable it first and in the worst
594 * case we'll accept a few undesired packets. */
595 filter->count = 0;
596 wmb();
597
598 /* Use first set of addresses as an exact filter */
599 for (n = 0; n < uf.count && n < FLT_EXACT_COUNT; n++)
600 memcpy(filter->addr[n], addr[n].u, ETH_ALEN);
601
602 nexact = n;
603
Alex Williamsoncfbf84f2009-02-08 17:49:17 -0800604 /* Remaining multicast addresses are hashed,
605 * unicast will leave the filter disabled. */
Max Krasnyanskyf271b2c2008-07-14 22:18:19 -0700606 memset(filter->mask, 0, sizeof(filter->mask));
Alex Williamsoncfbf84f2009-02-08 17:49:17 -0800607 for (; n < uf.count; n++) {
608 if (!is_multicast_ether_addr(addr[n].u)) {
609 err = 0; /* no filter */
610 goto done;
611 }
Max Krasnyanskyf271b2c2008-07-14 22:18:19 -0700612 addr_hash_set(filter->mask, addr[n].u);
Alex Williamsoncfbf84f2009-02-08 17:49:17 -0800613 }
Max Krasnyanskyf271b2c2008-07-14 22:18:19 -0700614
615 /* For ALLMULTI just set the mask to all ones.
616 * This overrides the mask populated above. */
617 if ((uf.flags & TUN_FLT_ALLMULTI))
618 memset(filter->mask, ~0, sizeof(filter->mask));
619
620 /* Now enable the filter */
621 wmb();
622 filter->count = nexact;
623
624 /* Return the number of exact filters */
625 err = nexact;
626
627done:
628 kfree(addr);
629 return err;
630}
631
632/* Returns: 0 - drop, !=0 - accept */
633static int run_filter(struct tap_filter *filter, const struct sk_buff *skb)
634{
635 /* Cannot use eth_hdr(skb) here because skb_mac_hdr() is incorrect
636 * at this point. */
637 struct ethhdr *eh = (struct ethhdr *) skb->data;
638 int i;
639
640 /* Exact match */
641 for (i = 0; i < filter->count; i++)
Joe Perches2e42e472012-05-09 17:17:46 +0000642 if (ether_addr_equal(eh->h_dest, filter->addr[i]))
Max Krasnyanskyf271b2c2008-07-14 22:18:19 -0700643 return 1;
644
645 /* Inexact match (multicast only) */
646 if (is_multicast_ether_addr(eh->h_dest))
647 return addr_hash_test(filter->mask, eh->h_dest);
648
649 return 0;
650}
651
652/*
653 * Checks whether the packet is accepted or not.
654 * Returns: 0 - drop, !=0 - accept
655 */
656static int check_filter(struct tap_filter *filter, const struct sk_buff *skb)
657{
658 if (!filter->count)
659 return 1;
660
661 return run_filter(filter, skb);
662}
663
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664/* Network device part of the driver */
665
Jeff Garzik7282d492006-09-13 14:30:00 -0400666static const struct ethtool_ops tun_ethtool_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667
Eric W. Biedermanc70f1822009-01-20 11:07:17 +0000668/* Net device detach from fd. */
669static void tun_net_uninit(struct net_device *dev)
670{
Jason Wangc8d68e62012-10-31 19:46:00 +0000671 tun_detach_all(dev);
Eric W. Biedermanc70f1822009-01-20 11:07:17 +0000672}
673
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674/* Net device open. */
675static int tun_net_open(struct net_device *dev)
676{
Jason Wangc8d68e62012-10-31 19:46:00 +0000677 netif_tx_start_all_queues(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678 return 0;
679}
680
681/* Net device close. */
682static int tun_net_close(struct net_device *dev)
683{
Jason Wangc8d68e62012-10-31 19:46:00 +0000684 netif_tx_stop_all_queues(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685 return 0;
686}
687
688/* Net device start xmit */
Stephen Hemminger424efe92009-08-31 19:50:51 +0000689static netdev_tx_t tun_net_xmit(struct sk_buff *skb, struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690{
691 struct tun_struct *tun = netdev_priv(dev);
Jason Wangc8d68e62012-10-31 19:46:00 +0000692 int txq = skb->queue_mapping;
Jason Wang6e914fc2012-10-31 19:45:58 +0000693 struct tun_file *tfile;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694
Jason Wang6e914fc2012-10-31 19:45:58 +0000695 rcu_read_lock();
Jason Wangc8d68e62012-10-31 19:46:00 +0000696 tfile = rcu_dereference(tun->tfiles[txq]);
697
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698 /* Drop packet if interface is not attached */
Jason Wangc8d68e62012-10-31 19:46:00 +0000699 if (txq >= tun->numqueues)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700 goto drop;
701
Jason Wang6e914fc2012-10-31 19:45:58 +0000702 tun_debug(KERN_INFO, tun, "tun_net_xmit %d\n", skb->len);
703
Jason Wangc8d68e62012-10-31 19:46:00 +0000704 BUG_ON(!tfile);
705
Max Krasnyanskyf271b2c2008-07-14 22:18:19 -0700706 /* Drop if the filter does not like it.
707 * This is a noop if the filter is disabled.
708 * Filter can be enabled only for the TAP devices. */
709 if (!check_filter(&tun->txflt, skb))
710 goto drop;
711
Jason Wang54f968d2012-10-31 19:45:57 +0000712 if (tfile->socket.sk->sk_filter &&
713 sk_filter(tfile->socket.sk, skb))
Michael S. Tsirkin99405162010-02-14 01:01:10 +0000714 goto drop;
715
Rami Rosen36fe8c092012-11-25 22:07:40 +0000716 /* Limit the number of packets queued by dividing txq length with the
Jason Wangc8d68e62012-10-31 19:46:00 +0000717 * number of queues.
718 */
Jason Wang54f968d2012-10-31 19:45:57 +0000719 if (skb_queue_len(&tfile->socket.sk->sk_receive_queue)
Michael S. Tsirkin5d097102012-12-03 10:07:14 +0000720 >= dev->tx_queue_len / tun->numqueues)
721 goto drop;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722
Michael S. Tsirkin0110d6f2010-04-13 04:59:44 +0000723 /* Orphan the skb - required as we might hang on to it
724 * for indefinite time. */
Michael S. Tsirkin868eefe2012-07-20 09:23:14 +0000725 if (unlikely(skb_orphan_frags(skb, GFP_ATOMIC)))
726 goto drop;
Michael S. Tsirkin0110d6f2010-04-13 04:59:44 +0000727 skb_orphan(skb);
728
Max Krasnyanskyf271b2c2008-07-14 22:18:19 -0700729 /* Enqueue packet */
Jason Wang54f968d2012-10-31 19:45:57 +0000730 skb_queue_tail(&tfile->socket.sk->sk_receive_queue, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731
732 /* Notify and wake up reader process */
Jason Wang54f968d2012-10-31 19:45:57 +0000733 if (tfile->flags & TUN_FASYNC)
734 kill_fasync(&tfile->fasync, SIGIO, POLL_IN);
735 wake_up_interruptible_poll(&tfile->wq.wait, POLLIN |
Michael S. Tsirkin05c28282010-01-14 06:17:09 +0000736 POLLRDNORM | POLLRDBAND);
Jason Wang6e914fc2012-10-31 19:45:58 +0000737
738 rcu_read_unlock();
Patrick McHardy6ed10652009-06-23 06:03:08 +0000739 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740
741drop:
Jeff Garzik09f75cd2007-10-03 17:41:50 -0700742 dev->stats.tx_dropped++;
Michael S. Tsirkin149d36f2012-11-01 09:16:32 +0000743 skb_tx_error(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744 kfree_skb(skb);
Jason Wang6e914fc2012-10-31 19:45:58 +0000745 rcu_read_unlock();
Patrick McHardy6ed10652009-06-23 06:03:08 +0000746 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747}
748
Max Krasnyanskyf271b2c2008-07-14 22:18:19 -0700749static void tun_net_mclist(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750{
Max Krasnyanskyf271b2c2008-07-14 22:18:19 -0700751 /*
752 * This callback is supposed to deal with mc filter in
753 * _rx_ path and has nothing to do with the _tx_ path.
754 * In rx path we always accept everything userspace gives us.
755 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756}
757
Ed Swierk4885a502007-09-16 12:21:38 -0700758#define MIN_MTU 68
759#define MAX_MTU 65535
760
761static int
762tun_net_change_mtu(struct net_device *dev, int new_mtu)
763{
764 if (new_mtu < MIN_MTU || new_mtu + dev->hard_header_len > MAX_MTU)
765 return -EINVAL;
766 dev->mtu = new_mtu;
767 return 0;
768}
769
Michał Mirosławc8f44af2011-11-15 15:29:55 +0000770static netdev_features_t tun_net_fix_features(struct net_device *dev,
771 netdev_features_t features)
Michał Mirosław88255372011-04-19 06:13:10 +0000772{
773 struct tun_struct *tun = netdev_priv(dev);
774
775 return (features & tun->set_features) | (features & ~TUN_USER_FEATURES);
776}
Neil Hormanbebd0972011-06-15 05:25:01 +0000777#ifdef CONFIG_NET_POLL_CONTROLLER
778static void tun_poll_controller(struct net_device *dev)
779{
780 /*
781 * Tun only receives frames when:
782 * 1) the char device endpoint gets data from user space
783 * 2) the tun socket gets a sendmsg call from user space
784 * Since both of those are syncronous operations, we are guaranteed
785 * never to have pending data when we poll for it
786 * so theres nothing to do here but return.
787 * We need this though so netpoll recognizes us as an interface that
788 * supports polling, which enables bridge devices in virt setups to
789 * still use netconsole
790 */
791 return;
792}
793#endif
Stephen Hemminger758e43b2008-11-19 22:10:37 -0800794static const struct net_device_ops tun_netdev_ops = {
Eric W. Biedermanc70f1822009-01-20 11:07:17 +0000795 .ndo_uninit = tun_net_uninit,
Stephen Hemminger758e43b2008-11-19 22:10:37 -0800796 .ndo_open = tun_net_open,
797 .ndo_stop = tun_net_close,
Stephen Hemminger00829822008-11-20 20:14:53 -0800798 .ndo_start_xmit = tun_net_xmit,
Stephen Hemminger758e43b2008-11-19 22:10:37 -0800799 .ndo_change_mtu = tun_net_change_mtu,
Michał Mirosław88255372011-04-19 06:13:10 +0000800 .ndo_fix_features = tun_net_fix_features,
Jason Wangc8d68e62012-10-31 19:46:00 +0000801 .ndo_select_queue = tun_select_queue,
Neil Hormanbebd0972011-06-15 05:25:01 +0000802#ifdef CONFIG_NET_POLL_CONTROLLER
803 .ndo_poll_controller = tun_poll_controller,
804#endif
Stephen Hemminger758e43b2008-11-19 22:10:37 -0800805};
806
807static const struct net_device_ops tap_netdev_ops = {
Eric W. Biedermanc70f1822009-01-20 11:07:17 +0000808 .ndo_uninit = tun_net_uninit,
Stephen Hemminger758e43b2008-11-19 22:10:37 -0800809 .ndo_open = tun_net_open,
810 .ndo_stop = tun_net_close,
Stephen Hemminger00829822008-11-20 20:14:53 -0800811 .ndo_start_xmit = tun_net_xmit,
Stephen Hemminger758e43b2008-11-19 22:10:37 -0800812 .ndo_change_mtu = tun_net_change_mtu,
Michał Mirosław88255372011-04-19 06:13:10 +0000813 .ndo_fix_features = tun_net_fix_features,
Jiri Pirkoafc4b132011-08-16 06:29:01 +0000814 .ndo_set_rx_mode = tun_net_mclist,
Stephen Hemminger758e43b2008-11-19 22:10:37 -0800815 .ndo_set_mac_address = eth_mac_addr,
816 .ndo_validate_addr = eth_validate_addr,
Jason Wangc8d68e62012-10-31 19:46:00 +0000817 .ndo_select_queue = tun_select_queue,
Neil Hormanbebd0972011-06-15 05:25:01 +0000818#ifdef CONFIG_NET_POLL_CONTROLLER
819 .ndo_poll_controller = tun_poll_controller,
820#endif
Stephen Hemminger758e43b2008-11-19 22:10:37 -0800821};
822
Jason Wang96442e422012-10-31 19:46:02 +0000823static int tun_flow_init(struct tun_struct *tun)
824{
825 int i;
826
Jason Wang96442e422012-10-31 19:46:02 +0000827 for (i = 0; i < TUN_NUM_FLOW_ENTRIES; i++)
828 INIT_HLIST_HEAD(&tun->flows[i]);
829
830 tun->ageing_time = TUN_FLOW_EXPIRE;
831 setup_timer(&tun->flow_gc_timer, tun_flow_cleanup, (unsigned long)tun);
832 mod_timer(&tun->flow_gc_timer,
833 round_jiffies_up(jiffies + tun->ageing_time));
834
835 return 0;
836}
837
838static void tun_flow_uninit(struct tun_struct *tun)
839{
840 del_timer_sync(&tun->flow_gc_timer);
841 tun_flow_flush(tun);
Jason Wang96442e422012-10-31 19:46:02 +0000842}
843
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844/* Initialize net device. */
845static void tun_net_init(struct net_device *dev)
846{
847 struct tun_struct *tun = netdev_priv(dev);
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400848
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849 switch (tun->flags & TUN_TYPE_MASK) {
850 case TUN_TUN_DEV:
Stephen Hemminger758e43b2008-11-19 22:10:37 -0800851 dev->netdev_ops = &tun_netdev_ops;
852
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853 /* Point-to-Point TUN Device */
854 dev->hard_header_len = 0;
855 dev->addr_len = 0;
856 dev->mtu = 1500;
857
858 /* Zero header length */
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400859 dev->type = ARPHRD_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860 dev->flags = IFF_POINTOPOINT | IFF_NOARP | IFF_MULTICAST;
861 dev->tx_queue_len = TUN_READQ_SIZE; /* We prefer our own queue length */
862 break;
863
864 case TUN_TAP_DEV:
Kusanagi Kouichi7a0a9602008-12-29 18:23:28 -0800865 dev->netdev_ops = &tap_netdev_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866 /* Ethernet TAP Device */
Max Krasnyanskyf271b2c2008-07-14 22:18:19 -0700867 ether_setup(dev);
Neil Horman550fd082011-07-26 06:05:38 +0000868 dev->priv_flags &= ~IFF_TX_SKB_SHARING;
stephen hemmingera6768472012-12-10 15:16:00 +0000869 dev->priv_flags |= IFF_LIVE_ADDR_CHANGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870
Danny Kukawkaf2cedb62012-02-15 06:45:39 +0000871 eth_hw_addr_random(dev);
Brian Braunstein36226a82007-04-26 01:00:55 -0700872
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873 dev->tx_queue_len = TUN_READQ_SIZE; /* We prefer our own queue length */
874 break;
875 }
876}
877
878/* Character device part */
879
880/* Poll */
Jason Wangc8d68e62012-10-31 19:46:00 +0000881static unsigned int tun_chr_poll(struct file *file, poll_table *wait)
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400882{
Eric W. Biedermanb2430de2009-01-20 11:03:21 +0000883 struct tun_file *tfile = file->private_data;
884 struct tun_struct *tun = __tun_get(tfile);
Mariusz Kozlowski3c8a9c62009-07-05 19:48:35 +0000885 struct sock *sk;
Herbert Xu33dccbb2009-02-05 21:25:32 -0800886 unsigned int mask = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887
888 if (!tun)
Eric W. Biedermaneac9e902009-01-20 10:59:05 +0000889 return POLLERR;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890
Jason Wang54f968d2012-10-31 19:45:57 +0000891 sk = tfile->socket.sk;
Mariusz Kozlowski3c8a9c62009-07-05 19:48:35 +0000892
Joe Perches6b8a66e2011-03-02 07:18:10 +0000893 tun_debug(KERN_INFO, tun, "tun_chr_poll\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894
Jason Wang54f968d2012-10-31 19:45:57 +0000895 poll_wait(file, &tfile->wq.wait, wait);
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400896
Michael S. Tsirkin89f56d12009-08-30 07:04:42 +0000897 if (!skb_queue_empty(&sk->sk_receive_queue))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898 mask |= POLLIN | POLLRDNORM;
899
Herbert Xu33dccbb2009-02-05 21:25:32 -0800900 if (sock_writeable(sk) ||
901 (!test_and_set_bit(SOCK_ASYNC_NOSPACE, &sk->sk_socket->flags) &&
902 sock_writeable(sk)))
903 mask |= POLLOUT | POLLWRNORM;
904
Eric W. Biedermanc70f1822009-01-20 11:07:17 +0000905 if (tun->dev->reg_state != NETREG_REGISTERED)
906 mask = POLLERR;
907
Eric W. Biederman631ab462009-01-20 11:00:40 +0000908 tun_put(tun);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909 return mask;
910}
911
Rusty Russellf42157c2008-08-15 15:15:10 -0700912/* prepad is the amount to reserve at front. len is length after that.
913 * linear is a hint as to how much to copy (usually headers). */
Jason Wang54f968d2012-10-31 19:45:57 +0000914static struct sk_buff *tun_alloc_skb(struct tun_file *tfile,
stephen hemminger6f7c1562011-06-08 14:33:08 +0000915 size_t prepad, size_t len,
916 size_t linear, int noblock)
Rusty Russellf42157c2008-08-15 15:15:10 -0700917{
Jason Wang54f968d2012-10-31 19:45:57 +0000918 struct sock *sk = tfile->socket.sk;
Rusty Russellf42157c2008-08-15 15:15:10 -0700919 struct sk_buff *skb;
Herbert Xu33dccbb2009-02-05 21:25:32 -0800920 int err;
Rusty Russellf42157c2008-08-15 15:15:10 -0700921
922 /* Under a page? Don't bother with paged skb. */
Herbert Xu0eca93b2009-04-14 02:09:43 -0700923 if (prepad + len < PAGE_SIZE || !linear)
Herbert Xu33dccbb2009-02-05 21:25:32 -0800924 linear = len;
Rusty Russellf42157c2008-08-15 15:15:10 -0700925
Herbert Xu33dccbb2009-02-05 21:25:32 -0800926 skb = sock_alloc_send_pskb(sk, prepad + linear, len - linear, noblock,
927 &err);
Rusty Russellf42157c2008-08-15 15:15:10 -0700928 if (!skb)
Herbert Xu33dccbb2009-02-05 21:25:32 -0800929 return ERR_PTR(err);
Rusty Russellf42157c2008-08-15 15:15:10 -0700930
931 skb_reserve(skb, prepad);
932 skb_put(skb, linear);
Herbert Xu33dccbb2009-02-05 21:25:32 -0800933 skb->data_len = len - linear;
934 skb->len += len - linear;
Rusty Russellf42157c2008-08-15 15:15:10 -0700935
936 return skb;
937}
938
Michael S. Tsirkin06908992012-07-20 09:23:23 +0000939/* set skb frags from iovec, this can move to core network code for reuse */
940static int zerocopy_sg_from_iovec(struct sk_buff *skb, const struct iovec *from,
941 int offset, size_t count)
942{
943 int len = iov_length(from, count) - offset;
944 int copy = skb_headlen(skb);
945 int size, offset1 = 0;
946 int i = 0;
947
948 /* Skip over from offset */
949 while (count && (offset >= from->iov_len)) {
950 offset -= from->iov_len;
951 ++from;
952 --count;
953 }
954
955 /* copy up to skb headlen */
956 while (count && (copy > 0)) {
957 size = min_t(unsigned int, copy, from->iov_len - offset);
958 if (copy_from_user(skb->data + offset1, from->iov_base + offset,
959 size))
960 return -EFAULT;
961 if (copy > size) {
962 ++from;
963 --count;
964 offset = 0;
965 } else
966 offset += size;
967 copy -= size;
968 offset1 += size;
969 }
970
971 if (len == offset1)
972 return 0;
973
974 while (count--) {
975 struct page *page[MAX_SKB_FRAGS];
976 int num_pages;
977 unsigned long base;
978 unsigned long truesize;
979
980 len = from->iov_len - offset;
981 if (!len) {
982 offset = 0;
983 ++from;
984 continue;
985 }
986 base = (unsigned long)from->iov_base + offset;
987 size = ((base & ~PAGE_MASK) + len + ~PAGE_MASK) >> PAGE_SHIFT;
988 if (i + size > MAX_SKB_FRAGS)
989 return -EMSGSIZE;
990 num_pages = get_user_pages_fast(base, size, 0, &page[i]);
991 if (num_pages != size) {
992 for (i = 0; i < num_pages; i++)
993 put_page(page[i]);
994 return -EFAULT;
995 }
996 truesize = size * PAGE_SIZE;
997 skb->data_len += len;
998 skb->len += len;
999 skb->truesize += truesize;
1000 atomic_add(truesize, &skb->sk->sk_wmem_alloc);
1001 while (len) {
1002 int off = base & ~PAGE_MASK;
1003 int size = min_t(int, len, PAGE_SIZE - off);
1004 __skb_fill_page_desc(skb, i, page[i], off, size);
1005 skb_shinfo(skb)->nr_frags++;
1006 /* increase sk_wmem_alloc */
1007 base += size;
1008 len -= size;
1009 i++;
1010 }
1011 offset = 0;
1012 ++from;
1013 }
1014 return 0;
1015}
1016
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017/* Get packet from user space buffer */
Jason Wang54f968d2012-10-31 19:45:57 +00001018static ssize_t tun_get_user(struct tun_struct *tun, struct tun_file *tfile,
1019 void *msg_control, const struct iovec *iv,
1020 size_t total_len, size_t count, int noblock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021{
Harvey Harrison09640e62009-02-01 00:45:17 -08001022 struct tun_pi pi = { 0, cpu_to_be16(ETH_P_IP) };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023 struct sk_buff *skb;
Michael S. Tsirkin06908992012-07-20 09:23:23 +00001024 size_t len = total_len, align = NET_SKB_PAD;
Rusty Russellf43798c2008-07-03 03:48:02 -07001025 struct virtio_net_hdr gso = { 0 };
Michael S. Tsirkin6f26c9a2009-04-20 01:26:11 +00001026 int offset = 0;
Michael S. Tsirkin06908992012-07-20 09:23:23 +00001027 int copylen;
1028 bool zerocopy = false;
1029 int err;
Eric Dumazet49974422012-12-12 19:22:57 +00001030 u32 rxhash;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031
1032 if (!(tun->flags & TUN_NO_PI)) {
Michael S. Tsirkin06908992012-07-20 09:23:23 +00001033 if ((len -= sizeof(pi)) > total_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034 return -EINVAL;
1035
Michael S. Tsirkin6f26c9a2009-04-20 01:26:11 +00001036 if (memcpy_fromiovecend((void *)&pi, iv, 0, sizeof(pi)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037 return -EFAULT;
Michael S. Tsirkin6f26c9a2009-04-20 01:26:11 +00001038 offset += sizeof(pi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039 }
1040
Rusty Russellf43798c2008-07-03 03:48:02 -07001041 if (tun->flags & TUN_VNET_HDR) {
Michael S. Tsirkin06908992012-07-20 09:23:23 +00001042 if ((len -= tun->vnet_hdr_sz) > total_len)
Rusty Russellf43798c2008-07-03 03:48:02 -07001043 return -EINVAL;
1044
Michael S. Tsirkin6f26c9a2009-04-20 01:26:11 +00001045 if (memcpy_fromiovecend((void *)&gso, iv, offset, sizeof(gso)))
Rusty Russellf43798c2008-07-03 03:48:02 -07001046 return -EFAULT;
1047
Herbert Xu49091222009-06-08 00:20:01 -07001048 if ((gso.flags & VIRTIO_NET_HDR_F_NEEDS_CSUM) &&
1049 gso.csum_start + gso.csum_offset + 2 > gso.hdr_len)
1050 gso.hdr_len = gso.csum_start + gso.csum_offset + 2;
1051
Rusty Russellf43798c2008-07-03 03:48:02 -07001052 if (gso.hdr_len > len)
1053 return -EINVAL;
Michael S. Tsirkind9d52b52010-03-17 17:45:01 +02001054 offset += tun->vnet_hdr_sz;
Rusty Russellf43798c2008-07-03 03:48:02 -07001055 }
1056
Rusty Russelle01bf1c2008-04-12 18:49:30 -07001057 if ((tun->flags & TUN_TYPE_MASK) == TUN_TAP_DEV) {
stephen hemmingera504b862011-06-08 14:33:07 +00001058 align += NET_IP_ALIGN;
Herbert Xu0eca93b2009-04-14 02:09:43 -07001059 if (unlikely(len < ETH_HLEN ||
1060 (gso.hdr_len && gso.hdr_len < ETH_HLEN)))
Rusty Russelle01bf1c2008-04-12 18:49:30 -07001061 return -EINVAL;
1062 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001063
Michael S. Tsirkin06908992012-07-20 09:23:23 +00001064 if (msg_control)
1065 zerocopy = true;
1066
1067 if (zerocopy) {
1068 /* Userspace may produce vectors with count greater than
1069 * MAX_SKB_FRAGS, so we need to linearize parts of the skb
1070 * to let the rest of data to be fit in the frags.
1071 */
1072 if (count > MAX_SKB_FRAGS) {
1073 copylen = iov_length(iv, count - MAX_SKB_FRAGS);
1074 if (copylen < offset)
1075 copylen = 0;
1076 else
1077 copylen -= offset;
1078 } else
1079 copylen = 0;
1080 /* There are 256 bytes to be copied in skb, so there is enough
1081 * room for skb expand head in case it is used.
1082 * The rest of the buffer is mapped from userspace.
1083 */
1084 if (copylen < gso.hdr_len)
1085 copylen = gso.hdr_len;
1086 if (!copylen)
1087 copylen = GOODCOPY_LEN;
1088 } else
1089 copylen = len;
1090
Jason Wang54f968d2012-10-31 19:45:57 +00001091 skb = tun_alloc_skb(tfile, align, copylen, gso.hdr_len, noblock);
Herbert Xu33dccbb2009-02-05 21:25:32 -08001092 if (IS_ERR(skb)) {
1093 if (PTR_ERR(skb) != -EAGAIN)
1094 tun->dev->stats.rx_dropped++;
1095 return PTR_ERR(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096 }
1097
Michael S. Tsirkin06908992012-07-20 09:23:23 +00001098 if (zerocopy)
1099 err = zerocopy_sg_from_iovec(skb, iv, offset, count);
1100 else
1101 err = skb_copy_datagram_from_iovec(skb, 0, iv, offset, len);
1102
1103 if (err) {
Jeff Garzik09f75cd2007-10-03 17:41:50 -07001104 tun->dev->stats.rx_dropped++;
Dave Jones8f227572006-03-11 18:49:13 -08001105 kfree_skb(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106 return -EFAULT;
Dave Jones8f227572006-03-11 18:49:13 -08001107 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108
Rusty Russellf43798c2008-07-03 03:48:02 -07001109 if (gso.flags & VIRTIO_NET_HDR_F_NEEDS_CSUM) {
1110 if (!skb_partial_csum_set(skb, gso.csum_start,
1111 gso.csum_offset)) {
1112 tun->dev->stats.rx_frame_errors++;
1113 kfree_skb(skb);
1114 return -EINVAL;
1115 }
Michał Mirosław88255372011-04-19 06:13:10 +00001116 }
Rusty Russellf43798c2008-07-03 03:48:02 -07001117
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118 switch (tun->flags & TUN_TYPE_MASK) {
1119 case TUN_TUN_DEV:
Ang Way Chuangf09f7ee2008-06-17 21:10:33 -07001120 if (tun->flags & TUN_NO_PI) {
1121 switch (skb->data[0] & 0xf0) {
1122 case 0x40:
1123 pi.proto = htons(ETH_P_IP);
1124 break;
1125 case 0x60:
1126 pi.proto = htons(ETH_P_IPV6);
1127 break;
1128 default:
1129 tun->dev->stats.rx_dropped++;
1130 kfree_skb(skb);
1131 return -EINVAL;
1132 }
1133 }
1134
Arnaldo Carvalho de Melo459a98e2007-03-19 15:30:44 -07001135 skb_reset_mac_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136 skb->protocol = pi.proto;
Arnaldo Carvalho de Melo4c13eb62007-04-25 17:40:23 -07001137 skb->dev = tun->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138 break;
1139 case TUN_TAP_DEV:
1140 skb->protocol = eth_type_trans(skb, tun->dev);
1141 break;
Joe Perches6403eab2011-06-03 11:51:20 +00001142 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143
Rusty Russellf43798c2008-07-03 03:48:02 -07001144 if (gso.gso_type != VIRTIO_NET_HDR_GSO_NONE) {
1145 pr_debug("GSO!\n");
1146 switch (gso.gso_type & ~VIRTIO_NET_HDR_GSO_ECN) {
1147 case VIRTIO_NET_HDR_GSO_TCPV4:
1148 skb_shinfo(skb)->gso_type = SKB_GSO_TCPV4;
1149 break;
1150 case VIRTIO_NET_HDR_GSO_TCPV6:
1151 skb_shinfo(skb)->gso_type = SKB_GSO_TCPV6;
1152 break;
Sridhar Samudralae36aa252009-07-14 14:21:04 +00001153 case VIRTIO_NET_HDR_GSO_UDP:
1154 skb_shinfo(skb)->gso_type = SKB_GSO_UDP;
1155 break;
Rusty Russellf43798c2008-07-03 03:48:02 -07001156 default:
1157 tun->dev->stats.rx_frame_errors++;
1158 kfree_skb(skb);
1159 return -EINVAL;
1160 }
1161
1162 if (gso.gso_type & VIRTIO_NET_HDR_GSO_ECN)
1163 skb_shinfo(skb)->gso_type |= SKB_GSO_TCP_ECN;
1164
1165 skb_shinfo(skb)->gso_size = gso.gso_size;
1166 if (skb_shinfo(skb)->gso_size == 0) {
1167 tun->dev->stats.rx_frame_errors++;
1168 kfree_skb(skb);
1169 return -EINVAL;
1170 }
1171
1172 /* Header must be checked, and gso_segs computed. */
1173 skb_shinfo(skb)->gso_type |= SKB_GSO_DODGY;
1174 skb_shinfo(skb)->gso_segs = 0;
1175 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001176
Michael S. Tsirkin06908992012-07-20 09:23:23 +00001177 /* copy skb_ubuf_info for callback when skb has no error */
1178 if (zerocopy) {
1179 skb_shinfo(skb)->destructor_arg = msg_control;
1180 skb_shinfo(skb)->tx_flags |= SKBTX_DEV_ZEROCOPY;
1181 }
1182
Eric Dumazet76fe4582012-12-17 04:39:20 +00001183 skb_reset_network_header(skb);
Eric Dumazet49974422012-12-12 19:22:57 +00001184 rxhash = skb_get_rxhash(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185 netif_rx_ni(skb);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001186
Jeff Garzik09f75cd2007-10-03 17:41:50 -07001187 tun->dev->stats.rx_packets++;
1188 tun->dev->stats.rx_bytes += len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189
Eric Dumazet49974422012-12-12 19:22:57 +00001190 tun_flow_update(tun, rxhash, tfile->queue_index);
Michael S. Tsirkin06908992012-07-20 09:23:23 +00001191 return total_len;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001192}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193
Badari Pulavartyee0b3e62006-09-30 23:28:47 -07001194static ssize_t tun_chr_aio_write(struct kiocb *iocb, const struct iovec *iv,
1195 unsigned long count, loff_t pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196{
Herbert Xu33dccbb2009-02-05 21:25:32 -08001197 struct file *file = iocb->ki_filp;
Herbert Xuab46d772009-02-14 20:46:39 -08001198 struct tun_struct *tun = tun_get(file);
Jason Wang54f968d2012-10-31 19:45:57 +00001199 struct tun_file *tfile = file->private_data;
Eric W. Biederman631ab462009-01-20 11:00:40 +00001200 ssize_t result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201
1202 if (!tun)
1203 return -EBADFD;
1204
Joe Perches6b8a66e2011-03-02 07:18:10 +00001205 tun_debug(KERN_INFO, tun, "tun_chr_write %ld\n", count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206
Jason Wang54f968d2012-10-31 19:45:57 +00001207 result = tun_get_user(tun, tfile, NULL, iv, iov_length(iv, count),
1208 count, file->f_flags & O_NONBLOCK);
Eric W. Biederman631ab462009-01-20 11:00:40 +00001209
1210 tun_put(tun);
1211 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212}
1213
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214/* Put packet to the user space buffer */
stephen hemminger6f7c1562011-06-08 14:33:08 +00001215static ssize_t tun_put_user(struct tun_struct *tun,
Jason Wang54f968d2012-10-31 19:45:57 +00001216 struct tun_file *tfile,
stephen hemminger6f7c1562011-06-08 14:33:08 +00001217 struct sk_buff *skb,
1218 const struct iovec *iv, int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219{
1220 struct tun_pi pi = { 0, skb->protocol };
1221 ssize_t total = 0;
1222
1223 if (!(tun->flags & TUN_NO_PI)) {
1224 if ((len -= sizeof(pi)) < 0)
1225 return -EINVAL;
1226
1227 if (len < skb->len) {
1228 /* Packet will be striped */
1229 pi.flags |= TUN_PKT_STRIP;
1230 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001231
Michael S. Tsirkin43b39dc2009-04-20 01:25:59 +00001232 if (memcpy_toiovecend(iv, (void *) &pi, 0, sizeof(pi)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233 return -EFAULT;
1234 total += sizeof(pi);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001235 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236
Rusty Russellf43798c2008-07-03 03:48:02 -07001237 if (tun->flags & TUN_VNET_HDR) {
1238 struct virtio_net_hdr gso = { 0 }; /* no info leak */
Michael S. Tsirkind9d52b52010-03-17 17:45:01 +02001239 if ((len -= tun->vnet_hdr_sz) < 0)
Rusty Russellf43798c2008-07-03 03:48:02 -07001240 return -EINVAL;
1241
1242 if (skb_is_gso(skb)) {
1243 struct skb_shared_info *sinfo = skb_shinfo(skb);
1244
1245 /* This is a hint as to how much should be linear. */
1246 gso.hdr_len = skb_headlen(skb);
1247 gso.gso_size = sinfo->gso_size;
1248 if (sinfo->gso_type & SKB_GSO_TCPV4)
1249 gso.gso_type = VIRTIO_NET_HDR_GSO_TCPV4;
1250 else if (sinfo->gso_type & SKB_GSO_TCPV6)
1251 gso.gso_type = VIRTIO_NET_HDR_GSO_TCPV6;
Sridhar Samudralae36aa252009-07-14 14:21:04 +00001252 else if (sinfo->gso_type & SKB_GSO_UDP)
1253 gso.gso_type = VIRTIO_NET_HDR_GSO_UDP;
Michael S. Tsirkinef3db4a2010-07-21 04:32:45 +00001254 else {
Joe Perches6b8a66e2011-03-02 07:18:10 +00001255 pr_err("unexpected GSO type: "
Michael S. Tsirkinef3db4a2010-07-21 04:32:45 +00001256 "0x%x, gso_size %d, hdr_len %d\n",
1257 sinfo->gso_type, gso.gso_size,
1258 gso.hdr_len);
1259 print_hex_dump(KERN_ERR, "tun: ",
1260 DUMP_PREFIX_NONE,
1261 16, 1, skb->head,
1262 min((int)gso.hdr_len, 64), true);
1263 WARN_ON_ONCE(1);
1264 return -EINVAL;
1265 }
Rusty Russellf43798c2008-07-03 03:48:02 -07001266 if (sinfo->gso_type & SKB_GSO_TCP_ECN)
1267 gso.gso_type |= VIRTIO_NET_HDR_GSO_ECN;
1268 } else
1269 gso.gso_type = VIRTIO_NET_HDR_GSO_NONE;
1270
1271 if (skb->ip_summed == CHECKSUM_PARTIAL) {
1272 gso.flags = VIRTIO_NET_HDR_F_NEEDS_CSUM;
Michał Mirosław55508d62010-12-14 15:24:08 +00001273 gso.csum_start = skb_checksum_start_offset(skb);
Rusty Russellf43798c2008-07-03 03:48:02 -07001274 gso.csum_offset = skb->csum_offset;
Jason Wang10a8d942011-06-10 00:56:17 +00001275 } else if (skb->ip_summed == CHECKSUM_UNNECESSARY) {
1276 gso.flags = VIRTIO_NET_HDR_F_DATA_VALID;
Rusty Russellf43798c2008-07-03 03:48:02 -07001277 } /* else everything is zero */
1278
Michael S. Tsirkin43b39dc2009-04-20 01:25:59 +00001279 if (unlikely(memcpy_toiovecend(iv, (void *)&gso, total,
1280 sizeof(gso))))
Rusty Russellf43798c2008-07-03 03:48:02 -07001281 return -EFAULT;
Michael S. Tsirkind9d52b52010-03-17 17:45:01 +02001282 total += tun->vnet_hdr_sz;
Rusty Russellf43798c2008-07-03 03:48:02 -07001283 }
1284
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285 len = min_t(int, skb->len, len);
1286
Michael S. Tsirkin43b39dc2009-04-20 01:25:59 +00001287 skb_copy_datagram_const_iovec(skb, 0, iv, total, len);
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00001288 total += skb->len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289
Jeff Garzik09f75cd2007-10-03 17:41:50 -07001290 tun->dev->stats.tx_packets++;
1291 tun->dev->stats.tx_bytes += len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292
1293 return total;
1294}
1295
Jason Wang54f968d2012-10-31 19:45:57 +00001296static ssize_t tun_do_read(struct tun_struct *tun, struct tun_file *tfile,
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00001297 struct kiocb *iocb, const struct iovec *iv,
1298 ssize_t len, int noblock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300 DECLARE_WAITQUEUE(wait, current);
1301 struct sk_buff *skb;
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00001302 ssize_t ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303
Rami Rosen3872baf2012-11-25 22:07:41 +00001304 tun_debug(KERN_INFO, tun, "tun_do_read\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001305
Amos Kong61a5ff12011-06-09 00:27:10 -07001306 if (unlikely(!noblock))
Jason Wang54f968d2012-10-31 19:45:57 +00001307 add_wait_queue(&tfile->wq.wait, &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001308 while (len) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309 current->state = TASK_INTERRUPTIBLE;
1310
1311 /* Read frames from the queue */
Jason Wang54f968d2012-10-31 19:45:57 +00001312 if (!(skb = skb_dequeue(&tfile->socket.sk->sk_receive_queue))) {
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00001313 if (noblock) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314 ret = -EAGAIN;
1315 break;
1316 }
1317 if (signal_pending(current)) {
1318 ret = -ERESTARTSYS;
1319 break;
1320 }
Eric W. Biedermanc70f1822009-01-20 11:07:17 +00001321 if (tun->dev->reg_state != NETREG_REGISTERED) {
1322 ret = -EIO;
1323 break;
1324 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001325
1326 /* Nothing to read, let's sleep */
1327 schedule();
1328 continue;
1329 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330
Jason Wang54f968d2012-10-31 19:45:57 +00001331 ret = tun_put_user(tun, tfile, skb, iv, len);
Max Krasnyanskyf271b2c2008-07-14 22:18:19 -07001332 kfree_skb(skb);
1333 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334 }
1335
1336 current->state = TASK_RUNNING;
Amos Kong61a5ff12011-06-09 00:27:10 -07001337 if (unlikely(!noblock))
Jason Wang54f968d2012-10-31 19:45:57 +00001338 remove_wait_queue(&tfile->wq.wait, &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00001340 return ret;
1341}
1342
1343static ssize_t tun_chr_aio_read(struct kiocb *iocb, const struct iovec *iv,
1344 unsigned long count, loff_t pos)
1345{
1346 struct file *file = iocb->ki_filp;
1347 struct tun_file *tfile = file->private_data;
1348 struct tun_struct *tun = __tun_get(tfile);
1349 ssize_t len, ret;
1350
1351 if (!tun)
1352 return -EBADFD;
1353 len = iov_length(iv, count);
1354 if (len < 0) {
1355 ret = -EINVAL;
1356 goto out;
1357 }
1358
Jason Wang54f968d2012-10-31 19:45:57 +00001359 ret = tun_do_read(tun, tfile, iocb, iv, len,
1360 file->f_flags & O_NONBLOCK);
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00001361 ret = min_t(ssize_t, ret, len);
Eric W. Biederman631ab462009-01-20 11:00:40 +00001362out:
1363 tun_put(tun);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364 return ret;
1365}
1366
Jason Wang96442e422012-10-31 19:46:02 +00001367static void tun_free_netdev(struct net_device *dev)
1368{
1369 struct tun_struct *tun = netdev_priv(dev);
1370
Jason Wang4008e972012-12-13 23:53:30 +00001371 BUG_ON(!(list_empty(&tun->disabled)));
Jason Wang96442e422012-10-31 19:46:02 +00001372 tun_flow_uninit(tun);
1373 free_netdev(dev);
1374}
1375
Linus Torvalds1da177e2005-04-16 15:20:36 -07001376static void tun_setup(struct net_device *dev)
1377{
1378 struct tun_struct *tun = netdev_priv(dev);
1379
Eric W. Biederman0625c882012-02-07 16:48:55 -08001380 tun->owner = INVALID_UID;
1381 tun->group = INVALID_GID;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383 dev->ethtool_ops = &tun_ethtool_ops;
Jason Wang96442e422012-10-31 19:46:02 +00001384 dev->destructor = tun_free_netdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385}
1386
Eric W. Biedermanf019a7a2009-01-21 16:02:16 -08001387/* Trivial set of netlink ops to allow deleting tun or tap
1388 * device with netlink.
1389 */
1390static int tun_validate(struct nlattr *tb[], struct nlattr *data[])
1391{
1392 return -EINVAL;
1393}
1394
1395static struct rtnl_link_ops tun_link_ops __read_mostly = {
1396 .kind = DRV_NAME,
1397 .priv_size = sizeof(struct tun_struct),
1398 .setup = tun_setup,
1399 .validate = tun_validate,
1400};
1401
Herbert Xu33dccbb2009-02-05 21:25:32 -08001402static void tun_sock_write_space(struct sock *sk)
1403{
Jason Wang54f968d2012-10-31 19:45:57 +00001404 struct tun_file *tfile;
Eric Dumazet43815482010-04-29 11:01:49 +00001405 wait_queue_head_t *wqueue;
Herbert Xu33dccbb2009-02-05 21:25:32 -08001406
1407 if (!sock_writeable(sk))
1408 return;
1409
Herbert Xu33dccbb2009-02-05 21:25:32 -08001410 if (!test_and_clear_bit(SOCK_ASYNC_NOSPACE, &sk->sk_socket->flags))
1411 return;
1412
Eric Dumazet43815482010-04-29 11:01:49 +00001413 wqueue = sk_sleep(sk);
1414 if (wqueue && waitqueue_active(wqueue))
1415 wake_up_interruptible_sync_poll(wqueue, POLLOUT |
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00001416 POLLWRNORM | POLLWRBAND);
Herbert Xuc722c622009-06-03 21:45:55 -07001417
Jason Wang54f968d2012-10-31 19:45:57 +00001418 tfile = container_of(sk, struct tun_file, sk);
1419 kill_fasync(&tfile->fasync, SIGIO, POLL_OUT);
Herbert Xu33dccbb2009-02-05 21:25:32 -08001420}
1421
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00001422static int tun_sendmsg(struct kiocb *iocb, struct socket *sock,
1423 struct msghdr *m, size_t total_len)
1424{
Jason Wang54f968d2012-10-31 19:45:57 +00001425 int ret;
1426 struct tun_file *tfile = container_of(sock, struct tun_file, socket);
1427 struct tun_struct *tun = __tun_get(tfile);
1428
1429 if (!tun)
1430 return -EBADFD;
Jason Wang54f968d2012-10-31 19:45:57 +00001431 ret = tun_get_user(tun, tfile, m->msg_control, m->msg_iov, total_len,
1432 m->msg_iovlen, m->msg_flags & MSG_DONTWAIT);
1433 tun_put(tun);
1434 return ret;
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00001435}
1436
Jason Wang54f968d2012-10-31 19:45:57 +00001437
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00001438static int tun_recvmsg(struct kiocb *iocb, struct socket *sock,
1439 struct msghdr *m, size_t total_len,
1440 int flags)
1441{
Jason Wang54f968d2012-10-31 19:45:57 +00001442 struct tun_file *tfile = container_of(sock, struct tun_file, socket);
1443 struct tun_struct *tun = __tun_get(tfile);
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00001444 int ret;
Jason Wang54f968d2012-10-31 19:45:57 +00001445
1446 if (!tun)
1447 return -EBADFD;
1448
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00001449 if (flags & ~(MSG_DONTWAIT|MSG_TRUNC))
1450 return -EINVAL;
Jason Wang54f968d2012-10-31 19:45:57 +00001451 ret = tun_do_read(tun, tfile, iocb, m->msg_iov, total_len,
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00001452 flags & MSG_DONTWAIT);
1453 if (ret > total_len) {
1454 m->msg_flags |= MSG_TRUNC;
1455 ret = flags & MSG_TRUNC ? ret : total_len;
1456 }
Jason Wang54f968d2012-10-31 19:45:57 +00001457 tun_put(tun);
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00001458 return ret;
1459}
1460
Stanislav Kinsbursky1ab5ecb2012-03-12 02:59:41 +00001461static int tun_release(struct socket *sock)
1462{
1463 if (sock->sk)
1464 sock_put(sock->sk);
1465 return 0;
1466}
1467
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00001468/* Ops structure to mimic raw sockets with tun */
1469static const struct proto_ops tun_socket_ops = {
1470 .sendmsg = tun_sendmsg,
1471 .recvmsg = tun_recvmsg,
Stanislav Kinsbursky1ab5ecb2012-03-12 02:59:41 +00001472 .release = tun_release,
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00001473};
1474
Herbert Xu33dccbb2009-02-05 21:25:32 -08001475static struct proto tun_proto = {
1476 .name = "tun",
1477 .owner = THIS_MODULE,
Jason Wang54f968d2012-10-31 19:45:57 +00001478 .obj_size = sizeof(struct tun_file),
Herbert Xu33dccbb2009-02-05 21:25:32 -08001479};
Eric W. Biedermanf019a7a2009-01-21 16:02:16 -08001480
David Woodhouse980c9e82009-05-09 22:54:21 -07001481static int tun_flags(struct tun_struct *tun)
1482{
1483 int flags = 0;
1484
1485 if (tun->flags & TUN_TUN_DEV)
1486 flags |= IFF_TUN;
1487 else
1488 flags |= IFF_TAP;
1489
1490 if (tun->flags & TUN_NO_PI)
1491 flags |= IFF_NO_PI;
1492
Michael S. Tsirkin5d097102012-12-03 10:07:14 +00001493 /* This flag has no real effect. We track the value for backwards
1494 * compatibility.
1495 */
David Woodhouse980c9e82009-05-09 22:54:21 -07001496 if (tun->flags & TUN_ONE_QUEUE)
1497 flags |= IFF_ONE_QUEUE;
1498
1499 if (tun->flags & TUN_VNET_HDR)
1500 flags |= IFF_VNET_HDR;
1501
Jason Wangc8d68e62012-10-31 19:46:00 +00001502 if (tun->flags & TUN_TAP_MQ)
1503 flags |= IFF_MULTI_QUEUE;
1504
David Woodhouse980c9e82009-05-09 22:54:21 -07001505 return flags;
1506}
1507
1508static ssize_t tun_show_flags(struct device *dev, struct device_attribute *attr,
1509 char *buf)
1510{
1511 struct tun_struct *tun = netdev_priv(to_net_dev(dev));
1512 return sprintf(buf, "0x%x\n", tun_flags(tun));
1513}
1514
1515static ssize_t tun_show_owner(struct device *dev, struct device_attribute *attr,
1516 char *buf)
1517{
1518 struct tun_struct *tun = netdev_priv(to_net_dev(dev));
Eric W. Biederman0625c882012-02-07 16:48:55 -08001519 return uid_valid(tun->owner)?
1520 sprintf(buf, "%u\n",
1521 from_kuid_munged(current_user_ns(), tun->owner)):
1522 sprintf(buf, "-1\n");
David Woodhouse980c9e82009-05-09 22:54:21 -07001523}
1524
1525static ssize_t tun_show_group(struct device *dev, struct device_attribute *attr,
1526 char *buf)
1527{
1528 struct tun_struct *tun = netdev_priv(to_net_dev(dev));
Eric W. Biederman0625c882012-02-07 16:48:55 -08001529 return gid_valid(tun->group) ?
1530 sprintf(buf, "%u\n",
1531 from_kgid_munged(current_user_ns(), tun->group)):
1532 sprintf(buf, "-1\n");
David Woodhouse980c9e82009-05-09 22:54:21 -07001533}
1534
1535static DEVICE_ATTR(tun_flags, 0444, tun_show_flags, NULL);
1536static DEVICE_ATTR(owner, 0444, tun_show_owner, NULL);
1537static DEVICE_ATTR(group, 0444, tun_show_group, NULL);
1538
Pavel Emelyanovd647a592008-04-16 00:41:16 -07001539static int tun_set_iff(struct net *net, struct file *file, struct ifreq *ifr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001540{
1541 struct tun_struct *tun;
Jason Wang54f968d2012-10-31 19:45:57 +00001542 struct tun_file *tfile = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001543 struct net_device *dev;
1544 int err;
1545
Eric W. Biederman74a3e5a2009-01-20 10:56:20 +00001546 dev = __dev_get_by_name(net, ifr->ifr_name);
1547 if (dev) {
David Woodhousef85ba782009-04-27 03:23:54 -07001548 if (ifr->ifr_flags & IFF_TUN_EXCL)
1549 return -EBUSY;
Eric W. Biederman74a3e5a2009-01-20 10:56:20 +00001550 if ((ifr->ifr_flags & IFF_TUN) && dev->netdev_ops == &tun_netdev_ops)
1551 tun = netdev_priv(dev);
1552 else if ((ifr->ifr_flags & IFF_TAP) && dev->netdev_ops == &tap_netdev_ops)
1553 tun = netdev_priv(dev);
1554 else
1555 return -EINVAL;
1556
Jason Wangcde8b152012-10-31 19:46:01 +00001557 if (tun_not_capable(tun))
Paul Moore2b980db2009-08-28 18:12:43 -04001558 return -EPERM;
Jason Wang54f968d2012-10-31 19:45:57 +00001559 err = security_tun_dev_attach(tfile->socket.sk);
Paul Moore2b980db2009-08-28 18:12:43 -04001560 if (err < 0)
1561 return err;
1562
Eric W. Biedermana7385ba2009-01-20 10:57:48 +00001563 err = tun_attach(tun, file);
1564 if (err < 0)
1565 return err;
Jason Wang4008e972012-12-13 23:53:30 +00001566
1567 if (tun->flags & TUN_TAP_MQ &&
1568 (tun->numqueues + tun->numdisabled > 1))
1569 return err;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001570 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571 else {
1572 char *name;
1573 unsigned long flags = 0;
1574
Eric W. Biedermanc260b772012-11-18 21:34:11 +00001575 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
David Woodhouseca6bb5d2006-06-22 16:07:52 -07001576 return -EPERM;
Paul Moore2b980db2009-08-28 18:12:43 -04001577 err = security_tun_dev_create();
1578 if (err < 0)
1579 return err;
David Woodhouseca6bb5d2006-06-22 16:07:52 -07001580
Linus Torvalds1da177e2005-04-16 15:20:36 -07001581 /* Set dev type */
1582 if (ifr->ifr_flags & IFF_TUN) {
1583 /* TUN device */
1584 flags |= TUN_TUN_DEV;
1585 name = "tun%d";
1586 } else if (ifr->ifr_flags & IFF_TAP) {
1587 /* TAP device */
1588 flags |= TUN_TAP_DEV;
1589 name = "tap%d";
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001590 } else
Kusanagi Kouichi36989b92009-09-16 21:36:13 +00001591 return -EINVAL;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001592
Linus Torvalds1da177e2005-04-16 15:20:36 -07001593 if (*ifr->ifr_name)
1594 name = ifr->ifr_name;
1595
Jason Wangc8d68e62012-10-31 19:46:00 +00001596 dev = alloc_netdev_mqs(sizeof(struct tun_struct), name,
1597 tun_setup,
1598 MAX_TAP_QUEUES, MAX_TAP_QUEUES);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001599 if (!dev)
1600 return -ENOMEM;
1601
Pavel Emelyanovfc54c652008-04-16 00:41:53 -07001602 dev_net_set(dev, net);
Eric W. Biedermanf019a7a2009-01-21 16:02:16 -08001603 dev->rtnl_link_ops = &tun_link_ops;
Stephen Hemminger758e43b2008-11-19 22:10:37 -08001604
Linus Torvalds1da177e2005-04-16 15:20:36 -07001605 tun = netdev_priv(dev);
1606 tun->dev = dev;
1607 tun->flags = flags;
Max Krasnyanskyf271b2c2008-07-14 22:18:19 -07001608 tun->txflt.count = 0;
Michael S. Tsirkind9d52b52010-03-17 17:45:01 +02001609 tun->vnet_hdr_sz = sizeof(struct virtio_net_hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001610
Jason Wang54f968d2012-10-31 19:45:57 +00001611 tun->filter_attached = false;
1612 tun->sndbuf = tfile->socket.sk->sk_sndbuf;
Herbert Xu33dccbb2009-02-05 21:25:32 -08001613
Jason Wang96442e422012-10-31 19:46:02 +00001614 spin_lock_init(&tun->lock);
1615
Jason Wang54f968d2012-10-31 19:45:57 +00001616 security_tun_dev_post_create(&tfile->sk);
Paul Moore2b980db2009-08-28 18:12:43 -04001617
Linus Torvalds1da177e2005-04-16 15:20:36 -07001618 tun_net_init(dev);
1619
Paul Mooreb3943ae2012-12-06 05:48:38 +00001620 err = tun_flow_init(tun);
1621 if (err < 0)
Jason Wang96442e422012-10-31 19:46:02 +00001622 goto err_free_dev;
1623
Michał Mirosław88255372011-04-19 06:13:10 +00001624 dev->hw_features = NETIF_F_SG | NETIF_F_FRAGLIST |
1625 TUN_USER_FEATURES;
1626 dev->features = dev->hw_features;
1627
Jason Wang4008e972012-12-13 23:53:30 +00001628 INIT_LIST_HEAD(&tun->disabled);
Jason Wangeb0fb362012-12-02 17:19:45 +00001629 err = tun_attach(tun, file);
1630 if (err < 0)
1631 goto err_free_dev;
1632
Linus Torvalds1da177e2005-04-16 15:20:36 -07001633 err = register_netdevice(tun->dev);
1634 if (err < 0)
Jason Wang54f968d2012-10-31 19:45:57 +00001635 goto err_free_dev;
Herbert Xu9c3fea62009-04-18 14:15:52 +00001636
David Woodhouse980c9e82009-05-09 22:54:21 -07001637 if (device_create_file(&tun->dev->dev, &dev_attr_tun_flags) ||
1638 device_create_file(&tun->dev->dev, &dev_attr_owner) ||
1639 device_create_file(&tun->dev->dev, &dev_attr_group))
Joe Perches6b8a66e2011-03-02 07:18:10 +00001640 pr_err("Failed to create tun sysfs files\n");
David Woodhouse980c9e82009-05-09 22:54:21 -07001641
Jason Wangeb0fb362012-12-02 17:19:45 +00001642 netif_carrier_on(tun->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001643 }
1644
Joe Perches6b8a66e2011-03-02 07:18:10 +00001645 tun_debug(KERN_INFO, tun, "tun_set_iff\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001646
1647 if (ifr->ifr_flags & IFF_NO_PI)
1648 tun->flags |= TUN_NO_PI;
Nathaniel Filardoa26af1e2008-02-05 03:05:07 -08001649 else
1650 tun->flags &= ~TUN_NO_PI;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001651
Michael S. Tsirkin5d097102012-12-03 10:07:14 +00001652 /* This flag has no real effect. We track the value for backwards
1653 * compatibility.
1654 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001655 if (ifr->ifr_flags & IFF_ONE_QUEUE)
1656 tun->flags |= TUN_ONE_QUEUE;
Nathaniel Filardoa26af1e2008-02-05 03:05:07 -08001657 else
1658 tun->flags &= ~TUN_ONE_QUEUE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001659
Rusty Russellf43798c2008-07-03 03:48:02 -07001660 if (ifr->ifr_flags & IFF_VNET_HDR)
1661 tun->flags |= TUN_VNET_HDR;
1662 else
1663 tun->flags &= ~TUN_VNET_HDR;
1664
Jason Wangc8d68e62012-10-31 19:46:00 +00001665 if (ifr->ifr_flags & IFF_MULTI_QUEUE)
1666 tun->flags |= TUN_TAP_MQ;
1667 else
1668 tun->flags &= ~TUN_TAP_MQ;
1669
Max Krasnyanskye35259a2008-07-10 16:59:11 -07001670 /* Make sure persistent devices do not get stuck in
1671 * xoff state.
1672 */
1673 if (netif_running(tun->dev))
Jason Wangc8d68e62012-10-31 19:46:00 +00001674 netif_tx_wake_all_queues(tun->dev);
Max Krasnyanskye35259a2008-07-10 16:59:11 -07001675
Linus Torvalds1da177e2005-04-16 15:20:36 -07001676 strcpy(ifr->ifr_name, tun->dev->name);
1677 return 0;
1678
1679 err_free_dev:
1680 free_netdev(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001681 return err;
1682}
1683
Rami Rosen9ce99cf2012-11-23 03:58:10 +00001684static void tun_get_iff(struct net *net, struct tun_struct *tun,
Herbert Xu876bfd42009-08-06 14:22:44 +00001685 struct ifreq *ifr)
Mark McLoughline3b99552008-08-15 15:09:56 -07001686{
Joe Perches6b8a66e2011-03-02 07:18:10 +00001687 tun_debug(KERN_INFO, tun, "tun_get_iff\n");
Mark McLoughline3b99552008-08-15 15:09:56 -07001688
1689 strcpy(ifr->ifr_name, tun->dev->name);
1690
David Woodhouse980c9e82009-05-09 22:54:21 -07001691 ifr->ifr_flags = tun_flags(tun);
Mark McLoughline3b99552008-08-15 15:09:56 -07001692
Mark McLoughline3b99552008-08-15 15:09:56 -07001693}
1694
Rusty Russell5228ddc2008-07-03 03:46:16 -07001695/* This is like a cut-down ethtool ops, except done via tun fd so no
1696 * privs required. */
Michał Mirosław88255372011-04-19 06:13:10 +00001697static int set_offload(struct tun_struct *tun, unsigned long arg)
Rusty Russell5228ddc2008-07-03 03:46:16 -07001698{
Michał Mirosławc8f44af2011-11-15 15:29:55 +00001699 netdev_features_t features = 0;
Rusty Russell5228ddc2008-07-03 03:46:16 -07001700
1701 if (arg & TUN_F_CSUM) {
Michał Mirosław88255372011-04-19 06:13:10 +00001702 features |= NETIF_F_HW_CSUM;
Rusty Russell5228ddc2008-07-03 03:46:16 -07001703 arg &= ~TUN_F_CSUM;
1704
1705 if (arg & (TUN_F_TSO4|TUN_F_TSO6)) {
1706 if (arg & TUN_F_TSO_ECN) {
1707 features |= NETIF_F_TSO_ECN;
1708 arg &= ~TUN_F_TSO_ECN;
1709 }
1710 if (arg & TUN_F_TSO4)
1711 features |= NETIF_F_TSO;
1712 if (arg & TUN_F_TSO6)
1713 features |= NETIF_F_TSO6;
1714 arg &= ~(TUN_F_TSO4|TUN_F_TSO6);
1715 }
Sridhar Samudralae36aa252009-07-14 14:21:04 +00001716
1717 if (arg & TUN_F_UFO) {
1718 features |= NETIF_F_UFO;
1719 arg &= ~TUN_F_UFO;
1720 }
Rusty Russell5228ddc2008-07-03 03:46:16 -07001721 }
1722
1723 /* This gives the user a way to test for new features in future by
1724 * trying to set them. */
1725 if (arg)
1726 return -EINVAL;
1727
Michał Mirosław88255372011-04-19 06:13:10 +00001728 tun->set_features = features;
1729 netdev_update_features(tun->dev);
Rusty Russell5228ddc2008-07-03 03:46:16 -07001730
1731 return 0;
1732}
1733
Jason Wangc8d68e62012-10-31 19:46:00 +00001734static void tun_detach_filter(struct tun_struct *tun, int n)
1735{
1736 int i;
1737 struct tun_file *tfile;
1738
1739 for (i = 0; i < n; i++) {
Jason Wangb8deabd2013-01-11 16:59:32 +00001740 tfile = rtnl_dereference(tun->tfiles[i]);
Jason Wangc8d68e62012-10-31 19:46:00 +00001741 sk_detach_filter(tfile->socket.sk);
1742 }
1743
1744 tun->filter_attached = false;
1745}
1746
1747static int tun_attach_filter(struct tun_struct *tun)
1748{
1749 int i, ret = 0;
1750 struct tun_file *tfile;
1751
1752 for (i = 0; i < tun->numqueues; i++) {
Jason Wangb8deabd2013-01-11 16:59:32 +00001753 tfile = rtnl_dereference(tun->tfiles[i]);
Jason Wangc8d68e62012-10-31 19:46:00 +00001754 ret = sk_attach_filter(&tun->fprog, tfile->socket.sk);
1755 if (ret) {
1756 tun_detach_filter(tun, i);
1757 return ret;
1758 }
1759 }
1760
1761 tun->filter_attached = true;
1762 return ret;
1763}
1764
1765static void tun_set_sndbuf(struct tun_struct *tun)
1766{
1767 struct tun_file *tfile;
1768 int i;
1769
1770 for (i = 0; i < tun->numqueues; i++) {
Jason Wangb8deabd2013-01-11 16:59:32 +00001771 tfile = rtnl_dereference(tun->tfiles[i]);
Jason Wangc8d68e62012-10-31 19:46:00 +00001772 tfile->socket.sk->sk_sndbuf = tun->sndbuf;
1773 }
1774}
1775
Jason Wangcde8b152012-10-31 19:46:01 +00001776static int tun_set_queue(struct file *file, struct ifreq *ifr)
1777{
1778 struct tun_file *tfile = file->private_data;
1779 struct tun_struct *tun;
Jason Wangcde8b152012-10-31 19:46:01 +00001780 int ret = 0;
1781
1782 rtnl_lock();
1783
1784 if (ifr->ifr_flags & IFF_ATTACH_QUEUE) {
Jason Wang4008e972012-12-13 23:53:30 +00001785 tun = tfile->detached;
1786 if (!tun)
Jason Wangcde8b152012-10-31 19:46:01 +00001787 ret = -EINVAL;
Jason Wangcde8b152012-10-31 19:46:01 +00001788 else
1789 ret = tun_attach(tun, file);
Jason Wang4008e972012-12-13 23:53:30 +00001790 } else if (ifr->ifr_flags & IFF_DETACH_QUEUE) {
Jason Wangb8deabd2013-01-11 16:59:32 +00001791 tun = rtnl_dereference(tfile->tun);
Jason Wang4008e972012-12-13 23:53:30 +00001792 if (!tun || !(tun->flags & TUN_TAP_MQ))
1793 ret = -EINVAL;
1794 else
1795 __tun_detach(tfile, false);
1796 } else
Jason Wangcde8b152012-10-31 19:46:01 +00001797 ret = -EINVAL;
1798
Jason Wangcde8b152012-10-31 19:46:01 +00001799 rtnl_unlock();
1800 return ret;
1801}
1802
Arnd Bergmann50857e22009-11-06 22:52:32 -08001803static long __tun_chr_ioctl(struct file *file, unsigned int cmd,
1804 unsigned long arg, int ifreq_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001805{
Eric W. Biederman36b50ba2009-01-20 11:01:48 +00001806 struct tun_file *tfile = file->private_data;
Eric W. Biederman631ab462009-01-20 11:00:40 +00001807 struct tun_struct *tun;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001808 void __user* argp = (void __user*)arg;
1809 struct ifreq ifr;
Eric W. Biederman0625c882012-02-07 16:48:55 -08001810 kuid_t owner;
1811 kgid_t group;
Herbert Xu33dccbb2009-02-05 21:25:32 -08001812 int sndbuf;
Michael S. Tsirkind9d52b52010-03-17 17:45:01 +02001813 int vnet_hdr_sz;
Max Krasnyanskyf271b2c2008-07-14 22:18:19 -07001814 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001815
Jason Wangcde8b152012-10-31 19:46:01 +00001816 if (cmd == TUNSETIFF || cmd == TUNSETQUEUE || _IOC_TYPE(cmd) == 0x89) {
Arnd Bergmann50857e22009-11-06 22:52:32 -08001817 if (copy_from_user(&ifr, argp, ifreq_len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001818 return -EFAULT;
David S. Miller8bbb1812012-07-30 14:52:48 -07001819 } else {
Mathias Krausea117dac2012-07-29 19:45:14 +00001820 memset(&ifr, 0, sizeof(ifr));
David S. Miller8bbb1812012-07-30 14:52:48 -07001821 }
Eric W. Biederman631ab462009-01-20 11:00:40 +00001822 if (cmd == TUNGETFEATURES) {
1823 /* Currently this just means: "what IFF flags are valid?".
1824 * This is needed because we never checked for invalid flags on
1825 * TUNSETIFF. */
1826 return put_user(IFF_TUN | IFF_TAP | IFF_NO_PI | IFF_ONE_QUEUE |
Jason Wangcde8b152012-10-31 19:46:01 +00001827 IFF_VNET_HDR | IFF_MULTI_QUEUE,
Eric W. Biederman631ab462009-01-20 11:00:40 +00001828 (unsigned int __user*)argp);
Jason Wangcde8b152012-10-31 19:46:01 +00001829 } else if (cmd == TUNSETQUEUE)
1830 return tun_set_queue(file, &ifr);
Eric W. Biederman631ab462009-01-20 11:00:40 +00001831
Jason Wangc8d68e62012-10-31 19:46:00 +00001832 ret = 0;
Herbert Xu876bfd42009-08-06 14:22:44 +00001833 rtnl_lock();
1834
Eric W. Biederman36b50ba2009-01-20 11:01:48 +00001835 tun = __tun_get(tfile);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001836 if (cmd == TUNSETIFF && !tun) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001837 ifr.ifr_name[IFNAMSIZ-1] = '\0';
1838
Herbert Xu876bfd42009-08-06 14:22:44 +00001839 ret = tun_set_iff(tfile->net, file, &ifr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001840
Herbert Xu876bfd42009-08-06 14:22:44 +00001841 if (ret)
1842 goto unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001843
Arnd Bergmann50857e22009-11-06 22:52:32 -08001844 if (copy_to_user(argp, &ifr, ifreq_len))
Herbert Xu876bfd42009-08-06 14:22:44 +00001845 ret = -EFAULT;
1846 goto unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001847 }
1848
Herbert Xu876bfd42009-08-06 14:22:44 +00001849 ret = -EBADFD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001850 if (!tun)
Herbert Xu876bfd42009-08-06 14:22:44 +00001851 goto unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001852
Jason Wang1e588332012-10-31 19:45:56 +00001853 tun_debug(KERN_INFO, tun, "tun_chr_ioctl cmd %u\n", cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001854
Eric W. Biederman631ab462009-01-20 11:00:40 +00001855 ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001856 switch (cmd) {
Mark McLoughline3b99552008-08-15 15:09:56 -07001857 case TUNGETIFF:
Rami Rosen9ce99cf2012-11-23 03:58:10 +00001858 tun_get_iff(current->nsproxy->net_ns, tun, &ifr);
Mark McLoughline3b99552008-08-15 15:09:56 -07001859
Arnd Bergmann50857e22009-11-06 22:52:32 -08001860 if (copy_to_user(argp, &ifr, ifreq_len))
Eric W. Biederman631ab462009-01-20 11:00:40 +00001861 ret = -EFAULT;
Mark McLoughline3b99552008-08-15 15:09:56 -07001862 break;
1863
Linus Torvalds1da177e2005-04-16 15:20:36 -07001864 case TUNSETNOCSUM:
1865 /* Disable/Enable checksum */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001866
Michał Mirosław88255372011-04-19 06:13:10 +00001867 /* [unimplemented] */
1868 tun_debug(KERN_INFO, tun, "ignored: set checksum %s\n",
Joe Perches6b8a66e2011-03-02 07:18:10 +00001869 arg ? "disabled" : "enabled");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001870 break;
1871
1872 case TUNSETPERSIST:
Jason Wang54f968d2012-10-31 19:45:57 +00001873 /* Disable/Enable persist mode. Keep an extra reference to the
1874 * module to prevent the module being unprobed.
1875 */
1876 if (arg) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001877 tun->flags |= TUN_PERSIST;
Jason Wang54f968d2012-10-31 19:45:57 +00001878 __module_get(THIS_MODULE);
1879 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001880 tun->flags &= ~TUN_PERSIST;
Jason Wang54f968d2012-10-31 19:45:57 +00001881 module_put(THIS_MODULE);
1882 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001883
Joe Perches6b8a66e2011-03-02 07:18:10 +00001884 tun_debug(KERN_INFO, tun, "persist %s\n",
1885 arg ? "enabled" : "disabled");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001886 break;
1887
1888 case TUNSETOWNER:
1889 /* Set owner of the device */
Eric W. Biederman0625c882012-02-07 16:48:55 -08001890 owner = make_kuid(current_user_ns(), arg);
1891 if (!uid_valid(owner)) {
1892 ret = -EINVAL;
1893 break;
1894 }
1895 tun->owner = owner;
Jason Wang1e588332012-10-31 19:45:56 +00001896 tun_debug(KERN_INFO, tun, "owner set to %u\n",
Eric W. Biederman0625c882012-02-07 16:48:55 -08001897 from_kuid(&init_user_ns, tun->owner));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001898 break;
1899
Guido Guenther8c644622007-07-02 22:50:25 -07001900 case TUNSETGROUP:
1901 /* Set group of the device */
Eric W. Biederman0625c882012-02-07 16:48:55 -08001902 group = make_kgid(current_user_ns(), arg);
1903 if (!gid_valid(group)) {
1904 ret = -EINVAL;
1905 break;
1906 }
1907 tun->group = group;
Jason Wang1e588332012-10-31 19:45:56 +00001908 tun_debug(KERN_INFO, tun, "group set to %u\n",
Eric W. Biederman0625c882012-02-07 16:48:55 -08001909 from_kgid(&init_user_ns, tun->group));
Guido Guenther8c644622007-07-02 22:50:25 -07001910 break;
1911
Mike Kershawff4cc3a2005-09-01 17:40:05 -07001912 case TUNSETLINK:
1913 /* Only allow setting the type when the interface is down */
1914 if (tun->dev->flags & IFF_UP) {
Joe Perches6b8a66e2011-03-02 07:18:10 +00001915 tun_debug(KERN_INFO, tun,
1916 "Linktype set failed because interface is up\n");
David S. Miller48abfe02008-04-23 19:37:58 -07001917 ret = -EBUSY;
Mike Kershawff4cc3a2005-09-01 17:40:05 -07001918 } else {
1919 tun->dev->type = (int) arg;
Joe Perches6b8a66e2011-03-02 07:18:10 +00001920 tun_debug(KERN_INFO, tun, "linktype set to %d\n",
1921 tun->dev->type);
David S. Miller48abfe02008-04-23 19:37:58 -07001922 ret = 0;
Mike Kershawff4cc3a2005-09-01 17:40:05 -07001923 }
Eric W. Biederman631ab462009-01-20 11:00:40 +00001924 break;
Mike Kershawff4cc3a2005-09-01 17:40:05 -07001925
Linus Torvalds1da177e2005-04-16 15:20:36 -07001926#ifdef TUN_DEBUG
1927 case TUNSETDEBUG:
1928 tun->debug = arg;
1929 break;
1930#endif
Rusty Russell5228ddc2008-07-03 03:46:16 -07001931 case TUNSETOFFLOAD:
Michał Mirosław88255372011-04-19 06:13:10 +00001932 ret = set_offload(tun, arg);
Eric W. Biederman631ab462009-01-20 11:00:40 +00001933 break;
Rusty Russell5228ddc2008-07-03 03:46:16 -07001934
Max Krasnyanskyf271b2c2008-07-14 22:18:19 -07001935 case TUNSETTXFILTER:
1936 /* Can be set only for TAPs */
Eric W. Biederman631ab462009-01-20 11:00:40 +00001937 ret = -EINVAL;
Max Krasnyanskyf271b2c2008-07-14 22:18:19 -07001938 if ((tun->flags & TUN_TYPE_MASK) != TUN_TAP_DEV)
Eric W. Biederman631ab462009-01-20 11:00:40 +00001939 break;
Harvey Harrisonc0e5a8c2008-07-16 12:45:34 -07001940 ret = update_filter(&tun->txflt, (void __user *)arg);
Eric W. Biederman631ab462009-01-20 11:00:40 +00001941 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001942
1943 case SIOCGIFHWADDR:
Uwe Kleine-Königb5950762010-11-01 15:38:34 -04001944 /* Get hw address */
Max Krasnyanskyf271b2c2008-07-14 22:18:19 -07001945 memcpy(ifr.ifr_hwaddr.sa_data, tun->dev->dev_addr, ETH_ALEN);
1946 ifr.ifr_hwaddr.sa_family = tun->dev->type;
Arnd Bergmann50857e22009-11-06 22:52:32 -08001947 if (copy_to_user(argp, &ifr, ifreq_len))
Eric W. Biederman631ab462009-01-20 11:00:40 +00001948 ret = -EFAULT;
1949 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001950
1951 case SIOCSIFHWADDR:
Max Krasnyanskyf271b2c2008-07-14 22:18:19 -07001952 /* Set hw address */
Joe Perches6b8a66e2011-03-02 07:18:10 +00001953 tun_debug(KERN_DEBUG, tun, "set hw address: %pM\n",
1954 ifr.ifr_hwaddr.sa_data);
Kim B. Heino40102372008-02-29 12:26:21 -08001955
Kim B. Heino40102372008-02-29 12:26:21 -08001956 ret = dev_set_mac_address(tun->dev, &ifr.ifr_hwaddr);
Eric W. Biederman631ab462009-01-20 11:00:40 +00001957 break;
Herbert Xu33dccbb2009-02-05 21:25:32 -08001958
1959 case TUNGETSNDBUF:
Jason Wang54f968d2012-10-31 19:45:57 +00001960 sndbuf = tfile->socket.sk->sk_sndbuf;
Herbert Xu33dccbb2009-02-05 21:25:32 -08001961 if (copy_to_user(argp, &sndbuf, sizeof(sndbuf)))
1962 ret = -EFAULT;
1963 break;
1964
1965 case TUNSETSNDBUF:
1966 if (copy_from_user(&sndbuf, argp, sizeof(sndbuf))) {
1967 ret = -EFAULT;
1968 break;
1969 }
1970
Jason Wangc8d68e62012-10-31 19:46:00 +00001971 tun->sndbuf = sndbuf;
1972 tun_set_sndbuf(tun);
Herbert Xu33dccbb2009-02-05 21:25:32 -08001973 break;
1974
Michael S. Tsirkind9d52b52010-03-17 17:45:01 +02001975 case TUNGETVNETHDRSZ:
1976 vnet_hdr_sz = tun->vnet_hdr_sz;
1977 if (copy_to_user(argp, &vnet_hdr_sz, sizeof(vnet_hdr_sz)))
1978 ret = -EFAULT;
1979 break;
1980
1981 case TUNSETVNETHDRSZ:
1982 if (copy_from_user(&vnet_hdr_sz, argp, sizeof(vnet_hdr_sz))) {
1983 ret = -EFAULT;
1984 break;
1985 }
1986 if (vnet_hdr_sz < (int)sizeof(struct virtio_net_hdr)) {
1987 ret = -EINVAL;
1988 break;
1989 }
1990
1991 tun->vnet_hdr_sz = vnet_hdr_sz;
1992 break;
1993
Michael S. Tsirkin99405162010-02-14 01:01:10 +00001994 case TUNATTACHFILTER:
1995 /* Can be set only for TAPs */
1996 ret = -EINVAL;
1997 if ((tun->flags & TUN_TYPE_MASK) != TUN_TAP_DEV)
1998 break;
1999 ret = -EFAULT;
Jason Wang54f968d2012-10-31 19:45:57 +00002000 if (copy_from_user(&tun->fprog, argp, sizeof(tun->fprog)))
Michael S. Tsirkin99405162010-02-14 01:01:10 +00002001 break;
2002
Jason Wangc8d68e62012-10-31 19:46:00 +00002003 ret = tun_attach_filter(tun);
Michael S. Tsirkin99405162010-02-14 01:01:10 +00002004 break;
2005
2006 case TUNDETACHFILTER:
2007 /* Can be set only for TAPs */
2008 ret = -EINVAL;
2009 if ((tun->flags & TUN_TYPE_MASK) != TUN_TAP_DEV)
2010 break;
Jason Wangc8d68e62012-10-31 19:46:00 +00002011 ret = 0;
2012 tun_detach_filter(tun, tun->numqueues);
Michael S. Tsirkin99405162010-02-14 01:01:10 +00002013 break;
2014
Linus Torvalds1da177e2005-04-16 15:20:36 -07002015 default:
Eric W. Biederman631ab462009-01-20 11:00:40 +00002016 ret = -EINVAL;
2017 break;
Joe Perchesee289b62010-05-17 22:47:34 -07002018 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002019
Herbert Xu876bfd42009-08-06 14:22:44 +00002020unlock:
2021 rtnl_unlock();
2022 if (tun)
2023 tun_put(tun);
Eric W. Biederman631ab462009-01-20 11:00:40 +00002024 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002025}
2026
Arnd Bergmann50857e22009-11-06 22:52:32 -08002027static long tun_chr_ioctl(struct file *file,
2028 unsigned int cmd, unsigned long arg)
2029{
2030 return __tun_chr_ioctl(file, cmd, arg, sizeof (struct ifreq));
2031}
2032
2033#ifdef CONFIG_COMPAT
2034static long tun_chr_compat_ioctl(struct file *file,
2035 unsigned int cmd, unsigned long arg)
2036{
2037 switch (cmd) {
2038 case TUNSETIFF:
2039 case TUNGETIFF:
2040 case TUNSETTXFILTER:
2041 case TUNGETSNDBUF:
2042 case TUNSETSNDBUF:
2043 case SIOCGIFHWADDR:
2044 case SIOCSIFHWADDR:
2045 arg = (unsigned long)compat_ptr(arg);
2046 break;
2047 default:
2048 arg = (compat_ulong_t)arg;
2049 break;
2050 }
2051
2052 /*
2053 * compat_ifreq is shorter than ifreq, so we must not access beyond
2054 * the end of that structure. All fields that are used in this
2055 * driver are compatible though, we don't need to convert the
2056 * contents.
2057 */
2058 return __tun_chr_ioctl(file, cmd, arg, sizeof(struct compat_ifreq));
2059}
2060#endif /* CONFIG_COMPAT */
2061
Linus Torvalds1da177e2005-04-16 15:20:36 -07002062static int tun_chr_fasync(int fd, struct file *file, int on)
2063{
Jason Wang54f968d2012-10-31 19:45:57 +00002064 struct tun_file *tfile = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002065 int ret;
2066
Jason Wang54f968d2012-10-31 19:45:57 +00002067 if ((ret = fasync_helper(fd, file, on, &tfile->fasync)) < 0)
Jonathan Corbet9d319522008-06-19 15:50:37 -06002068 goto out;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002069
Linus Torvalds1da177e2005-04-16 15:20:36 -07002070 if (on) {
Eric W. Biederman609d7fa2006-10-02 02:17:15 -07002071 ret = __f_setown(file, task_pid(current), PIDTYPE_PID, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002072 if (ret)
Jonathan Corbet9d319522008-06-19 15:50:37 -06002073 goto out;
Jason Wang54f968d2012-10-31 19:45:57 +00002074 tfile->flags |= TUN_FASYNC;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002075 } else
Jason Wang54f968d2012-10-31 19:45:57 +00002076 tfile->flags &= ~TUN_FASYNC;
Jonathan Corbet9d319522008-06-19 15:50:37 -06002077 ret = 0;
2078out:
Jonathan Corbet9d319522008-06-19 15:50:37 -06002079 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002080}
2081
2082static int tun_chr_open(struct inode *inode, struct file * file)
2083{
Eric W. Biederman631ab462009-01-20 11:00:40 +00002084 struct tun_file *tfile;
Thomas Gleixnerdeed49f2009-10-14 01:19:46 -07002085
Joe Perches6b8a66e2011-03-02 07:18:10 +00002086 DBG1(KERN_INFO, "tunX: tun_chr_open\n");
Eric W. Biederman631ab462009-01-20 11:00:40 +00002087
Jason Wang54f968d2012-10-31 19:45:57 +00002088 tfile = (struct tun_file *)sk_alloc(&init_net, AF_UNSPEC, GFP_KERNEL,
2089 &tun_proto);
Eric W. Biederman631ab462009-01-20 11:00:40 +00002090 if (!tfile)
2091 return -ENOMEM;
Jason Wang6e914fc2012-10-31 19:45:58 +00002092 rcu_assign_pointer(tfile->tun, NULL);
Eric W. Biederman36b50ba2009-01-20 11:01:48 +00002093 tfile->net = get_net(current->nsproxy->net_ns);
Jason Wang54f968d2012-10-31 19:45:57 +00002094 tfile->flags = 0;
2095
2096 rcu_assign_pointer(tfile->socket.wq, &tfile->wq);
2097 init_waitqueue_head(&tfile->wq.wait);
2098
2099 tfile->socket.file = file;
2100 tfile->socket.ops = &tun_socket_ops;
2101
2102 sock_init_data(&tfile->socket, &tfile->sk);
2103 sk_change_net(&tfile->sk, tfile->net);
2104
2105 tfile->sk.sk_write_space = tun_sock_write_space;
2106 tfile->sk.sk_sndbuf = INT_MAX;
2107
Eric W. Biederman631ab462009-01-20 11:00:40 +00002108 file->private_data = tfile;
Jason Wang54f968d2012-10-31 19:45:57 +00002109 set_bit(SOCK_EXTERNALLY_ALLOCATED, &tfile->socket.flags);
Jason Wang4008e972012-12-13 23:53:30 +00002110 INIT_LIST_HEAD(&tfile->next);
Jason Wang54f968d2012-10-31 19:45:57 +00002111
Linus Torvalds1da177e2005-04-16 15:20:36 -07002112 return 0;
2113}
2114
2115static int tun_chr_close(struct inode *inode, struct file *file)
2116{
Eric W. Biederman631ab462009-01-20 11:00:40 +00002117 struct tun_file *tfile = file->private_data;
Jason Wang54f968d2012-10-31 19:45:57 +00002118 struct net *net = tfile->net;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002119
Jason Wangc8d68e62012-10-31 19:46:00 +00002120 tun_detach(tfile, true);
Jason Wang54f968d2012-10-31 19:45:57 +00002121 put_net(net);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002122
2123 return 0;
2124}
2125
Arjan van de Vend54b1fd2007-02-12 00:55:34 -08002126static const struct file_operations tun_fops = {
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002127 .owner = THIS_MODULE,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002128 .llseek = no_llseek,
Badari Pulavartyee0b3e62006-09-30 23:28:47 -07002129 .read = do_sync_read,
2130 .aio_read = tun_chr_aio_read,
2131 .write = do_sync_write,
2132 .aio_write = tun_chr_aio_write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002133 .poll = tun_chr_poll,
Arnd Bergmann50857e22009-11-06 22:52:32 -08002134 .unlocked_ioctl = tun_chr_ioctl,
2135#ifdef CONFIG_COMPAT
2136 .compat_ioctl = tun_chr_compat_ioctl,
2137#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002138 .open = tun_chr_open,
2139 .release = tun_chr_close,
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002140 .fasync = tun_chr_fasync
Linus Torvalds1da177e2005-04-16 15:20:36 -07002141};
2142
2143static struct miscdevice tun_miscdev = {
2144 .minor = TUN_MINOR,
2145 .name = "tun",
Kay Sieverse454cea2009-09-18 23:01:12 +02002146 .nodename = "net/tun",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002147 .fops = &tun_fops,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002148};
2149
2150/* ethtool interface */
2151
2152static int tun_get_settings(struct net_device *dev, struct ethtool_cmd *cmd)
2153{
2154 cmd->supported = 0;
2155 cmd->advertising = 0;
David Decotigny70739492011-04-27 18:32:40 +00002156 ethtool_cmd_speed_set(cmd, SPEED_10);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002157 cmd->duplex = DUPLEX_FULL;
2158 cmd->port = PORT_TP;
2159 cmd->phy_address = 0;
2160 cmd->transceiver = XCVR_INTERNAL;
2161 cmd->autoneg = AUTONEG_DISABLE;
2162 cmd->maxtxpkt = 0;
2163 cmd->maxrxpkt = 0;
2164 return 0;
2165}
2166
2167static void tun_get_drvinfo(struct net_device *dev, struct ethtool_drvinfo *info)
2168{
2169 struct tun_struct *tun = netdev_priv(dev);
2170
Rick Jones33a5ba12011-11-15 14:59:53 +00002171 strlcpy(info->driver, DRV_NAME, sizeof(info->driver));
2172 strlcpy(info->version, DRV_VERSION, sizeof(info->version));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002173
2174 switch (tun->flags & TUN_TYPE_MASK) {
2175 case TUN_TUN_DEV:
Rick Jones33a5ba12011-11-15 14:59:53 +00002176 strlcpy(info->bus_info, "tun", sizeof(info->bus_info));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002177 break;
2178 case TUN_TAP_DEV:
Rick Jones33a5ba12011-11-15 14:59:53 +00002179 strlcpy(info->bus_info, "tap", sizeof(info->bus_info));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002180 break;
2181 }
2182}
2183
2184static u32 tun_get_msglevel(struct net_device *dev)
2185{
2186#ifdef TUN_DEBUG
2187 struct tun_struct *tun = netdev_priv(dev);
2188 return tun->debug;
2189#else
2190 return -EOPNOTSUPP;
2191#endif
2192}
2193
2194static void tun_set_msglevel(struct net_device *dev, u32 value)
2195{
2196#ifdef TUN_DEBUG
2197 struct tun_struct *tun = netdev_priv(dev);
2198 tun->debug = value;
2199#endif
2200}
2201
Jeff Garzik7282d492006-09-13 14:30:00 -04002202static const struct ethtool_ops tun_ethtool_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002203 .get_settings = tun_get_settings,
2204 .get_drvinfo = tun_get_drvinfo,
2205 .get_msglevel = tun_get_msglevel,
2206 .set_msglevel = tun_set_msglevel,
Nolan Leakebee31362010-07-27 13:53:43 +00002207 .get_link = ethtool_op_get_link,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002208};
2209
Pavel Emelyanov79d17602008-04-16 00:40:46 -07002210
Linus Torvalds1da177e2005-04-16 15:20:36 -07002211static int __init tun_init(void)
2212{
2213 int ret = 0;
2214
Joe Perches6b8a66e2011-03-02 07:18:10 +00002215 pr_info("%s, %s\n", DRV_DESCRIPTION, DRV_VERSION);
2216 pr_info("%s\n", DRV_COPYRIGHT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002217
Eric W. Biedermanf019a7a2009-01-21 16:02:16 -08002218 ret = rtnl_link_register(&tun_link_ops);
Pavel Emelyanov79d17602008-04-16 00:40:46 -07002219 if (ret) {
Joe Perches6b8a66e2011-03-02 07:18:10 +00002220 pr_err("Can't register link_ops\n");
Eric W. Biedermanf019a7a2009-01-21 16:02:16 -08002221 goto err_linkops;
Pavel Emelyanov79d17602008-04-16 00:40:46 -07002222 }
2223
Linus Torvalds1da177e2005-04-16 15:20:36 -07002224 ret = misc_register(&tun_miscdev);
Pavel Emelyanov79d17602008-04-16 00:40:46 -07002225 if (ret) {
Joe Perches6b8a66e2011-03-02 07:18:10 +00002226 pr_err("Can't register misc device %d\n", TUN_MINOR);
Pavel Emelyanov79d17602008-04-16 00:40:46 -07002227 goto err_misc;
2228 }
Eric W. Biedermanf019a7a2009-01-21 16:02:16 -08002229 return 0;
Pavel Emelyanov79d17602008-04-16 00:40:46 -07002230err_misc:
Eric W. Biedermanf019a7a2009-01-21 16:02:16 -08002231 rtnl_link_unregister(&tun_link_ops);
2232err_linkops:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002233 return ret;
2234}
2235
2236static void tun_cleanup(void)
2237{
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002238 misc_deregister(&tun_miscdev);
Eric W. Biedermanf019a7a2009-01-21 16:02:16 -08002239 rtnl_link_unregister(&tun_link_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002240}
2241
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00002242/* Get an underlying socket object from tun file. Returns error unless file is
2243 * attached to a device. The returned object works like a packet socket, it
2244 * can be used for sock_sendmsg/sock_recvmsg. The caller is responsible for
2245 * holding a reference to the file for as long as the socket is in use. */
2246struct socket *tun_get_socket(struct file *file)
2247{
Jason Wang6e914fc2012-10-31 19:45:58 +00002248 struct tun_file *tfile;
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00002249 if (file->f_op != &tun_fops)
2250 return ERR_PTR(-EINVAL);
Jason Wang6e914fc2012-10-31 19:45:58 +00002251 tfile = file->private_data;
2252 if (!tfile)
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00002253 return ERR_PTR(-EBADFD);
Jason Wang54f968d2012-10-31 19:45:57 +00002254 return &tfile->socket;
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00002255}
2256EXPORT_SYMBOL_GPL(tun_get_socket);
2257
Linus Torvalds1da177e2005-04-16 15:20:36 -07002258module_init(tun_init);
2259module_exit(tun_cleanup);
2260MODULE_DESCRIPTION(DRV_DESCRIPTION);
2261MODULE_AUTHOR(DRV_COPYRIGHT);
2262MODULE_LICENSE("GPL");
2263MODULE_ALIAS_MISCDEV(TUN_MINOR);
Kay Sievers578454f2010-05-20 18:07:20 +02002264MODULE_ALIAS("devname:net/tun");