blob: 2dddb1bc82c90bae632de357a95227b4a2af6684 [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>
Jason Wang6680ec62013-07-25 13:00:33 +080063#include <linux/if_vlan.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070064#include <linux/crc32.h>
Pavel Emelyanovd647a592008-04-16 00:41:16 -070065#include <linux/nsproxy.h>
Rusty Russellf43798c2008-07-03 03:48:02 -070066#include <linux/virtio_net.h>
Michael S. Tsirkin99405162010-02-14 01:01:10 +000067#include <linux/rcupdate.h>
Eric W. Biederman881d9662007-09-17 11:56:21 -070068#include <net/net_namespace.h>
Pavel Emelyanov79d17602008-04-16 00:40:46 -070069#include <net/netns/generic.h>
Eric W. Biedermanf019a7a2009-01-21 16:02:16 -080070#include <net/rtnetlink.h>
Herbert Xu33dccbb2009-02-05 21:25:32 -080071#include <net/sock.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070072
Linus Torvalds1da177e2005-04-16 15:20:36 -070073#include <asm/uaccess.h>
74
Rusty Russell14daa022008-04-12 18:48:58 -070075/* Uncomment to enable debugging */
76/* #define TUN_DEBUG 1 */
77
Linus Torvalds1da177e2005-04-16 15:20:36 -070078#ifdef TUN_DEBUG
79static int debug;
Rusty Russell14daa022008-04-12 18:48:58 -070080
Joe Perches6b8a66e2011-03-02 07:18:10 +000081#define tun_debug(level, tun, fmt, args...) \
82do { \
83 if (tun->debug) \
84 netdev_printk(level, tun->dev, fmt, ##args); \
85} while (0)
86#define DBG1(level, fmt, args...) \
87do { \
88 if (debug == 2) \
89 printk(level fmt, ##args); \
90} while (0)
Rusty Russell14daa022008-04-12 18:48:58 -070091#else
Joe Perches6b8a66e2011-03-02 07:18:10 +000092#define tun_debug(level, tun, fmt, args...) \
93do { \
94 if (0) \
95 netdev_printk(level, tun->dev, fmt, ##args); \
96} while (0)
97#define DBG1(level, fmt, args...) \
98do { \
99 if (0) \
100 printk(level fmt, ##args); \
101} while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102#endif
103
Michael S. Tsirkin06908992012-07-20 09:23:23 +0000104#define GOODCOPY_LEN 128
105
Max Krasnyanskyf271b2c2008-07-14 22:18:19 -0700106#define FLT_EXACT_COUNT 8
107struct tap_filter {
108 unsigned int count; /* Number of addrs. Zero means disabled */
109 u32 mask[2]; /* Mask of the hashed addrs */
110 unsigned char addr[FLT_EXACT_COUNT][ETH_ALEN];
111};
112
Jason Wangedfb6a12013-01-23 03:59:12 +0000113/* DEFAULT_MAX_NUM_RSS_QUEUES were choosed to let the rx/tx queues allocated for
114 * the netdevice to be fit in one page. So we can make sure the success of
115 * memory allocation. TODO: increase the limit. */
116#define MAX_TAP_QUEUES DEFAULT_MAX_NUM_RSS_QUEUES
Jason Wangb8732fb2013-01-23 03:59:13 +0000117#define MAX_TAP_FLOWS 4096
Jason Wangc8d68e62012-10-31 19:46:00 +0000118
Jason Wang96442e422012-10-31 19:46:02 +0000119#define TUN_FLOW_EXPIRE (3 * HZ)
120
Jason Wang54f968d2012-10-31 19:45:57 +0000121/* A tun_file connects an open character device to a tuntap netdevice. It
122 * also contains all socket related strctures (except sock_fprog and tap_filter)
123 * to serve as one transmit queue for tuntap device. The sock_fprog and
124 * tap_filter were kept in tun_struct since they were used for filtering for the
Rami Rosen36fe8c092012-11-25 22:07:40 +0000125 * netdevice not for a specific queue (at least I didn't see the requirement for
Jason Wang54f968d2012-10-31 19:45:57 +0000126 * this).
Jason Wang6e914fc2012-10-31 19:45:58 +0000127 *
128 * RCU usage:
Rami Rosen36fe8c092012-11-25 22:07:40 +0000129 * The tun_file and tun_struct are loosely coupled, the pointer from one to the
Jason Wang6e914fc2012-10-31 19:45:58 +0000130 * other can only be read while rcu_read_lock or rtnl_lock is held.
Jason Wang54f968d2012-10-31 19:45:57 +0000131 */
Eric W. Biederman631ab462009-01-20 11:00:40 +0000132struct tun_file {
Jason Wang54f968d2012-10-31 19:45:57 +0000133 struct sock sk;
134 struct socket socket;
135 struct socket_wq wq;
Jason Wang6e914fc2012-10-31 19:45:58 +0000136 struct tun_struct __rcu *tun;
Eric W. Biederman36b50ba2009-01-20 11:01:48 +0000137 struct net *net;
Jason Wang54f968d2012-10-31 19:45:57 +0000138 struct fasync_struct *fasync;
139 /* only used for fasnyc */
140 unsigned int flags;
Pavel Emelyanovfb7589a2013-08-21 14:31:38 +0400141 union {
142 u16 queue_index;
143 unsigned int ifindex;
144 };
Jason Wang4008e972012-12-13 23:53:30 +0000145 struct list_head next;
146 struct tun_struct *detached;
Eric W. Biederman631ab462009-01-20 11:00:40 +0000147};
148
Jason Wang96442e422012-10-31 19:46:02 +0000149struct tun_flow_entry {
150 struct hlist_node hash_link;
151 struct rcu_head rcu;
152 struct tun_struct *tun;
153
154 u32 rxhash;
155 int queue_index;
156 unsigned long updated;
157};
158
159#define TUN_NUM_FLOW_ENTRIES 1024
160
Jason Wang54f968d2012-10-31 19:45:57 +0000161/* Since the socket were moved to tun_file, to preserve the behavior of persist
Rami Rosen36fe8c092012-11-25 22:07:40 +0000162 * device, socket filter, sndbuf and vnet header size were restore when the
Jason Wang54f968d2012-10-31 19:45:57 +0000163 * file were attached to a persist device.
164 */
Rusty Russell14daa022008-04-12 18:48:58 -0700165struct tun_struct {
Jason Wangc8d68e62012-10-31 19:46:00 +0000166 struct tun_file __rcu *tfiles[MAX_TAP_QUEUES];
167 unsigned int numqueues;
Max Krasnyanskyf271b2c2008-07-14 22:18:19 -0700168 unsigned int flags;
Eric W. Biederman0625c882012-02-07 16:48:55 -0800169 kuid_t owner;
170 kgid_t group;
Rusty Russell14daa022008-04-12 18:48:58 -0700171
Rusty Russell14daa022008-04-12 18:48:58 -0700172 struct net_device *dev;
Michał Mirosławc8f44af2011-11-15 15:29:55 +0000173 netdev_features_t set_features;
Michał Mirosław88255372011-04-19 06:13:10 +0000174#define TUN_USER_FEATURES (NETIF_F_HW_CSUM|NETIF_F_TSO_ECN|NETIF_F_TSO| \
175 NETIF_F_TSO6|NETIF_F_UFO)
Michael S. Tsirkind9d52b52010-03-17 17:45:01 +0200176
177 int vnet_hdr_sz;
Jason Wang54f968d2012-10-31 19:45:57 +0000178 int sndbuf;
179 struct tap_filter txflt;
180 struct sock_fprog fprog;
181 /* protected by rtnl lock */
182 bool filter_attached;
Rusty Russell14daa022008-04-12 18:48:58 -0700183#ifdef TUN_DEBUG
184 int debug;
185#endif
Jason Wang96442e422012-10-31 19:46:02 +0000186 spinlock_t lock;
Jason Wang96442e422012-10-31 19:46:02 +0000187 struct hlist_head flows[TUN_NUM_FLOW_ENTRIES];
188 struct timer_list flow_gc_timer;
189 unsigned long ageing_time;
Jason Wang4008e972012-12-13 23:53:30 +0000190 unsigned int numdisabled;
191 struct list_head disabled;
Paul Moore5dbbaf22013-01-14 07:12:19 +0000192 void *security;
Jason Wangb8732fb2013-01-23 03:59:13 +0000193 u32 flow_count;
Rusty Russell14daa022008-04-12 18:48:58 -0700194};
195
Jason Wang96442e422012-10-31 19:46:02 +0000196static inline u32 tun_hashfn(u32 rxhash)
197{
198 return rxhash & 0x3ff;
199}
200
201static struct tun_flow_entry *tun_flow_find(struct hlist_head *head, u32 rxhash)
202{
203 struct tun_flow_entry *e;
Jason Wang96442e422012-10-31 19:46:02 +0000204
Sasha Levinb67bfe02013-02-27 17:06:00 -0800205 hlist_for_each_entry_rcu(e, head, hash_link) {
Jason Wang96442e422012-10-31 19:46:02 +0000206 if (e->rxhash == rxhash)
207 return e;
208 }
209 return NULL;
210}
211
212static struct tun_flow_entry *tun_flow_create(struct tun_struct *tun,
213 struct hlist_head *head,
214 u32 rxhash, u16 queue_index)
215{
Eric Dumazet9fdc6be2012-12-21 07:17:21 +0000216 struct tun_flow_entry *e = kmalloc(sizeof(*e), GFP_ATOMIC);
217
Jason Wang96442e422012-10-31 19:46:02 +0000218 if (e) {
219 tun_debug(KERN_INFO, tun, "create flow: hash %u index %u\n",
220 rxhash, queue_index);
221 e->updated = jiffies;
222 e->rxhash = rxhash;
223 e->queue_index = queue_index;
224 e->tun = tun;
225 hlist_add_head_rcu(&e->hash_link, head);
Jason Wangb8732fb2013-01-23 03:59:13 +0000226 ++tun->flow_count;
Jason Wang96442e422012-10-31 19:46:02 +0000227 }
228 return e;
229}
230
Jason Wang96442e422012-10-31 19:46:02 +0000231static void tun_flow_delete(struct tun_struct *tun, struct tun_flow_entry *e)
232{
233 tun_debug(KERN_INFO, tun, "delete flow: hash %u index %u\n",
234 e->rxhash, e->queue_index);
235 hlist_del_rcu(&e->hash_link);
Eric Dumazet9fdc6be2012-12-21 07:17:21 +0000236 kfree_rcu(e, rcu);
Jason Wangb8732fb2013-01-23 03:59:13 +0000237 --tun->flow_count;
Jason Wang96442e422012-10-31 19:46:02 +0000238}
239
240static void tun_flow_flush(struct tun_struct *tun)
241{
242 int i;
243
244 spin_lock_bh(&tun->lock);
245 for (i = 0; i < TUN_NUM_FLOW_ENTRIES; i++) {
246 struct tun_flow_entry *e;
Sasha Levinb67bfe02013-02-27 17:06:00 -0800247 struct hlist_node *n;
Jason Wang96442e422012-10-31 19:46:02 +0000248
Sasha Levinb67bfe02013-02-27 17:06:00 -0800249 hlist_for_each_entry_safe(e, n, &tun->flows[i], hash_link)
Jason Wang96442e422012-10-31 19:46:02 +0000250 tun_flow_delete(tun, e);
251 }
252 spin_unlock_bh(&tun->lock);
253}
254
255static void tun_flow_delete_by_queue(struct tun_struct *tun, u16 queue_index)
256{
257 int i;
258
259 spin_lock_bh(&tun->lock);
260 for (i = 0; i < TUN_NUM_FLOW_ENTRIES; i++) {
261 struct tun_flow_entry *e;
Sasha Levinb67bfe02013-02-27 17:06:00 -0800262 struct hlist_node *n;
Jason Wang96442e422012-10-31 19:46:02 +0000263
Sasha Levinb67bfe02013-02-27 17:06:00 -0800264 hlist_for_each_entry_safe(e, n, &tun->flows[i], hash_link) {
Jason Wang96442e422012-10-31 19:46:02 +0000265 if (e->queue_index == queue_index)
266 tun_flow_delete(tun, e);
267 }
268 }
269 spin_unlock_bh(&tun->lock);
270}
271
272static void tun_flow_cleanup(unsigned long data)
273{
274 struct tun_struct *tun = (struct tun_struct *)data;
275 unsigned long delay = tun->ageing_time;
276 unsigned long next_timer = jiffies + delay;
277 unsigned long count = 0;
278 int i;
279
280 tun_debug(KERN_INFO, tun, "tun_flow_cleanup\n");
281
282 spin_lock_bh(&tun->lock);
283 for (i = 0; i < TUN_NUM_FLOW_ENTRIES; i++) {
284 struct tun_flow_entry *e;
Sasha Levinb67bfe02013-02-27 17:06:00 -0800285 struct hlist_node *n;
Jason Wang96442e422012-10-31 19:46:02 +0000286
Sasha Levinb67bfe02013-02-27 17:06:00 -0800287 hlist_for_each_entry_safe(e, n, &tun->flows[i], hash_link) {
Jason Wang96442e422012-10-31 19:46:02 +0000288 unsigned long this_timer;
289 count++;
290 this_timer = e->updated + delay;
291 if (time_before_eq(this_timer, jiffies))
292 tun_flow_delete(tun, e);
293 else if (time_before(this_timer, next_timer))
294 next_timer = this_timer;
295 }
296 }
297
298 if (count)
299 mod_timer(&tun->flow_gc_timer, round_jiffies_up(next_timer));
300 spin_unlock_bh(&tun->lock);
301}
302
Eric Dumazet49974422012-12-12 19:22:57 +0000303static void tun_flow_update(struct tun_struct *tun, u32 rxhash,
Jason Wang9e857222013-01-28 01:05:19 +0000304 struct tun_file *tfile)
Jason Wang96442e422012-10-31 19:46:02 +0000305{
306 struct hlist_head *head;
307 struct tun_flow_entry *e;
308 unsigned long delay = tun->ageing_time;
Jason Wang9e857222013-01-28 01:05:19 +0000309 u16 queue_index = tfile->queue_index;
Jason Wang96442e422012-10-31 19:46:02 +0000310
311 if (!rxhash)
312 return;
313 else
314 head = &tun->flows[tun_hashfn(rxhash)];
315
316 rcu_read_lock();
317
Jason Wang9e857222013-01-28 01:05:19 +0000318 /* We may get a very small possibility of OOO during switching, not
319 * worth to optimize.*/
320 if (tun->numqueues == 1 || tfile->detached)
Jason Wang96442e422012-10-31 19:46:02 +0000321 goto unlock;
322
323 e = tun_flow_find(head, rxhash);
324 if (likely(e)) {
325 /* TODO: keep queueing to old queue until it's empty? */
326 e->queue_index = queue_index;
327 e->updated = jiffies;
328 } else {
329 spin_lock_bh(&tun->lock);
Jason Wangb8732fb2013-01-23 03:59:13 +0000330 if (!tun_flow_find(head, rxhash) &&
331 tun->flow_count < MAX_TAP_FLOWS)
Jason Wang96442e422012-10-31 19:46:02 +0000332 tun_flow_create(tun, head, rxhash, queue_index);
333
334 if (!timer_pending(&tun->flow_gc_timer))
335 mod_timer(&tun->flow_gc_timer,
336 round_jiffies_up(jiffies + delay));
337 spin_unlock_bh(&tun->lock);
338 }
339
340unlock:
341 rcu_read_unlock();
342}
343
Jason Wangc8d68e62012-10-31 19:46:00 +0000344/* We try to identify a flow through its rxhash first. The reason that
345 * we do not check rxq no. is becuase some cards(e.g 82599), chooses
346 * the rxq based on the txq where the last packet of the flow comes. As
347 * the userspace application move between processors, we may get a
348 * different rxq no. here. If we could not get rxhash, then we would
349 * hope the rxq no. may help here.
350 */
351static u16 tun_select_queue(struct net_device *dev, struct sk_buff *skb)
352{
353 struct tun_struct *tun = netdev_priv(dev);
Jason Wang96442e422012-10-31 19:46:02 +0000354 struct tun_flow_entry *e;
Jason Wangc8d68e62012-10-31 19:46:00 +0000355 u32 txq = 0;
356 u32 numqueues = 0;
357
358 rcu_read_lock();
Jason Wang92bb73e2013-06-05 16:44:57 +0800359 numqueues = ACCESS_ONCE(tun->numqueues);
Jason Wangc8d68e62012-10-31 19:46:00 +0000360
361 txq = skb_get_rxhash(skb);
362 if (txq) {
Jason Wang96442e422012-10-31 19:46:02 +0000363 e = tun_flow_find(&tun->flows[tun_hashfn(txq)], txq);
364 if (e)
365 txq = e->queue_index;
366 else
367 /* use multiply and shift instead of expensive divide */
368 txq = ((u64)txq * numqueues) >> 32;
Jason Wangc8d68e62012-10-31 19:46:00 +0000369 } else if (likely(skb_rx_queue_recorded(skb))) {
370 txq = skb_get_rx_queue(skb);
371 while (unlikely(txq >= numqueues))
372 txq -= numqueues;
373 }
374
375 rcu_read_unlock();
376 return txq;
377}
378
Jason Wangcde8b152012-10-31 19:46:01 +0000379static inline bool tun_not_capable(struct tun_struct *tun)
380{
381 const struct cred *cred = current_cred();
Eric W. Biedermanc260b772012-11-18 21:34:11 +0000382 struct net *net = dev_net(tun->dev);
Jason Wangcde8b152012-10-31 19:46:01 +0000383
384 return ((uid_valid(tun->owner) && !uid_eq(cred->euid, tun->owner)) ||
385 (gid_valid(tun->group) && !in_egroup_p(tun->group))) &&
Eric W. Biedermanc260b772012-11-18 21:34:11 +0000386 !ns_capable(net->user_ns, CAP_NET_ADMIN);
Jason Wangcde8b152012-10-31 19:46:01 +0000387}
388
Jason Wangc8d68e62012-10-31 19:46:00 +0000389static void tun_set_real_num_queues(struct tun_struct *tun)
390{
391 netif_set_real_num_tx_queues(tun->dev, tun->numqueues);
392 netif_set_real_num_rx_queues(tun->dev, tun->numqueues);
393}
394
Jason Wang4008e972012-12-13 23:53:30 +0000395static void tun_disable_queue(struct tun_struct *tun, struct tun_file *tfile)
396{
397 tfile->detached = tun;
398 list_add_tail(&tfile->next, &tun->disabled);
399 ++tun->numdisabled;
400}
401
Jason Wangd32649d2012-12-18 11:00:27 +0800402static struct tun_struct *tun_enable_queue(struct tun_file *tfile)
Jason Wang4008e972012-12-13 23:53:30 +0000403{
404 struct tun_struct *tun = tfile->detached;
405
406 tfile->detached = NULL;
407 list_del_init(&tfile->next);
408 --tun->numdisabled;
409 return tun;
410}
411
Jason Wang4bfb0512013-09-05 17:53:59 +0800412static void tun_queue_purge(struct tun_file *tfile)
413{
414 skb_queue_purge(&tfile->sk.sk_receive_queue);
415 skb_queue_purge(&tfile->sk.sk_error_queue);
416}
417
Jason Wangc8d68e62012-10-31 19:46:00 +0000418static void __tun_detach(struct tun_file *tfile, bool clean)
419{
420 struct tun_file *ntfile;
421 struct tun_struct *tun;
Jason Wangc8d68e62012-10-31 19:46:00 +0000422
Jason Wangb8deabd2013-01-11 16:59:32 +0000423 tun = rtnl_dereference(tfile->tun);
424
Jason Wang9e857222013-01-28 01:05:19 +0000425 if (tun && !tfile->detached) {
Jason Wangc8d68e62012-10-31 19:46:00 +0000426 u16 index = tfile->queue_index;
427 BUG_ON(index >= tun->numqueues);
Jason Wangc8d68e62012-10-31 19:46:00 +0000428
429 rcu_assign_pointer(tun->tfiles[index],
430 tun->tfiles[tun->numqueues - 1]);
Jason Wangb8deabd2013-01-11 16:59:32 +0000431 ntfile = rtnl_dereference(tun->tfiles[index]);
Jason Wangc8d68e62012-10-31 19:46:00 +0000432 ntfile->queue_index = index;
433
434 --tun->numqueues;
Jason Wang9e857222013-01-28 01:05:19 +0000435 if (clean) {
436 rcu_assign_pointer(tfile->tun, NULL);
Jason Wang4008e972012-12-13 23:53:30 +0000437 sock_put(&tfile->sk);
Jason Wang9e857222013-01-28 01:05:19 +0000438 } else
Jason Wang4008e972012-12-13 23:53:30 +0000439 tun_disable_queue(tun, tfile);
Jason Wangc8d68e62012-10-31 19:46:00 +0000440
441 synchronize_net();
Jason Wang96442e422012-10-31 19:46:02 +0000442 tun_flow_delete_by_queue(tun, tun->numqueues + 1);
Jason Wangc8d68e62012-10-31 19:46:00 +0000443 /* Drop read queue */
Jason Wang4bfb0512013-09-05 17:53:59 +0800444 tun_queue_purge(tfile);
Jason Wangc8d68e62012-10-31 19:46:00 +0000445 tun_set_real_num_queues(tun);
Jason Wangdd38bd82013-01-11 16:59:34 +0000446 } else if (tfile->detached && clean) {
Jason Wang4008e972012-12-13 23:53:30 +0000447 tun = tun_enable_queue(tfile);
Jason Wangdd38bd82013-01-11 16:59:34 +0000448 sock_put(&tfile->sk);
449 }
Jason Wangc8d68e62012-10-31 19:46:00 +0000450
451 if (clean) {
Michael S. Tsirkinaf668b32013-01-28 00:38:02 +0000452 if (tun && tun->numqueues == 0 && tun->numdisabled == 0) {
453 netif_carrier_off(tun->dev);
454
455 if (!(tun->flags & TUN_PERSIST) &&
456 tun->dev->reg_state == NETREG_REGISTERED)
Jason Wang4008e972012-12-13 23:53:30 +0000457 unregister_netdevice(tun->dev);
Michael S. Tsirkinaf668b32013-01-28 00:38:02 +0000458 }
Jason Wang4008e972012-12-13 23:53:30 +0000459
Jason Wangc8d68e62012-10-31 19:46:00 +0000460 BUG_ON(!test_bit(SOCK_EXTERNALLY_ALLOCATED,
461 &tfile->socket.flags));
462 sk_release_kernel(&tfile->sk);
463 }
464}
465
466static void tun_detach(struct tun_file *tfile, bool clean)
467{
468 rtnl_lock();
469 __tun_detach(tfile, clean);
470 rtnl_unlock();
471}
472
473static void tun_detach_all(struct net_device *dev)
474{
475 struct tun_struct *tun = netdev_priv(dev);
Jason Wang4008e972012-12-13 23:53:30 +0000476 struct tun_file *tfile, *tmp;
Jason Wangc8d68e62012-10-31 19:46:00 +0000477 int i, n = tun->numqueues;
478
479 for (i = 0; i < n; i++) {
Jason Wangb8deabd2013-01-11 16:59:32 +0000480 tfile = rtnl_dereference(tun->tfiles[i]);
Jason Wangc8d68e62012-10-31 19:46:00 +0000481 BUG_ON(!tfile);
482 wake_up_all(&tfile->wq.wait);
483 rcu_assign_pointer(tfile->tun, NULL);
484 --tun->numqueues;
485 }
Jason Wang9e857222013-01-28 01:05:19 +0000486 list_for_each_entry(tfile, &tun->disabled, next) {
487 wake_up_all(&tfile->wq.wait);
488 rcu_assign_pointer(tfile->tun, NULL);
489 }
Jason Wangc8d68e62012-10-31 19:46:00 +0000490 BUG_ON(tun->numqueues != 0);
491
492 synchronize_net();
493 for (i = 0; i < n; i++) {
Jason Wangb8deabd2013-01-11 16:59:32 +0000494 tfile = rtnl_dereference(tun->tfiles[i]);
Jason Wangc8d68e62012-10-31 19:46:00 +0000495 /* Drop read queue */
Jason Wang4bfb0512013-09-05 17:53:59 +0800496 tun_queue_purge(tfile);
Jason Wangc8d68e62012-10-31 19:46:00 +0000497 sock_put(&tfile->sk);
498 }
Jason Wang4008e972012-12-13 23:53:30 +0000499 list_for_each_entry_safe(tfile, tmp, &tun->disabled, next) {
500 tun_enable_queue(tfile);
Jason Wang4bfb0512013-09-05 17:53:59 +0800501 tun_queue_purge(tfile);
Jason Wang4008e972012-12-13 23:53:30 +0000502 sock_put(&tfile->sk);
503 }
504 BUG_ON(tun->numdisabled != 0);
Jason Wangdd38bd82013-01-11 16:59:34 +0000505
506 if (tun->flags & TUN_PERSIST)
507 module_put(THIS_MODULE);
Jason Wangc8d68e62012-10-31 19:46:00 +0000508}
509
Pavel Emelyanov849c9b62013-08-21 14:32:21 +0400510static int tun_attach(struct tun_struct *tun, struct file *file, bool skip_filter)
Eric W. Biedermana7385ba2009-01-20 10:57:48 +0000511{
Eric W. Biederman631ab462009-01-20 11:00:40 +0000512 struct tun_file *tfile = file->private_data;
Eric W. Biederman38231b72009-01-20 11:02:28 +0000513 int err;
Eric W. Biedermana7385ba2009-01-20 10:57:48 +0000514
Paul Moore5dbbaf22013-01-14 07:12:19 +0000515 err = security_tun_dev_attach(tfile->socket.sk, tun->security);
516 if (err < 0)
517 goto out;
518
Eric W. Biederman38231b72009-01-20 11:02:28 +0000519 err = -EINVAL;
Jason Wang9e857222013-01-28 01:05:19 +0000520 if (rtnl_dereference(tfile->tun) && !tfile->detached)
Eric W. Biederman38231b72009-01-20 11:02:28 +0000521 goto out;
522
523 err = -EBUSY;
Jason Wangc8d68e62012-10-31 19:46:00 +0000524 if (!(tun->flags & TUN_TAP_MQ) && tun->numqueues == 1)
525 goto out;
526
527 err = -E2BIG;
Jason Wang4008e972012-12-13 23:53:30 +0000528 if (!tfile->detached &&
529 tun->numqueues + tun->numdisabled == MAX_TAP_QUEUES)
Eric W. Biederman38231b72009-01-20 11:02:28 +0000530 goto out;
531
532 err = 0;
Jason Wang54f968d2012-10-31 19:45:57 +0000533
Jason Wangc8d68e62012-10-31 19:46:00 +0000534 /* Re-attach the filter to presist device */
Pavel Emelyanov849c9b62013-08-21 14:32:21 +0400535 if (!skip_filter && (tun->filter_attached == true)) {
Jason Wang54f968d2012-10-31 19:45:57 +0000536 err = sk_attach_filter(&tun->fprog, tfile->socket.sk);
537 if (!err)
538 goto out;
539 }
Jason Wangc8d68e62012-10-31 19:46:00 +0000540 tfile->queue_index = tun->numqueues;
Jason Wang6e914fc2012-10-31 19:45:58 +0000541 rcu_assign_pointer(tfile->tun, tun);
Jason Wangc8d68e62012-10-31 19:46:00 +0000542 rcu_assign_pointer(tun->tfiles[tun->numqueues], tfile);
Jason Wangc8d68e62012-10-31 19:46:00 +0000543 tun->numqueues++;
544
Jason Wang4008e972012-12-13 23:53:30 +0000545 if (tfile->detached)
546 tun_enable_queue(tfile);
547 else
548 sock_hold(&tfile->sk);
549
Jason Wangc8d68e62012-10-31 19:46:00 +0000550 tun_set_real_num_queues(tun);
551
Jason Wangc8d68e62012-10-31 19:46:00 +0000552 /* device is allowed to go away first, so no need to hold extra
553 * refcnt.
554 */
Eric W. Biedermana7385ba2009-01-20 10:57:48 +0000555
Eric W. Biederman38231b72009-01-20 11:02:28 +0000556out:
Eric W. Biederman38231b72009-01-20 11:02:28 +0000557 return err;
Eric W. Biedermana7385ba2009-01-20 10:57:48 +0000558}
559
Eric W. Biederman631ab462009-01-20 11:00:40 +0000560static struct tun_struct *__tun_get(struct tun_file *tfile)
561{
Jason Wang6e914fc2012-10-31 19:45:58 +0000562 struct tun_struct *tun;
Eric W. Biedermanc70f1822009-01-20 11:07:17 +0000563
Jason Wang6e914fc2012-10-31 19:45:58 +0000564 rcu_read_lock();
565 tun = rcu_dereference(tfile->tun);
566 if (tun)
567 dev_hold(tun->dev);
568 rcu_read_unlock();
Eric W. Biedermanc70f1822009-01-20 11:07:17 +0000569
570 return tun;
Eric W. Biederman631ab462009-01-20 11:00:40 +0000571}
572
573static struct tun_struct *tun_get(struct file *file)
574{
575 return __tun_get(file->private_data);
576}
577
578static void tun_put(struct tun_struct *tun)
579{
Jason Wang6e914fc2012-10-31 19:45:58 +0000580 dev_put(tun->dev);
Eric W. Biederman631ab462009-01-20 11:00:40 +0000581}
582
Joe Perches6b8a66e2011-03-02 07:18:10 +0000583/* TAP filtering */
Max Krasnyanskyf271b2c2008-07-14 22:18:19 -0700584static void addr_hash_set(u32 *mask, const u8 *addr)
585{
586 int n = ether_crc(ETH_ALEN, addr) >> 26;
587 mask[n >> 5] |= (1 << (n & 31));
588}
589
590static unsigned int addr_hash_test(const u32 *mask, const u8 *addr)
591{
592 int n = ether_crc(ETH_ALEN, addr) >> 26;
593 return mask[n >> 5] & (1 << (n & 31));
594}
595
596static int update_filter(struct tap_filter *filter, void __user *arg)
597{
598 struct { u8 u[ETH_ALEN]; } *addr;
599 struct tun_filter uf;
600 int err, alen, n, nexact;
601
602 if (copy_from_user(&uf, arg, sizeof(uf)))
603 return -EFAULT;
604
605 if (!uf.count) {
606 /* Disabled */
607 filter->count = 0;
608 return 0;
609 }
610
611 alen = ETH_ALEN * uf.count;
612 addr = kmalloc(alen, GFP_KERNEL);
613 if (!addr)
614 return -ENOMEM;
615
616 if (copy_from_user(addr, arg + sizeof(uf), alen)) {
617 err = -EFAULT;
618 goto done;
619 }
620
621 /* The filter is updated without holding any locks. Which is
622 * perfectly safe. We disable it first and in the worst
623 * case we'll accept a few undesired packets. */
624 filter->count = 0;
625 wmb();
626
627 /* Use first set of addresses as an exact filter */
628 for (n = 0; n < uf.count && n < FLT_EXACT_COUNT; n++)
629 memcpy(filter->addr[n], addr[n].u, ETH_ALEN);
630
631 nexact = n;
632
Alex Williamsoncfbf84f2009-02-08 17:49:17 -0800633 /* Remaining multicast addresses are hashed,
634 * unicast will leave the filter disabled. */
Max Krasnyanskyf271b2c2008-07-14 22:18:19 -0700635 memset(filter->mask, 0, sizeof(filter->mask));
Alex Williamsoncfbf84f2009-02-08 17:49:17 -0800636 for (; n < uf.count; n++) {
637 if (!is_multicast_ether_addr(addr[n].u)) {
638 err = 0; /* no filter */
639 goto done;
640 }
Max Krasnyanskyf271b2c2008-07-14 22:18:19 -0700641 addr_hash_set(filter->mask, addr[n].u);
Alex Williamsoncfbf84f2009-02-08 17:49:17 -0800642 }
Max Krasnyanskyf271b2c2008-07-14 22:18:19 -0700643
644 /* For ALLMULTI just set the mask to all ones.
645 * This overrides the mask populated above. */
646 if ((uf.flags & TUN_FLT_ALLMULTI))
647 memset(filter->mask, ~0, sizeof(filter->mask));
648
649 /* Now enable the filter */
650 wmb();
651 filter->count = nexact;
652
653 /* Return the number of exact filters */
654 err = nexact;
655
656done:
657 kfree(addr);
658 return err;
659}
660
661/* Returns: 0 - drop, !=0 - accept */
662static int run_filter(struct tap_filter *filter, const struct sk_buff *skb)
663{
664 /* Cannot use eth_hdr(skb) here because skb_mac_hdr() is incorrect
665 * at this point. */
666 struct ethhdr *eh = (struct ethhdr *) skb->data;
667 int i;
668
669 /* Exact match */
670 for (i = 0; i < filter->count; i++)
Joe Perches2e42e472012-05-09 17:17:46 +0000671 if (ether_addr_equal(eh->h_dest, filter->addr[i]))
Max Krasnyanskyf271b2c2008-07-14 22:18:19 -0700672 return 1;
673
674 /* Inexact match (multicast only) */
675 if (is_multicast_ether_addr(eh->h_dest))
676 return addr_hash_test(filter->mask, eh->h_dest);
677
678 return 0;
679}
680
681/*
682 * Checks whether the packet is accepted or not.
683 * Returns: 0 - drop, !=0 - accept
684 */
685static int check_filter(struct tap_filter *filter, const struct sk_buff *skb)
686{
687 if (!filter->count)
688 return 1;
689
690 return run_filter(filter, skb);
691}
692
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693/* Network device part of the driver */
694
Jeff Garzik7282d492006-09-13 14:30:00 -0400695static const struct ethtool_ops tun_ethtool_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696
Eric W. Biedermanc70f1822009-01-20 11:07:17 +0000697/* Net device detach from fd. */
698static void tun_net_uninit(struct net_device *dev)
699{
Jason Wangc8d68e62012-10-31 19:46:00 +0000700 tun_detach_all(dev);
Eric W. Biedermanc70f1822009-01-20 11:07:17 +0000701}
702
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703/* Net device open. */
704static int tun_net_open(struct net_device *dev)
705{
Jason Wangc8d68e62012-10-31 19:46:00 +0000706 netif_tx_start_all_queues(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707 return 0;
708}
709
710/* Net device close. */
711static int tun_net_close(struct net_device *dev)
712{
Jason Wangc8d68e62012-10-31 19:46:00 +0000713 netif_tx_stop_all_queues(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714 return 0;
715}
716
717/* Net device start xmit */
Stephen Hemminger424efe92009-08-31 19:50:51 +0000718static netdev_tx_t tun_net_xmit(struct sk_buff *skb, struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719{
720 struct tun_struct *tun = netdev_priv(dev);
Jason Wangc8d68e62012-10-31 19:46:00 +0000721 int txq = skb->queue_mapping;
Jason Wang6e914fc2012-10-31 19:45:58 +0000722 struct tun_file *tfile;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723
Jason Wang6e914fc2012-10-31 19:45:58 +0000724 rcu_read_lock();
Jason Wangc8d68e62012-10-31 19:46:00 +0000725 tfile = rcu_dereference(tun->tfiles[txq]);
726
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727 /* Drop packet if interface is not attached */
Jason Wangc8d68e62012-10-31 19:46:00 +0000728 if (txq >= tun->numqueues)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729 goto drop;
730
Jason Wang6e914fc2012-10-31 19:45:58 +0000731 tun_debug(KERN_INFO, tun, "tun_net_xmit %d\n", skb->len);
732
Jason Wangc8d68e62012-10-31 19:46:00 +0000733 BUG_ON(!tfile);
734
Max Krasnyanskyf271b2c2008-07-14 22:18:19 -0700735 /* Drop if the filter does not like it.
736 * This is a noop if the filter is disabled.
737 * Filter can be enabled only for the TAP devices. */
738 if (!check_filter(&tun->txflt, skb))
739 goto drop;
740
Jason Wang54f968d2012-10-31 19:45:57 +0000741 if (tfile->socket.sk->sk_filter &&
742 sk_filter(tfile->socket.sk, skb))
Michael S. Tsirkin99405162010-02-14 01:01:10 +0000743 goto drop;
744
Rami Rosen36fe8c092012-11-25 22:07:40 +0000745 /* Limit the number of packets queued by dividing txq length with the
Jason Wangc8d68e62012-10-31 19:46:00 +0000746 * number of queues.
747 */
Jason Wang54f968d2012-10-31 19:45:57 +0000748 if (skb_queue_len(&tfile->socket.sk->sk_receive_queue)
Michael S. Tsirkin5d097102012-12-03 10:07:14 +0000749 >= dev->tx_queue_len / tun->numqueues)
750 goto drop;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751
Richard Cochraneda29772013-07-19 19:40:10 +0200752 if (skb->sk) {
753 sock_tx_timestamp(skb->sk, &skb_shinfo(skb)->tx_flags);
754 sw_tx_timestamp(skb);
755 }
756
Michael S. Tsirkin0110d6f2010-04-13 04:59:44 +0000757 /* Orphan the skb - required as we might hang on to it
758 * for indefinite time. */
Michael S. Tsirkin868eefe2012-07-20 09:23:14 +0000759 if (unlikely(skb_orphan_frags(skb, GFP_ATOMIC)))
760 goto drop;
Michael S. Tsirkin0110d6f2010-04-13 04:59:44 +0000761 skb_orphan(skb);
762
Eric Dumazetf8af75f2013-03-06 11:02:37 +0000763 nf_reset(skb);
764
Max Krasnyanskyf271b2c2008-07-14 22:18:19 -0700765 /* Enqueue packet */
Jason Wang54f968d2012-10-31 19:45:57 +0000766 skb_queue_tail(&tfile->socket.sk->sk_receive_queue, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767
768 /* Notify and wake up reader process */
Jason Wang54f968d2012-10-31 19:45:57 +0000769 if (tfile->flags & TUN_FASYNC)
770 kill_fasync(&tfile->fasync, SIGIO, POLL_IN);
771 wake_up_interruptible_poll(&tfile->wq.wait, POLLIN |
Michael S. Tsirkin05c28282010-01-14 06:17:09 +0000772 POLLRDNORM | POLLRDBAND);
Jason Wang6e914fc2012-10-31 19:45:58 +0000773
774 rcu_read_unlock();
Patrick McHardy6ed10652009-06-23 06:03:08 +0000775 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776
777drop:
Jeff Garzik09f75cd2007-10-03 17:41:50 -0700778 dev->stats.tx_dropped++;
Michael S. Tsirkin149d36f2012-11-01 09:16:32 +0000779 skb_tx_error(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780 kfree_skb(skb);
Jason Wang6e914fc2012-10-31 19:45:58 +0000781 rcu_read_unlock();
Patrick McHardy6ed10652009-06-23 06:03:08 +0000782 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783}
784
Max Krasnyanskyf271b2c2008-07-14 22:18:19 -0700785static void tun_net_mclist(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786{
Max Krasnyanskyf271b2c2008-07-14 22:18:19 -0700787 /*
788 * This callback is supposed to deal with mc filter in
789 * _rx_ path and has nothing to do with the _tx_ path.
790 * In rx path we always accept everything userspace gives us.
791 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792}
793
Ed Swierk4885a502007-09-16 12:21:38 -0700794#define MIN_MTU 68
795#define MAX_MTU 65535
796
797static int
798tun_net_change_mtu(struct net_device *dev, int new_mtu)
799{
800 if (new_mtu < MIN_MTU || new_mtu + dev->hard_header_len > MAX_MTU)
801 return -EINVAL;
802 dev->mtu = new_mtu;
803 return 0;
804}
805
Michał Mirosławc8f44af2011-11-15 15:29:55 +0000806static netdev_features_t tun_net_fix_features(struct net_device *dev,
807 netdev_features_t features)
Michał Mirosław88255372011-04-19 06:13:10 +0000808{
809 struct tun_struct *tun = netdev_priv(dev);
810
811 return (features & tun->set_features) | (features & ~TUN_USER_FEATURES);
812}
Neil Hormanbebd0972011-06-15 05:25:01 +0000813#ifdef CONFIG_NET_POLL_CONTROLLER
814static void tun_poll_controller(struct net_device *dev)
815{
816 /*
817 * Tun only receives frames when:
818 * 1) the char device endpoint gets data from user space
819 * 2) the tun socket gets a sendmsg call from user space
820 * Since both of those are syncronous operations, we are guaranteed
821 * never to have pending data when we poll for it
822 * so theres nothing to do here but return.
823 * We need this though so netpoll recognizes us as an interface that
824 * supports polling, which enables bridge devices in virt setups to
825 * still use netconsole
826 */
827 return;
828}
829#endif
Stephen Hemminger758e43b2008-11-19 22:10:37 -0800830static const struct net_device_ops tun_netdev_ops = {
Eric W. Biedermanc70f1822009-01-20 11:07:17 +0000831 .ndo_uninit = tun_net_uninit,
Stephen Hemminger758e43b2008-11-19 22:10:37 -0800832 .ndo_open = tun_net_open,
833 .ndo_stop = tun_net_close,
Stephen Hemminger00829822008-11-20 20:14:53 -0800834 .ndo_start_xmit = tun_net_xmit,
Stephen Hemminger758e43b2008-11-19 22:10:37 -0800835 .ndo_change_mtu = tun_net_change_mtu,
Michał Mirosław88255372011-04-19 06:13:10 +0000836 .ndo_fix_features = tun_net_fix_features,
Jason Wangc8d68e62012-10-31 19:46:00 +0000837 .ndo_select_queue = tun_select_queue,
Neil Hormanbebd0972011-06-15 05:25:01 +0000838#ifdef CONFIG_NET_POLL_CONTROLLER
839 .ndo_poll_controller = tun_poll_controller,
840#endif
Stephen Hemminger758e43b2008-11-19 22:10:37 -0800841};
842
843static const struct net_device_ops tap_netdev_ops = {
Eric W. Biedermanc70f1822009-01-20 11:07:17 +0000844 .ndo_uninit = tun_net_uninit,
Stephen Hemminger758e43b2008-11-19 22:10:37 -0800845 .ndo_open = tun_net_open,
846 .ndo_stop = tun_net_close,
Stephen Hemminger00829822008-11-20 20:14:53 -0800847 .ndo_start_xmit = tun_net_xmit,
Stephen Hemminger758e43b2008-11-19 22:10:37 -0800848 .ndo_change_mtu = tun_net_change_mtu,
Michał Mirosław88255372011-04-19 06:13:10 +0000849 .ndo_fix_features = tun_net_fix_features,
Jiri Pirkoafc4b132011-08-16 06:29:01 +0000850 .ndo_set_rx_mode = tun_net_mclist,
Stephen Hemminger758e43b2008-11-19 22:10:37 -0800851 .ndo_set_mac_address = eth_mac_addr,
852 .ndo_validate_addr = eth_validate_addr,
Jason Wangc8d68e62012-10-31 19:46:00 +0000853 .ndo_select_queue = tun_select_queue,
Neil Hormanbebd0972011-06-15 05:25:01 +0000854#ifdef CONFIG_NET_POLL_CONTROLLER
855 .ndo_poll_controller = tun_poll_controller,
856#endif
Stephen Hemminger758e43b2008-11-19 22:10:37 -0800857};
858
Pavel Emelyanov944a1372013-06-11 17:01:08 +0400859static void tun_flow_init(struct tun_struct *tun)
Jason Wang96442e422012-10-31 19:46:02 +0000860{
861 int i;
862
Jason Wang96442e422012-10-31 19:46:02 +0000863 for (i = 0; i < TUN_NUM_FLOW_ENTRIES; i++)
864 INIT_HLIST_HEAD(&tun->flows[i]);
865
866 tun->ageing_time = TUN_FLOW_EXPIRE;
867 setup_timer(&tun->flow_gc_timer, tun_flow_cleanup, (unsigned long)tun);
868 mod_timer(&tun->flow_gc_timer,
869 round_jiffies_up(jiffies + tun->ageing_time));
Jason Wang96442e422012-10-31 19:46:02 +0000870}
871
872static void tun_flow_uninit(struct tun_struct *tun)
873{
874 del_timer_sync(&tun->flow_gc_timer);
875 tun_flow_flush(tun);
Jason Wang96442e422012-10-31 19:46:02 +0000876}
877
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878/* Initialize net device. */
879static void tun_net_init(struct net_device *dev)
880{
881 struct tun_struct *tun = netdev_priv(dev);
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400882
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883 switch (tun->flags & TUN_TYPE_MASK) {
884 case TUN_TUN_DEV:
Stephen Hemminger758e43b2008-11-19 22:10:37 -0800885 dev->netdev_ops = &tun_netdev_ops;
886
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887 /* Point-to-Point TUN Device */
888 dev->hard_header_len = 0;
889 dev->addr_len = 0;
890 dev->mtu = 1500;
891
892 /* Zero header length */
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400893 dev->type = ARPHRD_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894 dev->flags = IFF_POINTOPOINT | IFF_NOARP | IFF_MULTICAST;
895 dev->tx_queue_len = TUN_READQ_SIZE; /* We prefer our own queue length */
896 break;
897
898 case TUN_TAP_DEV:
Kusanagi Kouichi7a0a9602008-12-29 18:23:28 -0800899 dev->netdev_ops = &tap_netdev_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900 /* Ethernet TAP Device */
Max Krasnyanskyf271b2c2008-07-14 22:18:19 -0700901 ether_setup(dev);
Neil Horman550fd082011-07-26 06:05:38 +0000902 dev->priv_flags &= ~IFF_TX_SKB_SHARING;
stephen hemmingera6768472012-12-10 15:16:00 +0000903 dev->priv_flags |= IFF_LIVE_ADDR_CHANGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904
Danny Kukawkaf2cedb62012-02-15 06:45:39 +0000905 eth_hw_addr_random(dev);
Brian Braunstein36226a82007-04-26 01:00:55 -0700906
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907 dev->tx_queue_len = TUN_READQ_SIZE; /* We prefer our own queue length */
908 break;
909 }
910}
911
912/* Character device part */
913
914/* Poll */
Jason Wangc8d68e62012-10-31 19:46:00 +0000915static unsigned int tun_chr_poll(struct file *file, poll_table *wait)
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400916{
Eric W. Biedermanb2430de2009-01-20 11:03:21 +0000917 struct tun_file *tfile = file->private_data;
918 struct tun_struct *tun = __tun_get(tfile);
Mariusz Kozlowski3c8a9c62009-07-05 19:48:35 +0000919 struct sock *sk;
Herbert Xu33dccbb2009-02-05 21:25:32 -0800920 unsigned int mask = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921
922 if (!tun)
Eric W. Biedermaneac9e902009-01-20 10:59:05 +0000923 return POLLERR;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924
Jason Wang54f968d2012-10-31 19:45:57 +0000925 sk = tfile->socket.sk;
Mariusz Kozlowski3c8a9c62009-07-05 19:48:35 +0000926
Joe Perches6b8a66e2011-03-02 07:18:10 +0000927 tun_debug(KERN_INFO, tun, "tun_chr_poll\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928
Jason Wang54f968d2012-10-31 19:45:57 +0000929 poll_wait(file, &tfile->wq.wait, wait);
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400930
Michael S. Tsirkin89f56d12009-08-30 07:04:42 +0000931 if (!skb_queue_empty(&sk->sk_receive_queue))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932 mask |= POLLIN | POLLRDNORM;
933
Herbert Xu33dccbb2009-02-05 21:25:32 -0800934 if (sock_writeable(sk) ||
935 (!test_and_set_bit(SOCK_ASYNC_NOSPACE, &sk->sk_socket->flags) &&
936 sock_writeable(sk)))
937 mask |= POLLOUT | POLLWRNORM;
938
Eric W. Biedermanc70f1822009-01-20 11:07:17 +0000939 if (tun->dev->reg_state != NETREG_REGISTERED)
940 mask = POLLERR;
941
Eric W. Biederman631ab462009-01-20 11:00:40 +0000942 tun_put(tun);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943 return mask;
944}
945
Rusty Russellf42157c2008-08-15 15:15:10 -0700946/* prepad is the amount to reserve at front. len is length after that.
947 * linear is a hint as to how much to copy (usually headers). */
Jason Wang54f968d2012-10-31 19:45:57 +0000948static struct sk_buff *tun_alloc_skb(struct tun_file *tfile,
stephen hemminger6f7c1562011-06-08 14:33:08 +0000949 size_t prepad, size_t len,
950 size_t linear, int noblock)
Rusty Russellf42157c2008-08-15 15:15:10 -0700951{
Jason Wang54f968d2012-10-31 19:45:57 +0000952 struct sock *sk = tfile->socket.sk;
Rusty Russellf42157c2008-08-15 15:15:10 -0700953 struct sk_buff *skb;
Herbert Xu33dccbb2009-02-05 21:25:32 -0800954 int err;
Rusty Russellf42157c2008-08-15 15:15:10 -0700955
956 /* Under a page? Don't bother with paged skb. */
Herbert Xu0eca93b2009-04-14 02:09:43 -0700957 if (prepad + len < PAGE_SIZE || !linear)
Herbert Xu33dccbb2009-02-05 21:25:32 -0800958 linear = len;
Rusty Russellf42157c2008-08-15 15:15:10 -0700959
Herbert Xu33dccbb2009-02-05 21:25:32 -0800960 skb = sock_alloc_send_pskb(sk, prepad + linear, len - linear, noblock,
Eric Dumazet28d64272013-08-08 14:38:47 -0700961 &err, 0);
Rusty Russellf42157c2008-08-15 15:15:10 -0700962 if (!skb)
Herbert Xu33dccbb2009-02-05 21:25:32 -0800963 return ERR_PTR(err);
Rusty Russellf42157c2008-08-15 15:15:10 -0700964
965 skb_reserve(skb, prepad);
966 skb_put(skb, linear);
Herbert Xu33dccbb2009-02-05 21:25:32 -0800967 skb->data_len = len - linear;
968 skb->len += len - linear;
Rusty Russellf42157c2008-08-15 15:15:10 -0700969
970 return skb;
971}
972
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973/* Get packet from user space buffer */
Jason Wang54f968d2012-10-31 19:45:57 +0000974static ssize_t tun_get_user(struct tun_struct *tun, struct tun_file *tfile,
975 void *msg_control, const struct iovec *iv,
976 size_t total_len, size_t count, int noblock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977{
Harvey Harrison09640e62009-02-01 00:45:17 -0800978 struct tun_pi pi = { 0, cpu_to_be16(ETH_P_IP) };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979 struct sk_buff *skb;
Jason Wang3dd5c332013-07-10 13:43:27 +0800980 size_t len = total_len, align = NET_SKB_PAD, linear;
Rusty Russellf43798c2008-07-03 03:48:02 -0700981 struct virtio_net_hdr gso = { 0 };
Michael S. Tsirkin6f26c9a2009-04-20 01:26:11 +0000982 int offset = 0;
Michael S. Tsirkin06908992012-07-20 09:23:23 +0000983 int copylen;
984 bool zerocopy = false;
985 int err;
Eric Dumazet49974422012-12-12 19:22:57 +0000986 u32 rxhash;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987
988 if (!(tun->flags & TUN_NO_PI)) {
Dan Carpenter15718ea2013-08-15 15:52:57 +0300989 if (len < sizeof(pi))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990 return -EINVAL;
Dan Carpenter15718ea2013-08-15 15:52:57 +0300991 len -= sizeof(pi);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992
Michael S. Tsirkin6f26c9a2009-04-20 01:26:11 +0000993 if (memcpy_fromiovecend((void *)&pi, iv, 0, sizeof(pi)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994 return -EFAULT;
Michael S. Tsirkin6f26c9a2009-04-20 01:26:11 +0000995 offset += sizeof(pi);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996 }
997
Rusty Russellf43798c2008-07-03 03:48:02 -0700998 if (tun->flags & TUN_VNET_HDR) {
Dan Carpenter15718ea2013-08-15 15:52:57 +0300999 if (len < tun->vnet_hdr_sz)
Rusty Russellf43798c2008-07-03 03:48:02 -07001000 return -EINVAL;
Dan Carpenter15718ea2013-08-15 15:52:57 +03001001 len -= tun->vnet_hdr_sz;
Rusty Russellf43798c2008-07-03 03:48:02 -07001002
Michael S. Tsirkin6f26c9a2009-04-20 01:26:11 +00001003 if (memcpy_fromiovecend((void *)&gso, iv, offset, sizeof(gso)))
Rusty Russellf43798c2008-07-03 03:48:02 -07001004 return -EFAULT;
1005
Herbert Xu49091222009-06-08 00:20:01 -07001006 if ((gso.flags & VIRTIO_NET_HDR_F_NEEDS_CSUM) &&
1007 gso.csum_start + gso.csum_offset + 2 > gso.hdr_len)
1008 gso.hdr_len = gso.csum_start + gso.csum_offset + 2;
1009
Rusty Russellf43798c2008-07-03 03:48:02 -07001010 if (gso.hdr_len > len)
1011 return -EINVAL;
Michael S. Tsirkind9d52b52010-03-17 17:45:01 +02001012 offset += tun->vnet_hdr_sz;
Rusty Russellf43798c2008-07-03 03:48:02 -07001013 }
1014
Rusty Russelle01bf1c2008-04-12 18:49:30 -07001015 if ((tun->flags & TUN_TYPE_MASK) == TUN_TAP_DEV) {
stephen hemmingera504b862011-06-08 14:33:07 +00001016 align += NET_IP_ALIGN;
Herbert Xu0eca93b2009-04-14 02:09:43 -07001017 if (unlikely(len < ETH_HLEN ||
1018 (gso.hdr_len && gso.hdr_len < ETH_HLEN)))
Rusty Russelle01bf1c2008-04-12 18:49:30 -07001019 return -EINVAL;
1020 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001021
Jason Wang88529172013-07-18 10:55:15 +08001022 if (msg_control) {
1023 /* There are 256 bytes to be copied in skb, so there is
1024 * enough room for skb expand head in case it is used.
Michael S. Tsirkin06908992012-07-20 09:23:23 +00001025 * The rest of the buffer is mapped from userspace.
1026 */
Jason Wang88529172013-07-18 10:55:15 +08001027 copylen = gso.hdr_len ? gso.hdr_len : GOODCOPY_LEN;
Jason Wang3dd5c332013-07-10 13:43:27 +08001028 linear = copylen;
Jason Wang88529172013-07-18 10:55:15 +08001029 if (iov_pages(iv, offset + copylen, count) <= MAX_SKB_FRAGS)
1030 zerocopy = true;
1031 }
1032
1033 if (!zerocopy) {
Michael S. Tsirkin06908992012-07-20 09:23:23 +00001034 copylen = len;
Jason Wang3dd5c332013-07-10 13:43:27 +08001035 linear = gso.hdr_len;
1036 }
Michael S. Tsirkin06908992012-07-20 09:23:23 +00001037
Jason Wang3dd5c332013-07-10 13:43:27 +08001038 skb = tun_alloc_skb(tfile, align, copylen, linear, noblock);
Herbert Xu33dccbb2009-02-05 21:25:32 -08001039 if (IS_ERR(skb)) {
1040 if (PTR_ERR(skb) != -EAGAIN)
1041 tun->dev->stats.rx_dropped++;
1042 return PTR_ERR(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043 }
1044
Michael S. Tsirkin06908992012-07-20 09:23:23 +00001045 if (zerocopy)
1046 err = zerocopy_sg_from_iovec(skb, iv, offset, count);
Jason Wang88529172013-07-18 10:55:15 +08001047 else {
Michael S. Tsirkin06908992012-07-20 09:23:23 +00001048 err = skb_copy_datagram_from_iovec(skb, 0, iv, offset, len);
Jason Wang88529172013-07-18 10:55:15 +08001049 if (!err && msg_control) {
1050 struct ubuf_info *uarg = msg_control;
1051 uarg->callback(uarg, false);
1052 }
1053 }
Michael S. Tsirkin06908992012-07-20 09:23:23 +00001054
1055 if (err) {
Jeff Garzik09f75cd2007-10-03 17:41:50 -07001056 tun->dev->stats.rx_dropped++;
Dave Jones8f227572006-03-11 18:49:13 -08001057 kfree_skb(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058 return -EFAULT;
Dave Jones8f227572006-03-11 18:49:13 -08001059 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060
Rusty Russellf43798c2008-07-03 03:48:02 -07001061 if (gso.flags & VIRTIO_NET_HDR_F_NEEDS_CSUM) {
1062 if (!skb_partial_csum_set(skb, gso.csum_start,
1063 gso.csum_offset)) {
1064 tun->dev->stats.rx_frame_errors++;
1065 kfree_skb(skb);
1066 return -EINVAL;
1067 }
Michał Mirosław88255372011-04-19 06:13:10 +00001068 }
Rusty Russellf43798c2008-07-03 03:48:02 -07001069
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070 switch (tun->flags & TUN_TYPE_MASK) {
1071 case TUN_TUN_DEV:
Ang Way Chuangf09f7ee2008-06-17 21:10:33 -07001072 if (tun->flags & TUN_NO_PI) {
1073 switch (skb->data[0] & 0xf0) {
1074 case 0x40:
1075 pi.proto = htons(ETH_P_IP);
1076 break;
1077 case 0x60:
1078 pi.proto = htons(ETH_P_IPV6);
1079 break;
1080 default:
1081 tun->dev->stats.rx_dropped++;
1082 kfree_skb(skb);
1083 return -EINVAL;
1084 }
1085 }
1086
Arnaldo Carvalho de Melo459a98e2007-03-19 15:30:44 -07001087 skb_reset_mac_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088 skb->protocol = pi.proto;
Arnaldo Carvalho de Melo4c13eb62007-04-25 17:40:23 -07001089 skb->dev = tun->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090 break;
1091 case TUN_TAP_DEV:
1092 skb->protocol = eth_type_trans(skb, tun->dev);
1093 break;
Joe Perches6403eab2011-06-03 11:51:20 +00001094 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095
Rusty Russellf43798c2008-07-03 03:48:02 -07001096 if (gso.gso_type != VIRTIO_NET_HDR_GSO_NONE) {
1097 pr_debug("GSO!\n");
1098 switch (gso.gso_type & ~VIRTIO_NET_HDR_GSO_ECN) {
1099 case VIRTIO_NET_HDR_GSO_TCPV4:
Pravin B Shelarc9af6db2013-02-11 09:27:41 +00001100 skb_shinfo(skb)->gso_type = SKB_GSO_TCPV4;
Rusty Russellf43798c2008-07-03 03:48:02 -07001101 break;
1102 case VIRTIO_NET_HDR_GSO_TCPV6:
Pravin B Shelarc9af6db2013-02-11 09:27:41 +00001103 skb_shinfo(skb)->gso_type = SKB_GSO_TCPV6;
Rusty Russellf43798c2008-07-03 03:48:02 -07001104 break;
Sridhar Samudralae36aa252009-07-14 14:21:04 +00001105 case VIRTIO_NET_HDR_GSO_UDP:
Pravin B Shelarc9af6db2013-02-11 09:27:41 +00001106 skb_shinfo(skb)->gso_type = SKB_GSO_UDP;
Sridhar Samudralae36aa252009-07-14 14:21:04 +00001107 break;
Rusty Russellf43798c2008-07-03 03:48:02 -07001108 default:
1109 tun->dev->stats.rx_frame_errors++;
1110 kfree_skb(skb);
1111 return -EINVAL;
1112 }
1113
1114 if (gso.gso_type & VIRTIO_NET_HDR_GSO_ECN)
Pravin B Shelarc9af6db2013-02-11 09:27:41 +00001115 skb_shinfo(skb)->gso_type |= SKB_GSO_TCP_ECN;
Rusty Russellf43798c2008-07-03 03:48:02 -07001116
1117 skb_shinfo(skb)->gso_size = gso.gso_size;
1118 if (skb_shinfo(skb)->gso_size == 0) {
1119 tun->dev->stats.rx_frame_errors++;
1120 kfree_skb(skb);
1121 return -EINVAL;
1122 }
1123
1124 /* Header must be checked, and gso_segs computed. */
1125 skb_shinfo(skb)->gso_type |= SKB_GSO_DODGY;
1126 skb_shinfo(skb)->gso_segs = 0;
1127 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001128
Michael S. Tsirkin06908992012-07-20 09:23:23 +00001129 /* copy skb_ubuf_info for callback when skb has no error */
1130 if (zerocopy) {
1131 skb_shinfo(skb)->destructor_arg = msg_control;
1132 skb_shinfo(skb)->tx_flags |= SKBTX_DEV_ZEROCOPY;
Pravin B Shelarc9af6db2013-02-11 09:27:41 +00001133 skb_shinfo(skb)->tx_flags |= SKBTX_SHARED_FRAG;
Michael S. Tsirkin06908992012-07-20 09:23:23 +00001134 }
1135
Eric Dumazet76fe4582012-12-17 04:39:20 +00001136 skb_reset_network_header(skb);
Jason Wang40893fd2013-03-26 23:11:22 +00001137 skb_probe_transport_header(skb, 0);
Jason Wang38502af2013-03-25 20:19:56 +00001138
Eric Dumazet49974422012-12-12 19:22:57 +00001139 rxhash = skb_get_rxhash(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140 netif_rx_ni(skb);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001141
Jeff Garzik09f75cd2007-10-03 17:41:50 -07001142 tun->dev->stats.rx_packets++;
1143 tun->dev->stats.rx_bytes += len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144
Jason Wang9e857222013-01-28 01:05:19 +00001145 tun_flow_update(tun, rxhash, tfile);
Michael S. Tsirkin06908992012-07-20 09:23:23 +00001146 return total_len;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001147}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148
Badari Pulavartyee0b3e62006-09-30 23:28:47 -07001149static ssize_t tun_chr_aio_write(struct kiocb *iocb, const struct iovec *iv,
1150 unsigned long count, loff_t pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151{
Herbert Xu33dccbb2009-02-05 21:25:32 -08001152 struct file *file = iocb->ki_filp;
Herbert Xuab46d772009-02-14 20:46:39 -08001153 struct tun_struct *tun = tun_get(file);
Jason Wang54f968d2012-10-31 19:45:57 +00001154 struct tun_file *tfile = file->private_data;
Eric W. Biederman631ab462009-01-20 11:00:40 +00001155 ssize_t result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156
1157 if (!tun)
1158 return -EBADFD;
1159
Joe Perches6b8a66e2011-03-02 07:18:10 +00001160 tun_debug(KERN_INFO, tun, "tun_chr_write %ld\n", count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161
Jason Wang54f968d2012-10-31 19:45:57 +00001162 result = tun_get_user(tun, tfile, NULL, iv, iov_length(iv, count),
1163 count, file->f_flags & O_NONBLOCK);
Eric W. Biederman631ab462009-01-20 11:00:40 +00001164
1165 tun_put(tun);
1166 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167}
1168
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169/* Put packet to the user space buffer */
stephen hemminger6f7c1562011-06-08 14:33:08 +00001170static ssize_t tun_put_user(struct tun_struct *tun,
Jason Wang54f968d2012-10-31 19:45:57 +00001171 struct tun_file *tfile,
stephen hemminger6f7c1562011-06-08 14:33:08 +00001172 struct sk_buff *skb,
1173 const struct iovec *iv, int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174{
1175 struct tun_pi pi = { 0, skb->protocol };
1176 ssize_t total = 0;
Jason Wang6680ec62013-07-25 13:00:33 +08001177 int vlan_offset = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178
1179 if (!(tun->flags & TUN_NO_PI)) {
1180 if ((len -= sizeof(pi)) < 0)
1181 return -EINVAL;
1182
1183 if (len < skb->len) {
1184 /* Packet will be striped */
1185 pi.flags |= TUN_PKT_STRIP;
1186 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001187
Michael S. Tsirkin43b39dc2009-04-20 01:25:59 +00001188 if (memcpy_toiovecend(iv, (void *) &pi, 0, sizeof(pi)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189 return -EFAULT;
1190 total += sizeof(pi);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001191 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192
Rusty Russellf43798c2008-07-03 03:48:02 -07001193 if (tun->flags & TUN_VNET_HDR) {
1194 struct virtio_net_hdr gso = { 0 }; /* no info leak */
Michael S. Tsirkind9d52b52010-03-17 17:45:01 +02001195 if ((len -= tun->vnet_hdr_sz) < 0)
Rusty Russellf43798c2008-07-03 03:48:02 -07001196 return -EINVAL;
1197
1198 if (skb_is_gso(skb)) {
1199 struct skb_shared_info *sinfo = skb_shinfo(skb);
1200
1201 /* This is a hint as to how much should be linear. */
1202 gso.hdr_len = skb_headlen(skb);
1203 gso.gso_size = sinfo->gso_size;
1204 if (sinfo->gso_type & SKB_GSO_TCPV4)
1205 gso.gso_type = VIRTIO_NET_HDR_GSO_TCPV4;
1206 else if (sinfo->gso_type & SKB_GSO_TCPV6)
1207 gso.gso_type = VIRTIO_NET_HDR_GSO_TCPV6;
Sridhar Samudralae36aa252009-07-14 14:21:04 +00001208 else if (sinfo->gso_type & SKB_GSO_UDP)
1209 gso.gso_type = VIRTIO_NET_HDR_GSO_UDP;
Michael S. Tsirkinef3db4a2010-07-21 04:32:45 +00001210 else {
Joe Perches6b8a66e2011-03-02 07:18:10 +00001211 pr_err("unexpected GSO type: "
Michael S. Tsirkinef3db4a2010-07-21 04:32:45 +00001212 "0x%x, gso_size %d, hdr_len %d\n",
1213 sinfo->gso_type, gso.gso_size,
1214 gso.hdr_len);
1215 print_hex_dump(KERN_ERR, "tun: ",
1216 DUMP_PREFIX_NONE,
1217 16, 1, skb->head,
1218 min((int)gso.hdr_len, 64), true);
1219 WARN_ON_ONCE(1);
1220 return -EINVAL;
1221 }
Rusty Russellf43798c2008-07-03 03:48:02 -07001222 if (sinfo->gso_type & SKB_GSO_TCP_ECN)
1223 gso.gso_type |= VIRTIO_NET_HDR_GSO_ECN;
1224 } else
1225 gso.gso_type = VIRTIO_NET_HDR_GSO_NONE;
1226
1227 if (skb->ip_summed == CHECKSUM_PARTIAL) {
1228 gso.flags = VIRTIO_NET_HDR_F_NEEDS_CSUM;
Michał Mirosław55508d62010-12-14 15:24:08 +00001229 gso.csum_start = skb_checksum_start_offset(skb);
Rusty Russellf43798c2008-07-03 03:48:02 -07001230 gso.csum_offset = skb->csum_offset;
Jason Wang10a8d942011-06-10 00:56:17 +00001231 } else if (skb->ip_summed == CHECKSUM_UNNECESSARY) {
1232 gso.flags = VIRTIO_NET_HDR_F_DATA_VALID;
Rusty Russellf43798c2008-07-03 03:48:02 -07001233 } /* else everything is zero */
1234
Michael S. Tsirkin43b39dc2009-04-20 01:25:59 +00001235 if (unlikely(memcpy_toiovecend(iv, (void *)&gso, total,
1236 sizeof(gso))))
Rusty Russellf43798c2008-07-03 03:48:02 -07001237 return -EFAULT;
Michael S. Tsirkind9d52b52010-03-17 17:45:01 +02001238 total += tun->vnet_hdr_sz;
Rusty Russellf43798c2008-07-03 03:48:02 -07001239 }
1240
Jason Wang6680ec62013-07-25 13:00:33 +08001241 if (!vlan_tx_tag_present(skb)) {
1242 len = min_t(int, skb->len, len);
1243 } else {
1244 int copy, ret;
1245 struct {
1246 __be16 h_vlan_proto;
1247 __be16 h_vlan_TCI;
1248 } veth;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249
Jason Wang6680ec62013-07-25 13:00:33 +08001250 veth.h_vlan_proto = skb->vlan_proto;
1251 veth.h_vlan_TCI = htons(vlan_tx_tag_get(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252
Jason Wang6680ec62013-07-25 13:00:33 +08001253 vlan_offset = offsetof(struct vlan_ethhdr, h_vlan_proto);
1254 len = min_t(int, skb->len + VLAN_HLEN, len);
1255
1256 copy = min_t(int, vlan_offset, len);
1257 ret = skb_copy_datagram_const_iovec(skb, 0, iv, total, copy);
1258 len -= copy;
1259 total += copy;
1260 if (ret || !len)
1261 goto done;
1262
1263 copy = min_t(int, sizeof(veth), len);
1264 ret = memcpy_toiovecend(iv, (void *)&veth, total, copy);
1265 len -= copy;
1266 total += copy;
1267 if (ret || !len)
1268 goto done;
1269 }
1270
1271 skb_copy_datagram_const_iovec(skb, vlan_offset, iv, total, len);
1272 total += len;
1273
1274done:
Jeff Garzik09f75cd2007-10-03 17:41:50 -07001275 tun->dev->stats.tx_packets++;
1276 tun->dev->stats.tx_bytes += len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277
1278 return total;
1279}
1280
Jason Wang54f968d2012-10-31 19:45:57 +00001281static ssize_t tun_do_read(struct tun_struct *tun, struct tun_file *tfile,
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00001282 struct kiocb *iocb, const struct iovec *iv,
1283 ssize_t len, int noblock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001284{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285 DECLARE_WAITQUEUE(wait, current);
1286 struct sk_buff *skb;
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00001287 ssize_t ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288
Rami Rosen3872baf2012-11-25 22:07:41 +00001289 tun_debug(KERN_INFO, tun, "tun_do_read\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290
Amos Kong61a5ff12011-06-09 00:27:10 -07001291 if (unlikely(!noblock))
Jason Wang54f968d2012-10-31 19:45:57 +00001292 add_wait_queue(&tfile->wq.wait, &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293 while (len) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294 current->state = TASK_INTERRUPTIBLE;
1295
1296 /* Read frames from the queue */
Jason Wang54f968d2012-10-31 19:45:57 +00001297 if (!(skb = skb_dequeue(&tfile->socket.sk->sk_receive_queue))) {
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00001298 if (noblock) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299 ret = -EAGAIN;
1300 break;
1301 }
1302 if (signal_pending(current)) {
1303 ret = -ERESTARTSYS;
1304 break;
1305 }
Eric W. Biedermanc70f1822009-01-20 11:07:17 +00001306 if (tun->dev->reg_state != NETREG_REGISTERED) {
1307 ret = -EIO;
1308 break;
1309 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310
1311 /* Nothing to read, let's sleep */
1312 schedule();
1313 continue;
1314 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315
Jason Wang54f968d2012-10-31 19:45:57 +00001316 ret = tun_put_user(tun, tfile, skb, iv, len);
Max Krasnyanskyf271b2c2008-07-14 22:18:19 -07001317 kfree_skb(skb);
1318 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001319 }
1320
1321 current->state = TASK_RUNNING;
Amos Kong61a5ff12011-06-09 00:27:10 -07001322 if (unlikely(!noblock))
Jason Wang54f968d2012-10-31 19:45:57 +00001323 remove_wait_queue(&tfile->wq.wait, &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001324
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00001325 return ret;
1326}
1327
1328static ssize_t tun_chr_aio_read(struct kiocb *iocb, const struct iovec *iv,
1329 unsigned long count, loff_t pos)
1330{
1331 struct file *file = iocb->ki_filp;
1332 struct tun_file *tfile = file->private_data;
1333 struct tun_struct *tun = __tun_get(tfile);
1334 ssize_t len, ret;
1335
1336 if (!tun)
1337 return -EBADFD;
1338 len = iov_length(iv, count);
1339 if (len < 0) {
1340 ret = -EINVAL;
1341 goto out;
1342 }
1343
Jason Wang54f968d2012-10-31 19:45:57 +00001344 ret = tun_do_read(tun, tfile, iocb, iv, len,
1345 file->f_flags & O_NONBLOCK);
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00001346 ret = min_t(ssize_t, ret, len);
Eric W. Biederman631ab462009-01-20 11:00:40 +00001347out:
1348 tun_put(tun);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001349 return ret;
1350}
1351
Jason Wang96442e422012-10-31 19:46:02 +00001352static void tun_free_netdev(struct net_device *dev)
1353{
1354 struct tun_struct *tun = netdev_priv(dev);
1355
Jason Wang4008e972012-12-13 23:53:30 +00001356 BUG_ON(!(list_empty(&tun->disabled)));
Jason Wang96442e422012-10-31 19:46:02 +00001357 tun_flow_uninit(tun);
Paul Moore5dbbaf22013-01-14 07:12:19 +00001358 security_tun_dev_free_security(tun->security);
Jason Wang96442e422012-10-31 19:46:02 +00001359 free_netdev(dev);
1360}
1361
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362static void tun_setup(struct net_device *dev)
1363{
1364 struct tun_struct *tun = netdev_priv(dev);
1365
Eric W. Biederman0625c882012-02-07 16:48:55 -08001366 tun->owner = INVALID_UID;
1367 tun->group = INVALID_GID;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368
Linus Torvalds1da177e2005-04-16 15:20:36 -07001369 dev->ethtool_ops = &tun_ethtool_ops;
Jason Wang96442e422012-10-31 19:46:02 +00001370 dev->destructor = tun_free_netdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371}
1372
Eric W. Biedermanf019a7a2009-01-21 16:02:16 -08001373/* Trivial set of netlink ops to allow deleting tun or tap
1374 * device with netlink.
1375 */
1376static int tun_validate(struct nlattr *tb[], struct nlattr *data[])
1377{
1378 return -EINVAL;
1379}
1380
1381static struct rtnl_link_ops tun_link_ops __read_mostly = {
1382 .kind = DRV_NAME,
1383 .priv_size = sizeof(struct tun_struct),
1384 .setup = tun_setup,
1385 .validate = tun_validate,
1386};
1387
Herbert Xu33dccbb2009-02-05 21:25:32 -08001388static void tun_sock_write_space(struct sock *sk)
1389{
Jason Wang54f968d2012-10-31 19:45:57 +00001390 struct tun_file *tfile;
Eric Dumazet43815482010-04-29 11:01:49 +00001391 wait_queue_head_t *wqueue;
Herbert Xu33dccbb2009-02-05 21:25:32 -08001392
1393 if (!sock_writeable(sk))
1394 return;
1395
Herbert Xu33dccbb2009-02-05 21:25:32 -08001396 if (!test_and_clear_bit(SOCK_ASYNC_NOSPACE, &sk->sk_socket->flags))
1397 return;
1398
Eric Dumazet43815482010-04-29 11:01:49 +00001399 wqueue = sk_sleep(sk);
1400 if (wqueue && waitqueue_active(wqueue))
1401 wake_up_interruptible_sync_poll(wqueue, POLLOUT |
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00001402 POLLWRNORM | POLLWRBAND);
Herbert Xuc722c622009-06-03 21:45:55 -07001403
Jason Wang54f968d2012-10-31 19:45:57 +00001404 tfile = container_of(sk, struct tun_file, sk);
1405 kill_fasync(&tfile->fasync, SIGIO, POLL_OUT);
Herbert Xu33dccbb2009-02-05 21:25:32 -08001406}
1407
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00001408static int tun_sendmsg(struct kiocb *iocb, struct socket *sock,
1409 struct msghdr *m, size_t total_len)
1410{
Jason Wang54f968d2012-10-31 19:45:57 +00001411 int ret;
1412 struct tun_file *tfile = container_of(sock, struct tun_file, socket);
1413 struct tun_struct *tun = __tun_get(tfile);
1414
1415 if (!tun)
1416 return -EBADFD;
Jason Wang54f968d2012-10-31 19:45:57 +00001417 ret = tun_get_user(tun, tfile, m->msg_control, m->msg_iov, total_len,
1418 m->msg_iovlen, m->msg_flags & MSG_DONTWAIT);
1419 tun_put(tun);
1420 return ret;
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00001421}
1422
1423static int tun_recvmsg(struct kiocb *iocb, struct socket *sock,
1424 struct msghdr *m, size_t total_len,
1425 int flags)
1426{
Jason Wang54f968d2012-10-31 19:45:57 +00001427 struct tun_file *tfile = container_of(sock, struct tun_file, socket);
1428 struct tun_struct *tun = __tun_get(tfile);
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00001429 int ret;
Jason Wang54f968d2012-10-31 19:45:57 +00001430
1431 if (!tun)
1432 return -EBADFD;
1433
Richard Cochraneda29772013-07-19 19:40:10 +02001434 if (flags & ~(MSG_DONTWAIT|MSG_TRUNC|MSG_ERRQUEUE)) {
Gao feng3811ae72013-04-24 21:59:23 +00001435 ret = -EINVAL;
1436 goto out;
1437 }
Richard Cochraneda29772013-07-19 19:40:10 +02001438 if (flags & MSG_ERRQUEUE) {
1439 ret = sock_recv_errqueue(sock->sk, m, total_len,
1440 SOL_PACKET, TUN_TX_TIMESTAMP);
1441 goto out;
1442 }
Jason Wang54f968d2012-10-31 19:45:57 +00001443 ret = tun_do_read(tun, tfile, iocb, m->msg_iov, total_len,
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00001444 flags & MSG_DONTWAIT);
1445 if (ret > total_len) {
1446 m->msg_flags |= MSG_TRUNC;
1447 ret = flags & MSG_TRUNC ? ret : total_len;
1448 }
Gao feng3811ae72013-04-24 21:59:23 +00001449out:
Jason Wang54f968d2012-10-31 19:45:57 +00001450 tun_put(tun);
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00001451 return ret;
1452}
1453
Stanislav Kinsbursky1ab5ecb2012-03-12 02:59:41 +00001454static int tun_release(struct socket *sock)
1455{
1456 if (sock->sk)
1457 sock_put(sock->sk);
1458 return 0;
1459}
1460
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00001461/* Ops structure to mimic raw sockets with tun */
1462static const struct proto_ops tun_socket_ops = {
1463 .sendmsg = tun_sendmsg,
1464 .recvmsg = tun_recvmsg,
Stanislav Kinsbursky1ab5ecb2012-03-12 02:59:41 +00001465 .release = tun_release,
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00001466};
1467
Herbert Xu33dccbb2009-02-05 21:25:32 -08001468static struct proto tun_proto = {
1469 .name = "tun",
1470 .owner = THIS_MODULE,
Jason Wang54f968d2012-10-31 19:45:57 +00001471 .obj_size = sizeof(struct tun_file),
Herbert Xu33dccbb2009-02-05 21:25:32 -08001472};
Eric W. Biedermanf019a7a2009-01-21 16:02:16 -08001473
David Woodhouse980c9e82009-05-09 22:54:21 -07001474static int tun_flags(struct tun_struct *tun)
1475{
1476 int flags = 0;
1477
1478 if (tun->flags & TUN_TUN_DEV)
1479 flags |= IFF_TUN;
1480 else
1481 flags |= IFF_TAP;
1482
1483 if (tun->flags & TUN_NO_PI)
1484 flags |= IFF_NO_PI;
1485
Michael S. Tsirkin5d097102012-12-03 10:07:14 +00001486 /* This flag has no real effect. We track the value for backwards
1487 * compatibility.
1488 */
David Woodhouse980c9e82009-05-09 22:54:21 -07001489 if (tun->flags & TUN_ONE_QUEUE)
1490 flags |= IFF_ONE_QUEUE;
1491
1492 if (tun->flags & TUN_VNET_HDR)
1493 flags |= IFF_VNET_HDR;
1494
Jason Wangc8d68e62012-10-31 19:46:00 +00001495 if (tun->flags & TUN_TAP_MQ)
1496 flags |= IFF_MULTI_QUEUE;
1497
Pavel Emelyanov274038f2013-06-11 14:41:24 +04001498 if (tun->flags & TUN_PERSIST)
1499 flags |= IFF_PERSIST;
1500
David Woodhouse980c9e82009-05-09 22:54:21 -07001501 return flags;
1502}
1503
1504static ssize_t tun_show_flags(struct device *dev, struct device_attribute *attr,
1505 char *buf)
1506{
1507 struct tun_struct *tun = netdev_priv(to_net_dev(dev));
1508 return sprintf(buf, "0x%x\n", tun_flags(tun));
1509}
1510
1511static ssize_t tun_show_owner(struct device *dev, struct device_attribute *attr,
1512 char *buf)
1513{
1514 struct tun_struct *tun = netdev_priv(to_net_dev(dev));
Eric W. Biederman0625c882012-02-07 16:48:55 -08001515 return uid_valid(tun->owner)?
1516 sprintf(buf, "%u\n",
1517 from_kuid_munged(current_user_ns(), tun->owner)):
1518 sprintf(buf, "-1\n");
David Woodhouse980c9e82009-05-09 22:54:21 -07001519}
1520
1521static ssize_t tun_show_group(struct device *dev, struct device_attribute *attr,
1522 char *buf)
1523{
1524 struct tun_struct *tun = netdev_priv(to_net_dev(dev));
Eric W. Biederman0625c882012-02-07 16:48:55 -08001525 return gid_valid(tun->group) ?
1526 sprintf(buf, "%u\n",
1527 from_kgid_munged(current_user_ns(), tun->group)):
1528 sprintf(buf, "-1\n");
David Woodhouse980c9e82009-05-09 22:54:21 -07001529}
1530
1531static DEVICE_ATTR(tun_flags, 0444, tun_show_flags, NULL);
1532static DEVICE_ATTR(owner, 0444, tun_show_owner, NULL);
1533static DEVICE_ATTR(group, 0444, tun_show_group, NULL);
1534
Pavel Emelyanovd647a592008-04-16 00:41:16 -07001535static int tun_set_iff(struct net *net, struct file *file, struct ifreq *ifr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001536{
1537 struct tun_struct *tun;
Jason Wang54f968d2012-10-31 19:45:57 +00001538 struct tun_file *tfile = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001539 struct net_device *dev;
1540 int err;
1541
Jason Wang7c0c3b12013-01-11 16:59:33 +00001542 if (tfile->detached)
1543 return -EINVAL;
1544
Eric W. Biederman74a3e5a2009-01-20 10:56:20 +00001545 dev = __dev_get_by_name(net, ifr->ifr_name);
1546 if (dev) {
David Woodhousef85ba782009-04-27 03:23:54 -07001547 if (ifr->ifr_flags & IFF_TUN_EXCL)
1548 return -EBUSY;
Eric W. Biederman74a3e5a2009-01-20 10:56:20 +00001549 if ((ifr->ifr_flags & IFF_TUN) && dev->netdev_ops == &tun_netdev_ops)
1550 tun = netdev_priv(dev);
1551 else if ((ifr->ifr_flags & IFF_TAP) && dev->netdev_ops == &tap_netdev_ops)
1552 tun = netdev_priv(dev);
1553 else
1554 return -EINVAL;
1555
Jason Wang8e6d91a2013-05-28 18:32:11 +00001556 if (!!(ifr->ifr_flags & IFF_MULTI_QUEUE) !=
1557 !!(tun->flags & TUN_TAP_MQ))
1558 return -EINVAL;
1559
Jason Wangcde8b152012-10-31 19:46:01 +00001560 if (tun_not_capable(tun))
Paul Moore2b980db2009-08-28 18:12:43 -04001561 return -EPERM;
Paul Moore5dbbaf22013-01-14 07:12:19 +00001562 err = security_tun_dev_open(tun->security);
Paul Moore2b980db2009-08-28 18:12:43 -04001563 if (err < 0)
1564 return err;
1565
Pavel Emelyanov849c9b62013-08-21 14:32:21 +04001566 err = tun_attach(tun, file, ifr->ifr_flags & IFF_NOFILTER);
Eric W. Biedermana7385ba2009-01-20 10:57:48 +00001567 if (err < 0)
1568 return err;
Jason Wang4008e972012-12-13 23:53:30 +00001569
1570 if (tun->flags & TUN_TAP_MQ &&
Jason Wange8dbad62013-04-22 20:40:39 +00001571 (tun->numqueues + tun->numdisabled > 1)) {
1572 /* One or more queue has already been attached, no need
1573 * to initialize the device again.
1574 */
1575 return 0;
1576 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001577 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001578 else {
1579 char *name;
1580 unsigned long flags = 0;
Jason Wangedfb6a12013-01-23 03:59:12 +00001581 int queues = ifr->ifr_flags & IFF_MULTI_QUEUE ?
1582 MAX_TAP_QUEUES : 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001583
Eric W. Biedermanc260b772012-11-18 21:34:11 +00001584 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
David Woodhouseca6bb5d2006-06-22 16:07:52 -07001585 return -EPERM;
Paul Moore2b980db2009-08-28 18:12:43 -04001586 err = security_tun_dev_create();
1587 if (err < 0)
1588 return err;
David Woodhouseca6bb5d2006-06-22 16:07:52 -07001589
Linus Torvalds1da177e2005-04-16 15:20:36 -07001590 /* Set dev type */
1591 if (ifr->ifr_flags & IFF_TUN) {
1592 /* TUN device */
1593 flags |= TUN_TUN_DEV;
1594 name = "tun%d";
1595 } else if (ifr->ifr_flags & IFF_TAP) {
1596 /* TAP device */
1597 flags |= TUN_TAP_DEV;
1598 name = "tap%d";
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001599 } else
Kusanagi Kouichi36989b92009-09-16 21:36:13 +00001600 return -EINVAL;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001601
Linus Torvalds1da177e2005-04-16 15:20:36 -07001602 if (*ifr->ifr_name)
1603 name = ifr->ifr_name;
1604
Jason Wangc8d68e62012-10-31 19:46:00 +00001605 dev = alloc_netdev_mqs(sizeof(struct tun_struct), name,
Jason Wangedfb6a12013-01-23 03:59:12 +00001606 tun_setup, queues, queues);
1607
Linus Torvalds1da177e2005-04-16 15:20:36 -07001608 if (!dev)
1609 return -ENOMEM;
1610
Pavel Emelyanovfc54c652008-04-16 00:41:53 -07001611 dev_net_set(dev, net);
Eric W. Biedermanf019a7a2009-01-21 16:02:16 -08001612 dev->rtnl_link_ops = &tun_link_ops;
Pavel Emelyanovfb7589a2013-08-21 14:31:38 +04001613 dev->ifindex = tfile->ifindex;
Stephen Hemminger758e43b2008-11-19 22:10:37 -08001614
Linus Torvalds1da177e2005-04-16 15:20:36 -07001615 tun = netdev_priv(dev);
1616 tun->dev = dev;
1617 tun->flags = flags;
Max Krasnyanskyf271b2c2008-07-14 22:18:19 -07001618 tun->txflt.count = 0;
Michael S. Tsirkind9d52b52010-03-17 17:45:01 +02001619 tun->vnet_hdr_sz = sizeof(struct virtio_net_hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001620
Jason Wang54f968d2012-10-31 19:45:57 +00001621 tun->filter_attached = false;
1622 tun->sndbuf = tfile->socket.sk->sk_sndbuf;
Herbert Xu33dccbb2009-02-05 21:25:32 -08001623
Jason Wang96442e422012-10-31 19:46:02 +00001624 spin_lock_init(&tun->lock);
1625
Paul Moore5dbbaf22013-01-14 07:12:19 +00001626 err = security_tun_dev_alloc_security(&tun->security);
1627 if (err < 0)
1628 goto err_free_dev;
Paul Moore2b980db2009-08-28 18:12:43 -04001629
Linus Torvalds1da177e2005-04-16 15:20:36 -07001630 tun_net_init(dev);
Pavel Emelyanov944a1372013-06-11 17:01:08 +04001631 tun_flow_init(tun);
Jason Wang96442e422012-10-31 19:46:02 +00001632
Michał Mirosław88255372011-04-19 06:13:10 +00001633 dev->hw_features = NETIF_F_SG | NETIF_F_FRAGLIST |
Jason Wang6680ec62013-07-25 13:00:33 +08001634 TUN_USER_FEATURES | NETIF_F_HW_VLAN_CTAG_TX |
1635 NETIF_F_HW_VLAN_STAG_TX;
Michał Mirosław88255372011-04-19 06:13:10 +00001636 dev->features = dev->hw_features;
Jason Wangc0317992013-04-10 23:32:22 +00001637 dev->vlan_features = dev->features;
Michał Mirosław88255372011-04-19 06:13:10 +00001638
Jason Wang4008e972012-12-13 23:53:30 +00001639 INIT_LIST_HEAD(&tun->disabled);
Pavel Emelyanov849c9b62013-08-21 14:32:21 +04001640 err = tun_attach(tun, file, false);
Jason Wangeb0fb362012-12-02 17:19:45 +00001641 if (err < 0)
1642 goto err_free_dev;
1643
Linus Torvalds1da177e2005-04-16 15:20:36 -07001644 err = register_netdevice(tun->dev);
1645 if (err < 0)
Jason Wang54f968d2012-10-31 19:45:57 +00001646 goto err_free_dev;
Herbert Xu9c3fea62009-04-18 14:15:52 +00001647
David Woodhouse980c9e82009-05-09 22:54:21 -07001648 if (device_create_file(&tun->dev->dev, &dev_attr_tun_flags) ||
1649 device_create_file(&tun->dev->dev, &dev_attr_owner) ||
1650 device_create_file(&tun->dev->dev, &dev_attr_group))
Joe Perches6b8a66e2011-03-02 07:18:10 +00001651 pr_err("Failed to create tun sysfs files\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001652 }
1653
Michael S. Tsirkinaf668b32013-01-28 00:38:02 +00001654 netif_carrier_on(tun->dev);
1655
Joe Perches6b8a66e2011-03-02 07:18:10 +00001656 tun_debug(KERN_INFO, tun, "tun_set_iff\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001657
1658 if (ifr->ifr_flags & IFF_NO_PI)
1659 tun->flags |= TUN_NO_PI;
Nathaniel Filardoa26af1e2008-02-05 03:05:07 -08001660 else
1661 tun->flags &= ~TUN_NO_PI;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001662
Michael S. Tsirkin5d097102012-12-03 10:07:14 +00001663 /* This flag has no real effect. We track the value for backwards
1664 * compatibility.
1665 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001666 if (ifr->ifr_flags & IFF_ONE_QUEUE)
1667 tun->flags |= TUN_ONE_QUEUE;
Nathaniel Filardoa26af1e2008-02-05 03:05:07 -08001668 else
1669 tun->flags &= ~TUN_ONE_QUEUE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001670
Rusty Russellf43798c2008-07-03 03:48:02 -07001671 if (ifr->ifr_flags & IFF_VNET_HDR)
1672 tun->flags |= TUN_VNET_HDR;
1673 else
1674 tun->flags &= ~TUN_VNET_HDR;
1675
Jason Wangc8d68e62012-10-31 19:46:00 +00001676 if (ifr->ifr_flags & IFF_MULTI_QUEUE)
1677 tun->flags |= TUN_TAP_MQ;
1678 else
1679 tun->flags &= ~TUN_TAP_MQ;
1680
Max Krasnyanskye35259a2008-07-10 16:59:11 -07001681 /* Make sure persistent devices do not get stuck in
1682 * xoff state.
1683 */
1684 if (netif_running(tun->dev))
Jason Wangc8d68e62012-10-31 19:46:00 +00001685 netif_tx_wake_all_queues(tun->dev);
Max Krasnyanskye35259a2008-07-10 16:59:11 -07001686
Linus Torvalds1da177e2005-04-16 15:20:36 -07001687 strcpy(ifr->ifr_name, tun->dev->name);
1688 return 0;
1689
1690 err_free_dev:
1691 free_netdev(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001692 return err;
1693}
1694
Rami Rosen9ce99cf2012-11-23 03:58:10 +00001695static void tun_get_iff(struct net *net, struct tun_struct *tun,
Herbert Xu876bfd42009-08-06 14:22:44 +00001696 struct ifreq *ifr)
Mark McLoughline3b99552008-08-15 15:09:56 -07001697{
Joe Perches6b8a66e2011-03-02 07:18:10 +00001698 tun_debug(KERN_INFO, tun, "tun_get_iff\n");
Mark McLoughline3b99552008-08-15 15:09:56 -07001699
1700 strcpy(ifr->ifr_name, tun->dev->name);
1701
David Woodhouse980c9e82009-05-09 22:54:21 -07001702 ifr->ifr_flags = tun_flags(tun);
Mark McLoughline3b99552008-08-15 15:09:56 -07001703
Mark McLoughline3b99552008-08-15 15:09:56 -07001704}
1705
Rusty Russell5228ddc2008-07-03 03:46:16 -07001706/* This is like a cut-down ethtool ops, except done via tun fd so no
1707 * privs required. */
Michał Mirosław88255372011-04-19 06:13:10 +00001708static int set_offload(struct tun_struct *tun, unsigned long arg)
Rusty Russell5228ddc2008-07-03 03:46:16 -07001709{
Michał Mirosławc8f44af2011-11-15 15:29:55 +00001710 netdev_features_t features = 0;
Rusty Russell5228ddc2008-07-03 03:46:16 -07001711
1712 if (arg & TUN_F_CSUM) {
Michał Mirosław88255372011-04-19 06:13:10 +00001713 features |= NETIF_F_HW_CSUM;
Rusty Russell5228ddc2008-07-03 03:46:16 -07001714 arg &= ~TUN_F_CSUM;
1715
1716 if (arg & (TUN_F_TSO4|TUN_F_TSO6)) {
1717 if (arg & TUN_F_TSO_ECN) {
1718 features |= NETIF_F_TSO_ECN;
1719 arg &= ~TUN_F_TSO_ECN;
1720 }
1721 if (arg & TUN_F_TSO4)
1722 features |= NETIF_F_TSO;
1723 if (arg & TUN_F_TSO6)
1724 features |= NETIF_F_TSO6;
1725 arg &= ~(TUN_F_TSO4|TUN_F_TSO6);
1726 }
Sridhar Samudralae36aa252009-07-14 14:21:04 +00001727
1728 if (arg & TUN_F_UFO) {
1729 features |= NETIF_F_UFO;
1730 arg &= ~TUN_F_UFO;
1731 }
Rusty Russell5228ddc2008-07-03 03:46:16 -07001732 }
1733
1734 /* This gives the user a way to test for new features in future by
1735 * trying to set them. */
1736 if (arg)
1737 return -EINVAL;
1738
Michał Mirosław88255372011-04-19 06:13:10 +00001739 tun->set_features = features;
1740 netdev_update_features(tun->dev);
Rusty Russell5228ddc2008-07-03 03:46:16 -07001741
1742 return 0;
1743}
1744
Jason Wangc8d68e62012-10-31 19:46:00 +00001745static void tun_detach_filter(struct tun_struct *tun, int n)
1746{
1747 int i;
1748 struct tun_file *tfile;
1749
1750 for (i = 0; i < n; i++) {
Jason Wangb8deabd2013-01-11 16:59:32 +00001751 tfile = rtnl_dereference(tun->tfiles[i]);
Jason Wangc8d68e62012-10-31 19:46:00 +00001752 sk_detach_filter(tfile->socket.sk);
1753 }
1754
1755 tun->filter_attached = false;
1756}
1757
1758static int tun_attach_filter(struct tun_struct *tun)
1759{
1760 int i, ret = 0;
1761 struct tun_file *tfile;
1762
1763 for (i = 0; i < tun->numqueues; i++) {
Jason Wangb8deabd2013-01-11 16:59:32 +00001764 tfile = rtnl_dereference(tun->tfiles[i]);
Jason Wangc8d68e62012-10-31 19:46:00 +00001765 ret = sk_attach_filter(&tun->fprog, tfile->socket.sk);
1766 if (ret) {
1767 tun_detach_filter(tun, i);
1768 return ret;
1769 }
1770 }
1771
1772 tun->filter_attached = true;
1773 return ret;
1774}
1775
1776static void tun_set_sndbuf(struct tun_struct *tun)
1777{
1778 struct tun_file *tfile;
1779 int i;
1780
1781 for (i = 0; i < tun->numqueues; i++) {
Jason Wangb8deabd2013-01-11 16:59:32 +00001782 tfile = rtnl_dereference(tun->tfiles[i]);
Jason Wangc8d68e62012-10-31 19:46:00 +00001783 tfile->socket.sk->sk_sndbuf = tun->sndbuf;
1784 }
1785}
1786
Jason Wangcde8b152012-10-31 19:46:01 +00001787static int tun_set_queue(struct file *file, struct ifreq *ifr)
1788{
1789 struct tun_file *tfile = file->private_data;
1790 struct tun_struct *tun;
Jason Wangcde8b152012-10-31 19:46:01 +00001791 int ret = 0;
1792
1793 rtnl_lock();
1794
1795 if (ifr->ifr_flags & IFF_ATTACH_QUEUE) {
Jason Wang4008e972012-12-13 23:53:30 +00001796 tun = tfile->detached;
Paul Moore5dbbaf22013-01-14 07:12:19 +00001797 if (!tun) {
Jason Wangcde8b152012-10-31 19:46:01 +00001798 ret = -EINVAL;
Paul Moore5dbbaf22013-01-14 07:12:19 +00001799 goto unlock;
1800 }
1801 ret = security_tun_dev_attach_queue(tun->security);
1802 if (ret < 0)
1803 goto unlock;
Pavel Emelyanov849c9b62013-08-21 14:32:21 +04001804 ret = tun_attach(tun, file, false);
Jason Wang4008e972012-12-13 23:53:30 +00001805 } else if (ifr->ifr_flags & IFF_DETACH_QUEUE) {
Jason Wangb8deabd2013-01-11 16:59:32 +00001806 tun = rtnl_dereference(tfile->tun);
Jason Wang9e857222013-01-28 01:05:19 +00001807 if (!tun || !(tun->flags & TUN_TAP_MQ) || tfile->detached)
Jason Wang4008e972012-12-13 23:53:30 +00001808 ret = -EINVAL;
1809 else
1810 __tun_detach(tfile, false);
1811 } else
Jason Wangcde8b152012-10-31 19:46:01 +00001812 ret = -EINVAL;
1813
Paul Moore5dbbaf22013-01-14 07:12:19 +00001814unlock:
Jason Wangcde8b152012-10-31 19:46:01 +00001815 rtnl_unlock();
1816 return ret;
1817}
1818
Arnd Bergmann50857e22009-11-06 22:52:32 -08001819static long __tun_chr_ioctl(struct file *file, unsigned int cmd,
1820 unsigned long arg, int ifreq_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001821{
Eric W. Biederman36b50ba2009-01-20 11:01:48 +00001822 struct tun_file *tfile = file->private_data;
Eric W. Biederman631ab462009-01-20 11:00:40 +00001823 struct tun_struct *tun;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001824 void __user* argp = (void __user*)arg;
1825 struct ifreq ifr;
Eric W. Biederman0625c882012-02-07 16:48:55 -08001826 kuid_t owner;
1827 kgid_t group;
Herbert Xu33dccbb2009-02-05 21:25:32 -08001828 int sndbuf;
Michael S. Tsirkind9d52b52010-03-17 17:45:01 +02001829 int vnet_hdr_sz;
Pavel Emelyanovfb7589a2013-08-21 14:31:38 +04001830 unsigned int ifindex;
Max Krasnyanskyf271b2c2008-07-14 22:18:19 -07001831 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001832
Jason Wangcde8b152012-10-31 19:46:01 +00001833 if (cmd == TUNSETIFF || cmd == TUNSETQUEUE || _IOC_TYPE(cmd) == 0x89) {
Arnd Bergmann50857e22009-11-06 22:52:32 -08001834 if (copy_from_user(&ifr, argp, ifreq_len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001835 return -EFAULT;
David S. Miller8bbb1812012-07-30 14:52:48 -07001836 } else {
Mathias Krausea117dac2012-07-29 19:45:14 +00001837 memset(&ifr, 0, sizeof(ifr));
David S. Miller8bbb1812012-07-30 14:52:48 -07001838 }
Eric W. Biederman631ab462009-01-20 11:00:40 +00001839 if (cmd == TUNGETFEATURES) {
1840 /* Currently this just means: "what IFF flags are valid?".
1841 * This is needed because we never checked for invalid flags on
1842 * TUNSETIFF. */
1843 return put_user(IFF_TUN | IFF_TAP | IFF_NO_PI | IFF_ONE_QUEUE |
Jason Wangcde8b152012-10-31 19:46:01 +00001844 IFF_VNET_HDR | IFF_MULTI_QUEUE,
Eric W. Biederman631ab462009-01-20 11:00:40 +00001845 (unsigned int __user*)argp);
Jason Wangcde8b152012-10-31 19:46:01 +00001846 } else if (cmd == TUNSETQUEUE)
1847 return tun_set_queue(file, &ifr);
Eric W. Biederman631ab462009-01-20 11:00:40 +00001848
Jason Wangc8d68e62012-10-31 19:46:00 +00001849 ret = 0;
Herbert Xu876bfd42009-08-06 14:22:44 +00001850 rtnl_lock();
1851
Eric W. Biederman36b50ba2009-01-20 11:01:48 +00001852 tun = __tun_get(tfile);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001853 if (cmd == TUNSETIFF && !tun) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001854 ifr.ifr_name[IFNAMSIZ-1] = '\0';
1855
Herbert Xu876bfd42009-08-06 14:22:44 +00001856 ret = tun_set_iff(tfile->net, file, &ifr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001857
Herbert Xu876bfd42009-08-06 14:22:44 +00001858 if (ret)
1859 goto unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001860
Arnd Bergmann50857e22009-11-06 22:52:32 -08001861 if (copy_to_user(argp, &ifr, ifreq_len))
Herbert Xu876bfd42009-08-06 14:22:44 +00001862 ret = -EFAULT;
1863 goto unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001864 }
Pavel Emelyanovfb7589a2013-08-21 14:31:38 +04001865 if (cmd == TUNSETIFINDEX) {
1866 ret = -EPERM;
1867 if (tun)
1868 goto unlock;
1869
1870 ret = -EFAULT;
1871 if (copy_from_user(&ifindex, argp, sizeof(ifindex)))
1872 goto unlock;
1873
1874 ret = 0;
1875 tfile->ifindex = ifindex;
1876 goto unlock;
1877 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001878
Herbert Xu876bfd42009-08-06 14:22:44 +00001879 ret = -EBADFD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001880 if (!tun)
Herbert Xu876bfd42009-08-06 14:22:44 +00001881 goto unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001882
Jason Wang1e588332012-10-31 19:45:56 +00001883 tun_debug(KERN_INFO, tun, "tun_chr_ioctl cmd %u\n", cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001884
Eric W. Biederman631ab462009-01-20 11:00:40 +00001885 ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001886 switch (cmd) {
Mark McLoughline3b99552008-08-15 15:09:56 -07001887 case TUNGETIFF:
Rami Rosen9ce99cf2012-11-23 03:58:10 +00001888 tun_get_iff(current->nsproxy->net_ns, tun, &ifr);
Mark McLoughline3b99552008-08-15 15:09:56 -07001889
Pavel Emelyanov3d407a82013-08-21 14:32:00 +04001890 if (tfile->detached)
1891 ifr.ifr_flags |= IFF_DETACH_QUEUE;
Pavel Emelyanov849c9b62013-08-21 14:32:21 +04001892 if (!tfile->socket.sk->sk_filter)
1893 ifr.ifr_flags |= IFF_NOFILTER;
Pavel Emelyanov3d407a82013-08-21 14:32:00 +04001894
Arnd Bergmann50857e22009-11-06 22:52:32 -08001895 if (copy_to_user(argp, &ifr, ifreq_len))
Eric W. Biederman631ab462009-01-20 11:00:40 +00001896 ret = -EFAULT;
Mark McLoughline3b99552008-08-15 15:09:56 -07001897 break;
1898
Linus Torvalds1da177e2005-04-16 15:20:36 -07001899 case TUNSETNOCSUM:
1900 /* Disable/Enable checksum */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001901
Michał Mirosław88255372011-04-19 06:13:10 +00001902 /* [unimplemented] */
1903 tun_debug(KERN_INFO, tun, "ignored: set checksum %s\n",
Joe Perches6b8a66e2011-03-02 07:18:10 +00001904 arg ? "disabled" : "enabled");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001905 break;
1906
1907 case TUNSETPERSIST:
Jason Wang54f968d2012-10-31 19:45:57 +00001908 /* Disable/Enable persist mode. Keep an extra reference to the
1909 * module to prevent the module being unprobed.
1910 */
Jason Wangdd38bd82013-01-11 16:59:34 +00001911 if (arg && !(tun->flags & TUN_PERSIST)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001912 tun->flags |= TUN_PERSIST;
Jason Wang54f968d2012-10-31 19:45:57 +00001913 __module_get(THIS_MODULE);
Jason Wangdd38bd82013-01-11 16:59:34 +00001914 }
1915 if (!arg && (tun->flags & TUN_PERSIST)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001916 tun->flags &= ~TUN_PERSIST;
Jason Wang54f968d2012-10-31 19:45:57 +00001917 module_put(THIS_MODULE);
1918 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001919
Joe Perches6b8a66e2011-03-02 07:18:10 +00001920 tun_debug(KERN_INFO, tun, "persist %s\n",
1921 arg ? "enabled" : "disabled");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001922 break;
1923
1924 case TUNSETOWNER:
1925 /* Set owner of the device */
Eric W. Biederman0625c882012-02-07 16:48:55 -08001926 owner = make_kuid(current_user_ns(), arg);
1927 if (!uid_valid(owner)) {
1928 ret = -EINVAL;
1929 break;
1930 }
1931 tun->owner = owner;
Jason Wang1e588332012-10-31 19:45:56 +00001932 tun_debug(KERN_INFO, tun, "owner set to %u\n",
Eric W. Biederman0625c882012-02-07 16:48:55 -08001933 from_kuid(&init_user_ns, tun->owner));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001934 break;
1935
Guido Guenther8c644622007-07-02 22:50:25 -07001936 case TUNSETGROUP:
1937 /* Set group of the device */
Eric W. Biederman0625c882012-02-07 16:48:55 -08001938 group = make_kgid(current_user_ns(), arg);
1939 if (!gid_valid(group)) {
1940 ret = -EINVAL;
1941 break;
1942 }
1943 tun->group = group;
Jason Wang1e588332012-10-31 19:45:56 +00001944 tun_debug(KERN_INFO, tun, "group set to %u\n",
Eric W. Biederman0625c882012-02-07 16:48:55 -08001945 from_kgid(&init_user_ns, tun->group));
Guido Guenther8c644622007-07-02 22:50:25 -07001946 break;
1947
Mike Kershawff4cc3a2005-09-01 17:40:05 -07001948 case TUNSETLINK:
1949 /* Only allow setting the type when the interface is down */
1950 if (tun->dev->flags & IFF_UP) {
Joe Perches6b8a66e2011-03-02 07:18:10 +00001951 tun_debug(KERN_INFO, tun,
1952 "Linktype set failed because interface is up\n");
David S. Miller48abfe02008-04-23 19:37:58 -07001953 ret = -EBUSY;
Mike Kershawff4cc3a2005-09-01 17:40:05 -07001954 } else {
1955 tun->dev->type = (int) arg;
Joe Perches6b8a66e2011-03-02 07:18:10 +00001956 tun_debug(KERN_INFO, tun, "linktype set to %d\n",
1957 tun->dev->type);
David S. Miller48abfe02008-04-23 19:37:58 -07001958 ret = 0;
Mike Kershawff4cc3a2005-09-01 17:40:05 -07001959 }
Eric W. Biederman631ab462009-01-20 11:00:40 +00001960 break;
Mike Kershawff4cc3a2005-09-01 17:40:05 -07001961
Linus Torvalds1da177e2005-04-16 15:20:36 -07001962#ifdef TUN_DEBUG
1963 case TUNSETDEBUG:
1964 tun->debug = arg;
1965 break;
1966#endif
Rusty Russell5228ddc2008-07-03 03:46:16 -07001967 case TUNSETOFFLOAD:
Michał Mirosław88255372011-04-19 06:13:10 +00001968 ret = set_offload(tun, arg);
Eric W. Biederman631ab462009-01-20 11:00:40 +00001969 break;
Rusty Russell5228ddc2008-07-03 03:46:16 -07001970
Max Krasnyanskyf271b2c2008-07-14 22:18:19 -07001971 case TUNSETTXFILTER:
1972 /* Can be set only for TAPs */
Eric W. Biederman631ab462009-01-20 11:00:40 +00001973 ret = -EINVAL;
Max Krasnyanskyf271b2c2008-07-14 22:18:19 -07001974 if ((tun->flags & TUN_TYPE_MASK) != TUN_TAP_DEV)
Eric W. Biederman631ab462009-01-20 11:00:40 +00001975 break;
Harvey Harrisonc0e5a8c2008-07-16 12:45:34 -07001976 ret = update_filter(&tun->txflt, (void __user *)arg);
Eric W. Biederman631ab462009-01-20 11:00:40 +00001977 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001978
1979 case SIOCGIFHWADDR:
Uwe Kleine-Königb5950762010-11-01 15:38:34 -04001980 /* Get hw address */
Max Krasnyanskyf271b2c2008-07-14 22:18:19 -07001981 memcpy(ifr.ifr_hwaddr.sa_data, tun->dev->dev_addr, ETH_ALEN);
1982 ifr.ifr_hwaddr.sa_family = tun->dev->type;
Arnd Bergmann50857e22009-11-06 22:52:32 -08001983 if (copy_to_user(argp, &ifr, ifreq_len))
Eric W. Biederman631ab462009-01-20 11:00:40 +00001984 ret = -EFAULT;
1985 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001986
1987 case SIOCSIFHWADDR:
Max Krasnyanskyf271b2c2008-07-14 22:18:19 -07001988 /* Set hw address */
Joe Perches6b8a66e2011-03-02 07:18:10 +00001989 tun_debug(KERN_DEBUG, tun, "set hw address: %pM\n",
1990 ifr.ifr_hwaddr.sa_data);
Kim B. Heino40102372008-02-29 12:26:21 -08001991
Kim B. Heino40102372008-02-29 12:26:21 -08001992 ret = dev_set_mac_address(tun->dev, &ifr.ifr_hwaddr);
Eric W. Biederman631ab462009-01-20 11:00:40 +00001993 break;
Herbert Xu33dccbb2009-02-05 21:25:32 -08001994
1995 case TUNGETSNDBUF:
Jason Wang54f968d2012-10-31 19:45:57 +00001996 sndbuf = tfile->socket.sk->sk_sndbuf;
Herbert Xu33dccbb2009-02-05 21:25:32 -08001997 if (copy_to_user(argp, &sndbuf, sizeof(sndbuf)))
1998 ret = -EFAULT;
1999 break;
2000
2001 case TUNSETSNDBUF:
2002 if (copy_from_user(&sndbuf, argp, sizeof(sndbuf))) {
2003 ret = -EFAULT;
2004 break;
2005 }
2006
Jason Wangc8d68e62012-10-31 19:46:00 +00002007 tun->sndbuf = sndbuf;
2008 tun_set_sndbuf(tun);
Herbert Xu33dccbb2009-02-05 21:25:32 -08002009 break;
2010
Michael S. Tsirkind9d52b52010-03-17 17:45:01 +02002011 case TUNGETVNETHDRSZ:
2012 vnet_hdr_sz = tun->vnet_hdr_sz;
2013 if (copy_to_user(argp, &vnet_hdr_sz, sizeof(vnet_hdr_sz)))
2014 ret = -EFAULT;
2015 break;
2016
2017 case TUNSETVNETHDRSZ:
2018 if (copy_from_user(&vnet_hdr_sz, argp, sizeof(vnet_hdr_sz))) {
2019 ret = -EFAULT;
2020 break;
2021 }
2022 if (vnet_hdr_sz < (int)sizeof(struct virtio_net_hdr)) {
2023 ret = -EINVAL;
2024 break;
2025 }
2026
2027 tun->vnet_hdr_sz = vnet_hdr_sz;
2028 break;
2029
Michael S. Tsirkin99405162010-02-14 01:01:10 +00002030 case TUNATTACHFILTER:
2031 /* Can be set only for TAPs */
2032 ret = -EINVAL;
2033 if ((tun->flags & TUN_TYPE_MASK) != TUN_TAP_DEV)
2034 break;
2035 ret = -EFAULT;
Jason Wang54f968d2012-10-31 19:45:57 +00002036 if (copy_from_user(&tun->fprog, argp, sizeof(tun->fprog)))
Michael S. Tsirkin99405162010-02-14 01:01:10 +00002037 break;
2038
Jason Wangc8d68e62012-10-31 19:46:00 +00002039 ret = tun_attach_filter(tun);
Michael S. Tsirkin99405162010-02-14 01:01:10 +00002040 break;
2041
2042 case TUNDETACHFILTER:
2043 /* Can be set only for TAPs */
2044 ret = -EINVAL;
2045 if ((tun->flags & TUN_TYPE_MASK) != TUN_TAP_DEV)
2046 break;
Jason Wangc8d68e62012-10-31 19:46:00 +00002047 ret = 0;
2048 tun_detach_filter(tun, tun->numqueues);
Michael S. Tsirkin99405162010-02-14 01:01:10 +00002049 break;
2050
Pavel Emelyanov76975e92013-08-21 14:32:39 +04002051 case TUNGETFILTER:
2052 ret = -EINVAL;
2053 if ((tun->flags & TUN_TYPE_MASK) != TUN_TAP_DEV)
2054 break;
2055 ret = -EFAULT;
2056 if (copy_to_user(argp, &tun->fprog, sizeof(tun->fprog)))
2057 break;
2058 ret = 0;
2059 break;
2060
Linus Torvalds1da177e2005-04-16 15:20:36 -07002061 default:
Eric W. Biederman631ab462009-01-20 11:00:40 +00002062 ret = -EINVAL;
2063 break;
Joe Perchesee289b62010-05-17 22:47:34 -07002064 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002065
Herbert Xu876bfd42009-08-06 14:22:44 +00002066unlock:
2067 rtnl_unlock();
2068 if (tun)
2069 tun_put(tun);
Eric W. Biederman631ab462009-01-20 11:00:40 +00002070 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002071}
2072
Arnd Bergmann50857e22009-11-06 22:52:32 -08002073static long tun_chr_ioctl(struct file *file,
2074 unsigned int cmd, unsigned long arg)
2075{
2076 return __tun_chr_ioctl(file, cmd, arg, sizeof (struct ifreq));
2077}
2078
2079#ifdef CONFIG_COMPAT
2080static long tun_chr_compat_ioctl(struct file *file,
2081 unsigned int cmd, unsigned long arg)
2082{
2083 switch (cmd) {
2084 case TUNSETIFF:
2085 case TUNGETIFF:
2086 case TUNSETTXFILTER:
2087 case TUNGETSNDBUF:
2088 case TUNSETSNDBUF:
2089 case SIOCGIFHWADDR:
2090 case SIOCSIFHWADDR:
2091 arg = (unsigned long)compat_ptr(arg);
2092 break;
2093 default:
2094 arg = (compat_ulong_t)arg;
2095 break;
2096 }
2097
2098 /*
2099 * compat_ifreq is shorter than ifreq, so we must not access beyond
2100 * the end of that structure. All fields that are used in this
2101 * driver are compatible though, we don't need to convert the
2102 * contents.
2103 */
2104 return __tun_chr_ioctl(file, cmd, arg, sizeof(struct compat_ifreq));
2105}
2106#endif /* CONFIG_COMPAT */
2107
Linus Torvalds1da177e2005-04-16 15:20:36 -07002108static int tun_chr_fasync(int fd, struct file *file, int on)
2109{
Jason Wang54f968d2012-10-31 19:45:57 +00002110 struct tun_file *tfile = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002111 int ret;
2112
Jason Wang54f968d2012-10-31 19:45:57 +00002113 if ((ret = fasync_helper(fd, file, on, &tfile->fasync)) < 0)
Jonathan Corbet9d319522008-06-19 15:50:37 -06002114 goto out;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002115
Linus Torvalds1da177e2005-04-16 15:20:36 -07002116 if (on) {
Eric W. Biederman609d7fa2006-10-02 02:17:15 -07002117 ret = __f_setown(file, task_pid(current), PIDTYPE_PID, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002118 if (ret)
Jonathan Corbet9d319522008-06-19 15:50:37 -06002119 goto out;
Jason Wang54f968d2012-10-31 19:45:57 +00002120 tfile->flags |= TUN_FASYNC;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002121 } else
Jason Wang54f968d2012-10-31 19:45:57 +00002122 tfile->flags &= ~TUN_FASYNC;
Jonathan Corbet9d319522008-06-19 15:50:37 -06002123 ret = 0;
2124out:
Jonathan Corbet9d319522008-06-19 15:50:37 -06002125 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002126}
2127
2128static int tun_chr_open(struct inode *inode, struct file * file)
2129{
Eric W. Biederman631ab462009-01-20 11:00:40 +00002130 struct tun_file *tfile;
Thomas Gleixnerdeed49f2009-10-14 01:19:46 -07002131
Joe Perches6b8a66e2011-03-02 07:18:10 +00002132 DBG1(KERN_INFO, "tunX: tun_chr_open\n");
Eric W. Biederman631ab462009-01-20 11:00:40 +00002133
Jason Wang54f968d2012-10-31 19:45:57 +00002134 tfile = (struct tun_file *)sk_alloc(&init_net, AF_UNSPEC, GFP_KERNEL,
2135 &tun_proto);
Eric W. Biederman631ab462009-01-20 11:00:40 +00002136 if (!tfile)
2137 return -ENOMEM;
Jason Wang6e914fc2012-10-31 19:45:58 +00002138 rcu_assign_pointer(tfile->tun, NULL);
Eric W. Biederman36b50ba2009-01-20 11:01:48 +00002139 tfile->net = get_net(current->nsproxy->net_ns);
Jason Wang54f968d2012-10-31 19:45:57 +00002140 tfile->flags = 0;
Pavel Emelyanovfb7589a2013-08-21 14:31:38 +04002141 tfile->ifindex = 0;
Jason Wang54f968d2012-10-31 19:45:57 +00002142
2143 rcu_assign_pointer(tfile->socket.wq, &tfile->wq);
2144 init_waitqueue_head(&tfile->wq.wait);
2145
2146 tfile->socket.file = file;
2147 tfile->socket.ops = &tun_socket_ops;
2148
2149 sock_init_data(&tfile->socket, &tfile->sk);
2150 sk_change_net(&tfile->sk, tfile->net);
2151
2152 tfile->sk.sk_write_space = tun_sock_write_space;
2153 tfile->sk.sk_sndbuf = INT_MAX;
2154
Eric W. Biederman631ab462009-01-20 11:00:40 +00002155 file->private_data = tfile;
Jason Wang54f968d2012-10-31 19:45:57 +00002156 set_bit(SOCK_EXTERNALLY_ALLOCATED, &tfile->socket.flags);
Jason Wang4008e972012-12-13 23:53:30 +00002157 INIT_LIST_HEAD(&tfile->next);
Jason Wang54f968d2012-10-31 19:45:57 +00002158
Jason Wang19a6afb2013-06-08 14:17:41 +08002159 sock_set_flag(&tfile->sk, SOCK_ZEROCOPY);
2160
Linus Torvalds1da177e2005-04-16 15:20:36 -07002161 return 0;
2162}
2163
2164static int tun_chr_close(struct inode *inode, struct file *file)
2165{
Eric W. Biederman631ab462009-01-20 11:00:40 +00002166 struct tun_file *tfile = file->private_data;
Jason Wang54f968d2012-10-31 19:45:57 +00002167 struct net *net = tfile->net;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002168
Jason Wangc8d68e62012-10-31 19:46:00 +00002169 tun_detach(tfile, true);
Jason Wang54f968d2012-10-31 19:45:57 +00002170 put_net(net);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002171
2172 return 0;
2173}
2174
Arjan van de Vend54b1fd2007-02-12 00:55:34 -08002175static const struct file_operations tun_fops = {
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002176 .owner = THIS_MODULE,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002177 .llseek = no_llseek,
Badari Pulavartyee0b3e62006-09-30 23:28:47 -07002178 .read = do_sync_read,
2179 .aio_read = tun_chr_aio_read,
2180 .write = do_sync_write,
2181 .aio_write = tun_chr_aio_write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002182 .poll = tun_chr_poll,
Arnd Bergmann50857e22009-11-06 22:52:32 -08002183 .unlocked_ioctl = tun_chr_ioctl,
2184#ifdef CONFIG_COMPAT
2185 .compat_ioctl = tun_chr_compat_ioctl,
2186#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002187 .open = tun_chr_open,
2188 .release = tun_chr_close,
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002189 .fasync = tun_chr_fasync
Linus Torvalds1da177e2005-04-16 15:20:36 -07002190};
2191
2192static struct miscdevice tun_miscdev = {
2193 .minor = TUN_MINOR,
2194 .name = "tun",
Kay Sieverse454cea2009-09-18 23:01:12 +02002195 .nodename = "net/tun",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002196 .fops = &tun_fops,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002197};
2198
2199/* ethtool interface */
2200
2201static int tun_get_settings(struct net_device *dev, struct ethtool_cmd *cmd)
2202{
2203 cmd->supported = 0;
2204 cmd->advertising = 0;
David Decotigny70739492011-04-27 18:32:40 +00002205 ethtool_cmd_speed_set(cmd, SPEED_10);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002206 cmd->duplex = DUPLEX_FULL;
2207 cmd->port = PORT_TP;
2208 cmd->phy_address = 0;
2209 cmd->transceiver = XCVR_INTERNAL;
2210 cmd->autoneg = AUTONEG_DISABLE;
2211 cmd->maxtxpkt = 0;
2212 cmd->maxrxpkt = 0;
2213 return 0;
2214}
2215
2216static void tun_get_drvinfo(struct net_device *dev, struct ethtool_drvinfo *info)
2217{
2218 struct tun_struct *tun = netdev_priv(dev);
2219
Rick Jones33a5ba12011-11-15 14:59:53 +00002220 strlcpy(info->driver, DRV_NAME, sizeof(info->driver));
2221 strlcpy(info->version, DRV_VERSION, sizeof(info->version));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002222
2223 switch (tun->flags & TUN_TYPE_MASK) {
2224 case TUN_TUN_DEV:
Rick Jones33a5ba12011-11-15 14:59:53 +00002225 strlcpy(info->bus_info, "tun", sizeof(info->bus_info));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002226 break;
2227 case TUN_TAP_DEV:
Rick Jones33a5ba12011-11-15 14:59:53 +00002228 strlcpy(info->bus_info, "tap", sizeof(info->bus_info));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002229 break;
2230 }
2231}
2232
2233static u32 tun_get_msglevel(struct net_device *dev)
2234{
2235#ifdef TUN_DEBUG
2236 struct tun_struct *tun = netdev_priv(dev);
2237 return tun->debug;
2238#else
2239 return -EOPNOTSUPP;
2240#endif
2241}
2242
2243static void tun_set_msglevel(struct net_device *dev, u32 value)
2244{
2245#ifdef TUN_DEBUG
2246 struct tun_struct *tun = netdev_priv(dev);
2247 tun->debug = value;
2248#endif
2249}
2250
Jeff Garzik7282d492006-09-13 14:30:00 -04002251static const struct ethtool_ops tun_ethtool_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002252 .get_settings = tun_get_settings,
2253 .get_drvinfo = tun_get_drvinfo,
2254 .get_msglevel = tun_get_msglevel,
2255 .set_msglevel = tun_set_msglevel,
Nolan Leakebee31362010-07-27 13:53:43 +00002256 .get_link = ethtool_op_get_link,
Richard Cochraneda29772013-07-19 19:40:10 +02002257 .get_ts_info = ethtool_op_get_ts_info,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002258};
2259
Pavel Emelyanov79d17602008-04-16 00:40:46 -07002260
Linus Torvalds1da177e2005-04-16 15:20:36 -07002261static int __init tun_init(void)
2262{
2263 int ret = 0;
2264
Joe Perches6b8a66e2011-03-02 07:18:10 +00002265 pr_info("%s, %s\n", DRV_DESCRIPTION, DRV_VERSION);
2266 pr_info("%s\n", DRV_COPYRIGHT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002267
Eric W. Biedermanf019a7a2009-01-21 16:02:16 -08002268 ret = rtnl_link_register(&tun_link_ops);
Pavel Emelyanov79d17602008-04-16 00:40:46 -07002269 if (ret) {
Joe Perches6b8a66e2011-03-02 07:18:10 +00002270 pr_err("Can't register link_ops\n");
Eric W. Biedermanf019a7a2009-01-21 16:02:16 -08002271 goto err_linkops;
Pavel Emelyanov79d17602008-04-16 00:40:46 -07002272 }
2273
Linus Torvalds1da177e2005-04-16 15:20:36 -07002274 ret = misc_register(&tun_miscdev);
Pavel Emelyanov79d17602008-04-16 00:40:46 -07002275 if (ret) {
Joe Perches6b8a66e2011-03-02 07:18:10 +00002276 pr_err("Can't register misc device %d\n", TUN_MINOR);
Pavel Emelyanov79d17602008-04-16 00:40:46 -07002277 goto err_misc;
2278 }
Eric W. Biedermanf019a7a2009-01-21 16:02:16 -08002279 return 0;
Pavel Emelyanov79d17602008-04-16 00:40:46 -07002280err_misc:
Eric W. Biedermanf019a7a2009-01-21 16:02:16 -08002281 rtnl_link_unregister(&tun_link_ops);
2282err_linkops:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002283 return ret;
2284}
2285
2286static void tun_cleanup(void)
2287{
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002288 misc_deregister(&tun_miscdev);
Eric W. Biedermanf019a7a2009-01-21 16:02:16 -08002289 rtnl_link_unregister(&tun_link_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002290}
2291
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00002292/* Get an underlying socket object from tun file. Returns error unless file is
2293 * attached to a device. The returned object works like a packet socket, it
2294 * can be used for sock_sendmsg/sock_recvmsg. The caller is responsible for
2295 * holding a reference to the file for as long as the socket is in use. */
2296struct socket *tun_get_socket(struct file *file)
2297{
Jason Wang6e914fc2012-10-31 19:45:58 +00002298 struct tun_file *tfile;
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00002299 if (file->f_op != &tun_fops)
2300 return ERR_PTR(-EINVAL);
Jason Wang6e914fc2012-10-31 19:45:58 +00002301 tfile = file->private_data;
2302 if (!tfile)
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00002303 return ERR_PTR(-EBADFD);
Jason Wang54f968d2012-10-31 19:45:57 +00002304 return &tfile->socket;
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00002305}
2306EXPORT_SYMBOL_GPL(tun_get_socket);
2307
Linus Torvalds1da177e2005-04-16 15:20:36 -07002308module_init(tun_init);
2309module_exit(tun_cleanup);
2310MODULE_DESCRIPTION(DRV_DESCRIPTION);
2311MODULE_AUTHOR(DRV_COPYRIGHT);
2312MODULE_LICENSE("GPL");
2313MODULE_ALIAS_MISCDEV(TUN_MINOR);
Kay Sievers578454f2010-05-20 18:07:20 +02002314MODULE_ALIAS("devname:net/tun");