blob: fbd106edbe59bdcae871e29d6fd70c993634cdea [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
407 tun = rcu_dereference_protected(tfile->tun,
408 lockdep_rtnl_is_held());
409 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);
417 ntfile = rcu_dereference_protected(tun->tfiles[index],
418 lockdep_rtnl_is_held());
419 ntfile->queue_index = index;
420
421 --tun->numqueues;
Jason Wang4008e972012-12-13 23:53:30 +0000422 if (clean)
423 sock_put(&tfile->sk);
424 else
425 tun_disable_queue(tun, tfile);
Jason Wangc8d68e62012-10-31 19:46:00 +0000426
427 synchronize_net();
Jason Wang96442e422012-10-31 19:46:02 +0000428 tun_flow_delete_by_queue(tun, tun->numqueues + 1);
Jason Wangc8d68e62012-10-31 19:46:00 +0000429 /* Drop read queue */
430 skb_queue_purge(&tfile->sk.sk_receive_queue);
431 tun_set_real_num_queues(tun);
Jason Wang4008e972012-12-13 23:53:30 +0000432 } else if (tfile->detached && clean)
433 tun = tun_enable_queue(tfile);
Jason Wangc8d68e62012-10-31 19:46:00 +0000434
435 if (clean) {
Jason Wang4008e972012-12-13 23:53:30 +0000436 if (tun && tun->numqueues == 0 && tun->numdisabled == 0 &&
437 !(tun->flags & TUN_PERSIST))
438 if (tun->dev->reg_state == NETREG_REGISTERED)
439 unregister_netdevice(tun->dev);
440
Jason Wangc8d68e62012-10-31 19:46:00 +0000441 BUG_ON(!test_bit(SOCK_EXTERNALLY_ALLOCATED,
442 &tfile->socket.flags));
443 sk_release_kernel(&tfile->sk);
444 }
445}
446
447static void tun_detach(struct tun_file *tfile, bool clean)
448{
449 rtnl_lock();
450 __tun_detach(tfile, clean);
451 rtnl_unlock();
452}
453
454static void tun_detach_all(struct net_device *dev)
455{
456 struct tun_struct *tun = netdev_priv(dev);
Jason Wang4008e972012-12-13 23:53:30 +0000457 struct tun_file *tfile, *tmp;
Jason Wangc8d68e62012-10-31 19:46:00 +0000458 int i, n = tun->numqueues;
459
460 for (i = 0; i < n; i++) {
461 tfile = rcu_dereference_protected(tun->tfiles[i],
462 lockdep_rtnl_is_held());
463 BUG_ON(!tfile);
464 wake_up_all(&tfile->wq.wait);
465 rcu_assign_pointer(tfile->tun, NULL);
466 --tun->numqueues;
467 }
468 BUG_ON(tun->numqueues != 0);
469
470 synchronize_net();
471 for (i = 0; i < n; i++) {
472 tfile = rcu_dereference_protected(tun->tfiles[i],
473 lockdep_rtnl_is_held());
474 /* Drop read queue */
475 skb_queue_purge(&tfile->sk.sk_receive_queue);
476 sock_put(&tfile->sk);
477 }
Jason Wang4008e972012-12-13 23:53:30 +0000478 list_for_each_entry_safe(tfile, tmp, &tun->disabled, next) {
479 tun_enable_queue(tfile);
480 skb_queue_purge(&tfile->sk.sk_receive_queue);
481 sock_put(&tfile->sk);
482 }
483 BUG_ON(tun->numdisabled != 0);
Jason Wangc8d68e62012-10-31 19:46:00 +0000484}
485
Eric W. Biedermana7385ba2009-01-20 10:57:48 +0000486static int tun_attach(struct tun_struct *tun, struct file *file)
487{
Eric W. Biederman631ab462009-01-20 11:00:40 +0000488 struct tun_file *tfile = file->private_data;
Eric W. Biederman38231b72009-01-20 11:02:28 +0000489 int err;
Eric W. Biedermana7385ba2009-01-20 10:57:48 +0000490
Eric W. Biederman38231b72009-01-20 11:02:28 +0000491 err = -EINVAL;
Jason Wangc8d68e62012-10-31 19:46:00 +0000492 if (rcu_dereference_protected(tfile->tun, lockdep_rtnl_is_held()))
Eric W. Biederman38231b72009-01-20 11:02:28 +0000493 goto out;
494
495 err = -EBUSY;
Jason Wangc8d68e62012-10-31 19:46:00 +0000496 if (!(tun->flags & TUN_TAP_MQ) && tun->numqueues == 1)
497 goto out;
498
499 err = -E2BIG;
Jason Wang4008e972012-12-13 23:53:30 +0000500 if (!tfile->detached &&
501 tun->numqueues + tun->numdisabled == MAX_TAP_QUEUES)
Eric W. Biederman38231b72009-01-20 11:02:28 +0000502 goto out;
503
504 err = 0;
Jason Wang54f968d2012-10-31 19:45:57 +0000505
Jason Wangc8d68e62012-10-31 19:46:00 +0000506 /* Re-attach the filter to presist device */
Jason Wang54f968d2012-10-31 19:45:57 +0000507 if (tun->filter_attached == true) {
508 err = sk_attach_filter(&tun->fprog, tfile->socket.sk);
509 if (!err)
510 goto out;
511 }
Jason Wangc8d68e62012-10-31 19:46:00 +0000512 tfile->queue_index = tun->numqueues;
Jason Wang6e914fc2012-10-31 19:45:58 +0000513 rcu_assign_pointer(tfile->tun, tun);
Jason Wangc8d68e62012-10-31 19:46:00 +0000514 rcu_assign_pointer(tun->tfiles[tun->numqueues], tfile);
Jason Wangc8d68e62012-10-31 19:46:00 +0000515 tun->numqueues++;
516
Jason Wang4008e972012-12-13 23:53:30 +0000517 if (tfile->detached)
518 tun_enable_queue(tfile);
519 else
520 sock_hold(&tfile->sk);
521
Jason Wangc8d68e62012-10-31 19:46:00 +0000522 tun_set_real_num_queues(tun);
523
Jason Wangc8d68e62012-10-31 19:46:00 +0000524 /* device is allowed to go away first, so no need to hold extra
525 * refcnt.
526 */
Eric W. Biedermana7385ba2009-01-20 10:57:48 +0000527
Eric W. Biederman38231b72009-01-20 11:02:28 +0000528out:
Eric W. Biederman38231b72009-01-20 11:02:28 +0000529 return err;
Eric W. Biedermana7385ba2009-01-20 10:57:48 +0000530}
531
Eric W. Biederman631ab462009-01-20 11:00:40 +0000532static struct tun_struct *__tun_get(struct tun_file *tfile)
533{
Jason Wang6e914fc2012-10-31 19:45:58 +0000534 struct tun_struct *tun;
Eric W. Biedermanc70f1822009-01-20 11:07:17 +0000535
Jason Wang6e914fc2012-10-31 19:45:58 +0000536 rcu_read_lock();
537 tun = rcu_dereference(tfile->tun);
538 if (tun)
539 dev_hold(tun->dev);
540 rcu_read_unlock();
Eric W. Biedermanc70f1822009-01-20 11:07:17 +0000541
542 return tun;
Eric W. Biederman631ab462009-01-20 11:00:40 +0000543}
544
545static struct tun_struct *tun_get(struct file *file)
546{
547 return __tun_get(file->private_data);
548}
549
550static void tun_put(struct tun_struct *tun)
551{
Jason Wang6e914fc2012-10-31 19:45:58 +0000552 dev_put(tun->dev);
Eric W. Biederman631ab462009-01-20 11:00:40 +0000553}
554
Joe Perches6b8a66e2011-03-02 07:18:10 +0000555/* TAP filtering */
Max Krasnyanskyf271b2c2008-07-14 22:18:19 -0700556static void addr_hash_set(u32 *mask, const u8 *addr)
557{
558 int n = ether_crc(ETH_ALEN, addr) >> 26;
559 mask[n >> 5] |= (1 << (n & 31));
560}
561
562static unsigned int addr_hash_test(const u32 *mask, const u8 *addr)
563{
564 int n = ether_crc(ETH_ALEN, addr) >> 26;
565 return mask[n >> 5] & (1 << (n & 31));
566}
567
568static int update_filter(struct tap_filter *filter, void __user *arg)
569{
570 struct { u8 u[ETH_ALEN]; } *addr;
571 struct tun_filter uf;
572 int err, alen, n, nexact;
573
574 if (copy_from_user(&uf, arg, sizeof(uf)))
575 return -EFAULT;
576
577 if (!uf.count) {
578 /* Disabled */
579 filter->count = 0;
580 return 0;
581 }
582
583 alen = ETH_ALEN * uf.count;
584 addr = kmalloc(alen, GFP_KERNEL);
585 if (!addr)
586 return -ENOMEM;
587
588 if (copy_from_user(addr, arg + sizeof(uf), alen)) {
589 err = -EFAULT;
590 goto done;
591 }
592
593 /* The filter is updated without holding any locks. Which is
594 * perfectly safe. We disable it first and in the worst
595 * case we'll accept a few undesired packets. */
596 filter->count = 0;
597 wmb();
598
599 /* Use first set of addresses as an exact filter */
600 for (n = 0; n < uf.count && n < FLT_EXACT_COUNT; n++)
601 memcpy(filter->addr[n], addr[n].u, ETH_ALEN);
602
603 nexact = n;
604
Alex Williamsoncfbf84f2009-02-08 17:49:17 -0800605 /* Remaining multicast addresses are hashed,
606 * unicast will leave the filter disabled. */
Max Krasnyanskyf271b2c2008-07-14 22:18:19 -0700607 memset(filter->mask, 0, sizeof(filter->mask));
Alex Williamsoncfbf84f2009-02-08 17:49:17 -0800608 for (; n < uf.count; n++) {
609 if (!is_multicast_ether_addr(addr[n].u)) {
610 err = 0; /* no filter */
611 goto done;
612 }
Max Krasnyanskyf271b2c2008-07-14 22:18:19 -0700613 addr_hash_set(filter->mask, addr[n].u);
Alex Williamsoncfbf84f2009-02-08 17:49:17 -0800614 }
Max Krasnyanskyf271b2c2008-07-14 22:18:19 -0700615
616 /* For ALLMULTI just set the mask to all ones.
617 * This overrides the mask populated above. */
618 if ((uf.flags & TUN_FLT_ALLMULTI))
619 memset(filter->mask, ~0, sizeof(filter->mask));
620
621 /* Now enable the filter */
622 wmb();
623 filter->count = nexact;
624
625 /* Return the number of exact filters */
626 err = nexact;
627
628done:
629 kfree(addr);
630 return err;
631}
632
633/* Returns: 0 - drop, !=0 - accept */
634static int run_filter(struct tap_filter *filter, const struct sk_buff *skb)
635{
636 /* Cannot use eth_hdr(skb) here because skb_mac_hdr() is incorrect
637 * at this point. */
638 struct ethhdr *eh = (struct ethhdr *) skb->data;
639 int i;
640
641 /* Exact match */
642 for (i = 0; i < filter->count; i++)
Joe Perches2e42e472012-05-09 17:17:46 +0000643 if (ether_addr_equal(eh->h_dest, filter->addr[i]))
Max Krasnyanskyf271b2c2008-07-14 22:18:19 -0700644 return 1;
645
646 /* Inexact match (multicast only) */
647 if (is_multicast_ether_addr(eh->h_dest))
648 return addr_hash_test(filter->mask, eh->h_dest);
649
650 return 0;
651}
652
653/*
654 * Checks whether the packet is accepted or not.
655 * Returns: 0 - drop, !=0 - accept
656 */
657static int check_filter(struct tap_filter *filter, const struct sk_buff *skb)
658{
659 if (!filter->count)
660 return 1;
661
662 return run_filter(filter, skb);
663}
664
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665/* Network device part of the driver */
666
Jeff Garzik7282d492006-09-13 14:30:00 -0400667static const struct ethtool_ops tun_ethtool_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668
Eric W. Biedermanc70f1822009-01-20 11:07:17 +0000669/* Net device detach from fd. */
670static void tun_net_uninit(struct net_device *dev)
671{
Jason Wangc8d68e62012-10-31 19:46:00 +0000672 tun_detach_all(dev);
Eric W. Biedermanc70f1822009-01-20 11:07:17 +0000673}
674
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675/* Net device open. */
676static int tun_net_open(struct net_device *dev)
677{
Jason Wangc8d68e62012-10-31 19:46:00 +0000678 netif_tx_start_all_queues(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679 return 0;
680}
681
682/* Net device close. */
683static int tun_net_close(struct net_device *dev)
684{
Jason Wangc8d68e62012-10-31 19:46:00 +0000685 netif_tx_stop_all_queues(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686 return 0;
687}
688
689/* Net device start xmit */
Stephen Hemminger424efe92009-08-31 19:50:51 +0000690static netdev_tx_t tun_net_xmit(struct sk_buff *skb, struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691{
692 struct tun_struct *tun = netdev_priv(dev);
Jason Wangc8d68e62012-10-31 19:46:00 +0000693 int txq = skb->queue_mapping;
Jason Wang6e914fc2012-10-31 19:45:58 +0000694 struct tun_file *tfile;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695
Jason Wang6e914fc2012-10-31 19:45:58 +0000696 rcu_read_lock();
Jason Wangc8d68e62012-10-31 19:46:00 +0000697 tfile = rcu_dereference(tun->tfiles[txq]);
698
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699 /* Drop packet if interface is not attached */
Jason Wangc8d68e62012-10-31 19:46:00 +0000700 if (txq >= tun->numqueues)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701 goto drop;
702
Jason Wang6e914fc2012-10-31 19:45:58 +0000703 tun_debug(KERN_INFO, tun, "tun_net_xmit %d\n", skb->len);
704
Jason Wangc8d68e62012-10-31 19:46:00 +0000705 BUG_ON(!tfile);
706
Max Krasnyanskyf271b2c2008-07-14 22:18:19 -0700707 /* Drop if the filter does not like it.
708 * This is a noop if the filter is disabled.
709 * Filter can be enabled only for the TAP devices. */
710 if (!check_filter(&tun->txflt, skb))
711 goto drop;
712
Jason Wang54f968d2012-10-31 19:45:57 +0000713 if (tfile->socket.sk->sk_filter &&
714 sk_filter(tfile->socket.sk, skb))
Michael S. Tsirkin99405162010-02-14 01:01:10 +0000715 goto drop;
716
Rami Rosen36fe8c092012-11-25 22:07:40 +0000717 /* Limit the number of packets queued by dividing txq length with the
Jason Wangc8d68e62012-10-31 19:46:00 +0000718 * number of queues.
719 */
Jason Wang54f968d2012-10-31 19:45:57 +0000720 if (skb_queue_len(&tfile->socket.sk->sk_receive_queue)
Michael S. Tsirkin5d097102012-12-03 10:07:14 +0000721 >= dev->tx_queue_len / tun->numqueues)
722 goto drop;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723
Michael S. Tsirkin0110d6f2010-04-13 04:59:44 +0000724 /* Orphan the skb - required as we might hang on to it
725 * for indefinite time. */
Michael S. Tsirkin868eefe2012-07-20 09:23:14 +0000726 if (unlikely(skb_orphan_frags(skb, GFP_ATOMIC)))
727 goto drop;
Michael S. Tsirkin0110d6f2010-04-13 04:59:44 +0000728 skb_orphan(skb);
729
Max Krasnyanskyf271b2c2008-07-14 22:18:19 -0700730 /* Enqueue packet */
Jason Wang54f968d2012-10-31 19:45:57 +0000731 skb_queue_tail(&tfile->socket.sk->sk_receive_queue, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732
733 /* Notify and wake up reader process */
Jason Wang54f968d2012-10-31 19:45:57 +0000734 if (tfile->flags & TUN_FASYNC)
735 kill_fasync(&tfile->fasync, SIGIO, POLL_IN);
736 wake_up_interruptible_poll(&tfile->wq.wait, POLLIN |
Michael S. Tsirkin05c28282010-01-14 06:17:09 +0000737 POLLRDNORM | POLLRDBAND);
Jason Wang6e914fc2012-10-31 19:45:58 +0000738
739 rcu_read_unlock();
Patrick McHardy6ed10652009-06-23 06:03:08 +0000740 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741
742drop:
Jeff Garzik09f75cd2007-10-03 17:41:50 -0700743 dev->stats.tx_dropped++;
Michael S. Tsirkin149d36f2012-11-01 09:16:32 +0000744 skb_tx_error(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745 kfree_skb(skb);
Jason Wang6e914fc2012-10-31 19:45:58 +0000746 rcu_read_unlock();
Patrick McHardy6ed10652009-06-23 06:03:08 +0000747 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748}
749
Max Krasnyanskyf271b2c2008-07-14 22:18:19 -0700750static void tun_net_mclist(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751{
Max Krasnyanskyf271b2c2008-07-14 22:18:19 -0700752 /*
753 * This callback is supposed to deal with mc filter in
754 * _rx_ path and has nothing to do with the _tx_ path.
755 * In rx path we always accept everything userspace gives us.
756 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757}
758
Ed Swierk4885a502007-09-16 12:21:38 -0700759#define MIN_MTU 68
760#define MAX_MTU 65535
761
762static int
763tun_net_change_mtu(struct net_device *dev, int new_mtu)
764{
765 if (new_mtu < MIN_MTU || new_mtu + dev->hard_header_len > MAX_MTU)
766 return -EINVAL;
767 dev->mtu = new_mtu;
768 return 0;
769}
770
Michał Mirosławc8f44af2011-11-15 15:29:55 +0000771static netdev_features_t tun_net_fix_features(struct net_device *dev,
772 netdev_features_t features)
Michał Mirosław88255372011-04-19 06:13:10 +0000773{
774 struct tun_struct *tun = netdev_priv(dev);
775
776 return (features & tun->set_features) | (features & ~TUN_USER_FEATURES);
777}
Neil Hormanbebd0972011-06-15 05:25:01 +0000778#ifdef CONFIG_NET_POLL_CONTROLLER
779static void tun_poll_controller(struct net_device *dev)
780{
781 /*
782 * Tun only receives frames when:
783 * 1) the char device endpoint gets data from user space
784 * 2) the tun socket gets a sendmsg call from user space
785 * Since both of those are syncronous operations, we are guaranteed
786 * never to have pending data when we poll for it
787 * so theres nothing to do here but return.
788 * We need this though so netpoll recognizes us as an interface that
789 * supports polling, which enables bridge devices in virt setups to
790 * still use netconsole
791 */
792 return;
793}
794#endif
Stephen Hemminger758e43b2008-11-19 22:10:37 -0800795static const struct net_device_ops tun_netdev_ops = {
Eric W. Biedermanc70f1822009-01-20 11:07:17 +0000796 .ndo_uninit = tun_net_uninit,
Stephen Hemminger758e43b2008-11-19 22:10:37 -0800797 .ndo_open = tun_net_open,
798 .ndo_stop = tun_net_close,
Stephen Hemminger00829822008-11-20 20:14:53 -0800799 .ndo_start_xmit = tun_net_xmit,
Stephen Hemminger758e43b2008-11-19 22:10:37 -0800800 .ndo_change_mtu = tun_net_change_mtu,
Michał Mirosław88255372011-04-19 06:13:10 +0000801 .ndo_fix_features = tun_net_fix_features,
Jason Wangc8d68e62012-10-31 19:46:00 +0000802 .ndo_select_queue = tun_select_queue,
Neil Hormanbebd0972011-06-15 05:25:01 +0000803#ifdef CONFIG_NET_POLL_CONTROLLER
804 .ndo_poll_controller = tun_poll_controller,
805#endif
Stephen Hemminger758e43b2008-11-19 22:10:37 -0800806};
807
808static const struct net_device_ops tap_netdev_ops = {
Eric W. Biedermanc70f1822009-01-20 11:07:17 +0000809 .ndo_uninit = tun_net_uninit,
Stephen Hemminger758e43b2008-11-19 22:10:37 -0800810 .ndo_open = tun_net_open,
811 .ndo_stop = tun_net_close,
Stephen Hemminger00829822008-11-20 20:14:53 -0800812 .ndo_start_xmit = tun_net_xmit,
Stephen Hemminger758e43b2008-11-19 22:10:37 -0800813 .ndo_change_mtu = tun_net_change_mtu,
Michał Mirosław88255372011-04-19 06:13:10 +0000814 .ndo_fix_features = tun_net_fix_features,
Jiri Pirkoafc4b132011-08-16 06:29:01 +0000815 .ndo_set_rx_mode = tun_net_mclist,
Stephen Hemminger758e43b2008-11-19 22:10:37 -0800816 .ndo_set_mac_address = eth_mac_addr,
817 .ndo_validate_addr = eth_validate_addr,
Jason Wangc8d68e62012-10-31 19:46:00 +0000818 .ndo_select_queue = tun_select_queue,
Neil Hormanbebd0972011-06-15 05:25:01 +0000819#ifdef CONFIG_NET_POLL_CONTROLLER
820 .ndo_poll_controller = tun_poll_controller,
821#endif
Stephen Hemminger758e43b2008-11-19 22:10:37 -0800822};
823
Jason Wang96442e422012-10-31 19:46:02 +0000824static int tun_flow_init(struct tun_struct *tun)
825{
826 int i;
827
Jason Wang96442e422012-10-31 19:46:02 +0000828 for (i = 0; i < TUN_NUM_FLOW_ENTRIES; i++)
829 INIT_HLIST_HEAD(&tun->flows[i]);
830
831 tun->ageing_time = TUN_FLOW_EXPIRE;
832 setup_timer(&tun->flow_gc_timer, tun_flow_cleanup, (unsigned long)tun);
833 mod_timer(&tun->flow_gc_timer,
834 round_jiffies_up(jiffies + tun->ageing_time));
835
836 return 0;
837}
838
839static void tun_flow_uninit(struct tun_struct *tun)
840{
841 del_timer_sync(&tun->flow_gc_timer);
842 tun_flow_flush(tun);
Jason Wang96442e422012-10-31 19:46:02 +0000843}
844
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845/* Initialize net device. */
846static void tun_net_init(struct net_device *dev)
847{
848 struct tun_struct *tun = netdev_priv(dev);
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400849
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850 switch (tun->flags & TUN_TYPE_MASK) {
851 case TUN_TUN_DEV:
Stephen Hemminger758e43b2008-11-19 22:10:37 -0800852 dev->netdev_ops = &tun_netdev_ops;
853
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854 /* Point-to-Point TUN Device */
855 dev->hard_header_len = 0;
856 dev->addr_len = 0;
857 dev->mtu = 1500;
858
859 /* Zero header length */
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400860 dev->type = ARPHRD_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861 dev->flags = IFF_POINTOPOINT | IFF_NOARP | IFF_MULTICAST;
862 dev->tx_queue_len = TUN_READQ_SIZE; /* We prefer our own queue length */
863 break;
864
865 case TUN_TAP_DEV:
Kusanagi Kouichi7a0a9602008-12-29 18:23:28 -0800866 dev->netdev_ops = &tap_netdev_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867 /* Ethernet TAP Device */
Max Krasnyanskyf271b2c2008-07-14 22:18:19 -0700868 ether_setup(dev);
Neil Horman550fd082011-07-26 06:05:38 +0000869 dev->priv_flags &= ~IFF_TX_SKB_SHARING;
stephen hemmingera6768472012-12-10 15:16:00 +0000870 dev->priv_flags |= IFF_LIVE_ADDR_CHANGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871
Danny Kukawkaf2cedb62012-02-15 06:45:39 +0000872 eth_hw_addr_random(dev);
Brian Braunstein36226a82007-04-26 01:00:55 -0700873
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874 dev->tx_queue_len = TUN_READQ_SIZE; /* We prefer our own queue length */
875 break;
876 }
877}
878
879/* Character device part */
880
881/* Poll */
Jason Wangc8d68e62012-10-31 19:46:00 +0000882static unsigned int tun_chr_poll(struct file *file, poll_table *wait)
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400883{
Eric W. Biedermanb2430de2009-01-20 11:03:21 +0000884 struct tun_file *tfile = file->private_data;
885 struct tun_struct *tun = __tun_get(tfile);
Mariusz Kozlowski3c8a9c62009-07-05 19:48:35 +0000886 struct sock *sk;
Herbert Xu33dccbb2009-02-05 21:25:32 -0800887 unsigned int mask = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888
889 if (!tun)
Eric W. Biedermaneac9e902009-01-20 10:59:05 +0000890 return POLLERR;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891
Jason Wang54f968d2012-10-31 19:45:57 +0000892 sk = tfile->socket.sk;
Mariusz Kozlowski3c8a9c62009-07-05 19:48:35 +0000893
Joe Perches6b8a66e2011-03-02 07:18:10 +0000894 tun_debug(KERN_INFO, tun, "tun_chr_poll\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895
Jason Wang54f968d2012-10-31 19:45:57 +0000896 poll_wait(file, &tfile->wq.wait, wait);
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400897
Michael S. Tsirkin89f56d12009-08-30 07:04:42 +0000898 if (!skb_queue_empty(&sk->sk_receive_queue))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899 mask |= POLLIN | POLLRDNORM;
900
Herbert Xu33dccbb2009-02-05 21:25:32 -0800901 if (sock_writeable(sk) ||
902 (!test_and_set_bit(SOCK_ASYNC_NOSPACE, &sk->sk_socket->flags) &&
903 sock_writeable(sk)))
904 mask |= POLLOUT | POLLWRNORM;
905
Eric W. Biedermanc70f1822009-01-20 11:07:17 +0000906 if (tun->dev->reg_state != NETREG_REGISTERED)
907 mask = POLLERR;
908
Eric W. Biederman631ab462009-01-20 11:00:40 +0000909 tun_put(tun);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910 return mask;
911}
912
Rusty Russellf42157c2008-08-15 15:15:10 -0700913/* prepad is the amount to reserve at front. len is length after that.
914 * linear is a hint as to how much to copy (usually headers). */
Jason Wang54f968d2012-10-31 19:45:57 +0000915static struct sk_buff *tun_alloc_skb(struct tun_file *tfile,
stephen hemminger6f7c1562011-06-08 14:33:08 +0000916 size_t prepad, size_t len,
917 size_t linear, int noblock)
Rusty Russellf42157c2008-08-15 15:15:10 -0700918{
Jason Wang54f968d2012-10-31 19:45:57 +0000919 struct sock *sk = tfile->socket.sk;
Rusty Russellf42157c2008-08-15 15:15:10 -0700920 struct sk_buff *skb;
Herbert Xu33dccbb2009-02-05 21:25:32 -0800921 int err;
Rusty Russellf42157c2008-08-15 15:15:10 -0700922
923 /* Under a page? Don't bother with paged skb. */
Herbert Xu0eca93b2009-04-14 02:09:43 -0700924 if (prepad + len < PAGE_SIZE || !linear)
Herbert Xu33dccbb2009-02-05 21:25:32 -0800925 linear = len;
Rusty Russellf42157c2008-08-15 15:15:10 -0700926
Herbert Xu33dccbb2009-02-05 21:25:32 -0800927 skb = sock_alloc_send_pskb(sk, prepad + linear, len - linear, noblock,
928 &err);
Rusty Russellf42157c2008-08-15 15:15:10 -0700929 if (!skb)
Herbert Xu33dccbb2009-02-05 21:25:32 -0800930 return ERR_PTR(err);
Rusty Russellf42157c2008-08-15 15:15:10 -0700931
932 skb_reserve(skb, prepad);
933 skb_put(skb, linear);
Herbert Xu33dccbb2009-02-05 21:25:32 -0800934 skb->data_len = len - linear;
935 skb->len += len - linear;
Rusty Russellf42157c2008-08-15 15:15:10 -0700936
937 return skb;
938}
939
Michael S. Tsirkin06908992012-07-20 09:23:23 +0000940/* set skb frags from iovec, this can move to core network code for reuse */
941static int zerocopy_sg_from_iovec(struct sk_buff *skb, const struct iovec *from,
942 int offset, size_t count)
943{
944 int len = iov_length(from, count) - offset;
945 int copy = skb_headlen(skb);
946 int size, offset1 = 0;
947 int i = 0;
948
949 /* Skip over from offset */
950 while (count && (offset >= from->iov_len)) {
951 offset -= from->iov_len;
952 ++from;
953 --count;
954 }
955
956 /* copy up to skb headlen */
957 while (count && (copy > 0)) {
958 size = min_t(unsigned int, copy, from->iov_len - offset);
959 if (copy_from_user(skb->data + offset1, from->iov_base + offset,
960 size))
961 return -EFAULT;
962 if (copy > size) {
963 ++from;
964 --count;
965 offset = 0;
966 } else
967 offset += size;
968 copy -= size;
969 offset1 += size;
970 }
971
972 if (len == offset1)
973 return 0;
974
975 while (count--) {
976 struct page *page[MAX_SKB_FRAGS];
977 int num_pages;
978 unsigned long base;
979 unsigned long truesize;
980
981 len = from->iov_len - offset;
982 if (!len) {
983 offset = 0;
984 ++from;
985 continue;
986 }
987 base = (unsigned long)from->iov_base + offset;
988 size = ((base & ~PAGE_MASK) + len + ~PAGE_MASK) >> PAGE_SHIFT;
989 if (i + size > MAX_SKB_FRAGS)
990 return -EMSGSIZE;
991 num_pages = get_user_pages_fast(base, size, 0, &page[i]);
992 if (num_pages != size) {
993 for (i = 0; i < num_pages; i++)
994 put_page(page[i]);
995 return -EFAULT;
996 }
997 truesize = size * PAGE_SIZE;
998 skb->data_len += len;
999 skb->len += len;
1000 skb->truesize += truesize;
1001 atomic_add(truesize, &skb->sk->sk_wmem_alloc);
1002 while (len) {
1003 int off = base & ~PAGE_MASK;
1004 int size = min_t(int, len, PAGE_SIZE - off);
1005 __skb_fill_page_desc(skb, i, page[i], off, size);
1006 skb_shinfo(skb)->nr_frags++;
1007 /* increase sk_wmem_alloc */
1008 base += size;
1009 len -= size;
1010 i++;
1011 }
1012 offset = 0;
1013 ++from;
1014 }
1015 return 0;
1016}
1017
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018/* Get packet from user space buffer */
Jason Wang54f968d2012-10-31 19:45:57 +00001019static ssize_t tun_get_user(struct tun_struct *tun, struct tun_file *tfile,
1020 void *msg_control, const struct iovec *iv,
1021 size_t total_len, size_t count, int noblock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022{
Harvey Harrison09640e62009-02-01 00:45:17 -08001023 struct tun_pi pi = { 0, cpu_to_be16(ETH_P_IP) };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024 struct sk_buff *skb;
Michael S. Tsirkin06908992012-07-20 09:23:23 +00001025 size_t len = total_len, align = NET_SKB_PAD;
Rusty Russellf43798c2008-07-03 03:48:02 -07001026 struct virtio_net_hdr gso = { 0 };
Michael S. Tsirkin6f26c9a2009-04-20 01:26:11 +00001027 int offset = 0;
Michael S. Tsirkin06908992012-07-20 09:23:23 +00001028 int copylen;
1029 bool zerocopy = false;
1030 int err;
Eric Dumazet49974422012-12-12 19:22:57 +00001031 u32 rxhash;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032
1033 if (!(tun->flags & TUN_NO_PI)) {
Michael S. Tsirkin06908992012-07-20 09:23:23 +00001034 if ((len -= sizeof(pi)) > total_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035 return -EINVAL;
1036
Michael S. Tsirkin6f26c9a2009-04-20 01:26:11 +00001037 if (memcpy_fromiovecend((void *)&pi, iv, 0, sizeof(pi)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038 return -EFAULT;
Michael S. Tsirkin6f26c9a2009-04-20 01:26:11 +00001039 offset += sizeof(pi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040 }
1041
Rusty Russellf43798c2008-07-03 03:48:02 -07001042 if (tun->flags & TUN_VNET_HDR) {
Michael S. Tsirkin06908992012-07-20 09:23:23 +00001043 if ((len -= tun->vnet_hdr_sz) > total_len)
Rusty Russellf43798c2008-07-03 03:48:02 -07001044 return -EINVAL;
1045
Michael S. Tsirkin6f26c9a2009-04-20 01:26:11 +00001046 if (memcpy_fromiovecend((void *)&gso, iv, offset, sizeof(gso)))
Rusty Russellf43798c2008-07-03 03:48:02 -07001047 return -EFAULT;
1048
Herbert Xu49091222009-06-08 00:20:01 -07001049 if ((gso.flags & VIRTIO_NET_HDR_F_NEEDS_CSUM) &&
1050 gso.csum_start + gso.csum_offset + 2 > gso.hdr_len)
1051 gso.hdr_len = gso.csum_start + gso.csum_offset + 2;
1052
Rusty Russellf43798c2008-07-03 03:48:02 -07001053 if (gso.hdr_len > len)
1054 return -EINVAL;
Michael S. Tsirkind9d52b52010-03-17 17:45:01 +02001055 offset += tun->vnet_hdr_sz;
Rusty Russellf43798c2008-07-03 03:48:02 -07001056 }
1057
Rusty Russelle01bf1c2008-04-12 18:49:30 -07001058 if ((tun->flags & TUN_TYPE_MASK) == TUN_TAP_DEV) {
stephen hemmingera504b862011-06-08 14:33:07 +00001059 align += NET_IP_ALIGN;
Herbert Xu0eca93b2009-04-14 02:09:43 -07001060 if (unlikely(len < ETH_HLEN ||
1061 (gso.hdr_len && gso.hdr_len < ETH_HLEN)))
Rusty Russelle01bf1c2008-04-12 18:49:30 -07001062 return -EINVAL;
1063 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001064
Michael S. Tsirkin06908992012-07-20 09:23:23 +00001065 if (msg_control)
1066 zerocopy = true;
1067
1068 if (zerocopy) {
1069 /* Userspace may produce vectors with count greater than
1070 * MAX_SKB_FRAGS, so we need to linearize parts of the skb
1071 * to let the rest of data to be fit in the frags.
1072 */
1073 if (count > MAX_SKB_FRAGS) {
1074 copylen = iov_length(iv, count - MAX_SKB_FRAGS);
1075 if (copylen < offset)
1076 copylen = 0;
1077 else
1078 copylen -= offset;
1079 } else
1080 copylen = 0;
1081 /* There are 256 bytes to be copied in skb, so there is enough
1082 * room for skb expand head in case it is used.
1083 * The rest of the buffer is mapped from userspace.
1084 */
1085 if (copylen < gso.hdr_len)
1086 copylen = gso.hdr_len;
1087 if (!copylen)
1088 copylen = GOODCOPY_LEN;
1089 } else
1090 copylen = len;
1091
Jason Wang54f968d2012-10-31 19:45:57 +00001092 skb = tun_alloc_skb(tfile, align, copylen, gso.hdr_len, noblock);
Herbert Xu33dccbb2009-02-05 21:25:32 -08001093 if (IS_ERR(skb)) {
1094 if (PTR_ERR(skb) != -EAGAIN)
1095 tun->dev->stats.rx_dropped++;
1096 return PTR_ERR(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097 }
1098
Michael S. Tsirkin06908992012-07-20 09:23:23 +00001099 if (zerocopy)
1100 err = zerocopy_sg_from_iovec(skb, iv, offset, count);
1101 else
1102 err = skb_copy_datagram_from_iovec(skb, 0, iv, offset, len);
1103
1104 if (err) {
Jeff Garzik09f75cd2007-10-03 17:41:50 -07001105 tun->dev->stats.rx_dropped++;
Dave Jones8f227572006-03-11 18:49:13 -08001106 kfree_skb(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107 return -EFAULT;
Dave Jones8f227572006-03-11 18:49:13 -08001108 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109
Rusty Russellf43798c2008-07-03 03:48:02 -07001110 if (gso.flags & VIRTIO_NET_HDR_F_NEEDS_CSUM) {
1111 if (!skb_partial_csum_set(skb, gso.csum_start,
1112 gso.csum_offset)) {
1113 tun->dev->stats.rx_frame_errors++;
1114 kfree_skb(skb);
1115 return -EINVAL;
1116 }
Michał Mirosław88255372011-04-19 06:13:10 +00001117 }
Rusty Russellf43798c2008-07-03 03:48:02 -07001118
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119 switch (tun->flags & TUN_TYPE_MASK) {
1120 case TUN_TUN_DEV:
Ang Way Chuangf09f7ee2008-06-17 21:10:33 -07001121 if (tun->flags & TUN_NO_PI) {
1122 switch (skb->data[0] & 0xf0) {
1123 case 0x40:
1124 pi.proto = htons(ETH_P_IP);
1125 break;
1126 case 0x60:
1127 pi.proto = htons(ETH_P_IPV6);
1128 break;
1129 default:
1130 tun->dev->stats.rx_dropped++;
1131 kfree_skb(skb);
1132 return -EINVAL;
1133 }
1134 }
1135
Arnaldo Carvalho de Melo459a98e2007-03-19 15:30:44 -07001136 skb_reset_mac_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137 skb->protocol = pi.proto;
Arnaldo Carvalho de Melo4c13eb62007-04-25 17:40:23 -07001138 skb->dev = tun->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139 break;
1140 case TUN_TAP_DEV:
1141 skb->protocol = eth_type_trans(skb, tun->dev);
1142 break;
Joe Perches6403eab2011-06-03 11:51:20 +00001143 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144
Rusty Russellf43798c2008-07-03 03:48:02 -07001145 if (gso.gso_type != VIRTIO_NET_HDR_GSO_NONE) {
1146 pr_debug("GSO!\n");
1147 switch (gso.gso_type & ~VIRTIO_NET_HDR_GSO_ECN) {
1148 case VIRTIO_NET_HDR_GSO_TCPV4:
1149 skb_shinfo(skb)->gso_type = SKB_GSO_TCPV4;
1150 break;
1151 case VIRTIO_NET_HDR_GSO_TCPV6:
1152 skb_shinfo(skb)->gso_type = SKB_GSO_TCPV6;
1153 break;
Sridhar Samudralae36aa252009-07-14 14:21:04 +00001154 case VIRTIO_NET_HDR_GSO_UDP:
1155 skb_shinfo(skb)->gso_type = SKB_GSO_UDP;
1156 break;
Rusty Russellf43798c2008-07-03 03:48:02 -07001157 default:
1158 tun->dev->stats.rx_frame_errors++;
1159 kfree_skb(skb);
1160 return -EINVAL;
1161 }
1162
1163 if (gso.gso_type & VIRTIO_NET_HDR_GSO_ECN)
1164 skb_shinfo(skb)->gso_type |= SKB_GSO_TCP_ECN;
1165
1166 skb_shinfo(skb)->gso_size = gso.gso_size;
1167 if (skb_shinfo(skb)->gso_size == 0) {
1168 tun->dev->stats.rx_frame_errors++;
1169 kfree_skb(skb);
1170 return -EINVAL;
1171 }
1172
1173 /* Header must be checked, and gso_segs computed. */
1174 skb_shinfo(skb)->gso_type |= SKB_GSO_DODGY;
1175 skb_shinfo(skb)->gso_segs = 0;
1176 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001177
Michael S. Tsirkin06908992012-07-20 09:23:23 +00001178 /* copy skb_ubuf_info for callback when skb has no error */
1179 if (zerocopy) {
1180 skb_shinfo(skb)->destructor_arg = msg_control;
1181 skb_shinfo(skb)->tx_flags |= SKBTX_DEV_ZEROCOPY;
1182 }
1183
Eric Dumazet76fe4582012-12-17 04:39:20 +00001184 skb_reset_network_header(skb);
Eric Dumazet49974422012-12-12 19:22:57 +00001185 rxhash = skb_get_rxhash(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186 netif_rx_ni(skb);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001187
Jeff Garzik09f75cd2007-10-03 17:41:50 -07001188 tun->dev->stats.rx_packets++;
1189 tun->dev->stats.rx_bytes += len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190
Eric Dumazet49974422012-12-12 19:22:57 +00001191 tun_flow_update(tun, rxhash, tfile->queue_index);
Michael S. Tsirkin06908992012-07-20 09:23:23 +00001192 return total_len;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001193}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194
Badari Pulavartyee0b3e62006-09-30 23:28:47 -07001195static ssize_t tun_chr_aio_write(struct kiocb *iocb, const struct iovec *iv,
1196 unsigned long count, loff_t pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197{
Herbert Xu33dccbb2009-02-05 21:25:32 -08001198 struct file *file = iocb->ki_filp;
Herbert Xuab46d772009-02-14 20:46:39 -08001199 struct tun_struct *tun = tun_get(file);
Jason Wang54f968d2012-10-31 19:45:57 +00001200 struct tun_file *tfile = file->private_data;
Eric W. Biederman631ab462009-01-20 11:00:40 +00001201 ssize_t result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202
1203 if (!tun)
1204 return -EBADFD;
1205
Joe Perches6b8a66e2011-03-02 07:18:10 +00001206 tun_debug(KERN_INFO, tun, "tun_chr_write %ld\n", count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207
Jason Wang54f968d2012-10-31 19:45:57 +00001208 result = tun_get_user(tun, tfile, NULL, iv, iov_length(iv, count),
1209 count, file->f_flags & O_NONBLOCK);
Eric W. Biederman631ab462009-01-20 11:00:40 +00001210
1211 tun_put(tun);
1212 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213}
1214
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215/* Put packet to the user space buffer */
stephen hemminger6f7c1562011-06-08 14:33:08 +00001216static ssize_t tun_put_user(struct tun_struct *tun,
Jason Wang54f968d2012-10-31 19:45:57 +00001217 struct tun_file *tfile,
stephen hemminger6f7c1562011-06-08 14:33:08 +00001218 struct sk_buff *skb,
1219 const struct iovec *iv, int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220{
1221 struct tun_pi pi = { 0, skb->protocol };
1222 ssize_t total = 0;
1223
1224 if (!(tun->flags & TUN_NO_PI)) {
1225 if ((len -= sizeof(pi)) < 0)
1226 return -EINVAL;
1227
1228 if (len < skb->len) {
1229 /* Packet will be striped */
1230 pi.flags |= TUN_PKT_STRIP;
1231 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001232
Michael S. Tsirkin43b39dc2009-04-20 01:25:59 +00001233 if (memcpy_toiovecend(iv, (void *) &pi, 0, sizeof(pi)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234 return -EFAULT;
1235 total += sizeof(pi);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001236 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237
Rusty Russellf43798c2008-07-03 03:48:02 -07001238 if (tun->flags & TUN_VNET_HDR) {
1239 struct virtio_net_hdr gso = { 0 }; /* no info leak */
Michael S. Tsirkind9d52b52010-03-17 17:45:01 +02001240 if ((len -= tun->vnet_hdr_sz) < 0)
Rusty Russellf43798c2008-07-03 03:48:02 -07001241 return -EINVAL;
1242
1243 if (skb_is_gso(skb)) {
1244 struct skb_shared_info *sinfo = skb_shinfo(skb);
1245
1246 /* This is a hint as to how much should be linear. */
1247 gso.hdr_len = skb_headlen(skb);
1248 gso.gso_size = sinfo->gso_size;
1249 if (sinfo->gso_type & SKB_GSO_TCPV4)
1250 gso.gso_type = VIRTIO_NET_HDR_GSO_TCPV4;
1251 else if (sinfo->gso_type & SKB_GSO_TCPV6)
1252 gso.gso_type = VIRTIO_NET_HDR_GSO_TCPV6;
Sridhar Samudralae36aa252009-07-14 14:21:04 +00001253 else if (sinfo->gso_type & SKB_GSO_UDP)
1254 gso.gso_type = VIRTIO_NET_HDR_GSO_UDP;
Michael S. Tsirkinef3db4a2010-07-21 04:32:45 +00001255 else {
Joe Perches6b8a66e2011-03-02 07:18:10 +00001256 pr_err("unexpected GSO type: "
Michael S. Tsirkinef3db4a2010-07-21 04:32:45 +00001257 "0x%x, gso_size %d, hdr_len %d\n",
1258 sinfo->gso_type, gso.gso_size,
1259 gso.hdr_len);
1260 print_hex_dump(KERN_ERR, "tun: ",
1261 DUMP_PREFIX_NONE,
1262 16, 1, skb->head,
1263 min((int)gso.hdr_len, 64), true);
1264 WARN_ON_ONCE(1);
1265 return -EINVAL;
1266 }
Rusty Russellf43798c2008-07-03 03:48:02 -07001267 if (sinfo->gso_type & SKB_GSO_TCP_ECN)
1268 gso.gso_type |= VIRTIO_NET_HDR_GSO_ECN;
1269 } else
1270 gso.gso_type = VIRTIO_NET_HDR_GSO_NONE;
1271
1272 if (skb->ip_summed == CHECKSUM_PARTIAL) {
1273 gso.flags = VIRTIO_NET_HDR_F_NEEDS_CSUM;
Michał Mirosław55508d62010-12-14 15:24:08 +00001274 gso.csum_start = skb_checksum_start_offset(skb);
Rusty Russellf43798c2008-07-03 03:48:02 -07001275 gso.csum_offset = skb->csum_offset;
Jason Wang10a8d942011-06-10 00:56:17 +00001276 } else if (skb->ip_summed == CHECKSUM_UNNECESSARY) {
1277 gso.flags = VIRTIO_NET_HDR_F_DATA_VALID;
Rusty Russellf43798c2008-07-03 03:48:02 -07001278 } /* else everything is zero */
1279
Michael S. Tsirkin43b39dc2009-04-20 01:25:59 +00001280 if (unlikely(memcpy_toiovecend(iv, (void *)&gso, total,
1281 sizeof(gso))))
Rusty Russellf43798c2008-07-03 03:48:02 -07001282 return -EFAULT;
Michael S. Tsirkind9d52b52010-03-17 17:45:01 +02001283 total += tun->vnet_hdr_sz;
Rusty Russellf43798c2008-07-03 03:48:02 -07001284 }
1285
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286 len = min_t(int, skb->len, len);
1287
Michael S. Tsirkin43b39dc2009-04-20 01:25:59 +00001288 skb_copy_datagram_const_iovec(skb, 0, iv, total, len);
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00001289 total += skb->len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290
Jeff Garzik09f75cd2007-10-03 17:41:50 -07001291 tun->dev->stats.tx_packets++;
1292 tun->dev->stats.tx_bytes += len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293
1294 return total;
1295}
1296
Jason Wang54f968d2012-10-31 19:45:57 +00001297static ssize_t tun_do_read(struct tun_struct *tun, struct tun_file *tfile,
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00001298 struct kiocb *iocb, const struct iovec *iv,
1299 ssize_t len, int noblock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001301 DECLARE_WAITQUEUE(wait, current);
1302 struct sk_buff *skb;
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00001303 ssize_t ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304
Rami Rosen3872baf2012-11-25 22:07:41 +00001305 tun_debug(KERN_INFO, tun, "tun_do_read\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001306
Amos Kong61a5ff12011-06-09 00:27:10 -07001307 if (unlikely(!noblock))
Jason Wang54f968d2012-10-31 19:45:57 +00001308 add_wait_queue(&tfile->wq.wait, &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309 while (len) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310 current->state = TASK_INTERRUPTIBLE;
1311
1312 /* Read frames from the queue */
Jason Wang54f968d2012-10-31 19:45:57 +00001313 if (!(skb = skb_dequeue(&tfile->socket.sk->sk_receive_queue))) {
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00001314 if (noblock) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315 ret = -EAGAIN;
1316 break;
1317 }
1318 if (signal_pending(current)) {
1319 ret = -ERESTARTSYS;
1320 break;
1321 }
Eric W. Biedermanc70f1822009-01-20 11:07:17 +00001322 if (tun->dev->reg_state != NETREG_REGISTERED) {
1323 ret = -EIO;
1324 break;
1325 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326
1327 /* Nothing to read, let's sleep */
1328 schedule();
1329 continue;
1330 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001331
Jason Wang54f968d2012-10-31 19:45:57 +00001332 ret = tun_put_user(tun, tfile, skb, iv, len);
Max Krasnyanskyf271b2c2008-07-14 22:18:19 -07001333 kfree_skb(skb);
1334 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001335 }
1336
1337 current->state = TASK_RUNNING;
Amos Kong61a5ff12011-06-09 00:27:10 -07001338 if (unlikely(!noblock))
Jason Wang54f968d2012-10-31 19:45:57 +00001339 remove_wait_queue(&tfile->wq.wait, &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00001341 return ret;
1342}
1343
1344static ssize_t tun_chr_aio_read(struct kiocb *iocb, const struct iovec *iv,
1345 unsigned long count, loff_t pos)
1346{
1347 struct file *file = iocb->ki_filp;
1348 struct tun_file *tfile = file->private_data;
1349 struct tun_struct *tun = __tun_get(tfile);
1350 ssize_t len, ret;
1351
1352 if (!tun)
1353 return -EBADFD;
1354 len = iov_length(iv, count);
1355 if (len < 0) {
1356 ret = -EINVAL;
1357 goto out;
1358 }
1359
Jason Wang54f968d2012-10-31 19:45:57 +00001360 ret = tun_do_read(tun, tfile, iocb, iv, len,
1361 file->f_flags & O_NONBLOCK);
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00001362 ret = min_t(ssize_t, ret, len);
Eric W. Biederman631ab462009-01-20 11:00:40 +00001363out:
1364 tun_put(tun);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365 return ret;
1366}
1367
Jason Wang96442e422012-10-31 19:46:02 +00001368static void tun_free_netdev(struct net_device *dev)
1369{
1370 struct tun_struct *tun = netdev_priv(dev);
1371
Jason Wang4008e972012-12-13 23:53:30 +00001372 BUG_ON(!(list_empty(&tun->disabled)));
Jason Wang96442e422012-10-31 19:46:02 +00001373 tun_flow_uninit(tun);
1374 free_netdev(dev);
1375}
1376
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377static void tun_setup(struct net_device *dev)
1378{
1379 struct tun_struct *tun = netdev_priv(dev);
1380
Eric W. Biederman0625c882012-02-07 16:48:55 -08001381 tun->owner = INVALID_UID;
1382 tun->group = INVALID_GID;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384 dev->ethtool_ops = &tun_ethtool_ops;
Jason Wang96442e422012-10-31 19:46:02 +00001385 dev->destructor = tun_free_netdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001386}
1387
Eric W. Biedermanf019a7a2009-01-21 16:02:16 -08001388/* Trivial set of netlink ops to allow deleting tun or tap
1389 * device with netlink.
1390 */
1391static int tun_validate(struct nlattr *tb[], struct nlattr *data[])
1392{
1393 return -EINVAL;
1394}
1395
1396static struct rtnl_link_ops tun_link_ops __read_mostly = {
1397 .kind = DRV_NAME,
1398 .priv_size = sizeof(struct tun_struct),
1399 .setup = tun_setup,
1400 .validate = tun_validate,
1401};
1402
Herbert Xu33dccbb2009-02-05 21:25:32 -08001403static void tun_sock_write_space(struct sock *sk)
1404{
Jason Wang54f968d2012-10-31 19:45:57 +00001405 struct tun_file *tfile;
Eric Dumazet43815482010-04-29 11:01:49 +00001406 wait_queue_head_t *wqueue;
Herbert Xu33dccbb2009-02-05 21:25:32 -08001407
1408 if (!sock_writeable(sk))
1409 return;
1410
Herbert Xu33dccbb2009-02-05 21:25:32 -08001411 if (!test_and_clear_bit(SOCK_ASYNC_NOSPACE, &sk->sk_socket->flags))
1412 return;
1413
Eric Dumazet43815482010-04-29 11:01:49 +00001414 wqueue = sk_sleep(sk);
1415 if (wqueue && waitqueue_active(wqueue))
1416 wake_up_interruptible_sync_poll(wqueue, POLLOUT |
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00001417 POLLWRNORM | POLLWRBAND);
Herbert Xuc722c622009-06-03 21:45:55 -07001418
Jason Wang54f968d2012-10-31 19:45:57 +00001419 tfile = container_of(sk, struct tun_file, sk);
1420 kill_fasync(&tfile->fasync, SIGIO, POLL_OUT);
Herbert Xu33dccbb2009-02-05 21:25:32 -08001421}
1422
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00001423static int tun_sendmsg(struct kiocb *iocb, struct socket *sock,
1424 struct msghdr *m, size_t total_len)
1425{
Jason Wang54f968d2012-10-31 19:45:57 +00001426 int ret;
1427 struct tun_file *tfile = container_of(sock, struct tun_file, socket);
1428 struct tun_struct *tun = __tun_get(tfile);
1429
1430 if (!tun)
1431 return -EBADFD;
Jason Wang54f968d2012-10-31 19:45:57 +00001432 ret = tun_get_user(tun, tfile, m->msg_control, m->msg_iov, total_len,
1433 m->msg_iovlen, m->msg_flags & MSG_DONTWAIT);
1434 tun_put(tun);
1435 return ret;
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00001436}
1437
Jason Wang54f968d2012-10-31 19:45:57 +00001438
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00001439static int tun_recvmsg(struct kiocb *iocb, struct socket *sock,
1440 struct msghdr *m, size_t total_len,
1441 int flags)
1442{
Jason Wang54f968d2012-10-31 19:45:57 +00001443 struct tun_file *tfile = container_of(sock, struct tun_file, socket);
1444 struct tun_struct *tun = __tun_get(tfile);
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00001445 int ret;
Jason Wang54f968d2012-10-31 19:45:57 +00001446
1447 if (!tun)
1448 return -EBADFD;
1449
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00001450 if (flags & ~(MSG_DONTWAIT|MSG_TRUNC))
1451 return -EINVAL;
Jason Wang54f968d2012-10-31 19:45:57 +00001452 ret = tun_do_read(tun, tfile, iocb, m->msg_iov, total_len,
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00001453 flags & MSG_DONTWAIT);
1454 if (ret > total_len) {
1455 m->msg_flags |= MSG_TRUNC;
1456 ret = flags & MSG_TRUNC ? ret : total_len;
1457 }
Jason Wang54f968d2012-10-31 19:45:57 +00001458 tun_put(tun);
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00001459 return ret;
1460}
1461
Stanislav Kinsbursky1ab5ecb2012-03-12 02:59:41 +00001462static int tun_release(struct socket *sock)
1463{
1464 if (sock->sk)
1465 sock_put(sock->sk);
1466 return 0;
1467}
1468
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00001469/* Ops structure to mimic raw sockets with tun */
1470static const struct proto_ops tun_socket_ops = {
1471 .sendmsg = tun_sendmsg,
1472 .recvmsg = tun_recvmsg,
Stanislav Kinsbursky1ab5ecb2012-03-12 02:59:41 +00001473 .release = tun_release,
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00001474};
1475
Herbert Xu33dccbb2009-02-05 21:25:32 -08001476static struct proto tun_proto = {
1477 .name = "tun",
1478 .owner = THIS_MODULE,
Jason Wang54f968d2012-10-31 19:45:57 +00001479 .obj_size = sizeof(struct tun_file),
Herbert Xu33dccbb2009-02-05 21:25:32 -08001480};
Eric W. Biedermanf019a7a2009-01-21 16:02:16 -08001481
David Woodhouse980c9e82009-05-09 22:54:21 -07001482static int tun_flags(struct tun_struct *tun)
1483{
1484 int flags = 0;
1485
1486 if (tun->flags & TUN_TUN_DEV)
1487 flags |= IFF_TUN;
1488 else
1489 flags |= IFF_TAP;
1490
1491 if (tun->flags & TUN_NO_PI)
1492 flags |= IFF_NO_PI;
1493
Michael S. Tsirkin5d097102012-12-03 10:07:14 +00001494 /* This flag has no real effect. We track the value for backwards
1495 * compatibility.
1496 */
David Woodhouse980c9e82009-05-09 22:54:21 -07001497 if (tun->flags & TUN_ONE_QUEUE)
1498 flags |= IFF_ONE_QUEUE;
1499
1500 if (tun->flags & TUN_VNET_HDR)
1501 flags |= IFF_VNET_HDR;
1502
Jason Wangc8d68e62012-10-31 19:46:00 +00001503 if (tun->flags & TUN_TAP_MQ)
1504 flags |= IFF_MULTI_QUEUE;
1505
David Woodhouse980c9e82009-05-09 22:54:21 -07001506 return flags;
1507}
1508
1509static ssize_t tun_show_flags(struct device *dev, struct device_attribute *attr,
1510 char *buf)
1511{
1512 struct tun_struct *tun = netdev_priv(to_net_dev(dev));
1513 return sprintf(buf, "0x%x\n", tun_flags(tun));
1514}
1515
1516static ssize_t tun_show_owner(struct device *dev, struct device_attribute *attr,
1517 char *buf)
1518{
1519 struct tun_struct *tun = netdev_priv(to_net_dev(dev));
Eric W. Biederman0625c882012-02-07 16:48:55 -08001520 return uid_valid(tun->owner)?
1521 sprintf(buf, "%u\n",
1522 from_kuid_munged(current_user_ns(), tun->owner)):
1523 sprintf(buf, "-1\n");
David Woodhouse980c9e82009-05-09 22:54:21 -07001524}
1525
1526static ssize_t tun_show_group(struct device *dev, struct device_attribute *attr,
1527 char *buf)
1528{
1529 struct tun_struct *tun = netdev_priv(to_net_dev(dev));
Eric W. Biederman0625c882012-02-07 16:48:55 -08001530 return gid_valid(tun->group) ?
1531 sprintf(buf, "%u\n",
1532 from_kgid_munged(current_user_ns(), tun->group)):
1533 sprintf(buf, "-1\n");
David Woodhouse980c9e82009-05-09 22:54:21 -07001534}
1535
1536static DEVICE_ATTR(tun_flags, 0444, tun_show_flags, NULL);
1537static DEVICE_ATTR(owner, 0444, tun_show_owner, NULL);
1538static DEVICE_ATTR(group, 0444, tun_show_group, NULL);
1539
Pavel Emelyanovd647a592008-04-16 00:41:16 -07001540static int tun_set_iff(struct net *net, struct file *file, struct ifreq *ifr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001541{
1542 struct tun_struct *tun;
Jason Wang54f968d2012-10-31 19:45:57 +00001543 struct tun_file *tfile = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001544 struct net_device *dev;
1545 int err;
1546
Eric W. Biederman74a3e5a2009-01-20 10:56:20 +00001547 dev = __dev_get_by_name(net, ifr->ifr_name);
1548 if (dev) {
David Woodhousef85ba782009-04-27 03:23:54 -07001549 if (ifr->ifr_flags & IFF_TUN_EXCL)
1550 return -EBUSY;
Eric W. Biederman74a3e5a2009-01-20 10:56:20 +00001551 if ((ifr->ifr_flags & IFF_TUN) && dev->netdev_ops == &tun_netdev_ops)
1552 tun = netdev_priv(dev);
1553 else if ((ifr->ifr_flags & IFF_TAP) && dev->netdev_ops == &tap_netdev_ops)
1554 tun = netdev_priv(dev);
1555 else
1556 return -EINVAL;
1557
Jason Wangcde8b152012-10-31 19:46:01 +00001558 if (tun_not_capable(tun))
Paul Moore2b980db2009-08-28 18:12:43 -04001559 return -EPERM;
Jason Wang54f968d2012-10-31 19:45:57 +00001560 err = security_tun_dev_attach(tfile->socket.sk);
Paul Moore2b980db2009-08-28 18:12:43 -04001561 if (err < 0)
1562 return err;
1563
Eric W. Biedermana7385ba2009-01-20 10:57:48 +00001564 err = tun_attach(tun, file);
1565 if (err < 0)
1566 return err;
Jason Wang4008e972012-12-13 23:53:30 +00001567
1568 if (tun->flags & TUN_TAP_MQ &&
1569 (tun->numqueues + tun->numdisabled > 1))
1570 return err;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001571 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001572 else {
1573 char *name;
1574 unsigned long flags = 0;
1575
Eric W. Biedermanc260b772012-11-18 21:34:11 +00001576 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
David Woodhouseca6bb5d2006-06-22 16:07:52 -07001577 return -EPERM;
Paul Moore2b980db2009-08-28 18:12:43 -04001578 err = security_tun_dev_create();
1579 if (err < 0)
1580 return err;
David Woodhouseca6bb5d2006-06-22 16:07:52 -07001581
Linus Torvalds1da177e2005-04-16 15:20:36 -07001582 /* Set dev type */
1583 if (ifr->ifr_flags & IFF_TUN) {
1584 /* TUN device */
1585 flags |= TUN_TUN_DEV;
1586 name = "tun%d";
1587 } else if (ifr->ifr_flags & IFF_TAP) {
1588 /* TAP device */
1589 flags |= TUN_TAP_DEV;
1590 name = "tap%d";
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001591 } else
Kusanagi Kouichi36989b92009-09-16 21:36:13 +00001592 return -EINVAL;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001593
Linus Torvalds1da177e2005-04-16 15:20:36 -07001594 if (*ifr->ifr_name)
1595 name = ifr->ifr_name;
1596
Jason Wangc8d68e62012-10-31 19:46:00 +00001597 dev = alloc_netdev_mqs(sizeof(struct tun_struct), name,
1598 tun_setup,
1599 MAX_TAP_QUEUES, MAX_TAP_QUEUES);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001600 if (!dev)
1601 return -ENOMEM;
1602
Pavel Emelyanovfc54c652008-04-16 00:41:53 -07001603 dev_net_set(dev, net);
Eric W. Biedermanf019a7a2009-01-21 16:02:16 -08001604 dev->rtnl_link_ops = &tun_link_ops;
Stephen Hemminger758e43b2008-11-19 22:10:37 -08001605
Linus Torvalds1da177e2005-04-16 15:20:36 -07001606 tun = netdev_priv(dev);
1607 tun->dev = dev;
1608 tun->flags = flags;
Max Krasnyanskyf271b2c2008-07-14 22:18:19 -07001609 tun->txflt.count = 0;
Michael S. Tsirkind9d52b52010-03-17 17:45:01 +02001610 tun->vnet_hdr_sz = sizeof(struct virtio_net_hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001611
Jason Wang54f968d2012-10-31 19:45:57 +00001612 tun->filter_attached = false;
1613 tun->sndbuf = tfile->socket.sk->sk_sndbuf;
Herbert Xu33dccbb2009-02-05 21:25:32 -08001614
Jason Wang96442e422012-10-31 19:46:02 +00001615 spin_lock_init(&tun->lock);
1616
Jason Wang54f968d2012-10-31 19:45:57 +00001617 security_tun_dev_post_create(&tfile->sk);
Paul Moore2b980db2009-08-28 18:12:43 -04001618
Linus Torvalds1da177e2005-04-16 15:20:36 -07001619 tun_net_init(dev);
1620
Paul Mooreb3943ae2012-12-06 05:48:38 +00001621 err = tun_flow_init(tun);
1622 if (err < 0)
Jason Wang96442e422012-10-31 19:46:02 +00001623 goto err_free_dev;
1624
Michał Mirosław88255372011-04-19 06:13:10 +00001625 dev->hw_features = NETIF_F_SG | NETIF_F_FRAGLIST |
1626 TUN_USER_FEATURES;
1627 dev->features = dev->hw_features;
1628
Jason Wang4008e972012-12-13 23:53:30 +00001629 INIT_LIST_HEAD(&tun->disabled);
Jason Wangeb0fb362012-12-02 17:19:45 +00001630 err = tun_attach(tun, file);
1631 if (err < 0)
1632 goto err_free_dev;
1633
Linus Torvalds1da177e2005-04-16 15:20:36 -07001634 err = register_netdevice(tun->dev);
1635 if (err < 0)
Jason Wang54f968d2012-10-31 19:45:57 +00001636 goto err_free_dev;
Herbert Xu9c3fea62009-04-18 14:15:52 +00001637
David Woodhouse980c9e82009-05-09 22:54:21 -07001638 if (device_create_file(&tun->dev->dev, &dev_attr_tun_flags) ||
1639 device_create_file(&tun->dev->dev, &dev_attr_owner) ||
1640 device_create_file(&tun->dev->dev, &dev_attr_group))
Joe Perches6b8a66e2011-03-02 07:18:10 +00001641 pr_err("Failed to create tun sysfs files\n");
David Woodhouse980c9e82009-05-09 22:54:21 -07001642
Jason Wangeb0fb362012-12-02 17:19:45 +00001643 netif_carrier_on(tun->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001644 }
1645
Joe Perches6b8a66e2011-03-02 07:18:10 +00001646 tun_debug(KERN_INFO, tun, "tun_set_iff\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001647
1648 if (ifr->ifr_flags & IFF_NO_PI)
1649 tun->flags |= TUN_NO_PI;
Nathaniel Filardoa26af1e2008-02-05 03:05:07 -08001650 else
1651 tun->flags &= ~TUN_NO_PI;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001652
Michael S. Tsirkin5d097102012-12-03 10:07:14 +00001653 /* This flag has no real effect. We track the value for backwards
1654 * compatibility.
1655 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001656 if (ifr->ifr_flags & IFF_ONE_QUEUE)
1657 tun->flags |= TUN_ONE_QUEUE;
Nathaniel Filardoa26af1e2008-02-05 03:05:07 -08001658 else
1659 tun->flags &= ~TUN_ONE_QUEUE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001660
Rusty Russellf43798c2008-07-03 03:48:02 -07001661 if (ifr->ifr_flags & IFF_VNET_HDR)
1662 tun->flags |= TUN_VNET_HDR;
1663 else
1664 tun->flags &= ~TUN_VNET_HDR;
1665
Jason Wangc8d68e62012-10-31 19:46:00 +00001666 if (ifr->ifr_flags & IFF_MULTI_QUEUE)
1667 tun->flags |= TUN_TAP_MQ;
1668 else
1669 tun->flags &= ~TUN_TAP_MQ;
1670
Max Krasnyanskye35259a2008-07-10 16:59:11 -07001671 /* Make sure persistent devices do not get stuck in
1672 * xoff state.
1673 */
1674 if (netif_running(tun->dev))
Jason Wangc8d68e62012-10-31 19:46:00 +00001675 netif_tx_wake_all_queues(tun->dev);
Max Krasnyanskye35259a2008-07-10 16:59:11 -07001676
Linus Torvalds1da177e2005-04-16 15:20:36 -07001677 strcpy(ifr->ifr_name, tun->dev->name);
1678 return 0;
1679
1680 err_free_dev:
1681 free_netdev(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001682 return err;
1683}
1684
Rami Rosen9ce99cf2012-11-23 03:58:10 +00001685static void tun_get_iff(struct net *net, struct tun_struct *tun,
Herbert Xu876bfd42009-08-06 14:22:44 +00001686 struct ifreq *ifr)
Mark McLoughline3b99552008-08-15 15:09:56 -07001687{
Joe Perches6b8a66e2011-03-02 07:18:10 +00001688 tun_debug(KERN_INFO, tun, "tun_get_iff\n");
Mark McLoughline3b99552008-08-15 15:09:56 -07001689
1690 strcpy(ifr->ifr_name, tun->dev->name);
1691
David Woodhouse980c9e82009-05-09 22:54:21 -07001692 ifr->ifr_flags = tun_flags(tun);
Mark McLoughline3b99552008-08-15 15:09:56 -07001693
Mark McLoughline3b99552008-08-15 15:09:56 -07001694}
1695
Rusty Russell5228ddc2008-07-03 03:46:16 -07001696/* This is like a cut-down ethtool ops, except done via tun fd so no
1697 * privs required. */
Michał Mirosław88255372011-04-19 06:13:10 +00001698static int set_offload(struct tun_struct *tun, unsigned long arg)
Rusty Russell5228ddc2008-07-03 03:46:16 -07001699{
Michał Mirosławc8f44af2011-11-15 15:29:55 +00001700 netdev_features_t features = 0;
Rusty Russell5228ddc2008-07-03 03:46:16 -07001701
1702 if (arg & TUN_F_CSUM) {
Michał Mirosław88255372011-04-19 06:13:10 +00001703 features |= NETIF_F_HW_CSUM;
Rusty Russell5228ddc2008-07-03 03:46:16 -07001704 arg &= ~TUN_F_CSUM;
1705
1706 if (arg & (TUN_F_TSO4|TUN_F_TSO6)) {
1707 if (arg & TUN_F_TSO_ECN) {
1708 features |= NETIF_F_TSO_ECN;
1709 arg &= ~TUN_F_TSO_ECN;
1710 }
1711 if (arg & TUN_F_TSO4)
1712 features |= NETIF_F_TSO;
1713 if (arg & TUN_F_TSO6)
1714 features |= NETIF_F_TSO6;
1715 arg &= ~(TUN_F_TSO4|TUN_F_TSO6);
1716 }
Sridhar Samudralae36aa252009-07-14 14:21:04 +00001717
1718 if (arg & TUN_F_UFO) {
1719 features |= NETIF_F_UFO;
1720 arg &= ~TUN_F_UFO;
1721 }
Rusty Russell5228ddc2008-07-03 03:46:16 -07001722 }
1723
1724 /* This gives the user a way to test for new features in future by
1725 * trying to set them. */
1726 if (arg)
1727 return -EINVAL;
1728
Michał Mirosław88255372011-04-19 06:13:10 +00001729 tun->set_features = features;
1730 netdev_update_features(tun->dev);
Rusty Russell5228ddc2008-07-03 03:46:16 -07001731
1732 return 0;
1733}
1734
Jason Wangc8d68e62012-10-31 19:46:00 +00001735static void tun_detach_filter(struct tun_struct *tun, int n)
1736{
1737 int i;
1738 struct tun_file *tfile;
1739
1740 for (i = 0; i < n; i++) {
1741 tfile = rcu_dereference_protected(tun->tfiles[i],
1742 lockdep_rtnl_is_held());
1743 sk_detach_filter(tfile->socket.sk);
1744 }
1745
1746 tun->filter_attached = false;
1747}
1748
1749static int tun_attach_filter(struct tun_struct *tun)
1750{
1751 int i, ret = 0;
1752 struct tun_file *tfile;
1753
1754 for (i = 0; i < tun->numqueues; i++) {
1755 tfile = rcu_dereference_protected(tun->tfiles[i],
1756 lockdep_rtnl_is_held());
1757 ret = sk_attach_filter(&tun->fprog, tfile->socket.sk);
1758 if (ret) {
1759 tun_detach_filter(tun, i);
1760 return ret;
1761 }
1762 }
1763
1764 tun->filter_attached = true;
1765 return ret;
1766}
1767
1768static void tun_set_sndbuf(struct tun_struct *tun)
1769{
1770 struct tun_file *tfile;
1771 int i;
1772
1773 for (i = 0; i < tun->numqueues; i++) {
1774 tfile = rcu_dereference_protected(tun->tfiles[i],
1775 lockdep_rtnl_is_held());
1776 tfile->socket.sk->sk_sndbuf = tun->sndbuf;
1777 }
1778}
1779
Jason Wangcde8b152012-10-31 19:46:01 +00001780static int tun_set_queue(struct file *file, struct ifreq *ifr)
1781{
1782 struct tun_file *tfile = file->private_data;
1783 struct tun_struct *tun;
Jason Wangcde8b152012-10-31 19:46:01 +00001784 int ret = 0;
1785
1786 rtnl_lock();
1787
1788 if (ifr->ifr_flags & IFF_ATTACH_QUEUE) {
Jason Wang4008e972012-12-13 23:53:30 +00001789 tun = tfile->detached;
1790 if (!tun)
Jason Wangcde8b152012-10-31 19:46:01 +00001791 ret = -EINVAL;
1792 else if (tun_not_capable(tun))
1793 ret = -EPERM;
1794 else
1795 ret = tun_attach(tun, file);
Jason Wang4008e972012-12-13 23:53:30 +00001796 } else if (ifr->ifr_flags & IFF_DETACH_QUEUE) {
1797 tun = rcu_dereference_protected(tfile->tun,
1798 lockdep_rtnl_is_held());
1799 if (!tun || !(tun->flags & TUN_TAP_MQ))
1800 ret = -EINVAL;
1801 else
1802 __tun_detach(tfile, false);
1803 } else
Jason Wangcde8b152012-10-31 19:46:01 +00001804 ret = -EINVAL;
1805
Jason Wangcde8b152012-10-31 19:46:01 +00001806 rtnl_unlock();
1807 return ret;
1808}
1809
Arnd Bergmann50857e22009-11-06 22:52:32 -08001810static long __tun_chr_ioctl(struct file *file, unsigned int cmd,
1811 unsigned long arg, int ifreq_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001812{
Eric W. Biederman36b50ba2009-01-20 11:01:48 +00001813 struct tun_file *tfile = file->private_data;
Eric W. Biederman631ab462009-01-20 11:00:40 +00001814 struct tun_struct *tun;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001815 void __user* argp = (void __user*)arg;
1816 struct ifreq ifr;
Eric W. Biederman0625c882012-02-07 16:48:55 -08001817 kuid_t owner;
1818 kgid_t group;
Herbert Xu33dccbb2009-02-05 21:25:32 -08001819 int sndbuf;
Michael S. Tsirkind9d52b52010-03-17 17:45:01 +02001820 int vnet_hdr_sz;
Max Krasnyanskyf271b2c2008-07-14 22:18:19 -07001821 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001822
Jason Wangcde8b152012-10-31 19:46:01 +00001823 if (cmd == TUNSETIFF || cmd == TUNSETQUEUE || _IOC_TYPE(cmd) == 0x89) {
Arnd Bergmann50857e22009-11-06 22:52:32 -08001824 if (copy_from_user(&ifr, argp, ifreq_len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001825 return -EFAULT;
David S. Miller8bbb1812012-07-30 14:52:48 -07001826 } else {
Mathias Krausea117dac2012-07-29 19:45:14 +00001827 memset(&ifr, 0, sizeof(ifr));
David S. Miller8bbb1812012-07-30 14:52:48 -07001828 }
Eric W. Biederman631ab462009-01-20 11:00:40 +00001829 if (cmd == TUNGETFEATURES) {
1830 /* Currently this just means: "what IFF flags are valid?".
1831 * This is needed because we never checked for invalid flags on
1832 * TUNSETIFF. */
1833 return put_user(IFF_TUN | IFF_TAP | IFF_NO_PI | IFF_ONE_QUEUE |
Jason Wangcde8b152012-10-31 19:46:01 +00001834 IFF_VNET_HDR | IFF_MULTI_QUEUE,
Eric W. Biederman631ab462009-01-20 11:00:40 +00001835 (unsigned int __user*)argp);
Jason Wangcde8b152012-10-31 19:46:01 +00001836 } else if (cmd == TUNSETQUEUE)
1837 return tun_set_queue(file, &ifr);
Eric W. Biederman631ab462009-01-20 11:00:40 +00001838
Jason Wangc8d68e62012-10-31 19:46:00 +00001839 ret = 0;
Herbert Xu876bfd42009-08-06 14:22:44 +00001840 rtnl_lock();
1841
Eric W. Biederman36b50ba2009-01-20 11:01:48 +00001842 tun = __tun_get(tfile);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001843 if (cmd == TUNSETIFF && !tun) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001844 ifr.ifr_name[IFNAMSIZ-1] = '\0';
1845
Herbert Xu876bfd42009-08-06 14:22:44 +00001846 ret = tun_set_iff(tfile->net, file, &ifr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001847
Herbert Xu876bfd42009-08-06 14:22:44 +00001848 if (ret)
1849 goto unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001850
Arnd Bergmann50857e22009-11-06 22:52:32 -08001851 if (copy_to_user(argp, &ifr, ifreq_len))
Herbert Xu876bfd42009-08-06 14:22:44 +00001852 ret = -EFAULT;
1853 goto unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001854 }
1855
Herbert Xu876bfd42009-08-06 14:22:44 +00001856 ret = -EBADFD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001857 if (!tun)
Herbert Xu876bfd42009-08-06 14:22:44 +00001858 goto unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001859
Jason Wang1e588332012-10-31 19:45:56 +00001860 tun_debug(KERN_INFO, tun, "tun_chr_ioctl cmd %u\n", cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001861
Eric W. Biederman631ab462009-01-20 11:00:40 +00001862 ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001863 switch (cmd) {
Mark McLoughline3b99552008-08-15 15:09:56 -07001864 case TUNGETIFF:
Rami Rosen9ce99cf2012-11-23 03:58:10 +00001865 tun_get_iff(current->nsproxy->net_ns, tun, &ifr);
Mark McLoughline3b99552008-08-15 15:09:56 -07001866
Arnd Bergmann50857e22009-11-06 22:52:32 -08001867 if (copy_to_user(argp, &ifr, ifreq_len))
Eric W. Biederman631ab462009-01-20 11:00:40 +00001868 ret = -EFAULT;
Mark McLoughline3b99552008-08-15 15:09:56 -07001869 break;
1870
Linus Torvalds1da177e2005-04-16 15:20:36 -07001871 case TUNSETNOCSUM:
1872 /* Disable/Enable checksum */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001873
Michał Mirosław88255372011-04-19 06:13:10 +00001874 /* [unimplemented] */
1875 tun_debug(KERN_INFO, tun, "ignored: set checksum %s\n",
Joe Perches6b8a66e2011-03-02 07:18:10 +00001876 arg ? "disabled" : "enabled");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001877 break;
1878
1879 case TUNSETPERSIST:
Jason Wang54f968d2012-10-31 19:45:57 +00001880 /* Disable/Enable persist mode. Keep an extra reference to the
1881 * module to prevent the module being unprobed.
1882 */
1883 if (arg) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001884 tun->flags |= TUN_PERSIST;
Jason Wang54f968d2012-10-31 19:45:57 +00001885 __module_get(THIS_MODULE);
1886 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001887 tun->flags &= ~TUN_PERSIST;
Jason Wang54f968d2012-10-31 19:45:57 +00001888 module_put(THIS_MODULE);
1889 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001890
Joe Perches6b8a66e2011-03-02 07:18:10 +00001891 tun_debug(KERN_INFO, tun, "persist %s\n",
1892 arg ? "enabled" : "disabled");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001893 break;
1894
1895 case TUNSETOWNER:
1896 /* Set owner of the device */
Eric W. Biederman0625c882012-02-07 16:48:55 -08001897 owner = make_kuid(current_user_ns(), arg);
1898 if (!uid_valid(owner)) {
1899 ret = -EINVAL;
1900 break;
1901 }
1902 tun->owner = owner;
Jason Wang1e588332012-10-31 19:45:56 +00001903 tun_debug(KERN_INFO, tun, "owner set to %u\n",
Eric W. Biederman0625c882012-02-07 16:48:55 -08001904 from_kuid(&init_user_ns, tun->owner));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001905 break;
1906
Guido Guenther8c644622007-07-02 22:50:25 -07001907 case TUNSETGROUP:
1908 /* Set group of the device */
Eric W. Biederman0625c882012-02-07 16:48:55 -08001909 group = make_kgid(current_user_ns(), arg);
1910 if (!gid_valid(group)) {
1911 ret = -EINVAL;
1912 break;
1913 }
1914 tun->group = group;
Jason Wang1e588332012-10-31 19:45:56 +00001915 tun_debug(KERN_INFO, tun, "group set to %u\n",
Eric W. Biederman0625c882012-02-07 16:48:55 -08001916 from_kgid(&init_user_ns, tun->group));
Guido Guenther8c644622007-07-02 22:50:25 -07001917 break;
1918
Mike Kershawff4cc3a2005-09-01 17:40:05 -07001919 case TUNSETLINK:
1920 /* Only allow setting the type when the interface is down */
1921 if (tun->dev->flags & IFF_UP) {
Joe Perches6b8a66e2011-03-02 07:18:10 +00001922 tun_debug(KERN_INFO, tun,
1923 "Linktype set failed because interface is up\n");
David S. Miller48abfe02008-04-23 19:37:58 -07001924 ret = -EBUSY;
Mike Kershawff4cc3a2005-09-01 17:40:05 -07001925 } else {
1926 tun->dev->type = (int) arg;
Joe Perches6b8a66e2011-03-02 07:18:10 +00001927 tun_debug(KERN_INFO, tun, "linktype set to %d\n",
1928 tun->dev->type);
David S. Miller48abfe02008-04-23 19:37:58 -07001929 ret = 0;
Mike Kershawff4cc3a2005-09-01 17:40:05 -07001930 }
Eric W. Biederman631ab462009-01-20 11:00:40 +00001931 break;
Mike Kershawff4cc3a2005-09-01 17:40:05 -07001932
Linus Torvalds1da177e2005-04-16 15:20:36 -07001933#ifdef TUN_DEBUG
1934 case TUNSETDEBUG:
1935 tun->debug = arg;
1936 break;
1937#endif
Rusty Russell5228ddc2008-07-03 03:46:16 -07001938 case TUNSETOFFLOAD:
Michał Mirosław88255372011-04-19 06:13:10 +00001939 ret = set_offload(tun, arg);
Eric W. Biederman631ab462009-01-20 11:00:40 +00001940 break;
Rusty Russell5228ddc2008-07-03 03:46:16 -07001941
Max Krasnyanskyf271b2c2008-07-14 22:18:19 -07001942 case TUNSETTXFILTER:
1943 /* Can be set only for TAPs */
Eric W. Biederman631ab462009-01-20 11:00:40 +00001944 ret = -EINVAL;
Max Krasnyanskyf271b2c2008-07-14 22:18:19 -07001945 if ((tun->flags & TUN_TYPE_MASK) != TUN_TAP_DEV)
Eric W. Biederman631ab462009-01-20 11:00:40 +00001946 break;
Harvey Harrisonc0e5a8c2008-07-16 12:45:34 -07001947 ret = update_filter(&tun->txflt, (void __user *)arg);
Eric W. Biederman631ab462009-01-20 11:00:40 +00001948 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001949
1950 case SIOCGIFHWADDR:
Uwe Kleine-Königb5950762010-11-01 15:38:34 -04001951 /* Get hw address */
Max Krasnyanskyf271b2c2008-07-14 22:18:19 -07001952 memcpy(ifr.ifr_hwaddr.sa_data, tun->dev->dev_addr, ETH_ALEN);
1953 ifr.ifr_hwaddr.sa_family = tun->dev->type;
Arnd Bergmann50857e22009-11-06 22:52:32 -08001954 if (copy_to_user(argp, &ifr, ifreq_len))
Eric W. Biederman631ab462009-01-20 11:00:40 +00001955 ret = -EFAULT;
1956 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001957
1958 case SIOCSIFHWADDR:
Max Krasnyanskyf271b2c2008-07-14 22:18:19 -07001959 /* Set hw address */
Joe Perches6b8a66e2011-03-02 07:18:10 +00001960 tun_debug(KERN_DEBUG, tun, "set hw address: %pM\n",
1961 ifr.ifr_hwaddr.sa_data);
Kim B. Heino40102372008-02-29 12:26:21 -08001962
Kim B. Heino40102372008-02-29 12:26:21 -08001963 ret = dev_set_mac_address(tun->dev, &ifr.ifr_hwaddr);
Eric W. Biederman631ab462009-01-20 11:00:40 +00001964 break;
Herbert Xu33dccbb2009-02-05 21:25:32 -08001965
1966 case TUNGETSNDBUF:
Jason Wang54f968d2012-10-31 19:45:57 +00001967 sndbuf = tfile->socket.sk->sk_sndbuf;
Herbert Xu33dccbb2009-02-05 21:25:32 -08001968 if (copy_to_user(argp, &sndbuf, sizeof(sndbuf)))
1969 ret = -EFAULT;
1970 break;
1971
1972 case TUNSETSNDBUF:
1973 if (copy_from_user(&sndbuf, argp, sizeof(sndbuf))) {
1974 ret = -EFAULT;
1975 break;
1976 }
1977
Jason Wangc8d68e62012-10-31 19:46:00 +00001978 tun->sndbuf = sndbuf;
1979 tun_set_sndbuf(tun);
Herbert Xu33dccbb2009-02-05 21:25:32 -08001980 break;
1981
Michael S. Tsirkind9d52b52010-03-17 17:45:01 +02001982 case TUNGETVNETHDRSZ:
1983 vnet_hdr_sz = tun->vnet_hdr_sz;
1984 if (copy_to_user(argp, &vnet_hdr_sz, sizeof(vnet_hdr_sz)))
1985 ret = -EFAULT;
1986 break;
1987
1988 case TUNSETVNETHDRSZ:
1989 if (copy_from_user(&vnet_hdr_sz, argp, sizeof(vnet_hdr_sz))) {
1990 ret = -EFAULT;
1991 break;
1992 }
1993 if (vnet_hdr_sz < (int)sizeof(struct virtio_net_hdr)) {
1994 ret = -EINVAL;
1995 break;
1996 }
1997
1998 tun->vnet_hdr_sz = vnet_hdr_sz;
1999 break;
2000
Michael S. Tsirkin99405162010-02-14 01:01:10 +00002001 case TUNATTACHFILTER:
2002 /* Can be set only for TAPs */
2003 ret = -EINVAL;
2004 if ((tun->flags & TUN_TYPE_MASK) != TUN_TAP_DEV)
2005 break;
2006 ret = -EFAULT;
Jason Wang54f968d2012-10-31 19:45:57 +00002007 if (copy_from_user(&tun->fprog, argp, sizeof(tun->fprog)))
Michael S. Tsirkin99405162010-02-14 01:01:10 +00002008 break;
2009
Jason Wangc8d68e62012-10-31 19:46:00 +00002010 ret = tun_attach_filter(tun);
Michael S. Tsirkin99405162010-02-14 01:01:10 +00002011 break;
2012
2013 case TUNDETACHFILTER:
2014 /* Can be set only for TAPs */
2015 ret = -EINVAL;
2016 if ((tun->flags & TUN_TYPE_MASK) != TUN_TAP_DEV)
2017 break;
Jason Wangc8d68e62012-10-31 19:46:00 +00002018 ret = 0;
2019 tun_detach_filter(tun, tun->numqueues);
Michael S. Tsirkin99405162010-02-14 01:01:10 +00002020 break;
2021
Linus Torvalds1da177e2005-04-16 15:20:36 -07002022 default:
Eric W. Biederman631ab462009-01-20 11:00:40 +00002023 ret = -EINVAL;
2024 break;
Joe Perchesee289b62010-05-17 22:47:34 -07002025 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002026
Herbert Xu876bfd42009-08-06 14:22:44 +00002027unlock:
2028 rtnl_unlock();
2029 if (tun)
2030 tun_put(tun);
Eric W. Biederman631ab462009-01-20 11:00:40 +00002031 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002032}
2033
Arnd Bergmann50857e22009-11-06 22:52:32 -08002034static long tun_chr_ioctl(struct file *file,
2035 unsigned int cmd, unsigned long arg)
2036{
2037 return __tun_chr_ioctl(file, cmd, arg, sizeof (struct ifreq));
2038}
2039
2040#ifdef CONFIG_COMPAT
2041static long tun_chr_compat_ioctl(struct file *file,
2042 unsigned int cmd, unsigned long arg)
2043{
2044 switch (cmd) {
2045 case TUNSETIFF:
2046 case TUNGETIFF:
2047 case TUNSETTXFILTER:
2048 case TUNGETSNDBUF:
2049 case TUNSETSNDBUF:
2050 case SIOCGIFHWADDR:
2051 case SIOCSIFHWADDR:
2052 arg = (unsigned long)compat_ptr(arg);
2053 break;
2054 default:
2055 arg = (compat_ulong_t)arg;
2056 break;
2057 }
2058
2059 /*
2060 * compat_ifreq is shorter than ifreq, so we must not access beyond
2061 * the end of that structure. All fields that are used in this
2062 * driver are compatible though, we don't need to convert the
2063 * contents.
2064 */
2065 return __tun_chr_ioctl(file, cmd, arg, sizeof(struct compat_ifreq));
2066}
2067#endif /* CONFIG_COMPAT */
2068
Linus Torvalds1da177e2005-04-16 15:20:36 -07002069static int tun_chr_fasync(int fd, struct file *file, int on)
2070{
Jason Wang54f968d2012-10-31 19:45:57 +00002071 struct tun_file *tfile = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002072 int ret;
2073
Jason Wang54f968d2012-10-31 19:45:57 +00002074 if ((ret = fasync_helper(fd, file, on, &tfile->fasync)) < 0)
Jonathan Corbet9d319522008-06-19 15:50:37 -06002075 goto out;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002076
Linus Torvalds1da177e2005-04-16 15:20:36 -07002077 if (on) {
Eric W. Biederman609d7fa2006-10-02 02:17:15 -07002078 ret = __f_setown(file, task_pid(current), PIDTYPE_PID, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002079 if (ret)
Jonathan Corbet9d319522008-06-19 15:50:37 -06002080 goto out;
Jason Wang54f968d2012-10-31 19:45:57 +00002081 tfile->flags |= TUN_FASYNC;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002082 } else
Jason Wang54f968d2012-10-31 19:45:57 +00002083 tfile->flags &= ~TUN_FASYNC;
Jonathan Corbet9d319522008-06-19 15:50:37 -06002084 ret = 0;
2085out:
Jonathan Corbet9d319522008-06-19 15:50:37 -06002086 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002087}
2088
2089static int tun_chr_open(struct inode *inode, struct file * file)
2090{
Eric W. Biederman631ab462009-01-20 11:00:40 +00002091 struct tun_file *tfile;
Thomas Gleixnerdeed49f2009-10-14 01:19:46 -07002092
Joe Perches6b8a66e2011-03-02 07:18:10 +00002093 DBG1(KERN_INFO, "tunX: tun_chr_open\n");
Eric W. Biederman631ab462009-01-20 11:00:40 +00002094
Jason Wang54f968d2012-10-31 19:45:57 +00002095 tfile = (struct tun_file *)sk_alloc(&init_net, AF_UNSPEC, GFP_KERNEL,
2096 &tun_proto);
Eric W. Biederman631ab462009-01-20 11:00:40 +00002097 if (!tfile)
2098 return -ENOMEM;
Jason Wang6e914fc2012-10-31 19:45:58 +00002099 rcu_assign_pointer(tfile->tun, NULL);
Eric W. Biederman36b50ba2009-01-20 11:01:48 +00002100 tfile->net = get_net(current->nsproxy->net_ns);
Jason Wang54f968d2012-10-31 19:45:57 +00002101 tfile->flags = 0;
2102
2103 rcu_assign_pointer(tfile->socket.wq, &tfile->wq);
2104 init_waitqueue_head(&tfile->wq.wait);
2105
2106 tfile->socket.file = file;
2107 tfile->socket.ops = &tun_socket_ops;
2108
2109 sock_init_data(&tfile->socket, &tfile->sk);
2110 sk_change_net(&tfile->sk, tfile->net);
2111
2112 tfile->sk.sk_write_space = tun_sock_write_space;
2113 tfile->sk.sk_sndbuf = INT_MAX;
2114
Eric W. Biederman631ab462009-01-20 11:00:40 +00002115 file->private_data = tfile;
Jason Wang54f968d2012-10-31 19:45:57 +00002116 set_bit(SOCK_EXTERNALLY_ALLOCATED, &tfile->socket.flags);
Jason Wang4008e972012-12-13 23:53:30 +00002117 INIT_LIST_HEAD(&tfile->next);
Jason Wang54f968d2012-10-31 19:45:57 +00002118
Linus Torvalds1da177e2005-04-16 15:20:36 -07002119 return 0;
2120}
2121
2122static int tun_chr_close(struct inode *inode, struct file *file)
2123{
Eric W. Biederman631ab462009-01-20 11:00:40 +00002124 struct tun_file *tfile = file->private_data;
Jason Wang54f968d2012-10-31 19:45:57 +00002125 struct net *net = tfile->net;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002126
Jason Wangc8d68e62012-10-31 19:46:00 +00002127 tun_detach(tfile, true);
Jason Wang54f968d2012-10-31 19:45:57 +00002128 put_net(net);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002129
2130 return 0;
2131}
2132
Arjan van de Vend54b1fd2007-02-12 00:55:34 -08002133static const struct file_operations tun_fops = {
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002134 .owner = THIS_MODULE,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002135 .llseek = no_llseek,
Badari Pulavartyee0b3e62006-09-30 23:28:47 -07002136 .read = do_sync_read,
2137 .aio_read = tun_chr_aio_read,
2138 .write = do_sync_write,
2139 .aio_write = tun_chr_aio_write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002140 .poll = tun_chr_poll,
Arnd Bergmann50857e22009-11-06 22:52:32 -08002141 .unlocked_ioctl = tun_chr_ioctl,
2142#ifdef CONFIG_COMPAT
2143 .compat_ioctl = tun_chr_compat_ioctl,
2144#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002145 .open = tun_chr_open,
2146 .release = tun_chr_close,
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002147 .fasync = tun_chr_fasync
Linus Torvalds1da177e2005-04-16 15:20:36 -07002148};
2149
2150static struct miscdevice tun_miscdev = {
2151 .minor = TUN_MINOR,
2152 .name = "tun",
Kay Sieverse454cea2009-09-18 23:01:12 +02002153 .nodename = "net/tun",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002154 .fops = &tun_fops,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002155};
2156
2157/* ethtool interface */
2158
2159static int tun_get_settings(struct net_device *dev, struct ethtool_cmd *cmd)
2160{
2161 cmd->supported = 0;
2162 cmd->advertising = 0;
David Decotigny70739492011-04-27 18:32:40 +00002163 ethtool_cmd_speed_set(cmd, SPEED_10);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002164 cmd->duplex = DUPLEX_FULL;
2165 cmd->port = PORT_TP;
2166 cmd->phy_address = 0;
2167 cmd->transceiver = XCVR_INTERNAL;
2168 cmd->autoneg = AUTONEG_DISABLE;
2169 cmd->maxtxpkt = 0;
2170 cmd->maxrxpkt = 0;
2171 return 0;
2172}
2173
2174static void tun_get_drvinfo(struct net_device *dev, struct ethtool_drvinfo *info)
2175{
2176 struct tun_struct *tun = netdev_priv(dev);
2177
Rick Jones33a5ba12011-11-15 14:59:53 +00002178 strlcpy(info->driver, DRV_NAME, sizeof(info->driver));
2179 strlcpy(info->version, DRV_VERSION, sizeof(info->version));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002180
2181 switch (tun->flags & TUN_TYPE_MASK) {
2182 case TUN_TUN_DEV:
Rick Jones33a5ba12011-11-15 14:59:53 +00002183 strlcpy(info->bus_info, "tun", sizeof(info->bus_info));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002184 break;
2185 case TUN_TAP_DEV:
Rick Jones33a5ba12011-11-15 14:59:53 +00002186 strlcpy(info->bus_info, "tap", sizeof(info->bus_info));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002187 break;
2188 }
2189}
2190
2191static u32 tun_get_msglevel(struct net_device *dev)
2192{
2193#ifdef TUN_DEBUG
2194 struct tun_struct *tun = netdev_priv(dev);
2195 return tun->debug;
2196#else
2197 return -EOPNOTSUPP;
2198#endif
2199}
2200
2201static void tun_set_msglevel(struct net_device *dev, u32 value)
2202{
2203#ifdef TUN_DEBUG
2204 struct tun_struct *tun = netdev_priv(dev);
2205 tun->debug = value;
2206#endif
2207}
2208
Jeff Garzik7282d492006-09-13 14:30:00 -04002209static const struct ethtool_ops tun_ethtool_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002210 .get_settings = tun_get_settings,
2211 .get_drvinfo = tun_get_drvinfo,
2212 .get_msglevel = tun_get_msglevel,
2213 .set_msglevel = tun_set_msglevel,
Nolan Leakebee31362010-07-27 13:53:43 +00002214 .get_link = ethtool_op_get_link,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002215};
2216
Pavel Emelyanov79d17602008-04-16 00:40:46 -07002217
Linus Torvalds1da177e2005-04-16 15:20:36 -07002218static int __init tun_init(void)
2219{
2220 int ret = 0;
2221
Joe Perches6b8a66e2011-03-02 07:18:10 +00002222 pr_info("%s, %s\n", DRV_DESCRIPTION, DRV_VERSION);
2223 pr_info("%s\n", DRV_COPYRIGHT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002224
Eric W. Biedermanf019a7a2009-01-21 16:02:16 -08002225 ret = rtnl_link_register(&tun_link_ops);
Pavel Emelyanov79d17602008-04-16 00:40:46 -07002226 if (ret) {
Joe Perches6b8a66e2011-03-02 07:18:10 +00002227 pr_err("Can't register link_ops\n");
Eric W. Biedermanf019a7a2009-01-21 16:02:16 -08002228 goto err_linkops;
Pavel Emelyanov79d17602008-04-16 00:40:46 -07002229 }
2230
Linus Torvalds1da177e2005-04-16 15:20:36 -07002231 ret = misc_register(&tun_miscdev);
Pavel Emelyanov79d17602008-04-16 00:40:46 -07002232 if (ret) {
Joe Perches6b8a66e2011-03-02 07:18:10 +00002233 pr_err("Can't register misc device %d\n", TUN_MINOR);
Pavel Emelyanov79d17602008-04-16 00:40:46 -07002234 goto err_misc;
2235 }
Eric W. Biedermanf019a7a2009-01-21 16:02:16 -08002236 return 0;
Pavel Emelyanov79d17602008-04-16 00:40:46 -07002237err_misc:
Eric W. Biedermanf019a7a2009-01-21 16:02:16 -08002238 rtnl_link_unregister(&tun_link_ops);
2239err_linkops:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002240 return ret;
2241}
2242
2243static void tun_cleanup(void)
2244{
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002245 misc_deregister(&tun_miscdev);
Eric W. Biedermanf019a7a2009-01-21 16:02:16 -08002246 rtnl_link_unregister(&tun_link_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002247}
2248
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00002249/* Get an underlying socket object from tun file. Returns error unless file is
2250 * attached to a device. The returned object works like a packet socket, it
2251 * can be used for sock_sendmsg/sock_recvmsg. The caller is responsible for
2252 * holding a reference to the file for as long as the socket is in use. */
2253struct socket *tun_get_socket(struct file *file)
2254{
Jason Wang6e914fc2012-10-31 19:45:58 +00002255 struct tun_file *tfile;
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00002256 if (file->f_op != &tun_fops)
2257 return ERR_PTR(-EINVAL);
Jason Wang6e914fc2012-10-31 19:45:58 +00002258 tfile = file->private_data;
2259 if (!tfile)
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00002260 return ERR_PTR(-EBADFD);
Jason Wang54f968d2012-10-31 19:45:57 +00002261 return &tfile->socket;
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00002262}
2263EXPORT_SYMBOL_GPL(tun_get_socket);
2264
Linus Torvalds1da177e2005-04-16 15:20:36 -07002265module_init(tun_init);
2266module_exit(tun_cleanup);
2267MODULE_DESCRIPTION(DRV_DESCRIPTION);
2268MODULE_AUTHOR(DRV_COPYRIGHT);
2269MODULE_LICENSE("GPL");
2270MODULE_ALIAS_MISCDEV(TUN_MINOR);
Kay Sievers578454f2010-05-20 18:07:20 +02002271MODULE_ALIAS("devname:net/tun");