blob: 9736df40d2bfdf941de023e540c3e461e773de6b [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>
Ingo Molnar174cd4b2017-02-02 19:15:33 +010047#include <linux/sched/signal.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070048#include <linux/major.h>
49#include <linux/slab.h>
50#include <linux/poll.h>
51#include <linux/fcntl.h>
52#include <linux/init.h>
53#include <linux/skbuff.h>
54#include <linux/netdevice.h>
55#include <linux/etherdevice.h>
56#include <linux/miscdevice.h>
57#include <linux/ethtool.h>
58#include <linux/rtnetlink.h>
Arnd Bergmann50857e22009-11-06 22:52:32 -080059#include <linux/compat.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070060#include <linux/if.h>
61#include <linux/if_arp.h>
62#include <linux/if_ether.h>
63#include <linux/if_tun.h>
Jason Wang6680ec62013-07-25 13:00:33 +080064#include <linux/if_vlan.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070065#include <linux/crc32.h>
Pavel Emelyanovd647a592008-04-16 00:41:16 -070066#include <linux/nsproxy.h>
Rusty Russellf43798c2008-07-03 03:48:02 -070067#include <linux/virtio_net.h>
Michael S. Tsirkin99405162010-02-14 01:01:10 +000068#include <linux/rcupdate.h>
Eric W. Biederman881d9662007-09-17 11:56:21 -070069#include <net/net_namespace.h>
Pavel Emelyanov79d17602008-04-16 00:40:46 -070070#include <net/netns/generic.h>
Eric W. Biedermanf019a7a2009-01-21 16:02:16 -080071#include <net/rtnetlink.h>
Herbert Xu33dccbb2009-02-05 21:25:32 -080072#include <net/sock.h>
Masatake YAMATO93e14b62014-01-29 16:43:31 +090073#include <linux/seq_file.h>
Herbert Xue0b46d02014-11-07 21:22:23 +080074#include <linux/uio.h>
Jason Wang1576d982016-06-30 14:45:36 +080075#include <linux/skb_array.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070076
Linus Torvalds7c0f6ba2016-12-24 11:46:01 -080077#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070078
Rusty Russell14daa022008-04-12 18:48:58 -070079/* Uncomment to enable debugging */
80/* #define TUN_DEBUG 1 */
81
Linus Torvalds1da177e2005-04-16 15:20:36 -070082#ifdef TUN_DEBUG
83static int debug;
Rusty Russell14daa022008-04-12 18:48:58 -070084
Joe Perches6b8a66e2011-03-02 07:18:10 +000085#define tun_debug(level, tun, fmt, args...) \
86do { \
87 if (tun->debug) \
88 netdev_printk(level, tun->dev, fmt, ##args); \
89} while (0)
90#define DBG1(level, fmt, args...) \
91do { \
92 if (debug == 2) \
93 printk(level fmt, ##args); \
94} while (0)
Rusty Russell14daa022008-04-12 18:48:58 -070095#else
Joe Perches6b8a66e2011-03-02 07:18:10 +000096#define tun_debug(level, tun, fmt, args...) \
97do { \
98 if (0) \
99 netdev_printk(level, tun->dev, fmt, ##args); \
100} while (0)
101#define DBG1(level, fmt, args...) \
102do { \
103 if (0) \
104 printk(level fmt, ##args); \
105} while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106#endif
107
Jason Wang66ccbc92017-08-11 19:41:16 +0800108#define TUN_RX_PAD (NET_IP_ALIGN + NET_SKB_PAD)
109
Michael S. Tsirkin031f5e032014-11-19 14:44:40 +0200110/* TUN device flags */
111
112/* IFF_ATTACH_QUEUE is never stored in device flags,
113 * overload it to mean fasync when stored there.
114 */
115#define TUN_FASYNC IFF_ATTACH_QUEUE
Michael S. Tsirkin1cf8e412014-12-16 15:05:06 +0200116/* High bits in flags field are unused. */
117#define TUN_VNET_LE 0x80000000
Greg Kurz8b8e6582015-04-24 14:50:36 +0200118#define TUN_VNET_BE 0x40000000
Michael S. Tsirkin031f5e032014-11-19 14:44:40 +0200119
120#define TUN_FEATURES (IFF_NO_PI | IFF_ONE_QUEUE | IFF_VNET_HDR | \
Michael S. Tsirkin1cf8e412014-12-16 15:05:06 +0200121 IFF_MULTI_QUEUE)
Michael S. Tsirkin06908992012-07-20 09:23:23 +0000122#define GOODCOPY_LEN 128
123
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -0700124#define FLT_EXACT_COUNT 8
125struct tap_filter {
126 unsigned int count; /* Number of addrs. Zero means disabled */
127 u32 mask[2]; /* Mask of the hashed addrs */
128 unsigned char addr[FLT_EXACT_COUNT][ETH_ALEN];
129};
130
Pankaj Guptabaf71c52015-01-12 11:41:29 +0530131/* MAX_TAP_QUEUES 256 is chosen to allow rx/tx queues to be equal
132 * to max number of VCPUs in guest. */
133#define MAX_TAP_QUEUES 256
Jason Wangb8732fb2013-01-23 03:59:13 +0000134#define MAX_TAP_FLOWS 4096
Jason Wangc8d68e62012-10-31 19:46:00 +0000135
Jason Wang96442e422012-10-31 19:46:02 +0000136#define TUN_FLOW_EXPIRE (3 * HZ)
137
Paolo Abeni608b9972016-04-13 10:52:20 +0200138struct tun_pcpu_stats {
139 u64 rx_packets;
140 u64 rx_bytes;
141 u64 tx_packets;
142 u64 tx_bytes;
143 struct u64_stats_sync syncp;
144 u32 rx_dropped;
145 u32 tx_dropped;
146 u32 rx_frame_errors;
147};
148
Jason Wang54f968d2012-10-31 19:45:57 +0000149/* A tun_file connects an open character device to a tuntap netdevice. It
stephen hemminger92d4ea62013-12-05 20:42:58 -0800150 * also contains all socket related structures (except sock_fprog and tap_filter)
Jason Wang54f968d2012-10-31 19:45:57 +0000151 * to serve as one transmit queue for tuntap device. The sock_fprog and
152 * tap_filter were kept in tun_struct since they were used for filtering for the
Rami Rosen36fe8c092012-11-25 22:07:40 +0000153 * netdevice not for a specific queue (at least I didn't see the requirement for
Jason Wang54f968d2012-10-31 19:45:57 +0000154 * this).
Jason Wang6e914fc2012-10-31 19:45:58 +0000155 *
156 * RCU usage:
Rami Rosen36fe8c092012-11-25 22:07:40 +0000157 * The tun_file and tun_struct are loosely coupled, the pointer from one to the
Jason Wang6e914fc2012-10-31 19:45:58 +0000158 * other can only be read while rcu_read_lock or rtnl_lock is held.
Jason Wang54f968d2012-10-31 19:45:57 +0000159 */
Eric W. Biederman631ab462009-01-20 11:00:40 +0000160struct tun_file {
Jason Wang54f968d2012-10-31 19:45:57 +0000161 struct sock sk;
162 struct socket socket;
163 struct socket_wq wq;
Jason Wang6e914fc2012-10-31 19:45:58 +0000164 struct tun_struct __rcu *tun;
Jason Wang54f968d2012-10-31 19:45:57 +0000165 struct fasync_struct *fasync;
166 /* only used for fasnyc */
167 unsigned int flags;
Pavel Emelyanovfb7589a2013-08-21 14:31:38 +0400168 union {
169 u16 queue_index;
170 unsigned int ifindex;
171 };
Jason Wang4008e972012-12-13 23:53:30 +0000172 struct list_head next;
173 struct tun_struct *detached;
Jason Wang1576d982016-06-30 14:45:36 +0800174 struct skb_array tx_array;
Jason Wang66ccbc92017-08-11 19:41:16 +0800175 struct page_frag alloc_frag;
Eric W. Biederman631ab462009-01-20 11:00:40 +0000176};
177
Jason Wang96442e422012-10-31 19:46:02 +0000178struct tun_flow_entry {
179 struct hlist_node hash_link;
180 struct rcu_head rcu;
181 struct tun_struct *tun;
182
183 u32 rxhash;
Tom Herbert9bc88932013-12-22 18:54:32 +0800184 u32 rps_rxhash;
Jason Wang96442e422012-10-31 19:46:02 +0000185 int queue_index;
186 unsigned long updated;
187};
188
189#define TUN_NUM_FLOW_ENTRIES 1024
190
Jason Wang54f968d2012-10-31 19:45:57 +0000191/* Since the socket were moved to tun_file, to preserve the behavior of persist
Rami Rosen36fe8c092012-11-25 22:07:40 +0000192 * device, socket filter, sndbuf and vnet header size were restore when the
Jason Wang54f968d2012-10-31 19:45:57 +0000193 * file were attached to a persist device.
194 */
Rusty Russell14daa022008-04-12 18:48:58 -0700195struct tun_struct {
Jason Wangc8d68e62012-10-31 19:46:00 +0000196 struct tun_file __rcu *tfiles[MAX_TAP_QUEUES];
197 unsigned int numqueues;
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -0700198 unsigned int flags;
Eric W. Biederman0625c882012-02-07 16:48:55 -0800199 kuid_t owner;
200 kgid_t group;
Rusty Russell14daa022008-04-12 18:48:58 -0700201
Rusty Russell14daa022008-04-12 18:48:58 -0700202 struct net_device *dev;
Michał Mirosławc8f44af2011-11-15 15:29:55 +0000203 netdev_features_t set_features;
Michał Mirosław88255372011-04-19 06:13:10 +0000204#define TUN_USER_FEATURES (NETIF_F_HW_CSUM|NETIF_F_TSO_ECN|NETIF_F_TSO| \
David S. Millerd591a1f2017-07-03 06:35:32 -0700205 NETIF_F_TSO6)
Michael S. Tsirkind9d52b52010-03-17 17:45:01 +0200206
Paolo Abenieaea34b2016-02-26 10:45:40 +0100207 int align;
Michael S. Tsirkind9d52b52010-03-17 17:45:01 +0200208 int vnet_hdr_sz;
Jason Wang54f968d2012-10-31 19:45:57 +0000209 int sndbuf;
210 struct tap_filter txflt;
211 struct sock_fprog fprog;
212 /* protected by rtnl lock */
213 bool filter_attached;
Rusty Russell14daa022008-04-12 18:48:58 -0700214#ifdef TUN_DEBUG
215 int debug;
216#endif
Jason Wang96442e422012-10-31 19:46:02 +0000217 spinlock_t lock;
Jason Wang96442e422012-10-31 19:46:02 +0000218 struct hlist_head flows[TUN_NUM_FLOW_ENTRIES];
219 struct timer_list flow_gc_timer;
220 unsigned long ageing_time;
Jason Wang4008e972012-12-13 23:53:30 +0000221 unsigned int numdisabled;
222 struct list_head disabled;
Paul Moore5dbbaf22013-01-14 07:12:19 +0000223 void *security;
Jason Wangb8732fb2013-01-23 03:59:13 +0000224 u32 flow_count;
Jason Wang5503fce2017-01-18 15:02:03 +0800225 u32 rx_batched;
Paolo Abeni608b9972016-04-13 10:52:20 +0200226 struct tun_pcpu_stats __percpu *pcpu_stats;
Rusty Russell14daa022008-04-12 18:48:58 -0700227};
228
Greg Kurz8b8e6582015-04-24 14:50:36 +0200229#ifdef CONFIG_TUN_VNET_CROSS_LE
230static inline bool tun_legacy_is_little_endian(struct tun_struct *tun)
231{
232 return tun->flags & TUN_VNET_BE ? false :
233 virtio_legacy_is_little_endian();
234}
235
236static long tun_get_vnet_be(struct tun_struct *tun, int __user *argp)
237{
238 int be = !!(tun->flags & TUN_VNET_BE);
239
240 if (put_user(be, argp))
241 return -EFAULT;
242
243 return 0;
244}
245
246static long tun_set_vnet_be(struct tun_struct *tun, int __user *argp)
247{
248 int be;
249
250 if (get_user(be, argp))
251 return -EFAULT;
252
253 if (be)
254 tun->flags |= TUN_VNET_BE;
255 else
256 tun->flags &= ~TUN_VNET_BE;
257
258 return 0;
259}
260#else
261static inline bool tun_legacy_is_little_endian(struct tun_struct *tun)
262{
263 return virtio_legacy_is_little_endian();
264}
265
266static long tun_get_vnet_be(struct tun_struct *tun, int __user *argp)
267{
268 return -EINVAL;
269}
270
271static long tun_set_vnet_be(struct tun_struct *tun, int __user *argp)
272{
273 return -EINVAL;
274}
275#endif /* CONFIG_TUN_VNET_CROSS_LE */
276
Greg Kurz25bd55bb2015-04-24 14:24:38 +0200277static inline bool tun_is_little_endian(struct tun_struct *tun)
278{
Greg Kurz7d824102015-04-24 14:26:24 +0200279 return tun->flags & TUN_VNET_LE ||
Greg Kurz8b8e6582015-04-24 14:50:36 +0200280 tun_legacy_is_little_endian(tun);
Greg Kurz25bd55bb2015-04-24 14:24:38 +0200281}
282
Michael S. Tsirkin56f0dcc2014-10-23 22:59:31 +0300283static inline u16 tun16_to_cpu(struct tun_struct *tun, __virtio16 val)
284{
Greg Kurz25bd55bb2015-04-24 14:24:38 +0200285 return __virtio16_to_cpu(tun_is_little_endian(tun), val);
Michael S. Tsirkin56f0dcc2014-10-23 22:59:31 +0300286}
287
288static inline __virtio16 cpu_to_tun16(struct tun_struct *tun, u16 val)
289{
Greg Kurz25bd55bb2015-04-24 14:24:38 +0200290 return __cpu_to_virtio16(tun_is_little_endian(tun), val);
Michael S. Tsirkin56f0dcc2014-10-23 22:59:31 +0300291}
292
Jason Wang96442e422012-10-31 19:46:02 +0000293static inline u32 tun_hashfn(u32 rxhash)
294{
295 return rxhash & 0x3ff;
296}
297
298static struct tun_flow_entry *tun_flow_find(struct hlist_head *head, u32 rxhash)
299{
300 struct tun_flow_entry *e;
Jason Wang96442e422012-10-31 19:46:02 +0000301
Sasha Levinb67bfe02013-02-27 17:06:00 -0800302 hlist_for_each_entry_rcu(e, head, hash_link) {
Jason Wang96442e422012-10-31 19:46:02 +0000303 if (e->rxhash == rxhash)
304 return e;
305 }
306 return NULL;
307}
308
309static struct tun_flow_entry *tun_flow_create(struct tun_struct *tun,
310 struct hlist_head *head,
311 u32 rxhash, u16 queue_index)
312{
Eric Dumazet9fdc6be2012-12-21 07:17:21 +0000313 struct tun_flow_entry *e = kmalloc(sizeof(*e), GFP_ATOMIC);
314
Jason Wang96442e422012-10-31 19:46:02 +0000315 if (e) {
316 tun_debug(KERN_INFO, tun, "create flow: hash %u index %u\n",
317 rxhash, queue_index);
318 e->updated = jiffies;
319 e->rxhash = rxhash;
Tom Herbert9bc88932013-12-22 18:54:32 +0800320 e->rps_rxhash = 0;
Jason Wang96442e422012-10-31 19:46:02 +0000321 e->queue_index = queue_index;
322 e->tun = tun;
323 hlist_add_head_rcu(&e->hash_link, head);
Jason Wangb8732fb2013-01-23 03:59:13 +0000324 ++tun->flow_count;
Jason Wang96442e422012-10-31 19:46:02 +0000325 }
326 return e;
327}
328
Jason Wang96442e422012-10-31 19:46:02 +0000329static void tun_flow_delete(struct tun_struct *tun, struct tun_flow_entry *e)
330{
331 tun_debug(KERN_INFO, tun, "delete flow: hash %u index %u\n",
332 e->rxhash, e->queue_index);
333 hlist_del_rcu(&e->hash_link);
Eric Dumazet9fdc6be2012-12-21 07:17:21 +0000334 kfree_rcu(e, rcu);
Jason Wangb8732fb2013-01-23 03:59:13 +0000335 --tun->flow_count;
Jason Wang96442e422012-10-31 19:46:02 +0000336}
337
338static void tun_flow_flush(struct tun_struct *tun)
339{
340 int i;
341
342 spin_lock_bh(&tun->lock);
343 for (i = 0; i < TUN_NUM_FLOW_ENTRIES; i++) {
344 struct tun_flow_entry *e;
Sasha Levinb67bfe02013-02-27 17:06:00 -0800345 struct hlist_node *n;
Jason Wang96442e422012-10-31 19:46:02 +0000346
Sasha Levinb67bfe02013-02-27 17:06:00 -0800347 hlist_for_each_entry_safe(e, n, &tun->flows[i], hash_link)
Jason Wang96442e422012-10-31 19:46:02 +0000348 tun_flow_delete(tun, e);
349 }
350 spin_unlock_bh(&tun->lock);
351}
352
353static void tun_flow_delete_by_queue(struct tun_struct *tun, u16 queue_index)
354{
355 int i;
356
357 spin_lock_bh(&tun->lock);
358 for (i = 0; i < TUN_NUM_FLOW_ENTRIES; i++) {
359 struct tun_flow_entry *e;
Sasha Levinb67bfe02013-02-27 17:06:00 -0800360 struct hlist_node *n;
Jason Wang96442e422012-10-31 19:46:02 +0000361
Sasha Levinb67bfe02013-02-27 17:06:00 -0800362 hlist_for_each_entry_safe(e, n, &tun->flows[i], hash_link) {
Jason Wang96442e422012-10-31 19:46:02 +0000363 if (e->queue_index == queue_index)
364 tun_flow_delete(tun, e);
365 }
366 }
367 spin_unlock_bh(&tun->lock);
368}
369
370static void tun_flow_cleanup(unsigned long data)
371{
372 struct tun_struct *tun = (struct tun_struct *)data;
373 unsigned long delay = tun->ageing_time;
374 unsigned long next_timer = jiffies + delay;
375 unsigned long count = 0;
376 int i;
377
378 tun_debug(KERN_INFO, tun, "tun_flow_cleanup\n");
379
380 spin_lock_bh(&tun->lock);
381 for (i = 0; i < TUN_NUM_FLOW_ENTRIES; i++) {
382 struct tun_flow_entry *e;
Sasha Levinb67bfe02013-02-27 17:06:00 -0800383 struct hlist_node *n;
Jason Wang96442e422012-10-31 19:46:02 +0000384
Sasha Levinb67bfe02013-02-27 17:06:00 -0800385 hlist_for_each_entry_safe(e, n, &tun->flows[i], hash_link) {
Jason Wang96442e422012-10-31 19:46:02 +0000386 unsigned long this_timer;
387 count++;
388 this_timer = e->updated + delay;
389 if (time_before_eq(this_timer, jiffies))
390 tun_flow_delete(tun, e);
391 else if (time_before(this_timer, next_timer))
392 next_timer = this_timer;
393 }
394 }
395
396 if (count)
397 mod_timer(&tun->flow_gc_timer, round_jiffies_up(next_timer));
398 spin_unlock_bh(&tun->lock);
399}
400
Eric Dumazet49974422012-12-12 19:22:57 +0000401static void tun_flow_update(struct tun_struct *tun, u32 rxhash,
Jason Wang9e857222013-01-28 01:05:19 +0000402 struct tun_file *tfile)
Jason Wang96442e422012-10-31 19:46:02 +0000403{
404 struct hlist_head *head;
405 struct tun_flow_entry *e;
406 unsigned long delay = tun->ageing_time;
Jason Wang9e857222013-01-28 01:05:19 +0000407 u16 queue_index = tfile->queue_index;
Jason Wang96442e422012-10-31 19:46:02 +0000408
409 if (!rxhash)
410 return;
411 else
412 head = &tun->flows[tun_hashfn(rxhash)];
413
414 rcu_read_lock();
415
Jason Wang9e857222013-01-28 01:05:19 +0000416 /* We may get a very small possibility of OOO during switching, not
417 * worth to optimize.*/
418 if (tun->numqueues == 1 || tfile->detached)
Jason Wang96442e422012-10-31 19:46:02 +0000419 goto unlock;
420
421 e = tun_flow_find(head, rxhash);
422 if (likely(e)) {
423 /* TODO: keep queueing to old queue until it's empty? */
424 e->queue_index = queue_index;
425 e->updated = jiffies;
Tom Herbert9bc88932013-12-22 18:54:32 +0800426 sock_rps_record_flow_hash(e->rps_rxhash);
Jason Wang96442e422012-10-31 19:46:02 +0000427 } else {
428 spin_lock_bh(&tun->lock);
Jason Wangb8732fb2013-01-23 03:59:13 +0000429 if (!tun_flow_find(head, rxhash) &&
430 tun->flow_count < MAX_TAP_FLOWS)
Jason Wang96442e422012-10-31 19:46:02 +0000431 tun_flow_create(tun, head, rxhash, queue_index);
432
433 if (!timer_pending(&tun->flow_gc_timer))
434 mod_timer(&tun->flow_gc_timer,
435 round_jiffies_up(jiffies + delay));
436 spin_unlock_bh(&tun->lock);
437 }
438
439unlock:
440 rcu_read_unlock();
441}
442
Tom Herbert9bc88932013-12-22 18:54:32 +0800443/**
444 * Save the hash received in the stack receive path and update the
445 * flow_hash table accordingly.
446 */
447static inline void tun_flow_save_rps_rxhash(struct tun_flow_entry *e, u32 hash)
448{
Eric Dumazet567e4b72015-02-06 12:59:01 -0800449 if (unlikely(e->rps_rxhash != hash))
Tom Herbert9bc88932013-12-22 18:54:32 +0800450 e->rps_rxhash = hash;
Tom Herbert9bc88932013-12-22 18:54:32 +0800451}
452
Jason Wangc8d68e62012-10-31 19:46:00 +0000453/* We try to identify a flow through its rxhash first. The reason that
stephen hemminger92d4ea62013-12-05 20:42:58 -0800454 * we do not check rxq no. is because some cards(e.g 82599), chooses
Jason Wangc8d68e62012-10-31 19:46:00 +0000455 * the rxq based on the txq where the last packet of the flow comes. As
456 * the userspace application move between processors, we may get a
457 * different rxq no. here. If we could not get rxhash, then we would
458 * hope the rxq no. may help here.
459 */
Jason Wangf663dd92014-01-10 16:18:26 +0800460static u16 tun_select_queue(struct net_device *dev, struct sk_buff *skb,
Daniel Borkmann99932d42014-02-16 15:55:20 +0100461 void *accel_priv, select_queue_fallback_t fallback)
Jason Wangc8d68e62012-10-31 19:46:00 +0000462{
463 struct tun_struct *tun = netdev_priv(dev);
Jason Wang96442e422012-10-31 19:46:02 +0000464 struct tun_flow_entry *e;
Jason Wangc8d68e62012-10-31 19:46:00 +0000465 u32 txq = 0;
466 u32 numqueues = 0;
467
468 rcu_read_lock();
Jason Wang92bb73e2013-06-05 16:44:57 +0800469 numqueues = ACCESS_ONCE(tun->numqueues);
Jason Wangc8d68e62012-10-31 19:46:00 +0000470
Jason Wangfeec0842017-06-06 14:09:49 +0800471 txq = __skb_get_hash_symmetric(skb);
Jason Wangc8d68e62012-10-31 19:46:00 +0000472 if (txq) {
Jason Wang96442e422012-10-31 19:46:02 +0000473 e = tun_flow_find(&tun->flows[tun_hashfn(txq)], txq);
Tom Herbert9bc88932013-12-22 18:54:32 +0800474 if (e) {
Tom Herbert9bc88932013-12-22 18:54:32 +0800475 tun_flow_save_rps_rxhash(e, txq);
Zhi Yong Wufbe4d452014-01-02 13:24:28 +0800476 txq = e->queue_index;
Tom Herbert9bc88932013-12-22 18:54:32 +0800477 } else
Jason Wang96442e422012-10-31 19:46:02 +0000478 /* use multiply and shift instead of expensive divide */
479 txq = ((u64)txq * numqueues) >> 32;
Jason Wangc8d68e62012-10-31 19:46:00 +0000480 } else if (likely(skb_rx_queue_recorded(skb))) {
481 txq = skb_get_rx_queue(skb);
482 while (unlikely(txq >= numqueues))
483 txq -= numqueues;
484 }
485
486 rcu_read_unlock();
487 return txq;
488}
489
Jason Wangcde8b152012-10-31 19:46:01 +0000490static inline bool tun_not_capable(struct tun_struct *tun)
491{
492 const struct cred *cred = current_cred();
Eric W. Biedermanc260b772012-11-18 21:34:11 +0000493 struct net *net = dev_net(tun->dev);
Jason Wangcde8b152012-10-31 19:46:01 +0000494
495 return ((uid_valid(tun->owner) && !uid_eq(cred->euid, tun->owner)) ||
496 (gid_valid(tun->group) && !in_egroup_p(tun->group))) &&
Eric W. Biedermanc260b772012-11-18 21:34:11 +0000497 !ns_capable(net->user_ns, CAP_NET_ADMIN);
Jason Wangcde8b152012-10-31 19:46:01 +0000498}
499
Jason Wangc8d68e62012-10-31 19:46:00 +0000500static void tun_set_real_num_queues(struct tun_struct *tun)
501{
502 netif_set_real_num_tx_queues(tun->dev, tun->numqueues);
503 netif_set_real_num_rx_queues(tun->dev, tun->numqueues);
504}
505
Jason Wang4008e972012-12-13 23:53:30 +0000506static void tun_disable_queue(struct tun_struct *tun, struct tun_file *tfile)
507{
508 tfile->detached = tun;
509 list_add_tail(&tfile->next, &tun->disabled);
510 ++tun->numdisabled;
511}
512
Jason Wangd32649d2012-12-18 11:00:27 +0800513static struct tun_struct *tun_enable_queue(struct tun_file *tfile)
Jason Wang4008e972012-12-13 23:53:30 +0000514{
515 struct tun_struct *tun = tfile->detached;
516
517 tfile->detached = NULL;
518 list_del_init(&tfile->next);
519 --tun->numdisabled;
520 return tun;
521}
522
Jason Wang4bfb0512013-09-05 17:53:59 +0800523static void tun_queue_purge(struct tun_file *tfile)
524{
Jason Wang1576d982016-06-30 14:45:36 +0800525 struct sk_buff *skb;
526
527 while ((skb = skb_array_consume(&tfile->tx_array)) != NULL)
528 kfree_skb(skb);
529
Jason Wang5503fce2017-01-18 15:02:03 +0800530 skb_queue_purge(&tfile->sk.sk_write_queue);
Jason Wang4bfb0512013-09-05 17:53:59 +0800531 skb_queue_purge(&tfile->sk.sk_error_queue);
532}
533
Jason Wangc8d68e62012-10-31 19:46:00 +0000534static void __tun_detach(struct tun_file *tfile, bool clean)
535{
536 struct tun_file *ntfile;
537 struct tun_struct *tun;
Jason Wangc8d68e62012-10-31 19:46:00 +0000538
Jason Wangb8deabd2013-01-11 16:59:32 +0000539 tun = rtnl_dereference(tfile->tun);
540
Jason Wang9e857222013-01-28 01:05:19 +0000541 if (tun && !tfile->detached) {
Jason Wangc8d68e62012-10-31 19:46:00 +0000542 u16 index = tfile->queue_index;
543 BUG_ON(index >= tun->numqueues);
Jason Wangc8d68e62012-10-31 19:46:00 +0000544
545 rcu_assign_pointer(tun->tfiles[index],
546 tun->tfiles[tun->numqueues - 1]);
Jason Wangb8deabd2013-01-11 16:59:32 +0000547 ntfile = rtnl_dereference(tun->tfiles[index]);
Jason Wangc8d68e62012-10-31 19:46:00 +0000548 ntfile->queue_index = index;
549
550 --tun->numqueues;
Jason Wang9e857222013-01-28 01:05:19 +0000551 if (clean) {
Monam Agarwalc9566742014-03-24 00:02:32 +0530552 RCU_INIT_POINTER(tfile->tun, NULL);
Jason Wang4008e972012-12-13 23:53:30 +0000553 sock_put(&tfile->sk);
Jason Wang9e857222013-01-28 01:05:19 +0000554 } else
Jason Wang4008e972012-12-13 23:53:30 +0000555 tun_disable_queue(tun, tfile);
Jason Wangc8d68e62012-10-31 19:46:00 +0000556
557 synchronize_net();
Jason Wang96442e422012-10-31 19:46:02 +0000558 tun_flow_delete_by_queue(tun, tun->numqueues + 1);
Jason Wangc8d68e62012-10-31 19:46:00 +0000559 /* Drop read queue */
Jason Wang4bfb0512013-09-05 17:53:59 +0800560 tun_queue_purge(tfile);
Jason Wangc8d68e62012-10-31 19:46:00 +0000561 tun_set_real_num_queues(tun);
Jason Wangdd38bd82013-01-11 16:59:34 +0000562 } else if (tfile->detached && clean) {
Jason Wang4008e972012-12-13 23:53:30 +0000563 tun = tun_enable_queue(tfile);
Jason Wangdd38bd82013-01-11 16:59:34 +0000564 sock_put(&tfile->sk);
565 }
Jason Wangc8d68e62012-10-31 19:46:00 +0000566
567 if (clean) {
Michael S. Tsirkinaf668b32013-01-28 00:38:02 +0000568 if (tun && tun->numqueues == 0 && tun->numdisabled == 0) {
569 netif_carrier_off(tun->dev);
570
Michael S. Tsirkin40630b82014-11-19 15:17:31 +0200571 if (!(tun->flags & IFF_PERSIST) &&
Michael S. Tsirkinaf668b32013-01-28 00:38:02 +0000572 tun->dev->reg_state == NETREG_REGISTERED)
Jason Wang4008e972012-12-13 23:53:30 +0000573 unregister_netdevice(tun->dev);
Michael S. Tsirkinaf668b32013-01-28 00:38:02 +0000574 }
Jason Wang1576d982016-06-30 14:45:36 +0800575 if (tun)
576 skb_array_cleanup(&tfile->tx_array);
Jason Wang66ccbc92017-08-11 19:41:16 +0800577 if (tfile->alloc_frag.page)
578 put_page(tfile->alloc_frag.page);
Eric W. Biederman140e807da2015-05-08 21:07:08 -0500579 sock_put(&tfile->sk);
Jason Wangc8d68e62012-10-31 19:46:00 +0000580 }
581}
582
583static void tun_detach(struct tun_file *tfile, bool clean)
584{
585 rtnl_lock();
586 __tun_detach(tfile, clean);
587 rtnl_unlock();
588}
589
590static void tun_detach_all(struct net_device *dev)
591{
592 struct tun_struct *tun = netdev_priv(dev);
Jason Wang4008e972012-12-13 23:53:30 +0000593 struct tun_file *tfile, *tmp;
Jason Wangc8d68e62012-10-31 19:46:00 +0000594 int i, n = tun->numqueues;
595
596 for (i = 0; i < n; i++) {
Jason Wangb8deabd2013-01-11 16:59:32 +0000597 tfile = rtnl_dereference(tun->tfiles[i]);
Jason Wangc8d68e62012-10-31 19:46:00 +0000598 BUG_ON(!tfile);
Jason Wangaddf8fc2016-05-19 13:36:51 +0800599 tfile->socket.sk->sk_shutdown = RCV_SHUTDOWN;
Xi Wang9e641bd2014-05-16 15:11:48 -0700600 tfile->socket.sk->sk_data_ready(tfile->socket.sk);
Monam Agarwalc9566742014-03-24 00:02:32 +0530601 RCU_INIT_POINTER(tfile->tun, NULL);
Jason Wangc8d68e62012-10-31 19:46:00 +0000602 --tun->numqueues;
603 }
Jason Wang9e857222013-01-28 01:05:19 +0000604 list_for_each_entry(tfile, &tun->disabled, next) {
Jason Wangaddf8fc2016-05-19 13:36:51 +0800605 tfile->socket.sk->sk_shutdown = RCV_SHUTDOWN;
Xi Wang9e641bd2014-05-16 15:11:48 -0700606 tfile->socket.sk->sk_data_ready(tfile->socket.sk);
Monam Agarwalc9566742014-03-24 00:02:32 +0530607 RCU_INIT_POINTER(tfile->tun, NULL);
Jason Wang9e857222013-01-28 01:05:19 +0000608 }
Jason Wangc8d68e62012-10-31 19:46:00 +0000609 BUG_ON(tun->numqueues != 0);
610
611 synchronize_net();
612 for (i = 0; i < n; i++) {
Jason Wangb8deabd2013-01-11 16:59:32 +0000613 tfile = rtnl_dereference(tun->tfiles[i]);
Jason Wangc8d68e62012-10-31 19:46:00 +0000614 /* Drop read queue */
Jason Wang4bfb0512013-09-05 17:53:59 +0800615 tun_queue_purge(tfile);
Jason Wangc8d68e62012-10-31 19:46:00 +0000616 sock_put(&tfile->sk);
617 }
Jason Wang4008e972012-12-13 23:53:30 +0000618 list_for_each_entry_safe(tfile, tmp, &tun->disabled, next) {
619 tun_enable_queue(tfile);
Jason Wang4bfb0512013-09-05 17:53:59 +0800620 tun_queue_purge(tfile);
Jason Wang4008e972012-12-13 23:53:30 +0000621 sock_put(&tfile->sk);
622 }
623 BUG_ON(tun->numdisabled != 0);
Jason Wangdd38bd82013-01-11 16:59:34 +0000624
Michael S. Tsirkin40630b82014-11-19 15:17:31 +0200625 if (tun->flags & IFF_PERSIST)
Jason Wangdd38bd82013-01-11 16:59:34 +0000626 module_put(THIS_MODULE);
Jason Wangc8d68e62012-10-31 19:46:00 +0000627}
628
Pavel Emelyanov849c9b62013-08-21 14:32:21 +0400629static int tun_attach(struct tun_struct *tun, struct file *file, bool skip_filter)
Eric W. Biedermana7385ba2009-01-20 10:57:48 +0000630{
Eric W. Biederman631ab462009-01-20 11:00:40 +0000631 struct tun_file *tfile = file->private_data;
Jason Wang1576d982016-06-30 14:45:36 +0800632 struct net_device *dev = tun->dev;
Eric W. Biederman38231b72009-01-20 11:02:28 +0000633 int err;
Eric W. Biedermana7385ba2009-01-20 10:57:48 +0000634
Paul Moore5dbbaf22013-01-14 07:12:19 +0000635 err = security_tun_dev_attach(tfile->socket.sk, tun->security);
636 if (err < 0)
637 goto out;
638
Eric W. Biederman38231b72009-01-20 11:02:28 +0000639 err = -EINVAL;
Jason Wang9e857222013-01-28 01:05:19 +0000640 if (rtnl_dereference(tfile->tun) && !tfile->detached)
Eric W. Biederman38231b72009-01-20 11:02:28 +0000641 goto out;
642
643 err = -EBUSY;
Michael S. Tsirkin40630b82014-11-19 15:17:31 +0200644 if (!(tun->flags & IFF_MULTI_QUEUE) && tun->numqueues == 1)
Jason Wangc8d68e62012-10-31 19:46:00 +0000645 goto out;
646
647 err = -E2BIG;
Jason Wang4008e972012-12-13 23:53:30 +0000648 if (!tfile->detached &&
649 tun->numqueues + tun->numdisabled == MAX_TAP_QUEUES)
Eric W. Biederman38231b72009-01-20 11:02:28 +0000650 goto out;
651
652 err = 0;
Jason Wang54f968d2012-10-31 19:45:57 +0000653
stephen hemminger92d4ea62013-12-05 20:42:58 -0800654 /* Re-attach the filter to persist device */
Pavel Emelyanov849c9b62013-08-21 14:32:21 +0400655 if (!skip_filter && (tun->filter_attached == true)) {
Hannes Frederic Sowa8ced4252016-04-05 17:10:16 +0200656 lock_sock(tfile->socket.sk);
657 err = sk_attach_filter(&tun->fprog, tfile->socket.sk);
658 release_sock(tfile->socket.sk);
Jason Wang54f968d2012-10-31 19:45:57 +0000659 if (!err)
660 goto out;
661 }
Jason Wang1576d982016-06-30 14:45:36 +0800662
663 if (!tfile->detached &&
664 skb_array_init(&tfile->tx_array, dev->tx_queue_len, GFP_KERNEL)) {
665 err = -ENOMEM;
666 goto out;
667 }
668
Jason Wangc8d68e62012-10-31 19:46:00 +0000669 tfile->queue_index = tun->numqueues;
Jason Wangaddf8fc2016-05-19 13:36:51 +0800670 tfile->socket.sk->sk_shutdown &= ~RCV_SHUTDOWN;
Jason Wang6e914fc2012-10-31 19:45:58 +0000671 rcu_assign_pointer(tfile->tun, tun);
Jason Wangc8d68e62012-10-31 19:46:00 +0000672 rcu_assign_pointer(tun->tfiles[tun->numqueues], tfile);
Jason Wangc8d68e62012-10-31 19:46:00 +0000673 tun->numqueues++;
674
Jason Wang4008e972012-12-13 23:53:30 +0000675 if (tfile->detached)
676 tun_enable_queue(tfile);
677 else
678 sock_hold(&tfile->sk);
679
Jason Wangc8d68e62012-10-31 19:46:00 +0000680 tun_set_real_num_queues(tun);
681
Jason Wangc8d68e62012-10-31 19:46:00 +0000682 /* device is allowed to go away first, so no need to hold extra
683 * refcnt.
684 */
Eric W. Biedermana7385ba2009-01-20 10:57:48 +0000685
Eric W. Biederman38231b72009-01-20 11:02:28 +0000686out:
Eric W. Biederman38231b72009-01-20 11:02:28 +0000687 return err;
Eric W. Biedermana7385ba2009-01-20 10:57:48 +0000688}
689
Eric W. Biederman631ab462009-01-20 11:00:40 +0000690static struct tun_struct *__tun_get(struct tun_file *tfile)
691{
Jason Wang6e914fc2012-10-31 19:45:58 +0000692 struct tun_struct *tun;
Eric W. Biedermanc70f1822009-01-20 11:07:17 +0000693
Jason Wang6e914fc2012-10-31 19:45:58 +0000694 rcu_read_lock();
695 tun = rcu_dereference(tfile->tun);
696 if (tun)
697 dev_hold(tun->dev);
698 rcu_read_unlock();
Eric W. Biedermanc70f1822009-01-20 11:07:17 +0000699
700 return tun;
Eric W. Biederman631ab462009-01-20 11:00:40 +0000701}
702
703static struct tun_struct *tun_get(struct file *file)
704{
705 return __tun_get(file->private_data);
706}
707
708static void tun_put(struct tun_struct *tun)
709{
Jason Wang6e914fc2012-10-31 19:45:58 +0000710 dev_put(tun->dev);
Eric W. Biederman631ab462009-01-20 11:00:40 +0000711}
712
Joe Perches6b8a66e2011-03-02 07:18:10 +0000713/* TAP filtering */
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -0700714static void addr_hash_set(u32 *mask, const u8 *addr)
715{
716 int n = ether_crc(ETH_ALEN, addr) >> 26;
717 mask[n >> 5] |= (1 << (n & 31));
718}
719
720static unsigned int addr_hash_test(const u32 *mask, const u8 *addr)
721{
722 int n = ether_crc(ETH_ALEN, addr) >> 26;
723 return mask[n >> 5] & (1 << (n & 31));
724}
725
726static int update_filter(struct tap_filter *filter, void __user *arg)
727{
728 struct { u8 u[ETH_ALEN]; } *addr;
729 struct tun_filter uf;
730 int err, alen, n, nexact;
731
732 if (copy_from_user(&uf, arg, sizeof(uf)))
733 return -EFAULT;
734
735 if (!uf.count) {
736 /* Disabled */
737 filter->count = 0;
738 return 0;
739 }
740
741 alen = ETH_ALEN * uf.count;
Markus Elfring28e81902016-08-20 08:54:15 +0200742 addr = memdup_user(arg + sizeof(uf), alen);
743 if (IS_ERR(addr))
744 return PTR_ERR(addr);
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -0700745
746 /* The filter is updated without holding any locks. Which is
747 * perfectly safe. We disable it first and in the worst
748 * case we'll accept a few undesired packets. */
749 filter->count = 0;
750 wmb();
751
752 /* Use first set of addresses as an exact filter */
753 for (n = 0; n < uf.count && n < FLT_EXACT_COUNT; n++)
754 memcpy(filter->addr[n], addr[n].u, ETH_ALEN);
755
756 nexact = n;
757
Alex Williamsoncfbf84f2009-02-08 17:49:17 -0800758 /* Remaining multicast addresses are hashed,
759 * unicast will leave the filter disabled. */
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -0700760 memset(filter->mask, 0, sizeof(filter->mask));
Alex Williamsoncfbf84f2009-02-08 17:49:17 -0800761 for (; n < uf.count; n++) {
762 if (!is_multicast_ether_addr(addr[n].u)) {
763 err = 0; /* no filter */
Markus Elfring3b8d2a62016-08-20 09:00:34 +0200764 goto free_addr;
Alex Williamsoncfbf84f2009-02-08 17:49:17 -0800765 }
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -0700766 addr_hash_set(filter->mask, addr[n].u);
Alex Williamsoncfbf84f2009-02-08 17:49:17 -0800767 }
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -0700768
769 /* For ALLMULTI just set the mask to all ones.
770 * This overrides the mask populated above. */
771 if ((uf.flags & TUN_FLT_ALLMULTI))
772 memset(filter->mask, ~0, sizeof(filter->mask));
773
774 /* Now enable the filter */
775 wmb();
776 filter->count = nexact;
777
778 /* Return the number of exact filters */
779 err = nexact;
Markus Elfring3b8d2a62016-08-20 09:00:34 +0200780free_addr:
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -0700781 kfree(addr);
782 return err;
783}
784
785/* Returns: 0 - drop, !=0 - accept */
786static int run_filter(struct tap_filter *filter, const struct sk_buff *skb)
787{
788 /* Cannot use eth_hdr(skb) here because skb_mac_hdr() is incorrect
789 * at this point. */
790 struct ethhdr *eh = (struct ethhdr *) skb->data;
791 int i;
792
793 /* Exact match */
794 for (i = 0; i < filter->count; i++)
Joe Perches2e42e472012-05-09 17:17:46 +0000795 if (ether_addr_equal(eh->h_dest, filter->addr[i]))
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -0700796 return 1;
797
798 /* Inexact match (multicast only) */
799 if (is_multicast_ether_addr(eh->h_dest))
800 return addr_hash_test(filter->mask, eh->h_dest);
801
802 return 0;
803}
804
805/*
806 * Checks whether the packet is accepted or not.
807 * Returns: 0 - drop, !=0 - accept
808 */
809static int check_filter(struct tap_filter *filter, const struct sk_buff *skb)
810{
811 if (!filter->count)
812 return 1;
813
814 return run_filter(filter, skb);
815}
816
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817/* Network device part of the driver */
818
Jeff Garzik7282d492006-09-13 14:30:00 -0400819static const struct ethtool_ops tun_ethtool_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820
Eric W. Biedermanc70f1822009-01-20 11:07:17 +0000821/* Net device detach from fd. */
822static void tun_net_uninit(struct net_device *dev)
823{
Jason Wangc8d68e62012-10-31 19:46:00 +0000824 tun_detach_all(dev);
Eric W. Biedermanc70f1822009-01-20 11:07:17 +0000825}
826
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827/* Net device open. */
828static int tun_net_open(struct net_device *dev)
829{
Hannes Frederic Sowab20e2d52017-03-13 00:00:26 +0100830 struct tun_struct *tun = netdev_priv(dev);
831 int i;
832
Jason Wangc8d68e62012-10-31 19:46:00 +0000833 netif_tx_start_all_queues(dev);
Hannes Frederic Sowab20e2d52017-03-13 00:00:26 +0100834
835 for (i = 0; i < tun->numqueues; i++) {
836 struct tun_file *tfile;
837
838 tfile = rtnl_dereference(tun->tfiles[i]);
839 tfile->socket.sk->sk_write_space(tfile->socket.sk);
840 }
841
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842 return 0;
843}
844
845/* Net device close. */
846static int tun_net_close(struct net_device *dev)
847{
Jason Wangc8d68e62012-10-31 19:46:00 +0000848 netif_tx_stop_all_queues(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849 return 0;
850}
851
852/* Net device start xmit */
Stephen Hemminger424efe92009-08-31 19:50:51 +0000853static netdev_tx_t tun_net_xmit(struct sk_buff *skb, struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854{
855 struct tun_struct *tun = netdev_priv(dev);
Jason Wangc8d68e62012-10-31 19:46:00 +0000856 int txq = skb->queue_mapping;
Jason Wang6e914fc2012-10-31 19:45:58 +0000857 struct tun_file *tfile;
Dominic Curranfa358642014-01-22 03:03:23 +0000858 u32 numqueues = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859
Jason Wang6e914fc2012-10-31 19:45:58 +0000860 rcu_read_lock();
Jason Wangc8d68e62012-10-31 19:46:00 +0000861 tfile = rcu_dereference(tun->tfiles[txq]);
Dominic Curranfa358642014-01-22 03:03:23 +0000862 numqueues = ACCESS_ONCE(tun->numqueues);
Jason Wangc8d68e62012-10-31 19:46:00 +0000863
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864 /* Drop packet if interface is not attached */
Dominic Curranfa358642014-01-22 03:03:23 +0000865 if (txq >= numqueues)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866 goto drop;
867
Jason Wang3df97ba2016-04-25 23:13:42 -0400868#ifdef CONFIG_RPS
869 if (numqueues == 1 && static_key_false(&rps_needed)) {
Tom Herbert9bc88932013-12-22 18:54:32 +0800870 /* Select queue was not called for the skbuff, so we extract the
871 * RPS hash and save it into the flow_table here.
872 */
873 __u32 rxhash;
874
Jason Wangfeec0842017-06-06 14:09:49 +0800875 rxhash = __skb_get_hash_symmetric(skb);
Tom Herbert9bc88932013-12-22 18:54:32 +0800876 if (rxhash) {
877 struct tun_flow_entry *e;
878 e = tun_flow_find(&tun->flows[tun_hashfn(rxhash)],
879 rxhash);
880 if (e)
881 tun_flow_save_rps_rxhash(e, rxhash);
882 }
883 }
Jason Wang3df97ba2016-04-25 23:13:42 -0400884#endif
Tom Herbert9bc88932013-12-22 18:54:32 +0800885
Jason Wang6e914fc2012-10-31 19:45:58 +0000886 tun_debug(KERN_INFO, tun, "tun_net_xmit %d\n", skb->len);
887
Jason Wangc8d68e62012-10-31 19:46:00 +0000888 BUG_ON(!tfile);
889
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -0700890 /* Drop if the filter does not like it.
891 * This is a noop if the filter is disabled.
892 * Filter can be enabled only for the TAP devices. */
893 if (!check_filter(&tun->txflt, skb))
894 goto drop;
895
Jason Wang54f968d2012-10-31 19:45:57 +0000896 if (tfile->socket.sk->sk_filter &&
897 sk_filter(tfile->socket.sk, skb))
Michael S. Tsirkin99405162010-02-14 01:01:10 +0000898 goto drop;
899
Willem de Bruijn1f8b9772017-08-03 16:29:41 -0400900 if (unlikely(skb_orphan_frags_rx(skb, GFP_ATOMIC)))
Jason Wang7bf66302013-09-05 17:54:00 +0800901 goto drop;
902
Soheil Hassas Yeganeh7b996242016-08-23 18:22:33 -0400903 skb_tx_timestamp(skb);
Richard Cochraneda29772013-07-19 19:40:10 +0200904
Michael S. Tsirkin0110d6f2010-04-13 04:59:44 +0000905 /* Orphan the skb - required as we might hang on to it
Jason Wang7bf66302013-09-05 17:54:00 +0800906 * for indefinite time.
907 */
Michael S. Tsirkin0110d6f2010-04-13 04:59:44 +0000908 skb_orphan(skb);
909
Eric Dumazetf8af75f2013-03-06 11:02:37 +0000910 nf_reset(skb);
911
Jason Wang1576d982016-06-30 14:45:36 +0800912 if (skb_array_produce(&tfile->tx_array, skb))
913 goto drop;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914
915 /* Notify and wake up reader process */
Jason Wang54f968d2012-10-31 19:45:57 +0000916 if (tfile->flags & TUN_FASYNC)
917 kill_fasync(&tfile->fasync, SIGIO, POLL_IN);
Xi Wang9e641bd2014-05-16 15:11:48 -0700918 tfile->socket.sk->sk_data_ready(tfile->socket.sk);
Jason Wang6e914fc2012-10-31 19:45:58 +0000919
920 rcu_read_unlock();
Patrick McHardy6ed10652009-06-23 06:03:08 +0000921 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922
923drop:
Paolo Abeni608b9972016-04-13 10:52:20 +0200924 this_cpu_inc(tun->pcpu_stats->tx_dropped);
Michael S. Tsirkin149d36f2012-11-01 09:16:32 +0000925 skb_tx_error(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926 kfree_skb(skb);
Jason Wang6e914fc2012-10-31 19:45:58 +0000927 rcu_read_unlock();
Jason Wangbaeabab2014-11-18 13:20:41 +0800928 return NET_XMIT_DROP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929}
930
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -0700931static void tun_net_mclist(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932{
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -0700933 /*
934 * This callback is supposed to deal with mc filter in
935 * _rx_ path and has nothing to do with the _tx_ path.
936 * In rx path we always accept everything userspace gives us.
937 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938}
939
Michał Mirosławc8f44af2011-11-15 15:29:55 +0000940static netdev_features_t tun_net_fix_features(struct net_device *dev,
941 netdev_features_t features)
Michał Mirosław88255372011-04-19 06:13:10 +0000942{
943 struct tun_struct *tun = netdev_priv(dev);
944
945 return (features & tun->set_features) | (features & ~TUN_USER_FEATURES);
946}
Neil Hormanbebd0972011-06-15 05:25:01 +0000947#ifdef CONFIG_NET_POLL_CONTROLLER
948static void tun_poll_controller(struct net_device *dev)
949{
950 /*
951 * Tun only receives frames when:
952 * 1) the char device endpoint gets data from user space
953 * 2) the tun socket gets a sendmsg call from user space
stephen hemminger92d4ea62013-12-05 20:42:58 -0800954 * Since both of those are synchronous operations, we are guaranteed
Neil Hormanbebd0972011-06-15 05:25:01 +0000955 * never to have pending data when we poll for it
stephen hemminger92d4ea62013-12-05 20:42:58 -0800956 * so there is nothing to do here but return.
Neil Hormanbebd0972011-06-15 05:25:01 +0000957 * We need this though so netpoll recognizes us as an interface that
958 * supports polling, which enables bridge devices in virt setups to
959 * still use netconsole
960 */
961 return;
962}
963#endif
Paolo Abenieaea34b2016-02-26 10:45:40 +0100964
965static void tun_set_headroom(struct net_device *dev, int new_hr)
966{
967 struct tun_struct *tun = netdev_priv(dev);
968
969 if (new_hr < NET_SKB_PAD)
970 new_hr = NET_SKB_PAD;
971
972 tun->align = new_hr;
973}
974
stephen hemmingerbc1f4472017-01-06 19:12:52 -0800975static void
Paolo Abeni608b9972016-04-13 10:52:20 +0200976tun_net_get_stats64(struct net_device *dev, struct rtnl_link_stats64 *stats)
977{
978 u32 rx_dropped = 0, tx_dropped = 0, rx_frame_errors = 0;
979 struct tun_struct *tun = netdev_priv(dev);
980 struct tun_pcpu_stats *p;
981 int i;
982
983 for_each_possible_cpu(i) {
984 u64 rxpackets, rxbytes, txpackets, txbytes;
985 unsigned int start;
986
987 p = per_cpu_ptr(tun->pcpu_stats, i);
988 do {
989 start = u64_stats_fetch_begin(&p->syncp);
990 rxpackets = p->rx_packets;
991 rxbytes = p->rx_bytes;
992 txpackets = p->tx_packets;
993 txbytes = p->tx_bytes;
994 } while (u64_stats_fetch_retry(&p->syncp, start));
995
996 stats->rx_packets += rxpackets;
997 stats->rx_bytes += rxbytes;
998 stats->tx_packets += txpackets;
999 stats->tx_bytes += txbytes;
1000
1001 /* u32 counters */
1002 rx_dropped += p->rx_dropped;
1003 rx_frame_errors += p->rx_frame_errors;
1004 tx_dropped += p->tx_dropped;
1005 }
1006 stats->rx_dropped = rx_dropped;
1007 stats->rx_frame_errors = rx_frame_errors;
1008 stats->tx_dropped = tx_dropped;
Paolo Abeni608b9972016-04-13 10:52:20 +02001009}
1010
Stephen Hemminger758e43b2008-11-19 22:10:37 -08001011static const struct net_device_ops tun_netdev_ops = {
Eric W. Biedermanc70f1822009-01-20 11:07:17 +00001012 .ndo_uninit = tun_net_uninit,
Stephen Hemminger758e43b2008-11-19 22:10:37 -08001013 .ndo_open = tun_net_open,
1014 .ndo_stop = tun_net_close,
Stephen Hemminger00829822008-11-20 20:14:53 -08001015 .ndo_start_xmit = tun_net_xmit,
Michał Mirosław88255372011-04-19 06:13:10 +00001016 .ndo_fix_features = tun_net_fix_features,
Jason Wangc8d68e62012-10-31 19:46:00 +00001017 .ndo_select_queue = tun_select_queue,
Neil Hormanbebd0972011-06-15 05:25:01 +00001018#ifdef CONFIG_NET_POLL_CONTROLLER
1019 .ndo_poll_controller = tun_poll_controller,
1020#endif
Paolo Abenieaea34b2016-02-26 10:45:40 +01001021 .ndo_set_rx_headroom = tun_set_headroom,
Paolo Abeni608b9972016-04-13 10:52:20 +02001022 .ndo_get_stats64 = tun_net_get_stats64,
Stephen Hemminger758e43b2008-11-19 22:10:37 -08001023};
1024
1025static const struct net_device_ops tap_netdev_ops = {
Eric W. Biedermanc70f1822009-01-20 11:07:17 +00001026 .ndo_uninit = tun_net_uninit,
Stephen Hemminger758e43b2008-11-19 22:10:37 -08001027 .ndo_open = tun_net_open,
1028 .ndo_stop = tun_net_close,
Stephen Hemminger00829822008-11-20 20:14:53 -08001029 .ndo_start_xmit = tun_net_xmit,
Michał Mirosław88255372011-04-19 06:13:10 +00001030 .ndo_fix_features = tun_net_fix_features,
Jiri Pirkoafc4b132011-08-16 06:29:01 +00001031 .ndo_set_rx_mode = tun_net_mclist,
Stephen Hemminger758e43b2008-11-19 22:10:37 -08001032 .ndo_set_mac_address = eth_mac_addr,
1033 .ndo_validate_addr = eth_validate_addr,
Jason Wangc8d68e62012-10-31 19:46:00 +00001034 .ndo_select_queue = tun_select_queue,
Neil Hormanbebd0972011-06-15 05:25:01 +00001035#ifdef CONFIG_NET_POLL_CONTROLLER
1036 .ndo_poll_controller = tun_poll_controller,
1037#endif
Toshiaki Makita5e527962015-07-31 15:03:27 +09001038 .ndo_features_check = passthru_features_check,
Paolo Abenieaea34b2016-02-26 10:45:40 +01001039 .ndo_set_rx_headroom = tun_set_headroom,
Paolo Abeni608b9972016-04-13 10:52:20 +02001040 .ndo_get_stats64 = tun_net_get_stats64,
Stephen Hemminger758e43b2008-11-19 22:10:37 -08001041};
1042
Pavel Emelyanov944a1372013-06-11 17:01:08 +04001043static void tun_flow_init(struct tun_struct *tun)
Jason Wang96442e422012-10-31 19:46:02 +00001044{
1045 int i;
1046
Jason Wang96442e422012-10-31 19:46:02 +00001047 for (i = 0; i < TUN_NUM_FLOW_ENTRIES; i++)
1048 INIT_HLIST_HEAD(&tun->flows[i]);
1049
1050 tun->ageing_time = TUN_FLOW_EXPIRE;
1051 setup_timer(&tun->flow_gc_timer, tun_flow_cleanup, (unsigned long)tun);
1052 mod_timer(&tun->flow_gc_timer,
1053 round_jiffies_up(jiffies + tun->ageing_time));
Jason Wang96442e422012-10-31 19:46:02 +00001054}
1055
1056static void tun_flow_uninit(struct tun_struct *tun)
1057{
1058 del_timer_sync(&tun->flow_gc_timer);
1059 tun_flow_flush(tun);
Jason Wang96442e422012-10-31 19:46:02 +00001060}
1061
Jarod Wilson91572082016-10-20 13:55:20 -04001062#define MIN_MTU 68
1063#define MAX_MTU 65535
1064
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065/* Initialize net device. */
1066static void tun_net_init(struct net_device *dev)
1067{
1068 struct tun_struct *tun = netdev_priv(dev);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001069
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070 switch (tun->flags & TUN_TYPE_MASK) {
Michael S. Tsirkin40630b82014-11-19 15:17:31 +02001071 case IFF_TUN:
Stephen Hemminger758e43b2008-11-19 22:10:37 -08001072 dev->netdev_ops = &tun_netdev_ops;
1073
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074 /* Point-to-Point TUN Device */
1075 dev->hard_header_len = 0;
1076 dev->addr_len = 0;
1077 dev->mtu = 1500;
1078
1079 /* Zero header length */
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001080 dev->type = ARPHRD_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081 dev->flags = IFF_POINTOPOINT | IFF_NOARP | IFF_MULTICAST;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082 break;
1083
Michael S. Tsirkin40630b82014-11-19 15:17:31 +02001084 case IFF_TAP:
Kusanagi Kouichi7a0a9602008-12-29 18:23:28 -08001085 dev->netdev_ops = &tap_netdev_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086 /* Ethernet TAP Device */
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -07001087 ether_setup(dev);
Neil Horman550fd082011-07-26 06:05:38 +00001088 dev->priv_flags &= ~IFF_TX_SKB_SHARING;
stephen hemmingera6768472012-12-10 15:16:00 +00001089 dev->priv_flags |= IFF_LIVE_ADDR_CHANGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090
Danny Kukawkaf2cedb62012-02-15 06:45:39 +00001091 eth_hw_addr_random(dev);
Brian Braunstein36226a82007-04-26 01:00:55 -07001092
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093 break;
1094 }
Jarod Wilson91572082016-10-20 13:55:20 -04001095
1096 dev->min_mtu = MIN_MTU;
1097 dev->max_mtu = MAX_MTU - dev->hard_header_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098}
1099
1100/* Character device part */
1101
1102/* Poll */
Jason Wangc8d68e62012-10-31 19:46:00 +00001103static unsigned int tun_chr_poll(struct file *file, poll_table *wait)
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001104{
Eric W. Biedermanb2430de2009-01-20 11:03:21 +00001105 struct tun_file *tfile = file->private_data;
1106 struct tun_struct *tun = __tun_get(tfile);
Mariusz Kozlowski3c8a9c62009-07-05 19:48:35 +00001107 struct sock *sk;
Herbert Xu33dccbb2009-02-05 21:25:32 -08001108 unsigned int mask = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109
1110 if (!tun)
Eric W. Biedermaneac9e902009-01-20 10:59:05 +00001111 return POLLERR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112
Jason Wang54f968d2012-10-31 19:45:57 +00001113 sk = tfile->socket.sk;
Mariusz Kozlowski3c8a9c62009-07-05 19:48:35 +00001114
Joe Perches6b8a66e2011-03-02 07:18:10 +00001115 tun_debug(KERN_INFO, tun, "tun_chr_poll\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116
Xi Wang9e641bd2014-05-16 15:11:48 -07001117 poll_wait(file, sk_sleep(sk), wait);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001118
Jason Wang1576d982016-06-30 14:45:36 +08001119 if (!skb_array_empty(&tfile->tx_array))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120 mask |= POLLIN | POLLRDNORM;
1121
Hannes Frederic Sowab20e2d52017-03-13 00:00:26 +01001122 if (tun->dev->flags & IFF_UP &&
1123 (sock_writeable(sk) ||
1124 (!test_and_set_bit(SOCKWQ_ASYNC_NOSPACE, &sk->sk_socket->flags) &&
1125 sock_writeable(sk))))
Herbert Xu33dccbb2009-02-05 21:25:32 -08001126 mask |= POLLOUT | POLLWRNORM;
1127
Eric W. Biedermanc70f1822009-01-20 11:07:17 +00001128 if (tun->dev->reg_state != NETREG_REGISTERED)
1129 mask = POLLERR;
1130
Eric W. Biederman631ab462009-01-20 11:00:40 +00001131 tun_put(tun);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132 return mask;
1133}
1134
Rusty Russellf42157c2008-08-15 15:15:10 -07001135/* prepad is the amount to reserve at front. len is length after that.
1136 * linear is a hint as to how much to copy (usually headers). */
Jason Wang54f968d2012-10-31 19:45:57 +00001137static struct sk_buff *tun_alloc_skb(struct tun_file *tfile,
stephen hemminger6f7c1562011-06-08 14:33:08 +00001138 size_t prepad, size_t len,
1139 size_t linear, int noblock)
Rusty Russellf42157c2008-08-15 15:15:10 -07001140{
Jason Wang54f968d2012-10-31 19:45:57 +00001141 struct sock *sk = tfile->socket.sk;
Rusty Russellf42157c2008-08-15 15:15:10 -07001142 struct sk_buff *skb;
Herbert Xu33dccbb2009-02-05 21:25:32 -08001143 int err;
Rusty Russellf42157c2008-08-15 15:15:10 -07001144
1145 /* Under a page? Don't bother with paged skb. */
Herbert Xu0eca93b2009-04-14 02:09:43 -07001146 if (prepad + len < PAGE_SIZE || !linear)
Herbert Xu33dccbb2009-02-05 21:25:32 -08001147 linear = len;
Rusty Russellf42157c2008-08-15 15:15:10 -07001148
Herbert Xu33dccbb2009-02-05 21:25:32 -08001149 skb = sock_alloc_send_pskb(sk, prepad + linear, len - linear, noblock,
Eric Dumazet28d64272013-08-08 14:38:47 -07001150 &err, 0);
Rusty Russellf42157c2008-08-15 15:15:10 -07001151 if (!skb)
Herbert Xu33dccbb2009-02-05 21:25:32 -08001152 return ERR_PTR(err);
Rusty Russellf42157c2008-08-15 15:15:10 -07001153
1154 skb_reserve(skb, prepad);
1155 skb_put(skb, linear);
Herbert Xu33dccbb2009-02-05 21:25:32 -08001156 skb->data_len = len - linear;
1157 skb->len += len - linear;
Rusty Russellf42157c2008-08-15 15:15:10 -07001158
1159 return skb;
1160}
1161
Jason Wang5503fce2017-01-18 15:02:03 +08001162static void tun_rx_batched(struct tun_struct *tun, struct tun_file *tfile,
1163 struct sk_buff *skb, int more)
1164{
1165 struct sk_buff_head *queue = &tfile->sk.sk_write_queue;
1166 struct sk_buff_head process_queue;
1167 u32 rx_batched = tun->rx_batched;
1168 bool rcv = false;
1169
1170 if (!rx_batched || (!more && skb_queue_empty(queue))) {
1171 local_bh_disable();
1172 netif_receive_skb(skb);
1173 local_bh_enable();
1174 return;
1175 }
1176
1177 spin_lock(&queue->lock);
1178 if (!more || skb_queue_len(queue) == rx_batched) {
1179 __skb_queue_head_init(&process_queue);
1180 skb_queue_splice_tail_init(queue, &process_queue);
1181 rcv = true;
1182 } else {
1183 __skb_queue_tail(queue, skb);
1184 }
1185 spin_unlock(&queue->lock);
1186
1187 if (rcv) {
1188 struct sk_buff *nskb;
1189
1190 local_bh_disable();
1191 while ((nskb = __skb_dequeue(&process_queue)))
1192 netif_receive_skb(nskb);
1193 netif_receive_skb(skb);
1194 local_bh_enable();
1195 }
1196}
1197
Jason Wang66ccbc92017-08-11 19:41:16 +08001198static bool tun_can_build_skb(struct tun_struct *tun, struct tun_file *tfile,
1199 int len, int noblock, bool zerocopy)
1200{
1201 if ((tun->flags & TUN_TYPE_MASK) != IFF_TAP)
1202 return false;
1203
1204 if (tfile->socket.sk->sk_sndbuf != INT_MAX)
1205 return false;
1206
1207 if (!noblock)
1208 return false;
1209
1210 if (zerocopy)
1211 return false;
1212
1213 if (SKB_DATA_ALIGN(len + TUN_RX_PAD) +
1214 SKB_DATA_ALIGN(sizeof(struct skb_shared_info)) > PAGE_SIZE)
1215 return false;
1216
1217 return true;
1218}
1219
1220static struct sk_buff *tun_build_skb(struct tun_file *tfile,
1221 struct iov_iter *from,
1222 int len)
1223{
1224 struct page_frag *alloc_frag = &tfile->alloc_frag;
1225 struct sk_buff *skb;
1226 int buflen = SKB_DATA_ALIGN(len + TUN_RX_PAD) +
1227 SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
1228 char *buf;
1229 size_t copied;
1230
1231 if (unlikely(!skb_page_frag_refill(buflen, alloc_frag, GFP_KERNEL)))
1232 return ERR_PTR(-ENOMEM);
1233
1234 buf = (char *)page_address(alloc_frag->page) + alloc_frag->offset;
1235 copied = copy_page_from_iter(alloc_frag->page,
1236 alloc_frag->offset + TUN_RX_PAD,
1237 len, from);
1238 if (copied != len)
1239 return ERR_PTR(-EFAULT);
1240
1241 skb = build_skb(buf, buflen);
1242 if (!skb)
1243 return ERR_PTR(-ENOMEM);
1244
1245 skb_reserve(skb, TUN_RX_PAD);
1246 skb_put(skb, len);
1247 get_page(alloc_frag->page);
1248 alloc_frag->offset += buflen;
1249
1250 return skb;
1251}
1252
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253/* Get packet from user space buffer */
Jason Wang54f968d2012-10-31 19:45:57 +00001254static ssize_t tun_get_user(struct tun_struct *tun, struct tun_file *tfile,
Al Virof5ff53b2014-06-19 15:36:49 -04001255 void *msg_control, struct iov_iter *from,
Jason Wang5503fce2017-01-18 15:02:03 +08001256 int noblock, bool more)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257{
Harvey Harrison09640e632009-02-01 00:45:17 -08001258 struct tun_pi pi = { 0, cpu_to_be16(ETH_P_IP) };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259 struct sk_buff *skb;
Al Virof5ff53b2014-06-19 15:36:49 -04001260 size_t total_len = iov_iter_count(from);
Paolo Abenieaea34b2016-02-26 10:45:40 +01001261 size_t len = total_len, align = tun->align, linear;
Rusty Russellf43798c2008-07-03 03:48:02 -07001262 struct virtio_net_hdr gso = { 0 };
Paolo Abeni608b9972016-04-13 10:52:20 +02001263 struct tun_pcpu_stats *stats;
Jason Wang96f8d9e2013-11-13 14:00:39 +08001264 int good_linear;
Michael S. Tsirkin06908992012-07-20 09:23:23 +00001265 int copylen;
1266 bool zerocopy = false;
1267 int err;
Eric Dumazet49974422012-12-12 19:22:57 +00001268 u32 rxhash;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269
Eric Dumazet1bd4978a2015-12-16 08:57:37 -08001270 if (!(tun->dev->flags & IFF_UP))
1271 return -EIO;
1272
Michael S. Tsirkin40630b82014-11-19 15:17:31 +02001273 if (!(tun->flags & IFF_NO_PI)) {
Dan Carpenter15718ea2013-08-15 15:52:57 +03001274 if (len < sizeof(pi))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275 return -EINVAL;
Dan Carpenter15718ea2013-08-15 15:52:57 +03001276 len -= sizeof(pi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277
Al Virocbbd26b2016-11-01 22:09:04 -04001278 if (!copy_from_iter_full(&pi, sizeof(pi), from))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279 return -EFAULT;
1280 }
1281
Michael S. Tsirkin40630b82014-11-19 15:17:31 +02001282 if (tun->flags & IFF_VNET_HDR) {
Willem de Bruijne1edab82017-02-03 18:20:48 -05001283 int vnet_hdr_sz = READ_ONCE(tun->vnet_hdr_sz);
1284
1285 if (len < vnet_hdr_sz)
Rusty Russellf43798c2008-07-03 03:48:02 -07001286 return -EINVAL;
Willem de Bruijne1edab82017-02-03 18:20:48 -05001287 len -= vnet_hdr_sz;
Rusty Russellf43798c2008-07-03 03:48:02 -07001288
Al Virocbbd26b2016-11-01 22:09:04 -04001289 if (!copy_from_iter_full(&gso, sizeof(gso), from))
Rusty Russellf43798c2008-07-03 03:48:02 -07001290 return -EFAULT;
1291
Herbert Xu49091222009-06-08 00:20:01 -07001292 if ((gso.flags & VIRTIO_NET_HDR_F_NEEDS_CSUM) &&
Michael S. Tsirkin56f0dcc2014-10-23 22:59:31 +03001293 tun16_to_cpu(tun, gso.csum_start) + tun16_to_cpu(tun, gso.csum_offset) + 2 > tun16_to_cpu(tun, gso.hdr_len))
1294 gso.hdr_len = cpu_to_tun16(tun, tun16_to_cpu(tun, gso.csum_start) + tun16_to_cpu(tun, gso.csum_offset) + 2);
Herbert Xu49091222009-06-08 00:20:01 -07001295
Michael S. Tsirkin56f0dcc2014-10-23 22:59:31 +03001296 if (tun16_to_cpu(tun, gso.hdr_len) > len)
Rusty Russellf43798c2008-07-03 03:48:02 -07001297 return -EINVAL;
Willem de Bruijne1edab82017-02-03 18:20:48 -05001298 iov_iter_advance(from, vnet_hdr_sz - sizeof(gso));
Rusty Russellf43798c2008-07-03 03:48:02 -07001299 }
1300
Michael S. Tsirkin40630b82014-11-19 15:17:31 +02001301 if ((tun->flags & TUN_TYPE_MASK) == IFF_TAP) {
stephen hemmingera504b862011-06-08 14:33:07 +00001302 align += NET_IP_ALIGN;
Herbert Xu0eca93b2009-04-14 02:09:43 -07001303 if (unlikely(len < ETH_HLEN ||
Michael S. Tsirkin56f0dcc2014-10-23 22:59:31 +03001304 (gso.hdr_len && tun16_to_cpu(tun, gso.hdr_len) < ETH_HLEN)))
Rusty Russelle01bf1c2008-04-12 18:49:30 -07001305 return -EINVAL;
1306 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001307
Jason Wang96f8d9e2013-11-13 14:00:39 +08001308 good_linear = SKB_MAX_HEAD(align);
1309
Jason Wang88529172013-07-18 10:55:15 +08001310 if (msg_control) {
Al Virof5ff53b2014-06-19 15:36:49 -04001311 struct iov_iter i = *from;
1312
Jason Wang88529172013-07-18 10:55:15 +08001313 /* There are 256 bytes to be copied in skb, so there is
1314 * enough room for skb expand head in case it is used.
Michael S. Tsirkin06908992012-07-20 09:23:23 +00001315 * The rest of the buffer is mapped from userspace.
1316 */
Michael S. Tsirkin56f0dcc2014-10-23 22:59:31 +03001317 copylen = gso.hdr_len ? tun16_to_cpu(tun, gso.hdr_len) : GOODCOPY_LEN;
Jason Wang96f8d9e2013-11-13 14:00:39 +08001318 if (copylen > good_linear)
1319 copylen = good_linear;
Jason Wang3dd5c332013-07-10 13:43:27 +08001320 linear = copylen;
Al Virof5ff53b2014-06-19 15:36:49 -04001321 iov_iter_advance(&i, copylen);
1322 if (iov_iter_npages(&i, INT_MAX) <= MAX_SKB_FRAGS)
Jason Wang88529172013-07-18 10:55:15 +08001323 zerocopy = true;
1324 }
1325
Jason Wang66ccbc92017-08-11 19:41:16 +08001326 if (tun_can_build_skb(tun, tfile, len, noblock, zerocopy)) {
1327 skb = tun_build_skb(tfile, from, len);
1328 if (IS_ERR(skb)) {
Paolo Abeni608b9972016-04-13 10:52:20 +02001329 this_cpu_inc(tun->pcpu_stats->rx_dropped);
Jason Wang66ccbc92017-08-11 19:41:16 +08001330 return PTR_ERR(skb);
1331 }
1332 } else {
1333 if (!zerocopy) {
1334 copylen = len;
1335 if (tun16_to_cpu(tun, gso.hdr_len) > good_linear)
1336 linear = good_linear;
1337 else
1338 linear = tun16_to_cpu(tun, gso.hdr_len);
1339 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340
Jason Wang66ccbc92017-08-11 19:41:16 +08001341 skb = tun_alloc_skb(tfile, align, copylen, linear, noblock);
1342 if (IS_ERR(skb)) {
1343 if (PTR_ERR(skb) != -EAGAIN)
1344 this_cpu_inc(tun->pcpu_stats->rx_dropped);
1345 return PTR_ERR(skb);
1346 }
Michael S. Tsirkin06908992012-07-20 09:23:23 +00001347
Jason Wang66ccbc92017-08-11 19:41:16 +08001348 if (zerocopy)
1349 err = zerocopy_sg_from_iter(skb, from);
1350 else
1351 err = skb_copy_datagram_from_iter(skb, 0, from, len);
1352
1353 if (err) {
1354 this_cpu_inc(tun->pcpu_stats->rx_dropped);
1355 kfree_skb(skb);
1356 return -EFAULT;
1357 }
Dave Jones8f227572006-03-11 18:49:13 -08001358 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359
Jarno Rajahalme3e9e40e2016-11-18 15:40:38 -08001360 if (virtio_net_hdr_to_skb(skb, &gso, tun_is_little_endian(tun))) {
Paolo Abenidf10db92016-06-14 00:00:04 +02001361 this_cpu_inc(tun->pcpu_stats->rx_frame_errors);
1362 kfree_skb(skb);
1363 return -EINVAL;
1364 }
1365
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366 switch (tun->flags & TUN_TYPE_MASK) {
Michael S. Tsirkin40630b82014-11-19 15:17:31 +02001367 case IFF_TUN:
1368 if (tun->flags & IFF_NO_PI) {
Ang Way Chuangf09f7ee2008-06-17 21:10:33 -07001369 switch (skb->data[0] & 0xf0) {
1370 case 0x40:
1371 pi.proto = htons(ETH_P_IP);
1372 break;
1373 case 0x60:
1374 pi.proto = htons(ETH_P_IPV6);
1375 break;
1376 default:
Paolo Abeni608b9972016-04-13 10:52:20 +02001377 this_cpu_inc(tun->pcpu_stats->rx_dropped);
Ang Way Chuangf09f7ee2008-06-17 21:10:33 -07001378 kfree_skb(skb);
1379 return -EINVAL;
1380 }
1381 }
1382
Arnaldo Carvalho de Melo459a98e2007-03-19 15:30:44 -07001383 skb_reset_mac_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384 skb->protocol = pi.proto;
Arnaldo Carvalho de Melo4c13eb62007-04-25 17:40:23 -07001385 skb->dev = tun->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001386 break;
Michael S. Tsirkin40630b82014-11-19 15:17:31 +02001387 case IFF_TAP:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001388 skb->protocol = eth_type_trans(skb, tun->dev);
1389 break;
Joe Perches6403eab2011-06-03 11:51:20 +00001390 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391
Michael S. Tsirkin06908992012-07-20 09:23:23 +00001392 /* copy skb_ubuf_info for callback when skb has no error */
1393 if (zerocopy) {
1394 skb_shinfo(skb)->destructor_arg = msg_control;
1395 skb_shinfo(skb)->tx_flags |= SKBTX_DEV_ZEROCOPY;
Pravin B Shelarc9af6db2013-02-11 09:27:41 +00001396 skb_shinfo(skb)->tx_flags |= SKBTX_SHARED_FRAG;
Jason Wangaf1cc7a2016-11-30 13:17:51 +08001397 } else if (msg_control) {
1398 struct ubuf_info *uarg = msg_control;
1399 uarg->callback(uarg, false);
Michael S. Tsirkin06908992012-07-20 09:23:23 +00001400 }
1401
Vlad Yasevich72f65102015-02-03 16:36:16 -05001402 skb_reset_network_header(skb);
Jason Wang40893fd2013-03-26 23:11:22 +00001403 skb_probe_transport_header(skb, 0);
Jason Wang38502af2013-03-25 20:19:56 +00001404
Jason Wangfeec0842017-06-06 14:09:49 +08001405 rxhash = __skb_get_hash_symmetric(skb);
Andrey Konovalovd4aea202016-12-01 10:34:40 +01001406#ifndef CONFIG_4KSTACKS
Jason Wang5503fce2017-01-18 15:02:03 +08001407 tun_rx_batched(tun, tfile, skb, more);
Andrey Konovalovd4aea202016-12-01 10:34:40 +01001408#else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001409 netif_rx_ni(skb);
Andrey Konovalovd4aea202016-12-01 10:34:40 +01001410#endif
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001411
Paolo Abeni608b9972016-04-13 10:52:20 +02001412 stats = get_cpu_ptr(tun->pcpu_stats);
1413 u64_stats_update_begin(&stats->syncp);
1414 stats->rx_packets++;
1415 stats->rx_bytes += len;
1416 u64_stats_update_end(&stats->syncp);
1417 put_cpu_ptr(stats);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001418
Jason Wang9e857222013-01-28 01:05:19 +00001419 tun_flow_update(tun, rxhash, tfile);
Michael S. Tsirkin06908992012-07-20 09:23:23 +00001420 return total_len;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001421}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001422
Al Virof5ff53b2014-06-19 15:36:49 -04001423static ssize_t tun_chr_write_iter(struct kiocb *iocb, struct iov_iter *from)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001424{
Herbert Xu33dccbb2009-02-05 21:25:32 -08001425 struct file *file = iocb->ki_filp;
Herbert Xuab46d7792009-02-14 20:46:39 -08001426 struct tun_struct *tun = tun_get(file);
Jason Wang54f968d2012-10-31 19:45:57 +00001427 struct tun_file *tfile = file->private_data;
Eric W. Biederman631ab462009-01-20 11:00:40 +00001428 ssize_t result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001429
1430 if (!tun)
1431 return -EBADFD;
1432
Jason Wang5503fce2017-01-18 15:02:03 +08001433 result = tun_get_user(tun, tfile, NULL, from,
1434 file->f_flags & O_NONBLOCK, false);
Eric W. Biederman631ab462009-01-20 11:00:40 +00001435
1436 tun_put(tun);
1437 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001438}
1439
Linus Torvalds1da177e2005-04-16 15:20:36 -07001440/* Put packet to the user space buffer */
stephen hemminger6f7c1562011-06-08 14:33:08 +00001441static ssize_t tun_put_user(struct tun_struct *tun,
Jason Wang54f968d2012-10-31 19:45:57 +00001442 struct tun_file *tfile,
stephen hemminger6f7c1562011-06-08 14:33:08 +00001443 struct sk_buff *skb,
Herbert Xue0b46d02014-11-07 21:22:23 +08001444 struct iov_iter *iter)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445{
1446 struct tun_pi pi = { 0, skb->protocol };
Paolo Abeni608b9972016-04-13 10:52:20 +02001447 struct tun_pcpu_stats *stats;
Herbert Xue0b46d02014-11-07 21:22:23 +08001448 ssize_t total;
Jason Wang8c847d22014-11-13 16:54:14 +08001449 int vlan_offset = 0;
Herbert Xua8f9bfd2014-11-03 04:30:13 +08001450 int vlan_hlen = 0;
Herbert Xu2eb783c2014-11-03 04:30:14 +08001451 int vnet_hdr_sz = 0;
Herbert Xua8f9bfd2014-11-03 04:30:13 +08001452
Jiri Pirkodf8a39d2015-01-13 17:13:44 +01001453 if (skb_vlan_tag_present(skb))
Herbert Xua8f9bfd2014-11-03 04:30:13 +08001454 vlan_hlen = VLAN_HLEN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001455
Michael S. Tsirkin40630b82014-11-19 15:17:31 +02001456 if (tun->flags & IFF_VNET_HDR)
Willem de Bruijne1edab82017-02-03 18:20:48 -05001457 vnet_hdr_sz = READ_ONCE(tun->vnet_hdr_sz);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001458
Herbert Xue0b46d02014-11-07 21:22:23 +08001459 total = skb->len + vlan_hlen + vnet_hdr_sz;
1460
Michael S. Tsirkin40630b82014-11-19 15:17:31 +02001461 if (!(tun->flags & IFF_NO_PI)) {
Herbert Xue0b46d02014-11-07 21:22:23 +08001462 if (iov_iter_count(iter) < sizeof(pi))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001463 return -EINVAL;
1464
Herbert Xue0b46d02014-11-07 21:22:23 +08001465 total += sizeof(pi);
1466 if (iov_iter_count(iter) < total) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467 /* Packet will be striped */
1468 pi.flags |= TUN_PKT_STRIP;
1469 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001470
Herbert Xue0b46d02014-11-07 21:22:23 +08001471 if (copy_to_iter(&pi, sizeof(pi), iter) != sizeof(pi))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472 return -EFAULT;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001473 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001474
Herbert Xu2eb783c2014-11-03 04:30:14 +08001475 if (vnet_hdr_sz) {
Jarno Rajahalme9403cd72016-11-18 15:40:40 -08001476 struct virtio_net_hdr gso;
Mike Rapoport34166092016-06-08 16:09:20 +03001477
Herbert Xue0b46d02014-11-07 21:22:23 +08001478 if (iov_iter_count(iter) < vnet_hdr_sz)
Rusty Russellf43798c2008-07-03 03:48:02 -07001479 return -EINVAL;
1480
Jarno Rajahalme3e9e40e2016-11-18 15:40:38 -08001481 if (virtio_net_hdr_from_skb(skb, &gso,
Jason Wang6391a442017-01-20 14:32:42 +08001482 tun_is_little_endian(tun), true)) {
Rusty Russellf43798c2008-07-03 03:48:02 -07001483 struct skb_shared_info *sinfo = skb_shinfo(skb);
Mike Rapoport34166092016-06-08 16:09:20 +03001484 pr_err("unexpected GSO type: "
1485 "0x%x, gso_size %d, hdr_len %d\n",
1486 sinfo->gso_type, tun16_to_cpu(tun, gso.gso_size),
1487 tun16_to_cpu(tun, gso.hdr_len));
1488 print_hex_dump(KERN_ERR, "tun: ",
1489 DUMP_PREFIX_NONE,
1490 16, 1, skb->head,
1491 min((int)tun16_to_cpu(tun, gso.hdr_len), 64), true);
1492 WARN_ON_ONCE(1);
1493 return -EINVAL;
1494 }
Rusty Russellf43798c2008-07-03 03:48:02 -07001495
Herbert Xue0b46d02014-11-07 21:22:23 +08001496 if (copy_to_iter(&gso, sizeof(gso), iter) != sizeof(gso))
Rusty Russellf43798c2008-07-03 03:48:02 -07001497 return -EFAULT;
Jason Wang8c847d22014-11-13 16:54:14 +08001498
1499 iov_iter_advance(iter, vnet_hdr_sz - sizeof(gso));
Rusty Russellf43798c2008-07-03 03:48:02 -07001500 }
1501
Herbert Xua8f9bfd2014-11-03 04:30:13 +08001502 if (vlan_hlen) {
Herbert Xue0b46d02014-11-07 21:22:23 +08001503 int ret;
Jason Wang6680ec62013-07-25 13:00:33 +08001504 struct {
1505 __be16 h_vlan_proto;
1506 __be16 h_vlan_TCI;
1507 } veth;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001508
Jason Wang6680ec62013-07-25 13:00:33 +08001509 veth.h_vlan_proto = skb->vlan_proto;
Jiri Pirkodf8a39d2015-01-13 17:13:44 +01001510 veth.h_vlan_TCI = htons(skb_vlan_tag_get(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511
Jason Wang6680ec62013-07-25 13:00:33 +08001512 vlan_offset = offsetof(struct vlan_ethhdr, h_vlan_proto);
Jason Wang6680ec62013-07-25 13:00:33 +08001513
Herbert Xue0b46d02014-11-07 21:22:23 +08001514 ret = skb_copy_datagram_iter(skb, 0, iter, vlan_offset);
1515 if (ret || !iov_iter_count(iter))
Jason Wang6680ec62013-07-25 13:00:33 +08001516 goto done;
1517
Herbert Xue0b46d02014-11-07 21:22:23 +08001518 ret = copy_to_iter(&veth, sizeof(veth), iter);
1519 if (ret != sizeof(veth) || !iov_iter_count(iter))
Jason Wang6680ec62013-07-25 13:00:33 +08001520 goto done;
1521 }
1522
Herbert Xue0b46d02014-11-07 21:22:23 +08001523 skb_copy_datagram_iter(skb, vlan_offset, iter, skb->len - vlan_offset);
Jason Wang6680ec62013-07-25 13:00:33 +08001524
1525done:
Paolo Abeni608b9972016-04-13 10:52:20 +02001526 /* caller is in process context, */
1527 stats = get_cpu_ptr(tun->pcpu_stats);
1528 u64_stats_update_begin(&stats->syncp);
1529 stats->tx_packets++;
1530 stats->tx_bytes += skb->len + vlan_hlen;
1531 u64_stats_update_end(&stats->syncp);
1532 put_cpu_ptr(tun->pcpu_stats);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001533
1534 return total;
1535}
1536
Jason Wang1576d982016-06-30 14:45:36 +08001537static struct sk_buff *tun_ring_recv(struct tun_file *tfile, int noblock,
1538 int *err)
1539{
1540 DECLARE_WAITQUEUE(wait, current);
1541 struct sk_buff *skb = NULL;
Jason Wangf48cc6b2016-07-04 13:53:38 +08001542 int error = 0;
Jason Wang1576d982016-06-30 14:45:36 +08001543
1544 skb = skb_array_consume(&tfile->tx_array);
1545 if (skb)
1546 goto out;
1547 if (noblock) {
Jason Wangf48cc6b2016-07-04 13:53:38 +08001548 error = -EAGAIN;
Jason Wang1576d982016-06-30 14:45:36 +08001549 goto out;
1550 }
1551
1552 add_wait_queue(&tfile->wq.wait, &wait);
1553 current->state = TASK_INTERRUPTIBLE;
1554
1555 while (1) {
1556 skb = skb_array_consume(&tfile->tx_array);
1557 if (skb)
1558 break;
1559 if (signal_pending(current)) {
Jason Wangf48cc6b2016-07-04 13:53:38 +08001560 error = -ERESTARTSYS;
Jason Wang1576d982016-06-30 14:45:36 +08001561 break;
1562 }
1563 if (tfile->socket.sk->sk_shutdown & RCV_SHUTDOWN) {
Jason Wangf48cc6b2016-07-04 13:53:38 +08001564 error = -EFAULT;
Jason Wang1576d982016-06-30 14:45:36 +08001565 break;
1566 }
1567
1568 schedule();
1569 }
1570
1571 current->state = TASK_RUNNING;
1572 remove_wait_queue(&tfile->wq.wait, &wait);
1573
1574out:
Jason Wangf48cc6b2016-07-04 13:53:38 +08001575 *err = error;
Jason Wang1576d982016-06-30 14:45:36 +08001576 return skb;
1577}
1578
Jason Wang54f968d2012-10-31 19:45:57 +00001579static ssize_t tun_do_read(struct tun_struct *tun, struct tun_file *tfile,
Al Viro9b067032014-11-07 13:52:07 -05001580 struct iov_iter *to,
Jason Wangac77cfd2017-05-17 12:14:43 +08001581 int noblock, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001582{
Al Viro9b067032014-11-07 13:52:07 -05001583 ssize_t ret;
Jason Wang1576d982016-06-30 14:45:36 +08001584 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585
Rami Rosen3872baf2012-11-25 22:07:41 +00001586 tun_debug(KERN_INFO, tun, "tun_do_read\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001587
Al Viro9b067032014-11-07 13:52:07 -05001588 if (!iov_iter_count(to))
1589 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001590
Jason Wangac77cfd2017-05-17 12:14:43 +08001591 if (!skb) {
1592 /* Read frames from ring */
1593 skb = tun_ring_recv(tfile, noblock, &err);
1594 if (!skb)
1595 return err;
1596 }
Herbert Xue0b46d02014-11-07 21:22:23 +08001597
Al Viro9b067032014-11-07 13:52:07 -05001598 ret = tun_put_user(tun, tfile, skb, to);
Jason Wangf51a5e82014-12-01 16:53:15 +08001599 if (unlikely(ret < 0))
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -07001600 kfree_skb(skb);
Jason Wangf51a5e82014-12-01 16:53:15 +08001601 else
1602 consume_skb(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001603
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00001604 return ret;
1605}
1606
Al Viro9b067032014-11-07 13:52:07 -05001607static ssize_t tun_chr_read_iter(struct kiocb *iocb, struct iov_iter *to)
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00001608{
1609 struct file *file = iocb->ki_filp;
1610 struct tun_file *tfile = file->private_data;
1611 struct tun_struct *tun = __tun_get(tfile);
Al Viro9b067032014-11-07 13:52:07 -05001612 ssize_t len = iov_iter_count(to), ret;
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00001613
1614 if (!tun)
1615 return -EBADFD;
Jason Wangac77cfd2017-05-17 12:14:43 +08001616 ret = tun_do_read(tun, tfile, to, file->f_flags & O_NONBLOCK, NULL);
David S. Miller42404c02013-12-10 22:05:45 -05001617 ret = min_t(ssize_t, ret, len);
Zhi Yong Wud0b7da8a2013-12-06 14:16:51 +08001618 if (ret > 0)
1619 iocb->ki_pos = ret;
Eric W. Biederman631ab462009-01-20 11:00:40 +00001620 tun_put(tun);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001621 return ret;
1622}
1623
Jason Wang96442e422012-10-31 19:46:02 +00001624static void tun_free_netdev(struct net_device *dev)
1625{
1626 struct tun_struct *tun = netdev_priv(dev);
1627
Jason Wang4008e972012-12-13 23:53:30 +00001628 BUG_ON(!(list_empty(&tun->disabled)));
Paolo Abeni608b9972016-04-13 10:52:20 +02001629 free_percpu(tun->pcpu_stats);
Jason Wang96442e422012-10-31 19:46:02 +00001630 tun_flow_uninit(tun);
Paul Moore5dbbaf22013-01-14 07:12:19 +00001631 security_tun_dev_free_security(tun->security);
Jason Wang96442e422012-10-31 19:46:02 +00001632}
1633
Linus Torvalds1da177e2005-04-16 15:20:36 -07001634static void tun_setup(struct net_device *dev)
1635{
1636 struct tun_struct *tun = netdev_priv(dev);
1637
Eric W. Biederman0625c882012-02-07 16:48:55 -08001638 tun->owner = INVALID_UID;
1639 tun->group = INVALID_GID;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001640
Linus Torvalds1da177e2005-04-16 15:20:36 -07001641 dev->ethtool_ops = &tun_ethtool_ops;
David S. Millercf124db2017-05-08 12:52:56 -04001642 dev->needs_free_netdev = true;
1643 dev->priv_destructor = tun_free_netdev;
Jason Wang016adb72016-04-08 13:26:48 +08001644 /* We prefer our own queue length */
1645 dev->tx_queue_len = TUN_READQ_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001646}
1647
Eric W. Biedermanf019a7a2009-01-21 16:02:16 -08001648/* Trivial set of netlink ops to allow deleting tun or tap
1649 * device with netlink.
1650 */
Matthias Schiffera8b8a8892017-06-25 23:56:01 +02001651static int tun_validate(struct nlattr *tb[], struct nlattr *data[],
1652 struct netlink_ext_ack *extack)
Eric W. Biedermanf019a7a2009-01-21 16:02:16 -08001653{
1654 return -EINVAL;
1655}
1656
1657static struct rtnl_link_ops tun_link_ops __read_mostly = {
1658 .kind = DRV_NAME,
1659 .priv_size = sizeof(struct tun_struct),
1660 .setup = tun_setup,
1661 .validate = tun_validate,
1662};
1663
Herbert Xu33dccbb2009-02-05 21:25:32 -08001664static void tun_sock_write_space(struct sock *sk)
1665{
Jason Wang54f968d2012-10-31 19:45:57 +00001666 struct tun_file *tfile;
Eric Dumazet43815482010-04-29 11:01:49 +00001667 wait_queue_head_t *wqueue;
Herbert Xu33dccbb2009-02-05 21:25:32 -08001668
1669 if (!sock_writeable(sk))
1670 return;
1671
Eric Dumazet9cd3e072015-11-29 20:03:10 -08001672 if (!test_and_clear_bit(SOCKWQ_ASYNC_NOSPACE, &sk->sk_socket->flags))
Herbert Xu33dccbb2009-02-05 21:25:32 -08001673 return;
1674
Eric Dumazet43815482010-04-29 11:01:49 +00001675 wqueue = sk_sleep(sk);
1676 if (wqueue && waitqueue_active(wqueue))
1677 wake_up_interruptible_sync_poll(wqueue, POLLOUT |
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00001678 POLLWRNORM | POLLWRBAND);
Herbert Xuc722c622009-06-03 21:45:55 -07001679
Jason Wang54f968d2012-10-31 19:45:57 +00001680 tfile = container_of(sk, struct tun_file, sk);
1681 kill_fasync(&tfile->fasync, SIGIO, POLL_OUT);
Herbert Xu33dccbb2009-02-05 21:25:32 -08001682}
1683
Ying Xue1b784142015-03-02 15:37:48 +08001684static int tun_sendmsg(struct socket *sock, struct msghdr *m, size_t total_len)
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00001685{
Jason Wang54f968d2012-10-31 19:45:57 +00001686 int ret;
1687 struct tun_file *tfile = container_of(sock, struct tun_file, socket);
1688 struct tun_struct *tun = __tun_get(tfile);
1689
1690 if (!tun)
1691 return -EBADFD;
Al Virof5ff53b2014-06-19 15:36:49 -04001692
Al Viroc0371da2014-11-24 10:42:55 -05001693 ret = tun_get_user(tun, tfile, m->msg_control, &m->msg_iter,
Jason Wang5503fce2017-01-18 15:02:03 +08001694 m->msg_flags & MSG_DONTWAIT,
1695 m->msg_flags & MSG_MORE);
Jason Wang54f968d2012-10-31 19:45:57 +00001696 tun_put(tun);
1697 return ret;
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00001698}
1699
Ying Xue1b784142015-03-02 15:37:48 +08001700static int tun_recvmsg(struct socket *sock, struct msghdr *m, size_t total_len,
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00001701 int flags)
1702{
Jason Wang54f968d2012-10-31 19:45:57 +00001703 struct tun_file *tfile = container_of(sock, struct tun_file, socket);
1704 struct tun_struct *tun = __tun_get(tfile);
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00001705 int ret;
Jason Wang54f968d2012-10-31 19:45:57 +00001706
1707 if (!tun)
1708 return -EBADFD;
1709
Richard Cochraneda29772013-07-19 19:40:10 +02001710 if (flags & ~(MSG_DONTWAIT|MSG_TRUNC|MSG_ERRQUEUE)) {
Gao feng3811ae72013-04-24 21:59:23 +00001711 ret = -EINVAL;
1712 goto out;
1713 }
Richard Cochraneda29772013-07-19 19:40:10 +02001714 if (flags & MSG_ERRQUEUE) {
1715 ret = sock_recv_errqueue(sock->sk, m, total_len,
1716 SOL_PACKET, TUN_TX_TIMESTAMP);
1717 goto out;
1718 }
Jason Wangac77cfd2017-05-17 12:14:43 +08001719 ret = tun_do_read(tun, tfile, &m->msg_iter, flags & MSG_DONTWAIT,
1720 m->msg_control);
Alex Gartrell87897932014-12-25 23:05:03 -08001721 if (ret > (ssize_t)total_len) {
David S. Miller42404c02013-12-10 22:05:45 -05001722 m->msg_flags |= MSG_TRUNC;
1723 ret = flags & MSG_TRUNC ? ret : total_len;
1724 }
Gao feng3811ae72013-04-24 21:59:23 +00001725out:
Jason Wang54f968d2012-10-31 19:45:57 +00001726 tun_put(tun);
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00001727 return ret;
1728}
1729
Jason Wang1576d982016-06-30 14:45:36 +08001730static int tun_peek_len(struct socket *sock)
1731{
1732 struct tun_file *tfile = container_of(sock, struct tun_file, socket);
1733 struct tun_struct *tun;
1734 int ret = 0;
1735
1736 tun = __tun_get(tfile);
1737 if (!tun)
1738 return 0;
1739
1740 ret = skb_array_peek_len(&tfile->tx_array);
1741 tun_put(tun);
1742
1743 return ret;
1744}
1745
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00001746/* Ops structure to mimic raw sockets with tun */
1747static const struct proto_ops tun_socket_ops = {
Jason Wang1576d982016-06-30 14:45:36 +08001748 .peek_len = tun_peek_len,
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00001749 .sendmsg = tun_sendmsg,
1750 .recvmsg = tun_recvmsg,
1751};
1752
Herbert Xu33dccbb2009-02-05 21:25:32 -08001753static struct proto tun_proto = {
1754 .name = "tun",
1755 .owner = THIS_MODULE,
Jason Wang54f968d2012-10-31 19:45:57 +00001756 .obj_size = sizeof(struct tun_file),
Herbert Xu33dccbb2009-02-05 21:25:32 -08001757};
Eric W. Biedermanf019a7a2009-01-21 16:02:16 -08001758
David Woodhouse980c9e82009-05-09 22:54:21 -07001759static int tun_flags(struct tun_struct *tun)
1760{
Michael S. Tsirkin031f5e032014-11-19 14:44:40 +02001761 return tun->flags & (TUN_FEATURES | IFF_PERSIST | IFF_TUN | IFF_TAP);
David Woodhouse980c9e82009-05-09 22:54:21 -07001762}
1763
1764static ssize_t tun_show_flags(struct device *dev, struct device_attribute *attr,
1765 char *buf)
1766{
1767 struct tun_struct *tun = netdev_priv(to_net_dev(dev));
1768 return sprintf(buf, "0x%x\n", tun_flags(tun));
1769}
1770
1771static ssize_t tun_show_owner(struct device *dev, struct device_attribute *attr,
1772 char *buf)
1773{
1774 struct tun_struct *tun = netdev_priv(to_net_dev(dev));
Eric W. Biederman0625c882012-02-07 16:48:55 -08001775 return uid_valid(tun->owner)?
1776 sprintf(buf, "%u\n",
1777 from_kuid_munged(current_user_ns(), tun->owner)):
1778 sprintf(buf, "-1\n");
David Woodhouse980c9e82009-05-09 22:54:21 -07001779}
1780
1781static ssize_t tun_show_group(struct device *dev, struct device_attribute *attr,
1782 char *buf)
1783{
1784 struct tun_struct *tun = netdev_priv(to_net_dev(dev));
Eric W. Biederman0625c882012-02-07 16:48:55 -08001785 return gid_valid(tun->group) ?
1786 sprintf(buf, "%u\n",
1787 from_kgid_munged(current_user_ns(), tun->group)):
1788 sprintf(buf, "-1\n");
David Woodhouse980c9e82009-05-09 22:54:21 -07001789}
1790
1791static DEVICE_ATTR(tun_flags, 0444, tun_show_flags, NULL);
1792static DEVICE_ATTR(owner, 0444, tun_show_owner, NULL);
1793static DEVICE_ATTR(group, 0444, tun_show_group, NULL);
1794
Takashi Iwaic4d33e22015-02-04 14:37:34 +01001795static struct attribute *tun_dev_attrs[] = {
1796 &dev_attr_tun_flags.attr,
1797 &dev_attr_owner.attr,
1798 &dev_attr_group.attr,
1799 NULL
1800};
1801
1802static const struct attribute_group tun_attr_group = {
1803 .attrs = tun_dev_attrs
1804};
1805
Pavel Emelyanovd647a592008-04-16 00:41:16 -07001806static int tun_set_iff(struct net *net, struct file *file, struct ifreq *ifr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001807{
1808 struct tun_struct *tun;
Jason Wang54f968d2012-10-31 19:45:57 +00001809 struct tun_file *tfile = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001810 struct net_device *dev;
1811 int err;
1812
Jason Wang7c0c3b12013-01-11 16:59:33 +00001813 if (tfile->detached)
1814 return -EINVAL;
1815
Eric W. Biederman74a3e5a2009-01-20 10:56:20 +00001816 dev = __dev_get_by_name(net, ifr->ifr_name);
1817 if (dev) {
David Woodhousef85ba782009-04-27 03:23:54 -07001818 if (ifr->ifr_flags & IFF_TUN_EXCL)
1819 return -EBUSY;
Eric W. Biederman74a3e5a2009-01-20 10:56:20 +00001820 if ((ifr->ifr_flags & IFF_TUN) && dev->netdev_ops == &tun_netdev_ops)
1821 tun = netdev_priv(dev);
1822 else if ((ifr->ifr_flags & IFF_TAP) && dev->netdev_ops == &tap_netdev_ops)
1823 tun = netdev_priv(dev);
1824 else
1825 return -EINVAL;
1826
Jason Wang8e6d91a2013-05-28 18:32:11 +00001827 if (!!(ifr->ifr_flags & IFF_MULTI_QUEUE) !=
Michael S. Tsirkin40630b82014-11-19 15:17:31 +02001828 !!(tun->flags & IFF_MULTI_QUEUE))
Jason Wang8e6d91a2013-05-28 18:32:11 +00001829 return -EINVAL;
1830
Jason Wangcde8b152012-10-31 19:46:01 +00001831 if (tun_not_capable(tun))
Paul Moore2b980db2009-08-28 18:12:43 -04001832 return -EPERM;
Paul Moore5dbbaf22013-01-14 07:12:19 +00001833 err = security_tun_dev_open(tun->security);
Paul Moore2b980db2009-08-28 18:12:43 -04001834 if (err < 0)
1835 return err;
1836
Pavel Emelyanov849c9b62013-08-21 14:32:21 +04001837 err = tun_attach(tun, file, ifr->ifr_flags & IFF_NOFILTER);
Eric W. Biedermana7385ba2009-01-20 10:57:48 +00001838 if (err < 0)
1839 return err;
Jason Wang4008e972012-12-13 23:53:30 +00001840
Michael S. Tsirkin40630b82014-11-19 15:17:31 +02001841 if (tun->flags & IFF_MULTI_QUEUE &&
Jason Wange8dbad62013-04-22 20:40:39 +00001842 (tun->numqueues + tun->numdisabled > 1)) {
1843 /* One or more queue has already been attached, no need
1844 * to initialize the device again.
1845 */
1846 return 0;
1847 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001848 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001849 else {
1850 char *name;
1851 unsigned long flags = 0;
Jason Wangedfb6a12013-01-23 03:59:12 +00001852 int queues = ifr->ifr_flags & IFF_MULTI_QUEUE ?
1853 MAX_TAP_QUEUES : 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001854
Eric W. Biedermanc260b772012-11-18 21:34:11 +00001855 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
David Woodhouseca6bb5d2006-06-22 16:07:52 -07001856 return -EPERM;
Paul Moore2b980db2009-08-28 18:12:43 -04001857 err = security_tun_dev_create();
1858 if (err < 0)
1859 return err;
David Woodhouseca6bb5d2006-06-22 16:07:52 -07001860
Linus Torvalds1da177e2005-04-16 15:20:36 -07001861 /* Set dev type */
1862 if (ifr->ifr_flags & IFF_TUN) {
1863 /* TUN device */
Michael S. Tsirkin40630b82014-11-19 15:17:31 +02001864 flags |= IFF_TUN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001865 name = "tun%d";
1866 } else if (ifr->ifr_flags & IFF_TAP) {
1867 /* TAP device */
Michael S. Tsirkin40630b82014-11-19 15:17:31 +02001868 flags |= IFF_TAP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001869 name = "tap%d";
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001870 } else
Kusanagi Kouichi36989b92009-09-16 21:36:13 +00001871 return -EINVAL;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001872
Linus Torvalds1da177e2005-04-16 15:20:36 -07001873 if (*ifr->ifr_name)
1874 name = ifr->ifr_name;
1875
Jason Wangc8d68e62012-10-31 19:46:00 +00001876 dev = alloc_netdev_mqs(sizeof(struct tun_struct), name,
Tom Gundersenc835a672014-07-14 16:37:24 +02001877 NET_NAME_UNKNOWN, tun_setup, queues,
1878 queues);
Jason Wangedfb6a12013-01-23 03:59:12 +00001879
Linus Torvalds1da177e2005-04-16 15:20:36 -07001880 if (!dev)
1881 return -ENOMEM;
1882
Pavel Emelyanovfc54c652008-04-16 00:41:53 -07001883 dev_net_set(dev, net);
Eric W. Biedermanf019a7a2009-01-21 16:02:16 -08001884 dev->rtnl_link_ops = &tun_link_ops;
Pavel Emelyanovfb7589a2013-08-21 14:31:38 +04001885 dev->ifindex = tfile->ifindex;
Takashi Iwaic4d33e22015-02-04 14:37:34 +01001886 dev->sysfs_groups[0] = &tun_attr_group;
Stephen Hemminger758e43b2008-11-19 22:10:37 -08001887
Linus Torvalds1da177e2005-04-16 15:20:36 -07001888 tun = netdev_priv(dev);
1889 tun->dev = dev;
1890 tun->flags = flags;
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -07001891 tun->txflt.count = 0;
Michael S. Tsirkind9d52b52010-03-17 17:45:01 +02001892 tun->vnet_hdr_sz = sizeof(struct virtio_net_hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001893
Paolo Abenieaea34b2016-02-26 10:45:40 +01001894 tun->align = NET_SKB_PAD;
Jason Wang54f968d2012-10-31 19:45:57 +00001895 tun->filter_attached = false;
1896 tun->sndbuf = tfile->socket.sk->sk_sndbuf;
Jason Wang5503fce2017-01-18 15:02:03 +08001897 tun->rx_batched = 0;
Herbert Xu33dccbb2009-02-05 21:25:32 -08001898
Paolo Abeni608b9972016-04-13 10:52:20 +02001899 tun->pcpu_stats = netdev_alloc_pcpu_stats(struct tun_pcpu_stats);
1900 if (!tun->pcpu_stats) {
1901 err = -ENOMEM;
1902 goto err_free_dev;
1903 }
1904
Jason Wang96442e422012-10-31 19:46:02 +00001905 spin_lock_init(&tun->lock);
1906
Paul Moore5dbbaf22013-01-14 07:12:19 +00001907 err = security_tun_dev_alloc_security(&tun->security);
1908 if (err < 0)
Paolo Abeni608b9972016-04-13 10:52:20 +02001909 goto err_free_stat;
Paul Moore2b980db2009-08-28 18:12:43 -04001910
Linus Torvalds1da177e2005-04-16 15:20:36 -07001911 tun_net_init(dev);
Pavel Emelyanov944a1372013-06-11 17:01:08 +04001912 tun_flow_init(tun);
Jason Wang96442e422012-10-31 19:46:02 +00001913
Michał Mirosław88255372011-04-19 06:13:10 +00001914 dev->hw_features = NETIF_F_SG | NETIF_F_FRAGLIST |
Jason Wang6680ec62013-07-25 13:00:33 +08001915 TUN_USER_FEATURES | NETIF_F_HW_VLAN_CTAG_TX |
1916 NETIF_F_HW_VLAN_STAG_TX;
Paolo Abeni2a2bbf12016-04-14 18:39:39 +02001917 dev->features = dev->hw_features | NETIF_F_LLTX;
Fernando Luis Vazquez Cao6671b222014-02-18 21:20:09 +09001918 dev->vlan_features = dev->features &
1919 ~(NETIF_F_HW_VLAN_CTAG_TX |
1920 NETIF_F_HW_VLAN_STAG_TX);
Michał Mirosław88255372011-04-19 06:13:10 +00001921
Jason Wang4008e972012-12-13 23:53:30 +00001922 INIT_LIST_HEAD(&tun->disabled);
Pavel Emelyanov849c9b62013-08-21 14:32:21 +04001923 err = tun_attach(tun, file, false);
Jason Wangeb0fb362012-12-02 17:19:45 +00001924 if (err < 0)
Jason Wang662ca432013-09-11 18:09:48 +08001925 goto err_free_flow;
Jason Wangeb0fb362012-12-02 17:19:45 +00001926
Linus Torvalds1da177e2005-04-16 15:20:36 -07001927 err = register_netdevice(tun->dev);
1928 if (err < 0)
Jason Wang662ca432013-09-11 18:09:48 +08001929 goto err_detach;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001930 }
1931
Michael S. Tsirkinaf668b32013-01-28 00:38:02 +00001932 netif_carrier_on(tun->dev);
1933
Joe Perches6b8a66e2011-03-02 07:18:10 +00001934 tun_debug(KERN_INFO, tun, "tun_set_iff\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001935
Michael S. Tsirkin031f5e032014-11-19 14:44:40 +02001936 tun->flags = (tun->flags & ~TUN_FEATURES) |
1937 (ifr->ifr_flags & TUN_FEATURES);
Jason Wangc8d68e62012-10-31 19:46:00 +00001938
Max Krasnyanskye35259a2008-07-10 16:59:11 -07001939 /* Make sure persistent devices do not get stuck in
1940 * xoff state.
1941 */
1942 if (netif_running(tun->dev))
Jason Wangc8d68e62012-10-31 19:46:00 +00001943 netif_tx_wake_all_queues(tun->dev);
Max Krasnyanskye35259a2008-07-10 16:59:11 -07001944
Linus Torvalds1da177e2005-04-16 15:20:36 -07001945 strcpy(ifr->ifr_name, tun->dev->name);
1946 return 0;
1947
Jason Wang662ca432013-09-11 18:09:48 +08001948err_detach:
1949 tun_detach_all(dev);
1950err_free_flow:
1951 tun_flow_uninit(tun);
1952 security_tun_dev_free_security(tun->security);
Paolo Abeni608b9972016-04-13 10:52:20 +02001953err_free_stat:
1954 free_percpu(tun->pcpu_stats);
Jason Wang662ca432013-09-11 18:09:48 +08001955err_free_dev:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001956 free_netdev(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001957 return err;
1958}
1959
Rami Rosen9ce99cf2012-11-23 03:58:10 +00001960static void tun_get_iff(struct net *net, struct tun_struct *tun,
Herbert Xu876bfd42009-08-06 14:22:44 +00001961 struct ifreq *ifr)
Mark McLoughline3b99552008-08-15 15:09:56 -07001962{
Joe Perches6b8a66e2011-03-02 07:18:10 +00001963 tun_debug(KERN_INFO, tun, "tun_get_iff\n");
Mark McLoughline3b99552008-08-15 15:09:56 -07001964
1965 strcpy(ifr->ifr_name, tun->dev->name);
1966
David Woodhouse980c9e82009-05-09 22:54:21 -07001967 ifr->ifr_flags = tun_flags(tun);
Mark McLoughline3b99552008-08-15 15:09:56 -07001968
Mark McLoughline3b99552008-08-15 15:09:56 -07001969}
1970
Rusty Russell5228ddc2008-07-03 03:46:16 -07001971/* This is like a cut-down ethtool ops, except done via tun fd so no
1972 * privs required. */
Michał Mirosław88255372011-04-19 06:13:10 +00001973static int set_offload(struct tun_struct *tun, unsigned long arg)
Rusty Russell5228ddc2008-07-03 03:46:16 -07001974{
Michał Mirosławc8f44af2011-11-15 15:29:55 +00001975 netdev_features_t features = 0;
Rusty Russell5228ddc2008-07-03 03:46:16 -07001976
1977 if (arg & TUN_F_CSUM) {
Michał Mirosław88255372011-04-19 06:13:10 +00001978 features |= NETIF_F_HW_CSUM;
Rusty Russell5228ddc2008-07-03 03:46:16 -07001979 arg &= ~TUN_F_CSUM;
1980
1981 if (arg & (TUN_F_TSO4|TUN_F_TSO6)) {
1982 if (arg & TUN_F_TSO_ECN) {
1983 features |= NETIF_F_TSO_ECN;
1984 arg &= ~TUN_F_TSO_ECN;
1985 }
1986 if (arg & TUN_F_TSO4)
1987 features |= NETIF_F_TSO;
1988 if (arg & TUN_F_TSO6)
1989 features |= NETIF_F_TSO6;
1990 arg &= ~(TUN_F_TSO4|TUN_F_TSO6);
1991 }
1992 }
1993
1994 /* This gives the user a way to test for new features in future by
1995 * trying to set them. */
1996 if (arg)
1997 return -EINVAL;
1998
Michał Mirosław88255372011-04-19 06:13:10 +00001999 tun->set_features = features;
Yaroslav Isakov09050952017-03-16 22:44:10 +03002000 tun->dev->wanted_features &= ~TUN_USER_FEATURES;
2001 tun->dev->wanted_features |= features;
Michał Mirosław88255372011-04-19 06:13:10 +00002002 netdev_update_features(tun->dev);
Rusty Russell5228ddc2008-07-03 03:46:16 -07002003
2004 return 0;
2005}
2006
Jason Wangc8d68e62012-10-31 19:46:00 +00002007static void tun_detach_filter(struct tun_struct *tun, int n)
2008{
2009 int i;
2010 struct tun_file *tfile;
2011
2012 for (i = 0; i < n; i++) {
Jason Wangb8deabd2013-01-11 16:59:32 +00002013 tfile = rtnl_dereference(tun->tfiles[i]);
Hannes Frederic Sowa8ced4252016-04-05 17:10:16 +02002014 lock_sock(tfile->socket.sk);
2015 sk_detach_filter(tfile->socket.sk);
2016 release_sock(tfile->socket.sk);
Jason Wangc8d68e62012-10-31 19:46:00 +00002017 }
2018
2019 tun->filter_attached = false;
2020}
2021
2022static int tun_attach_filter(struct tun_struct *tun)
2023{
2024 int i, ret = 0;
2025 struct tun_file *tfile;
2026
2027 for (i = 0; i < tun->numqueues; i++) {
Jason Wangb8deabd2013-01-11 16:59:32 +00002028 tfile = rtnl_dereference(tun->tfiles[i]);
Hannes Frederic Sowa8ced4252016-04-05 17:10:16 +02002029 lock_sock(tfile->socket.sk);
2030 ret = sk_attach_filter(&tun->fprog, tfile->socket.sk);
2031 release_sock(tfile->socket.sk);
Jason Wangc8d68e62012-10-31 19:46:00 +00002032 if (ret) {
2033 tun_detach_filter(tun, i);
2034 return ret;
2035 }
2036 }
2037
2038 tun->filter_attached = true;
2039 return ret;
2040}
2041
2042static void tun_set_sndbuf(struct tun_struct *tun)
2043{
2044 struct tun_file *tfile;
2045 int i;
2046
2047 for (i = 0; i < tun->numqueues; i++) {
Jason Wangb8deabd2013-01-11 16:59:32 +00002048 tfile = rtnl_dereference(tun->tfiles[i]);
Jason Wangc8d68e62012-10-31 19:46:00 +00002049 tfile->socket.sk->sk_sndbuf = tun->sndbuf;
2050 }
2051}
2052
Jason Wangcde8b152012-10-31 19:46:01 +00002053static int tun_set_queue(struct file *file, struct ifreq *ifr)
2054{
2055 struct tun_file *tfile = file->private_data;
2056 struct tun_struct *tun;
Jason Wangcde8b152012-10-31 19:46:01 +00002057 int ret = 0;
2058
2059 rtnl_lock();
2060
2061 if (ifr->ifr_flags & IFF_ATTACH_QUEUE) {
Jason Wang4008e972012-12-13 23:53:30 +00002062 tun = tfile->detached;
Paul Moore5dbbaf22013-01-14 07:12:19 +00002063 if (!tun) {
Jason Wangcde8b152012-10-31 19:46:01 +00002064 ret = -EINVAL;
Paul Moore5dbbaf22013-01-14 07:12:19 +00002065 goto unlock;
2066 }
2067 ret = security_tun_dev_attach_queue(tun->security);
2068 if (ret < 0)
2069 goto unlock;
Pavel Emelyanov849c9b62013-08-21 14:32:21 +04002070 ret = tun_attach(tun, file, false);
Jason Wang4008e972012-12-13 23:53:30 +00002071 } else if (ifr->ifr_flags & IFF_DETACH_QUEUE) {
Jason Wangb8deabd2013-01-11 16:59:32 +00002072 tun = rtnl_dereference(tfile->tun);
Michael S. Tsirkin40630b82014-11-19 15:17:31 +02002073 if (!tun || !(tun->flags & IFF_MULTI_QUEUE) || tfile->detached)
Jason Wang4008e972012-12-13 23:53:30 +00002074 ret = -EINVAL;
2075 else
2076 __tun_detach(tfile, false);
2077 } else
Jason Wangcde8b152012-10-31 19:46:01 +00002078 ret = -EINVAL;
2079
Paul Moore5dbbaf22013-01-14 07:12:19 +00002080unlock:
Jason Wangcde8b152012-10-31 19:46:01 +00002081 rtnl_unlock();
2082 return ret;
2083}
2084
Arnd Bergmann50857e22009-11-06 22:52:32 -08002085static long __tun_chr_ioctl(struct file *file, unsigned int cmd,
2086 unsigned long arg, int ifreq_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002087{
Eric W. Biederman36b50ba2009-01-20 11:01:48 +00002088 struct tun_file *tfile = file->private_data;
Eric W. Biederman631ab462009-01-20 11:00:40 +00002089 struct tun_struct *tun;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002090 void __user* argp = (void __user*)arg;
2091 struct ifreq ifr;
Eric W. Biederman0625c882012-02-07 16:48:55 -08002092 kuid_t owner;
2093 kgid_t group;
Herbert Xu33dccbb2009-02-05 21:25:32 -08002094 int sndbuf;
Michael S. Tsirkind9d52b52010-03-17 17:45:01 +02002095 int vnet_hdr_sz;
Pavel Emelyanovfb7589a2013-08-21 14:31:38 +04002096 unsigned int ifindex;
Michael S. Tsirkin1cf8e412014-12-16 15:05:06 +02002097 int le;
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -07002098 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002099
Gao Feng20861f22016-10-27 09:05:22 +08002100 if (cmd == TUNSETIFF || cmd == TUNSETQUEUE || _IOC_TYPE(cmd) == SOCK_IOC_TYPE) {
Arnd Bergmann50857e22009-11-06 22:52:32 -08002101 if (copy_from_user(&ifr, argp, ifreq_len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002102 return -EFAULT;
David S. Miller8bbb1812012-07-30 14:52:48 -07002103 } else {
Mathias Krausea117dac2012-07-29 19:45:14 +00002104 memset(&ifr, 0, sizeof(ifr));
David S. Miller8bbb1812012-07-30 14:52:48 -07002105 }
Eric W. Biederman631ab462009-01-20 11:00:40 +00002106 if (cmd == TUNGETFEATURES) {
2107 /* Currently this just means: "what IFF flags are valid?".
2108 * This is needed because we never checked for invalid flags on
Michael S. Tsirkin031f5e032014-11-19 14:44:40 +02002109 * TUNSETIFF.
2110 */
2111 return put_user(IFF_TUN | IFF_TAP | TUN_FEATURES,
Eric W. Biederman631ab462009-01-20 11:00:40 +00002112 (unsigned int __user*)argp);
Jason Wangcde8b152012-10-31 19:46:01 +00002113 } else if (cmd == TUNSETQUEUE)
2114 return tun_set_queue(file, &ifr);
Eric W. Biederman631ab462009-01-20 11:00:40 +00002115
Jason Wangc8d68e62012-10-31 19:46:00 +00002116 ret = 0;
Herbert Xu876bfd42009-08-06 14:22:44 +00002117 rtnl_lock();
2118
Eric W. Biederman36b50ba2009-01-20 11:01:48 +00002119 tun = __tun_get(tfile);
Gao Feng0f16bc12016-10-25 22:26:09 +08002120 if (cmd == TUNSETIFF) {
2121 ret = -EEXIST;
2122 if (tun)
2123 goto unlock;
2124
Linus Torvalds1da177e2005-04-16 15:20:36 -07002125 ifr.ifr_name[IFNAMSIZ-1] = '\0';
2126
Eric W. Biederman140e807da2015-05-08 21:07:08 -05002127 ret = tun_set_iff(sock_net(&tfile->sk), file, &ifr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002128
Herbert Xu876bfd42009-08-06 14:22:44 +00002129 if (ret)
2130 goto unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002131
Arnd Bergmann50857e22009-11-06 22:52:32 -08002132 if (copy_to_user(argp, &ifr, ifreq_len))
Herbert Xu876bfd42009-08-06 14:22:44 +00002133 ret = -EFAULT;
2134 goto unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002135 }
Pavel Emelyanovfb7589a2013-08-21 14:31:38 +04002136 if (cmd == TUNSETIFINDEX) {
2137 ret = -EPERM;
2138 if (tun)
2139 goto unlock;
2140
2141 ret = -EFAULT;
2142 if (copy_from_user(&ifindex, argp, sizeof(ifindex)))
2143 goto unlock;
2144
2145 ret = 0;
2146 tfile->ifindex = ifindex;
2147 goto unlock;
2148 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002149
Herbert Xu876bfd42009-08-06 14:22:44 +00002150 ret = -EBADFD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002151 if (!tun)
Herbert Xu876bfd42009-08-06 14:22:44 +00002152 goto unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002153
Jason Wang1e588332012-10-31 19:45:56 +00002154 tun_debug(KERN_INFO, tun, "tun_chr_ioctl cmd %u\n", cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002155
Eric W. Biederman631ab462009-01-20 11:00:40 +00002156 ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002157 switch (cmd) {
Mark McLoughline3b99552008-08-15 15:09:56 -07002158 case TUNGETIFF:
Rami Rosen9ce99cf2012-11-23 03:58:10 +00002159 tun_get_iff(current->nsproxy->net_ns, tun, &ifr);
Mark McLoughline3b99552008-08-15 15:09:56 -07002160
Pavel Emelyanov3d407a82013-08-21 14:32:00 +04002161 if (tfile->detached)
2162 ifr.ifr_flags |= IFF_DETACH_QUEUE;
Pavel Emelyanov849c9b62013-08-21 14:32:21 +04002163 if (!tfile->socket.sk->sk_filter)
2164 ifr.ifr_flags |= IFF_NOFILTER;
Pavel Emelyanov3d407a82013-08-21 14:32:00 +04002165
Arnd Bergmann50857e22009-11-06 22:52:32 -08002166 if (copy_to_user(argp, &ifr, ifreq_len))
Eric W. Biederman631ab462009-01-20 11:00:40 +00002167 ret = -EFAULT;
Mark McLoughline3b99552008-08-15 15:09:56 -07002168 break;
2169
Linus Torvalds1da177e2005-04-16 15:20:36 -07002170 case TUNSETNOCSUM:
2171 /* Disable/Enable checksum */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002172
Michał Mirosław88255372011-04-19 06:13:10 +00002173 /* [unimplemented] */
2174 tun_debug(KERN_INFO, tun, "ignored: set checksum %s\n",
Joe Perches6b8a66e2011-03-02 07:18:10 +00002175 arg ? "disabled" : "enabled");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002176 break;
2177
2178 case TUNSETPERSIST:
Jason Wang54f968d2012-10-31 19:45:57 +00002179 /* Disable/Enable persist mode. Keep an extra reference to the
2180 * module to prevent the module being unprobed.
2181 */
Michael S. Tsirkin40630b82014-11-19 15:17:31 +02002182 if (arg && !(tun->flags & IFF_PERSIST)) {
2183 tun->flags |= IFF_PERSIST;
Jason Wang54f968d2012-10-31 19:45:57 +00002184 __module_get(THIS_MODULE);
Jason Wangdd38bd82013-01-11 16:59:34 +00002185 }
Michael S. Tsirkin40630b82014-11-19 15:17:31 +02002186 if (!arg && (tun->flags & IFF_PERSIST)) {
2187 tun->flags &= ~IFF_PERSIST;
Jason Wang54f968d2012-10-31 19:45:57 +00002188 module_put(THIS_MODULE);
2189 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002190
Joe Perches6b8a66e2011-03-02 07:18:10 +00002191 tun_debug(KERN_INFO, tun, "persist %s\n",
2192 arg ? "enabled" : "disabled");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002193 break;
2194
2195 case TUNSETOWNER:
2196 /* Set owner of the device */
Eric W. Biederman0625c882012-02-07 16:48:55 -08002197 owner = make_kuid(current_user_ns(), arg);
2198 if (!uid_valid(owner)) {
2199 ret = -EINVAL;
2200 break;
2201 }
2202 tun->owner = owner;
Jason Wang1e588332012-10-31 19:45:56 +00002203 tun_debug(KERN_INFO, tun, "owner set to %u\n",
Eric W. Biederman0625c882012-02-07 16:48:55 -08002204 from_kuid(&init_user_ns, tun->owner));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002205 break;
2206
Guido Guenther8c644622007-07-02 22:50:25 -07002207 case TUNSETGROUP:
2208 /* Set group of the device */
Eric W. Biederman0625c882012-02-07 16:48:55 -08002209 group = make_kgid(current_user_ns(), arg);
2210 if (!gid_valid(group)) {
2211 ret = -EINVAL;
2212 break;
2213 }
2214 tun->group = group;
Jason Wang1e588332012-10-31 19:45:56 +00002215 tun_debug(KERN_INFO, tun, "group set to %u\n",
Eric W. Biederman0625c882012-02-07 16:48:55 -08002216 from_kgid(&init_user_ns, tun->group));
Guido Guenther8c644622007-07-02 22:50:25 -07002217 break;
2218
Mike Kershawff4cc3a2005-09-01 17:40:05 -07002219 case TUNSETLINK:
2220 /* Only allow setting the type when the interface is down */
2221 if (tun->dev->flags & IFF_UP) {
Joe Perches6b8a66e2011-03-02 07:18:10 +00002222 tun_debug(KERN_INFO, tun,
2223 "Linktype set failed because interface is up\n");
David S. Miller48abfe02008-04-23 19:37:58 -07002224 ret = -EBUSY;
Mike Kershawff4cc3a2005-09-01 17:40:05 -07002225 } else {
2226 tun->dev->type = (int) arg;
Joe Perches6b8a66e2011-03-02 07:18:10 +00002227 tun_debug(KERN_INFO, tun, "linktype set to %d\n",
2228 tun->dev->type);
David S. Miller48abfe02008-04-23 19:37:58 -07002229 ret = 0;
Mike Kershawff4cc3a2005-09-01 17:40:05 -07002230 }
Eric W. Biederman631ab462009-01-20 11:00:40 +00002231 break;
Mike Kershawff4cc3a2005-09-01 17:40:05 -07002232
Linus Torvalds1da177e2005-04-16 15:20:36 -07002233#ifdef TUN_DEBUG
2234 case TUNSETDEBUG:
2235 tun->debug = arg;
2236 break;
2237#endif
Rusty Russell5228ddc2008-07-03 03:46:16 -07002238 case TUNSETOFFLOAD:
Michał Mirosław88255372011-04-19 06:13:10 +00002239 ret = set_offload(tun, arg);
Eric W. Biederman631ab462009-01-20 11:00:40 +00002240 break;
Rusty Russell5228ddc2008-07-03 03:46:16 -07002241
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -07002242 case TUNSETTXFILTER:
2243 /* Can be set only for TAPs */
Eric W. Biederman631ab462009-01-20 11:00:40 +00002244 ret = -EINVAL;
Michael S. Tsirkin40630b82014-11-19 15:17:31 +02002245 if ((tun->flags & TUN_TYPE_MASK) != IFF_TAP)
Eric W. Biederman631ab462009-01-20 11:00:40 +00002246 break;
Harvey Harrisonc0e5a8c2008-07-16 12:45:34 -07002247 ret = update_filter(&tun->txflt, (void __user *)arg);
Eric W. Biederman631ab462009-01-20 11:00:40 +00002248 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002249
2250 case SIOCGIFHWADDR:
Uwe Kleine-Königb5950762010-11-01 15:38:34 -04002251 /* Get hw address */
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -07002252 memcpy(ifr.ifr_hwaddr.sa_data, tun->dev->dev_addr, ETH_ALEN);
2253 ifr.ifr_hwaddr.sa_family = tun->dev->type;
Arnd Bergmann50857e22009-11-06 22:52:32 -08002254 if (copy_to_user(argp, &ifr, ifreq_len))
Eric W. Biederman631ab462009-01-20 11:00:40 +00002255 ret = -EFAULT;
2256 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002257
2258 case SIOCSIFHWADDR:
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -07002259 /* Set hw address */
Joe Perches6b8a66e2011-03-02 07:18:10 +00002260 tun_debug(KERN_DEBUG, tun, "set hw address: %pM\n",
2261 ifr.ifr_hwaddr.sa_data);
Kim B. Heino40102372008-02-29 12:26:21 -08002262
Kim B. Heino40102372008-02-29 12:26:21 -08002263 ret = dev_set_mac_address(tun->dev, &ifr.ifr_hwaddr);
Eric W. Biederman631ab462009-01-20 11:00:40 +00002264 break;
Herbert Xu33dccbb2009-02-05 21:25:32 -08002265
2266 case TUNGETSNDBUF:
Jason Wang54f968d2012-10-31 19:45:57 +00002267 sndbuf = tfile->socket.sk->sk_sndbuf;
Herbert Xu33dccbb2009-02-05 21:25:32 -08002268 if (copy_to_user(argp, &sndbuf, sizeof(sndbuf)))
2269 ret = -EFAULT;
2270 break;
2271
2272 case TUNSETSNDBUF:
2273 if (copy_from_user(&sndbuf, argp, sizeof(sndbuf))) {
2274 ret = -EFAULT;
2275 break;
2276 }
2277
Jason Wangc8d68e62012-10-31 19:46:00 +00002278 tun->sndbuf = sndbuf;
2279 tun_set_sndbuf(tun);
Herbert Xu33dccbb2009-02-05 21:25:32 -08002280 break;
2281
Michael S. Tsirkind9d52b52010-03-17 17:45:01 +02002282 case TUNGETVNETHDRSZ:
2283 vnet_hdr_sz = tun->vnet_hdr_sz;
2284 if (copy_to_user(argp, &vnet_hdr_sz, sizeof(vnet_hdr_sz)))
2285 ret = -EFAULT;
2286 break;
2287
2288 case TUNSETVNETHDRSZ:
2289 if (copy_from_user(&vnet_hdr_sz, argp, sizeof(vnet_hdr_sz))) {
2290 ret = -EFAULT;
2291 break;
2292 }
2293 if (vnet_hdr_sz < (int)sizeof(struct virtio_net_hdr)) {
2294 ret = -EINVAL;
2295 break;
2296 }
2297
2298 tun->vnet_hdr_sz = vnet_hdr_sz;
2299 break;
2300
Michael S. Tsirkin1cf8e412014-12-16 15:05:06 +02002301 case TUNGETVNETLE:
2302 le = !!(tun->flags & TUN_VNET_LE);
2303 if (put_user(le, (int __user *)argp))
2304 ret = -EFAULT;
2305 break;
2306
2307 case TUNSETVNETLE:
2308 if (get_user(le, (int __user *)argp)) {
2309 ret = -EFAULT;
2310 break;
2311 }
2312 if (le)
2313 tun->flags |= TUN_VNET_LE;
2314 else
2315 tun->flags &= ~TUN_VNET_LE;
2316 break;
2317
Greg Kurz8b8e6582015-04-24 14:50:36 +02002318 case TUNGETVNETBE:
2319 ret = tun_get_vnet_be(tun, argp);
2320 break;
2321
2322 case TUNSETVNETBE:
2323 ret = tun_set_vnet_be(tun, argp);
2324 break;
2325
Michael S. Tsirkin99405162010-02-14 01:01:10 +00002326 case TUNATTACHFILTER:
2327 /* Can be set only for TAPs */
2328 ret = -EINVAL;
Michael S. Tsirkin40630b82014-11-19 15:17:31 +02002329 if ((tun->flags & TUN_TYPE_MASK) != IFF_TAP)
Michael S. Tsirkin99405162010-02-14 01:01:10 +00002330 break;
2331 ret = -EFAULT;
Jason Wang54f968d2012-10-31 19:45:57 +00002332 if (copy_from_user(&tun->fprog, argp, sizeof(tun->fprog)))
Michael S. Tsirkin99405162010-02-14 01:01:10 +00002333 break;
2334
Jason Wangc8d68e62012-10-31 19:46:00 +00002335 ret = tun_attach_filter(tun);
Michael S. Tsirkin99405162010-02-14 01:01:10 +00002336 break;
2337
2338 case TUNDETACHFILTER:
2339 /* Can be set only for TAPs */
2340 ret = -EINVAL;
Michael S. Tsirkin40630b82014-11-19 15:17:31 +02002341 if ((tun->flags & TUN_TYPE_MASK) != IFF_TAP)
Michael S. Tsirkin99405162010-02-14 01:01:10 +00002342 break;
Jason Wangc8d68e62012-10-31 19:46:00 +00002343 ret = 0;
2344 tun_detach_filter(tun, tun->numqueues);
Michael S. Tsirkin99405162010-02-14 01:01:10 +00002345 break;
2346
Pavel Emelyanov76975e92013-08-21 14:32:39 +04002347 case TUNGETFILTER:
2348 ret = -EINVAL;
Michael S. Tsirkin40630b82014-11-19 15:17:31 +02002349 if ((tun->flags & TUN_TYPE_MASK) != IFF_TAP)
Pavel Emelyanov76975e92013-08-21 14:32:39 +04002350 break;
2351 ret = -EFAULT;
2352 if (copy_to_user(argp, &tun->fprog, sizeof(tun->fprog)))
2353 break;
2354 ret = 0;
2355 break;
2356
Linus Torvalds1da177e2005-04-16 15:20:36 -07002357 default:
Eric W. Biederman631ab462009-01-20 11:00:40 +00002358 ret = -EINVAL;
2359 break;
Joe Perchesee289b62010-05-17 22:47:34 -07002360 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002361
Herbert Xu876bfd42009-08-06 14:22:44 +00002362unlock:
2363 rtnl_unlock();
2364 if (tun)
2365 tun_put(tun);
Eric W. Biederman631ab462009-01-20 11:00:40 +00002366 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002367}
2368
Arnd Bergmann50857e22009-11-06 22:52:32 -08002369static long tun_chr_ioctl(struct file *file,
2370 unsigned int cmd, unsigned long arg)
2371{
2372 return __tun_chr_ioctl(file, cmd, arg, sizeof (struct ifreq));
2373}
2374
2375#ifdef CONFIG_COMPAT
2376static long tun_chr_compat_ioctl(struct file *file,
2377 unsigned int cmd, unsigned long arg)
2378{
2379 switch (cmd) {
2380 case TUNSETIFF:
2381 case TUNGETIFF:
2382 case TUNSETTXFILTER:
2383 case TUNGETSNDBUF:
2384 case TUNSETSNDBUF:
2385 case SIOCGIFHWADDR:
2386 case SIOCSIFHWADDR:
2387 arg = (unsigned long)compat_ptr(arg);
2388 break;
2389 default:
2390 arg = (compat_ulong_t)arg;
2391 break;
2392 }
2393
2394 /*
2395 * compat_ifreq is shorter than ifreq, so we must not access beyond
2396 * the end of that structure. All fields that are used in this
2397 * driver are compatible though, we don't need to convert the
2398 * contents.
2399 */
2400 return __tun_chr_ioctl(file, cmd, arg, sizeof(struct compat_ifreq));
2401}
2402#endif /* CONFIG_COMPAT */
2403
Linus Torvalds1da177e2005-04-16 15:20:36 -07002404static int tun_chr_fasync(int fd, struct file *file, int on)
2405{
Jason Wang54f968d2012-10-31 19:45:57 +00002406 struct tun_file *tfile = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002407 int ret;
2408
Jason Wang54f968d2012-10-31 19:45:57 +00002409 if ((ret = fasync_helper(fd, file, on, &tfile->fasync)) < 0)
Jonathan Corbet9d319522008-06-19 15:50:37 -06002410 goto out;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002411
Linus Torvalds1da177e2005-04-16 15:20:36 -07002412 if (on) {
Jeff Laytone0b93ed2014-08-22 11:27:32 -04002413 __f_setown(file, task_pid(current), PIDTYPE_PID, 0);
Jason Wang54f968d2012-10-31 19:45:57 +00002414 tfile->flags |= TUN_FASYNC;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002415 } else
Jason Wang54f968d2012-10-31 19:45:57 +00002416 tfile->flags &= ~TUN_FASYNC;
Jonathan Corbet9d319522008-06-19 15:50:37 -06002417 ret = 0;
2418out:
Jonathan Corbet9d319522008-06-19 15:50:37 -06002419 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002420}
2421
2422static int tun_chr_open(struct inode *inode, struct file * file)
2423{
Eric W. Biederman140e807da2015-05-08 21:07:08 -05002424 struct net *net = current->nsproxy->net_ns;
Eric W. Biederman631ab462009-01-20 11:00:40 +00002425 struct tun_file *tfile;
Thomas Gleixnerdeed49f2009-10-14 01:19:46 -07002426
Joe Perches6b8a66e2011-03-02 07:18:10 +00002427 DBG1(KERN_INFO, "tunX: tun_chr_open\n");
Eric W. Biederman631ab462009-01-20 11:00:40 +00002428
Eric W. Biederman140e807da2015-05-08 21:07:08 -05002429 tfile = (struct tun_file *)sk_alloc(net, AF_UNSPEC, GFP_KERNEL,
Eric W. Biederman11aa9c22015-05-08 21:09:13 -05002430 &tun_proto, 0);
Eric W. Biederman631ab462009-01-20 11:00:40 +00002431 if (!tfile)
2432 return -ENOMEM;
Monam Agarwalc9566742014-03-24 00:02:32 +05302433 RCU_INIT_POINTER(tfile->tun, NULL);
Jason Wang54f968d2012-10-31 19:45:57 +00002434 tfile->flags = 0;
Pavel Emelyanovfb7589a2013-08-21 14:31:38 +04002435 tfile->ifindex = 0;
Jason Wang54f968d2012-10-31 19:45:57 +00002436
Jason Wang54f968d2012-10-31 19:45:57 +00002437 init_waitqueue_head(&tfile->wq.wait);
Xi Wang9e641bd2014-05-16 15:11:48 -07002438 RCU_INIT_POINTER(tfile->socket.wq, &tfile->wq);
Jason Wang54f968d2012-10-31 19:45:57 +00002439
2440 tfile->socket.file = file;
2441 tfile->socket.ops = &tun_socket_ops;
2442
2443 sock_init_data(&tfile->socket, &tfile->sk);
Jason Wang54f968d2012-10-31 19:45:57 +00002444
2445 tfile->sk.sk_write_space = tun_sock_write_space;
2446 tfile->sk.sk_sndbuf = INT_MAX;
2447
Jason Wang66ccbc92017-08-11 19:41:16 +08002448 tfile->alloc_frag.page = NULL;
2449
Eric W. Biederman631ab462009-01-20 11:00:40 +00002450 file->private_data = tfile;
Jason Wang4008e972012-12-13 23:53:30 +00002451 INIT_LIST_HEAD(&tfile->next);
Jason Wang54f968d2012-10-31 19:45:57 +00002452
Jason Wang19a6afb2013-06-08 14:17:41 +08002453 sock_set_flag(&tfile->sk, SOCK_ZEROCOPY);
2454
Linus Torvalds1da177e2005-04-16 15:20:36 -07002455 return 0;
2456}
2457
2458static int tun_chr_close(struct inode *inode, struct file *file)
2459{
Eric W. Biederman631ab462009-01-20 11:00:40 +00002460 struct tun_file *tfile = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002461
Jason Wangc8d68e62012-10-31 19:46:00 +00002462 tun_detach(tfile, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002463
2464 return 0;
2465}
2466
Masatake YAMATO93e14b62014-01-29 16:43:31 +09002467#ifdef CONFIG_PROC_FS
Joe Perchesa3816ab2014-09-29 16:08:25 -07002468static void tun_chr_show_fdinfo(struct seq_file *m, struct file *f)
Masatake YAMATO93e14b62014-01-29 16:43:31 +09002469{
2470 struct tun_struct *tun;
2471 struct ifreq ifr;
2472
2473 memset(&ifr, 0, sizeof(ifr));
2474
2475 rtnl_lock();
2476 tun = tun_get(f);
2477 if (tun)
2478 tun_get_iff(current->nsproxy->net_ns, tun, &ifr);
2479 rtnl_unlock();
2480
2481 if (tun)
2482 tun_put(tun);
2483
Joe Perchesa3816ab2014-09-29 16:08:25 -07002484 seq_printf(m, "iff:\t%s\n", ifr.ifr_name);
Masatake YAMATO93e14b62014-01-29 16:43:31 +09002485}
2486#endif
2487
Arjan van de Vend54b1fd2007-02-12 00:55:34 -08002488static const struct file_operations tun_fops = {
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002489 .owner = THIS_MODULE,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002490 .llseek = no_llseek,
Al Viro9b067032014-11-07 13:52:07 -05002491 .read_iter = tun_chr_read_iter,
Al Virof5ff53b2014-06-19 15:36:49 -04002492 .write_iter = tun_chr_write_iter,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002493 .poll = tun_chr_poll,
Arnd Bergmann50857e22009-11-06 22:52:32 -08002494 .unlocked_ioctl = tun_chr_ioctl,
2495#ifdef CONFIG_COMPAT
2496 .compat_ioctl = tun_chr_compat_ioctl,
2497#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002498 .open = tun_chr_open,
2499 .release = tun_chr_close,
Masatake YAMATO93e14b62014-01-29 16:43:31 +09002500 .fasync = tun_chr_fasync,
2501#ifdef CONFIG_PROC_FS
2502 .show_fdinfo = tun_chr_show_fdinfo,
2503#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002504};
2505
2506static struct miscdevice tun_miscdev = {
2507 .minor = TUN_MINOR,
2508 .name = "tun",
Kay Sieverse454cea2009-09-18 23:01:12 +02002509 .nodename = "net/tun",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002510 .fops = &tun_fops,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002511};
2512
2513/* ethtool interface */
2514
Philippe Reynes29ccc492017-03-11 22:03:50 +01002515static int tun_get_link_ksettings(struct net_device *dev,
2516 struct ethtool_link_ksettings *cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002517{
Philippe Reynes29ccc492017-03-11 22:03:50 +01002518 ethtool_link_ksettings_zero_link_mode(cmd, supported);
2519 ethtool_link_ksettings_zero_link_mode(cmd, advertising);
2520 cmd->base.speed = SPEED_10;
2521 cmd->base.duplex = DUPLEX_FULL;
2522 cmd->base.port = PORT_TP;
2523 cmd->base.phy_address = 0;
2524 cmd->base.autoneg = AUTONEG_DISABLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002525 return 0;
2526}
2527
2528static void tun_get_drvinfo(struct net_device *dev, struct ethtool_drvinfo *info)
2529{
2530 struct tun_struct *tun = netdev_priv(dev);
2531
Rick Jones33a5ba12011-11-15 14:59:53 +00002532 strlcpy(info->driver, DRV_NAME, sizeof(info->driver));
2533 strlcpy(info->version, DRV_VERSION, sizeof(info->version));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002534
2535 switch (tun->flags & TUN_TYPE_MASK) {
Michael S. Tsirkin40630b82014-11-19 15:17:31 +02002536 case IFF_TUN:
Rick Jones33a5ba12011-11-15 14:59:53 +00002537 strlcpy(info->bus_info, "tun", sizeof(info->bus_info));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002538 break;
Michael S. Tsirkin40630b82014-11-19 15:17:31 +02002539 case IFF_TAP:
Rick Jones33a5ba12011-11-15 14:59:53 +00002540 strlcpy(info->bus_info, "tap", sizeof(info->bus_info));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002541 break;
2542 }
2543}
2544
2545static u32 tun_get_msglevel(struct net_device *dev)
2546{
2547#ifdef TUN_DEBUG
2548 struct tun_struct *tun = netdev_priv(dev);
2549 return tun->debug;
2550#else
2551 return -EOPNOTSUPP;
2552#endif
2553}
2554
2555static void tun_set_msglevel(struct net_device *dev, u32 value)
2556{
2557#ifdef TUN_DEBUG
2558 struct tun_struct *tun = netdev_priv(dev);
2559 tun->debug = value;
2560#endif
2561}
2562
Jason Wang5503fce2017-01-18 15:02:03 +08002563static int tun_get_coalesce(struct net_device *dev,
2564 struct ethtool_coalesce *ec)
2565{
2566 struct tun_struct *tun = netdev_priv(dev);
2567
2568 ec->rx_max_coalesced_frames = tun->rx_batched;
2569
2570 return 0;
2571}
2572
2573static int tun_set_coalesce(struct net_device *dev,
2574 struct ethtool_coalesce *ec)
2575{
2576 struct tun_struct *tun = netdev_priv(dev);
2577
2578 if (ec->rx_max_coalesced_frames > NAPI_POLL_WEIGHT)
2579 tun->rx_batched = NAPI_POLL_WEIGHT;
2580 else
2581 tun->rx_batched = ec->rx_max_coalesced_frames;
2582
2583 return 0;
2584}
2585
Jeff Garzik7282d492006-09-13 14:30:00 -04002586static const struct ethtool_ops tun_ethtool_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002587 .get_drvinfo = tun_get_drvinfo,
2588 .get_msglevel = tun_get_msglevel,
2589 .set_msglevel = tun_set_msglevel,
Nolan Leakebee31362010-07-27 13:53:43 +00002590 .get_link = ethtool_op_get_link,
Richard Cochraneda29772013-07-19 19:40:10 +02002591 .get_ts_info = ethtool_op_get_ts_info,
Jason Wang5503fce2017-01-18 15:02:03 +08002592 .get_coalesce = tun_get_coalesce,
2593 .set_coalesce = tun_set_coalesce,
Philippe Reynes29ccc492017-03-11 22:03:50 +01002594 .get_link_ksettings = tun_get_link_ksettings,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002595};
2596
Jason Wang1576d982016-06-30 14:45:36 +08002597static int tun_queue_resize(struct tun_struct *tun)
2598{
2599 struct net_device *dev = tun->dev;
2600 struct tun_file *tfile;
2601 struct skb_array **arrays;
2602 int n = tun->numqueues + tun->numdisabled;
2603 int ret, i;
2604
2605 arrays = kmalloc(sizeof *arrays * n, GFP_KERNEL);
2606 if (!arrays)
2607 return -ENOMEM;
2608
2609 for (i = 0; i < tun->numqueues; i++) {
2610 tfile = rtnl_dereference(tun->tfiles[i]);
2611 arrays[i] = &tfile->tx_array;
2612 }
2613 list_for_each_entry(tfile, &tun->disabled, next)
2614 arrays[i++] = &tfile->tx_array;
2615
2616 ret = skb_array_resize_multiple(arrays, n,
2617 dev->tx_queue_len, GFP_KERNEL);
2618
2619 kfree(arrays);
2620 return ret;
2621}
2622
2623static int tun_device_event(struct notifier_block *unused,
2624 unsigned long event, void *ptr)
2625{
2626 struct net_device *dev = netdev_notifier_info_to_dev(ptr);
2627 struct tun_struct *tun = netdev_priv(dev);
2628
Craig Gallek86dfb4ac2016-07-06 18:44:20 -04002629 if (dev->rtnl_link_ops != &tun_link_ops)
2630 return NOTIFY_DONE;
2631
Jason Wang1576d982016-06-30 14:45:36 +08002632 switch (event) {
2633 case NETDEV_CHANGE_TX_QUEUE_LEN:
2634 if (tun_queue_resize(tun))
2635 return NOTIFY_BAD;
2636 break;
2637 default:
2638 break;
2639 }
2640
2641 return NOTIFY_DONE;
2642}
2643
2644static struct notifier_block tun_notifier_block __read_mostly = {
2645 .notifier_call = tun_device_event,
2646};
Pavel Emelyanov79d17602008-04-16 00:40:46 -07002647
Linus Torvalds1da177e2005-04-16 15:20:36 -07002648static int __init tun_init(void)
2649{
2650 int ret = 0;
2651
Joe Perches6b8a66e2011-03-02 07:18:10 +00002652 pr_info("%s, %s\n", DRV_DESCRIPTION, DRV_VERSION);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002653
Eric W. Biedermanf019a7a2009-01-21 16:02:16 -08002654 ret = rtnl_link_register(&tun_link_ops);
Pavel Emelyanov79d17602008-04-16 00:40:46 -07002655 if (ret) {
Joe Perches6b8a66e2011-03-02 07:18:10 +00002656 pr_err("Can't register link_ops\n");
Eric W. Biedermanf019a7a2009-01-21 16:02:16 -08002657 goto err_linkops;
Pavel Emelyanov79d17602008-04-16 00:40:46 -07002658 }
2659
Linus Torvalds1da177e2005-04-16 15:20:36 -07002660 ret = misc_register(&tun_miscdev);
Pavel Emelyanov79d17602008-04-16 00:40:46 -07002661 if (ret) {
Joe Perches6b8a66e2011-03-02 07:18:10 +00002662 pr_err("Can't register misc device %d\n", TUN_MINOR);
Pavel Emelyanov79d17602008-04-16 00:40:46 -07002663 goto err_misc;
2664 }
Jason Wang1576d982016-06-30 14:45:36 +08002665
Tonghao Zhang5edfbd32017-07-20 02:41:34 -07002666 ret = register_netdevice_notifier(&tun_notifier_block);
2667 if (ret) {
2668 pr_err("Can't register netdevice notifier\n");
2669 goto err_notifier;
2670 }
2671
Eric W. Biedermanf019a7a2009-01-21 16:02:16 -08002672 return 0;
Tonghao Zhang5edfbd32017-07-20 02:41:34 -07002673
2674err_notifier:
2675 misc_deregister(&tun_miscdev);
Pavel Emelyanov79d17602008-04-16 00:40:46 -07002676err_misc:
Eric W. Biedermanf019a7a2009-01-21 16:02:16 -08002677 rtnl_link_unregister(&tun_link_ops);
2678err_linkops:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002679 return ret;
2680}
2681
2682static void tun_cleanup(void)
2683{
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002684 misc_deregister(&tun_miscdev);
Eric W. Biedermanf019a7a2009-01-21 16:02:16 -08002685 rtnl_link_unregister(&tun_link_ops);
Jason Wang1576d982016-06-30 14:45:36 +08002686 unregister_netdevice_notifier(&tun_notifier_block);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002687}
2688
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00002689/* Get an underlying socket object from tun file. Returns error unless file is
2690 * attached to a device. The returned object works like a packet socket, it
2691 * can be used for sock_sendmsg/sock_recvmsg. The caller is responsible for
2692 * holding a reference to the file for as long as the socket is in use. */
2693struct socket *tun_get_socket(struct file *file)
2694{
Jason Wang6e914fc2012-10-31 19:45:58 +00002695 struct tun_file *tfile;
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00002696 if (file->f_op != &tun_fops)
2697 return ERR_PTR(-EINVAL);
Jason Wang6e914fc2012-10-31 19:45:58 +00002698 tfile = file->private_data;
2699 if (!tfile)
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00002700 return ERR_PTR(-EBADFD);
Jason Wang54f968d2012-10-31 19:45:57 +00002701 return &tfile->socket;
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00002702}
2703EXPORT_SYMBOL_GPL(tun_get_socket);
2704
Jason Wang83339c62017-05-17 12:14:41 +08002705struct skb_array *tun_get_skb_array(struct file *file)
2706{
2707 struct tun_file *tfile;
2708
2709 if (file->f_op != &tun_fops)
2710 return ERR_PTR(-EINVAL);
2711 tfile = file->private_data;
2712 if (!tfile)
2713 return ERR_PTR(-EBADFD);
2714 return &tfile->tx_array;
2715}
2716EXPORT_SYMBOL_GPL(tun_get_skb_array);
2717
Linus Torvalds1da177e2005-04-16 15:20:36 -07002718module_init(tun_init);
2719module_exit(tun_cleanup);
2720MODULE_DESCRIPTION(DRV_DESCRIPTION);
2721MODULE_AUTHOR(DRV_COPYRIGHT);
2722MODULE_LICENSE("GPL");
2723MODULE_ALIAS_MISCDEV(TUN_MINOR);
Kay Sievers578454f2010-05-20 18:07:20 +02002724MODULE_ALIAS("devname:net/tun");