blob: 8d208dd929634c373794c62f001ccbc766b1e241 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * TUN - Universal TUN/TAP device driver.
3 * Copyright (C) 1999-2002 Maxim Krasnyansky <maxk@qualcomm.com>
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * $Id: tun.c,v 1.15 2002/03/01 02:44:24 maxk Exp $
16 */
17
18/*
19 * Changes:
20 *
Mike Kershawff4cc3a2005-09-01 17:40:05 -070021 * Mike Kershaw <dragorn@kismetwireless.net> 2005/08/14
22 * Add TUNSETLINK ioctl to set the link encapsulation
23 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070024 * Mark Smith <markzzzsmith@yahoo.com.au>
Joe Perches344dc8e2012-07-12 19:33:09 +000025 * Use eth_random_addr() for tap MAC address.
Linus Torvalds1da177e2005-04-16 15:20:36 -070026 *
27 * Harald Roelle <harald.roelle@ifi.lmu.de> 2004/04/20
28 * Fixes in packet dropping, queue length setting and queue wakeup.
29 * Increased default tx queue length.
30 * Added ethtool API.
31 * Minor cleanups
32 *
33 * Daniel Podlejski <underley@underley.eu.org>
34 * Modifications for 2.3.99-pre5 kernel.
35 */
36
Joe Perches6b8a66e2011-03-02 07:18:10 +000037#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
38
Linus Torvalds1da177e2005-04-16 15:20:36 -070039#define DRV_NAME "tun"
40#define DRV_VERSION "1.6"
41#define DRV_DESCRIPTION "Universal TUN/TAP device driver"
42#define DRV_COPYRIGHT "(C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>"
43
Linus Torvalds1da177e2005-04-16 15:20:36 -070044#include <linux/module.h>
45#include <linux/errno.h>
46#include <linux/kernel.h>
47#include <linux/major.h>
48#include <linux/slab.h>
49#include <linux/poll.h>
50#include <linux/fcntl.h>
51#include <linux/init.h>
52#include <linux/skbuff.h>
53#include <linux/netdevice.h>
54#include <linux/etherdevice.h>
55#include <linux/miscdevice.h>
56#include <linux/ethtool.h>
57#include <linux/rtnetlink.h>
Arnd Bergmann50857e22009-11-06 22:52:32 -080058#include <linux/compat.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070059#include <linux/if.h>
60#include <linux/if_arp.h>
61#include <linux/if_ether.h>
62#include <linux/if_tun.h>
63#include <linux/crc32.h>
Pavel Emelyanovd647a592008-04-16 00:41:16 -070064#include <linux/nsproxy.h>
Rusty Russellf43798c2008-07-03 03:48:02 -070065#include <linux/virtio_net.h>
Michael S. Tsirkin99405162010-02-14 01:01:10 +000066#include <linux/rcupdate.h>
Eric W. Biederman881d9662007-09-17 11:56:21 -070067#include <net/net_namespace.h>
Pavel Emelyanov79d17602008-04-16 00:40:46 -070068#include <net/netns/generic.h>
Eric W. Biedermanf019a7a2009-01-21 16:02:16 -080069#include <net/rtnetlink.h>
Herbert Xu33dccbb2009-02-05 21:25:32 -080070#include <net/sock.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070071
Linus Torvalds1da177e2005-04-16 15:20:36 -070072#include <asm/uaccess.h>
73
Rusty Russell14daa022008-04-12 18:48:58 -070074/* Uncomment to enable debugging */
75/* #define TUN_DEBUG 1 */
76
Linus Torvalds1da177e2005-04-16 15:20:36 -070077#ifdef TUN_DEBUG
78static int debug;
Rusty Russell14daa022008-04-12 18:48:58 -070079
Joe Perches6b8a66e2011-03-02 07:18:10 +000080#define tun_debug(level, tun, fmt, args...) \
81do { \
82 if (tun->debug) \
83 netdev_printk(level, tun->dev, fmt, ##args); \
84} while (0)
85#define DBG1(level, fmt, args...) \
86do { \
87 if (debug == 2) \
88 printk(level fmt, ##args); \
89} while (0)
Rusty Russell14daa022008-04-12 18:48:58 -070090#else
Joe Perches6b8a66e2011-03-02 07:18:10 +000091#define tun_debug(level, tun, fmt, args...) \
92do { \
93 if (0) \
94 netdev_printk(level, tun->dev, fmt, ##args); \
95} while (0)
96#define DBG1(level, fmt, args...) \
97do { \
98 if (0) \
99 printk(level fmt, ##args); \
100} while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101#endif
102
Michael S. Tsirkin06908992012-07-20 09:23:23 +0000103#define GOODCOPY_LEN 128
104
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -0700105#define FLT_EXACT_COUNT 8
106struct tap_filter {
107 unsigned int count; /* Number of addrs. Zero means disabled */
108 u32 mask[2]; /* Mask of the hashed addrs */
109 unsigned char addr[FLT_EXACT_COUNT][ETH_ALEN];
110};
111
Jason Wangedfb6a12013-01-23 03:59:12 +0000112/* DEFAULT_MAX_NUM_RSS_QUEUES were choosed to let the rx/tx queues allocated for
113 * the netdevice to be fit in one page. So we can make sure the success of
114 * memory allocation. TODO: increase the limit. */
115#define MAX_TAP_QUEUES DEFAULT_MAX_NUM_RSS_QUEUES
Jason Wangb8732fb2013-01-23 03:59:13 +0000116#define MAX_TAP_FLOWS 4096
Jason Wangc8d68e62012-10-31 19:46:00 +0000117
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 Krasnyanskyf271b2cc2008-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;
Paul Moore5dbbaf22013-01-14 07:12:19 +0000188 void *security;
Jason Wangb8732fb2013-01-23 03:59:13 +0000189 u32 flow_count;
Rusty Russell14daa022008-04-12 18:48:58 -0700190};
191
Jason Wang96442e422012-10-31 19:46:02 +0000192static inline u32 tun_hashfn(u32 rxhash)
193{
194 return rxhash & 0x3ff;
195}
196
197static struct tun_flow_entry *tun_flow_find(struct hlist_head *head, u32 rxhash)
198{
199 struct tun_flow_entry *e;
200 struct hlist_node *n;
201
202 hlist_for_each_entry_rcu(e, n, head, hash_link) {
203 if (e->rxhash == rxhash)
204 return e;
205 }
206 return NULL;
207}
208
209static struct tun_flow_entry *tun_flow_create(struct tun_struct *tun,
210 struct hlist_head *head,
211 u32 rxhash, u16 queue_index)
212{
Eric Dumazet9fdc6be2012-12-21 07:17:21 +0000213 struct tun_flow_entry *e = kmalloc(sizeof(*e), GFP_ATOMIC);
214
Jason Wang96442e422012-10-31 19:46:02 +0000215 if (e) {
216 tun_debug(KERN_INFO, tun, "create flow: hash %u index %u\n",
217 rxhash, queue_index);
218 e->updated = jiffies;
219 e->rxhash = rxhash;
220 e->queue_index = queue_index;
221 e->tun = tun;
222 hlist_add_head_rcu(&e->hash_link, head);
Jason Wangb8732fb2013-01-23 03:59:13 +0000223 ++tun->flow_count;
Jason Wang96442e422012-10-31 19:46:02 +0000224 }
225 return e;
226}
227
Jason Wang96442e422012-10-31 19:46:02 +0000228static void tun_flow_delete(struct tun_struct *tun, struct tun_flow_entry *e)
229{
230 tun_debug(KERN_INFO, tun, "delete flow: hash %u index %u\n",
231 e->rxhash, e->queue_index);
232 hlist_del_rcu(&e->hash_link);
Eric Dumazet9fdc6be2012-12-21 07:17:21 +0000233 kfree_rcu(e, rcu);
Jason Wangb8732fb2013-01-23 03:59:13 +0000234 --tun->flow_count;
Jason Wang96442e422012-10-31 19:46:02 +0000235}
236
237static void tun_flow_flush(struct tun_struct *tun)
238{
239 int i;
240
241 spin_lock_bh(&tun->lock);
242 for (i = 0; i < TUN_NUM_FLOW_ENTRIES; i++) {
243 struct tun_flow_entry *e;
244 struct hlist_node *h, *n;
245
246 hlist_for_each_entry_safe(e, h, n, &tun->flows[i], hash_link)
247 tun_flow_delete(tun, e);
248 }
249 spin_unlock_bh(&tun->lock);
250}
251
252static void tun_flow_delete_by_queue(struct tun_struct *tun, u16 queue_index)
253{
254 int i;
255
256 spin_lock_bh(&tun->lock);
257 for (i = 0; i < TUN_NUM_FLOW_ENTRIES; i++) {
258 struct tun_flow_entry *e;
259 struct hlist_node *h, *n;
260
261 hlist_for_each_entry_safe(e, h, n, &tun->flows[i], hash_link) {
262 if (e->queue_index == queue_index)
263 tun_flow_delete(tun, e);
264 }
265 }
266 spin_unlock_bh(&tun->lock);
267}
268
269static void tun_flow_cleanup(unsigned long data)
270{
271 struct tun_struct *tun = (struct tun_struct *)data;
272 unsigned long delay = tun->ageing_time;
273 unsigned long next_timer = jiffies + delay;
274 unsigned long count = 0;
275 int i;
276
277 tun_debug(KERN_INFO, tun, "tun_flow_cleanup\n");
278
279 spin_lock_bh(&tun->lock);
280 for (i = 0; i < TUN_NUM_FLOW_ENTRIES; i++) {
281 struct tun_flow_entry *e;
282 struct hlist_node *h, *n;
283
284 hlist_for_each_entry_safe(e, h, n, &tun->flows[i], hash_link) {
285 unsigned long this_timer;
286 count++;
287 this_timer = e->updated + delay;
288 if (time_before_eq(this_timer, jiffies))
289 tun_flow_delete(tun, e);
290 else if (time_before(this_timer, next_timer))
291 next_timer = this_timer;
292 }
293 }
294
295 if (count)
296 mod_timer(&tun->flow_gc_timer, round_jiffies_up(next_timer));
297 spin_unlock_bh(&tun->lock);
298}
299
Eric Dumazet49974422012-12-12 19:22:57 +0000300static void tun_flow_update(struct tun_struct *tun, u32 rxhash,
Jason Wang96442e422012-10-31 19:46:02 +0000301 u16 queue_index)
302{
303 struct hlist_head *head;
304 struct tun_flow_entry *e;
305 unsigned long delay = tun->ageing_time;
Jason Wang96442e422012-10-31 19:46:02 +0000306
307 if (!rxhash)
308 return;
309 else
310 head = &tun->flows[tun_hashfn(rxhash)];
311
312 rcu_read_lock();
313
314 if (tun->numqueues == 1)
315 goto unlock;
316
317 e = tun_flow_find(head, rxhash);
318 if (likely(e)) {
319 /* TODO: keep queueing to old queue until it's empty? */
320 e->queue_index = queue_index;
321 e->updated = jiffies;
322 } else {
323 spin_lock_bh(&tun->lock);
Jason Wangb8732fb2013-01-23 03:59:13 +0000324 if (!tun_flow_find(head, rxhash) &&
325 tun->flow_count < MAX_TAP_FLOWS)
Jason Wang96442e422012-10-31 19:46:02 +0000326 tun_flow_create(tun, head, rxhash, queue_index);
327
328 if (!timer_pending(&tun->flow_gc_timer))
329 mod_timer(&tun->flow_gc_timer,
330 round_jiffies_up(jiffies + delay));
331 spin_unlock_bh(&tun->lock);
332 }
333
334unlock:
335 rcu_read_unlock();
336}
337
Jason Wangc8d68e62012-10-31 19:46:00 +0000338/* We try to identify a flow through its rxhash first. The reason that
339 * we do not check rxq no. is becuase some cards(e.g 82599), chooses
340 * the rxq based on the txq where the last packet of the flow comes. As
341 * the userspace application move between processors, we may get a
342 * different rxq no. here. If we could not get rxhash, then we would
343 * hope the rxq no. may help here.
344 */
345static u16 tun_select_queue(struct net_device *dev, struct sk_buff *skb)
346{
347 struct tun_struct *tun = netdev_priv(dev);
Jason Wang96442e422012-10-31 19:46:02 +0000348 struct tun_flow_entry *e;
Jason Wangc8d68e62012-10-31 19:46:00 +0000349 u32 txq = 0;
350 u32 numqueues = 0;
351
352 rcu_read_lock();
353 numqueues = tun->numqueues;
354
355 txq = skb_get_rxhash(skb);
356 if (txq) {
Jason Wang96442e422012-10-31 19:46:02 +0000357 e = tun_flow_find(&tun->flows[tun_hashfn(txq)], txq);
358 if (e)
359 txq = e->queue_index;
360 else
361 /* use multiply and shift instead of expensive divide */
362 txq = ((u64)txq * numqueues) >> 32;
Jason Wangc8d68e62012-10-31 19:46:00 +0000363 } else if (likely(skb_rx_queue_recorded(skb))) {
364 txq = skb_get_rx_queue(skb);
365 while (unlikely(txq >= numqueues))
366 txq -= numqueues;
367 }
368
369 rcu_read_unlock();
370 return txq;
371}
372
Jason Wangcde8b152012-10-31 19:46:01 +0000373static inline bool tun_not_capable(struct tun_struct *tun)
374{
375 const struct cred *cred = current_cred();
Eric W. Biedermanc260b772012-11-18 21:34:11 +0000376 struct net *net = dev_net(tun->dev);
Jason Wangcde8b152012-10-31 19:46:01 +0000377
378 return ((uid_valid(tun->owner) && !uid_eq(cred->euid, tun->owner)) ||
379 (gid_valid(tun->group) && !in_egroup_p(tun->group))) &&
Eric W. Biedermanc260b772012-11-18 21:34:11 +0000380 !ns_capable(net->user_ns, CAP_NET_ADMIN);
Jason Wangcde8b152012-10-31 19:46:01 +0000381}
382
Jason Wangc8d68e62012-10-31 19:46:00 +0000383static void tun_set_real_num_queues(struct tun_struct *tun)
384{
385 netif_set_real_num_tx_queues(tun->dev, tun->numqueues);
386 netif_set_real_num_rx_queues(tun->dev, tun->numqueues);
387}
388
Jason Wang4008e972012-12-13 23:53:30 +0000389static void tun_disable_queue(struct tun_struct *tun, struct tun_file *tfile)
390{
391 tfile->detached = tun;
392 list_add_tail(&tfile->next, &tun->disabled);
393 ++tun->numdisabled;
394}
395
Jason Wangd32649d2012-12-18 11:00:27 +0800396static struct tun_struct *tun_enable_queue(struct tun_file *tfile)
Jason Wang4008e972012-12-13 23:53:30 +0000397{
398 struct tun_struct *tun = tfile->detached;
399
400 tfile->detached = NULL;
401 list_del_init(&tfile->next);
402 --tun->numdisabled;
403 return tun;
404}
405
Jason Wangc8d68e62012-10-31 19:46:00 +0000406static void __tun_detach(struct tun_file *tfile, bool clean)
407{
408 struct tun_file *ntfile;
409 struct tun_struct *tun;
410 struct net_device *dev;
411
Jason Wangb8deabd2013-01-11 16:59:32 +0000412 tun = rtnl_dereference(tfile->tun);
413
Jason Wangc8d68e62012-10-31 19:46:00 +0000414 if (tun) {
415 u16 index = tfile->queue_index;
416 BUG_ON(index >= tun->numqueues);
417 dev = tun->dev;
418
419 rcu_assign_pointer(tun->tfiles[index],
420 tun->tfiles[tun->numqueues - 1]);
421 rcu_assign_pointer(tfile->tun, NULL);
Jason Wangb8deabd2013-01-11 16:59:32 +0000422 ntfile = rtnl_dereference(tun->tfiles[index]);
Jason Wangc8d68e62012-10-31 19:46:00 +0000423 ntfile->queue_index = index;
424
425 --tun->numqueues;
Jason Wang4008e972012-12-13 23:53:30 +0000426 if (clean)
427 sock_put(&tfile->sk);
428 else
429 tun_disable_queue(tun, tfile);
Jason Wangc8d68e62012-10-31 19:46:00 +0000430
431 synchronize_net();
Jason Wang96442e422012-10-31 19:46:02 +0000432 tun_flow_delete_by_queue(tun, tun->numqueues + 1);
Jason Wangc8d68e62012-10-31 19:46:00 +0000433 /* Drop read queue */
434 skb_queue_purge(&tfile->sk.sk_receive_queue);
435 tun_set_real_num_queues(tun);
Jason Wangdd38bd82013-01-11 16:59:34 +0000436 } else if (tfile->detached && clean) {
Jason Wang4008e972012-12-13 23:53:30 +0000437 tun = tun_enable_queue(tfile);
Jason Wangdd38bd82013-01-11 16:59:34 +0000438 sock_put(&tfile->sk);
439 }
Jason Wangc8d68e62012-10-31 19:46:00 +0000440
441 if (clean) {
Jason Wang4008e972012-12-13 23:53:30 +0000442 if (tun && tun->numqueues == 0 && tun->numdisabled == 0 &&
443 !(tun->flags & TUN_PERSIST))
444 if (tun->dev->reg_state == NETREG_REGISTERED)
445 unregister_netdevice(tun->dev);
446
Jason Wangc8d68e62012-10-31 19:46:00 +0000447 BUG_ON(!test_bit(SOCK_EXTERNALLY_ALLOCATED,
448 &tfile->socket.flags));
449 sk_release_kernel(&tfile->sk);
450 }
451}
452
453static void tun_detach(struct tun_file *tfile, bool clean)
454{
455 rtnl_lock();
456 __tun_detach(tfile, clean);
457 rtnl_unlock();
458}
459
460static void tun_detach_all(struct net_device *dev)
461{
462 struct tun_struct *tun = netdev_priv(dev);
Jason Wang4008e972012-12-13 23:53:30 +0000463 struct tun_file *tfile, *tmp;
Jason Wangc8d68e62012-10-31 19:46:00 +0000464 int i, n = tun->numqueues;
465
466 for (i = 0; i < n; i++) {
Jason Wangb8deabd2013-01-11 16:59:32 +0000467 tfile = rtnl_dereference(tun->tfiles[i]);
Jason Wangc8d68e62012-10-31 19:46:00 +0000468 BUG_ON(!tfile);
469 wake_up_all(&tfile->wq.wait);
470 rcu_assign_pointer(tfile->tun, NULL);
471 --tun->numqueues;
472 }
473 BUG_ON(tun->numqueues != 0);
474
475 synchronize_net();
476 for (i = 0; i < n; i++) {
Jason Wangb8deabd2013-01-11 16:59:32 +0000477 tfile = rtnl_dereference(tun->tfiles[i]);
Jason Wangc8d68e62012-10-31 19:46:00 +0000478 /* Drop read queue */
479 skb_queue_purge(&tfile->sk.sk_receive_queue);
480 sock_put(&tfile->sk);
481 }
Jason Wang4008e972012-12-13 23:53:30 +0000482 list_for_each_entry_safe(tfile, tmp, &tun->disabled, next) {
483 tun_enable_queue(tfile);
484 skb_queue_purge(&tfile->sk.sk_receive_queue);
485 sock_put(&tfile->sk);
486 }
487 BUG_ON(tun->numdisabled != 0);
Jason Wangdd38bd82013-01-11 16:59:34 +0000488
489 if (tun->flags & TUN_PERSIST)
490 module_put(THIS_MODULE);
Jason Wangc8d68e62012-10-31 19:46:00 +0000491}
492
Eric W. Biedermana7385ba2009-01-20 10:57:48 +0000493static int tun_attach(struct tun_struct *tun, struct file *file)
494{
Eric W. Biederman631ab462009-01-20 11:00:40 +0000495 struct tun_file *tfile = file->private_data;
Eric W. Biederman38231b72009-01-20 11:02:28 +0000496 int err;
Eric W. Biedermana7385ba2009-01-20 10:57:48 +0000497
Paul Moore5dbbaf22013-01-14 07:12:19 +0000498 err = security_tun_dev_attach(tfile->socket.sk, tun->security);
499 if (err < 0)
500 goto out;
501
Eric W. Biederman38231b72009-01-20 11:02:28 +0000502 err = -EINVAL;
Jason Wangb8deabd2013-01-11 16:59:32 +0000503 if (rtnl_dereference(tfile->tun))
Eric W. Biederman38231b72009-01-20 11:02:28 +0000504 goto out;
505
506 err = -EBUSY;
Jason Wangc8d68e62012-10-31 19:46:00 +0000507 if (!(tun->flags & TUN_TAP_MQ) && tun->numqueues == 1)
508 goto out;
509
510 err = -E2BIG;
Jason Wang4008e972012-12-13 23:53:30 +0000511 if (!tfile->detached &&
512 tun->numqueues + tun->numdisabled == MAX_TAP_QUEUES)
Eric W. Biederman38231b72009-01-20 11:02:28 +0000513 goto out;
514
515 err = 0;
Jason Wang54f968d2012-10-31 19:45:57 +0000516
Jason Wangc8d68e62012-10-31 19:46:00 +0000517 /* Re-attach the filter to presist device */
Jason Wang54f968d2012-10-31 19:45:57 +0000518 if (tun->filter_attached == true) {
519 err = sk_attach_filter(&tun->fprog, tfile->socket.sk);
520 if (!err)
521 goto out;
522 }
Jason Wangc8d68e62012-10-31 19:46:00 +0000523 tfile->queue_index = tun->numqueues;
Jason Wang6e914fc2012-10-31 19:45:58 +0000524 rcu_assign_pointer(tfile->tun, tun);
Jason Wangc8d68e62012-10-31 19:46:00 +0000525 rcu_assign_pointer(tun->tfiles[tun->numqueues], tfile);
Jason Wangc8d68e62012-10-31 19:46:00 +0000526 tun->numqueues++;
527
Jason Wang4008e972012-12-13 23:53:30 +0000528 if (tfile->detached)
529 tun_enable_queue(tfile);
530 else
531 sock_hold(&tfile->sk);
532
Jason Wangc8d68e62012-10-31 19:46:00 +0000533 tun_set_real_num_queues(tun);
534
Jason Wangc8d68e62012-10-31 19:46:00 +0000535 /* device is allowed to go away first, so no need to hold extra
536 * refcnt.
537 */
Eric W. Biedermana7385ba2009-01-20 10:57:48 +0000538
Eric W. Biederman38231b72009-01-20 11:02:28 +0000539out:
Eric W. Biederman38231b72009-01-20 11:02:28 +0000540 return err;
Eric W. Biedermana7385ba2009-01-20 10:57:48 +0000541}
542
Eric W. Biederman631ab462009-01-20 11:00:40 +0000543static struct tun_struct *__tun_get(struct tun_file *tfile)
544{
Jason Wang6e914fc2012-10-31 19:45:58 +0000545 struct tun_struct *tun;
Eric W. Biedermanc70f1822009-01-20 11:07:17 +0000546
Jason Wang6e914fc2012-10-31 19:45:58 +0000547 rcu_read_lock();
548 tun = rcu_dereference(tfile->tun);
549 if (tun)
550 dev_hold(tun->dev);
551 rcu_read_unlock();
Eric W. Biedermanc70f1822009-01-20 11:07:17 +0000552
553 return tun;
Eric W. Biederman631ab462009-01-20 11:00:40 +0000554}
555
556static struct tun_struct *tun_get(struct file *file)
557{
558 return __tun_get(file->private_data);
559}
560
561static void tun_put(struct tun_struct *tun)
562{
Jason Wang6e914fc2012-10-31 19:45:58 +0000563 dev_put(tun->dev);
Eric W. Biederman631ab462009-01-20 11:00:40 +0000564}
565
Joe Perches6b8a66e2011-03-02 07:18:10 +0000566/* TAP filtering */
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -0700567static void addr_hash_set(u32 *mask, const u8 *addr)
568{
569 int n = ether_crc(ETH_ALEN, addr) >> 26;
570 mask[n >> 5] |= (1 << (n & 31));
571}
572
573static unsigned int addr_hash_test(const u32 *mask, const u8 *addr)
574{
575 int n = ether_crc(ETH_ALEN, addr) >> 26;
576 return mask[n >> 5] & (1 << (n & 31));
577}
578
579static int update_filter(struct tap_filter *filter, void __user *arg)
580{
581 struct { u8 u[ETH_ALEN]; } *addr;
582 struct tun_filter uf;
583 int err, alen, n, nexact;
584
585 if (copy_from_user(&uf, arg, sizeof(uf)))
586 return -EFAULT;
587
588 if (!uf.count) {
589 /* Disabled */
590 filter->count = 0;
591 return 0;
592 }
593
594 alen = ETH_ALEN * uf.count;
595 addr = kmalloc(alen, GFP_KERNEL);
596 if (!addr)
597 return -ENOMEM;
598
599 if (copy_from_user(addr, arg + sizeof(uf), alen)) {
600 err = -EFAULT;
601 goto done;
602 }
603
604 /* The filter is updated without holding any locks. Which is
605 * perfectly safe. We disable it first and in the worst
606 * case we'll accept a few undesired packets. */
607 filter->count = 0;
608 wmb();
609
610 /* Use first set of addresses as an exact filter */
611 for (n = 0; n < uf.count && n < FLT_EXACT_COUNT; n++)
612 memcpy(filter->addr[n], addr[n].u, ETH_ALEN);
613
614 nexact = n;
615
Alex Williamsoncfbf84f2009-02-08 17:49:17 -0800616 /* Remaining multicast addresses are hashed,
617 * unicast will leave the filter disabled. */
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -0700618 memset(filter->mask, 0, sizeof(filter->mask));
Alex Williamsoncfbf84f2009-02-08 17:49:17 -0800619 for (; n < uf.count; n++) {
620 if (!is_multicast_ether_addr(addr[n].u)) {
621 err = 0; /* no filter */
622 goto done;
623 }
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -0700624 addr_hash_set(filter->mask, addr[n].u);
Alex Williamsoncfbf84f2009-02-08 17:49:17 -0800625 }
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -0700626
627 /* For ALLMULTI just set the mask to all ones.
628 * This overrides the mask populated above. */
629 if ((uf.flags & TUN_FLT_ALLMULTI))
630 memset(filter->mask, ~0, sizeof(filter->mask));
631
632 /* Now enable the filter */
633 wmb();
634 filter->count = nexact;
635
636 /* Return the number of exact filters */
637 err = nexact;
638
639done:
640 kfree(addr);
641 return err;
642}
643
644/* Returns: 0 - drop, !=0 - accept */
645static int run_filter(struct tap_filter *filter, const struct sk_buff *skb)
646{
647 /* Cannot use eth_hdr(skb) here because skb_mac_hdr() is incorrect
648 * at this point. */
649 struct ethhdr *eh = (struct ethhdr *) skb->data;
650 int i;
651
652 /* Exact match */
653 for (i = 0; i < filter->count; i++)
Joe Perches2e42e472012-05-09 17:17:46 +0000654 if (ether_addr_equal(eh->h_dest, filter->addr[i]))
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -0700655 return 1;
656
657 /* Inexact match (multicast only) */
658 if (is_multicast_ether_addr(eh->h_dest))
659 return addr_hash_test(filter->mask, eh->h_dest);
660
661 return 0;
662}
663
664/*
665 * Checks whether the packet is accepted or not.
666 * Returns: 0 - drop, !=0 - accept
667 */
668static int check_filter(struct tap_filter *filter, const struct sk_buff *skb)
669{
670 if (!filter->count)
671 return 1;
672
673 return run_filter(filter, skb);
674}
675
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676/* Network device part of the driver */
677
Jeff Garzik7282d492006-09-13 14:30:00 -0400678static const struct ethtool_ops tun_ethtool_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679
Eric W. Biedermanc70f1822009-01-20 11:07:17 +0000680/* Net device detach from fd. */
681static void tun_net_uninit(struct net_device *dev)
682{
Jason Wangc8d68e62012-10-31 19:46:00 +0000683 tun_detach_all(dev);
Eric W. Biedermanc70f1822009-01-20 11:07:17 +0000684}
685
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686/* Net device open. */
687static int tun_net_open(struct net_device *dev)
688{
Jason Wangc8d68e62012-10-31 19:46:00 +0000689 netif_tx_start_all_queues(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690 return 0;
691}
692
693/* Net device close. */
694static int tun_net_close(struct net_device *dev)
695{
Jason Wangc8d68e62012-10-31 19:46:00 +0000696 netif_tx_stop_all_queues(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697 return 0;
698}
699
700/* Net device start xmit */
Stephen Hemminger424efe92009-08-31 19:50:51 +0000701static netdev_tx_t tun_net_xmit(struct sk_buff *skb, struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702{
703 struct tun_struct *tun = netdev_priv(dev);
Jason Wangc8d68e62012-10-31 19:46:00 +0000704 int txq = skb->queue_mapping;
Jason Wang6e914fc2012-10-31 19:45:58 +0000705 struct tun_file *tfile;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706
Jason Wang6e914fc2012-10-31 19:45:58 +0000707 rcu_read_lock();
Jason Wangc8d68e62012-10-31 19:46:00 +0000708 tfile = rcu_dereference(tun->tfiles[txq]);
709
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710 /* Drop packet if interface is not attached */
Jason Wangc8d68e62012-10-31 19:46:00 +0000711 if (txq >= tun->numqueues)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712 goto drop;
713
Jason Wang6e914fc2012-10-31 19:45:58 +0000714 tun_debug(KERN_INFO, tun, "tun_net_xmit %d\n", skb->len);
715
Jason Wangc8d68e62012-10-31 19:46:00 +0000716 BUG_ON(!tfile);
717
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -0700718 /* Drop if the filter does not like it.
719 * This is a noop if the filter is disabled.
720 * Filter can be enabled only for the TAP devices. */
721 if (!check_filter(&tun->txflt, skb))
722 goto drop;
723
Jason Wang54f968d2012-10-31 19:45:57 +0000724 if (tfile->socket.sk->sk_filter &&
725 sk_filter(tfile->socket.sk, skb))
Michael S. Tsirkin99405162010-02-14 01:01:10 +0000726 goto drop;
727
Rami Rosen36fe8c092012-11-25 22:07:40 +0000728 /* Limit the number of packets queued by dividing txq length with the
Jason Wangc8d68e62012-10-31 19:46:00 +0000729 * number of queues.
730 */
Jason Wang54f968d2012-10-31 19:45:57 +0000731 if (skb_queue_len(&tfile->socket.sk->sk_receive_queue)
Michael S. Tsirkin5d097102012-12-03 10:07:14 +0000732 >= dev->tx_queue_len / tun->numqueues)
733 goto drop;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734
Michael S. Tsirkin0110d6f2010-04-13 04:59:44 +0000735 /* Orphan the skb - required as we might hang on to it
736 * for indefinite time. */
Michael S. Tsirkin868eefe2012-07-20 09:23:14 +0000737 if (unlikely(skb_orphan_frags(skb, GFP_ATOMIC)))
738 goto drop;
Michael S. Tsirkin0110d6f2010-04-13 04:59:44 +0000739 skb_orphan(skb);
740
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -0700741 /* Enqueue packet */
Jason Wang54f968d2012-10-31 19:45:57 +0000742 skb_queue_tail(&tfile->socket.sk->sk_receive_queue, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743
744 /* Notify and wake up reader process */
Jason Wang54f968d2012-10-31 19:45:57 +0000745 if (tfile->flags & TUN_FASYNC)
746 kill_fasync(&tfile->fasync, SIGIO, POLL_IN);
747 wake_up_interruptible_poll(&tfile->wq.wait, POLLIN |
Michael S. Tsirkin05c28282010-01-14 06:17:09 +0000748 POLLRDNORM | POLLRDBAND);
Jason Wang6e914fc2012-10-31 19:45:58 +0000749
750 rcu_read_unlock();
Patrick McHardy6ed10652009-06-23 06:03:08 +0000751 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752
753drop:
Jeff Garzik09f75cd2007-10-03 17:41:50 -0700754 dev->stats.tx_dropped++;
Michael S. Tsirkin149d36f2012-11-01 09:16:32 +0000755 skb_tx_error(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756 kfree_skb(skb);
Jason Wang6e914fc2012-10-31 19:45:58 +0000757 rcu_read_unlock();
Patrick McHardy6ed10652009-06-23 06:03:08 +0000758 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759}
760
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -0700761static void tun_net_mclist(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762{
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -0700763 /*
764 * This callback is supposed to deal with mc filter in
765 * _rx_ path and has nothing to do with the _tx_ path.
766 * In rx path we always accept everything userspace gives us.
767 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768}
769
Ed Swierk4885a502007-09-16 12:21:38 -0700770#define MIN_MTU 68
771#define MAX_MTU 65535
772
773static int
774tun_net_change_mtu(struct net_device *dev, int new_mtu)
775{
776 if (new_mtu < MIN_MTU || new_mtu + dev->hard_header_len > MAX_MTU)
777 return -EINVAL;
778 dev->mtu = new_mtu;
779 return 0;
780}
781
Michał Mirosławc8f44af2011-11-15 15:29:55 +0000782static netdev_features_t tun_net_fix_features(struct net_device *dev,
783 netdev_features_t features)
Michał Mirosław88255372011-04-19 06:13:10 +0000784{
785 struct tun_struct *tun = netdev_priv(dev);
786
787 return (features & tun->set_features) | (features & ~TUN_USER_FEATURES);
788}
Neil Hormanbebd0972011-06-15 05:25:01 +0000789#ifdef CONFIG_NET_POLL_CONTROLLER
790static void tun_poll_controller(struct net_device *dev)
791{
792 /*
793 * Tun only receives frames when:
794 * 1) the char device endpoint gets data from user space
795 * 2) the tun socket gets a sendmsg call from user space
796 * Since both of those are syncronous operations, we are guaranteed
797 * never to have pending data when we poll for it
798 * so theres nothing to do here but return.
799 * We need this though so netpoll recognizes us as an interface that
800 * supports polling, which enables bridge devices in virt setups to
801 * still use netconsole
802 */
803 return;
804}
805#endif
Stephen Hemminger758e43b2008-11-19 22:10:37 -0800806static const struct net_device_ops tun_netdev_ops = {
Eric W. Biedermanc70f1822009-01-20 11:07:17 +0000807 .ndo_uninit = tun_net_uninit,
Stephen Hemminger758e43b2008-11-19 22:10:37 -0800808 .ndo_open = tun_net_open,
809 .ndo_stop = tun_net_close,
Stephen Hemminger00829822008-11-20 20:14:53 -0800810 .ndo_start_xmit = tun_net_xmit,
Stephen Hemminger758e43b2008-11-19 22:10:37 -0800811 .ndo_change_mtu = tun_net_change_mtu,
Michał Mirosław88255372011-04-19 06:13:10 +0000812 .ndo_fix_features = tun_net_fix_features,
Jason Wangc8d68e62012-10-31 19:46:00 +0000813 .ndo_select_queue = tun_select_queue,
Neil Hormanbebd0972011-06-15 05:25:01 +0000814#ifdef CONFIG_NET_POLL_CONTROLLER
815 .ndo_poll_controller = tun_poll_controller,
816#endif
Stephen Hemminger758e43b2008-11-19 22:10:37 -0800817};
818
819static const struct net_device_ops tap_netdev_ops = {
Eric W. Biedermanc70f1822009-01-20 11:07:17 +0000820 .ndo_uninit = tun_net_uninit,
Stephen Hemminger758e43b2008-11-19 22:10:37 -0800821 .ndo_open = tun_net_open,
822 .ndo_stop = tun_net_close,
Stephen Hemminger00829822008-11-20 20:14:53 -0800823 .ndo_start_xmit = tun_net_xmit,
Stephen Hemminger758e43b2008-11-19 22:10:37 -0800824 .ndo_change_mtu = tun_net_change_mtu,
Michał Mirosław88255372011-04-19 06:13:10 +0000825 .ndo_fix_features = tun_net_fix_features,
Jiri Pirkoafc4b132011-08-16 06:29:01 +0000826 .ndo_set_rx_mode = tun_net_mclist,
Stephen Hemminger758e43b2008-11-19 22:10:37 -0800827 .ndo_set_mac_address = eth_mac_addr,
828 .ndo_validate_addr = eth_validate_addr,
Jason Wangc8d68e62012-10-31 19:46:00 +0000829 .ndo_select_queue = tun_select_queue,
Neil Hormanbebd0972011-06-15 05:25:01 +0000830#ifdef CONFIG_NET_POLL_CONTROLLER
831 .ndo_poll_controller = tun_poll_controller,
832#endif
Stephen Hemminger758e43b2008-11-19 22:10:37 -0800833};
834
Jason Wang96442e422012-10-31 19:46:02 +0000835static int tun_flow_init(struct tun_struct *tun)
836{
837 int i;
838
Jason Wang96442e422012-10-31 19:46:02 +0000839 for (i = 0; i < TUN_NUM_FLOW_ENTRIES; i++)
840 INIT_HLIST_HEAD(&tun->flows[i]);
841
842 tun->ageing_time = TUN_FLOW_EXPIRE;
843 setup_timer(&tun->flow_gc_timer, tun_flow_cleanup, (unsigned long)tun);
844 mod_timer(&tun->flow_gc_timer,
845 round_jiffies_up(jiffies + tun->ageing_time));
846
847 return 0;
848}
849
850static void tun_flow_uninit(struct tun_struct *tun)
851{
852 del_timer_sync(&tun->flow_gc_timer);
853 tun_flow_flush(tun);
Jason Wang96442e422012-10-31 19:46:02 +0000854}
855
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856/* Initialize net device. */
857static void tun_net_init(struct net_device *dev)
858{
859 struct tun_struct *tun = netdev_priv(dev);
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400860
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861 switch (tun->flags & TUN_TYPE_MASK) {
862 case TUN_TUN_DEV:
Stephen Hemminger758e43b2008-11-19 22:10:37 -0800863 dev->netdev_ops = &tun_netdev_ops;
864
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865 /* Point-to-Point TUN Device */
866 dev->hard_header_len = 0;
867 dev->addr_len = 0;
868 dev->mtu = 1500;
869
870 /* Zero header length */
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400871 dev->type = ARPHRD_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872 dev->flags = IFF_POINTOPOINT | IFF_NOARP | IFF_MULTICAST;
873 dev->tx_queue_len = TUN_READQ_SIZE; /* We prefer our own queue length */
874 break;
875
876 case TUN_TAP_DEV:
Kusanagi Kouichi7a0a9602008-12-29 18:23:28 -0800877 dev->netdev_ops = &tap_netdev_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878 /* Ethernet TAP Device */
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -0700879 ether_setup(dev);
Neil Horman550fd082011-07-26 06:05:38 +0000880 dev->priv_flags &= ~IFF_TX_SKB_SHARING;
stephen hemmingera6768472012-12-10 15:16:00 +0000881 dev->priv_flags |= IFF_LIVE_ADDR_CHANGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882
Danny Kukawkaf2cedb62012-02-15 06:45:39 +0000883 eth_hw_addr_random(dev);
Brian Braunstein36226a82007-04-26 01:00:55 -0700884
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885 dev->tx_queue_len = TUN_READQ_SIZE; /* We prefer our own queue length */
886 break;
887 }
888}
889
890/* Character device part */
891
892/* Poll */
Jason Wangc8d68e62012-10-31 19:46:00 +0000893static unsigned int tun_chr_poll(struct file *file, poll_table *wait)
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400894{
Eric W. Biedermanb2430de2009-01-20 11:03:21 +0000895 struct tun_file *tfile = file->private_data;
896 struct tun_struct *tun = __tun_get(tfile);
Mariusz Kozlowski3c8a9c62009-07-05 19:48:35 +0000897 struct sock *sk;
Herbert Xu33dccbb2009-02-05 21:25:32 -0800898 unsigned int mask = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899
900 if (!tun)
Eric W. Biedermaneac9e902009-01-20 10:59:05 +0000901 return POLLERR;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902
Jason Wang54f968d2012-10-31 19:45:57 +0000903 sk = tfile->socket.sk;
Mariusz Kozlowski3c8a9c62009-07-05 19:48:35 +0000904
Joe Perches6b8a66e2011-03-02 07:18:10 +0000905 tun_debug(KERN_INFO, tun, "tun_chr_poll\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906
Jason Wang54f968d2012-10-31 19:45:57 +0000907 poll_wait(file, &tfile->wq.wait, wait);
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400908
Michael S. Tsirkin89f56d12009-08-30 07:04:42 +0000909 if (!skb_queue_empty(&sk->sk_receive_queue))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910 mask |= POLLIN | POLLRDNORM;
911
Herbert Xu33dccbb2009-02-05 21:25:32 -0800912 if (sock_writeable(sk) ||
913 (!test_and_set_bit(SOCK_ASYNC_NOSPACE, &sk->sk_socket->flags) &&
914 sock_writeable(sk)))
915 mask |= POLLOUT | POLLWRNORM;
916
Eric W. Biedermanc70f1822009-01-20 11:07:17 +0000917 if (tun->dev->reg_state != NETREG_REGISTERED)
918 mask = POLLERR;
919
Eric W. Biederman631ab462009-01-20 11:00:40 +0000920 tun_put(tun);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921 return mask;
922}
923
Rusty Russellf42157c2008-08-15 15:15:10 -0700924/* prepad is the amount to reserve at front. len is length after that.
925 * linear is a hint as to how much to copy (usually headers). */
Jason Wang54f968d2012-10-31 19:45:57 +0000926static struct sk_buff *tun_alloc_skb(struct tun_file *tfile,
stephen hemminger6f7c1562011-06-08 14:33:08 +0000927 size_t prepad, size_t len,
928 size_t linear, int noblock)
Rusty Russellf42157c2008-08-15 15:15:10 -0700929{
Jason Wang54f968d2012-10-31 19:45:57 +0000930 struct sock *sk = tfile->socket.sk;
Rusty Russellf42157c2008-08-15 15:15:10 -0700931 struct sk_buff *skb;
Herbert Xu33dccbb2009-02-05 21:25:32 -0800932 int err;
Rusty Russellf42157c2008-08-15 15:15:10 -0700933
934 /* Under a page? Don't bother with paged skb. */
Herbert Xu0eca93b2009-04-14 02:09:43 -0700935 if (prepad + len < PAGE_SIZE || !linear)
Herbert Xu33dccbb2009-02-05 21:25:32 -0800936 linear = len;
Rusty Russellf42157c2008-08-15 15:15:10 -0700937
Herbert Xu33dccbb2009-02-05 21:25:32 -0800938 skb = sock_alloc_send_pskb(sk, prepad + linear, len - linear, noblock,
939 &err);
Rusty Russellf42157c2008-08-15 15:15:10 -0700940 if (!skb)
Herbert Xu33dccbb2009-02-05 21:25:32 -0800941 return ERR_PTR(err);
Rusty Russellf42157c2008-08-15 15:15:10 -0700942
943 skb_reserve(skb, prepad);
944 skb_put(skb, linear);
Herbert Xu33dccbb2009-02-05 21:25:32 -0800945 skb->data_len = len - linear;
946 skb->len += len - linear;
Rusty Russellf42157c2008-08-15 15:15:10 -0700947
948 return skb;
949}
950
Michael S. Tsirkin06908992012-07-20 09:23:23 +0000951/* set skb frags from iovec, this can move to core network code for reuse */
952static int zerocopy_sg_from_iovec(struct sk_buff *skb, const struct iovec *from,
953 int offset, size_t count)
954{
955 int len = iov_length(from, count) - offset;
956 int copy = skb_headlen(skb);
957 int size, offset1 = 0;
958 int i = 0;
959
960 /* Skip over from offset */
961 while (count && (offset >= from->iov_len)) {
962 offset -= from->iov_len;
963 ++from;
964 --count;
965 }
966
967 /* copy up to skb headlen */
968 while (count && (copy > 0)) {
969 size = min_t(unsigned int, copy, from->iov_len - offset);
970 if (copy_from_user(skb->data + offset1, from->iov_base + offset,
971 size))
972 return -EFAULT;
973 if (copy > size) {
974 ++from;
975 --count;
976 offset = 0;
977 } else
978 offset += size;
979 copy -= size;
980 offset1 += size;
981 }
982
983 if (len == offset1)
984 return 0;
985
986 while (count--) {
987 struct page *page[MAX_SKB_FRAGS];
988 int num_pages;
989 unsigned long base;
990 unsigned long truesize;
991
992 len = from->iov_len - offset;
993 if (!len) {
994 offset = 0;
995 ++from;
996 continue;
997 }
998 base = (unsigned long)from->iov_base + offset;
999 size = ((base & ~PAGE_MASK) + len + ~PAGE_MASK) >> PAGE_SHIFT;
1000 if (i + size > MAX_SKB_FRAGS)
1001 return -EMSGSIZE;
1002 num_pages = get_user_pages_fast(base, size, 0, &page[i]);
1003 if (num_pages != size) {
1004 for (i = 0; i < num_pages; i++)
1005 put_page(page[i]);
1006 return -EFAULT;
1007 }
1008 truesize = size * PAGE_SIZE;
1009 skb->data_len += len;
1010 skb->len += len;
1011 skb->truesize += truesize;
Eric Dumazetcef401d2013-01-25 20:34:37 +00001012 skb_shinfo(skb)->gso_type |= SKB_GSO_SHARED_FRAG;
Michael S. Tsirkin06908992012-07-20 09:23:23 +00001013 atomic_add(truesize, &skb->sk->sk_wmem_alloc);
1014 while (len) {
1015 int off = base & ~PAGE_MASK;
1016 int size = min_t(int, len, PAGE_SIZE - off);
1017 __skb_fill_page_desc(skb, i, page[i], off, size);
1018 skb_shinfo(skb)->nr_frags++;
1019 /* increase sk_wmem_alloc */
1020 base += size;
1021 len -= size;
1022 i++;
1023 }
1024 offset = 0;
1025 ++from;
1026 }
1027 return 0;
1028}
1029
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030/* Get packet from user space buffer */
Jason Wang54f968d2012-10-31 19:45:57 +00001031static ssize_t tun_get_user(struct tun_struct *tun, struct tun_file *tfile,
1032 void *msg_control, const struct iovec *iv,
1033 size_t total_len, size_t count, int noblock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034{
Harvey Harrison09640e62009-02-01 00:45:17 -08001035 struct tun_pi pi = { 0, cpu_to_be16(ETH_P_IP) };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036 struct sk_buff *skb;
Michael S. Tsirkin06908992012-07-20 09:23:23 +00001037 size_t len = total_len, align = NET_SKB_PAD;
Rusty Russellf43798c2008-07-03 03:48:02 -07001038 struct virtio_net_hdr gso = { 0 };
Michael S. Tsirkin6f26c9a2009-04-20 01:26:11 +00001039 int offset = 0;
Michael S. Tsirkin06908992012-07-20 09:23:23 +00001040 int copylen;
1041 bool zerocopy = false;
1042 int err;
Eric Dumazet49974422012-12-12 19:22:57 +00001043 u32 rxhash;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044
1045 if (!(tun->flags & TUN_NO_PI)) {
Michael S. Tsirkin06908992012-07-20 09:23:23 +00001046 if ((len -= sizeof(pi)) > total_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047 return -EINVAL;
1048
Michael S. Tsirkin6f26c9a2009-04-20 01:26:11 +00001049 if (memcpy_fromiovecend((void *)&pi, iv, 0, sizeof(pi)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050 return -EFAULT;
Michael S. Tsirkin6f26c9a2009-04-20 01:26:11 +00001051 offset += sizeof(pi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052 }
1053
Rusty Russellf43798c2008-07-03 03:48:02 -07001054 if (tun->flags & TUN_VNET_HDR) {
Michael S. Tsirkin06908992012-07-20 09:23:23 +00001055 if ((len -= tun->vnet_hdr_sz) > total_len)
Rusty Russellf43798c2008-07-03 03:48:02 -07001056 return -EINVAL;
1057
Michael S. Tsirkin6f26c9a2009-04-20 01:26:11 +00001058 if (memcpy_fromiovecend((void *)&gso, iv, offset, sizeof(gso)))
Rusty Russellf43798c2008-07-03 03:48:02 -07001059 return -EFAULT;
1060
Herbert Xu49091222009-06-08 00:20:01 -07001061 if ((gso.flags & VIRTIO_NET_HDR_F_NEEDS_CSUM) &&
1062 gso.csum_start + gso.csum_offset + 2 > gso.hdr_len)
1063 gso.hdr_len = gso.csum_start + gso.csum_offset + 2;
1064
Rusty Russellf43798c2008-07-03 03:48:02 -07001065 if (gso.hdr_len > len)
1066 return -EINVAL;
Michael S. Tsirkind9d52b52010-03-17 17:45:01 +02001067 offset += tun->vnet_hdr_sz;
Rusty Russellf43798c2008-07-03 03:48:02 -07001068 }
1069
Rusty Russelle01bf1c2008-04-12 18:49:30 -07001070 if ((tun->flags & TUN_TYPE_MASK) == TUN_TAP_DEV) {
stephen hemmingera504b862011-06-08 14:33:07 +00001071 align += NET_IP_ALIGN;
Herbert Xu0eca93b2009-04-14 02:09:43 -07001072 if (unlikely(len < ETH_HLEN ||
1073 (gso.hdr_len && gso.hdr_len < ETH_HLEN)))
Rusty Russelle01bf1c2008-04-12 18:49:30 -07001074 return -EINVAL;
1075 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001076
Michael S. Tsirkin06908992012-07-20 09:23:23 +00001077 if (msg_control)
1078 zerocopy = true;
1079
1080 if (zerocopy) {
1081 /* Userspace may produce vectors with count greater than
1082 * MAX_SKB_FRAGS, so we need to linearize parts of the skb
1083 * to let the rest of data to be fit in the frags.
1084 */
1085 if (count > MAX_SKB_FRAGS) {
1086 copylen = iov_length(iv, count - MAX_SKB_FRAGS);
1087 if (copylen < offset)
1088 copylen = 0;
1089 else
1090 copylen -= offset;
1091 } else
1092 copylen = 0;
1093 /* There are 256 bytes to be copied in skb, so there is enough
1094 * room for skb expand head in case it is used.
1095 * The rest of the buffer is mapped from userspace.
1096 */
1097 if (copylen < gso.hdr_len)
1098 copylen = gso.hdr_len;
1099 if (!copylen)
1100 copylen = GOODCOPY_LEN;
1101 } else
1102 copylen = len;
1103
Jason Wang54f968d2012-10-31 19:45:57 +00001104 skb = tun_alloc_skb(tfile, align, copylen, gso.hdr_len, noblock);
Herbert Xu33dccbb2009-02-05 21:25:32 -08001105 if (IS_ERR(skb)) {
1106 if (PTR_ERR(skb) != -EAGAIN)
1107 tun->dev->stats.rx_dropped++;
1108 return PTR_ERR(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109 }
1110
Michael S. Tsirkin06908992012-07-20 09:23:23 +00001111 if (zerocopy)
1112 err = zerocopy_sg_from_iovec(skb, iv, offset, count);
1113 else
1114 err = skb_copy_datagram_from_iovec(skb, 0, iv, offset, len);
1115
1116 if (err) {
Jeff Garzik09f75cd2007-10-03 17:41:50 -07001117 tun->dev->stats.rx_dropped++;
Dave Jones8f227572006-03-11 18:49:13 -08001118 kfree_skb(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119 return -EFAULT;
Dave Jones8f227572006-03-11 18:49:13 -08001120 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121
Rusty Russellf43798c2008-07-03 03:48:02 -07001122 if (gso.flags & VIRTIO_NET_HDR_F_NEEDS_CSUM) {
1123 if (!skb_partial_csum_set(skb, gso.csum_start,
1124 gso.csum_offset)) {
1125 tun->dev->stats.rx_frame_errors++;
1126 kfree_skb(skb);
1127 return -EINVAL;
1128 }
Michał Mirosław88255372011-04-19 06:13:10 +00001129 }
Rusty Russellf43798c2008-07-03 03:48:02 -07001130
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131 switch (tun->flags & TUN_TYPE_MASK) {
1132 case TUN_TUN_DEV:
Ang Way Chuangf09f7ee2008-06-17 21:10:33 -07001133 if (tun->flags & TUN_NO_PI) {
1134 switch (skb->data[0] & 0xf0) {
1135 case 0x40:
1136 pi.proto = htons(ETH_P_IP);
1137 break;
1138 case 0x60:
1139 pi.proto = htons(ETH_P_IPV6);
1140 break;
1141 default:
1142 tun->dev->stats.rx_dropped++;
1143 kfree_skb(skb);
1144 return -EINVAL;
1145 }
1146 }
1147
Arnaldo Carvalho de Melo459a98e2007-03-19 15:30:44 -07001148 skb_reset_mac_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149 skb->protocol = pi.proto;
Arnaldo Carvalho de Melo4c13eb62007-04-25 17:40:23 -07001150 skb->dev = tun->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151 break;
1152 case TUN_TAP_DEV:
1153 skb->protocol = eth_type_trans(skb, tun->dev);
1154 break;
Joe Perches6403eab2011-06-03 11:51:20 +00001155 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156
Rusty Russellf43798c2008-07-03 03:48:02 -07001157 if (gso.gso_type != VIRTIO_NET_HDR_GSO_NONE) {
Eric Dumazetcef401d2013-01-25 20:34:37 +00001158 unsigned short gso_type = 0;
1159
Rusty Russellf43798c2008-07-03 03:48:02 -07001160 pr_debug("GSO!\n");
1161 switch (gso.gso_type & ~VIRTIO_NET_HDR_GSO_ECN) {
1162 case VIRTIO_NET_HDR_GSO_TCPV4:
Eric Dumazetcef401d2013-01-25 20:34:37 +00001163 gso_type = SKB_GSO_TCPV4;
Rusty Russellf43798c2008-07-03 03:48:02 -07001164 break;
1165 case VIRTIO_NET_HDR_GSO_TCPV6:
Eric Dumazetcef401d2013-01-25 20:34:37 +00001166 gso_type = SKB_GSO_TCPV6;
Rusty Russellf43798c2008-07-03 03:48:02 -07001167 break;
Sridhar Samudralae36aa252009-07-14 14:21:04 +00001168 case VIRTIO_NET_HDR_GSO_UDP:
Eric Dumazetcef401d2013-01-25 20:34:37 +00001169 gso_type = SKB_GSO_UDP;
Sridhar Samudralae36aa252009-07-14 14:21:04 +00001170 break;
Rusty Russellf43798c2008-07-03 03:48:02 -07001171 default:
1172 tun->dev->stats.rx_frame_errors++;
1173 kfree_skb(skb);
1174 return -EINVAL;
1175 }
1176
1177 if (gso.gso_type & VIRTIO_NET_HDR_GSO_ECN)
Eric Dumazetcef401d2013-01-25 20:34:37 +00001178 gso_type |= SKB_GSO_TCP_ECN;
Rusty Russellf43798c2008-07-03 03:48:02 -07001179
1180 skb_shinfo(skb)->gso_size = gso.gso_size;
Eric Dumazetcef401d2013-01-25 20:34:37 +00001181 skb_shinfo(skb)->gso_type |= gso_type;
Rusty Russellf43798c2008-07-03 03:48:02 -07001182 if (skb_shinfo(skb)->gso_size == 0) {
1183 tun->dev->stats.rx_frame_errors++;
1184 kfree_skb(skb);
1185 return -EINVAL;
1186 }
1187
1188 /* Header must be checked, and gso_segs computed. */
1189 skb_shinfo(skb)->gso_type |= SKB_GSO_DODGY;
1190 skb_shinfo(skb)->gso_segs = 0;
1191 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001192
Michael S. Tsirkin06908992012-07-20 09:23:23 +00001193 /* copy skb_ubuf_info for callback when skb has no error */
1194 if (zerocopy) {
1195 skb_shinfo(skb)->destructor_arg = msg_control;
1196 skb_shinfo(skb)->tx_flags |= SKBTX_DEV_ZEROCOPY;
1197 }
1198
Eric Dumazet76fe4582012-12-17 04:39:20 +00001199 skb_reset_network_header(skb);
Eric Dumazet49974422012-12-12 19:22:57 +00001200 rxhash = skb_get_rxhash(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201 netif_rx_ni(skb);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001202
Jeff Garzik09f75cd2007-10-03 17:41:50 -07001203 tun->dev->stats.rx_packets++;
1204 tun->dev->stats.rx_bytes += len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205
Eric Dumazet49974422012-12-12 19:22:57 +00001206 tun_flow_update(tun, rxhash, tfile->queue_index);
Michael S. Tsirkin06908992012-07-20 09:23:23 +00001207 return total_len;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001208}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001209
Badari Pulavartyee0b3e62006-09-30 23:28:47 -07001210static ssize_t tun_chr_aio_write(struct kiocb *iocb, const struct iovec *iv,
1211 unsigned long count, loff_t pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212{
Herbert Xu33dccbb2009-02-05 21:25:32 -08001213 struct file *file = iocb->ki_filp;
Herbert Xuab46d772009-02-14 20:46:39 -08001214 struct tun_struct *tun = tun_get(file);
Jason Wang54f968d2012-10-31 19:45:57 +00001215 struct tun_file *tfile = file->private_data;
Eric W. Biederman631ab462009-01-20 11:00:40 +00001216 ssize_t result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217
1218 if (!tun)
1219 return -EBADFD;
1220
Joe Perches6b8a66e2011-03-02 07:18:10 +00001221 tun_debug(KERN_INFO, tun, "tun_chr_write %ld\n", count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222
Jason Wang54f968d2012-10-31 19:45:57 +00001223 result = tun_get_user(tun, tfile, NULL, iv, iov_length(iv, count),
1224 count, file->f_flags & O_NONBLOCK);
Eric W. Biederman631ab462009-01-20 11:00:40 +00001225
1226 tun_put(tun);
1227 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228}
1229
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230/* Put packet to the user space buffer */
stephen hemminger6f7c1562011-06-08 14:33:08 +00001231static ssize_t tun_put_user(struct tun_struct *tun,
Jason Wang54f968d2012-10-31 19:45:57 +00001232 struct tun_file *tfile,
stephen hemminger6f7c1562011-06-08 14:33:08 +00001233 struct sk_buff *skb,
1234 const struct iovec *iv, int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235{
1236 struct tun_pi pi = { 0, skb->protocol };
1237 ssize_t total = 0;
1238
1239 if (!(tun->flags & TUN_NO_PI)) {
1240 if ((len -= sizeof(pi)) < 0)
1241 return -EINVAL;
1242
1243 if (len < skb->len) {
1244 /* Packet will be striped */
1245 pi.flags |= TUN_PKT_STRIP;
1246 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001247
Michael S. Tsirkin43b39dc2009-04-20 01:25:59 +00001248 if (memcpy_toiovecend(iv, (void *) &pi, 0, sizeof(pi)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249 return -EFAULT;
1250 total += sizeof(pi);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001251 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252
Rusty Russellf43798c2008-07-03 03:48:02 -07001253 if (tun->flags & TUN_VNET_HDR) {
1254 struct virtio_net_hdr gso = { 0 }; /* no info leak */
Michael S. Tsirkind9d52b52010-03-17 17:45:01 +02001255 if ((len -= tun->vnet_hdr_sz) < 0)
Rusty Russellf43798c2008-07-03 03:48:02 -07001256 return -EINVAL;
1257
1258 if (skb_is_gso(skb)) {
1259 struct skb_shared_info *sinfo = skb_shinfo(skb);
1260
1261 /* This is a hint as to how much should be linear. */
1262 gso.hdr_len = skb_headlen(skb);
1263 gso.gso_size = sinfo->gso_size;
1264 if (sinfo->gso_type & SKB_GSO_TCPV4)
1265 gso.gso_type = VIRTIO_NET_HDR_GSO_TCPV4;
1266 else if (sinfo->gso_type & SKB_GSO_TCPV6)
1267 gso.gso_type = VIRTIO_NET_HDR_GSO_TCPV6;
Sridhar Samudralae36aa252009-07-14 14:21:04 +00001268 else if (sinfo->gso_type & SKB_GSO_UDP)
1269 gso.gso_type = VIRTIO_NET_HDR_GSO_UDP;
Michael S. Tsirkinef3db4a2010-07-21 04:32:45 +00001270 else {
Joe Perches6b8a66e2011-03-02 07:18:10 +00001271 pr_err("unexpected GSO type: "
Michael S. Tsirkinef3db4a2010-07-21 04:32:45 +00001272 "0x%x, gso_size %d, hdr_len %d\n",
1273 sinfo->gso_type, gso.gso_size,
1274 gso.hdr_len);
1275 print_hex_dump(KERN_ERR, "tun: ",
1276 DUMP_PREFIX_NONE,
1277 16, 1, skb->head,
1278 min((int)gso.hdr_len, 64), true);
1279 WARN_ON_ONCE(1);
1280 return -EINVAL;
1281 }
Rusty Russellf43798c2008-07-03 03:48:02 -07001282 if (sinfo->gso_type & SKB_GSO_TCP_ECN)
1283 gso.gso_type |= VIRTIO_NET_HDR_GSO_ECN;
1284 } else
1285 gso.gso_type = VIRTIO_NET_HDR_GSO_NONE;
1286
1287 if (skb->ip_summed == CHECKSUM_PARTIAL) {
1288 gso.flags = VIRTIO_NET_HDR_F_NEEDS_CSUM;
Michał Mirosław55508d62010-12-14 15:24:08 +00001289 gso.csum_start = skb_checksum_start_offset(skb);
Rusty Russellf43798c2008-07-03 03:48:02 -07001290 gso.csum_offset = skb->csum_offset;
Jason Wang10a8d942011-06-10 00:56:17 +00001291 } else if (skb->ip_summed == CHECKSUM_UNNECESSARY) {
1292 gso.flags = VIRTIO_NET_HDR_F_DATA_VALID;
Rusty Russellf43798c2008-07-03 03:48:02 -07001293 } /* else everything is zero */
1294
Michael S. Tsirkin43b39dc2009-04-20 01:25:59 +00001295 if (unlikely(memcpy_toiovecend(iv, (void *)&gso, total,
1296 sizeof(gso))))
Rusty Russellf43798c2008-07-03 03:48:02 -07001297 return -EFAULT;
Michael S. Tsirkind9d52b52010-03-17 17:45:01 +02001298 total += tun->vnet_hdr_sz;
Rusty Russellf43798c2008-07-03 03:48:02 -07001299 }
1300
Linus Torvalds1da177e2005-04-16 15:20:36 -07001301 len = min_t(int, skb->len, len);
1302
Michael S. Tsirkin43b39dc2009-04-20 01:25:59 +00001303 skb_copy_datagram_const_iovec(skb, 0, iv, total, len);
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00001304 total += skb->len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001305
Jeff Garzik09f75cd2007-10-03 17:41:50 -07001306 tun->dev->stats.tx_packets++;
1307 tun->dev->stats.tx_bytes += len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001308
1309 return total;
1310}
1311
Jason Wang54f968d2012-10-31 19:45:57 +00001312static ssize_t tun_do_read(struct tun_struct *tun, struct tun_file *tfile,
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00001313 struct kiocb *iocb, const struct iovec *iv,
1314 ssize_t len, int noblock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316 DECLARE_WAITQUEUE(wait, current);
1317 struct sk_buff *skb;
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00001318 ssize_t ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001319
Rami Rosen3872baf2012-11-25 22:07:41 +00001320 tun_debug(KERN_INFO, tun, "tun_do_read\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001321
Amos Kong61a5ff12011-06-09 00:27:10 -07001322 if (unlikely(!noblock))
Jason Wang54f968d2012-10-31 19:45:57 +00001323 add_wait_queue(&tfile->wq.wait, &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001324 while (len) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001325 current->state = TASK_INTERRUPTIBLE;
1326
1327 /* Read frames from the queue */
Jason Wang54f968d2012-10-31 19:45:57 +00001328 if (!(skb = skb_dequeue(&tfile->socket.sk->sk_receive_queue))) {
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00001329 if (noblock) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330 ret = -EAGAIN;
1331 break;
1332 }
1333 if (signal_pending(current)) {
1334 ret = -ERESTARTSYS;
1335 break;
1336 }
Eric W. Biedermanc70f1822009-01-20 11:07:17 +00001337 if (tun->dev->reg_state != NETREG_REGISTERED) {
1338 ret = -EIO;
1339 break;
1340 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341
1342 /* Nothing to read, let's sleep */
1343 schedule();
1344 continue;
1345 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346
Jason Wang54f968d2012-10-31 19:45:57 +00001347 ret = tun_put_user(tun, tfile, skb, iv, len);
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -07001348 kfree_skb(skb);
1349 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350 }
1351
1352 current->state = TASK_RUNNING;
Amos Kong61a5ff12011-06-09 00:27:10 -07001353 if (unlikely(!noblock))
Jason Wang54f968d2012-10-31 19:45:57 +00001354 remove_wait_queue(&tfile->wq.wait, &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00001356 return ret;
1357}
1358
1359static ssize_t tun_chr_aio_read(struct kiocb *iocb, const struct iovec *iv,
1360 unsigned long count, loff_t pos)
1361{
1362 struct file *file = iocb->ki_filp;
1363 struct tun_file *tfile = file->private_data;
1364 struct tun_struct *tun = __tun_get(tfile);
1365 ssize_t len, ret;
1366
1367 if (!tun)
1368 return -EBADFD;
1369 len = iov_length(iv, count);
1370 if (len < 0) {
1371 ret = -EINVAL;
1372 goto out;
1373 }
1374
Jason Wang54f968d2012-10-31 19:45:57 +00001375 ret = tun_do_read(tun, tfile, iocb, iv, len,
1376 file->f_flags & O_NONBLOCK);
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00001377 ret = min_t(ssize_t, ret, len);
Eric W. Biederman631ab462009-01-20 11:00:40 +00001378out:
1379 tun_put(tun);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380 return ret;
1381}
1382
Jason Wang96442e422012-10-31 19:46:02 +00001383static void tun_free_netdev(struct net_device *dev)
1384{
1385 struct tun_struct *tun = netdev_priv(dev);
1386
Jason Wang4008e972012-12-13 23:53:30 +00001387 BUG_ON(!(list_empty(&tun->disabled)));
Jason Wang96442e422012-10-31 19:46:02 +00001388 tun_flow_uninit(tun);
Paul Moore5dbbaf22013-01-14 07:12:19 +00001389 security_tun_dev_free_security(tun->security);
Jason Wang96442e422012-10-31 19:46:02 +00001390 free_netdev(dev);
1391}
1392
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393static void tun_setup(struct net_device *dev)
1394{
1395 struct tun_struct *tun = netdev_priv(dev);
1396
Eric W. Biederman0625c882012-02-07 16:48:55 -08001397 tun->owner = INVALID_UID;
1398 tun->group = INVALID_GID;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400 dev->ethtool_ops = &tun_ethtool_ops;
Jason Wang96442e422012-10-31 19:46:02 +00001401 dev->destructor = tun_free_netdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001402}
1403
Eric W. Biedermanf019a7a2009-01-21 16:02:16 -08001404/* Trivial set of netlink ops to allow deleting tun or tap
1405 * device with netlink.
1406 */
1407static int tun_validate(struct nlattr *tb[], struct nlattr *data[])
1408{
1409 return -EINVAL;
1410}
1411
1412static struct rtnl_link_ops tun_link_ops __read_mostly = {
1413 .kind = DRV_NAME,
1414 .priv_size = sizeof(struct tun_struct),
1415 .setup = tun_setup,
1416 .validate = tun_validate,
1417};
1418
Herbert Xu33dccbb2009-02-05 21:25:32 -08001419static void tun_sock_write_space(struct sock *sk)
1420{
Jason Wang54f968d2012-10-31 19:45:57 +00001421 struct tun_file *tfile;
Eric Dumazet43815482010-04-29 11:01:49 +00001422 wait_queue_head_t *wqueue;
Herbert Xu33dccbb2009-02-05 21:25:32 -08001423
1424 if (!sock_writeable(sk))
1425 return;
1426
Herbert Xu33dccbb2009-02-05 21:25:32 -08001427 if (!test_and_clear_bit(SOCK_ASYNC_NOSPACE, &sk->sk_socket->flags))
1428 return;
1429
Eric Dumazet43815482010-04-29 11:01:49 +00001430 wqueue = sk_sleep(sk);
1431 if (wqueue && waitqueue_active(wqueue))
1432 wake_up_interruptible_sync_poll(wqueue, POLLOUT |
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00001433 POLLWRNORM | POLLWRBAND);
Herbert Xuc722c622009-06-03 21:45:55 -07001434
Jason Wang54f968d2012-10-31 19:45:57 +00001435 tfile = container_of(sk, struct tun_file, sk);
1436 kill_fasync(&tfile->fasync, SIGIO, POLL_OUT);
Herbert Xu33dccbb2009-02-05 21:25:32 -08001437}
1438
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00001439static int tun_sendmsg(struct kiocb *iocb, struct socket *sock,
1440 struct msghdr *m, size_t total_len)
1441{
Jason Wang54f968d2012-10-31 19:45:57 +00001442 int ret;
1443 struct tun_file *tfile = container_of(sock, struct tun_file, socket);
1444 struct tun_struct *tun = __tun_get(tfile);
1445
1446 if (!tun)
1447 return -EBADFD;
Jason Wang54f968d2012-10-31 19:45:57 +00001448 ret = tun_get_user(tun, tfile, m->msg_control, m->msg_iov, total_len,
1449 m->msg_iovlen, m->msg_flags & MSG_DONTWAIT);
1450 tun_put(tun);
1451 return ret;
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00001452}
1453
Jason Wang54f968d2012-10-31 19:45:57 +00001454
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00001455static int tun_recvmsg(struct kiocb *iocb, struct socket *sock,
1456 struct msghdr *m, size_t total_len,
1457 int flags)
1458{
Jason Wang54f968d2012-10-31 19:45:57 +00001459 struct tun_file *tfile = container_of(sock, struct tun_file, socket);
1460 struct tun_struct *tun = __tun_get(tfile);
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00001461 int ret;
Jason Wang54f968d2012-10-31 19:45:57 +00001462
1463 if (!tun)
1464 return -EBADFD;
1465
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00001466 if (flags & ~(MSG_DONTWAIT|MSG_TRUNC))
1467 return -EINVAL;
Jason Wang54f968d2012-10-31 19:45:57 +00001468 ret = tun_do_read(tun, tfile, iocb, m->msg_iov, total_len,
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00001469 flags & MSG_DONTWAIT);
1470 if (ret > total_len) {
1471 m->msg_flags |= MSG_TRUNC;
1472 ret = flags & MSG_TRUNC ? ret : total_len;
1473 }
Jason Wang54f968d2012-10-31 19:45:57 +00001474 tun_put(tun);
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00001475 return ret;
1476}
1477
Stanislav Kinsbursky1ab5ecb2012-03-12 02:59:41 +00001478static int tun_release(struct socket *sock)
1479{
1480 if (sock->sk)
1481 sock_put(sock->sk);
1482 return 0;
1483}
1484
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00001485/* Ops structure to mimic raw sockets with tun */
1486static const struct proto_ops tun_socket_ops = {
1487 .sendmsg = tun_sendmsg,
1488 .recvmsg = tun_recvmsg,
Stanislav Kinsbursky1ab5ecb2012-03-12 02:59:41 +00001489 .release = tun_release,
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00001490};
1491
Herbert Xu33dccbb2009-02-05 21:25:32 -08001492static struct proto tun_proto = {
1493 .name = "tun",
1494 .owner = THIS_MODULE,
Jason Wang54f968d2012-10-31 19:45:57 +00001495 .obj_size = sizeof(struct tun_file),
Herbert Xu33dccbb2009-02-05 21:25:32 -08001496};
Eric W. Biedermanf019a7a2009-01-21 16:02:16 -08001497
David Woodhouse980c9e82009-05-09 22:54:21 -07001498static int tun_flags(struct tun_struct *tun)
1499{
1500 int flags = 0;
1501
1502 if (tun->flags & TUN_TUN_DEV)
1503 flags |= IFF_TUN;
1504 else
1505 flags |= IFF_TAP;
1506
1507 if (tun->flags & TUN_NO_PI)
1508 flags |= IFF_NO_PI;
1509
Michael S. Tsirkin5d097102012-12-03 10:07:14 +00001510 /* This flag has no real effect. We track the value for backwards
1511 * compatibility.
1512 */
David Woodhouse980c9e82009-05-09 22:54:21 -07001513 if (tun->flags & TUN_ONE_QUEUE)
1514 flags |= IFF_ONE_QUEUE;
1515
1516 if (tun->flags & TUN_VNET_HDR)
1517 flags |= IFF_VNET_HDR;
1518
Jason Wangc8d68e62012-10-31 19:46:00 +00001519 if (tun->flags & TUN_TAP_MQ)
1520 flags |= IFF_MULTI_QUEUE;
1521
David Woodhouse980c9e82009-05-09 22:54:21 -07001522 return flags;
1523}
1524
1525static ssize_t tun_show_flags(struct device *dev, struct device_attribute *attr,
1526 char *buf)
1527{
1528 struct tun_struct *tun = netdev_priv(to_net_dev(dev));
1529 return sprintf(buf, "0x%x\n", tun_flags(tun));
1530}
1531
1532static ssize_t tun_show_owner(struct device *dev, struct device_attribute *attr,
1533 char *buf)
1534{
1535 struct tun_struct *tun = netdev_priv(to_net_dev(dev));
Eric W. Biederman0625c882012-02-07 16:48:55 -08001536 return uid_valid(tun->owner)?
1537 sprintf(buf, "%u\n",
1538 from_kuid_munged(current_user_ns(), tun->owner)):
1539 sprintf(buf, "-1\n");
David Woodhouse980c9e82009-05-09 22:54:21 -07001540}
1541
1542static ssize_t tun_show_group(struct device *dev, struct device_attribute *attr,
1543 char *buf)
1544{
1545 struct tun_struct *tun = netdev_priv(to_net_dev(dev));
Eric W. Biederman0625c882012-02-07 16:48:55 -08001546 return gid_valid(tun->group) ?
1547 sprintf(buf, "%u\n",
1548 from_kgid_munged(current_user_ns(), tun->group)):
1549 sprintf(buf, "-1\n");
David Woodhouse980c9e82009-05-09 22:54:21 -07001550}
1551
1552static DEVICE_ATTR(tun_flags, 0444, tun_show_flags, NULL);
1553static DEVICE_ATTR(owner, 0444, tun_show_owner, NULL);
1554static DEVICE_ATTR(group, 0444, tun_show_group, NULL);
1555
Pavel Emelyanovd647a592008-04-16 00:41:16 -07001556static int tun_set_iff(struct net *net, struct file *file, struct ifreq *ifr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001557{
1558 struct tun_struct *tun;
Jason Wang54f968d2012-10-31 19:45:57 +00001559 struct tun_file *tfile = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001560 struct net_device *dev;
1561 int err;
1562
Jason Wang7c0c3b12013-01-11 16:59:33 +00001563 if (tfile->detached)
1564 return -EINVAL;
1565
Eric W. Biederman74a3e5a2009-01-20 10:56:20 +00001566 dev = __dev_get_by_name(net, ifr->ifr_name);
1567 if (dev) {
David Woodhousef85ba782009-04-27 03:23:54 -07001568 if (ifr->ifr_flags & IFF_TUN_EXCL)
1569 return -EBUSY;
Eric W. Biederman74a3e5a2009-01-20 10:56:20 +00001570 if ((ifr->ifr_flags & IFF_TUN) && dev->netdev_ops == &tun_netdev_ops)
1571 tun = netdev_priv(dev);
1572 else if ((ifr->ifr_flags & IFF_TAP) && dev->netdev_ops == &tap_netdev_ops)
1573 tun = netdev_priv(dev);
1574 else
1575 return -EINVAL;
1576
Jason Wangcde8b152012-10-31 19:46:01 +00001577 if (tun_not_capable(tun))
Paul Moore2b980db2009-08-28 18:12:43 -04001578 return -EPERM;
Paul Moore5dbbaf22013-01-14 07:12:19 +00001579 err = security_tun_dev_open(tun->security);
Paul Moore2b980db2009-08-28 18:12:43 -04001580 if (err < 0)
1581 return err;
1582
Eric W. Biedermana7385ba2009-01-20 10:57:48 +00001583 err = tun_attach(tun, file);
1584 if (err < 0)
1585 return err;
Jason Wang4008e972012-12-13 23:53:30 +00001586
1587 if (tun->flags & TUN_TAP_MQ &&
1588 (tun->numqueues + tun->numdisabled > 1))
1589 return err;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001590 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001591 else {
1592 char *name;
1593 unsigned long flags = 0;
Jason Wangedfb6a12013-01-23 03:59:12 +00001594 int queues = ifr->ifr_flags & IFF_MULTI_QUEUE ?
1595 MAX_TAP_QUEUES : 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001596
Eric W. Biedermanc260b772012-11-18 21:34:11 +00001597 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
David Woodhouseca6bb5d2006-06-22 16:07:52 -07001598 return -EPERM;
Paul Moore2b980db2009-08-28 18:12:43 -04001599 err = security_tun_dev_create();
1600 if (err < 0)
1601 return err;
David Woodhouseca6bb5d2006-06-22 16:07:52 -07001602
Linus Torvalds1da177e2005-04-16 15:20:36 -07001603 /* Set dev type */
1604 if (ifr->ifr_flags & IFF_TUN) {
1605 /* TUN device */
1606 flags |= TUN_TUN_DEV;
1607 name = "tun%d";
1608 } else if (ifr->ifr_flags & IFF_TAP) {
1609 /* TAP device */
1610 flags |= TUN_TAP_DEV;
1611 name = "tap%d";
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001612 } else
Kusanagi Kouichi36989b92009-09-16 21:36:13 +00001613 return -EINVAL;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001614
Linus Torvalds1da177e2005-04-16 15:20:36 -07001615 if (*ifr->ifr_name)
1616 name = ifr->ifr_name;
1617
Jason Wangc8d68e62012-10-31 19:46:00 +00001618 dev = alloc_netdev_mqs(sizeof(struct tun_struct), name,
Jason Wangedfb6a12013-01-23 03:59:12 +00001619 tun_setup, queues, queues);
1620
Linus Torvalds1da177e2005-04-16 15:20:36 -07001621 if (!dev)
1622 return -ENOMEM;
1623
Pavel Emelyanovfc54c652008-04-16 00:41:53 -07001624 dev_net_set(dev, net);
Eric W. Biedermanf019a7a2009-01-21 16:02:16 -08001625 dev->rtnl_link_ops = &tun_link_ops;
Stephen Hemminger758e43b2008-11-19 22:10:37 -08001626
Linus Torvalds1da177e2005-04-16 15:20:36 -07001627 tun = netdev_priv(dev);
1628 tun->dev = dev;
1629 tun->flags = flags;
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -07001630 tun->txflt.count = 0;
Michael S. Tsirkind9d52b52010-03-17 17:45:01 +02001631 tun->vnet_hdr_sz = sizeof(struct virtio_net_hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001632
Jason Wang54f968d2012-10-31 19:45:57 +00001633 tun->filter_attached = false;
1634 tun->sndbuf = tfile->socket.sk->sk_sndbuf;
Herbert Xu33dccbb2009-02-05 21:25:32 -08001635
Jason Wang96442e422012-10-31 19:46:02 +00001636 spin_lock_init(&tun->lock);
1637
Paul Moore5dbbaf22013-01-14 07:12:19 +00001638 err = security_tun_dev_alloc_security(&tun->security);
1639 if (err < 0)
1640 goto err_free_dev;
Paul Moore2b980db2009-08-28 18:12:43 -04001641
Linus Torvalds1da177e2005-04-16 15:20:36 -07001642 tun_net_init(dev);
1643
Paul Mooreb3943ae2012-12-06 05:48:38 +00001644 err = tun_flow_init(tun);
1645 if (err < 0)
Jason Wang96442e422012-10-31 19:46:02 +00001646 goto err_free_dev;
1647
Michał Mirosław88255372011-04-19 06:13:10 +00001648 dev->hw_features = NETIF_F_SG | NETIF_F_FRAGLIST |
1649 TUN_USER_FEATURES;
1650 dev->features = dev->hw_features;
1651
Jason Wang4008e972012-12-13 23:53:30 +00001652 INIT_LIST_HEAD(&tun->disabled);
Jason Wangeb0fb362012-12-02 17:19:45 +00001653 err = tun_attach(tun, file);
1654 if (err < 0)
1655 goto err_free_dev;
1656
Linus Torvalds1da177e2005-04-16 15:20:36 -07001657 err = register_netdevice(tun->dev);
1658 if (err < 0)
Jason Wang54f968d2012-10-31 19:45:57 +00001659 goto err_free_dev;
Herbert Xu9c3fea62009-04-18 14:15:52 +00001660
David Woodhouse980c9e82009-05-09 22:54:21 -07001661 if (device_create_file(&tun->dev->dev, &dev_attr_tun_flags) ||
1662 device_create_file(&tun->dev->dev, &dev_attr_owner) ||
1663 device_create_file(&tun->dev->dev, &dev_attr_group))
Joe Perches6b8a66e2011-03-02 07:18:10 +00001664 pr_err("Failed to create tun sysfs files\n");
David Woodhouse980c9e82009-05-09 22:54:21 -07001665
Jason Wangeb0fb362012-12-02 17:19:45 +00001666 netif_carrier_on(tun->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001667 }
1668
Joe Perches6b8a66e2011-03-02 07:18:10 +00001669 tun_debug(KERN_INFO, tun, "tun_set_iff\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001670
1671 if (ifr->ifr_flags & IFF_NO_PI)
1672 tun->flags |= TUN_NO_PI;
Nathaniel Filardoa26af1e2008-02-05 03:05:07 -08001673 else
1674 tun->flags &= ~TUN_NO_PI;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001675
Michael S. Tsirkin5d097102012-12-03 10:07:14 +00001676 /* This flag has no real effect. We track the value for backwards
1677 * compatibility.
1678 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001679 if (ifr->ifr_flags & IFF_ONE_QUEUE)
1680 tun->flags |= TUN_ONE_QUEUE;
Nathaniel Filardoa26af1e2008-02-05 03:05:07 -08001681 else
1682 tun->flags &= ~TUN_ONE_QUEUE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001683
Rusty Russellf43798c2008-07-03 03:48:02 -07001684 if (ifr->ifr_flags & IFF_VNET_HDR)
1685 tun->flags |= TUN_VNET_HDR;
1686 else
1687 tun->flags &= ~TUN_VNET_HDR;
1688
Jason Wangc8d68e62012-10-31 19:46:00 +00001689 if (ifr->ifr_flags & IFF_MULTI_QUEUE)
1690 tun->flags |= TUN_TAP_MQ;
1691 else
1692 tun->flags &= ~TUN_TAP_MQ;
1693
Max Krasnyanskye35259a2008-07-10 16:59:11 -07001694 /* Make sure persistent devices do not get stuck in
1695 * xoff state.
1696 */
1697 if (netif_running(tun->dev))
Jason Wangc8d68e62012-10-31 19:46:00 +00001698 netif_tx_wake_all_queues(tun->dev);
Max Krasnyanskye35259a2008-07-10 16:59:11 -07001699
Linus Torvalds1da177e2005-04-16 15:20:36 -07001700 strcpy(ifr->ifr_name, tun->dev->name);
1701 return 0;
1702
1703 err_free_dev:
1704 free_netdev(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001705 return err;
1706}
1707
Rami Rosen9ce99cf2012-11-23 03:58:10 +00001708static void tun_get_iff(struct net *net, struct tun_struct *tun,
Herbert Xu876bfd42009-08-06 14:22:44 +00001709 struct ifreq *ifr)
Mark McLoughline3b99552008-08-15 15:09:56 -07001710{
Joe Perches6b8a66e2011-03-02 07:18:10 +00001711 tun_debug(KERN_INFO, tun, "tun_get_iff\n");
Mark McLoughline3b99552008-08-15 15:09:56 -07001712
1713 strcpy(ifr->ifr_name, tun->dev->name);
1714
David Woodhouse980c9e82009-05-09 22:54:21 -07001715 ifr->ifr_flags = tun_flags(tun);
Mark McLoughline3b99552008-08-15 15:09:56 -07001716
Mark McLoughline3b99552008-08-15 15:09:56 -07001717}
1718
Rusty Russell5228ddc2008-07-03 03:46:16 -07001719/* This is like a cut-down ethtool ops, except done via tun fd so no
1720 * privs required. */
Michał Mirosław88255372011-04-19 06:13:10 +00001721static int set_offload(struct tun_struct *tun, unsigned long arg)
Rusty Russell5228ddc2008-07-03 03:46:16 -07001722{
Michał Mirosławc8f44af2011-11-15 15:29:55 +00001723 netdev_features_t features = 0;
Rusty Russell5228ddc2008-07-03 03:46:16 -07001724
1725 if (arg & TUN_F_CSUM) {
Michał Mirosław88255372011-04-19 06:13:10 +00001726 features |= NETIF_F_HW_CSUM;
Rusty Russell5228ddc2008-07-03 03:46:16 -07001727 arg &= ~TUN_F_CSUM;
1728
1729 if (arg & (TUN_F_TSO4|TUN_F_TSO6)) {
1730 if (arg & TUN_F_TSO_ECN) {
1731 features |= NETIF_F_TSO_ECN;
1732 arg &= ~TUN_F_TSO_ECN;
1733 }
1734 if (arg & TUN_F_TSO4)
1735 features |= NETIF_F_TSO;
1736 if (arg & TUN_F_TSO6)
1737 features |= NETIF_F_TSO6;
1738 arg &= ~(TUN_F_TSO4|TUN_F_TSO6);
1739 }
Sridhar Samudralae36aa252009-07-14 14:21:04 +00001740
1741 if (arg & TUN_F_UFO) {
1742 features |= NETIF_F_UFO;
1743 arg &= ~TUN_F_UFO;
1744 }
Rusty Russell5228ddc2008-07-03 03:46:16 -07001745 }
1746
1747 /* This gives the user a way to test for new features in future by
1748 * trying to set them. */
1749 if (arg)
1750 return -EINVAL;
1751
Michał Mirosław88255372011-04-19 06:13:10 +00001752 tun->set_features = features;
1753 netdev_update_features(tun->dev);
Rusty Russell5228ddc2008-07-03 03:46:16 -07001754
1755 return 0;
1756}
1757
Jason Wangc8d68e62012-10-31 19:46:00 +00001758static void tun_detach_filter(struct tun_struct *tun, int n)
1759{
1760 int i;
1761 struct tun_file *tfile;
1762
1763 for (i = 0; i < n; i++) {
Jason Wangb8deabd2013-01-11 16:59:32 +00001764 tfile = rtnl_dereference(tun->tfiles[i]);
Jason Wangc8d68e62012-10-31 19:46:00 +00001765 sk_detach_filter(tfile->socket.sk);
1766 }
1767
1768 tun->filter_attached = false;
1769}
1770
1771static int tun_attach_filter(struct tun_struct *tun)
1772{
1773 int i, ret = 0;
1774 struct tun_file *tfile;
1775
1776 for (i = 0; i < tun->numqueues; i++) {
Jason Wangb8deabd2013-01-11 16:59:32 +00001777 tfile = rtnl_dereference(tun->tfiles[i]);
Jason Wangc8d68e62012-10-31 19:46:00 +00001778 ret = sk_attach_filter(&tun->fprog, tfile->socket.sk);
1779 if (ret) {
1780 tun_detach_filter(tun, i);
1781 return ret;
1782 }
1783 }
1784
1785 tun->filter_attached = true;
1786 return ret;
1787}
1788
1789static void tun_set_sndbuf(struct tun_struct *tun)
1790{
1791 struct tun_file *tfile;
1792 int i;
1793
1794 for (i = 0; i < tun->numqueues; i++) {
Jason Wangb8deabd2013-01-11 16:59:32 +00001795 tfile = rtnl_dereference(tun->tfiles[i]);
Jason Wangc8d68e62012-10-31 19:46:00 +00001796 tfile->socket.sk->sk_sndbuf = tun->sndbuf;
1797 }
1798}
1799
Jason Wangcde8b152012-10-31 19:46:01 +00001800static int tun_set_queue(struct file *file, struct ifreq *ifr)
1801{
1802 struct tun_file *tfile = file->private_data;
1803 struct tun_struct *tun;
Jason Wangcde8b152012-10-31 19:46:01 +00001804 int ret = 0;
1805
1806 rtnl_lock();
1807
1808 if (ifr->ifr_flags & IFF_ATTACH_QUEUE) {
Jason Wang4008e972012-12-13 23:53:30 +00001809 tun = tfile->detached;
Paul Moore5dbbaf22013-01-14 07:12:19 +00001810 if (!tun) {
Jason Wangcde8b152012-10-31 19:46:01 +00001811 ret = -EINVAL;
Paul Moore5dbbaf22013-01-14 07:12:19 +00001812 goto unlock;
1813 }
1814 ret = security_tun_dev_attach_queue(tun->security);
1815 if (ret < 0)
1816 goto unlock;
1817 ret = tun_attach(tun, file);
Jason Wang4008e972012-12-13 23:53:30 +00001818 } else if (ifr->ifr_flags & IFF_DETACH_QUEUE) {
Jason Wangb8deabd2013-01-11 16:59:32 +00001819 tun = rtnl_dereference(tfile->tun);
Jason Wang4008e972012-12-13 23:53:30 +00001820 if (!tun || !(tun->flags & TUN_TAP_MQ))
1821 ret = -EINVAL;
1822 else
1823 __tun_detach(tfile, false);
1824 } else
Jason Wangcde8b152012-10-31 19:46:01 +00001825 ret = -EINVAL;
1826
Paul Moore5dbbaf22013-01-14 07:12:19 +00001827unlock:
Jason Wangcde8b152012-10-31 19:46:01 +00001828 rtnl_unlock();
1829 return ret;
1830}
1831
Arnd Bergmann50857e22009-11-06 22:52:32 -08001832static long __tun_chr_ioctl(struct file *file, unsigned int cmd,
1833 unsigned long arg, int ifreq_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001834{
Eric W. Biederman36b50ba2009-01-20 11:01:48 +00001835 struct tun_file *tfile = file->private_data;
Eric W. Biederman631ab462009-01-20 11:00:40 +00001836 struct tun_struct *tun;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001837 void __user* argp = (void __user*)arg;
1838 struct ifreq ifr;
Eric W. Biederman0625c882012-02-07 16:48:55 -08001839 kuid_t owner;
1840 kgid_t group;
Herbert Xu33dccbb2009-02-05 21:25:32 -08001841 int sndbuf;
Michael S. Tsirkind9d52b52010-03-17 17:45:01 +02001842 int vnet_hdr_sz;
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -07001843 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001844
Jason Wangcde8b152012-10-31 19:46:01 +00001845 if (cmd == TUNSETIFF || cmd == TUNSETQUEUE || _IOC_TYPE(cmd) == 0x89) {
Arnd Bergmann50857e22009-11-06 22:52:32 -08001846 if (copy_from_user(&ifr, argp, ifreq_len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001847 return -EFAULT;
David S. Miller8bbb1812012-07-30 14:52:48 -07001848 } else {
Mathias Krausea117dac2012-07-29 19:45:14 +00001849 memset(&ifr, 0, sizeof(ifr));
David S. Miller8bbb1812012-07-30 14:52:48 -07001850 }
Eric W. Biederman631ab462009-01-20 11:00:40 +00001851 if (cmd == TUNGETFEATURES) {
1852 /* Currently this just means: "what IFF flags are valid?".
1853 * This is needed because we never checked for invalid flags on
1854 * TUNSETIFF. */
1855 return put_user(IFF_TUN | IFF_TAP | IFF_NO_PI | IFF_ONE_QUEUE |
Jason Wangcde8b152012-10-31 19:46:01 +00001856 IFF_VNET_HDR | IFF_MULTI_QUEUE,
Eric W. Biederman631ab462009-01-20 11:00:40 +00001857 (unsigned int __user*)argp);
Jason Wangcde8b152012-10-31 19:46:01 +00001858 } else if (cmd == TUNSETQUEUE)
1859 return tun_set_queue(file, &ifr);
Eric W. Biederman631ab462009-01-20 11:00:40 +00001860
Jason Wangc8d68e62012-10-31 19:46:00 +00001861 ret = 0;
Herbert Xu876bfd42009-08-06 14:22:44 +00001862 rtnl_lock();
1863
Eric W. Biederman36b50ba2009-01-20 11:01:48 +00001864 tun = __tun_get(tfile);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001865 if (cmd == TUNSETIFF && !tun) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001866 ifr.ifr_name[IFNAMSIZ-1] = '\0';
1867
Herbert Xu876bfd42009-08-06 14:22:44 +00001868 ret = tun_set_iff(tfile->net, file, &ifr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001869
Herbert Xu876bfd42009-08-06 14:22:44 +00001870 if (ret)
1871 goto unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001872
Arnd Bergmann50857e22009-11-06 22:52:32 -08001873 if (copy_to_user(argp, &ifr, ifreq_len))
Herbert Xu876bfd42009-08-06 14:22:44 +00001874 ret = -EFAULT;
1875 goto unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001876 }
1877
Herbert Xu876bfd42009-08-06 14:22:44 +00001878 ret = -EBADFD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001879 if (!tun)
Herbert Xu876bfd42009-08-06 14:22:44 +00001880 goto unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001881
Jason Wang1e588332012-10-31 19:45:56 +00001882 tun_debug(KERN_INFO, tun, "tun_chr_ioctl cmd %u\n", cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001883
Eric W. Biederman631ab462009-01-20 11:00:40 +00001884 ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001885 switch (cmd) {
Mark McLoughline3b99552008-08-15 15:09:56 -07001886 case TUNGETIFF:
Rami Rosen9ce99cf2012-11-23 03:58:10 +00001887 tun_get_iff(current->nsproxy->net_ns, tun, &ifr);
Mark McLoughline3b99552008-08-15 15:09:56 -07001888
Arnd Bergmann50857e22009-11-06 22:52:32 -08001889 if (copy_to_user(argp, &ifr, ifreq_len))
Eric W. Biederman631ab462009-01-20 11:00:40 +00001890 ret = -EFAULT;
Mark McLoughline3b99552008-08-15 15:09:56 -07001891 break;
1892
Linus Torvalds1da177e2005-04-16 15:20:36 -07001893 case TUNSETNOCSUM:
1894 /* Disable/Enable checksum */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001895
Michał Mirosław88255372011-04-19 06:13:10 +00001896 /* [unimplemented] */
1897 tun_debug(KERN_INFO, tun, "ignored: set checksum %s\n",
Joe Perches6b8a66e2011-03-02 07:18:10 +00001898 arg ? "disabled" : "enabled");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001899 break;
1900
1901 case TUNSETPERSIST:
Jason Wang54f968d2012-10-31 19:45:57 +00001902 /* Disable/Enable persist mode. Keep an extra reference to the
1903 * module to prevent the module being unprobed.
1904 */
Jason Wangdd38bd82013-01-11 16:59:34 +00001905 if (arg && !(tun->flags & TUN_PERSIST)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001906 tun->flags |= TUN_PERSIST;
Jason Wang54f968d2012-10-31 19:45:57 +00001907 __module_get(THIS_MODULE);
Jason Wangdd38bd82013-01-11 16:59:34 +00001908 }
1909 if (!arg && (tun->flags & TUN_PERSIST)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001910 tun->flags &= ~TUN_PERSIST;
Jason Wang54f968d2012-10-31 19:45:57 +00001911 module_put(THIS_MODULE);
1912 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001913
Joe Perches6b8a66e2011-03-02 07:18:10 +00001914 tun_debug(KERN_INFO, tun, "persist %s\n",
1915 arg ? "enabled" : "disabled");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001916 break;
1917
1918 case TUNSETOWNER:
1919 /* Set owner of the device */
Eric W. Biederman0625c882012-02-07 16:48:55 -08001920 owner = make_kuid(current_user_ns(), arg);
1921 if (!uid_valid(owner)) {
1922 ret = -EINVAL;
1923 break;
1924 }
1925 tun->owner = owner;
Jason Wang1e588332012-10-31 19:45:56 +00001926 tun_debug(KERN_INFO, tun, "owner set to %u\n",
Eric W. Biederman0625c882012-02-07 16:48:55 -08001927 from_kuid(&init_user_ns, tun->owner));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001928 break;
1929
Guido Guenther8c644622007-07-02 22:50:25 -07001930 case TUNSETGROUP:
1931 /* Set group of the device */
Eric W. Biederman0625c882012-02-07 16:48:55 -08001932 group = make_kgid(current_user_ns(), arg);
1933 if (!gid_valid(group)) {
1934 ret = -EINVAL;
1935 break;
1936 }
1937 tun->group = group;
Jason Wang1e588332012-10-31 19:45:56 +00001938 tun_debug(KERN_INFO, tun, "group set to %u\n",
Eric W. Biederman0625c882012-02-07 16:48:55 -08001939 from_kgid(&init_user_ns, tun->group));
Guido Guenther8c644622007-07-02 22:50:25 -07001940 break;
1941
Mike Kershawff4cc3a2005-09-01 17:40:05 -07001942 case TUNSETLINK:
1943 /* Only allow setting the type when the interface is down */
1944 if (tun->dev->flags & IFF_UP) {
Joe Perches6b8a66e2011-03-02 07:18:10 +00001945 tun_debug(KERN_INFO, tun,
1946 "Linktype set failed because interface is up\n");
David S. Miller48abfe02008-04-23 19:37:58 -07001947 ret = -EBUSY;
Mike Kershawff4cc3a2005-09-01 17:40:05 -07001948 } else {
1949 tun->dev->type = (int) arg;
Joe Perches6b8a66e2011-03-02 07:18:10 +00001950 tun_debug(KERN_INFO, tun, "linktype set to %d\n",
1951 tun->dev->type);
David S. Miller48abfe02008-04-23 19:37:58 -07001952 ret = 0;
Mike Kershawff4cc3a2005-09-01 17:40:05 -07001953 }
Eric W. Biederman631ab462009-01-20 11:00:40 +00001954 break;
Mike Kershawff4cc3a2005-09-01 17:40:05 -07001955
Linus Torvalds1da177e2005-04-16 15:20:36 -07001956#ifdef TUN_DEBUG
1957 case TUNSETDEBUG:
1958 tun->debug = arg;
1959 break;
1960#endif
Rusty Russell5228ddc2008-07-03 03:46:16 -07001961 case TUNSETOFFLOAD:
Michał Mirosław88255372011-04-19 06:13:10 +00001962 ret = set_offload(tun, arg);
Eric W. Biederman631ab462009-01-20 11:00:40 +00001963 break;
Rusty Russell5228ddc2008-07-03 03:46:16 -07001964
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -07001965 case TUNSETTXFILTER:
1966 /* Can be set only for TAPs */
Eric W. Biederman631ab462009-01-20 11:00:40 +00001967 ret = -EINVAL;
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -07001968 if ((tun->flags & TUN_TYPE_MASK) != TUN_TAP_DEV)
Eric W. Biederman631ab462009-01-20 11:00:40 +00001969 break;
Harvey Harrisonc0e5a8c2008-07-16 12:45:34 -07001970 ret = update_filter(&tun->txflt, (void __user *)arg);
Eric W. Biederman631ab462009-01-20 11:00:40 +00001971 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001972
1973 case SIOCGIFHWADDR:
Uwe Kleine-Königb5950762010-11-01 15:38:34 -04001974 /* Get hw address */
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -07001975 memcpy(ifr.ifr_hwaddr.sa_data, tun->dev->dev_addr, ETH_ALEN);
1976 ifr.ifr_hwaddr.sa_family = tun->dev->type;
Arnd Bergmann50857e22009-11-06 22:52:32 -08001977 if (copy_to_user(argp, &ifr, ifreq_len))
Eric W. Biederman631ab462009-01-20 11:00:40 +00001978 ret = -EFAULT;
1979 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001980
1981 case SIOCSIFHWADDR:
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -07001982 /* Set hw address */
Joe Perches6b8a66e2011-03-02 07:18:10 +00001983 tun_debug(KERN_DEBUG, tun, "set hw address: %pM\n",
1984 ifr.ifr_hwaddr.sa_data);
Kim B. Heino40102372008-02-29 12:26:21 -08001985
Kim B. Heino40102372008-02-29 12:26:21 -08001986 ret = dev_set_mac_address(tun->dev, &ifr.ifr_hwaddr);
Eric W. Biederman631ab462009-01-20 11:00:40 +00001987 break;
Herbert Xu33dccbb2009-02-05 21:25:32 -08001988
1989 case TUNGETSNDBUF:
Jason Wang54f968d2012-10-31 19:45:57 +00001990 sndbuf = tfile->socket.sk->sk_sndbuf;
Herbert Xu33dccbb2009-02-05 21:25:32 -08001991 if (copy_to_user(argp, &sndbuf, sizeof(sndbuf)))
1992 ret = -EFAULT;
1993 break;
1994
1995 case TUNSETSNDBUF:
1996 if (copy_from_user(&sndbuf, argp, sizeof(sndbuf))) {
1997 ret = -EFAULT;
1998 break;
1999 }
2000
Jason Wangc8d68e62012-10-31 19:46:00 +00002001 tun->sndbuf = sndbuf;
2002 tun_set_sndbuf(tun);
Herbert Xu33dccbb2009-02-05 21:25:32 -08002003 break;
2004
Michael S. Tsirkind9d52b52010-03-17 17:45:01 +02002005 case TUNGETVNETHDRSZ:
2006 vnet_hdr_sz = tun->vnet_hdr_sz;
2007 if (copy_to_user(argp, &vnet_hdr_sz, sizeof(vnet_hdr_sz)))
2008 ret = -EFAULT;
2009 break;
2010
2011 case TUNSETVNETHDRSZ:
2012 if (copy_from_user(&vnet_hdr_sz, argp, sizeof(vnet_hdr_sz))) {
2013 ret = -EFAULT;
2014 break;
2015 }
2016 if (vnet_hdr_sz < (int)sizeof(struct virtio_net_hdr)) {
2017 ret = -EINVAL;
2018 break;
2019 }
2020
2021 tun->vnet_hdr_sz = vnet_hdr_sz;
2022 break;
2023
Michael S. Tsirkin99405162010-02-14 01:01:10 +00002024 case TUNATTACHFILTER:
2025 /* Can be set only for TAPs */
2026 ret = -EINVAL;
2027 if ((tun->flags & TUN_TYPE_MASK) != TUN_TAP_DEV)
2028 break;
2029 ret = -EFAULT;
Jason Wang54f968d2012-10-31 19:45:57 +00002030 if (copy_from_user(&tun->fprog, argp, sizeof(tun->fprog)))
Michael S. Tsirkin99405162010-02-14 01:01:10 +00002031 break;
2032
Jason Wangc8d68e62012-10-31 19:46:00 +00002033 ret = tun_attach_filter(tun);
Michael S. Tsirkin99405162010-02-14 01:01:10 +00002034 break;
2035
2036 case TUNDETACHFILTER:
2037 /* Can be set only for TAPs */
2038 ret = -EINVAL;
2039 if ((tun->flags & TUN_TYPE_MASK) != TUN_TAP_DEV)
2040 break;
Jason Wangc8d68e62012-10-31 19:46:00 +00002041 ret = 0;
2042 tun_detach_filter(tun, tun->numqueues);
Michael S. Tsirkin99405162010-02-14 01:01:10 +00002043 break;
2044
Linus Torvalds1da177e2005-04-16 15:20:36 -07002045 default:
Eric W. Biederman631ab462009-01-20 11:00:40 +00002046 ret = -EINVAL;
2047 break;
Joe Perchesee289b62010-05-17 22:47:34 -07002048 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002049
Herbert Xu876bfd42009-08-06 14:22:44 +00002050unlock:
2051 rtnl_unlock();
2052 if (tun)
2053 tun_put(tun);
Eric W. Biederman631ab462009-01-20 11:00:40 +00002054 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002055}
2056
Arnd Bergmann50857e22009-11-06 22:52:32 -08002057static long tun_chr_ioctl(struct file *file,
2058 unsigned int cmd, unsigned long arg)
2059{
2060 return __tun_chr_ioctl(file, cmd, arg, sizeof (struct ifreq));
2061}
2062
2063#ifdef CONFIG_COMPAT
2064static long tun_chr_compat_ioctl(struct file *file,
2065 unsigned int cmd, unsigned long arg)
2066{
2067 switch (cmd) {
2068 case TUNSETIFF:
2069 case TUNGETIFF:
2070 case TUNSETTXFILTER:
2071 case TUNGETSNDBUF:
2072 case TUNSETSNDBUF:
2073 case SIOCGIFHWADDR:
2074 case SIOCSIFHWADDR:
2075 arg = (unsigned long)compat_ptr(arg);
2076 break;
2077 default:
2078 arg = (compat_ulong_t)arg;
2079 break;
2080 }
2081
2082 /*
2083 * compat_ifreq is shorter than ifreq, so we must not access beyond
2084 * the end of that structure. All fields that are used in this
2085 * driver are compatible though, we don't need to convert the
2086 * contents.
2087 */
2088 return __tun_chr_ioctl(file, cmd, arg, sizeof(struct compat_ifreq));
2089}
2090#endif /* CONFIG_COMPAT */
2091
Linus Torvalds1da177e2005-04-16 15:20:36 -07002092static int tun_chr_fasync(int fd, struct file *file, int on)
2093{
Jason Wang54f968d2012-10-31 19:45:57 +00002094 struct tun_file *tfile = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002095 int ret;
2096
Jason Wang54f968d2012-10-31 19:45:57 +00002097 if ((ret = fasync_helper(fd, file, on, &tfile->fasync)) < 0)
Jonathan Corbet9d319522008-06-19 15:50:37 -06002098 goto out;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002099
Linus Torvalds1da177e2005-04-16 15:20:36 -07002100 if (on) {
Eric W. Biederman609d7fa2006-10-02 02:17:15 -07002101 ret = __f_setown(file, task_pid(current), PIDTYPE_PID, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002102 if (ret)
Jonathan Corbet9d319522008-06-19 15:50:37 -06002103 goto out;
Jason Wang54f968d2012-10-31 19:45:57 +00002104 tfile->flags |= TUN_FASYNC;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002105 } else
Jason Wang54f968d2012-10-31 19:45:57 +00002106 tfile->flags &= ~TUN_FASYNC;
Jonathan Corbet9d319522008-06-19 15:50:37 -06002107 ret = 0;
2108out:
Jonathan Corbet9d319522008-06-19 15:50:37 -06002109 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002110}
2111
2112static int tun_chr_open(struct inode *inode, struct file * file)
2113{
Eric W. Biederman631ab462009-01-20 11:00:40 +00002114 struct tun_file *tfile;
Thomas Gleixnerdeed49f2009-10-14 01:19:46 -07002115
Joe Perches6b8a66e2011-03-02 07:18:10 +00002116 DBG1(KERN_INFO, "tunX: tun_chr_open\n");
Eric W. Biederman631ab462009-01-20 11:00:40 +00002117
Jason Wang54f968d2012-10-31 19:45:57 +00002118 tfile = (struct tun_file *)sk_alloc(&init_net, AF_UNSPEC, GFP_KERNEL,
2119 &tun_proto);
Eric W. Biederman631ab462009-01-20 11:00:40 +00002120 if (!tfile)
2121 return -ENOMEM;
Jason Wang6e914fc2012-10-31 19:45:58 +00002122 rcu_assign_pointer(tfile->tun, NULL);
Eric W. Biederman36b50ba2009-01-20 11:01:48 +00002123 tfile->net = get_net(current->nsproxy->net_ns);
Jason Wang54f968d2012-10-31 19:45:57 +00002124 tfile->flags = 0;
2125
2126 rcu_assign_pointer(tfile->socket.wq, &tfile->wq);
2127 init_waitqueue_head(&tfile->wq.wait);
2128
2129 tfile->socket.file = file;
2130 tfile->socket.ops = &tun_socket_ops;
2131
2132 sock_init_data(&tfile->socket, &tfile->sk);
2133 sk_change_net(&tfile->sk, tfile->net);
2134
2135 tfile->sk.sk_write_space = tun_sock_write_space;
2136 tfile->sk.sk_sndbuf = INT_MAX;
2137
Eric W. Biederman631ab462009-01-20 11:00:40 +00002138 file->private_data = tfile;
Jason Wang54f968d2012-10-31 19:45:57 +00002139 set_bit(SOCK_EXTERNALLY_ALLOCATED, &tfile->socket.flags);
Jason Wang4008e972012-12-13 23:53:30 +00002140 INIT_LIST_HEAD(&tfile->next);
Jason Wang54f968d2012-10-31 19:45:57 +00002141
Linus Torvalds1da177e2005-04-16 15:20:36 -07002142 return 0;
2143}
2144
2145static int tun_chr_close(struct inode *inode, struct file *file)
2146{
Eric W. Biederman631ab462009-01-20 11:00:40 +00002147 struct tun_file *tfile = file->private_data;
Jason Wang54f968d2012-10-31 19:45:57 +00002148 struct net *net = tfile->net;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002149
Jason Wangc8d68e62012-10-31 19:46:00 +00002150 tun_detach(tfile, true);
Jason Wang54f968d2012-10-31 19:45:57 +00002151 put_net(net);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002152
2153 return 0;
2154}
2155
Arjan van de Vend54b1fd2007-02-12 00:55:34 -08002156static const struct file_operations tun_fops = {
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002157 .owner = THIS_MODULE,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002158 .llseek = no_llseek,
Badari Pulavartyee0b3e62006-09-30 23:28:47 -07002159 .read = do_sync_read,
2160 .aio_read = tun_chr_aio_read,
2161 .write = do_sync_write,
2162 .aio_write = tun_chr_aio_write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002163 .poll = tun_chr_poll,
Arnd Bergmann50857e22009-11-06 22:52:32 -08002164 .unlocked_ioctl = tun_chr_ioctl,
2165#ifdef CONFIG_COMPAT
2166 .compat_ioctl = tun_chr_compat_ioctl,
2167#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002168 .open = tun_chr_open,
2169 .release = tun_chr_close,
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002170 .fasync = tun_chr_fasync
Linus Torvalds1da177e2005-04-16 15:20:36 -07002171};
2172
2173static struct miscdevice tun_miscdev = {
2174 .minor = TUN_MINOR,
2175 .name = "tun",
Kay Sieverse454cea2009-09-18 23:01:12 +02002176 .nodename = "net/tun",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002177 .fops = &tun_fops,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002178};
2179
2180/* ethtool interface */
2181
2182static int tun_get_settings(struct net_device *dev, struct ethtool_cmd *cmd)
2183{
2184 cmd->supported = 0;
2185 cmd->advertising = 0;
David Decotigny70739492011-04-27 18:32:40 +00002186 ethtool_cmd_speed_set(cmd, SPEED_10);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002187 cmd->duplex = DUPLEX_FULL;
2188 cmd->port = PORT_TP;
2189 cmd->phy_address = 0;
2190 cmd->transceiver = XCVR_INTERNAL;
2191 cmd->autoneg = AUTONEG_DISABLE;
2192 cmd->maxtxpkt = 0;
2193 cmd->maxrxpkt = 0;
2194 return 0;
2195}
2196
2197static void tun_get_drvinfo(struct net_device *dev, struct ethtool_drvinfo *info)
2198{
2199 struct tun_struct *tun = netdev_priv(dev);
2200
Rick Jones33a5ba12011-11-15 14:59:53 +00002201 strlcpy(info->driver, DRV_NAME, sizeof(info->driver));
2202 strlcpy(info->version, DRV_VERSION, sizeof(info->version));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002203
2204 switch (tun->flags & TUN_TYPE_MASK) {
2205 case TUN_TUN_DEV:
Rick Jones33a5ba12011-11-15 14:59:53 +00002206 strlcpy(info->bus_info, "tun", sizeof(info->bus_info));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002207 break;
2208 case TUN_TAP_DEV:
Rick Jones33a5ba12011-11-15 14:59:53 +00002209 strlcpy(info->bus_info, "tap", sizeof(info->bus_info));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002210 break;
2211 }
2212}
2213
2214static u32 tun_get_msglevel(struct net_device *dev)
2215{
2216#ifdef TUN_DEBUG
2217 struct tun_struct *tun = netdev_priv(dev);
2218 return tun->debug;
2219#else
2220 return -EOPNOTSUPP;
2221#endif
2222}
2223
2224static void tun_set_msglevel(struct net_device *dev, u32 value)
2225{
2226#ifdef TUN_DEBUG
2227 struct tun_struct *tun = netdev_priv(dev);
2228 tun->debug = value;
2229#endif
2230}
2231
Jeff Garzik7282d492006-09-13 14:30:00 -04002232static const struct ethtool_ops tun_ethtool_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002233 .get_settings = tun_get_settings,
2234 .get_drvinfo = tun_get_drvinfo,
2235 .get_msglevel = tun_get_msglevel,
2236 .set_msglevel = tun_set_msglevel,
Nolan Leakebee31362010-07-27 13:53:43 +00002237 .get_link = ethtool_op_get_link,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002238};
2239
Pavel Emelyanov79d17602008-04-16 00:40:46 -07002240
Linus Torvalds1da177e2005-04-16 15:20:36 -07002241static int __init tun_init(void)
2242{
2243 int ret = 0;
2244
Joe Perches6b8a66e2011-03-02 07:18:10 +00002245 pr_info("%s, %s\n", DRV_DESCRIPTION, DRV_VERSION);
2246 pr_info("%s\n", DRV_COPYRIGHT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002247
Eric W. Biedermanf019a7a2009-01-21 16:02:16 -08002248 ret = rtnl_link_register(&tun_link_ops);
Pavel Emelyanov79d17602008-04-16 00:40:46 -07002249 if (ret) {
Joe Perches6b8a66e2011-03-02 07:18:10 +00002250 pr_err("Can't register link_ops\n");
Eric W. Biedermanf019a7a2009-01-21 16:02:16 -08002251 goto err_linkops;
Pavel Emelyanov79d17602008-04-16 00:40:46 -07002252 }
2253
Linus Torvalds1da177e2005-04-16 15:20:36 -07002254 ret = misc_register(&tun_miscdev);
Pavel Emelyanov79d17602008-04-16 00:40:46 -07002255 if (ret) {
Joe Perches6b8a66e2011-03-02 07:18:10 +00002256 pr_err("Can't register misc device %d\n", TUN_MINOR);
Pavel Emelyanov79d17602008-04-16 00:40:46 -07002257 goto err_misc;
2258 }
Eric W. Biedermanf019a7a2009-01-21 16:02:16 -08002259 return 0;
Pavel Emelyanov79d17602008-04-16 00:40:46 -07002260err_misc:
Eric W. Biedermanf019a7a2009-01-21 16:02:16 -08002261 rtnl_link_unregister(&tun_link_ops);
2262err_linkops:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002263 return ret;
2264}
2265
2266static void tun_cleanup(void)
2267{
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002268 misc_deregister(&tun_miscdev);
Eric W. Biedermanf019a7a2009-01-21 16:02:16 -08002269 rtnl_link_unregister(&tun_link_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002270}
2271
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00002272/* Get an underlying socket object from tun file. Returns error unless file is
2273 * attached to a device. The returned object works like a packet socket, it
2274 * can be used for sock_sendmsg/sock_recvmsg. The caller is responsible for
2275 * holding a reference to the file for as long as the socket is in use. */
2276struct socket *tun_get_socket(struct file *file)
2277{
Jason Wang6e914fc2012-10-31 19:45:58 +00002278 struct tun_file *tfile;
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00002279 if (file->f_op != &tun_fops)
2280 return ERR_PTR(-EINVAL);
Jason Wang6e914fc2012-10-31 19:45:58 +00002281 tfile = file->private_data;
2282 if (!tfile)
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00002283 return ERR_PTR(-EBADFD);
Jason Wang54f968d2012-10-31 19:45:57 +00002284 return &tfile->socket;
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00002285}
2286EXPORT_SYMBOL_GPL(tun_get_socket);
2287
Linus Torvalds1da177e2005-04-16 15:20:36 -07002288module_init(tun_init);
2289module_exit(tun_cleanup);
2290MODULE_DESCRIPTION(DRV_DESCRIPTION);
2291MODULE_AUTHOR(DRV_COPYRIGHT);
2292MODULE_LICENSE("GPL");
2293MODULE_ALIAS_MISCDEV(TUN_MINOR);
Kay Sievers578454f2010-05-20 18:07:20 +02002294MODULE_ALIAS("devname:net/tun");