blob: 5ac2877a89c35e6de65dfb1f2cb962de9ae303a9 [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
stephen hemminger92d4ea62013-12-05 20:42:58 -0800113/* DEFAULT_MAX_NUM_RSS_QUEUES were chosen to let the rx/tx queues allocated for
Jason Wangedfb6a12013-01-23 03:59:12 +0000114 * 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
stephen hemminger92d4ea62013-12-05 20:42:58 -0800122 * also contains all socket related structures (except sock_fprog and tap_filter)
Jason Wang54f968d2012-10-31 19:45:57 +0000123 * 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
stephen hemminger92d4ea62013-12-05 20:42:58 -0800345 * we do not check rxq no. is because some cards(e.g 82599), chooses
Jason Wangc8d68e62012-10-31 19:46:00 +0000346 * 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
stephen hemminger92d4ea62013-12-05 20:42:58 -0800534 /* Re-attach the filter to persist 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
Jason Wang7bf66302013-09-05 17:54:00 +0800752 if (unlikely(skb_orphan_frags(skb, GFP_ATOMIC)))
753 goto drop;
754
Richard Cochraneda29772013-07-19 19:40:10 +0200755 if (skb->sk) {
756 sock_tx_timestamp(skb->sk, &skb_shinfo(skb)->tx_flags);
757 sw_tx_timestamp(skb);
758 }
759
Michael S. Tsirkin0110d6f2010-04-13 04:59:44 +0000760 /* Orphan the skb - required as we might hang on to it
Jason Wang7bf66302013-09-05 17:54:00 +0800761 * for indefinite time.
762 */
Michael S. Tsirkin0110d6f2010-04-13 04:59:44 +0000763 skb_orphan(skb);
764
Eric Dumazetf8af75f2013-03-06 11:02:37 +0000765 nf_reset(skb);
766
Max Krasnyanskyf271b2c2008-07-14 22:18:19 -0700767 /* Enqueue packet */
Jason Wang54f968d2012-10-31 19:45:57 +0000768 skb_queue_tail(&tfile->socket.sk->sk_receive_queue, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769
770 /* Notify and wake up reader process */
Jason Wang54f968d2012-10-31 19:45:57 +0000771 if (tfile->flags & TUN_FASYNC)
772 kill_fasync(&tfile->fasync, SIGIO, POLL_IN);
773 wake_up_interruptible_poll(&tfile->wq.wait, POLLIN |
Michael S. Tsirkin05c28282010-01-14 06:17:09 +0000774 POLLRDNORM | POLLRDBAND);
Jason Wang6e914fc2012-10-31 19:45:58 +0000775
776 rcu_read_unlock();
Patrick McHardy6ed10652009-06-23 06:03:08 +0000777 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778
779drop:
Jeff Garzik09f75cd2007-10-03 17:41:50 -0700780 dev->stats.tx_dropped++;
Michael S. Tsirkin149d36f2012-11-01 09:16:32 +0000781 skb_tx_error(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782 kfree_skb(skb);
Jason Wang6e914fc2012-10-31 19:45:58 +0000783 rcu_read_unlock();
Patrick McHardy6ed10652009-06-23 06:03:08 +0000784 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785}
786
Max Krasnyanskyf271b2c2008-07-14 22:18:19 -0700787static void tun_net_mclist(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788{
Max Krasnyanskyf271b2c2008-07-14 22:18:19 -0700789 /*
790 * This callback is supposed to deal with mc filter in
791 * _rx_ path and has nothing to do with the _tx_ path.
792 * In rx path we always accept everything userspace gives us.
793 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794}
795
Ed Swierk4885a502007-09-16 12:21:38 -0700796#define MIN_MTU 68
797#define MAX_MTU 65535
798
799static int
800tun_net_change_mtu(struct net_device *dev, int new_mtu)
801{
802 if (new_mtu < MIN_MTU || new_mtu + dev->hard_header_len > MAX_MTU)
803 return -EINVAL;
804 dev->mtu = new_mtu;
805 return 0;
806}
807
Michał Mirosławc8f44af2011-11-15 15:29:55 +0000808static netdev_features_t tun_net_fix_features(struct net_device *dev,
809 netdev_features_t features)
Michał Mirosław88255372011-04-19 06:13:10 +0000810{
811 struct tun_struct *tun = netdev_priv(dev);
812
813 return (features & tun->set_features) | (features & ~TUN_USER_FEATURES);
814}
Neil Hormanbebd0972011-06-15 05:25:01 +0000815#ifdef CONFIG_NET_POLL_CONTROLLER
816static void tun_poll_controller(struct net_device *dev)
817{
818 /*
819 * Tun only receives frames when:
820 * 1) the char device endpoint gets data from user space
821 * 2) the tun socket gets a sendmsg call from user space
stephen hemminger92d4ea62013-12-05 20:42:58 -0800822 * Since both of those are synchronous operations, we are guaranteed
Neil Hormanbebd0972011-06-15 05:25:01 +0000823 * never to have pending data when we poll for it
stephen hemminger92d4ea62013-12-05 20:42:58 -0800824 * so there is nothing to do here but return.
Neil Hormanbebd0972011-06-15 05:25:01 +0000825 * We need this though so netpoll recognizes us as an interface that
826 * supports polling, which enables bridge devices in virt setups to
827 * still use netconsole
828 */
829 return;
830}
831#endif
Stephen Hemminger758e43b2008-11-19 22:10:37 -0800832static const struct net_device_ops tun_netdev_ops = {
Eric W. Biedermanc70f1822009-01-20 11:07:17 +0000833 .ndo_uninit = tun_net_uninit,
Stephen Hemminger758e43b2008-11-19 22:10:37 -0800834 .ndo_open = tun_net_open,
835 .ndo_stop = tun_net_close,
Stephen Hemminger00829822008-11-20 20:14:53 -0800836 .ndo_start_xmit = tun_net_xmit,
Stephen Hemminger758e43b2008-11-19 22:10:37 -0800837 .ndo_change_mtu = tun_net_change_mtu,
Michał Mirosław88255372011-04-19 06:13:10 +0000838 .ndo_fix_features = tun_net_fix_features,
Jason Wangc8d68e62012-10-31 19:46:00 +0000839 .ndo_select_queue = tun_select_queue,
Neil Hormanbebd0972011-06-15 05:25:01 +0000840#ifdef CONFIG_NET_POLL_CONTROLLER
841 .ndo_poll_controller = tun_poll_controller,
842#endif
Stephen Hemminger758e43b2008-11-19 22:10:37 -0800843};
844
845static const struct net_device_ops tap_netdev_ops = {
Eric W. Biedermanc70f1822009-01-20 11:07:17 +0000846 .ndo_uninit = tun_net_uninit,
Stephen Hemminger758e43b2008-11-19 22:10:37 -0800847 .ndo_open = tun_net_open,
848 .ndo_stop = tun_net_close,
Stephen Hemminger00829822008-11-20 20:14:53 -0800849 .ndo_start_xmit = tun_net_xmit,
Stephen Hemminger758e43b2008-11-19 22:10:37 -0800850 .ndo_change_mtu = tun_net_change_mtu,
Michał Mirosław88255372011-04-19 06:13:10 +0000851 .ndo_fix_features = tun_net_fix_features,
Jiri Pirkoafc4b132011-08-16 06:29:01 +0000852 .ndo_set_rx_mode = tun_net_mclist,
Stephen Hemminger758e43b2008-11-19 22:10:37 -0800853 .ndo_set_mac_address = eth_mac_addr,
854 .ndo_validate_addr = eth_validate_addr,
Jason Wangc8d68e62012-10-31 19:46:00 +0000855 .ndo_select_queue = tun_select_queue,
Neil Hormanbebd0972011-06-15 05:25:01 +0000856#ifdef CONFIG_NET_POLL_CONTROLLER
857 .ndo_poll_controller = tun_poll_controller,
858#endif
Stephen Hemminger758e43b2008-11-19 22:10:37 -0800859};
860
Pavel Emelyanov944a1372013-06-11 17:01:08 +0400861static void tun_flow_init(struct tun_struct *tun)
Jason Wang96442e422012-10-31 19:46:02 +0000862{
863 int i;
864
Jason Wang96442e422012-10-31 19:46:02 +0000865 for (i = 0; i < TUN_NUM_FLOW_ENTRIES; i++)
866 INIT_HLIST_HEAD(&tun->flows[i]);
867
868 tun->ageing_time = TUN_FLOW_EXPIRE;
869 setup_timer(&tun->flow_gc_timer, tun_flow_cleanup, (unsigned long)tun);
870 mod_timer(&tun->flow_gc_timer,
871 round_jiffies_up(jiffies + tun->ageing_time));
Jason Wang96442e422012-10-31 19:46:02 +0000872}
873
874static void tun_flow_uninit(struct tun_struct *tun)
875{
876 del_timer_sync(&tun->flow_gc_timer);
877 tun_flow_flush(tun);
Jason Wang96442e422012-10-31 19:46:02 +0000878}
879
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880/* Initialize net device. */
881static void tun_net_init(struct net_device *dev)
882{
883 struct tun_struct *tun = netdev_priv(dev);
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400884
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885 switch (tun->flags & TUN_TYPE_MASK) {
886 case TUN_TUN_DEV:
Stephen Hemminger758e43b2008-11-19 22:10:37 -0800887 dev->netdev_ops = &tun_netdev_ops;
888
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889 /* Point-to-Point TUN Device */
890 dev->hard_header_len = 0;
891 dev->addr_len = 0;
892 dev->mtu = 1500;
893
894 /* Zero header length */
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400895 dev->type = ARPHRD_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896 dev->flags = IFF_POINTOPOINT | IFF_NOARP | IFF_MULTICAST;
897 dev->tx_queue_len = TUN_READQ_SIZE; /* We prefer our own queue length */
898 break;
899
900 case TUN_TAP_DEV:
Kusanagi Kouichi7a0a9602008-12-29 18:23:28 -0800901 dev->netdev_ops = &tap_netdev_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902 /* Ethernet TAP Device */
Max Krasnyanskyf271b2c2008-07-14 22:18:19 -0700903 ether_setup(dev);
Neil Horman550fd082011-07-26 06:05:38 +0000904 dev->priv_flags &= ~IFF_TX_SKB_SHARING;
stephen hemmingera6768472012-12-10 15:16:00 +0000905 dev->priv_flags |= IFF_LIVE_ADDR_CHANGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906
Danny Kukawkaf2cedb62012-02-15 06:45:39 +0000907 eth_hw_addr_random(dev);
Brian Braunstein36226a82007-04-26 01:00:55 -0700908
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909 dev->tx_queue_len = TUN_READQ_SIZE; /* We prefer our own queue length */
910 break;
911 }
912}
913
914/* Character device part */
915
916/* Poll */
Jason Wangc8d68e62012-10-31 19:46:00 +0000917static unsigned int tun_chr_poll(struct file *file, poll_table *wait)
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400918{
Eric W. Biedermanb2430de2009-01-20 11:03:21 +0000919 struct tun_file *tfile = file->private_data;
920 struct tun_struct *tun = __tun_get(tfile);
Mariusz Kozlowski3c8a9c62009-07-05 19:48:35 +0000921 struct sock *sk;
Herbert Xu33dccbb2009-02-05 21:25:32 -0800922 unsigned int mask = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923
924 if (!tun)
Eric W. Biedermaneac9e902009-01-20 10:59:05 +0000925 return POLLERR;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926
Jason Wang54f968d2012-10-31 19:45:57 +0000927 sk = tfile->socket.sk;
Mariusz Kozlowski3c8a9c62009-07-05 19:48:35 +0000928
Joe Perches6b8a66e2011-03-02 07:18:10 +0000929 tun_debug(KERN_INFO, tun, "tun_chr_poll\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930
Jason Wang54f968d2012-10-31 19:45:57 +0000931 poll_wait(file, &tfile->wq.wait, wait);
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400932
Michael S. Tsirkin89f56d12009-08-30 07:04:42 +0000933 if (!skb_queue_empty(&sk->sk_receive_queue))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934 mask |= POLLIN | POLLRDNORM;
935
Herbert Xu33dccbb2009-02-05 21:25:32 -0800936 if (sock_writeable(sk) ||
937 (!test_and_set_bit(SOCK_ASYNC_NOSPACE, &sk->sk_socket->flags) &&
938 sock_writeable(sk)))
939 mask |= POLLOUT | POLLWRNORM;
940
Eric W. Biedermanc70f1822009-01-20 11:07:17 +0000941 if (tun->dev->reg_state != NETREG_REGISTERED)
942 mask = POLLERR;
943
Eric W. Biederman631ab462009-01-20 11:00:40 +0000944 tun_put(tun);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945 return mask;
946}
947
Rusty Russellf42157c2008-08-15 15:15:10 -0700948/* prepad is the amount to reserve at front. len is length after that.
949 * linear is a hint as to how much to copy (usually headers). */
Jason Wang54f968d2012-10-31 19:45:57 +0000950static struct sk_buff *tun_alloc_skb(struct tun_file *tfile,
stephen hemminger6f7c1562011-06-08 14:33:08 +0000951 size_t prepad, size_t len,
952 size_t linear, int noblock)
Rusty Russellf42157c2008-08-15 15:15:10 -0700953{
Jason Wang54f968d2012-10-31 19:45:57 +0000954 struct sock *sk = tfile->socket.sk;
Rusty Russellf42157c2008-08-15 15:15:10 -0700955 struct sk_buff *skb;
Herbert Xu33dccbb2009-02-05 21:25:32 -0800956 int err;
Rusty Russellf42157c2008-08-15 15:15:10 -0700957
958 /* Under a page? Don't bother with paged skb. */
Herbert Xu0eca93b2009-04-14 02:09:43 -0700959 if (prepad + len < PAGE_SIZE || !linear)
Herbert Xu33dccbb2009-02-05 21:25:32 -0800960 linear = len;
Rusty Russellf42157c2008-08-15 15:15:10 -0700961
Herbert Xu33dccbb2009-02-05 21:25:32 -0800962 skb = sock_alloc_send_pskb(sk, prepad + linear, len - linear, noblock,
Eric Dumazet28d64272013-08-08 14:38:47 -0700963 &err, 0);
Rusty Russellf42157c2008-08-15 15:15:10 -0700964 if (!skb)
Herbert Xu33dccbb2009-02-05 21:25:32 -0800965 return ERR_PTR(err);
Rusty Russellf42157c2008-08-15 15:15:10 -0700966
967 skb_reserve(skb, prepad);
968 skb_put(skb, linear);
Herbert Xu33dccbb2009-02-05 21:25:32 -0800969 skb->data_len = len - linear;
970 skb->len += len - linear;
Rusty Russellf42157c2008-08-15 15:15:10 -0700971
972 return skb;
973}
974
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975/* Get packet from user space buffer */
Jason Wang54f968d2012-10-31 19:45:57 +0000976static ssize_t tun_get_user(struct tun_struct *tun, struct tun_file *tfile,
977 void *msg_control, const struct iovec *iv,
978 size_t total_len, size_t count, int noblock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979{
Harvey Harrison09640e62009-02-01 00:45:17 -0800980 struct tun_pi pi = { 0, cpu_to_be16(ETH_P_IP) };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981 struct sk_buff *skb;
Jason Wang3dd5c332013-07-10 13:43:27 +0800982 size_t len = total_len, align = NET_SKB_PAD, linear;
Rusty Russellf43798c2008-07-03 03:48:02 -0700983 struct virtio_net_hdr gso = { 0 };
Jason Wang96f8d9e2013-11-13 14:00:39 +0800984 int good_linear;
Michael S. Tsirkin6f26c9a2009-04-20 01:26:11 +0000985 int offset = 0;
Michael S. Tsirkin06908992012-07-20 09:23:23 +0000986 int copylen;
987 bool zerocopy = false;
988 int err;
Eric Dumazet49974422012-12-12 19:22:57 +0000989 u32 rxhash;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990
991 if (!(tun->flags & TUN_NO_PI)) {
Dan Carpenter15718ea2013-08-15 15:52:57 +0300992 if (len < sizeof(pi))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993 return -EINVAL;
Dan Carpenter15718ea2013-08-15 15:52:57 +0300994 len -= sizeof(pi);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995
Michael S. Tsirkin6f26c9a2009-04-20 01:26:11 +0000996 if (memcpy_fromiovecend((void *)&pi, iv, 0, sizeof(pi)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997 return -EFAULT;
Michael S. Tsirkin6f26c9a2009-04-20 01:26:11 +0000998 offset += sizeof(pi);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999 }
1000
Rusty Russellf43798c2008-07-03 03:48:02 -07001001 if (tun->flags & TUN_VNET_HDR) {
Dan Carpenter15718ea2013-08-15 15:52:57 +03001002 if (len < tun->vnet_hdr_sz)
Rusty Russellf43798c2008-07-03 03:48:02 -07001003 return -EINVAL;
Dan Carpenter15718ea2013-08-15 15:52:57 +03001004 len -= tun->vnet_hdr_sz;
Rusty Russellf43798c2008-07-03 03:48:02 -07001005
Michael S. Tsirkin6f26c9a2009-04-20 01:26:11 +00001006 if (memcpy_fromiovecend((void *)&gso, iv, offset, sizeof(gso)))
Rusty Russellf43798c2008-07-03 03:48:02 -07001007 return -EFAULT;
1008
Herbert Xu49091222009-06-08 00:20:01 -07001009 if ((gso.flags & VIRTIO_NET_HDR_F_NEEDS_CSUM) &&
1010 gso.csum_start + gso.csum_offset + 2 > gso.hdr_len)
1011 gso.hdr_len = gso.csum_start + gso.csum_offset + 2;
1012
Rusty Russellf43798c2008-07-03 03:48:02 -07001013 if (gso.hdr_len > len)
1014 return -EINVAL;
Michael S. Tsirkind9d52b52010-03-17 17:45:01 +02001015 offset += tun->vnet_hdr_sz;
Rusty Russellf43798c2008-07-03 03:48:02 -07001016 }
1017
Rusty Russelle01bf1c2008-04-12 18:49:30 -07001018 if ((tun->flags & TUN_TYPE_MASK) == TUN_TAP_DEV) {
stephen hemmingera504b862011-06-08 14:33:07 +00001019 align += NET_IP_ALIGN;
Herbert Xu0eca93b2009-04-14 02:09:43 -07001020 if (unlikely(len < ETH_HLEN ||
1021 (gso.hdr_len && gso.hdr_len < ETH_HLEN)))
Rusty Russelle01bf1c2008-04-12 18:49:30 -07001022 return -EINVAL;
1023 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001024
Jason Wang96f8d9e2013-11-13 14:00:39 +08001025 good_linear = SKB_MAX_HEAD(align);
1026
Jason Wang88529172013-07-18 10:55:15 +08001027 if (msg_control) {
1028 /* There are 256 bytes to be copied in skb, so there is
1029 * enough room for skb expand head in case it is used.
Michael S. Tsirkin06908992012-07-20 09:23:23 +00001030 * The rest of the buffer is mapped from userspace.
1031 */
Jason Wang88529172013-07-18 10:55:15 +08001032 copylen = gso.hdr_len ? gso.hdr_len : GOODCOPY_LEN;
Jason Wang96f8d9e2013-11-13 14:00:39 +08001033 if (copylen > good_linear)
1034 copylen = good_linear;
Jason Wang3dd5c332013-07-10 13:43:27 +08001035 linear = copylen;
Jason Wang88529172013-07-18 10:55:15 +08001036 if (iov_pages(iv, offset + copylen, count) <= MAX_SKB_FRAGS)
1037 zerocopy = true;
1038 }
1039
1040 if (!zerocopy) {
Michael S. Tsirkin06908992012-07-20 09:23:23 +00001041 copylen = len;
Jason Wang96f8d9e2013-11-13 14:00:39 +08001042 if (gso.hdr_len > good_linear)
1043 linear = good_linear;
1044 else
1045 linear = gso.hdr_len;
Jason Wang3dd5c332013-07-10 13:43:27 +08001046 }
Michael S. Tsirkin06908992012-07-20 09:23:23 +00001047
Jason Wang3dd5c332013-07-10 13:43:27 +08001048 skb = tun_alloc_skb(tfile, align, copylen, linear, noblock);
Herbert Xu33dccbb2009-02-05 21:25:32 -08001049 if (IS_ERR(skb)) {
1050 if (PTR_ERR(skb) != -EAGAIN)
1051 tun->dev->stats.rx_dropped++;
1052 return PTR_ERR(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053 }
1054
Michael S. Tsirkin06908992012-07-20 09:23:23 +00001055 if (zerocopy)
1056 err = zerocopy_sg_from_iovec(skb, iv, offset, count);
Jason Wang88529172013-07-18 10:55:15 +08001057 else {
Michael S. Tsirkin06908992012-07-20 09:23:23 +00001058 err = skb_copy_datagram_from_iovec(skb, 0, iv, offset, len);
Jason Wang88529172013-07-18 10:55:15 +08001059 if (!err && msg_control) {
1060 struct ubuf_info *uarg = msg_control;
1061 uarg->callback(uarg, false);
1062 }
1063 }
Michael S. Tsirkin06908992012-07-20 09:23:23 +00001064
1065 if (err) {
Jeff Garzik09f75cd2007-10-03 17:41:50 -07001066 tun->dev->stats.rx_dropped++;
Dave Jones8f227572006-03-11 18:49:13 -08001067 kfree_skb(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068 return -EFAULT;
Dave Jones8f227572006-03-11 18:49:13 -08001069 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070
Rusty Russellf43798c2008-07-03 03:48:02 -07001071 if (gso.flags & VIRTIO_NET_HDR_F_NEEDS_CSUM) {
1072 if (!skb_partial_csum_set(skb, gso.csum_start,
1073 gso.csum_offset)) {
1074 tun->dev->stats.rx_frame_errors++;
1075 kfree_skb(skb);
1076 return -EINVAL;
1077 }
Michał Mirosław88255372011-04-19 06:13:10 +00001078 }
Rusty Russellf43798c2008-07-03 03:48:02 -07001079
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080 switch (tun->flags & TUN_TYPE_MASK) {
1081 case TUN_TUN_DEV:
Ang Way Chuangf09f7ee2008-06-17 21:10:33 -07001082 if (tun->flags & TUN_NO_PI) {
1083 switch (skb->data[0] & 0xf0) {
1084 case 0x40:
1085 pi.proto = htons(ETH_P_IP);
1086 break;
1087 case 0x60:
1088 pi.proto = htons(ETH_P_IPV6);
1089 break;
1090 default:
1091 tun->dev->stats.rx_dropped++;
1092 kfree_skb(skb);
1093 return -EINVAL;
1094 }
1095 }
1096
Arnaldo Carvalho de Melo459a98e2007-03-19 15:30:44 -07001097 skb_reset_mac_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098 skb->protocol = pi.proto;
Arnaldo Carvalho de Melo4c13eb62007-04-25 17:40:23 -07001099 skb->dev = tun->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100 break;
1101 case TUN_TAP_DEV:
1102 skb->protocol = eth_type_trans(skb, tun->dev);
1103 break;
Joe Perches6403eab2011-06-03 11:51:20 +00001104 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105
Rusty Russellf43798c2008-07-03 03:48:02 -07001106 if (gso.gso_type != VIRTIO_NET_HDR_GSO_NONE) {
1107 pr_debug("GSO!\n");
1108 switch (gso.gso_type & ~VIRTIO_NET_HDR_GSO_ECN) {
1109 case VIRTIO_NET_HDR_GSO_TCPV4:
Pravin B Shelarc9af6db2013-02-11 09:27:41 +00001110 skb_shinfo(skb)->gso_type = SKB_GSO_TCPV4;
Rusty Russellf43798c2008-07-03 03:48:02 -07001111 break;
1112 case VIRTIO_NET_HDR_GSO_TCPV6:
Pravin B Shelarc9af6db2013-02-11 09:27:41 +00001113 skb_shinfo(skb)->gso_type = SKB_GSO_TCPV6;
Rusty Russellf43798c2008-07-03 03:48:02 -07001114 break;
Sridhar Samudralae36aa252009-07-14 14:21:04 +00001115 case VIRTIO_NET_HDR_GSO_UDP:
Pravin B Shelarc9af6db2013-02-11 09:27:41 +00001116 skb_shinfo(skb)->gso_type = SKB_GSO_UDP;
Sridhar Samudralae36aa252009-07-14 14:21:04 +00001117 break;
Rusty Russellf43798c2008-07-03 03:48:02 -07001118 default:
1119 tun->dev->stats.rx_frame_errors++;
1120 kfree_skb(skb);
1121 return -EINVAL;
1122 }
1123
1124 if (gso.gso_type & VIRTIO_NET_HDR_GSO_ECN)
Pravin B Shelarc9af6db2013-02-11 09:27:41 +00001125 skb_shinfo(skb)->gso_type |= SKB_GSO_TCP_ECN;
Rusty Russellf43798c2008-07-03 03:48:02 -07001126
1127 skb_shinfo(skb)->gso_size = gso.gso_size;
1128 if (skb_shinfo(skb)->gso_size == 0) {
1129 tun->dev->stats.rx_frame_errors++;
1130 kfree_skb(skb);
1131 return -EINVAL;
1132 }
1133
1134 /* Header must be checked, and gso_segs computed. */
1135 skb_shinfo(skb)->gso_type |= SKB_GSO_DODGY;
1136 skb_shinfo(skb)->gso_segs = 0;
1137 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001138
Michael S. Tsirkin06908992012-07-20 09:23:23 +00001139 /* copy skb_ubuf_info for callback when skb has no error */
1140 if (zerocopy) {
1141 skb_shinfo(skb)->destructor_arg = msg_control;
1142 skb_shinfo(skb)->tx_flags |= SKBTX_DEV_ZEROCOPY;
Pravin B Shelarc9af6db2013-02-11 09:27:41 +00001143 skb_shinfo(skb)->tx_flags |= SKBTX_SHARED_FRAG;
Michael S. Tsirkin06908992012-07-20 09:23:23 +00001144 }
1145
Eric Dumazet76fe4582012-12-17 04:39:20 +00001146 skb_reset_network_header(skb);
Jason Wang40893fd2013-03-26 23:11:22 +00001147 skb_probe_transport_header(skb, 0);
Jason Wang38502af2013-03-25 20:19:56 +00001148
Eric Dumazet49974422012-12-12 19:22:57 +00001149 rxhash = skb_get_rxhash(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001150 netif_rx_ni(skb);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001151
Jeff Garzik09f75cd2007-10-03 17:41:50 -07001152 tun->dev->stats.rx_packets++;
1153 tun->dev->stats.rx_bytes += len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154
Jason Wang9e857222013-01-28 01:05:19 +00001155 tun_flow_update(tun, rxhash, tfile);
Michael S. Tsirkin06908992012-07-20 09:23:23 +00001156 return total_len;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001157}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158
Badari Pulavartyee0b3e62006-09-30 23:28:47 -07001159static ssize_t tun_chr_aio_write(struct kiocb *iocb, const struct iovec *iv,
1160 unsigned long count, loff_t pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161{
Herbert Xu33dccbb2009-02-05 21:25:32 -08001162 struct file *file = iocb->ki_filp;
Herbert Xuab46d772009-02-14 20:46:39 -08001163 struct tun_struct *tun = tun_get(file);
Jason Wang54f968d2012-10-31 19:45:57 +00001164 struct tun_file *tfile = file->private_data;
Eric W. Biederman631ab462009-01-20 11:00:40 +00001165 ssize_t result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166
1167 if (!tun)
1168 return -EBADFD;
1169
Joe Perches6b8a66e2011-03-02 07:18:10 +00001170 tun_debug(KERN_INFO, tun, "tun_chr_write %ld\n", count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171
Jason Wang54f968d2012-10-31 19:45:57 +00001172 result = tun_get_user(tun, tfile, NULL, iv, iov_length(iv, count),
1173 count, file->f_flags & O_NONBLOCK);
Eric W. Biederman631ab462009-01-20 11:00:40 +00001174
1175 tun_put(tun);
1176 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177}
1178
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179/* Put packet to the user space buffer */
stephen hemminger6f7c1562011-06-08 14:33:08 +00001180static ssize_t tun_put_user(struct tun_struct *tun,
Jason Wang54f968d2012-10-31 19:45:57 +00001181 struct tun_file *tfile,
stephen hemminger6f7c1562011-06-08 14:33:08 +00001182 struct sk_buff *skb,
1183 const struct iovec *iv, int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184{
1185 struct tun_pi pi = { 0, skb->protocol };
1186 ssize_t total = 0;
Jason Wang6680ec62013-07-25 13:00:33 +08001187 int vlan_offset = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001188
1189 if (!(tun->flags & TUN_NO_PI)) {
1190 if ((len -= sizeof(pi)) < 0)
1191 return -EINVAL;
1192
1193 if (len < skb->len) {
1194 /* Packet will be striped */
1195 pi.flags |= TUN_PKT_STRIP;
1196 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001197
Michael S. Tsirkin43b39dc2009-04-20 01:25:59 +00001198 if (memcpy_toiovecend(iv, (void *) &pi, 0, sizeof(pi)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199 return -EFAULT;
1200 total += sizeof(pi);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001201 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202
Rusty Russellf43798c2008-07-03 03:48:02 -07001203 if (tun->flags & TUN_VNET_HDR) {
1204 struct virtio_net_hdr gso = { 0 }; /* no info leak */
Michael S. Tsirkind9d52b52010-03-17 17:45:01 +02001205 if ((len -= tun->vnet_hdr_sz) < 0)
Rusty Russellf43798c2008-07-03 03:48:02 -07001206 return -EINVAL;
1207
1208 if (skb_is_gso(skb)) {
1209 struct skb_shared_info *sinfo = skb_shinfo(skb);
1210
1211 /* This is a hint as to how much should be linear. */
1212 gso.hdr_len = skb_headlen(skb);
1213 gso.gso_size = sinfo->gso_size;
1214 if (sinfo->gso_type & SKB_GSO_TCPV4)
1215 gso.gso_type = VIRTIO_NET_HDR_GSO_TCPV4;
1216 else if (sinfo->gso_type & SKB_GSO_TCPV6)
1217 gso.gso_type = VIRTIO_NET_HDR_GSO_TCPV6;
Sridhar Samudralae36aa252009-07-14 14:21:04 +00001218 else if (sinfo->gso_type & SKB_GSO_UDP)
1219 gso.gso_type = VIRTIO_NET_HDR_GSO_UDP;
Michael S. Tsirkinef3db4a2010-07-21 04:32:45 +00001220 else {
Joe Perches6b8a66e2011-03-02 07:18:10 +00001221 pr_err("unexpected GSO type: "
Michael S. Tsirkinef3db4a2010-07-21 04:32:45 +00001222 "0x%x, gso_size %d, hdr_len %d\n",
1223 sinfo->gso_type, gso.gso_size,
1224 gso.hdr_len);
1225 print_hex_dump(KERN_ERR, "tun: ",
1226 DUMP_PREFIX_NONE,
1227 16, 1, skb->head,
1228 min((int)gso.hdr_len, 64), true);
1229 WARN_ON_ONCE(1);
1230 return -EINVAL;
1231 }
Rusty Russellf43798c2008-07-03 03:48:02 -07001232 if (sinfo->gso_type & SKB_GSO_TCP_ECN)
1233 gso.gso_type |= VIRTIO_NET_HDR_GSO_ECN;
1234 } else
1235 gso.gso_type = VIRTIO_NET_HDR_GSO_NONE;
1236
1237 if (skb->ip_summed == CHECKSUM_PARTIAL) {
1238 gso.flags = VIRTIO_NET_HDR_F_NEEDS_CSUM;
Michał Mirosław55508d62010-12-14 15:24:08 +00001239 gso.csum_start = skb_checksum_start_offset(skb);
Rusty Russellf43798c2008-07-03 03:48:02 -07001240 gso.csum_offset = skb->csum_offset;
Jason Wang10a8d942011-06-10 00:56:17 +00001241 } else if (skb->ip_summed == CHECKSUM_UNNECESSARY) {
1242 gso.flags = VIRTIO_NET_HDR_F_DATA_VALID;
Rusty Russellf43798c2008-07-03 03:48:02 -07001243 } /* else everything is zero */
1244
Michael S. Tsirkin43b39dc2009-04-20 01:25:59 +00001245 if (unlikely(memcpy_toiovecend(iv, (void *)&gso, total,
1246 sizeof(gso))))
Rusty Russellf43798c2008-07-03 03:48:02 -07001247 return -EFAULT;
Michael S. Tsirkind9d52b52010-03-17 17:45:01 +02001248 total += tun->vnet_hdr_sz;
Rusty Russellf43798c2008-07-03 03:48:02 -07001249 }
1250
Jason Wang6680ec62013-07-25 13:00:33 +08001251 if (!vlan_tx_tag_present(skb)) {
1252 len = min_t(int, skb->len, len);
1253 } else {
1254 int copy, ret;
1255 struct {
1256 __be16 h_vlan_proto;
1257 __be16 h_vlan_TCI;
1258 } veth;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259
Jason Wang6680ec62013-07-25 13:00:33 +08001260 veth.h_vlan_proto = skb->vlan_proto;
1261 veth.h_vlan_TCI = htons(vlan_tx_tag_get(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262
Jason Wang6680ec62013-07-25 13:00:33 +08001263 vlan_offset = offsetof(struct vlan_ethhdr, h_vlan_proto);
1264 len = min_t(int, skb->len + VLAN_HLEN, len);
1265
1266 copy = min_t(int, vlan_offset, len);
1267 ret = skb_copy_datagram_const_iovec(skb, 0, iv, total, copy);
1268 len -= copy;
1269 total += copy;
1270 if (ret || !len)
1271 goto done;
1272
1273 copy = min_t(int, sizeof(veth), len);
1274 ret = memcpy_toiovecend(iv, (void *)&veth, total, copy);
1275 len -= copy;
1276 total += copy;
1277 if (ret || !len)
1278 goto done;
1279 }
1280
1281 skb_copy_datagram_const_iovec(skb, vlan_offset, iv, total, len);
1282 total += len;
1283
1284done:
Jeff Garzik09f75cd2007-10-03 17:41:50 -07001285 tun->dev->stats.tx_packets++;
1286 tun->dev->stats.tx_bytes += len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287
1288 return total;
1289}
1290
Jason Wang54f968d2012-10-31 19:45:57 +00001291static ssize_t tun_do_read(struct tun_struct *tun, struct tun_file *tfile,
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00001292 struct kiocb *iocb, const struct iovec *iv,
1293 ssize_t len, int noblock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295 DECLARE_WAITQUEUE(wait, current);
1296 struct sk_buff *skb;
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00001297 ssize_t ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298
Rami Rosen3872baf2012-11-25 22:07:41 +00001299 tun_debug(KERN_INFO, tun, "tun_do_read\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300
Amos Kong61a5ff12011-06-09 00:27:10 -07001301 if (unlikely(!noblock))
Jason Wang54f968d2012-10-31 19:45:57 +00001302 add_wait_queue(&tfile->wq.wait, &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303 while (len) {
Michael S. Tsirkin5c0c52c2013-10-06 21:25:12 +03001304 if (unlikely(!noblock))
1305 current->state = TASK_INTERRUPTIBLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001306
1307 /* Read frames from the queue */
Jason Wang54f968d2012-10-31 19:45:57 +00001308 if (!(skb = skb_dequeue(&tfile->socket.sk->sk_receive_queue))) {
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00001309 if (noblock) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310 ret = -EAGAIN;
1311 break;
1312 }
1313 if (signal_pending(current)) {
1314 ret = -ERESTARTSYS;
1315 break;
1316 }
Eric W. Biedermanc70f1822009-01-20 11:07:17 +00001317 if (tun->dev->reg_state != NETREG_REGISTERED) {
1318 ret = -EIO;
1319 break;
1320 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001321
1322 /* Nothing to read, let's sleep */
1323 schedule();
1324 continue;
1325 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326
Jason Wang54f968d2012-10-31 19:45:57 +00001327 ret = tun_put_user(tun, tfile, skb, iv, len);
Max Krasnyanskyf271b2c2008-07-14 22:18:19 -07001328 kfree_skb(skb);
1329 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330 }
1331
Michael S. Tsirkin5c0c52c2013-10-06 21:25:12 +03001332 if (unlikely(!noblock)) {
1333 current->state = TASK_RUNNING;
Jason Wang54f968d2012-10-31 19:45:57 +00001334 remove_wait_queue(&tfile->wq.wait, &wait);
Michael S. Tsirkin5c0c52c2013-10-06 21:25:12 +03001335 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001336
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00001337 return ret;
1338}
1339
1340static ssize_t tun_chr_aio_read(struct kiocb *iocb, const struct iovec *iv,
1341 unsigned long count, loff_t pos)
1342{
1343 struct file *file = iocb->ki_filp;
1344 struct tun_file *tfile = file->private_data;
1345 struct tun_struct *tun = __tun_get(tfile);
1346 ssize_t len, ret;
1347
1348 if (!tun)
1349 return -EBADFD;
1350 len = iov_length(iv, count);
1351 if (len < 0) {
1352 ret = -EINVAL;
1353 goto out;
1354 }
1355
Jason Wang54f968d2012-10-31 19:45:57 +00001356 ret = tun_do_read(tun, tfile, iocb, iv, len,
1357 file->f_flags & O_NONBLOCK);
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00001358 ret = min_t(ssize_t, ret, len);
Eric W. Biederman631ab462009-01-20 11:00:40 +00001359out:
1360 tun_put(tun);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001361 return ret;
1362}
1363
Jason Wang96442e422012-10-31 19:46:02 +00001364static void tun_free_netdev(struct net_device *dev)
1365{
1366 struct tun_struct *tun = netdev_priv(dev);
1367
Jason Wang4008e972012-12-13 23:53:30 +00001368 BUG_ON(!(list_empty(&tun->disabled)));
Jason Wang96442e422012-10-31 19:46:02 +00001369 tun_flow_uninit(tun);
Paul Moore5dbbaf22013-01-14 07:12:19 +00001370 security_tun_dev_free_security(tun->security);
Jason Wang96442e422012-10-31 19:46:02 +00001371 free_netdev(dev);
1372}
1373
Linus Torvalds1da177e2005-04-16 15:20:36 -07001374static void tun_setup(struct net_device *dev)
1375{
1376 struct tun_struct *tun = netdev_priv(dev);
1377
Eric W. Biederman0625c882012-02-07 16:48:55 -08001378 tun->owner = INVALID_UID;
1379 tun->group = INVALID_GID;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380
Linus Torvalds1da177e2005-04-16 15:20:36 -07001381 dev->ethtool_ops = &tun_ethtool_ops;
Jason Wang96442e422012-10-31 19:46:02 +00001382 dev->destructor = tun_free_netdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383}
1384
Eric W. Biedermanf019a7a2009-01-21 16:02:16 -08001385/* Trivial set of netlink ops to allow deleting tun or tap
1386 * device with netlink.
1387 */
1388static int tun_validate(struct nlattr *tb[], struct nlattr *data[])
1389{
1390 return -EINVAL;
1391}
1392
1393static struct rtnl_link_ops tun_link_ops __read_mostly = {
1394 .kind = DRV_NAME,
1395 .priv_size = sizeof(struct tun_struct),
1396 .setup = tun_setup,
1397 .validate = tun_validate,
1398};
1399
Herbert Xu33dccbb2009-02-05 21:25:32 -08001400static void tun_sock_write_space(struct sock *sk)
1401{
Jason Wang54f968d2012-10-31 19:45:57 +00001402 struct tun_file *tfile;
Eric Dumazet43815482010-04-29 11:01:49 +00001403 wait_queue_head_t *wqueue;
Herbert Xu33dccbb2009-02-05 21:25:32 -08001404
1405 if (!sock_writeable(sk))
1406 return;
1407
Herbert Xu33dccbb2009-02-05 21:25:32 -08001408 if (!test_and_clear_bit(SOCK_ASYNC_NOSPACE, &sk->sk_socket->flags))
1409 return;
1410
Eric Dumazet43815482010-04-29 11:01:49 +00001411 wqueue = sk_sleep(sk);
1412 if (wqueue && waitqueue_active(wqueue))
1413 wake_up_interruptible_sync_poll(wqueue, POLLOUT |
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00001414 POLLWRNORM | POLLWRBAND);
Herbert Xuc722c622009-06-03 21:45:55 -07001415
Jason Wang54f968d2012-10-31 19:45:57 +00001416 tfile = container_of(sk, struct tun_file, sk);
1417 kill_fasync(&tfile->fasync, SIGIO, POLL_OUT);
Herbert Xu33dccbb2009-02-05 21:25:32 -08001418}
1419
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00001420static int tun_sendmsg(struct kiocb *iocb, struct socket *sock,
1421 struct msghdr *m, size_t total_len)
1422{
Jason Wang54f968d2012-10-31 19:45:57 +00001423 int ret;
1424 struct tun_file *tfile = container_of(sock, struct tun_file, socket);
1425 struct tun_struct *tun = __tun_get(tfile);
1426
1427 if (!tun)
1428 return -EBADFD;
Jason Wang54f968d2012-10-31 19:45:57 +00001429 ret = tun_get_user(tun, tfile, m->msg_control, m->msg_iov, total_len,
1430 m->msg_iovlen, m->msg_flags & MSG_DONTWAIT);
1431 tun_put(tun);
1432 return ret;
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00001433}
1434
1435static int tun_recvmsg(struct kiocb *iocb, struct socket *sock,
1436 struct msghdr *m, size_t total_len,
1437 int flags)
1438{
Jason Wang54f968d2012-10-31 19:45:57 +00001439 struct tun_file *tfile = container_of(sock, struct tun_file, socket);
1440 struct tun_struct *tun = __tun_get(tfile);
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00001441 int ret;
Jason Wang54f968d2012-10-31 19:45:57 +00001442
1443 if (!tun)
1444 return -EBADFD;
1445
Richard Cochraneda29772013-07-19 19:40:10 +02001446 if (flags & ~(MSG_DONTWAIT|MSG_TRUNC|MSG_ERRQUEUE)) {
Gao feng3811ae72013-04-24 21:59:23 +00001447 ret = -EINVAL;
1448 goto out;
1449 }
Richard Cochraneda29772013-07-19 19:40:10 +02001450 if (flags & MSG_ERRQUEUE) {
1451 ret = sock_recv_errqueue(sock->sk, m, total_len,
1452 SOL_PACKET, TUN_TX_TIMESTAMP);
1453 goto out;
1454 }
Jason Wang54f968d2012-10-31 19:45:57 +00001455 ret = tun_do_read(tun, tfile, iocb, m->msg_iov, total_len,
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00001456 flags & MSG_DONTWAIT);
1457 if (ret > total_len) {
1458 m->msg_flags |= MSG_TRUNC;
1459 ret = flags & MSG_TRUNC ? ret : total_len;
1460 }
Gao feng3811ae72013-04-24 21:59:23 +00001461out:
Jason Wang54f968d2012-10-31 19:45:57 +00001462 tun_put(tun);
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00001463 return ret;
1464}
1465
Stanislav Kinsbursky1ab5ecb2012-03-12 02:59:41 +00001466static int tun_release(struct socket *sock)
1467{
1468 if (sock->sk)
1469 sock_put(sock->sk);
1470 return 0;
1471}
1472
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00001473/* Ops structure to mimic raw sockets with tun */
1474static const struct proto_ops tun_socket_ops = {
1475 .sendmsg = tun_sendmsg,
1476 .recvmsg = tun_recvmsg,
Stanislav Kinsbursky1ab5ecb2012-03-12 02:59:41 +00001477 .release = tun_release,
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00001478};
1479
Herbert Xu33dccbb2009-02-05 21:25:32 -08001480static struct proto tun_proto = {
1481 .name = "tun",
1482 .owner = THIS_MODULE,
Jason Wang54f968d2012-10-31 19:45:57 +00001483 .obj_size = sizeof(struct tun_file),
Herbert Xu33dccbb2009-02-05 21:25:32 -08001484};
Eric W. Biedermanf019a7a2009-01-21 16:02:16 -08001485
David Woodhouse980c9e82009-05-09 22:54:21 -07001486static int tun_flags(struct tun_struct *tun)
1487{
1488 int flags = 0;
1489
1490 if (tun->flags & TUN_TUN_DEV)
1491 flags |= IFF_TUN;
1492 else
1493 flags |= IFF_TAP;
1494
1495 if (tun->flags & TUN_NO_PI)
1496 flags |= IFF_NO_PI;
1497
Michael S. Tsirkin5d097102012-12-03 10:07:14 +00001498 /* This flag has no real effect. We track the value for backwards
1499 * compatibility.
1500 */
David Woodhouse980c9e82009-05-09 22:54:21 -07001501 if (tun->flags & TUN_ONE_QUEUE)
1502 flags |= IFF_ONE_QUEUE;
1503
1504 if (tun->flags & TUN_VNET_HDR)
1505 flags |= IFF_VNET_HDR;
1506
Jason Wangc8d68e62012-10-31 19:46:00 +00001507 if (tun->flags & TUN_TAP_MQ)
1508 flags |= IFF_MULTI_QUEUE;
1509
Pavel Emelyanov274038f2013-06-11 14:41:24 +04001510 if (tun->flags & TUN_PERSIST)
1511 flags |= IFF_PERSIST;
1512
David Woodhouse980c9e82009-05-09 22:54:21 -07001513 return flags;
1514}
1515
1516static ssize_t tun_show_flags(struct device *dev, struct device_attribute *attr,
1517 char *buf)
1518{
1519 struct tun_struct *tun = netdev_priv(to_net_dev(dev));
1520 return sprintf(buf, "0x%x\n", tun_flags(tun));
1521}
1522
1523static ssize_t tun_show_owner(struct device *dev, struct device_attribute *attr,
1524 char *buf)
1525{
1526 struct tun_struct *tun = netdev_priv(to_net_dev(dev));
Eric W. Biederman0625c882012-02-07 16:48:55 -08001527 return uid_valid(tun->owner)?
1528 sprintf(buf, "%u\n",
1529 from_kuid_munged(current_user_ns(), tun->owner)):
1530 sprintf(buf, "-1\n");
David Woodhouse980c9e82009-05-09 22:54:21 -07001531}
1532
1533static ssize_t tun_show_group(struct device *dev, struct device_attribute *attr,
1534 char *buf)
1535{
1536 struct tun_struct *tun = netdev_priv(to_net_dev(dev));
Eric W. Biederman0625c882012-02-07 16:48:55 -08001537 return gid_valid(tun->group) ?
1538 sprintf(buf, "%u\n",
1539 from_kgid_munged(current_user_ns(), tun->group)):
1540 sprintf(buf, "-1\n");
David Woodhouse980c9e82009-05-09 22:54:21 -07001541}
1542
1543static DEVICE_ATTR(tun_flags, 0444, tun_show_flags, NULL);
1544static DEVICE_ATTR(owner, 0444, tun_show_owner, NULL);
1545static DEVICE_ATTR(group, 0444, tun_show_group, NULL);
1546
Pavel Emelyanovd647a592008-04-16 00:41:16 -07001547static int tun_set_iff(struct net *net, struct file *file, struct ifreq *ifr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001548{
1549 struct tun_struct *tun;
Jason Wang54f968d2012-10-31 19:45:57 +00001550 struct tun_file *tfile = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001551 struct net_device *dev;
1552 int err;
1553
Jason Wang7c0c3b12013-01-11 16:59:33 +00001554 if (tfile->detached)
1555 return -EINVAL;
1556
Eric W. Biederman74a3e5a2009-01-20 10:56:20 +00001557 dev = __dev_get_by_name(net, ifr->ifr_name);
1558 if (dev) {
David Woodhousef85ba782009-04-27 03:23:54 -07001559 if (ifr->ifr_flags & IFF_TUN_EXCL)
1560 return -EBUSY;
Eric W. Biederman74a3e5a2009-01-20 10:56:20 +00001561 if ((ifr->ifr_flags & IFF_TUN) && dev->netdev_ops == &tun_netdev_ops)
1562 tun = netdev_priv(dev);
1563 else if ((ifr->ifr_flags & IFF_TAP) && dev->netdev_ops == &tap_netdev_ops)
1564 tun = netdev_priv(dev);
1565 else
1566 return -EINVAL;
1567
Jason Wang8e6d91a2013-05-28 18:32:11 +00001568 if (!!(ifr->ifr_flags & IFF_MULTI_QUEUE) !=
1569 !!(tun->flags & TUN_TAP_MQ))
1570 return -EINVAL;
1571
Jason Wangcde8b152012-10-31 19:46:01 +00001572 if (tun_not_capable(tun))
Paul Moore2b980db2009-08-28 18:12:43 -04001573 return -EPERM;
Paul Moore5dbbaf22013-01-14 07:12:19 +00001574 err = security_tun_dev_open(tun->security);
Paul Moore2b980db2009-08-28 18:12:43 -04001575 if (err < 0)
1576 return err;
1577
Pavel Emelyanov849c9b62013-08-21 14:32:21 +04001578 err = tun_attach(tun, file, ifr->ifr_flags & IFF_NOFILTER);
Eric W. Biedermana7385ba2009-01-20 10:57:48 +00001579 if (err < 0)
1580 return err;
Jason Wang4008e972012-12-13 23:53:30 +00001581
1582 if (tun->flags & TUN_TAP_MQ &&
Jason Wange8dbad62013-04-22 20:40:39 +00001583 (tun->numqueues + tun->numdisabled > 1)) {
1584 /* One or more queue has already been attached, no need
1585 * to initialize the device again.
1586 */
1587 return 0;
1588 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001589 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001590 else {
1591 char *name;
1592 unsigned long flags = 0;
Jason Wangedfb6a12013-01-23 03:59:12 +00001593 int queues = ifr->ifr_flags & IFF_MULTI_QUEUE ?
1594 MAX_TAP_QUEUES : 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001595
Eric W. Biedermanc260b772012-11-18 21:34:11 +00001596 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
David Woodhouseca6bb5d2006-06-22 16:07:52 -07001597 return -EPERM;
Paul Moore2b980db2009-08-28 18:12:43 -04001598 err = security_tun_dev_create();
1599 if (err < 0)
1600 return err;
David Woodhouseca6bb5d2006-06-22 16:07:52 -07001601
Linus Torvalds1da177e2005-04-16 15:20:36 -07001602 /* Set dev type */
1603 if (ifr->ifr_flags & IFF_TUN) {
1604 /* TUN device */
1605 flags |= TUN_TUN_DEV;
1606 name = "tun%d";
1607 } else if (ifr->ifr_flags & IFF_TAP) {
1608 /* TAP device */
1609 flags |= TUN_TAP_DEV;
1610 name = "tap%d";
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001611 } else
Kusanagi Kouichi36989b92009-09-16 21:36:13 +00001612 return -EINVAL;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001613
Linus Torvalds1da177e2005-04-16 15:20:36 -07001614 if (*ifr->ifr_name)
1615 name = ifr->ifr_name;
1616
Jason Wangc8d68e62012-10-31 19:46:00 +00001617 dev = alloc_netdev_mqs(sizeof(struct tun_struct), name,
Jason Wangedfb6a12013-01-23 03:59:12 +00001618 tun_setup, queues, queues);
1619
Linus Torvalds1da177e2005-04-16 15:20:36 -07001620 if (!dev)
1621 return -ENOMEM;
1622
Pavel Emelyanovfc54c652008-04-16 00:41:53 -07001623 dev_net_set(dev, net);
Eric W. Biedermanf019a7a2009-01-21 16:02:16 -08001624 dev->rtnl_link_ops = &tun_link_ops;
Pavel Emelyanovfb7589a2013-08-21 14:31:38 +04001625 dev->ifindex = tfile->ifindex;
Stephen Hemminger758e43b2008-11-19 22:10:37 -08001626
Linus Torvalds1da177e2005-04-16 15:20:36 -07001627 tun = netdev_priv(dev);
1628 tun->dev = dev;
1629 tun->flags = flags;
Max Krasnyanskyf271b2c2008-07-14 22:18:19 -07001630 tun->txflt.count = 0;
Michael S. Tsirkind9d52b52010-03-17 17:45:01 +02001631 tun->vnet_hdr_sz = sizeof(struct virtio_net_hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001632
Jason Wang54f968d2012-10-31 19:45:57 +00001633 tun->filter_attached = false;
1634 tun->sndbuf = tfile->socket.sk->sk_sndbuf;
Herbert Xu33dccbb2009-02-05 21:25:32 -08001635
Jason Wang96442e422012-10-31 19:46:02 +00001636 spin_lock_init(&tun->lock);
1637
Paul Moore5dbbaf22013-01-14 07:12:19 +00001638 err = security_tun_dev_alloc_security(&tun->security);
1639 if (err < 0)
1640 goto err_free_dev;
Paul Moore2b980db2009-08-28 18:12:43 -04001641
Linus Torvalds1da177e2005-04-16 15:20:36 -07001642 tun_net_init(dev);
Pavel Emelyanov944a1372013-06-11 17:01:08 +04001643 tun_flow_init(tun);
Jason Wang96442e422012-10-31 19:46:02 +00001644
Michał Mirosław88255372011-04-19 06:13:10 +00001645 dev->hw_features = NETIF_F_SG | NETIF_F_FRAGLIST |
Jason Wang6680ec62013-07-25 13:00:33 +08001646 TUN_USER_FEATURES | NETIF_F_HW_VLAN_CTAG_TX |
1647 NETIF_F_HW_VLAN_STAG_TX;
Michał Mirosław88255372011-04-19 06:13:10 +00001648 dev->features = dev->hw_features;
Jason Wangc0317992013-04-10 23:32:22 +00001649 dev->vlan_features = dev->features;
Michał Mirosław88255372011-04-19 06:13:10 +00001650
Jason Wang4008e972012-12-13 23:53:30 +00001651 INIT_LIST_HEAD(&tun->disabled);
Pavel Emelyanov849c9b62013-08-21 14:32:21 +04001652 err = tun_attach(tun, file, false);
Jason Wangeb0fb362012-12-02 17:19:45 +00001653 if (err < 0)
Jason Wang662ca432013-09-11 18:09:48 +08001654 goto err_free_flow;
Jason Wangeb0fb362012-12-02 17:19:45 +00001655
Linus Torvalds1da177e2005-04-16 15:20:36 -07001656 err = register_netdevice(tun->dev);
1657 if (err < 0)
Jason Wang662ca432013-09-11 18:09:48 +08001658 goto err_detach;
Herbert Xu9c3fea62009-04-18 14:15:52 +00001659
David Woodhouse980c9e82009-05-09 22:54:21 -07001660 if (device_create_file(&tun->dev->dev, &dev_attr_tun_flags) ||
1661 device_create_file(&tun->dev->dev, &dev_attr_owner) ||
1662 device_create_file(&tun->dev->dev, &dev_attr_group))
Joe Perches6b8a66e2011-03-02 07:18:10 +00001663 pr_err("Failed to create tun sysfs files\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001664 }
1665
Michael S. Tsirkinaf668b32013-01-28 00:38:02 +00001666 netif_carrier_on(tun->dev);
1667
Joe Perches6b8a66e2011-03-02 07:18:10 +00001668 tun_debug(KERN_INFO, tun, "tun_set_iff\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001669
1670 if (ifr->ifr_flags & IFF_NO_PI)
1671 tun->flags |= TUN_NO_PI;
Nathaniel Filardoa26af1e2008-02-05 03:05:07 -08001672 else
1673 tun->flags &= ~TUN_NO_PI;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001674
Michael S. Tsirkin5d097102012-12-03 10:07:14 +00001675 /* This flag has no real effect. We track the value for backwards
1676 * compatibility.
1677 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001678 if (ifr->ifr_flags & IFF_ONE_QUEUE)
1679 tun->flags |= TUN_ONE_QUEUE;
Nathaniel Filardoa26af1e2008-02-05 03:05:07 -08001680 else
1681 tun->flags &= ~TUN_ONE_QUEUE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001682
Rusty Russellf43798c2008-07-03 03:48:02 -07001683 if (ifr->ifr_flags & IFF_VNET_HDR)
1684 tun->flags |= TUN_VNET_HDR;
1685 else
1686 tun->flags &= ~TUN_VNET_HDR;
1687
Jason Wangc8d68e62012-10-31 19:46:00 +00001688 if (ifr->ifr_flags & IFF_MULTI_QUEUE)
1689 tun->flags |= TUN_TAP_MQ;
1690 else
1691 tun->flags &= ~TUN_TAP_MQ;
1692
Max Krasnyanskye35259a2008-07-10 16:59:11 -07001693 /* Make sure persistent devices do not get stuck in
1694 * xoff state.
1695 */
1696 if (netif_running(tun->dev))
Jason Wangc8d68e62012-10-31 19:46:00 +00001697 netif_tx_wake_all_queues(tun->dev);
Max Krasnyanskye35259a2008-07-10 16:59:11 -07001698
Linus Torvalds1da177e2005-04-16 15:20:36 -07001699 strcpy(ifr->ifr_name, tun->dev->name);
1700 return 0;
1701
Jason Wang662ca432013-09-11 18:09:48 +08001702err_detach:
1703 tun_detach_all(dev);
1704err_free_flow:
1705 tun_flow_uninit(tun);
1706 security_tun_dev_free_security(tun->security);
1707err_free_dev:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001708 free_netdev(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001709 return err;
1710}
1711
Rami Rosen9ce99cf2012-11-23 03:58:10 +00001712static void tun_get_iff(struct net *net, struct tun_struct *tun,
Herbert Xu876bfd42009-08-06 14:22:44 +00001713 struct ifreq *ifr)
Mark McLoughline3b99552008-08-15 15:09:56 -07001714{
Joe Perches6b8a66e2011-03-02 07:18:10 +00001715 tun_debug(KERN_INFO, tun, "tun_get_iff\n");
Mark McLoughline3b99552008-08-15 15:09:56 -07001716
1717 strcpy(ifr->ifr_name, tun->dev->name);
1718
David Woodhouse980c9e82009-05-09 22:54:21 -07001719 ifr->ifr_flags = tun_flags(tun);
Mark McLoughline3b99552008-08-15 15:09:56 -07001720
Mark McLoughline3b99552008-08-15 15:09:56 -07001721}
1722
Rusty Russell5228ddc2008-07-03 03:46:16 -07001723/* This is like a cut-down ethtool ops, except done via tun fd so no
1724 * privs required. */
Michał Mirosław88255372011-04-19 06:13:10 +00001725static int set_offload(struct tun_struct *tun, unsigned long arg)
Rusty Russell5228ddc2008-07-03 03:46:16 -07001726{
Michał Mirosławc8f44af2011-11-15 15:29:55 +00001727 netdev_features_t features = 0;
Rusty Russell5228ddc2008-07-03 03:46:16 -07001728
1729 if (arg & TUN_F_CSUM) {
Michał Mirosław88255372011-04-19 06:13:10 +00001730 features |= NETIF_F_HW_CSUM;
Rusty Russell5228ddc2008-07-03 03:46:16 -07001731 arg &= ~TUN_F_CSUM;
1732
1733 if (arg & (TUN_F_TSO4|TUN_F_TSO6)) {
1734 if (arg & TUN_F_TSO_ECN) {
1735 features |= NETIF_F_TSO_ECN;
1736 arg &= ~TUN_F_TSO_ECN;
1737 }
1738 if (arg & TUN_F_TSO4)
1739 features |= NETIF_F_TSO;
1740 if (arg & TUN_F_TSO6)
1741 features |= NETIF_F_TSO6;
1742 arg &= ~(TUN_F_TSO4|TUN_F_TSO6);
1743 }
Sridhar Samudralae36aa252009-07-14 14:21:04 +00001744
1745 if (arg & TUN_F_UFO) {
1746 features |= NETIF_F_UFO;
1747 arg &= ~TUN_F_UFO;
1748 }
Rusty Russell5228ddc2008-07-03 03:46:16 -07001749 }
1750
1751 /* This gives the user a way to test for new features in future by
1752 * trying to set them. */
1753 if (arg)
1754 return -EINVAL;
1755
Michał Mirosław88255372011-04-19 06:13:10 +00001756 tun->set_features = features;
1757 netdev_update_features(tun->dev);
Rusty Russell5228ddc2008-07-03 03:46:16 -07001758
1759 return 0;
1760}
1761
Jason Wangc8d68e62012-10-31 19:46:00 +00001762static void tun_detach_filter(struct tun_struct *tun, int n)
1763{
1764 int i;
1765 struct tun_file *tfile;
1766
1767 for (i = 0; i < n; i++) {
Jason Wangb8deabd2013-01-11 16:59:32 +00001768 tfile = rtnl_dereference(tun->tfiles[i]);
Jason Wangc8d68e62012-10-31 19:46:00 +00001769 sk_detach_filter(tfile->socket.sk);
1770 }
1771
1772 tun->filter_attached = false;
1773}
1774
1775static int tun_attach_filter(struct tun_struct *tun)
1776{
1777 int i, ret = 0;
1778 struct tun_file *tfile;
1779
1780 for (i = 0; i < tun->numqueues; i++) {
Jason Wangb8deabd2013-01-11 16:59:32 +00001781 tfile = rtnl_dereference(tun->tfiles[i]);
Jason Wangc8d68e62012-10-31 19:46:00 +00001782 ret = sk_attach_filter(&tun->fprog, tfile->socket.sk);
1783 if (ret) {
1784 tun_detach_filter(tun, i);
1785 return ret;
1786 }
1787 }
1788
1789 tun->filter_attached = true;
1790 return ret;
1791}
1792
1793static void tun_set_sndbuf(struct tun_struct *tun)
1794{
1795 struct tun_file *tfile;
1796 int i;
1797
1798 for (i = 0; i < tun->numqueues; i++) {
Jason Wangb8deabd2013-01-11 16:59:32 +00001799 tfile = rtnl_dereference(tun->tfiles[i]);
Jason Wangc8d68e62012-10-31 19:46:00 +00001800 tfile->socket.sk->sk_sndbuf = tun->sndbuf;
1801 }
1802}
1803
Jason Wangcde8b152012-10-31 19:46:01 +00001804static int tun_set_queue(struct file *file, struct ifreq *ifr)
1805{
1806 struct tun_file *tfile = file->private_data;
1807 struct tun_struct *tun;
Jason Wangcde8b152012-10-31 19:46:01 +00001808 int ret = 0;
1809
1810 rtnl_lock();
1811
1812 if (ifr->ifr_flags & IFF_ATTACH_QUEUE) {
Jason Wang4008e972012-12-13 23:53:30 +00001813 tun = tfile->detached;
Paul Moore5dbbaf22013-01-14 07:12:19 +00001814 if (!tun) {
Jason Wangcde8b152012-10-31 19:46:01 +00001815 ret = -EINVAL;
Paul Moore5dbbaf22013-01-14 07:12:19 +00001816 goto unlock;
1817 }
1818 ret = security_tun_dev_attach_queue(tun->security);
1819 if (ret < 0)
1820 goto unlock;
Pavel Emelyanov849c9b62013-08-21 14:32:21 +04001821 ret = tun_attach(tun, file, false);
Jason Wang4008e972012-12-13 23:53:30 +00001822 } else if (ifr->ifr_flags & IFF_DETACH_QUEUE) {
Jason Wangb8deabd2013-01-11 16:59:32 +00001823 tun = rtnl_dereference(tfile->tun);
Jason Wang9e857222013-01-28 01:05:19 +00001824 if (!tun || !(tun->flags & TUN_TAP_MQ) || tfile->detached)
Jason Wang4008e972012-12-13 23:53:30 +00001825 ret = -EINVAL;
1826 else
1827 __tun_detach(tfile, false);
1828 } else
Jason Wangcde8b152012-10-31 19:46:01 +00001829 ret = -EINVAL;
1830
Paul Moore5dbbaf22013-01-14 07:12:19 +00001831unlock:
Jason Wangcde8b152012-10-31 19:46:01 +00001832 rtnl_unlock();
1833 return ret;
1834}
1835
Arnd Bergmann50857e22009-11-06 22:52:32 -08001836static long __tun_chr_ioctl(struct file *file, unsigned int cmd,
1837 unsigned long arg, int ifreq_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001838{
Eric W. Biederman36b50ba2009-01-20 11:01:48 +00001839 struct tun_file *tfile = file->private_data;
Eric W. Biederman631ab462009-01-20 11:00:40 +00001840 struct tun_struct *tun;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001841 void __user* argp = (void __user*)arg;
1842 struct ifreq ifr;
Eric W. Biederman0625c882012-02-07 16:48:55 -08001843 kuid_t owner;
1844 kgid_t group;
Herbert Xu33dccbb2009-02-05 21:25:32 -08001845 int sndbuf;
Michael S. Tsirkind9d52b52010-03-17 17:45:01 +02001846 int vnet_hdr_sz;
Pavel Emelyanovfb7589a2013-08-21 14:31:38 +04001847 unsigned int ifindex;
Max Krasnyanskyf271b2c2008-07-14 22:18:19 -07001848 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001849
Jason Wangcde8b152012-10-31 19:46:01 +00001850 if (cmd == TUNSETIFF || cmd == TUNSETQUEUE || _IOC_TYPE(cmd) == 0x89) {
Arnd Bergmann50857e22009-11-06 22:52:32 -08001851 if (copy_from_user(&ifr, argp, ifreq_len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001852 return -EFAULT;
David S. Miller8bbb1812012-07-30 14:52:48 -07001853 } else {
Mathias Krausea117dac2012-07-29 19:45:14 +00001854 memset(&ifr, 0, sizeof(ifr));
David S. Miller8bbb1812012-07-30 14:52:48 -07001855 }
Eric W. Biederman631ab462009-01-20 11:00:40 +00001856 if (cmd == TUNGETFEATURES) {
1857 /* Currently this just means: "what IFF flags are valid?".
1858 * This is needed because we never checked for invalid flags on
1859 * TUNSETIFF. */
1860 return put_user(IFF_TUN | IFF_TAP | IFF_NO_PI | IFF_ONE_QUEUE |
Jason Wangcde8b152012-10-31 19:46:01 +00001861 IFF_VNET_HDR | IFF_MULTI_QUEUE,
Eric W. Biederman631ab462009-01-20 11:00:40 +00001862 (unsigned int __user*)argp);
Jason Wangcde8b152012-10-31 19:46:01 +00001863 } else if (cmd == TUNSETQUEUE)
1864 return tun_set_queue(file, &ifr);
Eric W. Biederman631ab462009-01-20 11:00:40 +00001865
Jason Wangc8d68e62012-10-31 19:46:00 +00001866 ret = 0;
Herbert Xu876bfd42009-08-06 14:22:44 +00001867 rtnl_lock();
1868
Eric W. Biederman36b50ba2009-01-20 11:01:48 +00001869 tun = __tun_get(tfile);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001870 if (cmd == TUNSETIFF && !tun) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001871 ifr.ifr_name[IFNAMSIZ-1] = '\0';
1872
Herbert Xu876bfd42009-08-06 14:22:44 +00001873 ret = tun_set_iff(tfile->net, file, &ifr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001874
Herbert Xu876bfd42009-08-06 14:22:44 +00001875 if (ret)
1876 goto unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001877
Arnd Bergmann50857e22009-11-06 22:52:32 -08001878 if (copy_to_user(argp, &ifr, ifreq_len))
Herbert Xu876bfd42009-08-06 14:22:44 +00001879 ret = -EFAULT;
1880 goto unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001881 }
Pavel Emelyanovfb7589a2013-08-21 14:31:38 +04001882 if (cmd == TUNSETIFINDEX) {
1883 ret = -EPERM;
1884 if (tun)
1885 goto unlock;
1886
1887 ret = -EFAULT;
1888 if (copy_from_user(&ifindex, argp, sizeof(ifindex)))
1889 goto unlock;
1890
1891 ret = 0;
1892 tfile->ifindex = ifindex;
1893 goto unlock;
1894 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001895
Herbert Xu876bfd42009-08-06 14:22:44 +00001896 ret = -EBADFD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001897 if (!tun)
Herbert Xu876bfd42009-08-06 14:22:44 +00001898 goto unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001899
Jason Wang1e588332012-10-31 19:45:56 +00001900 tun_debug(KERN_INFO, tun, "tun_chr_ioctl cmd %u\n", cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001901
Eric W. Biederman631ab462009-01-20 11:00:40 +00001902 ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001903 switch (cmd) {
Mark McLoughline3b99552008-08-15 15:09:56 -07001904 case TUNGETIFF:
Rami Rosen9ce99cf2012-11-23 03:58:10 +00001905 tun_get_iff(current->nsproxy->net_ns, tun, &ifr);
Mark McLoughline3b99552008-08-15 15:09:56 -07001906
Pavel Emelyanov3d407a82013-08-21 14:32:00 +04001907 if (tfile->detached)
1908 ifr.ifr_flags |= IFF_DETACH_QUEUE;
Pavel Emelyanov849c9b62013-08-21 14:32:21 +04001909 if (!tfile->socket.sk->sk_filter)
1910 ifr.ifr_flags |= IFF_NOFILTER;
Pavel Emelyanov3d407a82013-08-21 14:32:00 +04001911
Arnd Bergmann50857e22009-11-06 22:52:32 -08001912 if (copy_to_user(argp, &ifr, ifreq_len))
Eric W. Biederman631ab462009-01-20 11:00:40 +00001913 ret = -EFAULT;
Mark McLoughline3b99552008-08-15 15:09:56 -07001914 break;
1915
Linus Torvalds1da177e2005-04-16 15:20:36 -07001916 case TUNSETNOCSUM:
1917 /* Disable/Enable checksum */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001918
Michał Mirosław88255372011-04-19 06:13:10 +00001919 /* [unimplemented] */
1920 tun_debug(KERN_INFO, tun, "ignored: set checksum %s\n",
Joe Perches6b8a66e2011-03-02 07:18:10 +00001921 arg ? "disabled" : "enabled");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001922 break;
1923
1924 case TUNSETPERSIST:
Jason Wang54f968d2012-10-31 19:45:57 +00001925 /* Disable/Enable persist mode. Keep an extra reference to the
1926 * module to prevent the module being unprobed.
1927 */
Jason Wangdd38bd82013-01-11 16:59:34 +00001928 if (arg && !(tun->flags & TUN_PERSIST)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001929 tun->flags |= TUN_PERSIST;
Jason Wang54f968d2012-10-31 19:45:57 +00001930 __module_get(THIS_MODULE);
Jason Wangdd38bd82013-01-11 16:59:34 +00001931 }
1932 if (!arg && (tun->flags & TUN_PERSIST)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001933 tun->flags &= ~TUN_PERSIST;
Jason Wang54f968d2012-10-31 19:45:57 +00001934 module_put(THIS_MODULE);
1935 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001936
Joe Perches6b8a66e2011-03-02 07:18:10 +00001937 tun_debug(KERN_INFO, tun, "persist %s\n",
1938 arg ? "enabled" : "disabled");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001939 break;
1940
1941 case TUNSETOWNER:
1942 /* Set owner of the device */
Eric W. Biederman0625c882012-02-07 16:48:55 -08001943 owner = make_kuid(current_user_ns(), arg);
1944 if (!uid_valid(owner)) {
1945 ret = -EINVAL;
1946 break;
1947 }
1948 tun->owner = owner;
Jason Wang1e588332012-10-31 19:45:56 +00001949 tun_debug(KERN_INFO, tun, "owner set to %u\n",
Eric W. Biederman0625c882012-02-07 16:48:55 -08001950 from_kuid(&init_user_ns, tun->owner));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001951 break;
1952
Guido Guenther8c644622007-07-02 22:50:25 -07001953 case TUNSETGROUP:
1954 /* Set group of the device */
Eric W. Biederman0625c882012-02-07 16:48:55 -08001955 group = make_kgid(current_user_ns(), arg);
1956 if (!gid_valid(group)) {
1957 ret = -EINVAL;
1958 break;
1959 }
1960 tun->group = group;
Jason Wang1e588332012-10-31 19:45:56 +00001961 tun_debug(KERN_INFO, tun, "group set to %u\n",
Eric W. Biederman0625c882012-02-07 16:48:55 -08001962 from_kgid(&init_user_ns, tun->group));
Guido Guenther8c644622007-07-02 22:50:25 -07001963 break;
1964
Mike Kershawff4cc3a2005-09-01 17:40:05 -07001965 case TUNSETLINK:
1966 /* Only allow setting the type when the interface is down */
1967 if (tun->dev->flags & IFF_UP) {
Joe Perches6b8a66e2011-03-02 07:18:10 +00001968 tun_debug(KERN_INFO, tun,
1969 "Linktype set failed because interface is up\n");
David S. Miller48abfe02008-04-23 19:37:58 -07001970 ret = -EBUSY;
Mike Kershawff4cc3a2005-09-01 17:40:05 -07001971 } else {
1972 tun->dev->type = (int) arg;
Joe Perches6b8a66e2011-03-02 07:18:10 +00001973 tun_debug(KERN_INFO, tun, "linktype set to %d\n",
1974 tun->dev->type);
David S. Miller48abfe02008-04-23 19:37:58 -07001975 ret = 0;
Mike Kershawff4cc3a2005-09-01 17:40:05 -07001976 }
Eric W. Biederman631ab462009-01-20 11:00:40 +00001977 break;
Mike Kershawff4cc3a2005-09-01 17:40:05 -07001978
Linus Torvalds1da177e2005-04-16 15:20:36 -07001979#ifdef TUN_DEBUG
1980 case TUNSETDEBUG:
1981 tun->debug = arg;
1982 break;
1983#endif
Rusty Russell5228ddc2008-07-03 03:46:16 -07001984 case TUNSETOFFLOAD:
Michał Mirosław88255372011-04-19 06:13:10 +00001985 ret = set_offload(tun, arg);
Eric W. Biederman631ab462009-01-20 11:00:40 +00001986 break;
Rusty Russell5228ddc2008-07-03 03:46:16 -07001987
Max Krasnyanskyf271b2c2008-07-14 22:18:19 -07001988 case TUNSETTXFILTER:
1989 /* Can be set only for TAPs */
Eric W. Biederman631ab462009-01-20 11:00:40 +00001990 ret = -EINVAL;
Max Krasnyanskyf271b2c2008-07-14 22:18:19 -07001991 if ((tun->flags & TUN_TYPE_MASK) != TUN_TAP_DEV)
Eric W. Biederman631ab462009-01-20 11:00:40 +00001992 break;
Harvey Harrisonc0e5a8c2008-07-16 12:45:34 -07001993 ret = update_filter(&tun->txflt, (void __user *)arg);
Eric W. Biederman631ab462009-01-20 11:00:40 +00001994 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001995
1996 case SIOCGIFHWADDR:
Uwe Kleine-Königb5950762010-11-01 15:38:34 -04001997 /* Get hw address */
Max Krasnyanskyf271b2c2008-07-14 22:18:19 -07001998 memcpy(ifr.ifr_hwaddr.sa_data, tun->dev->dev_addr, ETH_ALEN);
1999 ifr.ifr_hwaddr.sa_family = tun->dev->type;
Arnd Bergmann50857e22009-11-06 22:52:32 -08002000 if (copy_to_user(argp, &ifr, ifreq_len))
Eric W. Biederman631ab462009-01-20 11:00:40 +00002001 ret = -EFAULT;
2002 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002003
2004 case SIOCSIFHWADDR:
Max Krasnyanskyf271b2c2008-07-14 22:18:19 -07002005 /* Set hw address */
Joe Perches6b8a66e2011-03-02 07:18:10 +00002006 tun_debug(KERN_DEBUG, tun, "set hw address: %pM\n",
2007 ifr.ifr_hwaddr.sa_data);
Kim B. Heino40102372008-02-29 12:26:21 -08002008
Kim B. Heino40102372008-02-29 12:26:21 -08002009 ret = dev_set_mac_address(tun->dev, &ifr.ifr_hwaddr);
Eric W. Biederman631ab462009-01-20 11:00:40 +00002010 break;
Herbert Xu33dccbb2009-02-05 21:25:32 -08002011
2012 case TUNGETSNDBUF:
Jason Wang54f968d2012-10-31 19:45:57 +00002013 sndbuf = tfile->socket.sk->sk_sndbuf;
Herbert Xu33dccbb2009-02-05 21:25:32 -08002014 if (copy_to_user(argp, &sndbuf, sizeof(sndbuf)))
2015 ret = -EFAULT;
2016 break;
2017
2018 case TUNSETSNDBUF:
2019 if (copy_from_user(&sndbuf, argp, sizeof(sndbuf))) {
2020 ret = -EFAULT;
2021 break;
2022 }
2023
Jason Wangc8d68e62012-10-31 19:46:00 +00002024 tun->sndbuf = sndbuf;
2025 tun_set_sndbuf(tun);
Herbert Xu33dccbb2009-02-05 21:25:32 -08002026 break;
2027
Michael S. Tsirkind9d52b52010-03-17 17:45:01 +02002028 case TUNGETVNETHDRSZ:
2029 vnet_hdr_sz = tun->vnet_hdr_sz;
2030 if (copy_to_user(argp, &vnet_hdr_sz, sizeof(vnet_hdr_sz)))
2031 ret = -EFAULT;
2032 break;
2033
2034 case TUNSETVNETHDRSZ:
2035 if (copy_from_user(&vnet_hdr_sz, argp, sizeof(vnet_hdr_sz))) {
2036 ret = -EFAULT;
2037 break;
2038 }
2039 if (vnet_hdr_sz < (int)sizeof(struct virtio_net_hdr)) {
2040 ret = -EINVAL;
2041 break;
2042 }
2043
2044 tun->vnet_hdr_sz = vnet_hdr_sz;
2045 break;
2046
Michael S. Tsirkin99405162010-02-14 01:01:10 +00002047 case TUNATTACHFILTER:
2048 /* Can be set only for TAPs */
2049 ret = -EINVAL;
2050 if ((tun->flags & TUN_TYPE_MASK) != TUN_TAP_DEV)
2051 break;
2052 ret = -EFAULT;
Jason Wang54f968d2012-10-31 19:45:57 +00002053 if (copy_from_user(&tun->fprog, argp, sizeof(tun->fprog)))
Michael S. Tsirkin99405162010-02-14 01:01:10 +00002054 break;
2055
Jason Wangc8d68e62012-10-31 19:46:00 +00002056 ret = tun_attach_filter(tun);
Michael S. Tsirkin99405162010-02-14 01:01:10 +00002057 break;
2058
2059 case TUNDETACHFILTER:
2060 /* Can be set only for TAPs */
2061 ret = -EINVAL;
2062 if ((tun->flags & TUN_TYPE_MASK) != TUN_TAP_DEV)
2063 break;
Jason Wangc8d68e62012-10-31 19:46:00 +00002064 ret = 0;
2065 tun_detach_filter(tun, tun->numqueues);
Michael S. Tsirkin99405162010-02-14 01:01:10 +00002066 break;
2067
Pavel Emelyanov76975e92013-08-21 14:32:39 +04002068 case TUNGETFILTER:
2069 ret = -EINVAL;
2070 if ((tun->flags & TUN_TYPE_MASK) != TUN_TAP_DEV)
2071 break;
2072 ret = -EFAULT;
2073 if (copy_to_user(argp, &tun->fprog, sizeof(tun->fprog)))
2074 break;
2075 ret = 0;
2076 break;
2077
Linus Torvalds1da177e2005-04-16 15:20:36 -07002078 default:
Eric W. Biederman631ab462009-01-20 11:00:40 +00002079 ret = -EINVAL;
2080 break;
Joe Perchesee289b62010-05-17 22:47:34 -07002081 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002082
Herbert Xu876bfd42009-08-06 14:22:44 +00002083unlock:
2084 rtnl_unlock();
2085 if (tun)
2086 tun_put(tun);
Eric W. Biederman631ab462009-01-20 11:00:40 +00002087 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002088}
2089
Arnd Bergmann50857e22009-11-06 22:52:32 -08002090static long tun_chr_ioctl(struct file *file,
2091 unsigned int cmd, unsigned long arg)
2092{
2093 return __tun_chr_ioctl(file, cmd, arg, sizeof (struct ifreq));
2094}
2095
2096#ifdef CONFIG_COMPAT
2097static long tun_chr_compat_ioctl(struct file *file,
2098 unsigned int cmd, unsigned long arg)
2099{
2100 switch (cmd) {
2101 case TUNSETIFF:
2102 case TUNGETIFF:
2103 case TUNSETTXFILTER:
2104 case TUNGETSNDBUF:
2105 case TUNSETSNDBUF:
2106 case SIOCGIFHWADDR:
2107 case SIOCSIFHWADDR:
2108 arg = (unsigned long)compat_ptr(arg);
2109 break;
2110 default:
2111 arg = (compat_ulong_t)arg;
2112 break;
2113 }
2114
2115 /*
2116 * compat_ifreq is shorter than ifreq, so we must not access beyond
2117 * the end of that structure. All fields that are used in this
2118 * driver are compatible though, we don't need to convert the
2119 * contents.
2120 */
2121 return __tun_chr_ioctl(file, cmd, arg, sizeof(struct compat_ifreq));
2122}
2123#endif /* CONFIG_COMPAT */
2124
Linus Torvalds1da177e2005-04-16 15:20:36 -07002125static int tun_chr_fasync(int fd, struct file *file, int on)
2126{
Jason Wang54f968d2012-10-31 19:45:57 +00002127 struct tun_file *tfile = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002128 int ret;
2129
Jason Wang54f968d2012-10-31 19:45:57 +00002130 if ((ret = fasync_helper(fd, file, on, &tfile->fasync)) < 0)
Jonathan Corbet9d319522008-06-19 15:50:37 -06002131 goto out;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002132
Linus Torvalds1da177e2005-04-16 15:20:36 -07002133 if (on) {
Eric W. Biederman609d7fa2006-10-02 02:17:15 -07002134 ret = __f_setown(file, task_pid(current), PIDTYPE_PID, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002135 if (ret)
Jonathan Corbet9d319522008-06-19 15:50:37 -06002136 goto out;
Jason Wang54f968d2012-10-31 19:45:57 +00002137 tfile->flags |= TUN_FASYNC;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002138 } else
Jason Wang54f968d2012-10-31 19:45:57 +00002139 tfile->flags &= ~TUN_FASYNC;
Jonathan Corbet9d319522008-06-19 15:50:37 -06002140 ret = 0;
2141out:
Jonathan Corbet9d319522008-06-19 15:50:37 -06002142 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002143}
2144
2145static int tun_chr_open(struct inode *inode, struct file * file)
2146{
Eric W. Biederman631ab462009-01-20 11:00:40 +00002147 struct tun_file *tfile;
Thomas Gleixnerdeed49f2009-10-14 01:19:46 -07002148
Joe Perches6b8a66e2011-03-02 07:18:10 +00002149 DBG1(KERN_INFO, "tunX: tun_chr_open\n");
Eric W. Biederman631ab462009-01-20 11:00:40 +00002150
Jason Wang54f968d2012-10-31 19:45:57 +00002151 tfile = (struct tun_file *)sk_alloc(&init_net, AF_UNSPEC, GFP_KERNEL,
2152 &tun_proto);
Eric W. Biederman631ab462009-01-20 11:00:40 +00002153 if (!tfile)
2154 return -ENOMEM;
Jason Wang6e914fc2012-10-31 19:45:58 +00002155 rcu_assign_pointer(tfile->tun, NULL);
Eric W. Biederman36b50ba2009-01-20 11:01:48 +00002156 tfile->net = get_net(current->nsproxy->net_ns);
Jason Wang54f968d2012-10-31 19:45:57 +00002157 tfile->flags = 0;
Pavel Emelyanovfb7589a2013-08-21 14:31:38 +04002158 tfile->ifindex = 0;
Jason Wang54f968d2012-10-31 19:45:57 +00002159
2160 rcu_assign_pointer(tfile->socket.wq, &tfile->wq);
2161 init_waitqueue_head(&tfile->wq.wait);
2162
2163 tfile->socket.file = file;
2164 tfile->socket.ops = &tun_socket_ops;
2165
2166 sock_init_data(&tfile->socket, &tfile->sk);
2167 sk_change_net(&tfile->sk, tfile->net);
2168
2169 tfile->sk.sk_write_space = tun_sock_write_space;
2170 tfile->sk.sk_sndbuf = INT_MAX;
2171
Eric W. Biederman631ab462009-01-20 11:00:40 +00002172 file->private_data = tfile;
Jason Wang54f968d2012-10-31 19:45:57 +00002173 set_bit(SOCK_EXTERNALLY_ALLOCATED, &tfile->socket.flags);
Jason Wang4008e972012-12-13 23:53:30 +00002174 INIT_LIST_HEAD(&tfile->next);
Jason Wang54f968d2012-10-31 19:45:57 +00002175
Jason Wang19a6afb2013-06-08 14:17:41 +08002176 sock_set_flag(&tfile->sk, SOCK_ZEROCOPY);
2177
Linus Torvalds1da177e2005-04-16 15:20:36 -07002178 return 0;
2179}
2180
2181static int tun_chr_close(struct inode *inode, struct file *file)
2182{
Eric W. Biederman631ab462009-01-20 11:00:40 +00002183 struct tun_file *tfile = file->private_data;
Jason Wang54f968d2012-10-31 19:45:57 +00002184 struct net *net = tfile->net;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002185
Jason Wangc8d68e62012-10-31 19:46:00 +00002186 tun_detach(tfile, true);
Jason Wang54f968d2012-10-31 19:45:57 +00002187 put_net(net);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002188
2189 return 0;
2190}
2191
Arjan van de Vend54b1fd2007-02-12 00:55:34 -08002192static const struct file_operations tun_fops = {
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002193 .owner = THIS_MODULE,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002194 .llseek = no_llseek,
Badari Pulavartyee0b3e62006-09-30 23:28:47 -07002195 .read = do_sync_read,
2196 .aio_read = tun_chr_aio_read,
2197 .write = do_sync_write,
2198 .aio_write = tun_chr_aio_write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002199 .poll = tun_chr_poll,
Arnd Bergmann50857e22009-11-06 22:52:32 -08002200 .unlocked_ioctl = tun_chr_ioctl,
2201#ifdef CONFIG_COMPAT
2202 .compat_ioctl = tun_chr_compat_ioctl,
2203#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002204 .open = tun_chr_open,
2205 .release = tun_chr_close,
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002206 .fasync = tun_chr_fasync
Linus Torvalds1da177e2005-04-16 15:20:36 -07002207};
2208
2209static struct miscdevice tun_miscdev = {
2210 .minor = TUN_MINOR,
2211 .name = "tun",
Kay Sieverse454cea2009-09-18 23:01:12 +02002212 .nodename = "net/tun",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002213 .fops = &tun_fops,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002214};
2215
2216/* ethtool interface */
2217
2218static int tun_get_settings(struct net_device *dev, struct ethtool_cmd *cmd)
2219{
2220 cmd->supported = 0;
2221 cmd->advertising = 0;
David Decotigny70739492011-04-27 18:32:40 +00002222 ethtool_cmd_speed_set(cmd, SPEED_10);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002223 cmd->duplex = DUPLEX_FULL;
2224 cmd->port = PORT_TP;
2225 cmd->phy_address = 0;
2226 cmd->transceiver = XCVR_INTERNAL;
2227 cmd->autoneg = AUTONEG_DISABLE;
2228 cmd->maxtxpkt = 0;
2229 cmd->maxrxpkt = 0;
2230 return 0;
2231}
2232
2233static void tun_get_drvinfo(struct net_device *dev, struct ethtool_drvinfo *info)
2234{
2235 struct tun_struct *tun = netdev_priv(dev);
2236
Rick Jones33a5ba12011-11-15 14:59:53 +00002237 strlcpy(info->driver, DRV_NAME, sizeof(info->driver));
2238 strlcpy(info->version, DRV_VERSION, sizeof(info->version));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002239
2240 switch (tun->flags & TUN_TYPE_MASK) {
2241 case TUN_TUN_DEV:
Rick Jones33a5ba12011-11-15 14:59:53 +00002242 strlcpy(info->bus_info, "tun", sizeof(info->bus_info));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002243 break;
2244 case TUN_TAP_DEV:
Rick Jones33a5ba12011-11-15 14:59:53 +00002245 strlcpy(info->bus_info, "tap", sizeof(info->bus_info));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002246 break;
2247 }
2248}
2249
2250static u32 tun_get_msglevel(struct net_device *dev)
2251{
2252#ifdef TUN_DEBUG
2253 struct tun_struct *tun = netdev_priv(dev);
2254 return tun->debug;
2255#else
2256 return -EOPNOTSUPP;
2257#endif
2258}
2259
2260static void tun_set_msglevel(struct net_device *dev, u32 value)
2261{
2262#ifdef TUN_DEBUG
2263 struct tun_struct *tun = netdev_priv(dev);
2264 tun->debug = value;
2265#endif
2266}
2267
Jeff Garzik7282d492006-09-13 14:30:00 -04002268static const struct ethtool_ops tun_ethtool_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002269 .get_settings = tun_get_settings,
2270 .get_drvinfo = tun_get_drvinfo,
2271 .get_msglevel = tun_get_msglevel,
2272 .set_msglevel = tun_set_msglevel,
Nolan Leakebee31362010-07-27 13:53:43 +00002273 .get_link = ethtool_op_get_link,
Richard Cochraneda29772013-07-19 19:40:10 +02002274 .get_ts_info = ethtool_op_get_ts_info,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002275};
2276
Pavel Emelyanov79d17602008-04-16 00:40:46 -07002277
Linus Torvalds1da177e2005-04-16 15:20:36 -07002278static int __init tun_init(void)
2279{
2280 int ret = 0;
2281
Joe Perches6b8a66e2011-03-02 07:18:10 +00002282 pr_info("%s, %s\n", DRV_DESCRIPTION, DRV_VERSION);
2283 pr_info("%s\n", DRV_COPYRIGHT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002284
Eric W. Biedermanf019a7a2009-01-21 16:02:16 -08002285 ret = rtnl_link_register(&tun_link_ops);
Pavel Emelyanov79d17602008-04-16 00:40:46 -07002286 if (ret) {
Joe Perches6b8a66e2011-03-02 07:18:10 +00002287 pr_err("Can't register link_ops\n");
Eric W. Biedermanf019a7a2009-01-21 16:02:16 -08002288 goto err_linkops;
Pavel Emelyanov79d17602008-04-16 00:40:46 -07002289 }
2290
Linus Torvalds1da177e2005-04-16 15:20:36 -07002291 ret = misc_register(&tun_miscdev);
Pavel Emelyanov79d17602008-04-16 00:40:46 -07002292 if (ret) {
Joe Perches6b8a66e2011-03-02 07:18:10 +00002293 pr_err("Can't register misc device %d\n", TUN_MINOR);
Pavel Emelyanov79d17602008-04-16 00:40:46 -07002294 goto err_misc;
2295 }
Eric W. Biedermanf019a7a2009-01-21 16:02:16 -08002296 return 0;
Pavel Emelyanov79d17602008-04-16 00:40:46 -07002297err_misc:
Eric W. Biedermanf019a7a2009-01-21 16:02:16 -08002298 rtnl_link_unregister(&tun_link_ops);
2299err_linkops:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002300 return ret;
2301}
2302
2303static void tun_cleanup(void)
2304{
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002305 misc_deregister(&tun_miscdev);
Eric W. Biedermanf019a7a2009-01-21 16:02:16 -08002306 rtnl_link_unregister(&tun_link_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002307}
2308
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00002309/* Get an underlying socket object from tun file. Returns error unless file is
2310 * attached to a device. The returned object works like a packet socket, it
2311 * can be used for sock_sendmsg/sock_recvmsg. The caller is responsible for
2312 * holding a reference to the file for as long as the socket is in use. */
2313struct socket *tun_get_socket(struct file *file)
2314{
Jason Wang6e914fc2012-10-31 19:45:58 +00002315 struct tun_file *tfile;
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00002316 if (file->f_op != &tun_fops)
2317 return ERR_PTR(-EINVAL);
Jason Wang6e914fc2012-10-31 19:45:58 +00002318 tfile = file->private_data;
2319 if (!tfile)
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00002320 return ERR_PTR(-EBADFD);
Jason Wang54f968d2012-10-31 19:45:57 +00002321 return &tfile->socket;
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00002322}
2323EXPORT_SYMBOL_GPL(tun_get_socket);
2324
Linus Torvalds1da177e2005-04-16 15:20:36 -07002325module_init(tun_init);
2326module_exit(tun_cleanup);
2327MODULE_DESCRIPTION(DRV_DESCRIPTION);
2328MODULE_AUTHOR(DRV_COPYRIGHT);
2329MODULE_LICENSE("GPL");
2330MODULE_ALIAS_MISCDEV(TUN_MINOR);
Kay Sievers578454f2010-05-20 18:07:20 +02002331MODULE_ALIAS("devname:net/tun");