blob: 27cd50c5bc9eac1470f03269082a3dc69a071f95 [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>
Jason Wang761876c2017-08-11 19:41:18 +080076#include <linux/bpf.h>
77#include <linux/bpf_trace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070078
Linus Torvalds7c0f6ba2016-12-24 11:46:01 -080079#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070080
Rusty Russell14daa022008-04-12 18:48:58 -070081/* Uncomment to enable debugging */
82/* #define TUN_DEBUG 1 */
83
Linus Torvalds1da177e2005-04-16 15:20:36 -070084#ifdef TUN_DEBUG
85static int debug;
Rusty Russell14daa022008-04-12 18:48:58 -070086
Joe Perches6b8a66e2011-03-02 07:18:10 +000087#define tun_debug(level, tun, fmt, args...) \
88do { \
89 if (tun->debug) \
90 netdev_printk(level, tun->dev, fmt, ##args); \
91} while (0)
92#define DBG1(level, fmt, args...) \
93do { \
94 if (debug == 2) \
95 printk(level fmt, ##args); \
96} while (0)
Rusty Russell14daa022008-04-12 18:48:58 -070097#else
Joe Perches6b8a66e2011-03-02 07:18:10 +000098#define tun_debug(level, tun, fmt, args...) \
99do { \
100 if (0) \
101 netdev_printk(level, tun->dev, fmt, ##args); \
102} while (0)
103#define DBG1(level, fmt, args...) \
104do { \
105 if (0) \
106 printk(level fmt, ##args); \
107} while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108#endif
109
Jason Wang761876c2017-08-11 19:41:18 +0800110#define TUN_HEADROOM 256
Jason Wang7df13212017-09-04 11:36:08 +0800111#define TUN_RX_PAD (NET_IP_ALIGN + NET_SKB_PAD)
Jason Wang66ccbc92017-08-11 19:41:16 +0800112
Michael S. Tsirkin031f5e02014-11-19 14:44:40 +0200113/* TUN device flags */
114
115/* IFF_ATTACH_QUEUE is never stored in device flags,
116 * overload it to mean fasync when stored there.
117 */
118#define TUN_FASYNC IFF_ATTACH_QUEUE
Michael S. Tsirkin1cf8e412014-12-16 15:05:06 +0200119/* High bits in flags field are unused. */
120#define TUN_VNET_LE 0x80000000
Greg Kurz8b8e6582015-04-24 14:50:36 +0200121#define TUN_VNET_BE 0x40000000
Michael S. Tsirkin031f5e02014-11-19 14:44:40 +0200122
123#define TUN_FEATURES (IFF_NO_PI | IFF_ONE_QUEUE | IFF_VNET_HDR | \
Michael S. Tsirkin1cf8e412014-12-16 15:05:06 +0200124 IFF_MULTI_QUEUE)
Michael S. Tsirkin06908992012-07-20 09:23:23 +0000125#define GOODCOPY_LEN 128
126
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -0700127#define FLT_EXACT_COUNT 8
128struct tap_filter {
129 unsigned int count; /* Number of addrs. Zero means disabled */
130 u32 mask[2]; /* Mask of the hashed addrs */
131 unsigned char addr[FLT_EXACT_COUNT][ETH_ALEN];
132};
133
Pankaj Guptabaf71c52015-01-12 11:41:29 +0530134/* MAX_TAP_QUEUES 256 is chosen to allow rx/tx queues to be equal
135 * to max number of VCPUs in guest. */
136#define MAX_TAP_QUEUES 256
Jason Wangb8732fb2013-01-23 03:59:13 +0000137#define MAX_TAP_FLOWS 4096
Jason Wangc8d68e62012-10-31 19:46:00 +0000138
Jason Wang96442e422012-10-31 19:46:02 +0000139#define TUN_FLOW_EXPIRE (3 * HZ)
140
Paolo Abeni608b9972016-04-13 10:52:20 +0200141struct tun_pcpu_stats {
142 u64 rx_packets;
143 u64 rx_bytes;
144 u64 tx_packets;
145 u64 tx_bytes;
146 struct u64_stats_sync syncp;
147 u32 rx_dropped;
148 u32 tx_dropped;
149 u32 rx_frame_errors;
150};
151
Jason Wang54f968d2012-10-31 19:45:57 +0000152/* A tun_file connects an open character device to a tuntap netdevice. It
stephen hemminger92d4ea62013-12-05 20:42:58 -0800153 * also contains all socket related structures (except sock_fprog and tap_filter)
Jason Wang54f968d2012-10-31 19:45:57 +0000154 * to serve as one transmit queue for tuntap device. The sock_fprog and
155 * tap_filter were kept in tun_struct since they were used for filtering for the
Rami Rosen36fe8c092012-11-25 22:07:40 +0000156 * netdevice not for a specific queue (at least I didn't see the requirement for
Jason Wang54f968d2012-10-31 19:45:57 +0000157 * this).
Jason Wang6e914fc2012-10-31 19:45:58 +0000158 *
159 * RCU usage:
Rami Rosen36fe8c092012-11-25 22:07:40 +0000160 * The tun_file and tun_struct are loosely coupled, the pointer from one to the
Jason Wang6e914fc2012-10-31 19:45:58 +0000161 * other can only be read while rcu_read_lock or rtnl_lock is held.
Jason Wang54f968d2012-10-31 19:45:57 +0000162 */
Eric W. Biederman631ab462009-01-20 11:00:40 +0000163struct tun_file {
Jason Wang54f968d2012-10-31 19:45:57 +0000164 struct sock sk;
165 struct socket socket;
166 struct socket_wq wq;
Jason Wang6e914fc2012-10-31 19:45:58 +0000167 struct tun_struct __rcu *tun;
Jason Wang54f968d2012-10-31 19:45:57 +0000168 struct fasync_struct *fasync;
169 /* only used for fasnyc */
170 unsigned int flags;
Pavel Emelyanovfb7589a2013-08-21 14:31:38 +0400171 union {
172 u16 queue_index;
173 unsigned int ifindex;
174 };
Jason Wang4008e972012-12-13 23:53:30 +0000175 struct list_head next;
176 struct tun_struct *detached;
Jason Wang1576d982016-06-30 14:45:36 +0800177 struct skb_array tx_array;
Eric W. Biederman631ab462009-01-20 11:00:40 +0000178};
179
Jason Wang96442e422012-10-31 19:46:02 +0000180struct tun_flow_entry {
181 struct hlist_node hash_link;
182 struct rcu_head rcu;
183 struct tun_struct *tun;
184
185 u32 rxhash;
Tom Herbert9bc88932013-12-22 18:54:32 +0800186 u32 rps_rxhash;
Jason Wang96442e422012-10-31 19:46:02 +0000187 int queue_index;
188 unsigned long updated;
189};
190
191#define TUN_NUM_FLOW_ENTRIES 1024
192
Jason Wang54f968d2012-10-31 19:45:57 +0000193/* Since the socket were moved to tun_file, to preserve the behavior of persist
Rami Rosen36fe8c092012-11-25 22:07:40 +0000194 * device, socket filter, sndbuf and vnet header size were restore when the
Jason Wang54f968d2012-10-31 19:45:57 +0000195 * file were attached to a persist device.
196 */
Rusty Russell14daa022008-04-12 18:48:58 -0700197struct tun_struct {
Jason Wangc8d68e62012-10-31 19:46:00 +0000198 struct tun_file __rcu *tfiles[MAX_TAP_QUEUES];
199 unsigned int numqueues;
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -0700200 unsigned int flags;
Eric W. Biederman0625c882012-02-07 16:48:55 -0800201 kuid_t owner;
202 kgid_t group;
Rusty Russell14daa022008-04-12 18:48:58 -0700203
Rusty Russell14daa022008-04-12 18:48:58 -0700204 struct net_device *dev;
Michał Mirosławc8f44af2011-11-15 15:29:55 +0000205 netdev_features_t set_features;
Michał Mirosław88255372011-04-19 06:13:10 +0000206#define TUN_USER_FEATURES (NETIF_F_HW_CSUM|NETIF_F_TSO_ECN|NETIF_F_TSO| \
David S. Millerd591a1f2017-07-03 06:35:32 -0700207 NETIF_F_TSO6)
Michael S. Tsirkind9d52b52010-03-17 17:45:01 +0200208
Paolo Abenieaea34b2016-02-26 10:45:40 +0100209 int align;
Michael S. Tsirkind9d52b52010-03-17 17:45:01 +0200210 int vnet_hdr_sz;
Jason Wang54f968d2012-10-31 19:45:57 +0000211 int sndbuf;
212 struct tap_filter txflt;
213 struct sock_fprog fprog;
214 /* protected by rtnl lock */
215 bool filter_attached;
Rusty Russell14daa022008-04-12 18:48:58 -0700216#ifdef TUN_DEBUG
217 int debug;
218#endif
Jason Wang96442e422012-10-31 19:46:02 +0000219 spinlock_t lock;
Jason Wang96442e422012-10-31 19:46:02 +0000220 struct hlist_head flows[TUN_NUM_FLOW_ENTRIES];
221 struct timer_list flow_gc_timer;
222 unsigned long ageing_time;
Jason Wang4008e972012-12-13 23:53:30 +0000223 unsigned int numdisabled;
224 struct list_head disabled;
Paul Moore5dbbaf22013-01-14 07:12:19 +0000225 void *security;
Jason Wangb8732fb2013-01-23 03:59:13 +0000226 u32 flow_count;
Jason Wang5503fce2017-01-18 15:02:03 +0800227 u32 rx_batched;
Paolo Abeni608b9972016-04-13 10:52:20 +0200228 struct tun_pcpu_stats __percpu *pcpu_stats;
Jason Wang761876c2017-08-11 19:41:18 +0800229 struct bpf_prog __rcu *xdp_prog;
Rusty Russell14daa022008-04-12 18:48:58 -0700230};
231
Greg Kurz8b8e6582015-04-24 14:50:36 +0200232#ifdef CONFIG_TUN_VNET_CROSS_LE
233static inline bool tun_legacy_is_little_endian(struct tun_struct *tun)
234{
235 return tun->flags & TUN_VNET_BE ? false :
236 virtio_legacy_is_little_endian();
237}
238
239static long tun_get_vnet_be(struct tun_struct *tun, int __user *argp)
240{
241 int be = !!(tun->flags & TUN_VNET_BE);
242
243 if (put_user(be, argp))
244 return -EFAULT;
245
246 return 0;
247}
248
249static long tun_set_vnet_be(struct tun_struct *tun, int __user *argp)
250{
251 int be;
252
253 if (get_user(be, argp))
254 return -EFAULT;
255
256 if (be)
257 tun->flags |= TUN_VNET_BE;
258 else
259 tun->flags &= ~TUN_VNET_BE;
260
261 return 0;
262}
263#else
264static inline bool tun_legacy_is_little_endian(struct tun_struct *tun)
265{
266 return virtio_legacy_is_little_endian();
267}
268
269static long tun_get_vnet_be(struct tun_struct *tun, int __user *argp)
270{
271 return -EINVAL;
272}
273
274static long tun_set_vnet_be(struct tun_struct *tun, int __user *argp)
275{
276 return -EINVAL;
277}
278#endif /* CONFIG_TUN_VNET_CROSS_LE */
279
Greg Kurz25bd55bb2015-04-24 14:24:38 +0200280static inline bool tun_is_little_endian(struct tun_struct *tun)
281{
Greg Kurz7d824102015-04-24 14:26:24 +0200282 return tun->flags & TUN_VNET_LE ||
Greg Kurz8b8e6582015-04-24 14:50:36 +0200283 tun_legacy_is_little_endian(tun);
Greg Kurz25bd55bb2015-04-24 14:24:38 +0200284}
285
Michael S. Tsirkin56f0dcc2014-10-23 22:59:31 +0300286static inline u16 tun16_to_cpu(struct tun_struct *tun, __virtio16 val)
287{
Greg Kurz25bd55bb2015-04-24 14:24:38 +0200288 return __virtio16_to_cpu(tun_is_little_endian(tun), val);
Michael S. Tsirkin56f0dcc2014-10-23 22:59:31 +0300289}
290
291static inline __virtio16 cpu_to_tun16(struct tun_struct *tun, u16 val)
292{
Greg Kurz25bd55bb2015-04-24 14:24:38 +0200293 return __cpu_to_virtio16(tun_is_little_endian(tun), val);
Michael S. Tsirkin56f0dcc2014-10-23 22:59:31 +0300294}
295
Jason Wang96442e422012-10-31 19:46:02 +0000296static inline u32 tun_hashfn(u32 rxhash)
297{
298 return rxhash & 0x3ff;
299}
300
301static struct tun_flow_entry *tun_flow_find(struct hlist_head *head, u32 rxhash)
302{
303 struct tun_flow_entry *e;
Jason Wang96442e422012-10-31 19:46:02 +0000304
Sasha Levinb67bfe02013-02-27 17:06:00 -0800305 hlist_for_each_entry_rcu(e, head, hash_link) {
Jason Wang96442e422012-10-31 19:46:02 +0000306 if (e->rxhash == rxhash)
307 return e;
308 }
309 return NULL;
310}
311
312static struct tun_flow_entry *tun_flow_create(struct tun_struct *tun,
313 struct hlist_head *head,
314 u32 rxhash, u16 queue_index)
315{
Eric Dumazet9fdc6be2012-12-21 07:17:21 +0000316 struct tun_flow_entry *e = kmalloc(sizeof(*e), GFP_ATOMIC);
317
Jason Wang96442e422012-10-31 19:46:02 +0000318 if (e) {
319 tun_debug(KERN_INFO, tun, "create flow: hash %u index %u\n",
320 rxhash, queue_index);
321 e->updated = jiffies;
322 e->rxhash = rxhash;
Tom Herbert9bc88932013-12-22 18:54:32 +0800323 e->rps_rxhash = 0;
Jason Wang96442e422012-10-31 19:46:02 +0000324 e->queue_index = queue_index;
325 e->tun = tun;
326 hlist_add_head_rcu(&e->hash_link, head);
Jason Wangb8732fb2013-01-23 03:59:13 +0000327 ++tun->flow_count;
Jason Wang96442e422012-10-31 19:46:02 +0000328 }
329 return e;
330}
331
Jason Wang96442e422012-10-31 19:46:02 +0000332static void tun_flow_delete(struct tun_struct *tun, struct tun_flow_entry *e)
333{
334 tun_debug(KERN_INFO, tun, "delete flow: hash %u index %u\n",
335 e->rxhash, e->queue_index);
336 hlist_del_rcu(&e->hash_link);
Eric Dumazet9fdc6be2012-12-21 07:17:21 +0000337 kfree_rcu(e, rcu);
Jason Wangb8732fb2013-01-23 03:59:13 +0000338 --tun->flow_count;
Jason Wang96442e422012-10-31 19:46:02 +0000339}
340
341static void tun_flow_flush(struct tun_struct *tun)
342{
343 int i;
344
345 spin_lock_bh(&tun->lock);
346 for (i = 0; i < TUN_NUM_FLOW_ENTRIES; i++) {
347 struct tun_flow_entry *e;
Sasha Levinb67bfe02013-02-27 17:06:00 -0800348 struct hlist_node *n;
Jason Wang96442e422012-10-31 19:46:02 +0000349
Sasha Levinb67bfe02013-02-27 17:06:00 -0800350 hlist_for_each_entry_safe(e, n, &tun->flows[i], hash_link)
Jason Wang96442e422012-10-31 19:46:02 +0000351 tun_flow_delete(tun, e);
352 }
353 spin_unlock_bh(&tun->lock);
354}
355
356static void tun_flow_delete_by_queue(struct tun_struct *tun, u16 queue_index)
357{
358 int i;
359
360 spin_lock_bh(&tun->lock);
361 for (i = 0; i < TUN_NUM_FLOW_ENTRIES; i++) {
362 struct tun_flow_entry *e;
Sasha Levinb67bfe02013-02-27 17:06:00 -0800363 struct hlist_node *n;
Jason Wang96442e422012-10-31 19:46:02 +0000364
Sasha Levinb67bfe02013-02-27 17:06:00 -0800365 hlist_for_each_entry_safe(e, n, &tun->flows[i], hash_link) {
Jason Wang96442e422012-10-31 19:46:02 +0000366 if (e->queue_index == queue_index)
367 tun_flow_delete(tun, e);
368 }
369 }
370 spin_unlock_bh(&tun->lock);
371}
372
373static void tun_flow_cleanup(unsigned long data)
374{
375 struct tun_struct *tun = (struct tun_struct *)data;
376 unsigned long delay = tun->ageing_time;
377 unsigned long next_timer = jiffies + delay;
378 unsigned long count = 0;
379 int i;
380
381 tun_debug(KERN_INFO, tun, "tun_flow_cleanup\n");
382
383 spin_lock_bh(&tun->lock);
384 for (i = 0; i < TUN_NUM_FLOW_ENTRIES; i++) {
385 struct tun_flow_entry *e;
Sasha Levinb67bfe02013-02-27 17:06:00 -0800386 struct hlist_node *n;
Jason Wang96442e422012-10-31 19:46:02 +0000387
Sasha Levinb67bfe02013-02-27 17:06:00 -0800388 hlist_for_each_entry_safe(e, n, &tun->flows[i], hash_link) {
Jason Wang96442e422012-10-31 19:46:02 +0000389 unsigned long this_timer;
390 count++;
391 this_timer = e->updated + delay;
392 if (time_before_eq(this_timer, jiffies))
393 tun_flow_delete(tun, e);
394 else if (time_before(this_timer, next_timer))
395 next_timer = this_timer;
396 }
397 }
398
399 if (count)
400 mod_timer(&tun->flow_gc_timer, round_jiffies_up(next_timer));
401 spin_unlock_bh(&tun->lock);
402}
403
Eric Dumazet49974422012-12-12 19:22:57 +0000404static void tun_flow_update(struct tun_struct *tun, u32 rxhash,
Jason Wang9e857222013-01-28 01:05:19 +0000405 struct tun_file *tfile)
Jason Wang96442e422012-10-31 19:46:02 +0000406{
407 struct hlist_head *head;
408 struct tun_flow_entry *e;
409 unsigned long delay = tun->ageing_time;
Jason Wang9e857222013-01-28 01:05:19 +0000410 u16 queue_index = tfile->queue_index;
Jason Wang96442e422012-10-31 19:46:02 +0000411
412 if (!rxhash)
413 return;
414 else
415 head = &tun->flows[tun_hashfn(rxhash)];
416
417 rcu_read_lock();
418
Jason Wang9e857222013-01-28 01:05:19 +0000419 /* We may get a very small possibility of OOO during switching, not
420 * worth to optimize.*/
421 if (tun->numqueues == 1 || tfile->detached)
Jason Wang96442e422012-10-31 19:46:02 +0000422 goto unlock;
423
424 e = tun_flow_find(head, rxhash);
425 if (likely(e)) {
426 /* TODO: keep queueing to old queue until it's empty? */
427 e->queue_index = queue_index;
428 e->updated = jiffies;
Tom Herbert9bc88932013-12-22 18:54:32 +0800429 sock_rps_record_flow_hash(e->rps_rxhash);
Jason Wang96442e422012-10-31 19:46:02 +0000430 } else {
431 spin_lock_bh(&tun->lock);
Jason Wangb8732fb2013-01-23 03:59:13 +0000432 if (!tun_flow_find(head, rxhash) &&
433 tun->flow_count < MAX_TAP_FLOWS)
Jason Wang96442e422012-10-31 19:46:02 +0000434 tun_flow_create(tun, head, rxhash, queue_index);
435
436 if (!timer_pending(&tun->flow_gc_timer))
437 mod_timer(&tun->flow_gc_timer,
438 round_jiffies_up(jiffies + delay));
439 spin_unlock_bh(&tun->lock);
440 }
441
442unlock:
443 rcu_read_unlock();
444}
445
Tom Herbert9bc88932013-12-22 18:54:32 +0800446/**
447 * Save the hash received in the stack receive path and update the
448 * flow_hash table accordingly.
449 */
450static inline void tun_flow_save_rps_rxhash(struct tun_flow_entry *e, u32 hash)
451{
Eric Dumazet567e4b72015-02-06 12:59:01 -0800452 if (unlikely(e->rps_rxhash != hash))
Tom Herbert9bc88932013-12-22 18:54:32 +0800453 e->rps_rxhash = hash;
Tom Herbert9bc88932013-12-22 18:54:32 +0800454}
455
Jason Wangc8d68e62012-10-31 19:46:00 +0000456/* We try to identify a flow through its rxhash first. The reason that
stephen hemminger92d4ea62013-12-05 20:42:58 -0800457 * we do not check rxq no. is because some cards(e.g 82599), chooses
Jason Wangc8d68e62012-10-31 19:46:00 +0000458 * the rxq based on the txq where the last packet of the flow comes. As
459 * the userspace application move between processors, we may get a
460 * different rxq no. here. If we could not get rxhash, then we would
461 * hope the rxq no. may help here.
462 */
Jason Wangf663dd92014-01-10 16:18:26 +0800463static u16 tun_select_queue(struct net_device *dev, struct sk_buff *skb,
Daniel Borkmann99932d42014-02-16 15:55:20 +0100464 void *accel_priv, select_queue_fallback_t fallback)
Jason Wangc8d68e62012-10-31 19:46:00 +0000465{
466 struct tun_struct *tun = netdev_priv(dev);
Jason Wang96442e422012-10-31 19:46:02 +0000467 struct tun_flow_entry *e;
Jason Wangc8d68e62012-10-31 19:46:00 +0000468 u32 txq = 0;
469 u32 numqueues = 0;
470
471 rcu_read_lock();
Mark Rutland6aa7de02017-10-23 14:07:29 -0700472 numqueues = READ_ONCE(tun->numqueues);
Jason Wangc8d68e62012-10-31 19:46:00 +0000473
Jason Wangfeec0842017-06-06 14:09:49 +0800474 txq = __skb_get_hash_symmetric(skb);
Jason Wangc8d68e62012-10-31 19:46:00 +0000475 if (txq) {
Jason Wang96442e422012-10-31 19:46:02 +0000476 e = tun_flow_find(&tun->flows[tun_hashfn(txq)], txq);
Tom Herbert9bc88932013-12-22 18:54:32 +0800477 if (e) {
Tom Herbert9bc88932013-12-22 18:54:32 +0800478 tun_flow_save_rps_rxhash(e, txq);
Zhi Yong Wufbe4d452014-01-02 13:24:28 +0800479 txq = e->queue_index;
Tom Herbert9bc88932013-12-22 18:54:32 +0800480 } else
Jason Wang96442e422012-10-31 19:46:02 +0000481 /* use multiply and shift instead of expensive divide */
482 txq = ((u64)txq * numqueues) >> 32;
Jason Wangc8d68e62012-10-31 19:46:00 +0000483 } else if (likely(skb_rx_queue_recorded(skb))) {
484 txq = skb_get_rx_queue(skb);
485 while (unlikely(txq >= numqueues))
486 txq -= numqueues;
487 }
488
489 rcu_read_unlock();
490 return txq;
491}
492
Jason Wangcde8b152012-10-31 19:46:01 +0000493static inline bool tun_not_capable(struct tun_struct *tun)
494{
495 const struct cred *cred = current_cred();
Eric W. Biedermanc260b772012-11-18 21:34:11 +0000496 struct net *net = dev_net(tun->dev);
Jason Wangcde8b152012-10-31 19:46:01 +0000497
498 return ((uid_valid(tun->owner) && !uid_eq(cred->euid, tun->owner)) ||
499 (gid_valid(tun->group) && !in_egroup_p(tun->group))) &&
Eric W. Biedermanc260b772012-11-18 21:34:11 +0000500 !ns_capable(net->user_ns, CAP_NET_ADMIN);
Jason Wangcde8b152012-10-31 19:46:01 +0000501}
502
Jason Wangc8d68e62012-10-31 19:46:00 +0000503static void tun_set_real_num_queues(struct tun_struct *tun)
504{
505 netif_set_real_num_tx_queues(tun->dev, tun->numqueues);
506 netif_set_real_num_rx_queues(tun->dev, tun->numqueues);
507}
508
Jason Wang4008e972012-12-13 23:53:30 +0000509static void tun_disable_queue(struct tun_struct *tun, struct tun_file *tfile)
510{
511 tfile->detached = tun;
512 list_add_tail(&tfile->next, &tun->disabled);
513 ++tun->numdisabled;
514}
515
Jason Wangd32649d2012-12-18 11:00:27 +0800516static struct tun_struct *tun_enable_queue(struct tun_file *tfile)
Jason Wang4008e972012-12-13 23:53:30 +0000517{
518 struct tun_struct *tun = tfile->detached;
519
520 tfile->detached = NULL;
521 list_del_init(&tfile->next);
522 --tun->numdisabled;
523 return tun;
524}
525
Jason Wang4bfb0512013-09-05 17:53:59 +0800526static void tun_queue_purge(struct tun_file *tfile)
527{
Jason Wang1576d982016-06-30 14:45:36 +0800528 struct sk_buff *skb;
529
530 while ((skb = skb_array_consume(&tfile->tx_array)) != NULL)
531 kfree_skb(skb);
532
Jason Wang5503fce2017-01-18 15:02:03 +0800533 skb_queue_purge(&tfile->sk.sk_write_queue);
Jason Wang4bfb0512013-09-05 17:53:59 +0800534 skb_queue_purge(&tfile->sk.sk_error_queue);
535}
536
Jason Wangc8d68e62012-10-31 19:46:00 +0000537static void __tun_detach(struct tun_file *tfile, bool clean)
538{
539 struct tun_file *ntfile;
540 struct tun_struct *tun;
Jason Wangc8d68e62012-10-31 19:46:00 +0000541
Jason Wangb8deabd2013-01-11 16:59:32 +0000542 tun = rtnl_dereference(tfile->tun);
543
Jason Wang9e857222013-01-28 01:05:19 +0000544 if (tun && !tfile->detached) {
Jason Wangc8d68e62012-10-31 19:46:00 +0000545 u16 index = tfile->queue_index;
546 BUG_ON(index >= tun->numqueues);
Jason Wangc8d68e62012-10-31 19:46:00 +0000547
548 rcu_assign_pointer(tun->tfiles[index],
549 tun->tfiles[tun->numqueues - 1]);
Jason Wangb8deabd2013-01-11 16:59:32 +0000550 ntfile = rtnl_dereference(tun->tfiles[index]);
Jason Wangc8d68e62012-10-31 19:46:00 +0000551 ntfile->queue_index = index;
552
553 --tun->numqueues;
Jason Wang9e857222013-01-28 01:05:19 +0000554 if (clean) {
Monam Agarwalc9566742014-03-24 00:02:32 +0530555 RCU_INIT_POINTER(tfile->tun, NULL);
Jason Wang4008e972012-12-13 23:53:30 +0000556 sock_put(&tfile->sk);
Jason Wang9e857222013-01-28 01:05:19 +0000557 } else
Jason Wang4008e972012-12-13 23:53:30 +0000558 tun_disable_queue(tun, tfile);
Jason Wangc8d68e62012-10-31 19:46:00 +0000559
560 synchronize_net();
Jason Wang96442e422012-10-31 19:46:02 +0000561 tun_flow_delete_by_queue(tun, tun->numqueues + 1);
Jason Wangc8d68e62012-10-31 19:46:00 +0000562 /* Drop read queue */
Jason Wang4bfb0512013-09-05 17:53:59 +0800563 tun_queue_purge(tfile);
Jason Wangc8d68e62012-10-31 19:46:00 +0000564 tun_set_real_num_queues(tun);
Jason Wangdd38bd82013-01-11 16:59:34 +0000565 } else if (tfile->detached && clean) {
Jason Wang4008e972012-12-13 23:53:30 +0000566 tun = tun_enable_queue(tfile);
Jason Wangdd38bd82013-01-11 16:59:34 +0000567 sock_put(&tfile->sk);
568 }
Jason Wangc8d68e62012-10-31 19:46:00 +0000569
570 if (clean) {
Michael S. Tsirkinaf668b32013-01-28 00:38:02 +0000571 if (tun && tun->numqueues == 0 && tun->numdisabled == 0) {
572 netif_carrier_off(tun->dev);
573
Michael S. Tsirkin40630b82014-11-19 15:17:31 +0200574 if (!(tun->flags & IFF_PERSIST) &&
Michael S. Tsirkinaf668b32013-01-28 00:38:02 +0000575 tun->dev->reg_state == NETREG_REGISTERED)
Jason Wang4008e972012-12-13 23:53:30 +0000576 unregister_netdevice(tun->dev);
Michael S. Tsirkinaf668b32013-01-28 00:38:02 +0000577 }
Jason Wang1576d982016-06-30 14:45:36 +0800578 if (tun)
579 skb_array_cleanup(&tfile->tx_array);
Eric W. Biederman140e807da2015-05-08 21:07:08 -0500580 sock_put(&tfile->sk);
Jason Wangc8d68e62012-10-31 19:46:00 +0000581 }
582}
583
584static void tun_detach(struct tun_file *tfile, bool clean)
585{
586 rtnl_lock();
587 __tun_detach(tfile, clean);
588 rtnl_unlock();
589}
590
591static void tun_detach_all(struct net_device *dev)
592{
593 struct tun_struct *tun = netdev_priv(dev);
Jason Wang761876c2017-08-11 19:41:18 +0800594 struct bpf_prog *xdp_prog = rtnl_dereference(tun->xdp_prog);
Jason Wang4008e972012-12-13 23:53:30 +0000595 struct tun_file *tfile, *tmp;
Jason Wangc8d68e62012-10-31 19:46:00 +0000596 int i, n = tun->numqueues;
597
598 for (i = 0; i < n; i++) {
Jason Wangb8deabd2013-01-11 16:59:32 +0000599 tfile = rtnl_dereference(tun->tfiles[i]);
Jason Wangc8d68e62012-10-31 19:46:00 +0000600 BUG_ON(!tfile);
Jason Wangaddf8fc2016-05-19 13:36:51 +0800601 tfile->socket.sk->sk_shutdown = RCV_SHUTDOWN;
Xi Wang9e641bd2014-05-16 15:11:48 -0700602 tfile->socket.sk->sk_data_ready(tfile->socket.sk);
Monam Agarwalc9566742014-03-24 00:02:32 +0530603 RCU_INIT_POINTER(tfile->tun, NULL);
Jason Wangc8d68e62012-10-31 19:46:00 +0000604 --tun->numqueues;
605 }
Jason Wang9e857222013-01-28 01:05:19 +0000606 list_for_each_entry(tfile, &tun->disabled, next) {
Jason Wangaddf8fc2016-05-19 13:36:51 +0800607 tfile->socket.sk->sk_shutdown = RCV_SHUTDOWN;
Xi Wang9e641bd2014-05-16 15:11:48 -0700608 tfile->socket.sk->sk_data_ready(tfile->socket.sk);
Monam Agarwalc9566742014-03-24 00:02:32 +0530609 RCU_INIT_POINTER(tfile->tun, NULL);
Jason Wang9e857222013-01-28 01:05:19 +0000610 }
Jason Wangc8d68e62012-10-31 19:46:00 +0000611 BUG_ON(tun->numqueues != 0);
612
613 synchronize_net();
614 for (i = 0; i < n; i++) {
Jason Wangb8deabd2013-01-11 16:59:32 +0000615 tfile = rtnl_dereference(tun->tfiles[i]);
Jason Wangc8d68e62012-10-31 19:46:00 +0000616 /* Drop read queue */
Jason Wang4bfb0512013-09-05 17:53:59 +0800617 tun_queue_purge(tfile);
Jason Wangc8d68e62012-10-31 19:46:00 +0000618 sock_put(&tfile->sk);
619 }
Jason Wang4008e972012-12-13 23:53:30 +0000620 list_for_each_entry_safe(tfile, tmp, &tun->disabled, next) {
621 tun_enable_queue(tfile);
Jason Wang4bfb0512013-09-05 17:53:59 +0800622 tun_queue_purge(tfile);
Jason Wang4008e972012-12-13 23:53:30 +0000623 sock_put(&tfile->sk);
624 }
625 BUG_ON(tun->numdisabled != 0);
Jason Wangdd38bd82013-01-11 16:59:34 +0000626
Jason Wang761876c2017-08-11 19:41:18 +0800627 if (xdp_prog)
628 bpf_prog_put(xdp_prog);
629
Michael S. Tsirkin40630b82014-11-19 15:17:31 +0200630 if (tun->flags & IFF_PERSIST)
Jason Wangdd38bd82013-01-11 16:59:34 +0000631 module_put(THIS_MODULE);
Jason Wangc8d68e62012-10-31 19:46:00 +0000632}
633
Pavel Emelyanov849c9b62013-08-21 14:32:21 +0400634static int tun_attach(struct tun_struct *tun, struct file *file, bool skip_filter)
Eric W. Biedermana7385ba2009-01-20 10:57:48 +0000635{
Eric W. Biederman631ab462009-01-20 11:00:40 +0000636 struct tun_file *tfile = file->private_data;
Jason Wang1576d982016-06-30 14:45:36 +0800637 struct net_device *dev = tun->dev;
Eric W. Biederman38231b72009-01-20 11:02:28 +0000638 int err;
Eric W. Biedermana7385ba2009-01-20 10:57:48 +0000639
Paul Moore5dbbaf22013-01-14 07:12:19 +0000640 err = security_tun_dev_attach(tfile->socket.sk, tun->security);
641 if (err < 0)
642 goto out;
643
Eric W. Biederman38231b72009-01-20 11:02:28 +0000644 err = -EINVAL;
Jason Wang9e857222013-01-28 01:05:19 +0000645 if (rtnl_dereference(tfile->tun) && !tfile->detached)
Eric W. Biederman38231b72009-01-20 11:02:28 +0000646 goto out;
647
648 err = -EBUSY;
Michael S. Tsirkin40630b82014-11-19 15:17:31 +0200649 if (!(tun->flags & IFF_MULTI_QUEUE) && tun->numqueues == 1)
Jason Wangc8d68e62012-10-31 19:46:00 +0000650 goto out;
651
652 err = -E2BIG;
Jason Wang4008e972012-12-13 23:53:30 +0000653 if (!tfile->detached &&
654 tun->numqueues + tun->numdisabled == MAX_TAP_QUEUES)
Eric W. Biederman38231b72009-01-20 11:02:28 +0000655 goto out;
656
657 err = 0;
Jason Wang54f968d2012-10-31 19:45:57 +0000658
stephen hemminger92d4ea62013-12-05 20:42:58 -0800659 /* Re-attach the filter to persist device */
Pavel Emelyanov849c9b62013-08-21 14:32:21 +0400660 if (!skip_filter && (tun->filter_attached == true)) {
Hannes Frederic Sowa8ced4252016-04-05 17:10:16 +0200661 lock_sock(tfile->socket.sk);
662 err = sk_attach_filter(&tun->fprog, tfile->socket.sk);
663 release_sock(tfile->socket.sk);
Jason Wang54f968d2012-10-31 19:45:57 +0000664 if (!err)
665 goto out;
666 }
Jason Wang1576d982016-06-30 14:45:36 +0800667
668 if (!tfile->detached &&
669 skb_array_init(&tfile->tx_array, dev->tx_queue_len, GFP_KERNEL)) {
670 err = -ENOMEM;
671 goto out;
672 }
673
Jason Wangc8d68e62012-10-31 19:46:00 +0000674 tfile->queue_index = tun->numqueues;
Jason Wangaddf8fc2016-05-19 13:36:51 +0800675 tfile->socket.sk->sk_shutdown &= ~RCV_SHUTDOWN;
Jason Wang6e914fc2012-10-31 19:45:58 +0000676 rcu_assign_pointer(tfile->tun, tun);
Jason Wangc8d68e62012-10-31 19:46:00 +0000677 rcu_assign_pointer(tun->tfiles[tun->numqueues], tfile);
Jason Wangc8d68e62012-10-31 19:46:00 +0000678 tun->numqueues++;
679
Jason Wang4008e972012-12-13 23:53:30 +0000680 if (tfile->detached)
681 tun_enable_queue(tfile);
682 else
683 sock_hold(&tfile->sk);
684
Jason Wangc8d68e62012-10-31 19:46:00 +0000685 tun_set_real_num_queues(tun);
686
Jason Wangc8d68e62012-10-31 19:46:00 +0000687 /* device is allowed to go away first, so no need to hold extra
688 * refcnt.
689 */
Eric W. Biedermana7385ba2009-01-20 10:57:48 +0000690
Eric W. Biederman38231b72009-01-20 11:02:28 +0000691out:
Eric W. Biederman38231b72009-01-20 11:02:28 +0000692 return err;
Eric W. Biedermana7385ba2009-01-20 10:57:48 +0000693}
694
Eric W. Biederman631ab462009-01-20 11:00:40 +0000695static struct tun_struct *__tun_get(struct tun_file *tfile)
696{
Jason Wang6e914fc2012-10-31 19:45:58 +0000697 struct tun_struct *tun;
Eric W. Biedermanc70f1822009-01-20 11:07:17 +0000698
Jason Wang6e914fc2012-10-31 19:45:58 +0000699 rcu_read_lock();
700 tun = rcu_dereference(tfile->tun);
701 if (tun)
702 dev_hold(tun->dev);
703 rcu_read_unlock();
Eric W. Biedermanc70f1822009-01-20 11:07:17 +0000704
705 return tun;
Eric W. Biederman631ab462009-01-20 11:00:40 +0000706}
707
708static struct tun_struct *tun_get(struct file *file)
709{
710 return __tun_get(file->private_data);
711}
712
713static void tun_put(struct tun_struct *tun)
714{
Jason Wang6e914fc2012-10-31 19:45:58 +0000715 dev_put(tun->dev);
Eric W. Biederman631ab462009-01-20 11:00:40 +0000716}
717
Joe Perches6b8a66e2011-03-02 07:18:10 +0000718/* TAP filtering */
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -0700719static void addr_hash_set(u32 *mask, const u8 *addr)
720{
721 int n = ether_crc(ETH_ALEN, addr) >> 26;
722 mask[n >> 5] |= (1 << (n & 31));
723}
724
725static unsigned int addr_hash_test(const u32 *mask, const u8 *addr)
726{
727 int n = ether_crc(ETH_ALEN, addr) >> 26;
728 return mask[n >> 5] & (1 << (n & 31));
729}
730
731static int update_filter(struct tap_filter *filter, void __user *arg)
732{
733 struct { u8 u[ETH_ALEN]; } *addr;
734 struct tun_filter uf;
735 int err, alen, n, nexact;
736
737 if (copy_from_user(&uf, arg, sizeof(uf)))
738 return -EFAULT;
739
740 if (!uf.count) {
741 /* Disabled */
742 filter->count = 0;
743 return 0;
744 }
745
746 alen = ETH_ALEN * uf.count;
Markus Elfring28e81902016-08-20 08:54:15 +0200747 addr = memdup_user(arg + sizeof(uf), alen);
748 if (IS_ERR(addr))
749 return PTR_ERR(addr);
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -0700750
751 /* The filter is updated without holding any locks. Which is
752 * perfectly safe. We disable it first and in the worst
753 * case we'll accept a few undesired packets. */
754 filter->count = 0;
755 wmb();
756
757 /* Use first set of addresses as an exact filter */
758 for (n = 0; n < uf.count && n < FLT_EXACT_COUNT; n++)
759 memcpy(filter->addr[n], addr[n].u, ETH_ALEN);
760
761 nexact = n;
762
Alex Williamsoncfbf84f2009-02-08 17:49:17 -0800763 /* Remaining multicast addresses are hashed,
764 * unicast will leave the filter disabled. */
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -0700765 memset(filter->mask, 0, sizeof(filter->mask));
Alex Williamsoncfbf84f2009-02-08 17:49:17 -0800766 for (; n < uf.count; n++) {
767 if (!is_multicast_ether_addr(addr[n].u)) {
768 err = 0; /* no filter */
Markus Elfring3b8d2a62016-08-20 09:00:34 +0200769 goto free_addr;
Alex Williamsoncfbf84f2009-02-08 17:49:17 -0800770 }
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -0700771 addr_hash_set(filter->mask, addr[n].u);
Alex Williamsoncfbf84f2009-02-08 17:49:17 -0800772 }
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -0700773
774 /* For ALLMULTI just set the mask to all ones.
775 * This overrides the mask populated above. */
776 if ((uf.flags & TUN_FLT_ALLMULTI))
777 memset(filter->mask, ~0, sizeof(filter->mask));
778
779 /* Now enable the filter */
780 wmb();
781 filter->count = nexact;
782
783 /* Return the number of exact filters */
784 err = nexact;
Markus Elfring3b8d2a62016-08-20 09:00:34 +0200785free_addr:
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -0700786 kfree(addr);
787 return err;
788}
789
790/* Returns: 0 - drop, !=0 - accept */
791static int run_filter(struct tap_filter *filter, const struct sk_buff *skb)
792{
793 /* Cannot use eth_hdr(skb) here because skb_mac_hdr() is incorrect
794 * at this point. */
795 struct ethhdr *eh = (struct ethhdr *) skb->data;
796 int i;
797
798 /* Exact match */
799 for (i = 0; i < filter->count; i++)
Joe Perches2e42e472012-05-09 17:17:46 +0000800 if (ether_addr_equal(eh->h_dest, filter->addr[i]))
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -0700801 return 1;
802
803 /* Inexact match (multicast only) */
804 if (is_multicast_ether_addr(eh->h_dest))
805 return addr_hash_test(filter->mask, eh->h_dest);
806
807 return 0;
808}
809
810/*
811 * Checks whether the packet is accepted or not.
812 * Returns: 0 - drop, !=0 - accept
813 */
814static int check_filter(struct tap_filter *filter, const struct sk_buff *skb)
815{
816 if (!filter->count)
817 return 1;
818
819 return run_filter(filter, skb);
820}
821
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822/* Network device part of the driver */
823
Jeff Garzik7282d492006-09-13 14:30:00 -0400824static const struct ethtool_ops tun_ethtool_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825
Eric W. Biedermanc70f1822009-01-20 11:07:17 +0000826/* Net device detach from fd. */
827static void tun_net_uninit(struct net_device *dev)
828{
Jason Wangc8d68e62012-10-31 19:46:00 +0000829 tun_detach_all(dev);
Eric W. Biedermanc70f1822009-01-20 11:07:17 +0000830}
831
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832/* Net device open. */
833static int tun_net_open(struct net_device *dev)
834{
Hannes Frederic Sowab20e2d52017-03-13 00:00:26 +0100835 struct tun_struct *tun = netdev_priv(dev);
836 int i;
837
Jason Wangc8d68e62012-10-31 19:46:00 +0000838 netif_tx_start_all_queues(dev);
Hannes Frederic Sowab20e2d52017-03-13 00:00:26 +0100839
840 for (i = 0; i < tun->numqueues; i++) {
841 struct tun_file *tfile;
842
843 tfile = rtnl_dereference(tun->tfiles[i]);
844 tfile->socket.sk->sk_write_space(tfile->socket.sk);
845 }
846
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847 return 0;
848}
849
850/* Net device close. */
851static int tun_net_close(struct net_device *dev)
852{
Jason Wangc8d68e62012-10-31 19:46:00 +0000853 netif_tx_stop_all_queues(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854 return 0;
855}
856
857/* Net device start xmit */
Stephen Hemminger424efe92009-08-31 19:50:51 +0000858static netdev_tx_t tun_net_xmit(struct sk_buff *skb, struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859{
860 struct tun_struct *tun = netdev_priv(dev);
Jason Wangc8d68e62012-10-31 19:46:00 +0000861 int txq = skb->queue_mapping;
Jason Wang6e914fc2012-10-31 19:45:58 +0000862 struct tun_file *tfile;
Dominic Curranfa358642014-01-22 03:03:23 +0000863 u32 numqueues = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864
Jason Wang6e914fc2012-10-31 19:45:58 +0000865 rcu_read_lock();
Jason Wangc8d68e62012-10-31 19:46:00 +0000866 tfile = rcu_dereference(tun->tfiles[txq]);
Mark Rutland6aa7de02017-10-23 14:07:29 -0700867 numqueues = READ_ONCE(tun->numqueues);
Jason Wangc8d68e62012-10-31 19:46:00 +0000868
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869 /* Drop packet if interface is not attached */
Dominic Curranfa358642014-01-22 03:03:23 +0000870 if (txq >= numqueues)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871 goto drop;
872
Jason Wang3df97ba2016-04-25 23:13:42 -0400873#ifdef CONFIG_RPS
874 if (numqueues == 1 && static_key_false(&rps_needed)) {
Tom Herbert9bc88932013-12-22 18:54:32 +0800875 /* Select queue was not called for the skbuff, so we extract the
876 * RPS hash and save it into the flow_table here.
877 */
878 __u32 rxhash;
879
Jason Wangfeec0842017-06-06 14:09:49 +0800880 rxhash = __skb_get_hash_symmetric(skb);
Tom Herbert9bc88932013-12-22 18:54:32 +0800881 if (rxhash) {
882 struct tun_flow_entry *e;
883 e = tun_flow_find(&tun->flows[tun_hashfn(rxhash)],
884 rxhash);
885 if (e)
886 tun_flow_save_rps_rxhash(e, rxhash);
887 }
888 }
Jason Wang3df97ba2016-04-25 23:13:42 -0400889#endif
Tom Herbert9bc88932013-12-22 18:54:32 +0800890
Jason Wang6e914fc2012-10-31 19:45:58 +0000891 tun_debug(KERN_INFO, tun, "tun_net_xmit %d\n", skb->len);
892
Jason Wangc8d68e62012-10-31 19:46:00 +0000893 BUG_ON(!tfile);
894
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -0700895 /* Drop if the filter does not like it.
896 * This is a noop if the filter is disabled.
897 * Filter can be enabled only for the TAP devices. */
898 if (!check_filter(&tun->txflt, skb))
899 goto drop;
900
Jason Wang54f968d2012-10-31 19:45:57 +0000901 if (tfile->socket.sk->sk_filter &&
902 sk_filter(tfile->socket.sk, skb))
Michael S. Tsirkin99405162010-02-14 01:01:10 +0000903 goto drop;
904
Willem de Bruijn1f8b9772017-08-03 16:29:41 -0400905 if (unlikely(skb_orphan_frags_rx(skb, GFP_ATOMIC)))
Jason Wang7bf66302013-09-05 17:54:00 +0800906 goto drop;
907
Soheil Hassas Yeganeh7b996242016-08-23 18:22:33 -0400908 skb_tx_timestamp(skb);
Richard Cochraneda29772013-07-19 19:40:10 +0200909
Michael S. Tsirkin0110d6f2010-04-13 04:59:44 +0000910 /* Orphan the skb - required as we might hang on to it
Jason Wang7bf66302013-09-05 17:54:00 +0800911 * for indefinite time.
912 */
Michael S. Tsirkin0110d6f2010-04-13 04:59:44 +0000913 skb_orphan(skb);
914
Eric Dumazetf8af75f2013-03-06 11:02:37 +0000915 nf_reset(skb);
916
Jason Wang1576d982016-06-30 14:45:36 +0800917 if (skb_array_produce(&tfile->tx_array, skb))
918 goto drop;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919
920 /* Notify and wake up reader process */
Jason Wang54f968d2012-10-31 19:45:57 +0000921 if (tfile->flags & TUN_FASYNC)
922 kill_fasync(&tfile->fasync, SIGIO, POLL_IN);
Xi Wang9e641bd2014-05-16 15:11:48 -0700923 tfile->socket.sk->sk_data_ready(tfile->socket.sk);
Jason Wang6e914fc2012-10-31 19:45:58 +0000924
925 rcu_read_unlock();
Patrick McHardy6ed10652009-06-23 06:03:08 +0000926 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927
928drop:
Paolo Abeni608b9972016-04-13 10:52:20 +0200929 this_cpu_inc(tun->pcpu_stats->tx_dropped);
Michael S. Tsirkin149d36f2012-11-01 09:16:32 +0000930 skb_tx_error(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931 kfree_skb(skb);
Jason Wang6e914fc2012-10-31 19:45:58 +0000932 rcu_read_unlock();
Jason Wangbaeabab2014-11-18 13:20:41 +0800933 return NET_XMIT_DROP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934}
935
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -0700936static void tun_net_mclist(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937{
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -0700938 /*
939 * This callback is supposed to deal with mc filter in
940 * _rx_ path and has nothing to do with the _tx_ path.
941 * In rx path we always accept everything userspace gives us.
942 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943}
944
Michał Mirosławc8f44af2011-11-15 15:29:55 +0000945static netdev_features_t tun_net_fix_features(struct net_device *dev,
946 netdev_features_t features)
Michał Mirosław88255372011-04-19 06:13:10 +0000947{
948 struct tun_struct *tun = netdev_priv(dev);
949
950 return (features & tun->set_features) | (features & ~TUN_USER_FEATURES);
951}
Neil Hormanbebd0972011-06-15 05:25:01 +0000952#ifdef CONFIG_NET_POLL_CONTROLLER
953static void tun_poll_controller(struct net_device *dev)
954{
955 /*
956 * Tun only receives frames when:
957 * 1) the char device endpoint gets data from user space
958 * 2) the tun socket gets a sendmsg call from user space
stephen hemminger92d4ea62013-12-05 20:42:58 -0800959 * Since both of those are synchronous operations, we are guaranteed
Neil Hormanbebd0972011-06-15 05:25:01 +0000960 * never to have pending data when we poll for it
stephen hemminger92d4ea62013-12-05 20:42:58 -0800961 * so there is nothing to do here but return.
Neil Hormanbebd0972011-06-15 05:25:01 +0000962 * We need this though so netpoll recognizes us as an interface that
963 * supports polling, which enables bridge devices in virt setups to
964 * still use netconsole
965 */
966 return;
967}
968#endif
Paolo Abenieaea34b2016-02-26 10:45:40 +0100969
970static void tun_set_headroom(struct net_device *dev, int new_hr)
971{
972 struct tun_struct *tun = netdev_priv(dev);
973
974 if (new_hr < NET_SKB_PAD)
975 new_hr = NET_SKB_PAD;
976
977 tun->align = new_hr;
978}
979
stephen hemmingerbc1f4472017-01-06 19:12:52 -0800980static void
Paolo Abeni608b9972016-04-13 10:52:20 +0200981tun_net_get_stats64(struct net_device *dev, struct rtnl_link_stats64 *stats)
982{
983 u32 rx_dropped = 0, tx_dropped = 0, rx_frame_errors = 0;
984 struct tun_struct *tun = netdev_priv(dev);
985 struct tun_pcpu_stats *p;
986 int i;
987
988 for_each_possible_cpu(i) {
989 u64 rxpackets, rxbytes, txpackets, txbytes;
990 unsigned int start;
991
992 p = per_cpu_ptr(tun->pcpu_stats, i);
993 do {
994 start = u64_stats_fetch_begin(&p->syncp);
995 rxpackets = p->rx_packets;
996 rxbytes = p->rx_bytes;
997 txpackets = p->tx_packets;
998 txbytes = p->tx_bytes;
999 } while (u64_stats_fetch_retry(&p->syncp, start));
1000
1001 stats->rx_packets += rxpackets;
1002 stats->rx_bytes += rxbytes;
1003 stats->tx_packets += txpackets;
1004 stats->tx_bytes += txbytes;
1005
1006 /* u32 counters */
1007 rx_dropped += p->rx_dropped;
1008 rx_frame_errors += p->rx_frame_errors;
1009 tx_dropped += p->tx_dropped;
1010 }
1011 stats->rx_dropped = rx_dropped;
1012 stats->rx_frame_errors = rx_frame_errors;
1013 stats->tx_dropped = tx_dropped;
Paolo Abeni608b9972016-04-13 10:52:20 +02001014}
1015
Jason Wang761876c2017-08-11 19:41:18 +08001016static int tun_xdp_set(struct net_device *dev, struct bpf_prog *prog,
1017 struct netlink_ext_ack *extack)
1018{
1019 struct tun_struct *tun = netdev_priv(dev);
1020 struct bpf_prog *old_prog;
1021
1022 old_prog = rtnl_dereference(tun->xdp_prog);
1023 rcu_assign_pointer(tun->xdp_prog, prog);
1024 if (old_prog)
1025 bpf_prog_put(old_prog);
1026
1027 return 0;
1028}
1029
1030static u32 tun_xdp_query(struct net_device *dev)
1031{
1032 struct tun_struct *tun = netdev_priv(dev);
1033 const struct bpf_prog *xdp_prog;
1034
1035 xdp_prog = rtnl_dereference(tun->xdp_prog);
1036 if (xdp_prog)
1037 return xdp_prog->aux->id;
1038
1039 return 0;
1040}
1041
1042static int tun_xdp(struct net_device *dev, struct netdev_xdp *xdp)
1043{
1044 switch (xdp->command) {
1045 case XDP_SETUP_PROG:
1046 return tun_xdp_set(dev, xdp->prog, xdp->extack);
1047 case XDP_QUERY_PROG:
1048 xdp->prog_id = tun_xdp_query(dev);
1049 xdp->prog_attached = !!xdp->prog_id;
1050 return 0;
1051 default:
1052 return -EINVAL;
1053 }
1054}
1055
Stephen Hemminger758e43b2008-11-19 22:10:37 -08001056static const struct net_device_ops tun_netdev_ops = {
Eric W. Biedermanc70f1822009-01-20 11:07:17 +00001057 .ndo_uninit = tun_net_uninit,
Stephen Hemminger758e43b2008-11-19 22:10:37 -08001058 .ndo_open = tun_net_open,
1059 .ndo_stop = tun_net_close,
Stephen Hemminger00829822008-11-20 20:14:53 -08001060 .ndo_start_xmit = tun_net_xmit,
Michał Mirosław88255372011-04-19 06:13:10 +00001061 .ndo_fix_features = tun_net_fix_features,
Jason Wangc8d68e62012-10-31 19:46:00 +00001062 .ndo_select_queue = tun_select_queue,
Neil Hormanbebd0972011-06-15 05:25:01 +00001063#ifdef CONFIG_NET_POLL_CONTROLLER
1064 .ndo_poll_controller = tun_poll_controller,
1065#endif
Paolo Abenieaea34b2016-02-26 10:45:40 +01001066 .ndo_set_rx_headroom = tun_set_headroom,
Paolo Abeni608b9972016-04-13 10:52:20 +02001067 .ndo_get_stats64 = tun_net_get_stats64,
Stephen Hemminger758e43b2008-11-19 22:10:37 -08001068};
1069
1070static const struct net_device_ops tap_netdev_ops = {
Eric W. Biedermanc70f1822009-01-20 11:07:17 +00001071 .ndo_uninit = tun_net_uninit,
Stephen Hemminger758e43b2008-11-19 22:10:37 -08001072 .ndo_open = tun_net_open,
1073 .ndo_stop = tun_net_close,
Stephen Hemminger00829822008-11-20 20:14:53 -08001074 .ndo_start_xmit = tun_net_xmit,
Michał Mirosław88255372011-04-19 06:13:10 +00001075 .ndo_fix_features = tun_net_fix_features,
Jiri Pirkoafc4b132011-08-16 06:29:01 +00001076 .ndo_set_rx_mode = tun_net_mclist,
Stephen Hemminger758e43b2008-11-19 22:10:37 -08001077 .ndo_set_mac_address = eth_mac_addr,
1078 .ndo_validate_addr = eth_validate_addr,
Jason Wangc8d68e62012-10-31 19:46:00 +00001079 .ndo_select_queue = tun_select_queue,
Neil Hormanbebd0972011-06-15 05:25:01 +00001080#ifdef CONFIG_NET_POLL_CONTROLLER
1081 .ndo_poll_controller = tun_poll_controller,
1082#endif
Toshiaki Makita5e527962015-07-31 15:03:27 +09001083 .ndo_features_check = passthru_features_check,
Paolo Abenieaea34b2016-02-26 10:45:40 +01001084 .ndo_set_rx_headroom = tun_set_headroom,
Paolo Abeni608b9972016-04-13 10:52:20 +02001085 .ndo_get_stats64 = tun_net_get_stats64,
Jason Wang761876c2017-08-11 19:41:18 +08001086 .ndo_xdp = tun_xdp,
Stephen Hemminger758e43b2008-11-19 22:10:37 -08001087};
1088
Pavel Emelyanov944a1372013-06-11 17:01:08 +04001089static void tun_flow_init(struct tun_struct *tun)
Jason Wang96442e422012-10-31 19:46:02 +00001090{
1091 int i;
1092
Jason Wang96442e422012-10-31 19:46:02 +00001093 for (i = 0; i < TUN_NUM_FLOW_ENTRIES; i++)
1094 INIT_HLIST_HEAD(&tun->flows[i]);
1095
1096 tun->ageing_time = TUN_FLOW_EXPIRE;
1097 setup_timer(&tun->flow_gc_timer, tun_flow_cleanup, (unsigned long)tun);
1098 mod_timer(&tun->flow_gc_timer,
1099 round_jiffies_up(jiffies + tun->ageing_time));
Jason Wang96442e422012-10-31 19:46:02 +00001100}
1101
1102static void tun_flow_uninit(struct tun_struct *tun)
1103{
1104 del_timer_sync(&tun->flow_gc_timer);
1105 tun_flow_flush(tun);
Jason Wang96442e422012-10-31 19:46:02 +00001106}
1107
Jarod Wilson91572082016-10-20 13:55:20 -04001108#define MIN_MTU 68
1109#define MAX_MTU 65535
1110
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111/* Initialize net device. */
1112static void tun_net_init(struct net_device *dev)
1113{
1114 struct tun_struct *tun = netdev_priv(dev);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001115
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116 switch (tun->flags & TUN_TYPE_MASK) {
Michael S. Tsirkin40630b82014-11-19 15:17:31 +02001117 case IFF_TUN:
Stephen Hemminger758e43b2008-11-19 22:10:37 -08001118 dev->netdev_ops = &tun_netdev_ops;
1119
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120 /* Point-to-Point TUN Device */
1121 dev->hard_header_len = 0;
1122 dev->addr_len = 0;
1123 dev->mtu = 1500;
1124
1125 /* Zero header length */
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001126 dev->type = ARPHRD_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127 dev->flags = IFF_POINTOPOINT | IFF_NOARP | IFF_MULTICAST;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128 break;
1129
Michael S. Tsirkin40630b82014-11-19 15:17:31 +02001130 case IFF_TAP:
Kusanagi Kouichi7a0a9602008-12-29 18:23:28 -08001131 dev->netdev_ops = &tap_netdev_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132 /* Ethernet TAP Device */
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -07001133 ether_setup(dev);
Neil Horman550fd082011-07-26 06:05:38 +00001134 dev->priv_flags &= ~IFF_TX_SKB_SHARING;
stephen hemmingera6768472012-12-10 15:16:00 +00001135 dev->priv_flags |= IFF_LIVE_ADDR_CHANGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136
Danny Kukawkaf2cedb62012-02-15 06:45:39 +00001137 eth_hw_addr_random(dev);
Brian Braunstein36226a82007-04-26 01:00:55 -07001138
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139 break;
1140 }
Jarod Wilson91572082016-10-20 13:55:20 -04001141
1142 dev->min_mtu = MIN_MTU;
1143 dev->max_mtu = MAX_MTU - dev->hard_header_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144}
1145
1146/* Character device part */
1147
1148/* Poll */
Jason Wangc8d68e62012-10-31 19:46:00 +00001149static unsigned int tun_chr_poll(struct file *file, poll_table *wait)
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001150{
Eric W. Biedermanb2430de2009-01-20 11:03:21 +00001151 struct tun_file *tfile = file->private_data;
1152 struct tun_struct *tun = __tun_get(tfile);
Mariusz Kozlowski3c8a9c62009-07-05 19:48:35 +00001153 struct sock *sk;
Herbert Xu33dccbb2009-02-05 21:25:32 -08001154 unsigned int mask = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155
1156 if (!tun)
Eric W. Biedermaneac9e902009-01-20 10:59:05 +00001157 return POLLERR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158
Jason Wang54f968d2012-10-31 19:45:57 +00001159 sk = tfile->socket.sk;
Mariusz Kozlowski3c8a9c62009-07-05 19:48:35 +00001160
Joe Perches6b8a66e2011-03-02 07:18:10 +00001161 tun_debug(KERN_INFO, tun, "tun_chr_poll\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162
Xi Wang9e641bd2014-05-16 15:11:48 -07001163 poll_wait(file, sk_sleep(sk), wait);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001164
Jason Wang1576d982016-06-30 14:45:36 +08001165 if (!skb_array_empty(&tfile->tx_array))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166 mask |= POLLIN | POLLRDNORM;
1167
Hannes Frederic Sowab20e2d52017-03-13 00:00:26 +01001168 if (tun->dev->flags & IFF_UP &&
1169 (sock_writeable(sk) ||
1170 (!test_and_set_bit(SOCKWQ_ASYNC_NOSPACE, &sk->sk_socket->flags) &&
1171 sock_writeable(sk))))
Herbert Xu33dccbb2009-02-05 21:25:32 -08001172 mask |= POLLOUT | POLLWRNORM;
1173
Eric W. Biedermanc70f1822009-01-20 11:07:17 +00001174 if (tun->dev->reg_state != NETREG_REGISTERED)
1175 mask = POLLERR;
1176
Eric W. Biederman631ab462009-01-20 11:00:40 +00001177 tun_put(tun);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178 return mask;
1179}
1180
Rusty Russellf42157c2008-08-15 15:15:10 -07001181/* prepad is the amount to reserve at front. len is length after that.
1182 * linear is a hint as to how much to copy (usually headers). */
Jason Wang54f968d2012-10-31 19:45:57 +00001183static struct sk_buff *tun_alloc_skb(struct tun_file *tfile,
stephen hemminger6f7c1562011-06-08 14:33:08 +00001184 size_t prepad, size_t len,
1185 size_t linear, int noblock)
Rusty Russellf42157c2008-08-15 15:15:10 -07001186{
Jason Wang54f968d2012-10-31 19:45:57 +00001187 struct sock *sk = tfile->socket.sk;
Rusty Russellf42157c2008-08-15 15:15:10 -07001188 struct sk_buff *skb;
Herbert Xu33dccbb2009-02-05 21:25:32 -08001189 int err;
Rusty Russellf42157c2008-08-15 15:15:10 -07001190
1191 /* Under a page? Don't bother with paged skb. */
Herbert Xu0eca93b2009-04-14 02:09:43 -07001192 if (prepad + len < PAGE_SIZE || !linear)
Herbert Xu33dccbb2009-02-05 21:25:32 -08001193 linear = len;
Rusty Russellf42157c2008-08-15 15:15:10 -07001194
Herbert Xu33dccbb2009-02-05 21:25:32 -08001195 skb = sock_alloc_send_pskb(sk, prepad + linear, len - linear, noblock,
Eric Dumazet28d64272013-08-08 14:38:47 -07001196 &err, 0);
Rusty Russellf42157c2008-08-15 15:15:10 -07001197 if (!skb)
Herbert Xu33dccbb2009-02-05 21:25:32 -08001198 return ERR_PTR(err);
Rusty Russellf42157c2008-08-15 15:15:10 -07001199
1200 skb_reserve(skb, prepad);
1201 skb_put(skb, linear);
Herbert Xu33dccbb2009-02-05 21:25:32 -08001202 skb->data_len = len - linear;
1203 skb->len += len - linear;
Rusty Russellf42157c2008-08-15 15:15:10 -07001204
1205 return skb;
1206}
1207
Jason Wang5503fce2017-01-18 15:02:03 +08001208static void tun_rx_batched(struct tun_struct *tun, struct tun_file *tfile,
1209 struct sk_buff *skb, int more)
1210{
1211 struct sk_buff_head *queue = &tfile->sk.sk_write_queue;
1212 struct sk_buff_head process_queue;
1213 u32 rx_batched = tun->rx_batched;
1214 bool rcv = false;
1215
1216 if (!rx_batched || (!more && skb_queue_empty(queue))) {
1217 local_bh_disable();
1218 netif_receive_skb(skb);
1219 local_bh_enable();
1220 return;
1221 }
1222
1223 spin_lock(&queue->lock);
1224 if (!more || skb_queue_len(queue) == rx_batched) {
1225 __skb_queue_head_init(&process_queue);
1226 skb_queue_splice_tail_init(queue, &process_queue);
1227 rcv = true;
1228 } else {
1229 __skb_queue_tail(queue, skb);
1230 }
1231 spin_unlock(&queue->lock);
1232
1233 if (rcv) {
1234 struct sk_buff *nskb;
1235
1236 local_bh_disable();
1237 while ((nskb = __skb_dequeue(&process_queue)))
1238 netif_receive_skb(nskb);
1239 netif_receive_skb(skb);
1240 local_bh_enable();
1241 }
1242}
1243
Jason Wang66ccbc92017-08-11 19:41:16 +08001244static bool tun_can_build_skb(struct tun_struct *tun, struct tun_file *tfile,
1245 int len, int noblock, bool zerocopy)
1246{
1247 if ((tun->flags & TUN_TYPE_MASK) != IFF_TAP)
1248 return false;
1249
1250 if (tfile->socket.sk->sk_sndbuf != INT_MAX)
1251 return false;
1252
1253 if (!noblock)
1254 return false;
1255
1256 if (zerocopy)
1257 return false;
1258
1259 if (SKB_DATA_ALIGN(len + TUN_RX_PAD) +
1260 SKB_DATA_ALIGN(sizeof(struct skb_shared_info)) > PAGE_SIZE)
1261 return false;
1262
1263 return true;
1264}
1265
Jason Wang761876c2017-08-11 19:41:18 +08001266static struct sk_buff *tun_build_skb(struct tun_struct *tun,
1267 struct tun_file *tfile,
Jason Wang66ccbc92017-08-11 19:41:16 +08001268 struct iov_iter *from,
Jason Wang761876c2017-08-11 19:41:18 +08001269 struct virtio_net_hdr *hdr,
Jason Wang1cfe6e92017-09-04 11:36:09 +08001270 int len, int *skb_xdp)
Jason Wang66ccbc92017-08-11 19:41:16 +08001271{
Eric Dumazet0bbd7da2017-08-16 22:14:33 +08001272 struct page_frag *alloc_frag = &current->task_frag;
Jason Wang66ccbc92017-08-11 19:41:16 +08001273 struct sk_buff *skb;
Jason Wang761876c2017-08-11 19:41:18 +08001274 struct bpf_prog *xdp_prog;
Jason Wang7df13212017-09-04 11:36:08 +08001275 int buflen = SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
Jason Wang761876c2017-08-11 19:41:18 +08001276 unsigned int delta = 0;
Jason Wang66ccbc92017-08-11 19:41:16 +08001277 char *buf;
1278 size_t copied;
Jason Wang761876c2017-08-11 19:41:18 +08001279 bool xdp_xmit = false;
Jason Wang7df13212017-09-04 11:36:08 +08001280 int err, pad = TUN_RX_PAD;
1281
1282 rcu_read_lock();
1283 xdp_prog = rcu_dereference(tun->xdp_prog);
1284 if (xdp_prog)
1285 pad += TUN_HEADROOM;
1286 buflen += SKB_DATA_ALIGN(len + pad);
1287 rcu_read_unlock();
Jason Wang66ccbc92017-08-11 19:41:16 +08001288
1289 if (unlikely(!skb_page_frag_refill(buflen, alloc_frag, GFP_KERNEL)))
1290 return ERR_PTR(-ENOMEM);
1291
1292 buf = (char *)page_address(alloc_frag->page) + alloc_frag->offset;
1293 copied = copy_page_from_iter(alloc_frag->page,
Jason Wang7df13212017-09-04 11:36:08 +08001294 alloc_frag->offset + pad,
Jason Wang66ccbc92017-08-11 19:41:16 +08001295 len, from);
1296 if (copied != len)
1297 return ERR_PTR(-EFAULT);
1298
Jason Wang7df13212017-09-04 11:36:08 +08001299 /* There's a small window that XDP may be set after the check
1300 * of xdp_prog above, this should be rare and for simplicity
1301 * we do XDP on skb in case the headroom is not enough.
1302 */
1303 if (hdr->gso_type || !xdp_prog)
Jason Wang1cfe6e92017-09-04 11:36:09 +08001304 *skb_xdp = 1;
Jason Wang761876c2017-08-11 19:41:18 +08001305 else
Jason Wang1cfe6e92017-09-04 11:36:09 +08001306 *skb_xdp = 0;
Jason Wang66ccbc92017-08-11 19:41:16 +08001307
Jason Wang761876c2017-08-11 19:41:18 +08001308 rcu_read_lock();
1309 xdp_prog = rcu_dereference(tun->xdp_prog);
Jason Wang1cfe6e92017-09-04 11:36:09 +08001310 if (xdp_prog && !*skb_xdp) {
Jason Wang761876c2017-08-11 19:41:18 +08001311 struct xdp_buff xdp;
1312 void *orig_data;
1313 u32 act;
1314
1315 xdp.data_hard_start = buf;
Jason Wang7df13212017-09-04 11:36:08 +08001316 xdp.data = buf + pad;
Jason Wang761876c2017-08-11 19:41:18 +08001317 xdp.data_end = xdp.data + len;
1318 orig_data = xdp.data;
1319 act = bpf_prog_run_xdp(xdp_prog, &xdp);
1320
1321 switch (act) {
1322 case XDP_REDIRECT:
1323 get_page(alloc_frag->page);
1324 alloc_frag->offset += buflen;
1325 err = xdp_do_redirect(tun->dev, &xdp, xdp_prog);
1326 if (err)
1327 goto err_redirect;
1328 return NULL;
1329 case XDP_TX:
1330 xdp_xmit = true;
1331 /* fall through */
1332 case XDP_PASS:
1333 delta = orig_data - xdp.data;
1334 break;
1335 default:
1336 bpf_warn_invalid_xdp_action(act);
1337 /* fall through */
1338 case XDP_ABORTED:
1339 trace_xdp_exception(tun->dev, xdp_prog, act);
1340 /* fall through */
1341 case XDP_DROP:
1342 goto err_xdp;
1343 }
1344 }
1345
1346 skb = build_skb(buf, buflen);
1347 if (!skb) {
1348 rcu_read_unlock();
1349 return ERR_PTR(-ENOMEM);
1350 }
1351
Jason Wang7df13212017-09-04 11:36:08 +08001352 skb_reserve(skb, pad - delta);
Jason Wang761876c2017-08-11 19:41:18 +08001353 skb_put(skb, len + delta);
Jason Wang66ccbc92017-08-11 19:41:16 +08001354 get_page(alloc_frag->page);
1355 alloc_frag->offset += buflen;
1356
Jason Wang761876c2017-08-11 19:41:18 +08001357 if (xdp_xmit) {
1358 skb->dev = tun->dev;
1359 generic_xdp_tx(skb, xdp_prog);
1360 rcu_read_lock();
1361 return NULL;
1362 }
1363
1364 rcu_read_unlock();
1365
Jason Wang66ccbc92017-08-11 19:41:16 +08001366 return skb;
Jason Wang761876c2017-08-11 19:41:18 +08001367
1368err_redirect:
1369 put_page(alloc_frag->page);
1370err_xdp:
1371 rcu_read_unlock();
1372 this_cpu_inc(tun->pcpu_stats->rx_dropped);
1373 return NULL;
Jason Wang66ccbc92017-08-11 19:41:16 +08001374}
1375
Linus Torvalds1da177e2005-04-16 15:20:36 -07001376/* Get packet from user space buffer */
Jason Wang54f968d2012-10-31 19:45:57 +00001377static ssize_t tun_get_user(struct tun_struct *tun, struct tun_file *tfile,
Al Virof5ff53b2014-06-19 15:36:49 -04001378 void *msg_control, struct iov_iter *from,
Jason Wang5503fce2017-01-18 15:02:03 +08001379 int noblock, bool more)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380{
Harvey Harrison09640e62009-02-01 00:45:17 -08001381 struct tun_pi pi = { 0, cpu_to_be16(ETH_P_IP) };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382 struct sk_buff *skb;
Al Virof5ff53b2014-06-19 15:36:49 -04001383 size_t total_len = iov_iter_count(from);
Paolo Abenieaea34b2016-02-26 10:45:40 +01001384 size_t len = total_len, align = tun->align, linear;
Rusty Russellf43798c2008-07-03 03:48:02 -07001385 struct virtio_net_hdr gso = { 0 };
Paolo Abeni608b9972016-04-13 10:52:20 +02001386 struct tun_pcpu_stats *stats;
Jason Wang96f8d9e2013-11-13 14:00:39 +08001387 int good_linear;
Michael S. Tsirkin06908992012-07-20 09:23:23 +00001388 int copylen;
1389 bool zerocopy = false;
1390 int err;
Eric Dumazet49974422012-12-12 19:22:57 +00001391 u32 rxhash;
Jason Wang1cfe6e92017-09-04 11:36:09 +08001392 int skb_xdp = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393
Eric Dumazet1bd4978a2015-12-16 08:57:37 -08001394 if (!(tun->dev->flags & IFF_UP))
1395 return -EIO;
1396
Michael S. Tsirkin40630b82014-11-19 15:17:31 +02001397 if (!(tun->flags & IFF_NO_PI)) {
Dan Carpenter15718ea2013-08-15 15:52:57 +03001398 if (len < sizeof(pi))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399 return -EINVAL;
Dan Carpenter15718ea2013-08-15 15:52:57 +03001400 len -= sizeof(pi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401
Al Virocbbd26b2016-11-01 22:09:04 -04001402 if (!copy_from_iter_full(&pi, sizeof(pi), from))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001403 return -EFAULT;
1404 }
1405
Michael S. Tsirkin40630b82014-11-19 15:17:31 +02001406 if (tun->flags & IFF_VNET_HDR) {
Willem de Bruijne1edab82017-02-03 18:20:48 -05001407 int vnet_hdr_sz = READ_ONCE(tun->vnet_hdr_sz);
1408
1409 if (len < vnet_hdr_sz)
Rusty Russellf43798c2008-07-03 03:48:02 -07001410 return -EINVAL;
Willem de Bruijne1edab82017-02-03 18:20:48 -05001411 len -= vnet_hdr_sz;
Rusty Russellf43798c2008-07-03 03:48:02 -07001412
Al Virocbbd26b2016-11-01 22:09:04 -04001413 if (!copy_from_iter_full(&gso, sizeof(gso), from))
Rusty Russellf43798c2008-07-03 03:48:02 -07001414 return -EFAULT;
1415
Herbert Xu49091222009-06-08 00:20:01 -07001416 if ((gso.flags & VIRTIO_NET_HDR_F_NEEDS_CSUM) &&
Michael S. Tsirkin56f0dcc2014-10-23 22:59:31 +03001417 tun16_to_cpu(tun, gso.csum_start) + tun16_to_cpu(tun, gso.csum_offset) + 2 > tun16_to_cpu(tun, gso.hdr_len))
1418 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 -07001419
Michael S. Tsirkin56f0dcc2014-10-23 22:59:31 +03001420 if (tun16_to_cpu(tun, gso.hdr_len) > len)
Rusty Russellf43798c2008-07-03 03:48:02 -07001421 return -EINVAL;
Willem de Bruijne1edab82017-02-03 18:20:48 -05001422 iov_iter_advance(from, vnet_hdr_sz - sizeof(gso));
Rusty Russellf43798c2008-07-03 03:48:02 -07001423 }
1424
Michael S. Tsirkin40630b82014-11-19 15:17:31 +02001425 if ((tun->flags & TUN_TYPE_MASK) == IFF_TAP) {
stephen hemmingera504b862011-06-08 14:33:07 +00001426 align += NET_IP_ALIGN;
Herbert Xu0eca93b2009-04-14 02:09:43 -07001427 if (unlikely(len < ETH_HLEN ||
Michael S. Tsirkin56f0dcc2014-10-23 22:59:31 +03001428 (gso.hdr_len && tun16_to_cpu(tun, gso.hdr_len) < ETH_HLEN)))
Rusty Russelle01bf1c2008-04-12 18:49:30 -07001429 return -EINVAL;
1430 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001431
Jason Wang96f8d9e2013-11-13 14:00:39 +08001432 good_linear = SKB_MAX_HEAD(align);
1433
Jason Wang88529172013-07-18 10:55:15 +08001434 if (msg_control) {
Al Virof5ff53b2014-06-19 15:36:49 -04001435 struct iov_iter i = *from;
1436
Jason Wang88529172013-07-18 10:55:15 +08001437 /* There are 256 bytes to be copied in skb, so there is
1438 * enough room for skb expand head in case it is used.
Michael S. Tsirkin06908992012-07-20 09:23:23 +00001439 * The rest of the buffer is mapped from userspace.
1440 */
Michael S. Tsirkin56f0dcc2014-10-23 22:59:31 +03001441 copylen = gso.hdr_len ? tun16_to_cpu(tun, gso.hdr_len) : GOODCOPY_LEN;
Jason Wang96f8d9e2013-11-13 14:00:39 +08001442 if (copylen > good_linear)
1443 copylen = good_linear;
Jason Wang3dd5c332013-07-10 13:43:27 +08001444 linear = copylen;
Al Virof5ff53b2014-06-19 15:36:49 -04001445 iov_iter_advance(&i, copylen);
1446 if (iov_iter_npages(&i, INT_MAX) <= MAX_SKB_FRAGS)
Jason Wang88529172013-07-18 10:55:15 +08001447 zerocopy = true;
1448 }
1449
Jason Wang66ccbc92017-08-11 19:41:16 +08001450 if (tun_can_build_skb(tun, tfile, len, noblock, zerocopy)) {
Jason Wang1cfe6e92017-09-04 11:36:09 +08001451 /* For the packet that is not easy to be processed
1452 * (e.g gso or jumbo packet), we will do it at after
1453 * skb was created with generic XDP routine.
1454 */
1455 skb = tun_build_skb(tun, tfile, from, &gso, len, &skb_xdp);
Jason Wang66ccbc92017-08-11 19:41:16 +08001456 if (IS_ERR(skb)) {
Paolo Abeni608b9972016-04-13 10:52:20 +02001457 this_cpu_inc(tun->pcpu_stats->rx_dropped);
Jason Wang66ccbc92017-08-11 19:41:16 +08001458 return PTR_ERR(skb);
1459 }
Jason Wang761876c2017-08-11 19:41:18 +08001460 if (!skb)
1461 return total_len;
Jason Wang66ccbc92017-08-11 19:41:16 +08001462 } else {
1463 if (!zerocopy) {
1464 copylen = len;
1465 if (tun16_to_cpu(tun, gso.hdr_len) > good_linear)
1466 linear = good_linear;
1467 else
1468 linear = tun16_to_cpu(tun, gso.hdr_len);
1469 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470
Jason Wang66ccbc92017-08-11 19:41:16 +08001471 skb = tun_alloc_skb(tfile, align, copylen, linear, noblock);
1472 if (IS_ERR(skb)) {
1473 if (PTR_ERR(skb) != -EAGAIN)
1474 this_cpu_inc(tun->pcpu_stats->rx_dropped);
1475 return PTR_ERR(skb);
1476 }
Michael S. Tsirkin06908992012-07-20 09:23:23 +00001477
Jason Wang66ccbc92017-08-11 19:41:16 +08001478 if (zerocopy)
1479 err = zerocopy_sg_from_iter(skb, from);
1480 else
1481 err = skb_copy_datagram_from_iter(skb, 0, from, len);
1482
1483 if (err) {
1484 this_cpu_inc(tun->pcpu_stats->rx_dropped);
1485 kfree_skb(skb);
1486 return -EFAULT;
1487 }
Dave Jones8f227572006-03-11 18:49:13 -08001488 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001489
Jarno Rajahalme3e9e40e2016-11-18 15:40:38 -08001490 if (virtio_net_hdr_to_skb(skb, &gso, tun_is_little_endian(tun))) {
Paolo Abenidf10db92016-06-14 00:00:04 +02001491 this_cpu_inc(tun->pcpu_stats->rx_frame_errors);
1492 kfree_skb(skb);
1493 return -EINVAL;
1494 }
1495
Linus Torvalds1da177e2005-04-16 15:20:36 -07001496 switch (tun->flags & TUN_TYPE_MASK) {
Michael S. Tsirkin40630b82014-11-19 15:17:31 +02001497 case IFF_TUN:
1498 if (tun->flags & IFF_NO_PI) {
Alexander Potapenko2580c4c2017-09-28 11:32:37 +02001499 u8 ip_version = skb->len ? (skb->data[0] >> 4) : 0;
1500
1501 switch (ip_version) {
1502 case 4:
Ang Way Chuangf09f7ee2008-06-17 21:10:33 -07001503 pi.proto = htons(ETH_P_IP);
1504 break;
Alexander Potapenko2580c4c2017-09-28 11:32:37 +02001505 case 6:
Ang Way Chuangf09f7ee2008-06-17 21:10:33 -07001506 pi.proto = htons(ETH_P_IPV6);
1507 break;
1508 default:
Paolo Abeni608b9972016-04-13 10:52:20 +02001509 this_cpu_inc(tun->pcpu_stats->rx_dropped);
Ang Way Chuangf09f7ee2008-06-17 21:10:33 -07001510 kfree_skb(skb);
1511 return -EINVAL;
1512 }
1513 }
1514
Arnaldo Carvalho de Melo459a98e2007-03-19 15:30:44 -07001515 skb_reset_mac_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001516 skb->protocol = pi.proto;
Arnaldo Carvalho de Melo4c13eb62007-04-25 17:40:23 -07001517 skb->dev = tun->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518 break;
Michael S. Tsirkin40630b82014-11-19 15:17:31 +02001519 case IFF_TAP:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001520 skb->protocol = eth_type_trans(skb, tun->dev);
1521 break;
Joe Perches6403eab2011-06-03 11:51:20 +00001522 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001523
Michael S. Tsirkin06908992012-07-20 09:23:23 +00001524 /* copy skb_ubuf_info for callback when skb has no error */
1525 if (zerocopy) {
1526 skb_shinfo(skb)->destructor_arg = msg_control;
1527 skb_shinfo(skb)->tx_flags |= SKBTX_DEV_ZEROCOPY;
Pravin B Shelarc9af6db2013-02-11 09:27:41 +00001528 skb_shinfo(skb)->tx_flags |= SKBTX_SHARED_FRAG;
Jason Wangaf1cc7a2016-11-30 13:17:51 +08001529 } else if (msg_control) {
1530 struct ubuf_info *uarg = msg_control;
1531 uarg->callback(uarg, false);
Michael S. Tsirkin06908992012-07-20 09:23:23 +00001532 }
1533
Vlad Yasevich72f65102015-02-03 16:36:16 -05001534 skb_reset_network_header(skb);
Jason Wang40893fd2013-03-26 23:11:22 +00001535 skb_probe_transport_header(skb, 0);
Jason Wang38502af2013-03-25 20:19:56 +00001536
Jason Wang1cfe6e92017-09-04 11:36:09 +08001537 if (skb_xdp) {
Jason Wang761876c2017-08-11 19:41:18 +08001538 struct bpf_prog *xdp_prog;
1539 int ret;
1540
1541 rcu_read_lock();
1542 xdp_prog = rcu_dereference(tun->xdp_prog);
1543 if (xdp_prog) {
1544 ret = do_xdp_generic(xdp_prog, skb);
1545 if (ret != XDP_PASS) {
1546 rcu_read_unlock();
1547 return total_len;
1548 }
1549 }
1550 rcu_read_unlock();
1551 }
1552
Jason Wangfeec0842017-06-06 14:09:49 +08001553 rxhash = __skb_get_hash_symmetric(skb);
Andrey Konovalovd4aea202016-12-01 10:34:40 +01001554#ifndef CONFIG_4KSTACKS
Jason Wang5503fce2017-01-18 15:02:03 +08001555 tun_rx_batched(tun, tfile, skb, more);
Andrey Konovalovd4aea202016-12-01 10:34:40 +01001556#else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001557 netif_rx_ni(skb);
Andrey Konovalovd4aea202016-12-01 10:34:40 +01001558#endif
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001559
Paolo Abeni608b9972016-04-13 10:52:20 +02001560 stats = get_cpu_ptr(tun->pcpu_stats);
1561 u64_stats_update_begin(&stats->syncp);
1562 stats->rx_packets++;
1563 stats->rx_bytes += len;
1564 u64_stats_update_end(&stats->syncp);
1565 put_cpu_ptr(stats);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001566
Jason Wang9e857222013-01-28 01:05:19 +00001567 tun_flow_update(tun, rxhash, tfile);
Michael S. Tsirkin06908992012-07-20 09:23:23 +00001568 return total_len;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001569}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001570
Al Virof5ff53b2014-06-19 15:36:49 -04001571static ssize_t tun_chr_write_iter(struct kiocb *iocb, struct iov_iter *from)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001572{
Herbert Xu33dccbb2009-02-05 21:25:32 -08001573 struct file *file = iocb->ki_filp;
Herbert Xuab46d772009-02-14 20:46:39 -08001574 struct tun_struct *tun = tun_get(file);
Jason Wang54f968d2012-10-31 19:45:57 +00001575 struct tun_file *tfile = file->private_data;
Eric W. Biederman631ab462009-01-20 11:00:40 +00001576 ssize_t result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001577
1578 if (!tun)
1579 return -EBADFD;
1580
Jason Wang5503fce2017-01-18 15:02:03 +08001581 result = tun_get_user(tun, tfile, NULL, from,
1582 file->f_flags & O_NONBLOCK, false);
Eric W. Biederman631ab462009-01-20 11:00:40 +00001583
1584 tun_put(tun);
1585 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001586}
1587
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588/* Put packet to the user space buffer */
stephen hemminger6f7c1562011-06-08 14:33:08 +00001589static ssize_t tun_put_user(struct tun_struct *tun,
Jason Wang54f968d2012-10-31 19:45:57 +00001590 struct tun_file *tfile,
stephen hemminger6f7c1562011-06-08 14:33:08 +00001591 struct sk_buff *skb,
Herbert Xue0b46d02014-11-07 21:22:23 +08001592 struct iov_iter *iter)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001593{
1594 struct tun_pi pi = { 0, skb->protocol };
Paolo Abeni608b9972016-04-13 10:52:20 +02001595 struct tun_pcpu_stats *stats;
Herbert Xue0b46d02014-11-07 21:22:23 +08001596 ssize_t total;
Jason Wang8c847d22014-11-13 16:54:14 +08001597 int vlan_offset = 0;
Herbert Xua8f9bfd2014-11-03 04:30:13 +08001598 int vlan_hlen = 0;
Herbert Xu2eb783c2014-11-03 04:30:14 +08001599 int vnet_hdr_sz = 0;
Herbert Xua8f9bfd2014-11-03 04:30:13 +08001600
Jiri Pirkodf8a39d2015-01-13 17:13:44 +01001601 if (skb_vlan_tag_present(skb))
Herbert Xua8f9bfd2014-11-03 04:30:13 +08001602 vlan_hlen = VLAN_HLEN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001603
Michael S. Tsirkin40630b82014-11-19 15:17:31 +02001604 if (tun->flags & IFF_VNET_HDR)
Willem de Bruijne1edab82017-02-03 18:20:48 -05001605 vnet_hdr_sz = READ_ONCE(tun->vnet_hdr_sz);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001606
Herbert Xue0b46d02014-11-07 21:22:23 +08001607 total = skb->len + vlan_hlen + vnet_hdr_sz;
1608
Michael S. Tsirkin40630b82014-11-19 15:17:31 +02001609 if (!(tun->flags & IFF_NO_PI)) {
Herbert Xue0b46d02014-11-07 21:22:23 +08001610 if (iov_iter_count(iter) < sizeof(pi))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001611 return -EINVAL;
1612
Herbert Xue0b46d02014-11-07 21:22:23 +08001613 total += sizeof(pi);
1614 if (iov_iter_count(iter) < total) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001615 /* Packet will be striped */
1616 pi.flags |= TUN_PKT_STRIP;
1617 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001618
Herbert Xue0b46d02014-11-07 21:22:23 +08001619 if (copy_to_iter(&pi, sizeof(pi), iter) != sizeof(pi))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001620 return -EFAULT;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001621 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001622
Herbert Xu2eb783c2014-11-03 04:30:14 +08001623 if (vnet_hdr_sz) {
Jarno Rajahalme9403cd72016-11-18 15:40:40 -08001624 struct virtio_net_hdr gso;
Mike Rapoport34166092016-06-08 16:09:20 +03001625
Herbert Xue0b46d02014-11-07 21:22:23 +08001626 if (iov_iter_count(iter) < vnet_hdr_sz)
Rusty Russellf43798c2008-07-03 03:48:02 -07001627 return -EINVAL;
1628
Jarno Rajahalme3e9e40e2016-11-18 15:40:38 -08001629 if (virtio_net_hdr_from_skb(skb, &gso,
Jason Wang6391a442017-01-20 14:32:42 +08001630 tun_is_little_endian(tun), true)) {
Rusty Russellf43798c2008-07-03 03:48:02 -07001631 struct skb_shared_info *sinfo = skb_shinfo(skb);
Mike Rapoport34166092016-06-08 16:09:20 +03001632 pr_err("unexpected GSO type: "
1633 "0x%x, gso_size %d, hdr_len %d\n",
1634 sinfo->gso_type, tun16_to_cpu(tun, gso.gso_size),
1635 tun16_to_cpu(tun, gso.hdr_len));
1636 print_hex_dump(KERN_ERR, "tun: ",
1637 DUMP_PREFIX_NONE,
1638 16, 1, skb->head,
1639 min((int)tun16_to_cpu(tun, gso.hdr_len), 64), true);
1640 WARN_ON_ONCE(1);
1641 return -EINVAL;
1642 }
Rusty Russellf43798c2008-07-03 03:48:02 -07001643
Herbert Xue0b46d02014-11-07 21:22:23 +08001644 if (copy_to_iter(&gso, sizeof(gso), iter) != sizeof(gso))
Rusty Russellf43798c2008-07-03 03:48:02 -07001645 return -EFAULT;
Jason Wang8c847d22014-11-13 16:54:14 +08001646
1647 iov_iter_advance(iter, vnet_hdr_sz - sizeof(gso));
Rusty Russellf43798c2008-07-03 03:48:02 -07001648 }
1649
Herbert Xua8f9bfd2014-11-03 04:30:13 +08001650 if (vlan_hlen) {
Herbert Xue0b46d02014-11-07 21:22:23 +08001651 int ret;
Jason Wang6680ec62013-07-25 13:00:33 +08001652 struct {
1653 __be16 h_vlan_proto;
1654 __be16 h_vlan_TCI;
1655 } veth;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001656
Jason Wang6680ec62013-07-25 13:00:33 +08001657 veth.h_vlan_proto = skb->vlan_proto;
Jiri Pirkodf8a39d2015-01-13 17:13:44 +01001658 veth.h_vlan_TCI = htons(skb_vlan_tag_get(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001659
Jason Wang6680ec62013-07-25 13:00:33 +08001660 vlan_offset = offsetof(struct vlan_ethhdr, h_vlan_proto);
Jason Wang6680ec62013-07-25 13:00:33 +08001661
Herbert Xue0b46d02014-11-07 21:22:23 +08001662 ret = skb_copy_datagram_iter(skb, 0, iter, vlan_offset);
1663 if (ret || !iov_iter_count(iter))
Jason Wang6680ec62013-07-25 13:00:33 +08001664 goto done;
1665
Herbert Xue0b46d02014-11-07 21:22:23 +08001666 ret = copy_to_iter(&veth, sizeof(veth), iter);
1667 if (ret != sizeof(veth) || !iov_iter_count(iter))
Jason Wang6680ec62013-07-25 13:00:33 +08001668 goto done;
1669 }
1670
Herbert Xue0b46d02014-11-07 21:22:23 +08001671 skb_copy_datagram_iter(skb, vlan_offset, iter, skb->len - vlan_offset);
Jason Wang6680ec62013-07-25 13:00:33 +08001672
1673done:
Paolo Abeni608b9972016-04-13 10:52:20 +02001674 /* caller is in process context, */
1675 stats = get_cpu_ptr(tun->pcpu_stats);
1676 u64_stats_update_begin(&stats->syncp);
1677 stats->tx_packets++;
1678 stats->tx_bytes += skb->len + vlan_hlen;
1679 u64_stats_update_end(&stats->syncp);
1680 put_cpu_ptr(tun->pcpu_stats);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001681
1682 return total;
1683}
1684
Jason Wang1576d982016-06-30 14:45:36 +08001685static struct sk_buff *tun_ring_recv(struct tun_file *tfile, int noblock,
1686 int *err)
1687{
1688 DECLARE_WAITQUEUE(wait, current);
1689 struct sk_buff *skb = NULL;
Jason Wangf48cc6b2016-07-04 13:53:38 +08001690 int error = 0;
Jason Wang1576d982016-06-30 14:45:36 +08001691
1692 skb = skb_array_consume(&tfile->tx_array);
1693 if (skb)
1694 goto out;
1695 if (noblock) {
Jason Wangf48cc6b2016-07-04 13:53:38 +08001696 error = -EAGAIN;
Jason Wang1576d982016-06-30 14:45:36 +08001697 goto out;
1698 }
1699
1700 add_wait_queue(&tfile->wq.wait, &wait);
1701 current->state = TASK_INTERRUPTIBLE;
1702
1703 while (1) {
1704 skb = skb_array_consume(&tfile->tx_array);
1705 if (skb)
1706 break;
1707 if (signal_pending(current)) {
Jason Wangf48cc6b2016-07-04 13:53:38 +08001708 error = -ERESTARTSYS;
Jason Wang1576d982016-06-30 14:45:36 +08001709 break;
1710 }
1711 if (tfile->socket.sk->sk_shutdown & RCV_SHUTDOWN) {
Jason Wangf48cc6b2016-07-04 13:53:38 +08001712 error = -EFAULT;
Jason Wang1576d982016-06-30 14:45:36 +08001713 break;
1714 }
1715
1716 schedule();
1717 }
1718
1719 current->state = TASK_RUNNING;
1720 remove_wait_queue(&tfile->wq.wait, &wait);
1721
1722out:
Jason Wangf48cc6b2016-07-04 13:53:38 +08001723 *err = error;
Jason Wang1576d982016-06-30 14:45:36 +08001724 return skb;
1725}
1726
Jason Wang54f968d2012-10-31 19:45:57 +00001727static ssize_t tun_do_read(struct tun_struct *tun, struct tun_file *tfile,
Al Viro9b067032014-11-07 13:52:07 -05001728 struct iov_iter *to,
Jason Wangac77cfd2017-05-17 12:14:43 +08001729 int noblock, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001730{
Al Viro9b067032014-11-07 13:52:07 -05001731 ssize_t ret;
Jason Wang1576d982016-06-30 14:45:36 +08001732 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001733
Rami Rosen3872baf2012-11-25 22:07:41 +00001734 tun_debug(KERN_INFO, tun, "tun_do_read\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001735
Al Viro9b067032014-11-07 13:52:07 -05001736 if (!iov_iter_count(to))
1737 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001738
Jason Wangac77cfd2017-05-17 12:14:43 +08001739 if (!skb) {
1740 /* Read frames from ring */
1741 skb = tun_ring_recv(tfile, noblock, &err);
1742 if (!skb)
1743 return err;
1744 }
Herbert Xue0b46d02014-11-07 21:22:23 +08001745
Al Viro9b067032014-11-07 13:52:07 -05001746 ret = tun_put_user(tun, tfile, skb, to);
Jason Wangf51a5e82014-12-01 16:53:15 +08001747 if (unlikely(ret < 0))
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -07001748 kfree_skb(skb);
Jason Wangf51a5e82014-12-01 16:53:15 +08001749 else
1750 consume_skb(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001751
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00001752 return ret;
1753}
1754
Al Viro9b067032014-11-07 13:52:07 -05001755static ssize_t tun_chr_read_iter(struct kiocb *iocb, struct iov_iter *to)
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00001756{
1757 struct file *file = iocb->ki_filp;
1758 struct tun_file *tfile = file->private_data;
1759 struct tun_struct *tun = __tun_get(tfile);
Al Viro9b067032014-11-07 13:52:07 -05001760 ssize_t len = iov_iter_count(to), ret;
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00001761
1762 if (!tun)
1763 return -EBADFD;
Jason Wangac77cfd2017-05-17 12:14:43 +08001764 ret = tun_do_read(tun, tfile, to, file->f_flags & O_NONBLOCK, NULL);
David S. Miller42404c02013-12-10 22:05:45 -05001765 ret = min_t(ssize_t, ret, len);
Zhi Yong Wud0b7da8a2013-12-06 14:16:51 +08001766 if (ret > 0)
1767 iocb->ki_pos = ret;
Eric W. Biederman631ab462009-01-20 11:00:40 +00001768 tun_put(tun);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001769 return ret;
1770}
1771
Jason Wang96442e422012-10-31 19:46:02 +00001772static void tun_free_netdev(struct net_device *dev)
1773{
1774 struct tun_struct *tun = netdev_priv(dev);
1775
Jason Wang4008e972012-12-13 23:53:30 +00001776 BUG_ON(!(list_empty(&tun->disabled)));
Paolo Abeni608b9972016-04-13 10:52:20 +02001777 free_percpu(tun->pcpu_stats);
Jason Wang96442e422012-10-31 19:46:02 +00001778 tun_flow_uninit(tun);
Paul Moore5dbbaf22013-01-14 07:12:19 +00001779 security_tun_dev_free_security(tun->security);
Jason Wang96442e422012-10-31 19:46:02 +00001780}
1781
Linus Torvalds1da177e2005-04-16 15:20:36 -07001782static void tun_setup(struct net_device *dev)
1783{
1784 struct tun_struct *tun = netdev_priv(dev);
1785
Eric W. Biederman0625c882012-02-07 16:48:55 -08001786 tun->owner = INVALID_UID;
1787 tun->group = INVALID_GID;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001788
Linus Torvalds1da177e2005-04-16 15:20:36 -07001789 dev->ethtool_ops = &tun_ethtool_ops;
David S. Millercf124db2017-05-08 12:52:56 -04001790 dev->needs_free_netdev = true;
1791 dev->priv_destructor = tun_free_netdev;
Jason Wang016adb72016-04-08 13:26:48 +08001792 /* We prefer our own queue length */
1793 dev->tx_queue_len = TUN_READQ_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001794}
1795
Eric W. Biedermanf019a7a2009-01-21 16:02:16 -08001796/* Trivial set of netlink ops to allow deleting tun or tap
1797 * device with netlink.
1798 */
Matthias Schiffera8b8a8892017-06-25 23:56:01 +02001799static int tun_validate(struct nlattr *tb[], struct nlattr *data[],
1800 struct netlink_ext_ack *extack)
Eric W. Biedermanf019a7a2009-01-21 16:02:16 -08001801{
1802 return -EINVAL;
1803}
1804
1805static struct rtnl_link_ops tun_link_ops __read_mostly = {
1806 .kind = DRV_NAME,
1807 .priv_size = sizeof(struct tun_struct),
1808 .setup = tun_setup,
1809 .validate = tun_validate,
1810};
1811
Herbert Xu33dccbb2009-02-05 21:25:32 -08001812static void tun_sock_write_space(struct sock *sk)
1813{
Jason Wang54f968d2012-10-31 19:45:57 +00001814 struct tun_file *tfile;
Eric Dumazet43815482010-04-29 11:01:49 +00001815 wait_queue_head_t *wqueue;
Herbert Xu33dccbb2009-02-05 21:25:32 -08001816
1817 if (!sock_writeable(sk))
1818 return;
1819
Eric Dumazet9cd3e072015-11-29 20:03:10 -08001820 if (!test_and_clear_bit(SOCKWQ_ASYNC_NOSPACE, &sk->sk_socket->flags))
Herbert Xu33dccbb2009-02-05 21:25:32 -08001821 return;
1822
Eric Dumazet43815482010-04-29 11:01:49 +00001823 wqueue = sk_sleep(sk);
1824 if (wqueue && waitqueue_active(wqueue))
1825 wake_up_interruptible_sync_poll(wqueue, POLLOUT |
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00001826 POLLWRNORM | POLLWRBAND);
Herbert Xuc722c622009-06-03 21:45:55 -07001827
Jason Wang54f968d2012-10-31 19:45:57 +00001828 tfile = container_of(sk, struct tun_file, sk);
1829 kill_fasync(&tfile->fasync, SIGIO, POLL_OUT);
Herbert Xu33dccbb2009-02-05 21:25:32 -08001830}
1831
Ying Xue1b784142015-03-02 15:37:48 +08001832static int tun_sendmsg(struct socket *sock, struct msghdr *m, size_t total_len)
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00001833{
Jason Wang54f968d2012-10-31 19:45:57 +00001834 int ret;
1835 struct tun_file *tfile = container_of(sock, struct tun_file, socket);
1836 struct tun_struct *tun = __tun_get(tfile);
1837
1838 if (!tun)
1839 return -EBADFD;
Al Virof5ff53b2014-06-19 15:36:49 -04001840
Al Viroc0371da2014-11-24 10:42:55 -05001841 ret = tun_get_user(tun, tfile, m->msg_control, &m->msg_iter,
Jason Wang5503fce2017-01-18 15:02:03 +08001842 m->msg_flags & MSG_DONTWAIT,
1843 m->msg_flags & MSG_MORE);
Jason Wang54f968d2012-10-31 19:45:57 +00001844 tun_put(tun);
1845 return ret;
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00001846}
1847
Ying Xue1b784142015-03-02 15:37:48 +08001848static int tun_recvmsg(struct socket *sock, struct msghdr *m, size_t total_len,
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00001849 int flags)
1850{
Jason Wang54f968d2012-10-31 19:45:57 +00001851 struct tun_file *tfile = container_of(sock, struct tun_file, socket);
1852 struct tun_struct *tun = __tun_get(tfile);
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00001853 int ret;
Jason Wang54f968d2012-10-31 19:45:57 +00001854
1855 if (!tun)
1856 return -EBADFD;
1857
Richard Cochraneda29772013-07-19 19:40:10 +02001858 if (flags & ~(MSG_DONTWAIT|MSG_TRUNC|MSG_ERRQUEUE)) {
Gao feng3811ae72013-04-24 21:59:23 +00001859 ret = -EINVAL;
1860 goto out;
1861 }
Richard Cochraneda29772013-07-19 19:40:10 +02001862 if (flags & MSG_ERRQUEUE) {
1863 ret = sock_recv_errqueue(sock->sk, m, total_len,
1864 SOL_PACKET, TUN_TX_TIMESTAMP);
1865 goto out;
1866 }
Jason Wangac77cfd2017-05-17 12:14:43 +08001867 ret = tun_do_read(tun, tfile, &m->msg_iter, flags & MSG_DONTWAIT,
1868 m->msg_control);
Alex Gartrell87897932014-12-25 23:05:03 -08001869 if (ret > (ssize_t)total_len) {
David S. Miller42404c02013-12-10 22:05:45 -05001870 m->msg_flags |= MSG_TRUNC;
1871 ret = flags & MSG_TRUNC ? ret : total_len;
1872 }
Gao feng3811ae72013-04-24 21:59:23 +00001873out:
Jason Wang54f968d2012-10-31 19:45:57 +00001874 tun_put(tun);
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00001875 return ret;
1876}
1877
Jason Wang1576d982016-06-30 14:45:36 +08001878static int tun_peek_len(struct socket *sock)
1879{
1880 struct tun_file *tfile = container_of(sock, struct tun_file, socket);
1881 struct tun_struct *tun;
1882 int ret = 0;
1883
1884 tun = __tun_get(tfile);
1885 if (!tun)
1886 return 0;
1887
1888 ret = skb_array_peek_len(&tfile->tx_array);
1889 tun_put(tun);
1890
1891 return ret;
1892}
1893
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00001894/* Ops structure to mimic raw sockets with tun */
1895static const struct proto_ops tun_socket_ops = {
Jason Wang1576d982016-06-30 14:45:36 +08001896 .peek_len = tun_peek_len,
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00001897 .sendmsg = tun_sendmsg,
1898 .recvmsg = tun_recvmsg,
1899};
1900
Herbert Xu33dccbb2009-02-05 21:25:32 -08001901static struct proto tun_proto = {
1902 .name = "tun",
1903 .owner = THIS_MODULE,
Jason Wang54f968d2012-10-31 19:45:57 +00001904 .obj_size = sizeof(struct tun_file),
Herbert Xu33dccbb2009-02-05 21:25:32 -08001905};
Eric W. Biedermanf019a7a2009-01-21 16:02:16 -08001906
David Woodhouse980c9e82009-05-09 22:54:21 -07001907static int tun_flags(struct tun_struct *tun)
1908{
Michael S. Tsirkin031f5e02014-11-19 14:44:40 +02001909 return tun->flags & (TUN_FEATURES | IFF_PERSIST | IFF_TUN | IFF_TAP);
David Woodhouse980c9e82009-05-09 22:54:21 -07001910}
1911
1912static ssize_t tun_show_flags(struct device *dev, struct device_attribute *attr,
1913 char *buf)
1914{
1915 struct tun_struct *tun = netdev_priv(to_net_dev(dev));
1916 return sprintf(buf, "0x%x\n", tun_flags(tun));
1917}
1918
1919static ssize_t tun_show_owner(struct device *dev, struct device_attribute *attr,
1920 char *buf)
1921{
1922 struct tun_struct *tun = netdev_priv(to_net_dev(dev));
Eric W. Biederman0625c882012-02-07 16:48:55 -08001923 return uid_valid(tun->owner)?
1924 sprintf(buf, "%u\n",
1925 from_kuid_munged(current_user_ns(), tun->owner)):
1926 sprintf(buf, "-1\n");
David Woodhouse980c9e82009-05-09 22:54:21 -07001927}
1928
1929static ssize_t tun_show_group(struct device *dev, struct device_attribute *attr,
1930 char *buf)
1931{
1932 struct tun_struct *tun = netdev_priv(to_net_dev(dev));
Eric W. Biederman0625c882012-02-07 16:48:55 -08001933 return gid_valid(tun->group) ?
1934 sprintf(buf, "%u\n",
1935 from_kgid_munged(current_user_ns(), tun->group)):
1936 sprintf(buf, "-1\n");
David Woodhouse980c9e82009-05-09 22:54:21 -07001937}
1938
1939static DEVICE_ATTR(tun_flags, 0444, tun_show_flags, NULL);
1940static DEVICE_ATTR(owner, 0444, tun_show_owner, NULL);
1941static DEVICE_ATTR(group, 0444, tun_show_group, NULL);
1942
Takashi Iwaic4d33e22015-02-04 14:37:34 +01001943static struct attribute *tun_dev_attrs[] = {
1944 &dev_attr_tun_flags.attr,
1945 &dev_attr_owner.attr,
1946 &dev_attr_group.attr,
1947 NULL
1948};
1949
1950static const struct attribute_group tun_attr_group = {
1951 .attrs = tun_dev_attrs
1952};
1953
Pavel Emelyanovd647a592008-04-16 00:41:16 -07001954static int tun_set_iff(struct net *net, struct file *file, struct ifreq *ifr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001955{
1956 struct tun_struct *tun;
Jason Wang54f968d2012-10-31 19:45:57 +00001957 struct tun_file *tfile = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001958 struct net_device *dev;
1959 int err;
1960
Jason Wang7c0c3b12013-01-11 16:59:33 +00001961 if (tfile->detached)
1962 return -EINVAL;
1963
Eric W. Biederman74a3e5a2009-01-20 10:56:20 +00001964 dev = __dev_get_by_name(net, ifr->ifr_name);
1965 if (dev) {
David Woodhousef85ba782009-04-27 03:23:54 -07001966 if (ifr->ifr_flags & IFF_TUN_EXCL)
1967 return -EBUSY;
Eric W. Biederman74a3e5a2009-01-20 10:56:20 +00001968 if ((ifr->ifr_flags & IFF_TUN) && dev->netdev_ops == &tun_netdev_ops)
1969 tun = netdev_priv(dev);
1970 else if ((ifr->ifr_flags & IFF_TAP) && dev->netdev_ops == &tap_netdev_ops)
1971 tun = netdev_priv(dev);
1972 else
1973 return -EINVAL;
1974
Jason Wang8e6d91a2013-05-28 18:32:11 +00001975 if (!!(ifr->ifr_flags & IFF_MULTI_QUEUE) !=
Michael S. Tsirkin40630b82014-11-19 15:17:31 +02001976 !!(tun->flags & IFF_MULTI_QUEUE))
Jason Wang8e6d91a2013-05-28 18:32:11 +00001977 return -EINVAL;
1978
Jason Wangcde8b152012-10-31 19:46:01 +00001979 if (tun_not_capable(tun))
Paul Moore2b980db2009-08-28 18:12:43 -04001980 return -EPERM;
Paul Moore5dbbaf22013-01-14 07:12:19 +00001981 err = security_tun_dev_open(tun->security);
Paul Moore2b980db2009-08-28 18:12:43 -04001982 if (err < 0)
1983 return err;
1984
Pavel Emelyanov849c9b62013-08-21 14:32:21 +04001985 err = tun_attach(tun, file, ifr->ifr_flags & IFF_NOFILTER);
Eric W. Biedermana7385ba2009-01-20 10:57:48 +00001986 if (err < 0)
1987 return err;
Jason Wang4008e972012-12-13 23:53:30 +00001988
Michael S. Tsirkin40630b82014-11-19 15:17:31 +02001989 if (tun->flags & IFF_MULTI_QUEUE &&
Jason Wange8dbad62013-04-22 20:40:39 +00001990 (tun->numqueues + tun->numdisabled > 1)) {
1991 /* One or more queue has already been attached, no need
1992 * to initialize the device again.
1993 */
1994 return 0;
1995 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001996 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001997 else {
1998 char *name;
1999 unsigned long flags = 0;
Jason Wangedfb6a12013-01-23 03:59:12 +00002000 int queues = ifr->ifr_flags & IFF_MULTI_QUEUE ?
2001 MAX_TAP_QUEUES : 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002002
Eric W. Biedermanc260b772012-11-18 21:34:11 +00002003 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
David Woodhouseca6bb5d2006-06-22 16:07:52 -07002004 return -EPERM;
Paul Moore2b980db2009-08-28 18:12:43 -04002005 err = security_tun_dev_create();
2006 if (err < 0)
2007 return err;
David Woodhouseca6bb5d2006-06-22 16:07:52 -07002008
Linus Torvalds1da177e2005-04-16 15:20:36 -07002009 /* Set dev type */
2010 if (ifr->ifr_flags & IFF_TUN) {
2011 /* TUN device */
Michael S. Tsirkin40630b82014-11-19 15:17:31 +02002012 flags |= IFF_TUN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002013 name = "tun%d";
2014 } else if (ifr->ifr_flags & IFF_TAP) {
2015 /* TAP device */
Michael S. Tsirkin40630b82014-11-19 15:17:31 +02002016 flags |= IFF_TAP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002017 name = "tap%d";
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002018 } else
Kusanagi Kouichi36989b92009-09-16 21:36:13 +00002019 return -EINVAL;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002020
Linus Torvalds1da177e2005-04-16 15:20:36 -07002021 if (*ifr->ifr_name)
2022 name = ifr->ifr_name;
2023
Jason Wangc8d68e62012-10-31 19:46:00 +00002024 dev = alloc_netdev_mqs(sizeof(struct tun_struct), name,
Tom Gundersenc835a672014-07-14 16:37:24 +02002025 NET_NAME_UNKNOWN, tun_setup, queues,
2026 queues);
Jason Wangedfb6a12013-01-23 03:59:12 +00002027
Linus Torvalds1da177e2005-04-16 15:20:36 -07002028 if (!dev)
2029 return -ENOMEM;
Cong Wang0ad646c2017-10-13 11:58:53 -07002030 err = dev_get_valid_name(net, dev, name);
2031 if (err)
2032 goto err_free_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002033
Pavel Emelyanovfc54c652008-04-16 00:41:53 -07002034 dev_net_set(dev, net);
Eric W. Biedermanf019a7a2009-01-21 16:02:16 -08002035 dev->rtnl_link_ops = &tun_link_ops;
Pavel Emelyanovfb7589a2013-08-21 14:31:38 +04002036 dev->ifindex = tfile->ifindex;
Takashi Iwaic4d33e22015-02-04 14:37:34 +01002037 dev->sysfs_groups[0] = &tun_attr_group;
Stephen Hemminger758e43b2008-11-19 22:10:37 -08002038
Linus Torvalds1da177e2005-04-16 15:20:36 -07002039 tun = netdev_priv(dev);
2040 tun->dev = dev;
2041 tun->flags = flags;
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -07002042 tun->txflt.count = 0;
Michael S. Tsirkind9d52b52010-03-17 17:45:01 +02002043 tun->vnet_hdr_sz = sizeof(struct virtio_net_hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002044
Paolo Abenieaea34b2016-02-26 10:45:40 +01002045 tun->align = NET_SKB_PAD;
Jason Wang54f968d2012-10-31 19:45:57 +00002046 tun->filter_attached = false;
2047 tun->sndbuf = tfile->socket.sk->sk_sndbuf;
Jason Wang5503fce2017-01-18 15:02:03 +08002048 tun->rx_batched = 0;
Herbert Xu33dccbb2009-02-05 21:25:32 -08002049
Paolo Abeni608b9972016-04-13 10:52:20 +02002050 tun->pcpu_stats = netdev_alloc_pcpu_stats(struct tun_pcpu_stats);
2051 if (!tun->pcpu_stats) {
2052 err = -ENOMEM;
2053 goto err_free_dev;
2054 }
2055
Jason Wang96442e422012-10-31 19:46:02 +00002056 spin_lock_init(&tun->lock);
2057
Paul Moore5dbbaf22013-01-14 07:12:19 +00002058 err = security_tun_dev_alloc_security(&tun->security);
2059 if (err < 0)
Paolo Abeni608b9972016-04-13 10:52:20 +02002060 goto err_free_stat;
Paul Moore2b980db2009-08-28 18:12:43 -04002061
Linus Torvalds1da177e2005-04-16 15:20:36 -07002062 tun_net_init(dev);
Pavel Emelyanov944a1372013-06-11 17:01:08 +04002063 tun_flow_init(tun);
Jason Wang96442e422012-10-31 19:46:02 +00002064
Michał Mirosław88255372011-04-19 06:13:10 +00002065 dev->hw_features = NETIF_F_SG | NETIF_F_FRAGLIST |
Jason Wang6680ec62013-07-25 13:00:33 +08002066 TUN_USER_FEATURES | NETIF_F_HW_VLAN_CTAG_TX |
2067 NETIF_F_HW_VLAN_STAG_TX;
Paolo Abeni2a2bbf12016-04-14 18:39:39 +02002068 dev->features = dev->hw_features | NETIF_F_LLTX;
Fernando Luis Vazquez Cao6671b222014-02-18 21:20:09 +09002069 dev->vlan_features = dev->features &
2070 ~(NETIF_F_HW_VLAN_CTAG_TX |
2071 NETIF_F_HW_VLAN_STAG_TX);
Michał Mirosław88255372011-04-19 06:13:10 +00002072
Jason Wang4008e972012-12-13 23:53:30 +00002073 INIT_LIST_HEAD(&tun->disabled);
Pavel Emelyanov849c9b62013-08-21 14:32:21 +04002074 err = tun_attach(tun, file, false);
Jason Wangeb0fb362012-12-02 17:19:45 +00002075 if (err < 0)
Jason Wang662ca432013-09-11 18:09:48 +08002076 goto err_free_flow;
Jason Wangeb0fb362012-12-02 17:19:45 +00002077
Linus Torvalds1da177e2005-04-16 15:20:36 -07002078 err = register_netdevice(tun->dev);
2079 if (err < 0)
Jason Wang662ca432013-09-11 18:09:48 +08002080 goto err_detach;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002081 }
2082
Michael S. Tsirkinaf668b32013-01-28 00:38:02 +00002083 netif_carrier_on(tun->dev);
2084
Joe Perches6b8a66e2011-03-02 07:18:10 +00002085 tun_debug(KERN_INFO, tun, "tun_set_iff\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002086
Michael S. Tsirkin031f5e02014-11-19 14:44:40 +02002087 tun->flags = (tun->flags & ~TUN_FEATURES) |
2088 (ifr->ifr_flags & TUN_FEATURES);
Jason Wangc8d68e62012-10-31 19:46:00 +00002089
Max Krasnyanskye35259a2008-07-10 16:59:11 -07002090 /* Make sure persistent devices do not get stuck in
2091 * xoff state.
2092 */
2093 if (netif_running(tun->dev))
Jason Wangc8d68e62012-10-31 19:46:00 +00002094 netif_tx_wake_all_queues(tun->dev);
Max Krasnyanskye35259a2008-07-10 16:59:11 -07002095
Linus Torvalds1da177e2005-04-16 15:20:36 -07002096 strcpy(ifr->ifr_name, tun->dev->name);
2097 return 0;
2098
Jason Wang662ca432013-09-11 18:09:48 +08002099err_detach:
2100 tun_detach_all(dev);
Eric Dumazetff244c62017-08-18 13:39:56 -07002101 /* register_netdevice() already called tun_free_netdev() */
2102 goto err_free_dev;
2103
Jason Wang662ca432013-09-11 18:09:48 +08002104err_free_flow:
2105 tun_flow_uninit(tun);
2106 security_tun_dev_free_security(tun->security);
Paolo Abeni608b9972016-04-13 10:52:20 +02002107err_free_stat:
2108 free_percpu(tun->pcpu_stats);
Jason Wang662ca432013-09-11 18:09:48 +08002109err_free_dev:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002110 free_netdev(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002111 return err;
2112}
2113
Rami Rosen9ce99cf2012-11-23 03:58:10 +00002114static void tun_get_iff(struct net *net, struct tun_struct *tun,
Herbert Xu876bfd42009-08-06 14:22:44 +00002115 struct ifreq *ifr)
Mark McLoughline3b99552008-08-15 15:09:56 -07002116{
Joe Perches6b8a66e2011-03-02 07:18:10 +00002117 tun_debug(KERN_INFO, tun, "tun_get_iff\n");
Mark McLoughline3b99552008-08-15 15:09:56 -07002118
2119 strcpy(ifr->ifr_name, tun->dev->name);
2120
David Woodhouse980c9e82009-05-09 22:54:21 -07002121 ifr->ifr_flags = tun_flags(tun);
Mark McLoughline3b99552008-08-15 15:09:56 -07002122
Mark McLoughline3b99552008-08-15 15:09:56 -07002123}
2124
Rusty Russell5228ddc2008-07-03 03:46:16 -07002125/* This is like a cut-down ethtool ops, except done via tun fd so no
2126 * privs required. */
Michał Mirosław88255372011-04-19 06:13:10 +00002127static int set_offload(struct tun_struct *tun, unsigned long arg)
Rusty Russell5228ddc2008-07-03 03:46:16 -07002128{
Michał Mirosławc8f44af2011-11-15 15:29:55 +00002129 netdev_features_t features = 0;
Rusty Russell5228ddc2008-07-03 03:46:16 -07002130
2131 if (arg & TUN_F_CSUM) {
Michał Mirosław88255372011-04-19 06:13:10 +00002132 features |= NETIF_F_HW_CSUM;
Rusty Russell5228ddc2008-07-03 03:46:16 -07002133 arg &= ~TUN_F_CSUM;
2134
2135 if (arg & (TUN_F_TSO4|TUN_F_TSO6)) {
2136 if (arg & TUN_F_TSO_ECN) {
2137 features |= NETIF_F_TSO_ECN;
2138 arg &= ~TUN_F_TSO_ECN;
2139 }
2140 if (arg & TUN_F_TSO4)
2141 features |= NETIF_F_TSO;
2142 if (arg & TUN_F_TSO6)
2143 features |= NETIF_F_TSO6;
2144 arg &= ~(TUN_F_TSO4|TUN_F_TSO6);
2145 }
2146 }
2147
2148 /* This gives the user a way to test for new features in future by
2149 * trying to set them. */
2150 if (arg)
2151 return -EINVAL;
2152
Michał Mirosław88255372011-04-19 06:13:10 +00002153 tun->set_features = features;
Yaroslav Isakov09050952017-03-16 22:44:10 +03002154 tun->dev->wanted_features &= ~TUN_USER_FEATURES;
2155 tun->dev->wanted_features |= features;
Michał Mirosław88255372011-04-19 06:13:10 +00002156 netdev_update_features(tun->dev);
Rusty Russell5228ddc2008-07-03 03:46:16 -07002157
2158 return 0;
2159}
2160
Jason Wangc8d68e62012-10-31 19:46:00 +00002161static void tun_detach_filter(struct tun_struct *tun, int n)
2162{
2163 int i;
2164 struct tun_file *tfile;
2165
2166 for (i = 0; i < n; i++) {
Jason Wangb8deabd2013-01-11 16:59:32 +00002167 tfile = rtnl_dereference(tun->tfiles[i]);
Hannes Frederic Sowa8ced4252016-04-05 17:10:16 +02002168 lock_sock(tfile->socket.sk);
2169 sk_detach_filter(tfile->socket.sk);
2170 release_sock(tfile->socket.sk);
Jason Wangc8d68e62012-10-31 19:46:00 +00002171 }
2172
2173 tun->filter_attached = false;
2174}
2175
2176static int tun_attach_filter(struct tun_struct *tun)
2177{
2178 int i, ret = 0;
2179 struct tun_file *tfile;
2180
2181 for (i = 0; i < tun->numqueues; i++) {
Jason Wangb8deabd2013-01-11 16:59:32 +00002182 tfile = rtnl_dereference(tun->tfiles[i]);
Hannes Frederic Sowa8ced4252016-04-05 17:10:16 +02002183 lock_sock(tfile->socket.sk);
2184 ret = sk_attach_filter(&tun->fprog, tfile->socket.sk);
2185 release_sock(tfile->socket.sk);
Jason Wangc8d68e62012-10-31 19:46:00 +00002186 if (ret) {
2187 tun_detach_filter(tun, i);
2188 return ret;
2189 }
2190 }
2191
2192 tun->filter_attached = true;
2193 return ret;
2194}
2195
2196static void tun_set_sndbuf(struct tun_struct *tun)
2197{
2198 struct tun_file *tfile;
2199 int i;
2200
2201 for (i = 0; i < tun->numqueues; i++) {
Jason Wangb8deabd2013-01-11 16:59:32 +00002202 tfile = rtnl_dereference(tun->tfiles[i]);
Jason Wangc8d68e62012-10-31 19:46:00 +00002203 tfile->socket.sk->sk_sndbuf = tun->sndbuf;
2204 }
2205}
2206
Jason Wangcde8b152012-10-31 19:46:01 +00002207static int tun_set_queue(struct file *file, struct ifreq *ifr)
2208{
2209 struct tun_file *tfile = file->private_data;
2210 struct tun_struct *tun;
Jason Wangcde8b152012-10-31 19:46:01 +00002211 int ret = 0;
2212
2213 rtnl_lock();
2214
2215 if (ifr->ifr_flags & IFF_ATTACH_QUEUE) {
Jason Wang4008e972012-12-13 23:53:30 +00002216 tun = tfile->detached;
Paul Moore5dbbaf22013-01-14 07:12:19 +00002217 if (!tun) {
Jason Wangcde8b152012-10-31 19:46:01 +00002218 ret = -EINVAL;
Paul Moore5dbbaf22013-01-14 07:12:19 +00002219 goto unlock;
2220 }
2221 ret = security_tun_dev_attach_queue(tun->security);
2222 if (ret < 0)
2223 goto unlock;
Pavel Emelyanov849c9b62013-08-21 14:32:21 +04002224 ret = tun_attach(tun, file, false);
Jason Wang4008e972012-12-13 23:53:30 +00002225 } else if (ifr->ifr_flags & IFF_DETACH_QUEUE) {
Jason Wangb8deabd2013-01-11 16:59:32 +00002226 tun = rtnl_dereference(tfile->tun);
Michael S. Tsirkin40630b82014-11-19 15:17:31 +02002227 if (!tun || !(tun->flags & IFF_MULTI_QUEUE) || tfile->detached)
Jason Wang4008e972012-12-13 23:53:30 +00002228 ret = -EINVAL;
2229 else
2230 __tun_detach(tfile, false);
2231 } else
Jason Wangcde8b152012-10-31 19:46:01 +00002232 ret = -EINVAL;
2233
Paul Moore5dbbaf22013-01-14 07:12:19 +00002234unlock:
Jason Wangcde8b152012-10-31 19:46:01 +00002235 rtnl_unlock();
2236 return ret;
2237}
2238
Arnd Bergmann50857e22009-11-06 22:52:32 -08002239static long __tun_chr_ioctl(struct file *file, unsigned int cmd,
2240 unsigned long arg, int ifreq_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002241{
Eric W. Biederman36b50ba2009-01-20 11:01:48 +00002242 struct tun_file *tfile = file->private_data;
Eric W. Biederman631ab462009-01-20 11:00:40 +00002243 struct tun_struct *tun;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002244 void __user* argp = (void __user*)arg;
2245 struct ifreq ifr;
Eric W. Biederman0625c882012-02-07 16:48:55 -08002246 kuid_t owner;
2247 kgid_t group;
Herbert Xu33dccbb2009-02-05 21:25:32 -08002248 int sndbuf;
Michael S. Tsirkind9d52b52010-03-17 17:45:01 +02002249 int vnet_hdr_sz;
Pavel Emelyanovfb7589a2013-08-21 14:31:38 +04002250 unsigned int ifindex;
Michael S. Tsirkin1cf8e412014-12-16 15:05:06 +02002251 int le;
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -07002252 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002253
Gao Feng20861f22016-10-27 09:05:22 +08002254 if (cmd == TUNSETIFF || cmd == TUNSETQUEUE || _IOC_TYPE(cmd) == SOCK_IOC_TYPE) {
Arnd Bergmann50857e22009-11-06 22:52:32 -08002255 if (copy_from_user(&ifr, argp, ifreq_len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002256 return -EFAULT;
David S. Miller8bbb1812012-07-30 14:52:48 -07002257 } else {
Mathias Krausea117dac2012-07-29 19:45:14 +00002258 memset(&ifr, 0, sizeof(ifr));
David S. Miller8bbb1812012-07-30 14:52:48 -07002259 }
Eric W. Biederman631ab462009-01-20 11:00:40 +00002260 if (cmd == TUNGETFEATURES) {
2261 /* Currently this just means: "what IFF flags are valid?".
2262 * This is needed because we never checked for invalid flags on
Michael S. Tsirkin031f5e02014-11-19 14:44:40 +02002263 * TUNSETIFF.
2264 */
2265 return put_user(IFF_TUN | IFF_TAP | TUN_FEATURES,
Eric W. Biederman631ab462009-01-20 11:00:40 +00002266 (unsigned int __user*)argp);
Jason Wangcde8b152012-10-31 19:46:01 +00002267 } else if (cmd == TUNSETQUEUE)
2268 return tun_set_queue(file, &ifr);
Eric W. Biederman631ab462009-01-20 11:00:40 +00002269
Jason Wangc8d68e62012-10-31 19:46:00 +00002270 ret = 0;
Herbert Xu876bfd42009-08-06 14:22:44 +00002271 rtnl_lock();
2272
Eric W. Biederman36b50ba2009-01-20 11:01:48 +00002273 tun = __tun_get(tfile);
Gao Feng0f16bc12016-10-25 22:26:09 +08002274 if (cmd == TUNSETIFF) {
2275 ret = -EEXIST;
2276 if (tun)
2277 goto unlock;
2278
Linus Torvalds1da177e2005-04-16 15:20:36 -07002279 ifr.ifr_name[IFNAMSIZ-1] = '\0';
2280
Eric W. Biederman140e807da2015-05-08 21:07:08 -05002281 ret = tun_set_iff(sock_net(&tfile->sk), file, &ifr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002282
Herbert Xu876bfd42009-08-06 14:22:44 +00002283 if (ret)
2284 goto unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002285
Arnd Bergmann50857e22009-11-06 22:52:32 -08002286 if (copy_to_user(argp, &ifr, ifreq_len))
Herbert Xu876bfd42009-08-06 14:22:44 +00002287 ret = -EFAULT;
2288 goto unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002289 }
Pavel Emelyanovfb7589a2013-08-21 14:31:38 +04002290 if (cmd == TUNSETIFINDEX) {
2291 ret = -EPERM;
2292 if (tun)
2293 goto unlock;
2294
2295 ret = -EFAULT;
2296 if (copy_from_user(&ifindex, argp, sizeof(ifindex)))
2297 goto unlock;
2298
2299 ret = 0;
2300 tfile->ifindex = ifindex;
2301 goto unlock;
2302 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002303
Herbert Xu876bfd42009-08-06 14:22:44 +00002304 ret = -EBADFD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002305 if (!tun)
Herbert Xu876bfd42009-08-06 14:22:44 +00002306 goto unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002307
Jason Wang1e588332012-10-31 19:45:56 +00002308 tun_debug(KERN_INFO, tun, "tun_chr_ioctl cmd %u\n", cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002309
Eric W. Biederman631ab462009-01-20 11:00:40 +00002310 ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002311 switch (cmd) {
Mark McLoughline3b99552008-08-15 15:09:56 -07002312 case TUNGETIFF:
Rami Rosen9ce99cf2012-11-23 03:58:10 +00002313 tun_get_iff(current->nsproxy->net_ns, tun, &ifr);
Mark McLoughline3b99552008-08-15 15:09:56 -07002314
Pavel Emelyanov3d407a82013-08-21 14:32:00 +04002315 if (tfile->detached)
2316 ifr.ifr_flags |= IFF_DETACH_QUEUE;
Pavel Emelyanov849c9b62013-08-21 14:32:21 +04002317 if (!tfile->socket.sk->sk_filter)
2318 ifr.ifr_flags |= IFF_NOFILTER;
Pavel Emelyanov3d407a82013-08-21 14:32:00 +04002319
Arnd Bergmann50857e22009-11-06 22:52:32 -08002320 if (copy_to_user(argp, &ifr, ifreq_len))
Eric W. Biederman631ab462009-01-20 11:00:40 +00002321 ret = -EFAULT;
Mark McLoughline3b99552008-08-15 15:09:56 -07002322 break;
2323
Linus Torvalds1da177e2005-04-16 15:20:36 -07002324 case TUNSETNOCSUM:
2325 /* Disable/Enable checksum */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002326
Michał Mirosław88255372011-04-19 06:13:10 +00002327 /* [unimplemented] */
2328 tun_debug(KERN_INFO, tun, "ignored: set checksum %s\n",
Joe Perches6b8a66e2011-03-02 07:18:10 +00002329 arg ? "disabled" : "enabled");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002330 break;
2331
2332 case TUNSETPERSIST:
Jason Wang54f968d2012-10-31 19:45:57 +00002333 /* Disable/Enable persist mode. Keep an extra reference to the
2334 * module to prevent the module being unprobed.
2335 */
Michael S. Tsirkin40630b82014-11-19 15:17:31 +02002336 if (arg && !(tun->flags & IFF_PERSIST)) {
2337 tun->flags |= IFF_PERSIST;
Jason Wang54f968d2012-10-31 19:45:57 +00002338 __module_get(THIS_MODULE);
Jason Wangdd38bd82013-01-11 16:59:34 +00002339 }
Michael S. Tsirkin40630b82014-11-19 15:17:31 +02002340 if (!arg && (tun->flags & IFF_PERSIST)) {
2341 tun->flags &= ~IFF_PERSIST;
Jason Wang54f968d2012-10-31 19:45:57 +00002342 module_put(THIS_MODULE);
2343 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002344
Joe Perches6b8a66e2011-03-02 07:18:10 +00002345 tun_debug(KERN_INFO, tun, "persist %s\n",
2346 arg ? "enabled" : "disabled");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002347 break;
2348
2349 case TUNSETOWNER:
2350 /* Set owner of the device */
Eric W. Biederman0625c882012-02-07 16:48:55 -08002351 owner = make_kuid(current_user_ns(), arg);
2352 if (!uid_valid(owner)) {
2353 ret = -EINVAL;
2354 break;
2355 }
2356 tun->owner = owner;
Jason Wang1e588332012-10-31 19:45:56 +00002357 tun_debug(KERN_INFO, tun, "owner set to %u\n",
Eric W. Biederman0625c882012-02-07 16:48:55 -08002358 from_kuid(&init_user_ns, tun->owner));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002359 break;
2360
Guido Guenther8c644622007-07-02 22:50:25 -07002361 case TUNSETGROUP:
2362 /* Set group of the device */
Eric W. Biederman0625c882012-02-07 16:48:55 -08002363 group = make_kgid(current_user_ns(), arg);
2364 if (!gid_valid(group)) {
2365 ret = -EINVAL;
2366 break;
2367 }
2368 tun->group = group;
Jason Wang1e588332012-10-31 19:45:56 +00002369 tun_debug(KERN_INFO, tun, "group set to %u\n",
Eric W. Biederman0625c882012-02-07 16:48:55 -08002370 from_kgid(&init_user_ns, tun->group));
Guido Guenther8c644622007-07-02 22:50:25 -07002371 break;
2372
Mike Kershawff4cc3a2005-09-01 17:40:05 -07002373 case TUNSETLINK:
2374 /* Only allow setting the type when the interface is down */
2375 if (tun->dev->flags & IFF_UP) {
Joe Perches6b8a66e2011-03-02 07:18:10 +00002376 tun_debug(KERN_INFO, tun,
2377 "Linktype set failed because interface is up\n");
David S. Miller48abfe02008-04-23 19:37:58 -07002378 ret = -EBUSY;
Mike Kershawff4cc3a2005-09-01 17:40:05 -07002379 } else {
2380 tun->dev->type = (int) arg;
Joe Perches6b8a66e2011-03-02 07:18:10 +00002381 tun_debug(KERN_INFO, tun, "linktype set to %d\n",
2382 tun->dev->type);
David S. Miller48abfe02008-04-23 19:37:58 -07002383 ret = 0;
Mike Kershawff4cc3a2005-09-01 17:40:05 -07002384 }
Eric W. Biederman631ab462009-01-20 11:00:40 +00002385 break;
Mike Kershawff4cc3a2005-09-01 17:40:05 -07002386
Linus Torvalds1da177e2005-04-16 15:20:36 -07002387#ifdef TUN_DEBUG
2388 case TUNSETDEBUG:
2389 tun->debug = arg;
2390 break;
2391#endif
Rusty Russell5228ddc2008-07-03 03:46:16 -07002392 case TUNSETOFFLOAD:
Michał Mirosław88255372011-04-19 06:13:10 +00002393 ret = set_offload(tun, arg);
Eric W. Biederman631ab462009-01-20 11:00:40 +00002394 break;
Rusty Russell5228ddc2008-07-03 03:46:16 -07002395
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -07002396 case TUNSETTXFILTER:
2397 /* Can be set only for TAPs */
Eric W. Biederman631ab462009-01-20 11:00:40 +00002398 ret = -EINVAL;
Michael S. Tsirkin40630b82014-11-19 15:17:31 +02002399 if ((tun->flags & TUN_TYPE_MASK) != IFF_TAP)
Eric W. Biederman631ab462009-01-20 11:00:40 +00002400 break;
Harvey Harrisonc0e5a8c2008-07-16 12:45:34 -07002401 ret = update_filter(&tun->txflt, (void __user *)arg);
Eric W. Biederman631ab462009-01-20 11:00:40 +00002402 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002403
2404 case SIOCGIFHWADDR:
Uwe Kleine-Königb5950762010-11-01 15:38:34 -04002405 /* Get hw address */
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -07002406 memcpy(ifr.ifr_hwaddr.sa_data, tun->dev->dev_addr, ETH_ALEN);
2407 ifr.ifr_hwaddr.sa_family = tun->dev->type;
Arnd Bergmann50857e22009-11-06 22:52:32 -08002408 if (copy_to_user(argp, &ifr, ifreq_len))
Eric W. Biederman631ab462009-01-20 11:00:40 +00002409 ret = -EFAULT;
2410 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002411
2412 case SIOCSIFHWADDR:
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -07002413 /* Set hw address */
Joe Perches6b8a66e2011-03-02 07:18:10 +00002414 tun_debug(KERN_DEBUG, tun, "set hw address: %pM\n",
2415 ifr.ifr_hwaddr.sa_data);
Kim B. Heino40102372008-02-29 12:26:21 -08002416
Kim B. Heino40102372008-02-29 12:26:21 -08002417 ret = dev_set_mac_address(tun->dev, &ifr.ifr_hwaddr);
Eric W. Biederman631ab462009-01-20 11:00:40 +00002418 break;
Herbert Xu33dccbb2009-02-05 21:25:32 -08002419
2420 case TUNGETSNDBUF:
Jason Wang54f968d2012-10-31 19:45:57 +00002421 sndbuf = tfile->socket.sk->sk_sndbuf;
Herbert Xu33dccbb2009-02-05 21:25:32 -08002422 if (copy_to_user(argp, &sndbuf, sizeof(sndbuf)))
2423 ret = -EFAULT;
2424 break;
2425
2426 case TUNSETSNDBUF:
2427 if (copy_from_user(&sndbuf, argp, sizeof(sndbuf))) {
2428 ret = -EFAULT;
2429 break;
2430 }
2431
Jason Wangc8d68e62012-10-31 19:46:00 +00002432 tun->sndbuf = sndbuf;
2433 tun_set_sndbuf(tun);
Herbert Xu33dccbb2009-02-05 21:25:32 -08002434 break;
2435
Michael S. Tsirkind9d52b52010-03-17 17:45:01 +02002436 case TUNGETVNETHDRSZ:
2437 vnet_hdr_sz = tun->vnet_hdr_sz;
2438 if (copy_to_user(argp, &vnet_hdr_sz, sizeof(vnet_hdr_sz)))
2439 ret = -EFAULT;
2440 break;
2441
2442 case TUNSETVNETHDRSZ:
2443 if (copy_from_user(&vnet_hdr_sz, argp, sizeof(vnet_hdr_sz))) {
2444 ret = -EFAULT;
2445 break;
2446 }
2447 if (vnet_hdr_sz < (int)sizeof(struct virtio_net_hdr)) {
2448 ret = -EINVAL;
2449 break;
2450 }
2451
2452 tun->vnet_hdr_sz = vnet_hdr_sz;
2453 break;
2454
Michael S. Tsirkin1cf8e412014-12-16 15:05:06 +02002455 case TUNGETVNETLE:
2456 le = !!(tun->flags & TUN_VNET_LE);
2457 if (put_user(le, (int __user *)argp))
2458 ret = -EFAULT;
2459 break;
2460
2461 case TUNSETVNETLE:
2462 if (get_user(le, (int __user *)argp)) {
2463 ret = -EFAULT;
2464 break;
2465 }
2466 if (le)
2467 tun->flags |= TUN_VNET_LE;
2468 else
2469 tun->flags &= ~TUN_VNET_LE;
2470 break;
2471
Greg Kurz8b8e6582015-04-24 14:50:36 +02002472 case TUNGETVNETBE:
2473 ret = tun_get_vnet_be(tun, argp);
2474 break;
2475
2476 case TUNSETVNETBE:
2477 ret = tun_set_vnet_be(tun, argp);
2478 break;
2479
Michael S. Tsirkin99405162010-02-14 01:01:10 +00002480 case TUNATTACHFILTER:
2481 /* Can be set only for TAPs */
2482 ret = -EINVAL;
Michael S. Tsirkin40630b82014-11-19 15:17:31 +02002483 if ((tun->flags & TUN_TYPE_MASK) != IFF_TAP)
Michael S. Tsirkin99405162010-02-14 01:01:10 +00002484 break;
2485 ret = -EFAULT;
Jason Wang54f968d2012-10-31 19:45:57 +00002486 if (copy_from_user(&tun->fprog, argp, sizeof(tun->fprog)))
Michael S. Tsirkin99405162010-02-14 01:01:10 +00002487 break;
2488
Jason Wangc8d68e62012-10-31 19:46:00 +00002489 ret = tun_attach_filter(tun);
Michael S. Tsirkin99405162010-02-14 01:01:10 +00002490 break;
2491
2492 case TUNDETACHFILTER:
2493 /* Can be set only for TAPs */
2494 ret = -EINVAL;
Michael S. Tsirkin40630b82014-11-19 15:17:31 +02002495 if ((tun->flags & TUN_TYPE_MASK) != IFF_TAP)
Michael S. Tsirkin99405162010-02-14 01:01:10 +00002496 break;
Jason Wangc8d68e62012-10-31 19:46:00 +00002497 ret = 0;
2498 tun_detach_filter(tun, tun->numqueues);
Michael S. Tsirkin99405162010-02-14 01:01:10 +00002499 break;
2500
Pavel Emelyanov76975e92013-08-21 14:32:39 +04002501 case TUNGETFILTER:
2502 ret = -EINVAL;
Michael S. Tsirkin40630b82014-11-19 15:17:31 +02002503 if ((tun->flags & TUN_TYPE_MASK) != IFF_TAP)
Pavel Emelyanov76975e92013-08-21 14:32:39 +04002504 break;
2505 ret = -EFAULT;
2506 if (copy_to_user(argp, &tun->fprog, sizeof(tun->fprog)))
2507 break;
2508 ret = 0;
2509 break;
2510
Linus Torvalds1da177e2005-04-16 15:20:36 -07002511 default:
Eric W. Biederman631ab462009-01-20 11:00:40 +00002512 ret = -EINVAL;
2513 break;
Joe Perchesee289b62010-05-17 22:47:34 -07002514 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002515
Herbert Xu876bfd42009-08-06 14:22:44 +00002516unlock:
2517 rtnl_unlock();
2518 if (tun)
2519 tun_put(tun);
Eric W. Biederman631ab462009-01-20 11:00:40 +00002520 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002521}
2522
Arnd Bergmann50857e22009-11-06 22:52:32 -08002523static long tun_chr_ioctl(struct file *file,
2524 unsigned int cmd, unsigned long arg)
2525{
2526 return __tun_chr_ioctl(file, cmd, arg, sizeof (struct ifreq));
2527}
2528
2529#ifdef CONFIG_COMPAT
2530static long tun_chr_compat_ioctl(struct file *file,
2531 unsigned int cmd, unsigned long arg)
2532{
2533 switch (cmd) {
2534 case TUNSETIFF:
2535 case TUNGETIFF:
2536 case TUNSETTXFILTER:
2537 case TUNGETSNDBUF:
2538 case TUNSETSNDBUF:
2539 case SIOCGIFHWADDR:
2540 case SIOCSIFHWADDR:
2541 arg = (unsigned long)compat_ptr(arg);
2542 break;
2543 default:
2544 arg = (compat_ulong_t)arg;
2545 break;
2546 }
2547
2548 /*
2549 * compat_ifreq is shorter than ifreq, so we must not access beyond
2550 * the end of that structure. All fields that are used in this
2551 * driver are compatible though, we don't need to convert the
2552 * contents.
2553 */
2554 return __tun_chr_ioctl(file, cmd, arg, sizeof(struct compat_ifreq));
2555}
2556#endif /* CONFIG_COMPAT */
2557
Linus Torvalds1da177e2005-04-16 15:20:36 -07002558static int tun_chr_fasync(int fd, struct file *file, int on)
2559{
Jason Wang54f968d2012-10-31 19:45:57 +00002560 struct tun_file *tfile = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002561 int ret;
2562
Jason Wang54f968d2012-10-31 19:45:57 +00002563 if ((ret = fasync_helper(fd, file, on, &tfile->fasync)) < 0)
Jonathan Corbet9d319522008-06-19 15:50:37 -06002564 goto out;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002565
Linus Torvalds1da177e2005-04-16 15:20:36 -07002566 if (on) {
Jeff Laytone0b93ed2014-08-22 11:27:32 -04002567 __f_setown(file, task_pid(current), PIDTYPE_PID, 0);
Jason Wang54f968d2012-10-31 19:45:57 +00002568 tfile->flags |= TUN_FASYNC;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002569 } else
Jason Wang54f968d2012-10-31 19:45:57 +00002570 tfile->flags &= ~TUN_FASYNC;
Jonathan Corbet9d319522008-06-19 15:50:37 -06002571 ret = 0;
2572out:
Jonathan Corbet9d319522008-06-19 15:50:37 -06002573 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002574}
2575
2576static int tun_chr_open(struct inode *inode, struct file * file)
2577{
Eric W. Biederman140e807da2015-05-08 21:07:08 -05002578 struct net *net = current->nsproxy->net_ns;
Eric W. Biederman631ab462009-01-20 11:00:40 +00002579 struct tun_file *tfile;
Thomas Gleixnerdeed49f2009-10-14 01:19:46 -07002580
Joe Perches6b8a66e2011-03-02 07:18:10 +00002581 DBG1(KERN_INFO, "tunX: tun_chr_open\n");
Eric W. Biederman631ab462009-01-20 11:00:40 +00002582
Eric W. Biederman140e807da2015-05-08 21:07:08 -05002583 tfile = (struct tun_file *)sk_alloc(net, AF_UNSPEC, GFP_KERNEL,
Eric W. Biederman11aa9c22015-05-08 21:09:13 -05002584 &tun_proto, 0);
Eric W. Biederman631ab462009-01-20 11:00:40 +00002585 if (!tfile)
2586 return -ENOMEM;
Monam Agarwalc9566742014-03-24 00:02:32 +05302587 RCU_INIT_POINTER(tfile->tun, NULL);
Jason Wang54f968d2012-10-31 19:45:57 +00002588 tfile->flags = 0;
Pavel Emelyanovfb7589a2013-08-21 14:31:38 +04002589 tfile->ifindex = 0;
Jason Wang54f968d2012-10-31 19:45:57 +00002590
Jason Wang54f968d2012-10-31 19:45:57 +00002591 init_waitqueue_head(&tfile->wq.wait);
Xi Wang9e641bd2014-05-16 15:11:48 -07002592 RCU_INIT_POINTER(tfile->socket.wq, &tfile->wq);
Jason Wang54f968d2012-10-31 19:45:57 +00002593
2594 tfile->socket.file = file;
2595 tfile->socket.ops = &tun_socket_ops;
2596
2597 sock_init_data(&tfile->socket, &tfile->sk);
Jason Wang54f968d2012-10-31 19:45:57 +00002598
2599 tfile->sk.sk_write_space = tun_sock_write_space;
2600 tfile->sk.sk_sndbuf = INT_MAX;
2601
Eric W. Biederman631ab462009-01-20 11:00:40 +00002602 file->private_data = tfile;
Jason Wang4008e972012-12-13 23:53:30 +00002603 INIT_LIST_HEAD(&tfile->next);
Jason Wang54f968d2012-10-31 19:45:57 +00002604
Jason Wang19a6afb2013-06-08 14:17:41 +08002605 sock_set_flag(&tfile->sk, SOCK_ZEROCOPY);
2606
Linus Torvalds1da177e2005-04-16 15:20:36 -07002607 return 0;
2608}
2609
2610static int tun_chr_close(struct inode *inode, struct file *file)
2611{
Eric W. Biederman631ab462009-01-20 11:00:40 +00002612 struct tun_file *tfile = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002613
Jason Wangc8d68e62012-10-31 19:46:00 +00002614 tun_detach(tfile, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002615
2616 return 0;
2617}
2618
Masatake YAMATO93e14b62014-01-29 16:43:31 +09002619#ifdef CONFIG_PROC_FS
Joe Perchesa3816ab2014-09-29 16:08:25 -07002620static void tun_chr_show_fdinfo(struct seq_file *m, struct file *f)
Masatake YAMATO93e14b62014-01-29 16:43:31 +09002621{
2622 struct tun_struct *tun;
2623 struct ifreq ifr;
2624
2625 memset(&ifr, 0, sizeof(ifr));
2626
2627 rtnl_lock();
2628 tun = tun_get(f);
2629 if (tun)
2630 tun_get_iff(current->nsproxy->net_ns, tun, &ifr);
2631 rtnl_unlock();
2632
2633 if (tun)
2634 tun_put(tun);
2635
Joe Perchesa3816ab2014-09-29 16:08:25 -07002636 seq_printf(m, "iff:\t%s\n", ifr.ifr_name);
Masatake YAMATO93e14b62014-01-29 16:43:31 +09002637}
2638#endif
2639
Arjan van de Vend54b1fd2007-02-12 00:55:34 -08002640static const struct file_operations tun_fops = {
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002641 .owner = THIS_MODULE,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002642 .llseek = no_llseek,
Al Viro9b067032014-11-07 13:52:07 -05002643 .read_iter = tun_chr_read_iter,
Al Virof5ff53b2014-06-19 15:36:49 -04002644 .write_iter = tun_chr_write_iter,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002645 .poll = tun_chr_poll,
Arnd Bergmann50857e22009-11-06 22:52:32 -08002646 .unlocked_ioctl = tun_chr_ioctl,
2647#ifdef CONFIG_COMPAT
2648 .compat_ioctl = tun_chr_compat_ioctl,
2649#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002650 .open = tun_chr_open,
2651 .release = tun_chr_close,
Masatake YAMATO93e14b62014-01-29 16:43:31 +09002652 .fasync = tun_chr_fasync,
2653#ifdef CONFIG_PROC_FS
2654 .show_fdinfo = tun_chr_show_fdinfo,
2655#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002656};
2657
2658static struct miscdevice tun_miscdev = {
2659 .minor = TUN_MINOR,
2660 .name = "tun",
Kay Sieverse454cea2009-09-18 23:01:12 +02002661 .nodename = "net/tun",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002662 .fops = &tun_fops,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002663};
2664
2665/* ethtool interface */
2666
Philippe Reynes29ccc492017-03-11 22:03:50 +01002667static int tun_get_link_ksettings(struct net_device *dev,
2668 struct ethtool_link_ksettings *cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002669{
Philippe Reynes29ccc492017-03-11 22:03:50 +01002670 ethtool_link_ksettings_zero_link_mode(cmd, supported);
2671 ethtool_link_ksettings_zero_link_mode(cmd, advertising);
2672 cmd->base.speed = SPEED_10;
2673 cmd->base.duplex = DUPLEX_FULL;
2674 cmd->base.port = PORT_TP;
2675 cmd->base.phy_address = 0;
2676 cmd->base.autoneg = AUTONEG_DISABLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002677 return 0;
2678}
2679
2680static void tun_get_drvinfo(struct net_device *dev, struct ethtool_drvinfo *info)
2681{
2682 struct tun_struct *tun = netdev_priv(dev);
2683
Rick Jones33a5ba12011-11-15 14:59:53 +00002684 strlcpy(info->driver, DRV_NAME, sizeof(info->driver));
2685 strlcpy(info->version, DRV_VERSION, sizeof(info->version));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002686
2687 switch (tun->flags & TUN_TYPE_MASK) {
Michael S. Tsirkin40630b82014-11-19 15:17:31 +02002688 case IFF_TUN:
Rick Jones33a5ba12011-11-15 14:59:53 +00002689 strlcpy(info->bus_info, "tun", sizeof(info->bus_info));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002690 break;
Michael S. Tsirkin40630b82014-11-19 15:17:31 +02002691 case IFF_TAP:
Rick Jones33a5ba12011-11-15 14:59:53 +00002692 strlcpy(info->bus_info, "tap", sizeof(info->bus_info));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002693 break;
2694 }
2695}
2696
2697static u32 tun_get_msglevel(struct net_device *dev)
2698{
2699#ifdef TUN_DEBUG
2700 struct tun_struct *tun = netdev_priv(dev);
2701 return tun->debug;
2702#else
2703 return -EOPNOTSUPP;
2704#endif
2705}
2706
2707static void tun_set_msglevel(struct net_device *dev, u32 value)
2708{
2709#ifdef TUN_DEBUG
2710 struct tun_struct *tun = netdev_priv(dev);
2711 tun->debug = value;
2712#endif
2713}
2714
Jason Wang5503fce2017-01-18 15:02:03 +08002715static int tun_get_coalesce(struct net_device *dev,
2716 struct ethtool_coalesce *ec)
2717{
2718 struct tun_struct *tun = netdev_priv(dev);
2719
2720 ec->rx_max_coalesced_frames = tun->rx_batched;
2721
2722 return 0;
2723}
2724
2725static int tun_set_coalesce(struct net_device *dev,
2726 struct ethtool_coalesce *ec)
2727{
2728 struct tun_struct *tun = netdev_priv(dev);
2729
2730 if (ec->rx_max_coalesced_frames > NAPI_POLL_WEIGHT)
2731 tun->rx_batched = NAPI_POLL_WEIGHT;
2732 else
2733 tun->rx_batched = ec->rx_max_coalesced_frames;
2734
2735 return 0;
2736}
2737
Jeff Garzik7282d492006-09-13 14:30:00 -04002738static const struct ethtool_ops tun_ethtool_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002739 .get_drvinfo = tun_get_drvinfo,
2740 .get_msglevel = tun_get_msglevel,
2741 .set_msglevel = tun_set_msglevel,
Nolan Leakebee31362010-07-27 13:53:43 +00002742 .get_link = ethtool_op_get_link,
Richard Cochraneda29772013-07-19 19:40:10 +02002743 .get_ts_info = ethtool_op_get_ts_info,
Jason Wang5503fce2017-01-18 15:02:03 +08002744 .get_coalesce = tun_get_coalesce,
2745 .set_coalesce = tun_set_coalesce,
Philippe Reynes29ccc492017-03-11 22:03:50 +01002746 .get_link_ksettings = tun_get_link_ksettings,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002747};
2748
Jason Wang1576d982016-06-30 14:45:36 +08002749static int tun_queue_resize(struct tun_struct *tun)
2750{
2751 struct net_device *dev = tun->dev;
2752 struct tun_file *tfile;
2753 struct skb_array **arrays;
2754 int n = tun->numqueues + tun->numdisabled;
2755 int ret, i;
2756
stephen hemminger12039042017-08-15 10:29:16 -07002757 arrays = kmalloc_array(n, sizeof(*arrays), GFP_KERNEL);
Jason Wang1576d982016-06-30 14:45:36 +08002758 if (!arrays)
2759 return -ENOMEM;
2760
2761 for (i = 0; i < tun->numqueues; i++) {
2762 tfile = rtnl_dereference(tun->tfiles[i]);
2763 arrays[i] = &tfile->tx_array;
2764 }
2765 list_for_each_entry(tfile, &tun->disabled, next)
2766 arrays[i++] = &tfile->tx_array;
2767
2768 ret = skb_array_resize_multiple(arrays, n,
2769 dev->tx_queue_len, GFP_KERNEL);
2770
2771 kfree(arrays);
2772 return ret;
2773}
2774
2775static int tun_device_event(struct notifier_block *unused,
2776 unsigned long event, void *ptr)
2777{
2778 struct net_device *dev = netdev_notifier_info_to_dev(ptr);
2779 struct tun_struct *tun = netdev_priv(dev);
2780
Craig Gallek86dfb4ac2016-07-06 18:44:20 -04002781 if (dev->rtnl_link_ops != &tun_link_ops)
2782 return NOTIFY_DONE;
2783
Jason Wang1576d982016-06-30 14:45:36 +08002784 switch (event) {
2785 case NETDEV_CHANGE_TX_QUEUE_LEN:
2786 if (tun_queue_resize(tun))
2787 return NOTIFY_BAD;
2788 break;
2789 default:
2790 break;
2791 }
2792
2793 return NOTIFY_DONE;
2794}
2795
2796static struct notifier_block tun_notifier_block __read_mostly = {
2797 .notifier_call = tun_device_event,
2798};
Pavel Emelyanov79d17602008-04-16 00:40:46 -07002799
Linus Torvalds1da177e2005-04-16 15:20:36 -07002800static int __init tun_init(void)
2801{
2802 int ret = 0;
2803
Joe Perches6b8a66e2011-03-02 07:18:10 +00002804 pr_info("%s, %s\n", DRV_DESCRIPTION, DRV_VERSION);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002805
Eric W. Biedermanf019a7a2009-01-21 16:02:16 -08002806 ret = rtnl_link_register(&tun_link_ops);
Pavel Emelyanov79d17602008-04-16 00:40:46 -07002807 if (ret) {
Joe Perches6b8a66e2011-03-02 07:18:10 +00002808 pr_err("Can't register link_ops\n");
Eric W. Biedermanf019a7a2009-01-21 16:02:16 -08002809 goto err_linkops;
Pavel Emelyanov79d17602008-04-16 00:40:46 -07002810 }
2811
Linus Torvalds1da177e2005-04-16 15:20:36 -07002812 ret = misc_register(&tun_miscdev);
Pavel Emelyanov79d17602008-04-16 00:40:46 -07002813 if (ret) {
Joe Perches6b8a66e2011-03-02 07:18:10 +00002814 pr_err("Can't register misc device %d\n", TUN_MINOR);
Pavel Emelyanov79d17602008-04-16 00:40:46 -07002815 goto err_misc;
2816 }
Jason Wang1576d982016-06-30 14:45:36 +08002817
Tonghao Zhang5edfbd32017-07-20 02:41:34 -07002818 ret = register_netdevice_notifier(&tun_notifier_block);
2819 if (ret) {
2820 pr_err("Can't register netdevice notifier\n");
2821 goto err_notifier;
2822 }
2823
Eric W. Biedermanf019a7a2009-01-21 16:02:16 -08002824 return 0;
Tonghao Zhang5edfbd32017-07-20 02:41:34 -07002825
2826err_notifier:
2827 misc_deregister(&tun_miscdev);
Pavel Emelyanov79d17602008-04-16 00:40:46 -07002828err_misc:
Eric W. Biedermanf019a7a2009-01-21 16:02:16 -08002829 rtnl_link_unregister(&tun_link_ops);
2830err_linkops:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002831 return ret;
2832}
2833
2834static void tun_cleanup(void)
2835{
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002836 misc_deregister(&tun_miscdev);
Eric W. Biedermanf019a7a2009-01-21 16:02:16 -08002837 rtnl_link_unregister(&tun_link_ops);
Jason Wang1576d982016-06-30 14:45:36 +08002838 unregister_netdevice_notifier(&tun_notifier_block);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002839}
2840
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00002841/* Get an underlying socket object from tun file. Returns error unless file is
2842 * attached to a device. The returned object works like a packet socket, it
2843 * can be used for sock_sendmsg/sock_recvmsg. The caller is responsible for
2844 * holding a reference to the file for as long as the socket is in use. */
2845struct socket *tun_get_socket(struct file *file)
2846{
Jason Wang6e914fc2012-10-31 19:45:58 +00002847 struct tun_file *tfile;
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00002848 if (file->f_op != &tun_fops)
2849 return ERR_PTR(-EINVAL);
Jason Wang6e914fc2012-10-31 19:45:58 +00002850 tfile = file->private_data;
2851 if (!tfile)
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00002852 return ERR_PTR(-EBADFD);
Jason Wang54f968d2012-10-31 19:45:57 +00002853 return &tfile->socket;
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00002854}
2855EXPORT_SYMBOL_GPL(tun_get_socket);
2856
Jason Wang83339c62017-05-17 12:14:41 +08002857struct skb_array *tun_get_skb_array(struct file *file)
2858{
2859 struct tun_file *tfile;
2860
2861 if (file->f_op != &tun_fops)
2862 return ERR_PTR(-EINVAL);
2863 tfile = file->private_data;
2864 if (!tfile)
2865 return ERR_PTR(-EBADFD);
2866 return &tfile->tx_array;
2867}
2868EXPORT_SYMBOL_GPL(tun_get_skb_array);
2869
Linus Torvalds1da177e2005-04-16 15:20:36 -07002870module_init(tun_init);
2871module_exit(tun_cleanup);
2872MODULE_DESCRIPTION(DRV_DESCRIPTION);
2873MODULE_AUTHOR(DRV_COPYRIGHT);
2874MODULE_LICENSE("GPL");
2875MODULE_ALIAS_MISCDEV(TUN_MINOR);
Kay Sievers578454f2010-05-20 18:07:20 +02002876MODULE_ALIAS("devname:net/tun");