blob: e7c5f4b2a9a69d58a66b7b64e6c11bebbb3f1c37 [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>
Petar Penkov90e33d42017-09-22 13:49:15 -070078#include <linux/mutex.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070079
Linus Torvalds7c0f6ba2016-12-24 11:46:01 -080080#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070081
Rusty Russell14daa022008-04-12 18:48:58 -070082/* Uncomment to enable debugging */
83/* #define TUN_DEBUG 1 */
84
Linus Torvalds1da177e2005-04-16 15:20:36 -070085#ifdef TUN_DEBUG
86static int debug;
Rusty Russell14daa022008-04-12 18:48:58 -070087
Joe Perches6b8a66e2011-03-02 07:18:10 +000088#define tun_debug(level, tun, fmt, args...) \
89do { \
90 if (tun->debug) \
91 netdev_printk(level, tun->dev, fmt, ##args); \
92} while (0)
93#define DBG1(level, fmt, args...) \
94do { \
95 if (debug == 2) \
96 printk(level fmt, ##args); \
97} while (0)
Rusty Russell14daa022008-04-12 18:48:58 -070098#else
Joe Perches6b8a66e2011-03-02 07:18:10 +000099#define tun_debug(level, tun, fmt, args...) \
100do { \
101 if (0) \
102 netdev_printk(level, tun->dev, fmt, ##args); \
103} while (0)
104#define DBG1(level, fmt, args...) \
105do { \
106 if (0) \
107 printk(level fmt, ##args); \
108} while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109#endif
110
Jason Wang761876c2017-08-11 19:41:18 +0800111#define TUN_HEADROOM 256
Jason Wang7df13212017-09-04 11:36:08 +0800112#define TUN_RX_PAD (NET_IP_ALIGN + NET_SKB_PAD)
Jason Wang66ccbc92017-08-11 19:41:16 +0800113
Michael S. Tsirkin031f5e032014-11-19 14:44:40 +0200114/* TUN device flags */
115
116/* IFF_ATTACH_QUEUE is never stored in device flags,
117 * overload it to mean fasync when stored there.
118 */
119#define TUN_FASYNC IFF_ATTACH_QUEUE
Michael S. Tsirkin1cf8e412014-12-16 15:05:06 +0200120/* High bits in flags field are unused. */
121#define TUN_VNET_LE 0x80000000
Greg Kurz8b8e6582015-04-24 14:50:36 +0200122#define TUN_VNET_BE 0x40000000
Michael S. Tsirkin031f5e032014-11-19 14:44:40 +0200123
124#define TUN_FEATURES (IFF_NO_PI | IFF_ONE_QUEUE | IFF_VNET_HDR | \
Petar Penkov90e33d42017-09-22 13:49:15 -0700125 IFF_MULTI_QUEUE | IFF_NAPI | IFF_NAPI_FRAGS)
126
Michael S. Tsirkin06908992012-07-20 09:23:23 +0000127#define GOODCOPY_LEN 128
128
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -0700129#define FLT_EXACT_COUNT 8
130struct tap_filter {
131 unsigned int count; /* Number of addrs. Zero means disabled */
132 u32 mask[2]; /* Mask of the hashed addrs */
133 unsigned char addr[FLT_EXACT_COUNT][ETH_ALEN];
134};
135
Pankaj Guptabaf71c52015-01-12 11:41:29 +0530136/* MAX_TAP_QUEUES 256 is chosen to allow rx/tx queues to be equal
137 * to max number of VCPUs in guest. */
138#define MAX_TAP_QUEUES 256
Jason Wangb8732fb2013-01-23 03:59:13 +0000139#define MAX_TAP_FLOWS 4096
Jason Wangc8d68e62012-10-31 19:46:00 +0000140
Jason Wang96442e422012-10-31 19:46:02 +0000141#define TUN_FLOW_EXPIRE (3 * HZ)
142
Paolo Abeni608b9972016-04-13 10:52:20 +0200143struct tun_pcpu_stats {
144 u64 rx_packets;
145 u64 rx_bytes;
146 u64 tx_packets;
147 u64 tx_bytes;
148 struct u64_stats_sync syncp;
149 u32 rx_dropped;
150 u32 tx_dropped;
151 u32 rx_frame_errors;
152};
153
Jason Wang54f968d2012-10-31 19:45:57 +0000154/* A tun_file connects an open character device to a tuntap netdevice. It
stephen hemminger92d4ea62013-12-05 20:42:58 -0800155 * also contains all socket related structures (except sock_fprog and tap_filter)
Jason Wang54f968d2012-10-31 19:45:57 +0000156 * to serve as one transmit queue for tuntap device. The sock_fprog and
157 * tap_filter were kept in tun_struct since they were used for filtering for the
Rami Rosen36fe8c092012-11-25 22:07:40 +0000158 * netdevice not for a specific queue (at least I didn't see the requirement for
Jason Wang54f968d2012-10-31 19:45:57 +0000159 * this).
Jason Wang6e914fc2012-10-31 19:45:58 +0000160 *
161 * RCU usage:
Rami Rosen36fe8c092012-11-25 22:07:40 +0000162 * The tun_file and tun_struct are loosely coupled, the pointer from one to the
Jason Wang6e914fc2012-10-31 19:45:58 +0000163 * other can only be read while rcu_read_lock or rtnl_lock is held.
Jason Wang54f968d2012-10-31 19:45:57 +0000164 */
Eric W. Biederman631ab462009-01-20 11:00:40 +0000165struct tun_file {
Jason Wang54f968d2012-10-31 19:45:57 +0000166 struct sock sk;
167 struct socket socket;
168 struct socket_wq wq;
Jason Wang6e914fc2012-10-31 19:45:58 +0000169 struct tun_struct __rcu *tun;
Jason Wang54f968d2012-10-31 19:45:57 +0000170 struct fasync_struct *fasync;
171 /* only used for fasnyc */
172 unsigned int flags;
Pavel Emelyanovfb7589a2013-08-21 14:31:38 +0400173 union {
174 u16 queue_index;
175 unsigned int ifindex;
176 };
Petar Penkov94317092017-09-22 13:49:14 -0700177 struct napi_struct napi;
Eric Dumazetaec72f32017-10-18 12:12:09 -0700178 bool napi_enabled;
Petar Penkov90e33d42017-09-22 13:49:15 -0700179 struct mutex napi_mutex; /* Protects access to the above napi */
Jason Wang4008e972012-12-13 23:53:30 +0000180 struct list_head next;
181 struct tun_struct *detached;
Jason Wang1576d982016-06-30 14:45:36 +0800182 struct skb_array tx_array;
Jesper Dangaard Brouer8bf5c4e2018-01-03 11:25:59 +0100183 struct xdp_rxq_info xdp_rxq;
Eric W. Biederman631ab462009-01-20 11:00:40 +0000184};
185
Jason Wang96442e422012-10-31 19:46:02 +0000186struct tun_flow_entry {
187 struct hlist_node hash_link;
188 struct rcu_head rcu;
189 struct tun_struct *tun;
190
191 u32 rxhash;
Tom Herbert9bc88932013-12-22 18:54:32 +0800192 u32 rps_rxhash;
Jason Wang96442e422012-10-31 19:46:02 +0000193 int queue_index;
194 unsigned long updated;
195};
196
197#define TUN_NUM_FLOW_ENTRIES 1024
198
Jason Wang96f84062017-12-04 17:31:23 +0800199struct tun_steering_prog {
200 struct rcu_head rcu;
201 struct bpf_prog *prog;
202};
203
Jason Wang54f968d2012-10-31 19:45:57 +0000204/* Since the socket were moved to tun_file, to preserve the behavior of persist
Rami Rosen36fe8c092012-11-25 22:07:40 +0000205 * device, socket filter, sndbuf and vnet header size were restore when the
Jason Wang54f968d2012-10-31 19:45:57 +0000206 * file were attached to a persist device.
207 */
Rusty Russell14daa022008-04-12 18:48:58 -0700208struct tun_struct {
Jason Wangc8d68e62012-10-31 19:46:00 +0000209 struct tun_file __rcu *tfiles[MAX_TAP_QUEUES];
210 unsigned int numqueues;
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -0700211 unsigned int flags;
Eric W. Biederman0625c882012-02-07 16:48:55 -0800212 kuid_t owner;
213 kgid_t group;
Rusty Russell14daa022008-04-12 18:48:58 -0700214
Rusty Russell14daa022008-04-12 18:48:58 -0700215 struct net_device *dev;
Michał Mirosławc8f44af2011-11-15 15:29:55 +0000216 netdev_features_t set_features;
Michał Mirosław88255372011-04-19 06:13:10 +0000217#define TUN_USER_FEATURES (NETIF_F_HW_CSUM|NETIF_F_TSO_ECN|NETIF_F_TSO| \
David S. Millerd591a1f2017-07-03 06:35:32 -0700218 NETIF_F_TSO6)
Michael S. Tsirkind9d52b52010-03-17 17:45:01 +0200219
Paolo Abenieaea34b2016-02-26 10:45:40 +0100220 int align;
Michael S. Tsirkind9d52b52010-03-17 17:45:01 +0200221 int vnet_hdr_sz;
Jason Wang54f968d2012-10-31 19:45:57 +0000222 int sndbuf;
223 struct tap_filter txflt;
224 struct sock_fprog fprog;
225 /* protected by rtnl lock */
226 bool filter_attached;
Rusty Russell14daa022008-04-12 18:48:58 -0700227#ifdef TUN_DEBUG
228 int debug;
229#endif
Jason Wang96442e422012-10-31 19:46:02 +0000230 spinlock_t lock;
Jason Wang96442e422012-10-31 19:46:02 +0000231 struct hlist_head flows[TUN_NUM_FLOW_ENTRIES];
232 struct timer_list flow_gc_timer;
233 unsigned long ageing_time;
Jason Wang4008e972012-12-13 23:53:30 +0000234 unsigned int numdisabled;
235 struct list_head disabled;
Paul Moore5dbbaf22013-01-14 07:12:19 +0000236 void *security;
Jason Wangb8732fb2013-01-23 03:59:13 +0000237 u32 flow_count;
Jason Wang5503fce2017-01-18 15:02:03 +0800238 u32 rx_batched;
Paolo Abeni608b9972016-04-13 10:52:20 +0200239 struct tun_pcpu_stats __percpu *pcpu_stats;
Jason Wang761876c2017-08-11 19:41:18 +0800240 struct bpf_prog __rcu *xdp_prog;
Jason Wang96f84062017-12-04 17:31:23 +0800241 struct tun_steering_prog __rcu *steering_prog;
Rusty Russell14daa022008-04-12 18:48:58 -0700242};
243
Petar Penkov94317092017-09-22 13:49:14 -0700244static int tun_napi_receive(struct napi_struct *napi, int budget)
245{
246 struct tun_file *tfile = container_of(napi, struct tun_file, napi);
247 struct sk_buff_head *queue = &tfile->sk.sk_write_queue;
248 struct sk_buff_head process_queue;
249 struct sk_buff *skb;
250 int received = 0;
251
252 __skb_queue_head_init(&process_queue);
253
254 spin_lock(&queue->lock);
255 skb_queue_splice_tail_init(queue, &process_queue);
256 spin_unlock(&queue->lock);
257
258 while (received < budget && (skb = __skb_dequeue(&process_queue))) {
259 napi_gro_receive(napi, skb);
260 ++received;
261 }
262
263 if (!skb_queue_empty(&process_queue)) {
264 spin_lock(&queue->lock);
265 skb_queue_splice(&process_queue, queue);
266 spin_unlock(&queue->lock);
267 }
268
269 return received;
270}
271
272static int tun_napi_poll(struct napi_struct *napi, int budget)
273{
274 unsigned int received;
275
276 received = tun_napi_receive(napi, budget);
277
278 if (received < budget)
279 napi_complete_done(napi, received);
280
281 return received;
282}
283
284static void tun_napi_init(struct tun_struct *tun, struct tun_file *tfile,
285 bool napi_en)
286{
Eric Dumazetaec72f32017-10-18 12:12:09 -0700287 tfile->napi_enabled = napi_en;
Petar Penkov94317092017-09-22 13:49:14 -0700288 if (napi_en) {
289 netif_napi_add(tun->dev, &tfile->napi, tun_napi_poll,
290 NAPI_POLL_WEIGHT);
291 napi_enable(&tfile->napi);
Petar Penkov90e33d42017-09-22 13:49:15 -0700292 mutex_init(&tfile->napi_mutex);
Petar Penkov94317092017-09-22 13:49:14 -0700293 }
294}
295
296static void tun_napi_disable(struct tun_struct *tun, struct tun_file *tfile)
297{
Eric Dumazetaec72f32017-10-18 12:12:09 -0700298 if (tfile->napi_enabled)
Petar Penkov94317092017-09-22 13:49:14 -0700299 napi_disable(&tfile->napi);
300}
301
302static void tun_napi_del(struct tun_struct *tun, struct tun_file *tfile)
303{
Eric Dumazetaec72f32017-10-18 12:12:09 -0700304 if (tfile->napi_enabled)
Petar Penkov94317092017-09-22 13:49:14 -0700305 netif_napi_del(&tfile->napi);
306}
307
Petar Penkov90e33d42017-09-22 13:49:15 -0700308static bool tun_napi_frags_enabled(const struct tun_struct *tun)
309{
310 return READ_ONCE(tun->flags) & IFF_NAPI_FRAGS;
311}
312
Greg Kurz8b8e6582015-04-24 14:50:36 +0200313#ifdef CONFIG_TUN_VNET_CROSS_LE
314static inline bool tun_legacy_is_little_endian(struct tun_struct *tun)
315{
316 return tun->flags & TUN_VNET_BE ? false :
317 virtio_legacy_is_little_endian();
318}
319
320static long tun_get_vnet_be(struct tun_struct *tun, int __user *argp)
321{
322 int be = !!(tun->flags & TUN_VNET_BE);
323
324 if (put_user(be, argp))
325 return -EFAULT;
326
327 return 0;
328}
329
330static long tun_set_vnet_be(struct tun_struct *tun, int __user *argp)
331{
332 int be;
333
334 if (get_user(be, argp))
335 return -EFAULT;
336
337 if (be)
338 tun->flags |= TUN_VNET_BE;
339 else
340 tun->flags &= ~TUN_VNET_BE;
341
342 return 0;
343}
344#else
345static inline bool tun_legacy_is_little_endian(struct tun_struct *tun)
346{
347 return virtio_legacy_is_little_endian();
348}
349
350static long tun_get_vnet_be(struct tun_struct *tun, int __user *argp)
351{
352 return -EINVAL;
353}
354
355static long tun_set_vnet_be(struct tun_struct *tun, int __user *argp)
356{
357 return -EINVAL;
358}
359#endif /* CONFIG_TUN_VNET_CROSS_LE */
360
Greg Kurz25bd55bb2015-04-24 14:24:38 +0200361static inline bool tun_is_little_endian(struct tun_struct *tun)
362{
Greg Kurz7d824102015-04-24 14:26:24 +0200363 return tun->flags & TUN_VNET_LE ||
Greg Kurz8b8e6582015-04-24 14:50:36 +0200364 tun_legacy_is_little_endian(tun);
Greg Kurz25bd55bb2015-04-24 14:24:38 +0200365}
366
Michael S. Tsirkin56f0dcc2014-10-23 22:59:31 +0300367static inline u16 tun16_to_cpu(struct tun_struct *tun, __virtio16 val)
368{
Greg Kurz25bd55bb2015-04-24 14:24:38 +0200369 return __virtio16_to_cpu(tun_is_little_endian(tun), val);
Michael S. Tsirkin56f0dcc2014-10-23 22:59:31 +0300370}
371
372static inline __virtio16 cpu_to_tun16(struct tun_struct *tun, u16 val)
373{
Greg Kurz25bd55bb2015-04-24 14:24:38 +0200374 return __cpu_to_virtio16(tun_is_little_endian(tun), val);
Michael S. Tsirkin56f0dcc2014-10-23 22:59:31 +0300375}
376
Jason Wang96442e422012-10-31 19:46:02 +0000377static inline u32 tun_hashfn(u32 rxhash)
378{
379 return rxhash & 0x3ff;
380}
381
382static struct tun_flow_entry *tun_flow_find(struct hlist_head *head, u32 rxhash)
383{
384 struct tun_flow_entry *e;
Jason Wang96442e422012-10-31 19:46:02 +0000385
Sasha Levinb67bfe02013-02-27 17:06:00 -0800386 hlist_for_each_entry_rcu(e, head, hash_link) {
Jason Wang96442e422012-10-31 19:46:02 +0000387 if (e->rxhash == rxhash)
388 return e;
389 }
390 return NULL;
391}
392
393static struct tun_flow_entry *tun_flow_create(struct tun_struct *tun,
394 struct hlist_head *head,
395 u32 rxhash, u16 queue_index)
396{
Eric Dumazet9fdc6be2012-12-21 07:17:21 +0000397 struct tun_flow_entry *e = kmalloc(sizeof(*e), GFP_ATOMIC);
398
Jason Wang96442e422012-10-31 19:46:02 +0000399 if (e) {
400 tun_debug(KERN_INFO, tun, "create flow: hash %u index %u\n",
401 rxhash, queue_index);
402 e->updated = jiffies;
403 e->rxhash = rxhash;
Tom Herbert9bc88932013-12-22 18:54:32 +0800404 e->rps_rxhash = 0;
Jason Wang96442e422012-10-31 19:46:02 +0000405 e->queue_index = queue_index;
406 e->tun = tun;
407 hlist_add_head_rcu(&e->hash_link, head);
Jason Wangb8732fb2013-01-23 03:59:13 +0000408 ++tun->flow_count;
Jason Wang96442e422012-10-31 19:46:02 +0000409 }
410 return e;
411}
412
Jason Wang96442e422012-10-31 19:46:02 +0000413static void tun_flow_delete(struct tun_struct *tun, struct tun_flow_entry *e)
414{
415 tun_debug(KERN_INFO, tun, "delete flow: hash %u index %u\n",
416 e->rxhash, e->queue_index);
417 hlist_del_rcu(&e->hash_link);
Eric Dumazet9fdc6be2012-12-21 07:17:21 +0000418 kfree_rcu(e, rcu);
Jason Wangb8732fb2013-01-23 03:59:13 +0000419 --tun->flow_count;
Jason Wang96442e422012-10-31 19:46:02 +0000420}
421
422static void tun_flow_flush(struct tun_struct *tun)
423{
424 int i;
425
426 spin_lock_bh(&tun->lock);
427 for (i = 0; i < TUN_NUM_FLOW_ENTRIES; i++) {
428 struct tun_flow_entry *e;
Sasha Levinb67bfe02013-02-27 17:06:00 -0800429 struct hlist_node *n;
Jason Wang96442e422012-10-31 19:46:02 +0000430
Sasha Levinb67bfe02013-02-27 17:06:00 -0800431 hlist_for_each_entry_safe(e, n, &tun->flows[i], hash_link)
Jason Wang96442e422012-10-31 19:46:02 +0000432 tun_flow_delete(tun, e);
433 }
434 spin_unlock_bh(&tun->lock);
435}
436
437static void tun_flow_delete_by_queue(struct tun_struct *tun, u16 queue_index)
438{
439 int i;
440
441 spin_lock_bh(&tun->lock);
442 for (i = 0; i < TUN_NUM_FLOW_ENTRIES; i++) {
443 struct tun_flow_entry *e;
Sasha Levinb67bfe02013-02-27 17:06:00 -0800444 struct hlist_node *n;
Jason Wang96442e422012-10-31 19:46:02 +0000445
Sasha Levinb67bfe02013-02-27 17:06:00 -0800446 hlist_for_each_entry_safe(e, n, &tun->flows[i], hash_link) {
Jason Wang96442e422012-10-31 19:46:02 +0000447 if (e->queue_index == queue_index)
448 tun_flow_delete(tun, e);
449 }
450 }
451 spin_unlock_bh(&tun->lock);
452}
453
Kees Cooke99e88a2017-10-16 14:43:17 -0700454static void tun_flow_cleanup(struct timer_list *t)
Jason Wang96442e422012-10-31 19:46:02 +0000455{
Kees Cooke99e88a2017-10-16 14:43:17 -0700456 struct tun_struct *tun = from_timer(tun, t, flow_gc_timer);
Jason Wang96442e422012-10-31 19:46:02 +0000457 unsigned long delay = tun->ageing_time;
458 unsigned long next_timer = jiffies + delay;
459 unsigned long count = 0;
460 int i;
461
462 tun_debug(KERN_INFO, tun, "tun_flow_cleanup\n");
463
Eric Dumazet7dbfb4e2017-10-20 11:29:55 -0700464 spin_lock(&tun->lock);
Jason Wang96442e422012-10-31 19:46:02 +0000465 for (i = 0; i < TUN_NUM_FLOW_ENTRIES; i++) {
466 struct tun_flow_entry *e;
Sasha Levinb67bfe02013-02-27 17:06:00 -0800467 struct hlist_node *n;
Jason Wang96442e422012-10-31 19:46:02 +0000468
Sasha Levinb67bfe02013-02-27 17:06:00 -0800469 hlist_for_each_entry_safe(e, n, &tun->flows[i], hash_link) {
Jason Wang96442e422012-10-31 19:46:02 +0000470 unsigned long this_timer;
Eric Dumazet81d98fa2017-10-20 11:29:56 -0700471
Jason Wang96442e422012-10-31 19:46:02 +0000472 this_timer = e->updated + delay;
Eric Dumazet81d98fa2017-10-20 11:29:56 -0700473 if (time_before_eq(this_timer, jiffies)) {
Jason Wang96442e422012-10-31 19:46:02 +0000474 tun_flow_delete(tun, e);
Eric Dumazet81d98fa2017-10-20 11:29:56 -0700475 continue;
476 }
477 count++;
478 if (time_before(this_timer, next_timer))
Jason Wang96442e422012-10-31 19:46:02 +0000479 next_timer = this_timer;
480 }
481 }
482
483 if (count)
484 mod_timer(&tun->flow_gc_timer, round_jiffies_up(next_timer));
Eric Dumazet7dbfb4e2017-10-20 11:29:55 -0700485 spin_unlock(&tun->lock);
Jason Wang96442e422012-10-31 19:46:02 +0000486}
487
Eric Dumazet49974422012-12-12 19:22:57 +0000488static void tun_flow_update(struct tun_struct *tun, u32 rxhash,
Jason Wang9e857222013-01-28 01:05:19 +0000489 struct tun_file *tfile)
Jason Wang96442e422012-10-31 19:46:02 +0000490{
491 struct hlist_head *head;
492 struct tun_flow_entry *e;
493 unsigned long delay = tun->ageing_time;
Jason Wang9e857222013-01-28 01:05:19 +0000494 u16 queue_index = tfile->queue_index;
Jason Wang96442e422012-10-31 19:46:02 +0000495
496 if (!rxhash)
497 return;
498 else
499 head = &tun->flows[tun_hashfn(rxhash)];
500
501 rcu_read_lock();
502
Jason Wang9e857222013-01-28 01:05:19 +0000503 /* We may get a very small possibility of OOO during switching, not
504 * worth to optimize.*/
505 if (tun->numqueues == 1 || tfile->detached)
Jason Wang96442e422012-10-31 19:46:02 +0000506 goto unlock;
507
508 e = tun_flow_find(head, rxhash);
509 if (likely(e)) {
510 /* TODO: keep queueing to old queue until it's empty? */
511 e->queue_index = queue_index;
512 e->updated = jiffies;
Tom Herbert9bc88932013-12-22 18:54:32 +0800513 sock_rps_record_flow_hash(e->rps_rxhash);
Jason Wang96442e422012-10-31 19:46:02 +0000514 } else {
515 spin_lock_bh(&tun->lock);
Jason Wangb8732fb2013-01-23 03:59:13 +0000516 if (!tun_flow_find(head, rxhash) &&
517 tun->flow_count < MAX_TAP_FLOWS)
Jason Wang96442e422012-10-31 19:46:02 +0000518 tun_flow_create(tun, head, rxhash, queue_index);
519
520 if (!timer_pending(&tun->flow_gc_timer))
521 mod_timer(&tun->flow_gc_timer,
522 round_jiffies_up(jiffies + delay));
523 spin_unlock_bh(&tun->lock);
524 }
525
526unlock:
527 rcu_read_unlock();
528}
529
Tom Herbert9bc88932013-12-22 18:54:32 +0800530/**
531 * Save the hash received in the stack receive path and update the
532 * flow_hash table accordingly.
533 */
534static inline void tun_flow_save_rps_rxhash(struct tun_flow_entry *e, u32 hash)
535{
Eric Dumazet567e4b72015-02-06 12:59:01 -0800536 if (unlikely(e->rps_rxhash != hash))
Tom Herbert9bc88932013-12-22 18:54:32 +0800537 e->rps_rxhash = hash;
Tom Herbert9bc88932013-12-22 18:54:32 +0800538}
539
Jason Wangc8d68e62012-10-31 19:46:00 +0000540/* We try to identify a flow through its rxhash first. The reason that
stephen hemminger92d4ea62013-12-05 20:42:58 -0800541 * we do not check rxq no. is because some cards(e.g 82599), chooses
Jason Wangc8d68e62012-10-31 19:46:00 +0000542 * the rxq based on the txq where the last packet of the flow comes. As
543 * the userspace application move between processors, we may get a
544 * different rxq no. here. If we could not get rxhash, then we would
545 * hope the rxq no. may help here.
546 */
Jason Wang96f84062017-12-04 17:31:23 +0800547static u16 tun_automq_select_queue(struct tun_struct *tun, struct sk_buff *skb)
Jason Wangc8d68e62012-10-31 19:46:00 +0000548{
Jason Wang96442e422012-10-31 19:46:02 +0000549 struct tun_flow_entry *e;
Jason Wangc8d68e62012-10-31 19:46:00 +0000550 u32 txq = 0;
551 u32 numqueues = 0;
552
Mark Rutland6aa7de02017-10-23 14:07:29 -0700553 numqueues = READ_ONCE(tun->numqueues);
Jason Wangc8d68e62012-10-31 19:46:00 +0000554
Jason Wangfeec0842017-06-06 14:09:49 +0800555 txq = __skb_get_hash_symmetric(skb);
Jason Wangc8d68e62012-10-31 19:46:00 +0000556 if (txq) {
Jason Wang96442e422012-10-31 19:46:02 +0000557 e = tun_flow_find(&tun->flows[tun_hashfn(txq)], txq);
Tom Herbert9bc88932013-12-22 18:54:32 +0800558 if (e) {
Tom Herbert9bc88932013-12-22 18:54:32 +0800559 tun_flow_save_rps_rxhash(e, txq);
Zhi Yong Wufbe4d452014-01-02 13:24:28 +0800560 txq = e->queue_index;
Tom Herbert9bc88932013-12-22 18:54:32 +0800561 } else
Jason Wang96442e422012-10-31 19:46:02 +0000562 /* use multiply and shift instead of expensive divide */
563 txq = ((u64)txq * numqueues) >> 32;
Jason Wangc8d68e62012-10-31 19:46:00 +0000564 } else if (likely(skb_rx_queue_recorded(skb))) {
565 txq = skb_get_rx_queue(skb);
566 while (unlikely(txq >= numqueues))
567 txq -= numqueues;
568 }
569
Jason Wangc8d68e62012-10-31 19:46:00 +0000570 return txq;
571}
572
Jason Wang96f84062017-12-04 17:31:23 +0800573static u16 tun_ebpf_select_queue(struct tun_struct *tun, struct sk_buff *skb)
574{
575 struct tun_steering_prog *prog;
576 u16 ret = 0;
577
578 prog = rcu_dereference(tun->steering_prog);
579 if (prog)
580 ret = bpf_prog_run_clear_cb(prog->prog, skb);
581
582 return ret % tun->numqueues;
583}
584
585static u16 tun_select_queue(struct net_device *dev, struct sk_buff *skb,
586 void *accel_priv, select_queue_fallback_t fallback)
587{
588 struct tun_struct *tun = netdev_priv(dev);
589 u16 ret;
590
591 rcu_read_lock();
592 if (rcu_dereference(tun->steering_prog))
593 ret = tun_ebpf_select_queue(tun, skb);
594 else
595 ret = tun_automq_select_queue(tun, skb);
596 rcu_read_unlock();
597
598 return ret;
599}
600
Jason Wangcde8b152012-10-31 19:46:01 +0000601static inline bool tun_not_capable(struct tun_struct *tun)
602{
603 const struct cred *cred = current_cred();
Eric W. Biedermanc260b772012-11-18 21:34:11 +0000604 struct net *net = dev_net(tun->dev);
Jason Wangcde8b152012-10-31 19:46:01 +0000605
606 return ((uid_valid(tun->owner) && !uid_eq(cred->euid, tun->owner)) ||
607 (gid_valid(tun->group) && !in_egroup_p(tun->group))) &&
Eric W. Biedermanc260b772012-11-18 21:34:11 +0000608 !ns_capable(net->user_ns, CAP_NET_ADMIN);
Jason Wangcde8b152012-10-31 19:46:01 +0000609}
610
Jason Wangc8d68e62012-10-31 19:46:00 +0000611static void tun_set_real_num_queues(struct tun_struct *tun)
612{
613 netif_set_real_num_tx_queues(tun->dev, tun->numqueues);
614 netif_set_real_num_rx_queues(tun->dev, tun->numqueues);
615}
616
Jason Wang4008e972012-12-13 23:53:30 +0000617static void tun_disable_queue(struct tun_struct *tun, struct tun_file *tfile)
618{
619 tfile->detached = tun;
620 list_add_tail(&tfile->next, &tun->disabled);
621 ++tun->numdisabled;
622}
623
Jason Wangd32649d2012-12-18 11:00:27 +0800624static struct tun_struct *tun_enable_queue(struct tun_file *tfile)
Jason Wang4008e972012-12-13 23:53:30 +0000625{
626 struct tun_struct *tun = tfile->detached;
627
628 tfile->detached = NULL;
629 list_del_init(&tfile->next);
630 --tun->numdisabled;
631 return tun;
632}
633
Jason Wang4bfb0512013-09-05 17:53:59 +0800634static void tun_queue_purge(struct tun_file *tfile)
635{
Jason Wang1576d982016-06-30 14:45:36 +0800636 struct sk_buff *skb;
637
638 while ((skb = skb_array_consume(&tfile->tx_array)) != NULL)
639 kfree_skb(skb);
640
Jason Wang5503fce2017-01-18 15:02:03 +0800641 skb_queue_purge(&tfile->sk.sk_write_queue);
Jason Wang4bfb0512013-09-05 17:53:59 +0800642 skb_queue_purge(&tfile->sk.sk_error_queue);
643}
644
Jason Wangc8d68e62012-10-31 19:46:00 +0000645static void __tun_detach(struct tun_file *tfile, bool clean)
646{
647 struct tun_file *ntfile;
648 struct tun_struct *tun;
Jason Wangc8d68e62012-10-31 19:46:00 +0000649
Jason Wangb8deabd2013-01-11 16:59:32 +0000650 tun = rtnl_dereference(tfile->tun);
651
Petar Penkov94317092017-09-22 13:49:14 -0700652 if (tun && clean) {
653 tun_napi_disable(tun, tfile);
654 tun_napi_del(tun, tfile);
655 }
656
Jason Wang9e857222013-01-28 01:05:19 +0000657 if (tun && !tfile->detached) {
Jason Wangc8d68e62012-10-31 19:46:00 +0000658 u16 index = tfile->queue_index;
659 BUG_ON(index >= tun->numqueues);
Jason Wangc8d68e62012-10-31 19:46:00 +0000660
661 rcu_assign_pointer(tun->tfiles[index],
662 tun->tfiles[tun->numqueues - 1]);
Jason Wangb8deabd2013-01-11 16:59:32 +0000663 ntfile = rtnl_dereference(tun->tfiles[index]);
Jason Wangc8d68e62012-10-31 19:46:00 +0000664 ntfile->queue_index = index;
665
666 --tun->numqueues;
Jason Wang9e857222013-01-28 01:05:19 +0000667 if (clean) {
Monam Agarwalc9566742014-03-24 00:02:32 +0530668 RCU_INIT_POINTER(tfile->tun, NULL);
Jason Wang4008e972012-12-13 23:53:30 +0000669 sock_put(&tfile->sk);
Jason Wang9e857222013-01-28 01:05:19 +0000670 } else
Jason Wang4008e972012-12-13 23:53:30 +0000671 tun_disable_queue(tun, tfile);
Jason Wangc8d68e62012-10-31 19:46:00 +0000672
673 synchronize_net();
Jason Wang96442e422012-10-31 19:46:02 +0000674 tun_flow_delete_by_queue(tun, tun->numqueues + 1);
Jason Wangc8d68e62012-10-31 19:46:00 +0000675 /* Drop read queue */
Jason Wang4bfb0512013-09-05 17:53:59 +0800676 tun_queue_purge(tfile);
Jason Wangc8d68e62012-10-31 19:46:00 +0000677 tun_set_real_num_queues(tun);
Jason Wangdd38bd82013-01-11 16:59:34 +0000678 } else if (tfile->detached && clean) {
Jason Wang4008e972012-12-13 23:53:30 +0000679 tun = tun_enable_queue(tfile);
Jason Wangdd38bd82013-01-11 16:59:34 +0000680 sock_put(&tfile->sk);
681 }
Jason Wangc8d68e62012-10-31 19:46:00 +0000682
683 if (clean) {
Michael S. Tsirkinaf668b32013-01-28 00:38:02 +0000684 if (tun && tun->numqueues == 0 && tun->numdisabled == 0) {
685 netif_carrier_off(tun->dev);
686
Michael S. Tsirkin40630b82014-11-19 15:17:31 +0200687 if (!(tun->flags & IFF_PERSIST) &&
Michael S. Tsirkinaf668b32013-01-28 00:38:02 +0000688 tun->dev->reg_state == NETREG_REGISTERED)
Jason Wang4008e972012-12-13 23:53:30 +0000689 unregister_netdevice(tun->dev);
Michael S. Tsirkinaf668b32013-01-28 00:38:02 +0000690 }
Jesper Dangaard Brouer8bf5c4e2018-01-03 11:25:59 +0100691 if (tun) {
Jason Wang1576d982016-06-30 14:45:36 +0800692 skb_array_cleanup(&tfile->tx_array);
Jesper Dangaard Brouer8bf5c4e2018-01-03 11:25:59 +0100693 xdp_rxq_info_unreg(&tfile->xdp_rxq);
694 }
Eric W. Biederman140e807da2015-05-08 21:07:08 -0500695 sock_put(&tfile->sk);
Jason Wangc8d68e62012-10-31 19:46:00 +0000696 }
697}
698
699static void tun_detach(struct tun_file *tfile, bool clean)
700{
701 rtnl_lock();
702 __tun_detach(tfile, clean);
703 rtnl_unlock();
704}
705
706static void tun_detach_all(struct net_device *dev)
707{
708 struct tun_struct *tun = netdev_priv(dev);
Jason Wang4008e972012-12-13 23:53:30 +0000709 struct tun_file *tfile, *tmp;
Jason Wangc8d68e62012-10-31 19:46:00 +0000710 int i, n = tun->numqueues;
711
712 for (i = 0; i < n; i++) {
Jason Wangb8deabd2013-01-11 16:59:32 +0000713 tfile = rtnl_dereference(tun->tfiles[i]);
Jason Wangc8d68e62012-10-31 19:46:00 +0000714 BUG_ON(!tfile);
Petar Penkov94317092017-09-22 13:49:14 -0700715 tun_napi_disable(tun, tfile);
Jason Wangaddf8fc2016-05-19 13:36:51 +0800716 tfile->socket.sk->sk_shutdown = RCV_SHUTDOWN;
Xi Wang9e641bd2014-05-16 15:11:48 -0700717 tfile->socket.sk->sk_data_ready(tfile->socket.sk);
Monam Agarwalc9566742014-03-24 00:02:32 +0530718 RCU_INIT_POINTER(tfile->tun, NULL);
Jason Wangc8d68e62012-10-31 19:46:00 +0000719 --tun->numqueues;
720 }
Jason Wang9e857222013-01-28 01:05:19 +0000721 list_for_each_entry(tfile, &tun->disabled, next) {
Jason Wangaddf8fc2016-05-19 13:36:51 +0800722 tfile->socket.sk->sk_shutdown = RCV_SHUTDOWN;
Xi Wang9e641bd2014-05-16 15:11:48 -0700723 tfile->socket.sk->sk_data_ready(tfile->socket.sk);
Monam Agarwalc9566742014-03-24 00:02:32 +0530724 RCU_INIT_POINTER(tfile->tun, NULL);
Jason Wang9e857222013-01-28 01:05:19 +0000725 }
Jason Wangc8d68e62012-10-31 19:46:00 +0000726 BUG_ON(tun->numqueues != 0);
727
728 synchronize_net();
729 for (i = 0; i < n; i++) {
Jason Wangb8deabd2013-01-11 16:59:32 +0000730 tfile = rtnl_dereference(tun->tfiles[i]);
Petar Penkov94317092017-09-22 13:49:14 -0700731 tun_napi_del(tun, tfile);
Jason Wangc8d68e62012-10-31 19:46:00 +0000732 /* Drop read queue */
Jason Wang4bfb0512013-09-05 17:53:59 +0800733 tun_queue_purge(tfile);
Jesper Dangaard Brouer8bf5c4e2018-01-03 11:25:59 +0100734 xdp_rxq_info_unreg(&tfile->xdp_rxq);
Jason Wangc8d68e62012-10-31 19:46:00 +0000735 sock_put(&tfile->sk);
736 }
Jason Wang4008e972012-12-13 23:53:30 +0000737 list_for_each_entry_safe(tfile, tmp, &tun->disabled, next) {
738 tun_enable_queue(tfile);
Jason Wang4bfb0512013-09-05 17:53:59 +0800739 tun_queue_purge(tfile);
Jesper Dangaard Brouer8bf5c4e2018-01-03 11:25:59 +0100740 xdp_rxq_info_unreg(&tfile->xdp_rxq);
Jason Wang4008e972012-12-13 23:53:30 +0000741 sock_put(&tfile->sk);
742 }
743 BUG_ON(tun->numdisabled != 0);
Jason Wangdd38bd82013-01-11 16:59:34 +0000744
Michael S. Tsirkin40630b82014-11-19 15:17:31 +0200745 if (tun->flags & IFF_PERSIST)
Jason Wangdd38bd82013-01-11 16:59:34 +0000746 module_put(THIS_MODULE);
Jason Wangc8d68e62012-10-31 19:46:00 +0000747}
748
Petar Penkov94317092017-09-22 13:49:14 -0700749static int tun_attach(struct tun_struct *tun, struct file *file,
750 bool skip_filter, bool napi)
Eric W. Biedermana7385ba2009-01-20 10:57:48 +0000751{
Eric W. Biederman631ab462009-01-20 11:00:40 +0000752 struct tun_file *tfile = file->private_data;
Jason Wang1576d982016-06-30 14:45:36 +0800753 struct net_device *dev = tun->dev;
Eric W. Biederman38231b72009-01-20 11:02:28 +0000754 int err;
Eric W. Biedermana7385ba2009-01-20 10:57:48 +0000755
Paul Moore5dbbaf22013-01-14 07:12:19 +0000756 err = security_tun_dev_attach(tfile->socket.sk, tun->security);
757 if (err < 0)
758 goto out;
759
Eric W. Biederman38231b72009-01-20 11:02:28 +0000760 err = -EINVAL;
Jason Wang9e857222013-01-28 01:05:19 +0000761 if (rtnl_dereference(tfile->tun) && !tfile->detached)
Eric W. Biederman38231b72009-01-20 11:02:28 +0000762 goto out;
763
764 err = -EBUSY;
Michael S. Tsirkin40630b82014-11-19 15:17:31 +0200765 if (!(tun->flags & IFF_MULTI_QUEUE) && tun->numqueues == 1)
Jason Wangc8d68e62012-10-31 19:46:00 +0000766 goto out;
767
768 err = -E2BIG;
Jason Wang4008e972012-12-13 23:53:30 +0000769 if (!tfile->detached &&
770 tun->numqueues + tun->numdisabled == MAX_TAP_QUEUES)
Eric W. Biederman38231b72009-01-20 11:02:28 +0000771 goto out;
772
773 err = 0;
Jason Wang54f968d2012-10-31 19:45:57 +0000774
stephen hemminger92d4ea62013-12-05 20:42:58 -0800775 /* Re-attach the filter to persist device */
Pavel Emelyanov849c9b62013-08-21 14:32:21 +0400776 if (!skip_filter && (tun->filter_attached == true)) {
Hannes Frederic Sowa8ced4252016-04-05 17:10:16 +0200777 lock_sock(tfile->socket.sk);
778 err = sk_attach_filter(&tun->fprog, tfile->socket.sk);
779 release_sock(tfile->socket.sk);
Jason Wang54f968d2012-10-31 19:45:57 +0000780 if (!err)
781 goto out;
782 }
Jason Wang1576d982016-06-30 14:45:36 +0800783
784 if (!tfile->detached &&
785 skb_array_init(&tfile->tx_array, dev->tx_queue_len, GFP_KERNEL)) {
786 err = -ENOMEM;
787 goto out;
788 }
789
Jason Wangc8d68e62012-10-31 19:46:00 +0000790 tfile->queue_index = tun->numqueues;
Jason Wangaddf8fc2016-05-19 13:36:51 +0800791 tfile->socket.sk->sk_shutdown &= ~RCV_SHUTDOWN;
Jesper Dangaard Brouer8bf5c4e2018-01-03 11:25:59 +0100792
793 if (tfile->detached) {
794 /* Re-attach detached tfile, updating XDP queue_index */
795 WARN_ON(!xdp_rxq_info_is_reg(&tfile->xdp_rxq));
796
797 if (tfile->xdp_rxq.queue_index != tfile->queue_index)
798 tfile->xdp_rxq.queue_index = tfile->queue_index;
799 } else {
800 /* Setup XDP RX-queue info, for new tfile getting attached */
801 err = xdp_rxq_info_reg(&tfile->xdp_rxq,
802 tun->dev, tfile->queue_index);
803 if (err < 0)
804 goto out;
805 err = 0;
806 }
807
Jason Wang6e914fc2012-10-31 19:45:58 +0000808 rcu_assign_pointer(tfile->tun, tun);
Jason Wangc8d68e62012-10-31 19:46:00 +0000809 rcu_assign_pointer(tun->tfiles[tun->numqueues], tfile);
Jason Wangc8d68e62012-10-31 19:46:00 +0000810 tun->numqueues++;
811
Petar Penkov94317092017-09-22 13:49:14 -0700812 if (tfile->detached) {
Jason Wang4008e972012-12-13 23:53:30 +0000813 tun_enable_queue(tfile);
Petar Penkov94317092017-09-22 13:49:14 -0700814 } else {
Jason Wang4008e972012-12-13 23:53:30 +0000815 sock_hold(&tfile->sk);
Petar Penkov94317092017-09-22 13:49:14 -0700816 tun_napi_init(tun, tfile, napi);
817 }
Jason Wang4008e972012-12-13 23:53:30 +0000818
Jason Wangc8d68e62012-10-31 19:46:00 +0000819 tun_set_real_num_queues(tun);
820
Jason Wangc8d68e62012-10-31 19:46:00 +0000821 /* device is allowed to go away first, so no need to hold extra
822 * refcnt.
823 */
Eric W. Biedermana7385ba2009-01-20 10:57:48 +0000824
Eric W. Biederman38231b72009-01-20 11:02:28 +0000825out:
Eric W. Biederman38231b72009-01-20 11:02:28 +0000826 return err;
Eric W. Biedermana7385ba2009-01-20 10:57:48 +0000827}
828
yuan linyu9484dc72017-09-23 22:36:52 +0800829static struct tun_struct *tun_get(struct tun_file *tfile)
Eric W. Biederman631ab462009-01-20 11:00:40 +0000830{
Jason Wang6e914fc2012-10-31 19:45:58 +0000831 struct tun_struct *tun;
Eric W. Biedermanc70f1822009-01-20 11:07:17 +0000832
Jason Wang6e914fc2012-10-31 19:45:58 +0000833 rcu_read_lock();
834 tun = rcu_dereference(tfile->tun);
835 if (tun)
836 dev_hold(tun->dev);
837 rcu_read_unlock();
Eric W. Biedermanc70f1822009-01-20 11:07:17 +0000838
839 return tun;
Eric W. Biederman631ab462009-01-20 11:00:40 +0000840}
841
Eric W. Biederman631ab462009-01-20 11:00:40 +0000842static void tun_put(struct tun_struct *tun)
843{
Jason Wang6e914fc2012-10-31 19:45:58 +0000844 dev_put(tun->dev);
Eric W. Biederman631ab462009-01-20 11:00:40 +0000845}
846
Joe Perches6b8a66e2011-03-02 07:18:10 +0000847/* TAP filtering */
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -0700848static void addr_hash_set(u32 *mask, const u8 *addr)
849{
850 int n = ether_crc(ETH_ALEN, addr) >> 26;
851 mask[n >> 5] |= (1 << (n & 31));
852}
853
854static unsigned int addr_hash_test(const u32 *mask, const u8 *addr)
855{
856 int n = ether_crc(ETH_ALEN, addr) >> 26;
857 return mask[n >> 5] & (1 << (n & 31));
858}
859
860static int update_filter(struct tap_filter *filter, void __user *arg)
861{
862 struct { u8 u[ETH_ALEN]; } *addr;
863 struct tun_filter uf;
864 int err, alen, n, nexact;
865
866 if (copy_from_user(&uf, arg, sizeof(uf)))
867 return -EFAULT;
868
869 if (!uf.count) {
870 /* Disabled */
871 filter->count = 0;
872 return 0;
873 }
874
875 alen = ETH_ALEN * uf.count;
Markus Elfring28e81902016-08-20 08:54:15 +0200876 addr = memdup_user(arg + sizeof(uf), alen);
877 if (IS_ERR(addr))
878 return PTR_ERR(addr);
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -0700879
880 /* The filter is updated without holding any locks. Which is
881 * perfectly safe. We disable it first and in the worst
882 * case we'll accept a few undesired packets. */
883 filter->count = 0;
884 wmb();
885
886 /* Use first set of addresses as an exact filter */
887 for (n = 0; n < uf.count && n < FLT_EXACT_COUNT; n++)
888 memcpy(filter->addr[n], addr[n].u, ETH_ALEN);
889
890 nexact = n;
891
Alex Williamsoncfbf84f2009-02-08 17:49:17 -0800892 /* Remaining multicast addresses are hashed,
893 * unicast will leave the filter disabled. */
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -0700894 memset(filter->mask, 0, sizeof(filter->mask));
Alex Williamsoncfbf84f2009-02-08 17:49:17 -0800895 for (; n < uf.count; n++) {
896 if (!is_multicast_ether_addr(addr[n].u)) {
897 err = 0; /* no filter */
Markus Elfring3b8d2a62016-08-20 09:00:34 +0200898 goto free_addr;
Alex Williamsoncfbf84f2009-02-08 17:49:17 -0800899 }
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -0700900 addr_hash_set(filter->mask, addr[n].u);
Alex Williamsoncfbf84f2009-02-08 17:49:17 -0800901 }
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -0700902
903 /* For ALLMULTI just set the mask to all ones.
904 * This overrides the mask populated above. */
905 if ((uf.flags & TUN_FLT_ALLMULTI))
906 memset(filter->mask, ~0, sizeof(filter->mask));
907
908 /* Now enable the filter */
909 wmb();
910 filter->count = nexact;
911
912 /* Return the number of exact filters */
913 err = nexact;
Markus Elfring3b8d2a62016-08-20 09:00:34 +0200914free_addr:
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -0700915 kfree(addr);
916 return err;
917}
918
919/* Returns: 0 - drop, !=0 - accept */
920static int run_filter(struct tap_filter *filter, const struct sk_buff *skb)
921{
922 /* Cannot use eth_hdr(skb) here because skb_mac_hdr() is incorrect
923 * at this point. */
924 struct ethhdr *eh = (struct ethhdr *) skb->data;
925 int i;
926
927 /* Exact match */
928 for (i = 0; i < filter->count; i++)
Joe Perches2e42e472012-05-09 17:17:46 +0000929 if (ether_addr_equal(eh->h_dest, filter->addr[i]))
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -0700930 return 1;
931
932 /* Inexact match (multicast only) */
933 if (is_multicast_ether_addr(eh->h_dest))
934 return addr_hash_test(filter->mask, eh->h_dest);
935
936 return 0;
937}
938
939/*
940 * Checks whether the packet is accepted or not.
941 * Returns: 0 - drop, !=0 - accept
942 */
943static int check_filter(struct tap_filter *filter, const struct sk_buff *skb)
944{
945 if (!filter->count)
946 return 1;
947
948 return run_filter(filter, skb);
949}
950
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951/* Network device part of the driver */
952
Jeff Garzik7282d492006-09-13 14:30:00 -0400953static const struct ethtool_ops tun_ethtool_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954
Eric W. Biedermanc70f1822009-01-20 11:07:17 +0000955/* Net device detach from fd. */
956static void tun_net_uninit(struct net_device *dev)
957{
Jason Wangc8d68e62012-10-31 19:46:00 +0000958 tun_detach_all(dev);
Eric W. Biedermanc70f1822009-01-20 11:07:17 +0000959}
960
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961/* Net device open. */
962static int tun_net_open(struct net_device *dev)
963{
Hannes Frederic Sowab20e2d52017-03-13 00:00:26 +0100964 struct tun_struct *tun = netdev_priv(dev);
965 int i;
966
Jason Wangc8d68e62012-10-31 19:46:00 +0000967 netif_tx_start_all_queues(dev);
Hannes Frederic Sowab20e2d52017-03-13 00:00:26 +0100968
969 for (i = 0; i < tun->numqueues; i++) {
970 struct tun_file *tfile;
971
972 tfile = rtnl_dereference(tun->tfiles[i]);
973 tfile->socket.sk->sk_write_space(tfile->socket.sk);
974 }
975
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976 return 0;
977}
978
979/* Net device close. */
980static int tun_net_close(struct net_device *dev)
981{
Jason Wangc8d68e62012-10-31 19:46:00 +0000982 netif_tx_stop_all_queues(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983 return 0;
984}
985
986/* Net device start xmit */
Jason Wang96f84062017-12-04 17:31:23 +0800987static void tun_automq_xmit(struct tun_struct *tun, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988{
Jason Wang3df97ba2016-04-25 23:13:42 -0400989#ifdef CONFIG_RPS
Jason Wang96f84062017-12-04 17:31:23 +0800990 if (tun->numqueues == 1 && static_key_false(&rps_needed)) {
Tom Herbert9bc88932013-12-22 18:54:32 +0800991 /* Select queue was not called for the skbuff, so we extract the
992 * RPS hash and save it into the flow_table here.
993 */
994 __u32 rxhash;
995
Jason Wangfeec0842017-06-06 14:09:49 +0800996 rxhash = __skb_get_hash_symmetric(skb);
Tom Herbert9bc88932013-12-22 18:54:32 +0800997 if (rxhash) {
998 struct tun_flow_entry *e;
999 e = tun_flow_find(&tun->flows[tun_hashfn(rxhash)],
1000 rxhash);
1001 if (e)
1002 tun_flow_save_rps_rxhash(e, rxhash);
1003 }
1004 }
Jason Wang3df97ba2016-04-25 23:13:42 -04001005#endif
Jason Wang96f84062017-12-04 17:31:23 +08001006}
1007
1008/* Net device start xmit */
1009static netdev_tx_t tun_net_xmit(struct sk_buff *skb, struct net_device *dev)
1010{
1011 struct tun_struct *tun = netdev_priv(dev);
1012 int txq = skb->queue_mapping;
1013 struct tun_file *tfile;
Jason Wang96f84062017-12-04 17:31:23 +08001014
1015 rcu_read_lock();
1016 tfile = rcu_dereference(tun->tfiles[txq]);
Jason Wang96f84062017-12-04 17:31:23 +08001017
1018 /* Drop packet if interface is not attached */
Willem de Bruijncc166422017-12-05 22:11:17 -05001019 if (txq >= tun->numqueues)
Jason Wang96f84062017-12-04 17:31:23 +08001020 goto drop;
1021
1022 if (!rcu_dereference(tun->steering_prog))
1023 tun_automq_xmit(tun, skb);
Tom Herbert9bc88932013-12-22 18:54:32 +08001024
Jason Wang6e914fc2012-10-31 19:45:58 +00001025 tun_debug(KERN_INFO, tun, "tun_net_xmit %d\n", skb->len);
1026
Jason Wangc8d68e62012-10-31 19:46:00 +00001027 BUG_ON(!tfile);
1028
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -07001029 /* Drop if the filter does not like it.
1030 * This is a noop if the filter is disabled.
1031 * Filter can be enabled only for the TAP devices. */
1032 if (!check_filter(&tun->txflt, skb))
1033 goto drop;
1034
Jason Wang54f968d2012-10-31 19:45:57 +00001035 if (tfile->socket.sk->sk_filter &&
1036 sk_filter(tfile->socket.sk, skb))
Michael S. Tsirkin99405162010-02-14 01:01:10 +00001037 goto drop;
1038
Willem de Bruijn1f8b9772017-08-03 16:29:41 -04001039 if (unlikely(skb_orphan_frags_rx(skb, GFP_ATOMIC)))
Jason Wang7bf66302013-09-05 17:54:00 +08001040 goto drop;
1041
Soheil Hassas Yeganeh7b996242016-08-23 18:22:33 -04001042 skb_tx_timestamp(skb);
Richard Cochraneda29772013-07-19 19:40:10 +02001043
Michael S. Tsirkin0110d6f2010-04-13 04:59:44 +00001044 /* Orphan the skb - required as we might hang on to it
Jason Wang7bf66302013-09-05 17:54:00 +08001045 * for indefinite time.
1046 */
Michael S. Tsirkin0110d6f2010-04-13 04:59:44 +00001047 skb_orphan(skb);
1048
Eric Dumazetf8af75f2013-03-06 11:02:37 +00001049 nf_reset(skb);
1050
Jason Wang1576d982016-06-30 14:45:36 +08001051 if (skb_array_produce(&tfile->tx_array, skb))
1052 goto drop;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053
1054 /* Notify and wake up reader process */
Jason Wang54f968d2012-10-31 19:45:57 +00001055 if (tfile->flags & TUN_FASYNC)
1056 kill_fasync(&tfile->fasync, SIGIO, POLL_IN);
Xi Wang9e641bd2014-05-16 15:11:48 -07001057 tfile->socket.sk->sk_data_ready(tfile->socket.sk);
Jason Wang6e914fc2012-10-31 19:45:58 +00001058
1059 rcu_read_unlock();
Patrick McHardy6ed10652009-06-23 06:03:08 +00001060 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061
1062drop:
Paolo Abeni608b9972016-04-13 10:52:20 +02001063 this_cpu_inc(tun->pcpu_stats->tx_dropped);
Michael S. Tsirkin149d36f2012-11-01 09:16:32 +00001064 skb_tx_error(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065 kfree_skb(skb);
Jason Wang6e914fc2012-10-31 19:45:58 +00001066 rcu_read_unlock();
Jason Wangbaeabab2014-11-18 13:20:41 +08001067 return NET_XMIT_DROP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068}
1069
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -07001070static void tun_net_mclist(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071{
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -07001072 /*
1073 * This callback is supposed to deal with mc filter in
1074 * _rx_ path and has nothing to do with the _tx_ path.
1075 * In rx path we always accept everything userspace gives us.
1076 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077}
1078
Michał Mirosławc8f44af2011-11-15 15:29:55 +00001079static netdev_features_t tun_net_fix_features(struct net_device *dev,
1080 netdev_features_t features)
Michał Mirosław88255372011-04-19 06:13:10 +00001081{
1082 struct tun_struct *tun = netdev_priv(dev);
1083
1084 return (features & tun->set_features) | (features & ~TUN_USER_FEATURES);
1085}
Neil Hormanbebd0972011-06-15 05:25:01 +00001086#ifdef CONFIG_NET_POLL_CONTROLLER
1087static void tun_poll_controller(struct net_device *dev)
1088{
1089 /*
1090 * Tun only receives frames when:
1091 * 1) the char device endpoint gets data from user space
1092 * 2) the tun socket gets a sendmsg call from user space
Petar Penkov94317092017-09-22 13:49:14 -07001093 * If NAPI is not enabled, since both of those are synchronous
1094 * operations, we are guaranteed never to have pending data when we poll
1095 * for it so there is nothing to do here but return.
Neil Hormanbebd0972011-06-15 05:25:01 +00001096 * We need this though so netpoll recognizes us as an interface that
1097 * supports polling, which enables bridge devices in virt setups to
1098 * still use netconsole
Petar Penkov94317092017-09-22 13:49:14 -07001099 * If NAPI is enabled, however, we need to schedule polling for all
Petar Penkov90e33d42017-09-22 13:49:15 -07001100 * queues unless we are using napi_gro_frags(), which we call in
1101 * process context and not in NAPI context.
Neil Hormanbebd0972011-06-15 05:25:01 +00001102 */
Petar Penkov94317092017-09-22 13:49:14 -07001103 struct tun_struct *tun = netdev_priv(dev);
1104
1105 if (tun->flags & IFF_NAPI) {
1106 struct tun_file *tfile;
1107 int i;
1108
Petar Penkov90e33d42017-09-22 13:49:15 -07001109 if (tun_napi_frags_enabled(tun))
1110 return;
1111
Petar Penkov94317092017-09-22 13:49:14 -07001112 rcu_read_lock();
1113 for (i = 0; i < tun->numqueues; i++) {
1114 tfile = rcu_dereference(tun->tfiles[i]);
Eric Dumazetaec72f32017-10-18 12:12:09 -07001115 if (tfile->napi_enabled)
1116 napi_schedule(&tfile->napi);
Petar Penkov94317092017-09-22 13:49:14 -07001117 }
1118 rcu_read_unlock();
1119 }
Neil Hormanbebd0972011-06-15 05:25:01 +00001120 return;
1121}
1122#endif
Paolo Abenieaea34b2016-02-26 10:45:40 +01001123
1124static void tun_set_headroom(struct net_device *dev, int new_hr)
1125{
1126 struct tun_struct *tun = netdev_priv(dev);
1127
1128 if (new_hr < NET_SKB_PAD)
1129 new_hr = NET_SKB_PAD;
1130
1131 tun->align = new_hr;
1132}
1133
stephen hemmingerbc1f4472017-01-06 19:12:52 -08001134static void
Paolo Abeni608b9972016-04-13 10:52:20 +02001135tun_net_get_stats64(struct net_device *dev, struct rtnl_link_stats64 *stats)
1136{
1137 u32 rx_dropped = 0, tx_dropped = 0, rx_frame_errors = 0;
1138 struct tun_struct *tun = netdev_priv(dev);
1139 struct tun_pcpu_stats *p;
1140 int i;
1141
1142 for_each_possible_cpu(i) {
1143 u64 rxpackets, rxbytes, txpackets, txbytes;
1144 unsigned int start;
1145
1146 p = per_cpu_ptr(tun->pcpu_stats, i);
1147 do {
1148 start = u64_stats_fetch_begin(&p->syncp);
1149 rxpackets = p->rx_packets;
1150 rxbytes = p->rx_bytes;
1151 txpackets = p->tx_packets;
1152 txbytes = p->tx_bytes;
1153 } while (u64_stats_fetch_retry(&p->syncp, start));
1154
1155 stats->rx_packets += rxpackets;
1156 stats->rx_bytes += rxbytes;
1157 stats->tx_packets += txpackets;
1158 stats->tx_bytes += txbytes;
1159
1160 /* u32 counters */
1161 rx_dropped += p->rx_dropped;
1162 rx_frame_errors += p->rx_frame_errors;
1163 tx_dropped += p->tx_dropped;
1164 }
1165 stats->rx_dropped = rx_dropped;
1166 stats->rx_frame_errors = rx_frame_errors;
1167 stats->tx_dropped = tx_dropped;
Paolo Abeni608b9972016-04-13 10:52:20 +02001168}
1169
Jason Wang761876c2017-08-11 19:41:18 +08001170static int tun_xdp_set(struct net_device *dev, struct bpf_prog *prog,
1171 struct netlink_ext_ack *extack)
1172{
1173 struct tun_struct *tun = netdev_priv(dev);
1174 struct bpf_prog *old_prog;
1175
1176 old_prog = rtnl_dereference(tun->xdp_prog);
1177 rcu_assign_pointer(tun->xdp_prog, prog);
1178 if (old_prog)
1179 bpf_prog_put(old_prog);
1180
1181 return 0;
1182}
1183
1184static u32 tun_xdp_query(struct net_device *dev)
1185{
1186 struct tun_struct *tun = netdev_priv(dev);
1187 const struct bpf_prog *xdp_prog;
1188
1189 xdp_prog = rtnl_dereference(tun->xdp_prog);
1190 if (xdp_prog)
1191 return xdp_prog->aux->id;
1192
1193 return 0;
1194}
1195
Jakub Kicinskif4e63522017-11-03 13:56:16 -07001196static int tun_xdp(struct net_device *dev, struct netdev_bpf *xdp)
Jason Wang761876c2017-08-11 19:41:18 +08001197{
1198 switch (xdp->command) {
1199 case XDP_SETUP_PROG:
1200 return tun_xdp_set(dev, xdp->prog, xdp->extack);
1201 case XDP_QUERY_PROG:
1202 xdp->prog_id = tun_xdp_query(dev);
1203 xdp->prog_attached = !!xdp->prog_id;
1204 return 0;
1205 default:
1206 return -EINVAL;
1207 }
1208}
1209
Stephen Hemminger758e43b2008-11-19 22:10:37 -08001210static const struct net_device_ops tun_netdev_ops = {
Eric W. Biedermanc70f1822009-01-20 11:07:17 +00001211 .ndo_uninit = tun_net_uninit,
Stephen Hemminger758e43b2008-11-19 22:10:37 -08001212 .ndo_open = tun_net_open,
1213 .ndo_stop = tun_net_close,
Stephen Hemminger00829822008-11-20 20:14:53 -08001214 .ndo_start_xmit = tun_net_xmit,
Michał Mirosław88255372011-04-19 06:13:10 +00001215 .ndo_fix_features = tun_net_fix_features,
Jason Wangc8d68e62012-10-31 19:46:00 +00001216 .ndo_select_queue = tun_select_queue,
Neil Hormanbebd0972011-06-15 05:25:01 +00001217#ifdef CONFIG_NET_POLL_CONTROLLER
1218 .ndo_poll_controller = tun_poll_controller,
1219#endif
Paolo Abenieaea34b2016-02-26 10:45:40 +01001220 .ndo_set_rx_headroom = tun_set_headroom,
Paolo Abeni608b9972016-04-13 10:52:20 +02001221 .ndo_get_stats64 = tun_net_get_stats64,
Stephen Hemminger758e43b2008-11-19 22:10:37 -08001222};
1223
1224static const struct net_device_ops tap_netdev_ops = {
Eric W. Biedermanc70f1822009-01-20 11:07:17 +00001225 .ndo_uninit = tun_net_uninit,
Stephen Hemminger758e43b2008-11-19 22:10:37 -08001226 .ndo_open = tun_net_open,
1227 .ndo_stop = tun_net_close,
Stephen Hemminger00829822008-11-20 20:14:53 -08001228 .ndo_start_xmit = tun_net_xmit,
Michał Mirosław88255372011-04-19 06:13:10 +00001229 .ndo_fix_features = tun_net_fix_features,
Jiri Pirkoafc4b132011-08-16 06:29:01 +00001230 .ndo_set_rx_mode = tun_net_mclist,
Stephen Hemminger758e43b2008-11-19 22:10:37 -08001231 .ndo_set_mac_address = eth_mac_addr,
1232 .ndo_validate_addr = eth_validate_addr,
Jason Wangc8d68e62012-10-31 19:46:00 +00001233 .ndo_select_queue = tun_select_queue,
Neil Hormanbebd0972011-06-15 05:25:01 +00001234#ifdef CONFIG_NET_POLL_CONTROLLER
1235 .ndo_poll_controller = tun_poll_controller,
1236#endif
Toshiaki Makita5e527962015-07-31 15:03:27 +09001237 .ndo_features_check = passthru_features_check,
Paolo Abenieaea34b2016-02-26 10:45:40 +01001238 .ndo_set_rx_headroom = tun_set_headroom,
Paolo Abeni608b9972016-04-13 10:52:20 +02001239 .ndo_get_stats64 = tun_net_get_stats64,
Jakub Kicinskif4e63522017-11-03 13:56:16 -07001240 .ndo_bpf = tun_xdp,
Stephen Hemminger758e43b2008-11-19 22:10:37 -08001241};
1242
Pavel Emelyanov944a1372013-06-11 17:01:08 +04001243static void tun_flow_init(struct tun_struct *tun)
Jason Wang96442e422012-10-31 19:46:02 +00001244{
1245 int i;
1246
Jason Wang96442e422012-10-31 19:46:02 +00001247 for (i = 0; i < TUN_NUM_FLOW_ENTRIES; i++)
1248 INIT_HLIST_HEAD(&tun->flows[i]);
1249
1250 tun->ageing_time = TUN_FLOW_EXPIRE;
Kees Cooke99e88a2017-10-16 14:43:17 -07001251 timer_setup(&tun->flow_gc_timer, tun_flow_cleanup, 0);
1252 mod_timer(&tun->flow_gc_timer,
1253 round_jiffies_up(jiffies + tun->ageing_time));
Jason Wang96442e422012-10-31 19:46:02 +00001254}
1255
1256static void tun_flow_uninit(struct tun_struct *tun)
1257{
1258 del_timer_sync(&tun->flow_gc_timer);
1259 tun_flow_flush(tun);
Jason Wang96442e422012-10-31 19:46:02 +00001260}
1261
Jarod Wilson91572082016-10-20 13:55:20 -04001262#define MIN_MTU 68
1263#define MAX_MTU 65535
1264
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265/* Initialize net device. */
1266static void tun_net_init(struct net_device *dev)
1267{
1268 struct tun_struct *tun = netdev_priv(dev);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001269
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270 switch (tun->flags & TUN_TYPE_MASK) {
Michael S. Tsirkin40630b82014-11-19 15:17:31 +02001271 case IFF_TUN:
Stephen Hemminger758e43b2008-11-19 22:10:37 -08001272 dev->netdev_ops = &tun_netdev_ops;
1273
Linus Torvalds1da177e2005-04-16 15:20:36 -07001274 /* Point-to-Point TUN Device */
1275 dev->hard_header_len = 0;
1276 dev->addr_len = 0;
1277 dev->mtu = 1500;
1278
1279 /* Zero header length */
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001280 dev->type = ARPHRD_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281 dev->flags = IFF_POINTOPOINT | IFF_NOARP | IFF_MULTICAST;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282 break;
1283
Michael S. Tsirkin40630b82014-11-19 15:17:31 +02001284 case IFF_TAP:
Kusanagi Kouichi7a0a9602008-12-29 18:23:28 -08001285 dev->netdev_ops = &tap_netdev_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286 /* Ethernet TAP Device */
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -07001287 ether_setup(dev);
Neil Horman550fd082011-07-26 06:05:38 +00001288 dev->priv_flags &= ~IFF_TX_SKB_SHARING;
stephen hemmingera6768472012-12-10 15:16:00 +00001289 dev->priv_flags |= IFF_LIVE_ADDR_CHANGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290
Danny Kukawkaf2cedb62012-02-15 06:45:39 +00001291 eth_hw_addr_random(dev);
Brian Braunstein36226a82007-04-26 01:00:55 -07001292
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293 break;
1294 }
Jarod Wilson91572082016-10-20 13:55:20 -04001295
1296 dev->min_mtu = MIN_MTU;
1297 dev->max_mtu = MAX_MTU - dev->hard_header_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298}
1299
1300/* Character device part */
1301
1302/* Poll */
Jason Wangc8d68e62012-10-31 19:46:00 +00001303static unsigned int tun_chr_poll(struct file *file, poll_table *wait)
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001304{
Eric W. Biedermanb2430de2009-01-20 11:03:21 +00001305 struct tun_file *tfile = file->private_data;
yuan linyu9484dc72017-09-23 22:36:52 +08001306 struct tun_struct *tun = tun_get(tfile);
Mariusz Kozlowski3c8a9c62009-07-05 19:48:35 +00001307 struct sock *sk;
Herbert Xu33dccbb2009-02-05 21:25:32 -08001308 unsigned int mask = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309
1310 if (!tun)
Eric W. Biedermaneac9e902009-01-20 10:59:05 +00001311 return POLLERR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001312
Jason Wang54f968d2012-10-31 19:45:57 +00001313 sk = tfile->socket.sk;
Mariusz Kozlowski3c8a9c62009-07-05 19:48:35 +00001314
Joe Perches6b8a66e2011-03-02 07:18:10 +00001315 tun_debug(KERN_INFO, tun, "tun_chr_poll\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316
Xi Wang9e641bd2014-05-16 15:11:48 -07001317 poll_wait(file, sk_sleep(sk), wait);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001318
Jason Wang1576d982016-06-30 14:45:36 +08001319 if (!skb_array_empty(&tfile->tx_array))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320 mask |= POLLIN | POLLRDNORM;
1321
Hannes Frederic Sowab20e2d52017-03-13 00:00:26 +01001322 if (tun->dev->flags & IFF_UP &&
1323 (sock_writeable(sk) ||
1324 (!test_and_set_bit(SOCKWQ_ASYNC_NOSPACE, &sk->sk_socket->flags) &&
1325 sock_writeable(sk))))
Herbert Xu33dccbb2009-02-05 21:25:32 -08001326 mask |= POLLOUT | POLLWRNORM;
1327
Eric W. Biedermanc70f1822009-01-20 11:07:17 +00001328 if (tun->dev->reg_state != NETREG_REGISTERED)
1329 mask = POLLERR;
1330
Eric W. Biederman631ab462009-01-20 11:00:40 +00001331 tun_put(tun);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332 return mask;
1333}
1334
Petar Penkov90e33d42017-09-22 13:49:15 -07001335static struct sk_buff *tun_napi_alloc_frags(struct tun_file *tfile,
1336 size_t len,
1337 const struct iov_iter *it)
1338{
1339 struct sk_buff *skb;
1340 size_t linear;
1341 int err;
1342 int i;
1343
1344 if (it->nr_segs > MAX_SKB_FRAGS + 1)
1345 return ERR_PTR(-ENOMEM);
1346
1347 local_bh_disable();
1348 skb = napi_get_frags(&tfile->napi);
1349 local_bh_enable();
1350 if (!skb)
1351 return ERR_PTR(-ENOMEM);
1352
1353 linear = iov_iter_single_seg_count(it);
1354 err = __skb_grow(skb, linear);
1355 if (err)
1356 goto free;
1357
1358 skb->len = len;
1359 skb->data_len = len - linear;
1360 skb->truesize += skb->data_len;
1361
1362 for (i = 1; i < it->nr_segs; i++) {
1363 size_t fragsz = it->iov[i].iov_len;
1364 unsigned long offset;
1365 struct page *page;
1366 void *data;
1367
1368 if (fragsz == 0 || fragsz > PAGE_SIZE) {
1369 err = -EINVAL;
1370 goto free;
1371 }
1372
1373 local_bh_disable();
1374 data = napi_alloc_frag(fragsz);
1375 local_bh_enable();
1376 if (!data) {
1377 err = -ENOMEM;
1378 goto free;
1379 }
1380
1381 page = virt_to_head_page(data);
1382 offset = data - page_address(page);
1383 skb_fill_page_desc(skb, i - 1, page, offset, fragsz);
1384 }
1385
1386 return skb;
1387free:
1388 /* frees skb and all frags allocated with napi_alloc_frag() */
1389 napi_free_frags(&tfile->napi);
1390 return ERR_PTR(err);
1391}
1392
Rusty Russellf42157c2008-08-15 15:15:10 -07001393/* prepad is the amount to reserve at front. len is length after that.
1394 * linear is a hint as to how much to copy (usually headers). */
Jason Wang54f968d2012-10-31 19:45:57 +00001395static struct sk_buff *tun_alloc_skb(struct tun_file *tfile,
stephen hemminger6f7c1562011-06-08 14:33:08 +00001396 size_t prepad, size_t len,
1397 size_t linear, int noblock)
Rusty Russellf42157c2008-08-15 15:15:10 -07001398{
Jason Wang54f968d2012-10-31 19:45:57 +00001399 struct sock *sk = tfile->socket.sk;
Rusty Russellf42157c2008-08-15 15:15:10 -07001400 struct sk_buff *skb;
Herbert Xu33dccbb2009-02-05 21:25:32 -08001401 int err;
Rusty Russellf42157c2008-08-15 15:15:10 -07001402
1403 /* Under a page? Don't bother with paged skb. */
Herbert Xu0eca93b2009-04-14 02:09:43 -07001404 if (prepad + len < PAGE_SIZE || !linear)
Herbert Xu33dccbb2009-02-05 21:25:32 -08001405 linear = len;
Rusty Russellf42157c2008-08-15 15:15:10 -07001406
Herbert Xu33dccbb2009-02-05 21:25:32 -08001407 skb = sock_alloc_send_pskb(sk, prepad + linear, len - linear, noblock,
Eric Dumazet28d64272013-08-08 14:38:47 -07001408 &err, 0);
Rusty Russellf42157c2008-08-15 15:15:10 -07001409 if (!skb)
Herbert Xu33dccbb2009-02-05 21:25:32 -08001410 return ERR_PTR(err);
Rusty Russellf42157c2008-08-15 15:15:10 -07001411
1412 skb_reserve(skb, prepad);
1413 skb_put(skb, linear);
Herbert Xu33dccbb2009-02-05 21:25:32 -08001414 skb->data_len = len - linear;
1415 skb->len += len - linear;
Rusty Russellf42157c2008-08-15 15:15:10 -07001416
1417 return skb;
1418}
1419
Jason Wang5503fce2017-01-18 15:02:03 +08001420static void tun_rx_batched(struct tun_struct *tun, struct tun_file *tfile,
1421 struct sk_buff *skb, int more)
1422{
1423 struct sk_buff_head *queue = &tfile->sk.sk_write_queue;
1424 struct sk_buff_head process_queue;
1425 u32 rx_batched = tun->rx_batched;
1426 bool rcv = false;
1427
1428 if (!rx_batched || (!more && skb_queue_empty(queue))) {
1429 local_bh_disable();
1430 netif_receive_skb(skb);
1431 local_bh_enable();
1432 return;
1433 }
1434
1435 spin_lock(&queue->lock);
1436 if (!more || skb_queue_len(queue) == rx_batched) {
1437 __skb_queue_head_init(&process_queue);
1438 skb_queue_splice_tail_init(queue, &process_queue);
1439 rcv = true;
1440 } else {
1441 __skb_queue_tail(queue, skb);
1442 }
1443 spin_unlock(&queue->lock);
1444
1445 if (rcv) {
1446 struct sk_buff *nskb;
1447
1448 local_bh_disable();
1449 while ((nskb = __skb_dequeue(&process_queue)))
1450 netif_receive_skb(nskb);
1451 netif_receive_skb(skb);
1452 local_bh_enable();
1453 }
1454}
1455
Jason Wang66ccbc92017-08-11 19:41:16 +08001456static bool tun_can_build_skb(struct tun_struct *tun, struct tun_file *tfile,
1457 int len, int noblock, bool zerocopy)
1458{
1459 if ((tun->flags & TUN_TYPE_MASK) != IFF_TAP)
1460 return false;
1461
1462 if (tfile->socket.sk->sk_sndbuf != INT_MAX)
1463 return false;
1464
1465 if (!noblock)
1466 return false;
1467
1468 if (zerocopy)
1469 return false;
1470
1471 if (SKB_DATA_ALIGN(len + TUN_RX_PAD) +
1472 SKB_DATA_ALIGN(sizeof(struct skb_shared_info)) > PAGE_SIZE)
1473 return false;
1474
1475 return true;
1476}
1477
Jason Wang761876c2017-08-11 19:41:18 +08001478static struct sk_buff *tun_build_skb(struct tun_struct *tun,
1479 struct tun_file *tfile,
Jason Wang66ccbc92017-08-11 19:41:16 +08001480 struct iov_iter *from,
Jason Wang761876c2017-08-11 19:41:18 +08001481 struct virtio_net_hdr *hdr,
Jason Wang1cfe6e92017-09-04 11:36:09 +08001482 int len, int *skb_xdp)
Jason Wang66ccbc92017-08-11 19:41:16 +08001483{
Eric Dumazet0bbd7da2017-08-16 22:14:33 +08001484 struct page_frag *alloc_frag = &current->task_frag;
Jason Wang66ccbc92017-08-11 19:41:16 +08001485 struct sk_buff *skb;
Jason Wang761876c2017-08-11 19:41:18 +08001486 struct bpf_prog *xdp_prog;
Jason Wang7df13212017-09-04 11:36:08 +08001487 int buflen = SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
Jason Wang761876c2017-08-11 19:41:18 +08001488 unsigned int delta = 0;
Jason Wang66ccbc92017-08-11 19:41:16 +08001489 char *buf;
1490 size_t copied;
Jason Wang761876c2017-08-11 19:41:18 +08001491 bool xdp_xmit = false;
Jason Wang7df13212017-09-04 11:36:08 +08001492 int err, pad = TUN_RX_PAD;
1493
1494 rcu_read_lock();
1495 xdp_prog = rcu_dereference(tun->xdp_prog);
1496 if (xdp_prog)
1497 pad += TUN_HEADROOM;
1498 buflen += SKB_DATA_ALIGN(len + pad);
1499 rcu_read_unlock();
Jason Wang66ccbc92017-08-11 19:41:16 +08001500
Jason Wang63b9ab62017-10-27 11:05:44 +08001501 alloc_frag->offset = ALIGN((u64)alloc_frag->offset, SMP_CACHE_BYTES);
Jason Wang66ccbc92017-08-11 19:41:16 +08001502 if (unlikely(!skb_page_frag_refill(buflen, alloc_frag, GFP_KERNEL)))
1503 return ERR_PTR(-ENOMEM);
1504
1505 buf = (char *)page_address(alloc_frag->page) + alloc_frag->offset;
1506 copied = copy_page_from_iter(alloc_frag->page,
Jason Wang7df13212017-09-04 11:36:08 +08001507 alloc_frag->offset + pad,
Jason Wang66ccbc92017-08-11 19:41:16 +08001508 len, from);
1509 if (copied != len)
1510 return ERR_PTR(-EFAULT);
1511
Jason Wang7df13212017-09-04 11:36:08 +08001512 /* There's a small window that XDP may be set after the check
1513 * of xdp_prog above, this should be rare and for simplicity
1514 * we do XDP on skb in case the headroom is not enough.
1515 */
1516 if (hdr->gso_type || !xdp_prog)
Jason Wang1cfe6e92017-09-04 11:36:09 +08001517 *skb_xdp = 1;
Jason Wang761876c2017-08-11 19:41:18 +08001518 else
Jason Wang1cfe6e92017-09-04 11:36:09 +08001519 *skb_xdp = 0;
Jason Wang66ccbc92017-08-11 19:41:16 +08001520
Jason Wang761876c2017-08-11 19:41:18 +08001521 rcu_read_lock();
1522 xdp_prog = rcu_dereference(tun->xdp_prog);
Jason Wang1cfe6e92017-09-04 11:36:09 +08001523 if (xdp_prog && !*skb_xdp) {
Jason Wang761876c2017-08-11 19:41:18 +08001524 struct xdp_buff xdp;
1525 void *orig_data;
1526 u32 act;
1527
1528 xdp.data_hard_start = buf;
Jason Wang7df13212017-09-04 11:36:08 +08001529 xdp.data = buf + pad;
Daniel Borkmannde8f3a82017-09-25 02:25:51 +02001530 xdp_set_data_meta_invalid(&xdp);
Jason Wang761876c2017-08-11 19:41:18 +08001531 xdp.data_end = xdp.data + len;
Jesper Dangaard Brouer8bf5c4e2018-01-03 11:25:59 +01001532 xdp.rxq = &tfile->xdp_rxq;
Jason Wang761876c2017-08-11 19:41:18 +08001533 orig_data = xdp.data;
1534 act = bpf_prog_run_xdp(xdp_prog, &xdp);
1535
1536 switch (act) {
1537 case XDP_REDIRECT:
1538 get_page(alloc_frag->page);
1539 alloc_frag->offset += buflen;
1540 err = xdp_do_redirect(tun->dev, &xdp, xdp_prog);
1541 if (err)
1542 goto err_redirect;
Xin Long654d5732017-11-19 19:31:04 +08001543 rcu_read_unlock();
Jason Wang761876c2017-08-11 19:41:18 +08001544 return NULL;
1545 case XDP_TX:
1546 xdp_xmit = true;
1547 /* fall through */
1548 case XDP_PASS:
1549 delta = orig_data - xdp.data;
1550 break;
1551 default:
1552 bpf_warn_invalid_xdp_action(act);
1553 /* fall through */
1554 case XDP_ABORTED:
1555 trace_xdp_exception(tun->dev, xdp_prog, act);
1556 /* fall through */
1557 case XDP_DROP:
1558 goto err_xdp;
1559 }
1560 }
1561
1562 skb = build_skb(buf, buflen);
1563 if (!skb) {
1564 rcu_read_unlock();
1565 return ERR_PTR(-ENOMEM);
1566 }
1567
Jason Wang7df13212017-09-04 11:36:08 +08001568 skb_reserve(skb, pad - delta);
Jason Wang761876c2017-08-11 19:41:18 +08001569 skb_put(skb, len + delta);
Jason Wang66ccbc92017-08-11 19:41:16 +08001570 get_page(alloc_frag->page);
1571 alloc_frag->offset += buflen;
1572
Jason Wang761876c2017-08-11 19:41:18 +08001573 if (xdp_xmit) {
1574 skb->dev = tun->dev;
1575 generic_xdp_tx(skb, xdp_prog);
Xin Long654d5732017-11-19 19:31:04 +08001576 rcu_read_unlock();
Jason Wang761876c2017-08-11 19:41:18 +08001577 return NULL;
1578 }
1579
1580 rcu_read_unlock();
1581
Jason Wang66ccbc92017-08-11 19:41:16 +08001582 return skb;
Jason Wang761876c2017-08-11 19:41:18 +08001583
1584err_redirect:
1585 put_page(alloc_frag->page);
1586err_xdp:
1587 rcu_read_unlock();
1588 this_cpu_inc(tun->pcpu_stats->rx_dropped);
1589 return NULL;
Jason Wang66ccbc92017-08-11 19:41:16 +08001590}
1591
Linus Torvalds1da177e2005-04-16 15:20:36 -07001592/* Get packet from user space buffer */
Jason Wang54f968d2012-10-31 19:45:57 +00001593static ssize_t tun_get_user(struct tun_struct *tun, struct tun_file *tfile,
Al Virof5ff53b2014-06-19 15:36:49 -04001594 void *msg_control, struct iov_iter *from,
Jason Wang5503fce2017-01-18 15:02:03 +08001595 int noblock, bool more)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001596{
Harvey Harrison09640e632009-02-01 00:45:17 -08001597 struct tun_pi pi = { 0, cpu_to_be16(ETH_P_IP) };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598 struct sk_buff *skb;
Al Virof5ff53b2014-06-19 15:36:49 -04001599 size_t total_len = iov_iter_count(from);
Paolo Abenieaea34b2016-02-26 10:45:40 +01001600 size_t len = total_len, align = tun->align, linear;
Rusty Russellf43798c2008-07-03 03:48:02 -07001601 struct virtio_net_hdr gso = { 0 };
Paolo Abeni608b9972016-04-13 10:52:20 +02001602 struct tun_pcpu_stats *stats;
Jason Wang96f8d9e2013-11-13 14:00:39 +08001603 int good_linear;
Michael S. Tsirkin06908992012-07-20 09:23:23 +00001604 int copylen;
1605 bool zerocopy = false;
1606 int err;
Jason Wang96f84062017-12-04 17:31:23 +08001607 u32 rxhash = 0;
Jason Wang1cfe6e92017-09-04 11:36:09 +08001608 int skb_xdp = 1;
Petar Penkov90e33d42017-09-22 13:49:15 -07001609 bool frags = tun_napi_frags_enabled(tun);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001610
Eric Dumazet1bd4978a2015-12-16 08:57:37 -08001611 if (!(tun->dev->flags & IFF_UP))
1612 return -EIO;
1613
Michael S. Tsirkin40630b82014-11-19 15:17:31 +02001614 if (!(tun->flags & IFF_NO_PI)) {
Dan Carpenter15718ea2013-08-15 15:52:57 +03001615 if (len < sizeof(pi))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001616 return -EINVAL;
Dan Carpenter15718ea2013-08-15 15:52:57 +03001617 len -= sizeof(pi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001618
Al Virocbbd26b2016-11-01 22:09:04 -04001619 if (!copy_from_iter_full(&pi, sizeof(pi), from))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001620 return -EFAULT;
1621 }
1622
Michael S. Tsirkin40630b82014-11-19 15:17:31 +02001623 if (tun->flags & IFF_VNET_HDR) {
Willem de Bruijne1edab82017-02-03 18:20:48 -05001624 int vnet_hdr_sz = READ_ONCE(tun->vnet_hdr_sz);
1625
1626 if (len < vnet_hdr_sz)
Rusty Russellf43798c2008-07-03 03:48:02 -07001627 return -EINVAL;
Willem de Bruijne1edab82017-02-03 18:20:48 -05001628 len -= vnet_hdr_sz;
Rusty Russellf43798c2008-07-03 03:48:02 -07001629
Al Virocbbd26b2016-11-01 22:09:04 -04001630 if (!copy_from_iter_full(&gso, sizeof(gso), from))
Rusty Russellf43798c2008-07-03 03:48:02 -07001631 return -EFAULT;
1632
Herbert Xu49091222009-06-08 00:20:01 -07001633 if ((gso.flags & VIRTIO_NET_HDR_F_NEEDS_CSUM) &&
Michael S. Tsirkin56f0dcc2014-10-23 22:59:31 +03001634 tun16_to_cpu(tun, gso.csum_start) + tun16_to_cpu(tun, gso.csum_offset) + 2 > tun16_to_cpu(tun, gso.hdr_len))
1635 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 -07001636
Michael S. Tsirkin56f0dcc2014-10-23 22:59:31 +03001637 if (tun16_to_cpu(tun, gso.hdr_len) > len)
Rusty Russellf43798c2008-07-03 03:48:02 -07001638 return -EINVAL;
Willem de Bruijne1edab82017-02-03 18:20:48 -05001639 iov_iter_advance(from, vnet_hdr_sz - sizeof(gso));
Rusty Russellf43798c2008-07-03 03:48:02 -07001640 }
1641
Michael S. Tsirkin40630b82014-11-19 15:17:31 +02001642 if ((tun->flags & TUN_TYPE_MASK) == IFF_TAP) {
stephen hemmingera504b862011-06-08 14:33:07 +00001643 align += NET_IP_ALIGN;
Herbert Xu0eca93b2009-04-14 02:09:43 -07001644 if (unlikely(len < ETH_HLEN ||
Michael S. Tsirkin56f0dcc2014-10-23 22:59:31 +03001645 (gso.hdr_len && tun16_to_cpu(tun, gso.hdr_len) < ETH_HLEN)))
Rusty Russelle01bf1c2008-04-12 18:49:30 -07001646 return -EINVAL;
1647 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001648
Jason Wang96f8d9e2013-11-13 14:00:39 +08001649 good_linear = SKB_MAX_HEAD(align);
1650
Jason Wang88529172013-07-18 10:55:15 +08001651 if (msg_control) {
Al Virof5ff53b2014-06-19 15:36:49 -04001652 struct iov_iter i = *from;
1653
Jason Wang88529172013-07-18 10:55:15 +08001654 /* There are 256 bytes to be copied in skb, so there is
1655 * enough room for skb expand head in case it is used.
Michael S. Tsirkin06908992012-07-20 09:23:23 +00001656 * The rest of the buffer is mapped from userspace.
1657 */
Michael S. Tsirkin56f0dcc2014-10-23 22:59:31 +03001658 copylen = gso.hdr_len ? tun16_to_cpu(tun, gso.hdr_len) : GOODCOPY_LEN;
Jason Wang96f8d9e2013-11-13 14:00:39 +08001659 if (copylen > good_linear)
1660 copylen = good_linear;
Jason Wang3dd5c332013-07-10 13:43:27 +08001661 linear = copylen;
Al Virof5ff53b2014-06-19 15:36:49 -04001662 iov_iter_advance(&i, copylen);
1663 if (iov_iter_npages(&i, INT_MAX) <= MAX_SKB_FRAGS)
Jason Wang88529172013-07-18 10:55:15 +08001664 zerocopy = true;
1665 }
1666
Petar Penkov90e33d42017-09-22 13:49:15 -07001667 if (!frags && tun_can_build_skb(tun, tfile, len, noblock, zerocopy)) {
Jason Wang1cfe6e92017-09-04 11:36:09 +08001668 /* For the packet that is not easy to be processed
1669 * (e.g gso or jumbo packet), we will do it at after
1670 * skb was created with generic XDP routine.
1671 */
1672 skb = tun_build_skb(tun, tfile, from, &gso, len, &skb_xdp);
Jason Wang66ccbc92017-08-11 19:41:16 +08001673 if (IS_ERR(skb)) {
Paolo Abeni608b9972016-04-13 10:52:20 +02001674 this_cpu_inc(tun->pcpu_stats->rx_dropped);
Jason Wang66ccbc92017-08-11 19:41:16 +08001675 return PTR_ERR(skb);
1676 }
Jason Wang761876c2017-08-11 19:41:18 +08001677 if (!skb)
1678 return total_len;
Jason Wang66ccbc92017-08-11 19:41:16 +08001679 } else {
1680 if (!zerocopy) {
1681 copylen = len;
1682 if (tun16_to_cpu(tun, gso.hdr_len) > good_linear)
1683 linear = good_linear;
1684 else
1685 linear = tun16_to_cpu(tun, gso.hdr_len);
1686 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001687
Petar Penkov90e33d42017-09-22 13:49:15 -07001688 if (frags) {
1689 mutex_lock(&tfile->napi_mutex);
1690 skb = tun_napi_alloc_frags(tfile, copylen, from);
1691 /* tun_napi_alloc_frags() enforces a layout for the skb.
1692 * If zerocopy is enabled, then this layout will be
1693 * overwritten by zerocopy_sg_from_iter().
1694 */
1695 zerocopy = false;
1696 } else {
1697 skb = tun_alloc_skb(tfile, align, copylen, linear,
1698 noblock);
1699 }
1700
Jason Wang66ccbc92017-08-11 19:41:16 +08001701 if (IS_ERR(skb)) {
1702 if (PTR_ERR(skb) != -EAGAIN)
1703 this_cpu_inc(tun->pcpu_stats->rx_dropped);
Petar Penkov90e33d42017-09-22 13:49:15 -07001704 if (frags)
1705 mutex_unlock(&tfile->napi_mutex);
Jason Wang66ccbc92017-08-11 19:41:16 +08001706 return PTR_ERR(skb);
1707 }
Michael S. Tsirkin06908992012-07-20 09:23:23 +00001708
Jason Wang66ccbc92017-08-11 19:41:16 +08001709 if (zerocopy)
1710 err = zerocopy_sg_from_iter(skb, from);
1711 else
1712 err = skb_copy_datagram_from_iter(skb, 0, from, len);
1713
1714 if (err) {
1715 this_cpu_inc(tun->pcpu_stats->rx_dropped);
1716 kfree_skb(skb);
Petar Penkov90e33d42017-09-22 13:49:15 -07001717 if (frags) {
1718 tfile->napi.skb = NULL;
1719 mutex_unlock(&tfile->napi_mutex);
1720 }
1721
Jason Wang66ccbc92017-08-11 19:41:16 +08001722 return -EFAULT;
1723 }
Dave Jones8f227572006-03-11 18:49:13 -08001724 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001725
Jarno Rajahalme3e9e40e2016-11-18 15:40:38 -08001726 if (virtio_net_hdr_to_skb(skb, &gso, tun_is_little_endian(tun))) {
Paolo Abenidf10db92016-06-14 00:00:04 +02001727 this_cpu_inc(tun->pcpu_stats->rx_frame_errors);
1728 kfree_skb(skb);
Petar Penkov90e33d42017-09-22 13:49:15 -07001729 if (frags) {
1730 tfile->napi.skb = NULL;
1731 mutex_unlock(&tfile->napi_mutex);
1732 }
1733
Paolo Abenidf10db92016-06-14 00:00:04 +02001734 return -EINVAL;
1735 }
1736
Linus Torvalds1da177e2005-04-16 15:20:36 -07001737 switch (tun->flags & TUN_TYPE_MASK) {
Michael S. Tsirkin40630b82014-11-19 15:17:31 +02001738 case IFF_TUN:
1739 if (tun->flags & IFF_NO_PI) {
Alexander Potapenko2580c4c2017-09-28 11:32:37 +02001740 u8 ip_version = skb->len ? (skb->data[0] >> 4) : 0;
1741
1742 switch (ip_version) {
1743 case 4:
Ang Way Chuangf09f7ee2008-06-17 21:10:33 -07001744 pi.proto = htons(ETH_P_IP);
1745 break;
Alexander Potapenko2580c4c2017-09-28 11:32:37 +02001746 case 6:
Ang Way Chuangf09f7ee2008-06-17 21:10:33 -07001747 pi.proto = htons(ETH_P_IPV6);
1748 break;
1749 default:
Paolo Abeni608b9972016-04-13 10:52:20 +02001750 this_cpu_inc(tun->pcpu_stats->rx_dropped);
Ang Way Chuangf09f7ee2008-06-17 21:10:33 -07001751 kfree_skb(skb);
1752 return -EINVAL;
1753 }
1754 }
1755
Arnaldo Carvalho de Melo459a98e2007-03-19 15:30:44 -07001756 skb_reset_mac_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001757 skb->protocol = pi.proto;
Arnaldo Carvalho de Melo4c13eb62007-04-25 17:40:23 -07001758 skb->dev = tun->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001759 break;
Michael S. Tsirkin40630b82014-11-19 15:17:31 +02001760 case IFF_TAP:
Petar Penkov90e33d42017-09-22 13:49:15 -07001761 if (!frags)
1762 skb->protocol = eth_type_trans(skb, tun->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001763 break;
Joe Perches6403eab2011-06-03 11:51:20 +00001764 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001765
Michael S. Tsirkin06908992012-07-20 09:23:23 +00001766 /* copy skb_ubuf_info for callback when skb has no error */
1767 if (zerocopy) {
1768 skb_shinfo(skb)->destructor_arg = msg_control;
1769 skb_shinfo(skb)->tx_flags |= SKBTX_DEV_ZEROCOPY;
Pravin B Shelarc9af6db2013-02-11 09:27:41 +00001770 skb_shinfo(skb)->tx_flags |= SKBTX_SHARED_FRAG;
Jason Wangaf1cc7a2016-11-30 13:17:51 +08001771 } else if (msg_control) {
1772 struct ubuf_info *uarg = msg_control;
1773 uarg->callback(uarg, false);
Michael S. Tsirkin06908992012-07-20 09:23:23 +00001774 }
1775
Vlad Yasevich72f65102015-02-03 16:36:16 -05001776 skb_reset_network_header(skb);
Jason Wang40893fd2013-03-26 23:11:22 +00001777 skb_probe_transport_header(skb, 0);
Jason Wang38502af2013-03-25 20:19:56 +00001778
Jason Wang1cfe6e92017-09-04 11:36:09 +08001779 if (skb_xdp) {
Jason Wang761876c2017-08-11 19:41:18 +08001780 struct bpf_prog *xdp_prog;
1781 int ret;
1782
1783 rcu_read_lock();
1784 xdp_prog = rcu_dereference(tun->xdp_prog);
1785 if (xdp_prog) {
1786 ret = do_xdp_generic(xdp_prog, skb);
1787 if (ret != XDP_PASS) {
1788 rcu_read_unlock();
1789 return total_len;
1790 }
1791 }
1792 rcu_read_unlock();
1793 }
1794
Jason Wang96f84062017-12-04 17:31:23 +08001795 rcu_read_lock();
1796 if (!rcu_dereference(tun->steering_prog))
1797 rxhash = __skb_get_hash_symmetric(skb);
1798 rcu_read_unlock();
Petar Penkov94317092017-09-22 13:49:14 -07001799
Petar Penkov90e33d42017-09-22 13:49:15 -07001800 if (frags) {
1801 /* Exercise flow dissector code path. */
1802 u32 headlen = eth_get_headlen(skb->data, skb_headlen(skb));
1803
Eric Dumazet010f2452017-10-17 10:07:44 -07001804 if (unlikely(headlen > skb_headlen(skb))) {
Petar Penkov90e33d42017-09-22 13:49:15 -07001805 this_cpu_inc(tun->pcpu_stats->rx_dropped);
1806 napi_free_frags(&tfile->napi);
1807 mutex_unlock(&tfile->napi_mutex);
1808 WARN_ON(1);
1809 return -ENOMEM;
1810 }
1811
1812 local_bh_disable();
1813 napi_gro_frags(&tfile->napi);
1814 local_bh_enable();
1815 mutex_unlock(&tfile->napi_mutex);
Eric Dumazetaec72f32017-10-18 12:12:09 -07001816 } else if (tfile->napi_enabled) {
Petar Penkov94317092017-09-22 13:49:14 -07001817 struct sk_buff_head *queue = &tfile->sk.sk_write_queue;
1818 int queue_len;
1819
1820 spin_lock_bh(&queue->lock);
1821 __skb_queue_tail(queue, skb);
1822 queue_len = skb_queue_len(queue);
1823 spin_unlock(&queue->lock);
1824
1825 if (!more || queue_len > NAPI_POLL_WEIGHT)
1826 napi_schedule(&tfile->napi);
1827
1828 local_bh_enable();
1829 } else if (!IS_ENABLED(CONFIG_4KSTACKS)) {
1830 tun_rx_batched(tun, tfile, skb, more);
1831 } else {
1832 netif_rx_ni(skb);
1833 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001834
Paolo Abeni608b9972016-04-13 10:52:20 +02001835 stats = get_cpu_ptr(tun->pcpu_stats);
1836 u64_stats_update_begin(&stats->syncp);
1837 stats->rx_packets++;
1838 stats->rx_bytes += len;
1839 u64_stats_update_end(&stats->syncp);
1840 put_cpu_ptr(stats);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001841
Jason Wang96f84062017-12-04 17:31:23 +08001842 if (rxhash)
1843 tun_flow_update(tun, rxhash, tfile);
1844
Michael S. Tsirkin06908992012-07-20 09:23:23 +00001845 return total_len;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001846}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001847
Al Virof5ff53b2014-06-19 15:36:49 -04001848static ssize_t tun_chr_write_iter(struct kiocb *iocb, struct iov_iter *from)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001849{
Herbert Xu33dccbb2009-02-05 21:25:32 -08001850 struct file *file = iocb->ki_filp;
Jason Wang54f968d2012-10-31 19:45:57 +00001851 struct tun_file *tfile = file->private_data;
yuan linyu9484dc72017-09-23 22:36:52 +08001852 struct tun_struct *tun = tun_get(tfile);
Eric W. Biederman631ab462009-01-20 11:00:40 +00001853 ssize_t result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001854
1855 if (!tun)
1856 return -EBADFD;
1857
Jason Wang5503fce2017-01-18 15:02:03 +08001858 result = tun_get_user(tun, tfile, NULL, from,
1859 file->f_flags & O_NONBLOCK, false);
Eric W. Biederman631ab462009-01-20 11:00:40 +00001860
1861 tun_put(tun);
1862 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001863}
1864
Linus Torvalds1da177e2005-04-16 15:20:36 -07001865/* Put packet to the user space buffer */
stephen hemminger6f7c1562011-06-08 14:33:08 +00001866static ssize_t tun_put_user(struct tun_struct *tun,
Jason Wang54f968d2012-10-31 19:45:57 +00001867 struct tun_file *tfile,
stephen hemminger6f7c1562011-06-08 14:33:08 +00001868 struct sk_buff *skb,
Herbert Xue0b46d02014-11-07 21:22:23 +08001869 struct iov_iter *iter)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001870{
1871 struct tun_pi pi = { 0, skb->protocol };
Paolo Abeni608b9972016-04-13 10:52:20 +02001872 struct tun_pcpu_stats *stats;
Herbert Xue0b46d02014-11-07 21:22:23 +08001873 ssize_t total;
Jason Wang8c847d22014-11-13 16:54:14 +08001874 int vlan_offset = 0;
Herbert Xua8f9bfd2014-11-03 04:30:13 +08001875 int vlan_hlen = 0;
Herbert Xu2eb783c2014-11-03 04:30:14 +08001876 int vnet_hdr_sz = 0;
Herbert Xua8f9bfd2014-11-03 04:30:13 +08001877
Jiri Pirkodf8a39d2015-01-13 17:13:44 +01001878 if (skb_vlan_tag_present(skb))
Herbert Xua8f9bfd2014-11-03 04:30:13 +08001879 vlan_hlen = VLAN_HLEN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001880
Michael S. Tsirkin40630b82014-11-19 15:17:31 +02001881 if (tun->flags & IFF_VNET_HDR)
Willem de Bruijne1edab82017-02-03 18:20:48 -05001882 vnet_hdr_sz = READ_ONCE(tun->vnet_hdr_sz);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001883
Herbert Xue0b46d02014-11-07 21:22:23 +08001884 total = skb->len + vlan_hlen + vnet_hdr_sz;
1885
Michael S. Tsirkin40630b82014-11-19 15:17:31 +02001886 if (!(tun->flags & IFF_NO_PI)) {
Herbert Xue0b46d02014-11-07 21:22:23 +08001887 if (iov_iter_count(iter) < sizeof(pi))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001888 return -EINVAL;
1889
Herbert Xue0b46d02014-11-07 21:22:23 +08001890 total += sizeof(pi);
1891 if (iov_iter_count(iter) < total) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001892 /* Packet will be striped */
1893 pi.flags |= TUN_PKT_STRIP;
1894 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001895
Herbert Xue0b46d02014-11-07 21:22:23 +08001896 if (copy_to_iter(&pi, sizeof(pi), iter) != sizeof(pi))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001897 return -EFAULT;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001898 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001899
Herbert Xu2eb783c2014-11-03 04:30:14 +08001900 if (vnet_hdr_sz) {
Jarno Rajahalme9403cd72016-11-18 15:40:40 -08001901 struct virtio_net_hdr gso;
Mike Rapoport34166092016-06-08 16:09:20 +03001902
Herbert Xue0b46d02014-11-07 21:22:23 +08001903 if (iov_iter_count(iter) < vnet_hdr_sz)
Rusty Russellf43798c2008-07-03 03:48:02 -07001904 return -EINVAL;
1905
Jarno Rajahalme3e9e40e2016-11-18 15:40:38 -08001906 if (virtio_net_hdr_from_skb(skb, &gso,
Jason Wang6391a442017-01-20 14:32:42 +08001907 tun_is_little_endian(tun), true)) {
Rusty Russellf43798c2008-07-03 03:48:02 -07001908 struct skb_shared_info *sinfo = skb_shinfo(skb);
Mike Rapoport34166092016-06-08 16:09:20 +03001909 pr_err("unexpected GSO type: "
1910 "0x%x, gso_size %d, hdr_len %d\n",
1911 sinfo->gso_type, tun16_to_cpu(tun, gso.gso_size),
1912 tun16_to_cpu(tun, gso.hdr_len));
1913 print_hex_dump(KERN_ERR, "tun: ",
1914 DUMP_PREFIX_NONE,
1915 16, 1, skb->head,
1916 min((int)tun16_to_cpu(tun, gso.hdr_len), 64), true);
1917 WARN_ON_ONCE(1);
1918 return -EINVAL;
1919 }
Rusty Russellf43798c2008-07-03 03:48:02 -07001920
Herbert Xue0b46d02014-11-07 21:22:23 +08001921 if (copy_to_iter(&gso, sizeof(gso), iter) != sizeof(gso))
Rusty Russellf43798c2008-07-03 03:48:02 -07001922 return -EFAULT;
Jason Wang8c847d22014-11-13 16:54:14 +08001923
1924 iov_iter_advance(iter, vnet_hdr_sz - sizeof(gso));
Rusty Russellf43798c2008-07-03 03:48:02 -07001925 }
1926
Herbert Xua8f9bfd2014-11-03 04:30:13 +08001927 if (vlan_hlen) {
Herbert Xue0b46d02014-11-07 21:22:23 +08001928 int ret;
Jason Wang6680ec62013-07-25 13:00:33 +08001929 struct {
1930 __be16 h_vlan_proto;
1931 __be16 h_vlan_TCI;
1932 } veth;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001933
Jason Wang6680ec62013-07-25 13:00:33 +08001934 veth.h_vlan_proto = skb->vlan_proto;
Jiri Pirkodf8a39d2015-01-13 17:13:44 +01001935 veth.h_vlan_TCI = htons(skb_vlan_tag_get(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001936
Jason Wang6680ec62013-07-25 13:00:33 +08001937 vlan_offset = offsetof(struct vlan_ethhdr, h_vlan_proto);
Jason Wang6680ec62013-07-25 13:00:33 +08001938
Herbert Xue0b46d02014-11-07 21:22:23 +08001939 ret = skb_copy_datagram_iter(skb, 0, iter, vlan_offset);
1940 if (ret || !iov_iter_count(iter))
Jason Wang6680ec62013-07-25 13:00:33 +08001941 goto done;
1942
Herbert Xue0b46d02014-11-07 21:22:23 +08001943 ret = copy_to_iter(&veth, sizeof(veth), iter);
1944 if (ret != sizeof(veth) || !iov_iter_count(iter))
Jason Wang6680ec62013-07-25 13:00:33 +08001945 goto done;
1946 }
1947
Herbert Xue0b46d02014-11-07 21:22:23 +08001948 skb_copy_datagram_iter(skb, vlan_offset, iter, skb->len - vlan_offset);
Jason Wang6680ec62013-07-25 13:00:33 +08001949
1950done:
Paolo Abeni608b9972016-04-13 10:52:20 +02001951 /* caller is in process context, */
1952 stats = get_cpu_ptr(tun->pcpu_stats);
1953 u64_stats_update_begin(&stats->syncp);
1954 stats->tx_packets++;
1955 stats->tx_bytes += skb->len + vlan_hlen;
1956 u64_stats_update_end(&stats->syncp);
1957 put_cpu_ptr(tun->pcpu_stats);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001958
1959 return total;
1960}
1961
Jason Wang1576d982016-06-30 14:45:36 +08001962static struct sk_buff *tun_ring_recv(struct tun_file *tfile, int noblock,
1963 int *err)
1964{
1965 DECLARE_WAITQUEUE(wait, current);
1966 struct sk_buff *skb = NULL;
Jason Wangf48cc6b2016-07-04 13:53:38 +08001967 int error = 0;
Jason Wang1576d982016-06-30 14:45:36 +08001968
1969 skb = skb_array_consume(&tfile->tx_array);
1970 if (skb)
1971 goto out;
1972 if (noblock) {
Jason Wangf48cc6b2016-07-04 13:53:38 +08001973 error = -EAGAIN;
Jason Wang1576d982016-06-30 14:45:36 +08001974 goto out;
1975 }
1976
1977 add_wait_queue(&tfile->wq.wait, &wait);
1978 current->state = TASK_INTERRUPTIBLE;
1979
1980 while (1) {
1981 skb = skb_array_consume(&tfile->tx_array);
1982 if (skb)
1983 break;
1984 if (signal_pending(current)) {
Jason Wangf48cc6b2016-07-04 13:53:38 +08001985 error = -ERESTARTSYS;
Jason Wang1576d982016-06-30 14:45:36 +08001986 break;
1987 }
1988 if (tfile->socket.sk->sk_shutdown & RCV_SHUTDOWN) {
Jason Wangf48cc6b2016-07-04 13:53:38 +08001989 error = -EFAULT;
Jason Wang1576d982016-06-30 14:45:36 +08001990 break;
1991 }
1992
1993 schedule();
1994 }
1995
1996 current->state = TASK_RUNNING;
1997 remove_wait_queue(&tfile->wq.wait, &wait);
1998
1999out:
Jason Wangf48cc6b2016-07-04 13:53:38 +08002000 *err = error;
Jason Wang1576d982016-06-30 14:45:36 +08002001 return skb;
2002}
2003
Jason Wang54f968d2012-10-31 19:45:57 +00002004static ssize_t tun_do_read(struct tun_struct *tun, struct tun_file *tfile,
Al Viro9b067032014-11-07 13:52:07 -05002005 struct iov_iter *to,
Jason Wangac77cfd2017-05-17 12:14:43 +08002006 int noblock, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002007{
Al Viro9b067032014-11-07 13:52:07 -05002008 ssize_t ret;
Jason Wang1576d982016-06-30 14:45:36 +08002009 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002010
Rami Rosen3872baf2012-11-25 22:07:41 +00002011 tun_debug(KERN_INFO, tun, "tun_do_read\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002012
Wei Xuc33ee152017-12-01 05:10:37 -05002013 if (!iov_iter_count(to)) {
2014 if (skb)
2015 kfree_skb(skb);
Al Viro9b067032014-11-07 13:52:07 -05002016 return 0;
Wei Xuc33ee152017-12-01 05:10:37 -05002017 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002018
Jason Wangac77cfd2017-05-17 12:14:43 +08002019 if (!skb) {
2020 /* Read frames from ring */
2021 skb = tun_ring_recv(tfile, noblock, &err);
2022 if (!skb)
2023 return err;
2024 }
Herbert Xue0b46d02014-11-07 21:22:23 +08002025
Al Viro9b067032014-11-07 13:52:07 -05002026 ret = tun_put_user(tun, tfile, skb, to);
Jason Wangf51a5e82014-12-01 16:53:15 +08002027 if (unlikely(ret < 0))
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -07002028 kfree_skb(skb);
Jason Wangf51a5e82014-12-01 16:53:15 +08002029 else
2030 consume_skb(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002031
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00002032 return ret;
2033}
2034
Al Viro9b067032014-11-07 13:52:07 -05002035static ssize_t tun_chr_read_iter(struct kiocb *iocb, struct iov_iter *to)
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00002036{
2037 struct file *file = iocb->ki_filp;
2038 struct tun_file *tfile = file->private_data;
yuan linyu9484dc72017-09-23 22:36:52 +08002039 struct tun_struct *tun = tun_get(tfile);
Al Viro9b067032014-11-07 13:52:07 -05002040 ssize_t len = iov_iter_count(to), ret;
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00002041
2042 if (!tun)
2043 return -EBADFD;
Jason Wangac77cfd2017-05-17 12:14:43 +08002044 ret = tun_do_read(tun, tfile, to, file->f_flags & O_NONBLOCK, NULL);
David S. Miller42404c02013-12-10 22:05:45 -05002045 ret = min_t(ssize_t, ret, len);
Zhi Yong Wud0b7da8a2013-12-06 14:16:51 +08002046 if (ret > 0)
2047 iocb->ki_pos = ret;
Eric W. Biederman631ab462009-01-20 11:00:40 +00002048 tun_put(tun);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002049 return ret;
2050}
2051
Jason Wang96f84062017-12-04 17:31:23 +08002052static void tun_steering_prog_free(struct rcu_head *rcu)
2053{
2054 struct tun_steering_prog *prog = container_of(rcu,
2055 struct tun_steering_prog, rcu);
2056
2057 bpf_prog_destroy(prog->prog);
2058 kfree(prog);
2059}
2060
2061static int __tun_set_steering_ebpf(struct tun_struct *tun,
2062 struct bpf_prog *prog)
2063{
2064 struct tun_steering_prog *old, *new = NULL;
2065
2066 if (prog) {
2067 new = kmalloc(sizeof(*new), GFP_KERNEL);
2068 if (!new)
2069 return -ENOMEM;
2070 new->prog = prog;
2071 }
2072
Jason Wang124da8f2017-12-08 12:02:30 +08002073 spin_lock_bh(&tun->lock);
2074 old = rcu_dereference_protected(tun->steering_prog,
2075 lockdep_is_held(&tun->lock));
Jason Wang96f84062017-12-04 17:31:23 +08002076 rcu_assign_pointer(tun->steering_prog, new);
Jason Wang124da8f2017-12-08 12:02:30 +08002077 spin_unlock_bh(&tun->lock);
Jason Wang96f84062017-12-04 17:31:23 +08002078
2079 if (old)
2080 call_rcu(&old->rcu, tun_steering_prog_free);
2081
2082 return 0;
2083}
2084
Jason Wang96442e422012-10-31 19:46:02 +00002085static void tun_free_netdev(struct net_device *dev)
2086{
2087 struct tun_struct *tun = netdev_priv(dev);
2088
Jason Wang4008e972012-12-13 23:53:30 +00002089 BUG_ON(!(list_empty(&tun->disabled)));
Paolo Abeni608b9972016-04-13 10:52:20 +02002090 free_percpu(tun->pcpu_stats);
Jason Wang96442e422012-10-31 19:46:02 +00002091 tun_flow_uninit(tun);
Paul Moore5dbbaf22013-01-14 07:12:19 +00002092 security_tun_dev_free_security(tun->security);
Jason Wang96f84062017-12-04 17:31:23 +08002093 __tun_set_steering_ebpf(tun, NULL);
Jason Wang96442e422012-10-31 19:46:02 +00002094}
2095
Linus Torvalds1da177e2005-04-16 15:20:36 -07002096static void tun_setup(struct net_device *dev)
2097{
2098 struct tun_struct *tun = netdev_priv(dev);
2099
Eric W. Biederman0625c882012-02-07 16:48:55 -08002100 tun->owner = INVALID_UID;
2101 tun->group = INVALID_GID;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002102
Linus Torvalds1da177e2005-04-16 15:20:36 -07002103 dev->ethtool_ops = &tun_ethtool_ops;
David S. Millercf124db2017-05-08 12:52:56 -04002104 dev->needs_free_netdev = true;
2105 dev->priv_destructor = tun_free_netdev;
Jason Wang016adb72016-04-08 13:26:48 +08002106 /* We prefer our own queue length */
2107 dev->tx_queue_len = TUN_READQ_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002108}
2109
Eric W. Biedermanf019a7a2009-01-21 16:02:16 -08002110/* Trivial set of netlink ops to allow deleting tun or tap
2111 * device with netlink.
2112 */
Matthias Schiffera8b8a8892017-06-25 23:56:01 +02002113static int tun_validate(struct nlattr *tb[], struct nlattr *data[],
2114 struct netlink_ext_ack *extack)
Eric W. Biedermanf019a7a2009-01-21 16:02:16 -08002115{
2116 return -EINVAL;
2117}
2118
2119static struct rtnl_link_ops tun_link_ops __read_mostly = {
2120 .kind = DRV_NAME,
2121 .priv_size = sizeof(struct tun_struct),
2122 .setup = tun_setup,
2123 .validate = tun_validate,
2124};
2125
Herbert Xu33dccbb2009-02-05 21:25:32 -08002126static void tun_sock_write_space(struct sock *sk)
2127{
Jason Wang54f968d2012-10-31 19:45:57 +00002128 struct tun_file *tfile;
Eric Dumazet43815482010-04-29 11:01:49 +00002129 wait_queue_head_t *wqueue;
Herbert Xu33dccbb2009-02-05 21:25:32 -08002130
2131 if (!sock_writeable(sk))
2132 return;
2133
Eric Dumazet9cd3e072015-11-29 20:03:10 -08002134 if (!test_and_clear_bit(SOCKWQ_ASYNC_NOSPACE, &sk->sk_socket->flags))
Herbert Xu33dccbb2009-02-05 21:25:32 -08002135 return;
2136
Eric Dumazet43815482010-04-29 11:01:49 +00002137 wqueue = sk_sleep(sk);
2138 if (wqueue && waitqueue_active(wqueue))
2139 wake_up_interruptible_sync_poll(wqueue, POLLOUT |
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00002140 POLLWRNORM | POLLWRBAND);
Herbert Xuc722c622009-06-03 21:45:55 -07002141
Jason Wang54f968d2012-10-31 19:45:57 +00002142 tfile = container_of(sk, struct tun_file, sk);
2143 kill_fasync(&tfile->fasync, SIGIO, POLL_OUT);
Herbert Xu33dccbb2009-02-05 21:25:32 -08002144}
2145
Ying Xue1b784142015-03-02 15:37:48 +08002146static int tun_sendmsg(struct socket *sock, struct msghdr *m, size_t total_len)
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00002147{
Jason Wang54f968d2012-10-31 19:45:57 +00002148 int ret;
2149 struct tun_file *tfile = container_of(sock, struct tun_file, socket);
yuan linyu9484dc72017-09-23 22:36:52 +08002150 struct tun_struct *tun = tun_get(tfile);
Jason Wang54f968d2012-10-31 19:45:57 +00002151
2152 if (!tun)
2153 return -EBADFD;
Al Virof5ff53b2014-06-19 15:36:49 -04002154
Al Viroc0371da2014-11-24 10:42:55 -05002155 ret = tun_get_user(tun, tfile, m->msg_control, &m->msg_iter,
Jason Wang5503fce2017-01-18 15:02:03 +08002156 m->msg_flags & MSG_DONTWAIT,
2157 m->msg_flags & MSG_MORE);
Jason Wang54f968d2012-10-31 19:45:57 +00002158 tun_put(tun);
2159 return ret;
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00002160}
2161
Ying Xue1b784142015-03-02 15:37:48 +08002162static int tun_recvmsg(struct socket *sock, struct msghdr *m, size_t total_len,
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00002163 int flags)
2164{
Jason Wang54f968d2012-10-31 19:45:57 +00002165 struct tun_file *tfile = container_of(sock, struct tun_file, socket);
yuan linyu9484dc72017-09-23 22:36:52 +08002166 struct tun_struct *tun = tun_get(tfile);
Wei Xuc33ee152017-12-01 05:10:37 -05002167 struct sk_buff *skb = m->msg_control;
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00002168 int ret;
Jason Wang54f968d2012-10-31 19:45:57 +00002169
Wei Xuc33ee152017-12-01 05:10:37 -05002170 if (!tun) {
2171 ret = -EBADFD;
2172 goto out_free_skb;
2173 }
Jason Wang54f968d2012-10-31 19:45:57 +00002174
Richard Cochraneda29772013-07-19 19:40:10 +02002175 if (flags & ~(MSG_DONTWAIT|MSG_TRUNC|MSG_ERRQUEUE)) {
Gao feng3811ae72013-04-24 21:59:23 +00002176 ret = -EINVAL;
Wei Xuc33ee152017-12-01 05:10:37 -05002177 goto out_put_tun;
Gao feng3811ae72013-04-24 21:59:23 +00002178 }
Richard Cochraneda29772013-07-19 19:40:10 +02002179 if (flags & MSG_ERRQUEUE) {
2180 ret = sock_recv_errqueue(sock->sk, m, total_len,
2181 SOL_PACKET, TUN_TX_TIMESTAMP);
2182 goto out;
2183 }
Wei Xuc33ee152017-12-01 05:10:37 -05002184 ret = tun_do_read(tun, tfile, &m->msg_iter, flags & MSG_DONTWAIT, skb);
Alex Gartrell87897932014-12-25 23:05:03 -08002185 if (ret > (ssize_t)total_len) {
David S. Miller42404c02013-12-10 22:05:45 -05002186 m->msg_flags |= MSG_TRUNC;
2187 ret = flags & MSG_TRUNC ? ret : total_len;
2188 }
Gao feng3811ae72013-04-24 21:59:23 +00002189out:
Jason Wang54f968d2012-10-31 19:45:57 +00002190 tun_put(tun);
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00002191 return ret;
Wei Xuc33ee152017-12-01 05:10:37 -05002192
2193out_put_tun:
2194 tun_put(tun);
2195out_free_skb:
2196 if (skb)
2197 kfree_skb(skb);
2198 return ret;
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00002199}
2200
Jason Wang1576d982016-06-30 14:45:36 +08002201static int tun_peek_len(struct socket *sock)
2202{
2203 struct tun_file *tfile = container_of(sock, struct tun_file, socket);
2204 struct tun_struct *tun;
2205 int ret = 0;
2206
yuan linyu9484dc72017-09-23 22:36:52 +08002207 tun = tun_get(tfile);
Jason Wang1576d982016-06-30 14:45:36 +08002208 if (!tun)
2209 return 0;
2210
2211 ret = skb_array_peek_len(&tfile->tx_array);
2212 tun_put(tun);
2213
2214 return ret;
2215}
2216
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00002217/* Ops structure to mimic raw sockets with tun */
2218static const struct proto_ops tun_socket_ops = {
Jason Wang1576d982016-06-30 14:45:36 +08002219 .peek_len = tun_peek_len,
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00002220 .sendmsg = tun_sendmsg,
2221 .recvmsg = tun_recvmsg,
2222};
2223
Herbert Xu33dccbb2009-02-05 21:25:32 -08002224static struct proto tun_proto = {
2225 .name = "tun",
2226 .owner = THIS_MODULE,
Jason Wang54f968d2012-10-31 19:45:57 +00002227 .obj_size = sizeof(struct tun_file),
Herbert Xu33dccbb2009-02-05 21:25:32 -08002228};
Eric W. Biedermanf019a7a2009-01-21 16:02:16 -08002229
David Woodhouse980c9e82009-05-09 22:54:21 -07002230static int tun_flags(struct tun_struct *tun)
2231{
Michael S. Tsirkin031f5e032014-11-19 14:44:40 +02002232 return tun->flags & (TUN_FEATURES | IFF_PERSIST | IFF_TUN | IFF_TAP);
David Woodhouse980c9e82009-05-09 22:54:21 -07002233}
2234
2235static ssize_t tun_show_flags(struct device *dev, struct device_attribute *attr,
2236 char *buf)
2237{
2238 struct tun_struct *tun = netdev_priv(to_net_dev(dev));
2239 return sprintf(buf, "0x%x\n", tun_flags(tun));
2240}
2241
2242static ssize_t tun_show_owner(struct device *dev, struct device_attribute *attr,
2243 char *buf)
2244{
2245 struct tun_struct *tun = netdev_priv(to_net_dev(dev));
Eric W. Biederman0625c882012-02-07 16:48:55 -08002246 return uid_valid(tun->owner)?
2247 sprintf(buf, "%u\n",
2248 from_kuid_munged(current_user_ns(), tun->owner)):
2249 sprintf(buf, "-1\n");
David Woodhouse980c9e82009-05-09 22:54:21 -07002250}
2251
2252static ssize_t tun_show_group(struct device *dev, struct device_attribute *attr,
2253 char *buf)
2254{
2255 struct tun_struct *tun = netdev_priv(to_net_dev(dev));
Eric W. Biederman0625c882012-02-07 16:48:55 -08002256 return gid_valid(tun->group) ?
2257 sprintf(buf, "%u\n",
2258 from_kgid_munged(current_user_ns(), tun->group)):
2259 sprintf(buf, "-1\n");
David Woodhouse980c9e82009-05-09 22:54:21 -07002260}
2261
2262static DEVICE_ATTR(tun_flags, 0444, tun_show_flags, NULL);
2263static DEVICE_ATTR(owner, 0444, tun_show_owner, NULL);
2264static DEVICE_ATTR(group, 0444, tun_show_group, NULL);
2265
Takashi Iwaic4d33e22015-02-04 14:37:34 +01002266static struct attribute *tun_dev_attrs[] = {
2267 &dev_attr_tun_flags.attr,
2268 &dev_attr_owner.attr,
2269 &dev_attr_group.attr,
2270 NULL
2271};
2272
2273static const struct attribute_group tun_attr_group = {
2274 .attrs = tun_dev_attrs
2275};
2276
Pavel Emelyanovd647a592008-04-16 00:41:16 -07002277static int tun_set_iff(struct net *net, struct file *file, struct ifreq *ifr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002278{
2279 struct tun_struct *tun;
Jason Wang54f968d2012-10-31 19:45:57 +00002280 struct tun_file *tfile = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002281 struct net_device *dev;
2282 int err;
2283
Jason Wang7c0c3b12013-01-11 16:59:33 +00002284 if (tfile->detached)
2285 return -EINVAL;
2286
Petar Penkov90e33d42017-09-22 13:49:15 -07002287 if ((ifr->ifr_flags & IFF_NAPI_FRAGS)) {
2288 if (!capable(CAP_NET_ADMIN))
2289 return -EPERM;
2290
2291 if (!(ifr->ifr_flags & IFF_NAPI) ||
2292 (ifr->ifr_flags & TUN_TYPE_MASK) != IFF_TAP)
2293 return -EINVAL;
2294 }
2295
Eric W. Biederman74a3e5a2009-01-20 10:56:20 +00002296 dev = __dev_get_by_name(net, ifr->ifr_name);
2297 if (dev) {
David Woodhousef85ba782009-04-27 03:23:54 -07002298 if (ifr->ifr_flags & IFF_TUN_EXCL)
2299 return -EBUSY;
Eric W. Biederman74a3e5a2009-01-20 10:56:20 +00002300 if ((ifr->ifr_flags & IFF_TUN) && dev->netdev_ops == &tun_netdev_ops)
2301 tun = netdev_priv(dev);
2302 else if ((ifr->ifr_flags & IFF_TAP) && dev->netdev_ops == &tap_netdev_ops)
2303 tun = netdev_priv(dev);
2304 else
2305 return -EINVAL;
2306
Jason Wang8e6d91a2013-05-28 18:32:11 +00002307 if (!!(ifr->ifr_flags & IFF_MULTI_QUEUE) !=
Michael S. Tsirkin40630b82014-11-19 15:17:31 +02002308 !!(tun->flags & IFF_MULTI_QUEUE))
Jason Wang8e6d91a2013-05-28 18:32:11 +00002309 return -EINVAL;
2310
Jason Wangcde8b152012-10-31 19:46:01 +00002311 if (tun_not_capable(tun))
Paul Moore2b980db2009-08-28 18:12:43 -04002312 return -EPERM;
Paul Moore5dbbaf22013-01-14 07:12:19 +00002313 err = security_tun_dev_open(tun->security);
Paul Moore2b980db2009-08-28 18:12:43 -04002314 if (err < 0)
2315 return err;
2316
Petar Penkov94317092017-09-22 13:49:14 -07002317 err = tun_attach(tun, file, ifr->ifr_flags & IFF_NOFILTER,
2318 ifr->ifr_flags & IFF_NAPI);
Eric W. Biedermana7385ba2009-01-20 10:57:48 +00002319 if (err < 0)
2320 return err;
Jason Wang4008e972012-12-13 23:53:30 +00002321
Michael S. Tsirkin40630b82014-11-19 15:17:31 +02002322 if (tun->flags & IFF_MULTI_QUEUE &&
Jason Wange8dbad62013-04-22 20:40:39 +00002323 (tun->numqueues + tun->numdisabled > 1)) {
2324 /* One or more queue has already been attached, no need
2325 * to initialize the device again.
2326 */
2327 return 0;
2328 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002329 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002330 else {
2331 char *name;
2332 unsigned long flags = 0;
Jason Wangedfb6a12013-01-23 03:59:12 +00002333 int queues = ifr->ifr_flags & IFF_MULTI_QUEUE ?
2334 MAX_TAP_QUEUES : 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002335
Eric W. Biedermanc260b772012-11-18 21:34:11 +00002336 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
David Woodhouseca6bb5d2006-06-22 16:07:52 -07002337 return -EPERM;
Paul Moore2b980db2009-08-28 18:12:43 -04002338 err = security_tun_dev_create();
2339 if (err < 0)
2340 return err;
David Woodhouseca6bb5d2006-06-22 16:07:52 -07002341
Linus Torvalds1da177e2005-04-16 15:20:36 -07002342 /* Set dev type */
2343 if (ifr->ifr_flags & IFF_TUN) {
2344 /* TUN device */
Michael S. Tsirkin40630b82014-11-19 15:17:31 +02002345 flags |= IFF_TUN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002346 name = "tun%d";
2347 } else if (ifr->ifr_flags & IFF_TAP) {
2348 /* TAP device */
Michael S. Tsirkin40630b82014-11-19 15:17:31 +02002349 flags |= IFF_TAP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002350 name = "tap%d";
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002351 } else
Kusanagi Kouichi36989b92009-09-16 21:36:13 +00002352 return -EINVAL;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002353
Linus Torvalds1da177e2005-04-16 15:20:36 -07002354 if (*ifr->ifr_name)
2355 name = ifr->ifr_name;
2356
Jason Wangc8d68e62012-10-31 19:46:00 +00002357 dev = alloc_netdev_mqs(sizeof(struct tun_struct), name,
Tom Gundersenc835a672014-07-14 16:37:24 +02002358 NET_NAME_UNKNOWN, tun_setup, queues,
2359 queues);
Jason Wangedfb6a12013-01-23 03:59:12 +00002360
Linus Torvalds1da177e2005-04-16 15:20:36 -07002361 if (!dev)
2362 return -ENOMEM;
Cong Wang0ad646c2017-10-13 11:58:53 -07002363 err = dev_get_valid_name(net, dev, name);
Julien Gomes5c25f652017-10-25 11:50:50 -07002364 if (err < 0)
Cong Wang0ad646c2017-10-13 11:58:53 -07002365 goto err_free_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002366
Pavel Emelyanovfc54c652008-04-16 00:41:53 -07002367 dev_net_set(dev, net);
Eric W. Biedermanf019a7a2009-01-21 16:02:16 -08002368 dev->rtnl_link_ops = &tun_link_ops;
Pavel Emelyanovfb7589a2013-08-21 14:31:38 +04002369 dev->ifindex = tfile->ifindex;
Takashi Iwaic4d33e22015-02-04 14:37:34 +01002370 dev->sysfs_groups[0] = &tun_attr_group;
Stephen Hemminger758e43b2008-11-19 22:10:37 -08002371
Linus Torvalds1da177e2005-04-16 15:20:36 -07002372 tun = netdev_priv(dev);
2373 tun->dev = dev;
2374 tun->flags = flags;
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -07002375 tun->txflt.count = 0;
Michael S. Tsirkind9d52b52010-03-17 17:45:01 +02002376 tun->vnet_hdr_sz = sizeof(struct virtio_net_hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002377
Paolo Abenieaea34b2016-02-26 10:45:40 +01002378 tun->align = NET_SKB_PAD;
Jason Wang54f968d2012-10-31 19:45:57 +00002379 tun->filter_attached = false;
2380 tun->sndbuf = tfile->socket.sk->sk_sndbuf;
Jason Wang5503fce2017-01-18 15:02:03 +08002381 tun->rx_batched = 0;
Jason Wang96f84062017-12-04 17:31:23 +08002382 RCU_INIT_POINTER(tun->steering_prog, NULL);
Herbert Xu33dccbb2009-02-05 21:25:32 -08002383
Paolo Abeni608b9972016-04-13 10:52:20 +02002384 tun->pcpu_stats = netdev_alloc_pcpu_stats(struct tun_pcpu_stats);
2385 if (!tun->pcpu_stats) {
2386 err = -ENOMEM;
2387 goto err_free_dev;
2388 }
2389
Jason Wang96442e422012-10-31 19:46:02 +00002390 spin_lock_init(&tun->lock);
2391
Paul Moore5dbbaf22013-01-14 07:12:19 +00002392 err = security_tun_dev_alloc_security(&tun->security);
2393 if (err < 0)
Paolo Abeni608b9972016-04-13 10:52:20 +02002394 goto err_free_stat;
Paul Moore2b980db2009-08-28 18:12:43 -04002395
Linus Torvalds1da177e2005-04-16 15:20:36 -07002396 tun_net_init(dev);
Pavel Emelyanov944a1372013-06-11 17:01:08 +04002397 tun_flow_init(tun);
Jason Wang96442e422012-10-31 19:46:02 +00002398
Michał Mirosław88255372011-04-19 06:13:10 +00002399 dev->hw_features = NETIF_F_SG | NETIF_F_FRAGLIST |
Jason Wang6680ec62013-07-25 13:00:33 +08002400 TUN_USER_FEATURES | NETIF_F_HW_VLAN_CTAG_TX |
2401 NETIF_F_HW_VLAN_STAG_TX;
Paolo Abeni2a2bbf12016-04-14 18:39:39 +02002402 dev->features = dev->hw_features | NETIF_F_LLTX;
Fernando Luis Vazquez Cao6671b222014-02-18 21:20:09 +09002403 dev->vlan_features = dev->features &
2404 ~(NETIF_F_HW_VLAN_CTAG_TX |
2405 NETIF_F_HW_VLAN_STAG_TX);
Michał Mirosław88255372011-04-19 06:13:10 +00002406
Jason Wang4008e972012-12-13 23:53:30 +00002407 INIT_LIST_HEAD(&tun->disabled);
Petar Penkov94317092017-09-22 13:49:14 -07002408 err = tun_attach(tun, file, false, ifr->ifr_flags & IFF_NAPI);
Jason Wangeb0fb362012-12-02 17:19:45 +00002409 if (err < 0)
Jason Wang662ca432013-09-11 18:09:48 +08002410 goto err_free_flow;
Jason Wangeb0fb362012-12-02 17:19:45 +00002411
Linus Torvalds1da177e2005-04-16 15:20:36 -07002412 err = register_netdevice(tun->dev);
2413 if (err < 0)
Jason Wang662ca432013-09-11 18:09:48 +08002414 goto err_detach;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002415 }
2416
Michael S. Tsirkinaf668b32013-01-28 00:38:02 +00002417 netif_carrier_on(tun->dev);
2418
Joe Perches6b8a66e2011-03-02 07:18:10 +00002419 tun_debug(KERN_INFO, tun, "tun_set_iff\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002420
Michael S. Tsirkin031f5e032014-11-19 14:44:40 +02002421 tun->flags = (tun->flags & ~TUN_FEATURES) |
2422 (ifr->ifr_flags & TUN_FEATURES);
Jason Wangc8d68e62012-10-31 19:46:00 +00002423
Max Krasnyanskye35259a2008-07-10 16:59:11 -07002424 /* Make sure persistent devices do not get stuck in
2425 * xoff state.
2426 */
2427 if (netif_running(tun->dev))
Jason Wangc8d68e62012-10-31 19:46:00 +00002428 netif_tx_wake_all_queues(tun->dev);
Max Krasnyanskye35259a2008-07-10 16:59:11 -07002429
Linus Torvalds1da177e2005-04-16 15:20:36 -07002430 strcpy(ifr->ifr_name, tun->dev->name);
2431 return 0;
2432
Jason Wang662ca432013-09-11 18:09:48 +08002433err_detach:
2434 tun_detach_all(dev);
Eric Dumazetff244c62017-08-18 13:39:56 -07002435 /* register_netdevice() already called tun_free_netdev() */
2436 goto err_free_dev;
2437
Jason Wang662ca432013-09-11 18:09:48 +08002438err_free_flow:
2439 tun_flow_uninit(tun);
2440 security_tun_dev_free_security(tun->security);
Paolo Abeni608b9972016-04-13 10:52:20 +02002441err_free_stat:
2442 free_percpu(tun->pcpu_stats);
Jason Wang662ca432013-09-11 18:09:48 +08002443err_free_dev:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002444 free_netdev(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002445 return err;
2446}
2447
Rami Rosen9ce99cf2012-11-23 03:58:10 +00002448static void tun_get_iff(struct net *net, struct tun_struct *tun,
Herbert Xu876bfd42009-08-06 14:22:44 +00002449 struct ifreq *ifr)
Mark McLoughline3b99552008-08-15 15:09:56 -07002450{
Joe Perches6b8a66e2011-03-02 07:18:10 +00002451 tun_debug(KERN_INFO, tun, "tun_get_iff\n");
Mark McLoughline3b99552008-08-15 15:09:56 -07002452
2453 strcpy(ifr->ifr_name, tun->dev->name);
2454
David Woodhouse980c9e82009-05-09 22:54:21 -07002455 ifr->ifr_flags = tun_flags(tun);
Mark McLoughline3b99552008-08-15 15:09:56 -07002456
Mark McLoughline3b99552008-08-15 15:09:56 -07002457}
2458
Rusty Russell5228ddc2008-07-03 03:46:16 -07002459/* This is like a cut-down ethtool ops, except done via tun fd so no
2460 * privs required. */
Michał Mirosław88255372011-04-19 06:13:10 +00002461static int set_offload(struct tun_struct *tun, unsigned long arg)
Rusty Russell5228ddc2008-07-03 03:46:16 -07002462{
Michał Mirosławc8f44af2011-11-15 15:29:55 +00002463 netdev_features_t features = 0;
Rusty Russell5228ddc2008-07-03 03:46:16 -07002464
2465 if (arg & TUN_F_CSUM) {
Michał Mirosław88255372011-04-19 06:13:10 +00002466 features |= NETIF_F_HW_CSUM;
Rusty Russell5228ddc2008-07-03 03:46:16 -07002467 arg &= ~TUN_F_CSUM;
2468
2469 if (arg & (TUN_F_TSO4|TUN_F_TSO6)) {
2470 if (arg & TUN_F_TSO_ECN) {
2471 features |= NETIF_F_TSO_ECN;
2472 arg &= ~TUN_F_TSO_ECN;
2473 }
2474 if (arg & TUN_F_TSO4)
2475 features |= NETIF_F_TSO;
2476 if (arg & TUN_F_TSO6)
2477 features |= NETIF_F_TSO6;
2478 arg &= ~(TUN_F_TSO4|TUN_F_TSO6);
2479 }
Willem de Bruijn0c19f8462017-11-21 10:22:25 -05002480
2481 arg &= ~TUN_F_UFO;
Rusty Russell5228ddc2008-07-03 03:46:16 -07002482 }
2483
2484 /* This gives the user a way to test for new features in future by
2485 * trying to set them. */
2486 if (arg)
2487 return -EINVAL;
2488
Michał Mirosław88255372011-04-19 06:13:10 +00002489 tun->set_features = features;
Yaroslav Isakov09050952017-03-16 22:44:10 +03002490 tun->dev->wanted_features &= ~TUN_USER_FEATURES;
2491 tun->dev->wanted_features |= features;
Michał Mirosław88255372011-04-19 06:13:10 +00002492 netdev_update_features(tun->dev);
Rusty Russell5228ddc2008-07-03 03:46:16 -07002493
2494 return 0;
2495}
2496
Jason Wangc8d68e62012-10-31 19:46:00 +00002497static void tun_detach_filter(struct tun_struct *tun, int n)
2498{
2499 int i;
2500 struct tun_file *tfile;
2501
2502 for (i = 0; i < n; i++) {
Jason Wangb8deabd2013-01-11 16:59:32 +00002503 tfile = rtnl_dereference(tun->tfiles[i]);
Hannes Frederic Sowa8ced4252016-04-05 17:10:16 +02002504 lock_sock(tfile->socket.sk);
2505 sk_detach_filter(tfile->socket.sk);
2506 release_sock(tfile->socket.sk);
Jason Wangc8d68e62012-10-31 19:46:00 +00002507 }
2508
2509 tun->filter_attached = false;
2510}
2511
2512static int tun_attach_filter(struct tun_struct *tun)
2513{
2514 int i, ret = 0;
2515 struct tun_file *tfile;
2516
2517 for (i = 0; i < tun->numqueues; i++) {
Jason Wangb8deabd2013-01-11 16:59:32 +00002518 tfile = rtnl_dereference(tun->tfiles[i]);
Hannes Frederic Sowa8ced4252016-04-05 17:10:16 +02002519 lock_sock(tfile->socket.sk);
2520 ret = sk_attach_filter(&tun->fprog, tfile->socket.sk);
2521 release_sock(tfile->socket.sk);
Jason Wangc8d68e62012-10-31 19:46:00 +00002522 if (ret) {
2523 tun_detach_filter(tun, i);
2524 return ret;
2525 }
2526 }
2527
2528 tun->filter_attached = true;
2529 return ret;
2530}
2531
2532static void tun_set_sndbuf(struct tun_struct *tun)
2533{
2534 struct tun_file *tfile;
2535 int i;
2536
2537 for (i = 0; i < tun->numqueues; i++) {
Jason Wangb8deabd2013-01-11 16:59:32 +00002538 tfile = rtnl_dereference(tun->tfiles[i]);
Jason Wangc8d68e62012-10-31 19:46:00 +00002539 tfile->socket.sk->sk_sndbuf = tun->sndbuf;
2540 }
2541}
2542
Jason Wangcde8b152012-10-31 19:46:01 +00002543static int tun_set_queue(struct file *file, struct ifreq *ifr)
2544{
2545 struct tun_file *tfile = file->private_data;
2546 struct tun_struct *tun;
Jason Wangcde8b152012-10-31 19:46:01 +00002547 int ret = 0;
2548
2549 rtnl_lock();
2550
2551 if (ifr->ifr_flags & IFF_ATTACH_QUEUE) {
Jason Wang4008e972012-12-13 23:53:30 +00002552 tun = tfile->detached;
Paul Moore5dbbaf22013-01-14 07:12:19 +00002553 if (!tun) {
Jason Wangcde8b152012-10-31 19:46:01 +00002554 ret = -EINVAL;
Paul Moore5dbbaf22013-01-14 07:12:19 +00002555 goto unlock;
2556 }
2557 ret = security_tun_dev_attach_queue(tun->security);
2558 if (ret < 0)
2559 goto unlock;
Petar Penkov94317092017-09-22 13:49:14 -07002560 ret = tun_attach(tun, file, false, tun->flags & IFF_NAPI);
Jason Wang4008e972012-12-13 23:53:30 +00002561 } else if (ifr->ifr_flags & IFF_DETACH_QUEUE) {
Jason Wangb8deabd2013-01-11 16:59:32 +00002562 tun = rtnl_dereference(tfile->tun);
Michael S. Tsirkin40630b82014-11-19 15:17:31 +02002563 if (!tun || !(tun->flags & IFF_MULTI_QUEUE) || tfile->detached)
Jason Wang4008e972012-12-13 23:53:30 +00002564 ret = -EINVAL;
2565 else
2566 __tun_detach(tfile, false);
2567 } else
Jason Wangcde8b152012-10-31 19:46:01 +00002568 ret = -EINVAL;
2569
Paul Moore5dbbaf22013-01-14 07:12:19 +00002570unlock:
Jason Wangcde8b152012-10-31 19:46:01 +00002571 rtnl_unlock();
2572 return ret;
2573}
2574
Jason Wang96f84062017-12-04 17:31:23 +08002575static int tun_set_steering_ebpf(struct tun_struct *tun, void __user *data)
2576{
2577 struct bpf_prog *prog;
2578 int fd;
2579
2580 if (copy_from_user(&fd, data, sizeof(fd)))
2581 return -EFAULT;
2582
2583 if (fd == -1) {
2584 prog = NULL;
2585 } else {
2586 prog = bpf_prog_get_type(fd, BPF_PROG_TYPE_SOCKET_FILTER);
2587 if (IS_ERR(prog))
2588 return PTR_ERR(prog);
2589 }
2590
2591 return __tun_set_steering_ebpf(tun, prog);
2592}
2593
Arnd Bergmann50857e22009-11-06 22:52:32 -08002594static long __tun_chr_ioctl(struct file *file, unsigned int cmd,
2595 unsigned long arg, int ifreq_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002596{
Eric W. Biederman36b50ba2009-01-20 11:01:48 +00002597 struct tun_file *tfile = file->private_data;
Eric W. Biederman631ab462009-01-20 11:00:40 +00002598 struct tun_struct *tun;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002599 void __user* argp = (void __user*)arg;
2600 struct ifreq ifr;
Eric W. Biederman0625c882012-02-07 16:48:55 -08002601 kuid_t owner;
2602 kgid_t group;
Herbert Xu33dccbb2009-02-05 21:25:32 -08002603 int sndbuf;
Michael S. Tsirkind9d52b52010-03-17 17:45:01 +02002604 int vnet_hdr_sz;
Pavel Emelyanovfb7589a2013-08-21 14:31:38 +04002605 unsigned int ifindex;
Michael S. Tsirkin1cf8e412014-12-16 15:05:06 +02002606 int le;
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -07002607 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002608
Gao Feng20861f22016-10-27 09:05:22 +08002609 if (cmd == TUNSETIFF || cmd == TUNSETQUEUE || _IOC_TYPE(cmd) == SOCK_IOC_TYPE) {
Arnd Bergmann50857e22009-11-06 22:52:32 -08002610 if (copy_from_user(&ifr, argp, ifreq_len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002611 return -EFAULT;
David S. Miller8bbb1812012-07-30 14:52:48 -07002612 } else {
Mathias Krausea117dac2012-07-29 19:45:14 +00002613 memset(&ifr, 0, sizeof(ifr));
David S. Miller8bbb1812012-07-30 14:52:48 -07002614 }
Eric W. Biederman631ab462009-01-20 11:00:40 +00002615 if (cmd == TUNGETFEATURES) {
2616 /* Currently this just means: "what IFF flags are valid?".
2617 * This is needed because we never checked for invalid flags on
Michael S. Tsirkin031f5e032014-11-19 14:44:40 +02002618 * TUNSETIFF.
2619 */
2620 return put_user(IFF_TUN | IFF_TAP | TUN_FEATURES,
Eric W. Biederman631ab462009-01-20 11:00:40 +00002621 (unsigned int __user*)argp);
Jason Wangcde8b152012-10-31 19:46:01 +00002622 } else if (cmd == TUNSETQUEUE)
2623 return tun_set_queue(file, &ifr);
Eric W. Biederman631ab462009-01-20 11:00:40 +00002624
Jason Wangc8d68e62012-10-31 19:46:00 +00002625 ret = 0;
Herbert Xu876bfd42009-08-06 14:22:44 +00002626 rtnl_lock();
2627
yuan linyu9484dc72017-09-23 22:36:52 +08002628 tun = tun_get(tfile);
Gao Feng0f16bc12016-10-25 22:26:09 +08002629 if (cmd == TUNSETIFF) {
2630 ret = -EEXIST;
2631 if (tun)
2632 goto unlock;
2633
Linus Torvalds1da177e2005-04-16 15:20:36 -07002634 ifr.ifr_name[IFNAMSIZ-1] = '\0';
2635
Eric W. Biederman140e807da2015-05-08 21:07:08 -05002636 ret = tun_set_iff(sock_net(&tfile->sk), file, &ifr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002637
Herbert Xu876bfd42009-08-06 14:22:44 +00002638 if (ret)
2639 goto unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002640
Arnd Bergmann50857e22009-11-06 22:52:32 -08002641 if (copy_to_user(argp, &ifr, ifreq_len))
Herbert Xu876bfd42009-08-06 14:22:44 +00002642 ret = -EFAULT;
2643 goto unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002644 }
Pavel Emelyanovfb7589a2013-08-21 14:31:38 +04002645 if (cmd == TUNSETIFINDEX) {
2646 ret = -EPERM;
2647 if (tun)
2648 goto unlock;
2649
2650 ret = -EFAULT;
2651 if (copy_from_user(&ifindex, argp, sizeof(ifindex)))
2652 goto unlock;
2653
2654 ret = 0;
2655 tfile->ifindex = ifindex;
2656 goto unlock;
2657 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002658
Herbert Xu876bfd42009-08-06 14:22:44 +00002659 ret = -EBADFD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002660 if (!tun)
Herbert Xu876bfd42009-08-06 14:22:44 +00002661 goto unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002662
Jason Wang1e588332012-10-31 19:45:56 +00002663 tun_debug(KERN_INFO, tun, "tun_chr_ioctl cmd %u\n", cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002664
Eric W. Biederman631ab462009-01-20 11:00:40 +00002665 ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002666 switch (cmd) {
Mark McLoughline3b99552008-08-15 15:09:56 -07002667 case TUNGETIFF:
Rami Rosen9ce99cf2012-11-23 03:58:10 +00002668 tun_get_iff(current->nsproxy->net_ns, tun, &ifr);
Mark McLoughline3b99552008-08-15 15:09:56 -07002669
Pavel Emelyanov3d407a82013-08-21 14:32:00 +04002670 if (tfile->detached)
2671 ifr.ifr_flags |= IFF_DETACH_QUEUE;
Pavel Emelyanov849c9b62013-08-21 14:32:21 +04002672 if (!tfile->socket.sk->sk_filter)
2673 ifr.ifr_flags |= IFF_NOFILTER;
Pavel Emelyanov3d407a82013-08-21 14:32:00 +04002674
Arnd Bergmann50857e22009-11-06 22:52:32 -08002675 if (copy_to_user(argp, &ifr, ifreq_len))
Eric W. Biederman631ab462009-01-20 11:00:40 +00002676 ret = -EFAULT;
Mark McLoughline3b99552008-08-15 15:09:56 -07002677 break;
2678
Linus Torvalds1da177e2005-04-16 15:20:36 -07002679 case TUNSETNOCSUM:
2680 /* Disable/Enable checksum */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002681
Michał Mirosław88255372011-04-19 06:13:10 +00002682 /* [unimplemented] */
2683 tun_debug(KERN_INFO, tun, "ignored: set checksum %s\n",
Joe Perches6b8a66e2011-03-02 07:18:10 +00002684 arg ? "disabled" : "enabled");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002685 break;
2686
2687 case TUNSETPERSIST:
Jason Wang54f968d2012-10-31 19:45:57 +00002688 /* Disable/Enable persist mode. Keep an extra reference to the
2689 * module to prevent the module being unprobed.
2690 */
Michael S. Tsirkin40630b82014-11-19 15:17:31 +02002691 if (arg && !(tun->flags & IFF_PERSIST)) {
2692 tun->flags |= IFF_PERSIST;
Jason Wang54f968d2012-10-31 19:45:57 +00002693 __module_get(THIS_MODULE);
Jason Wangdd38bd82013-01-11 16:59:34 +00002694 }
Michael S. Tsirkin40630b82014-11-19 15:17:31 +02002695 if (!arg && (tun->flags & IFF_PERSIST)) {
2696 tun->flags &= ~IFF_PERSIST;
Jason Wang54f968d2012-10-31 19:45:57 +00002697 module_put(THIS_MODULE);
2698 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002699
Joe Perches6b8a66e2011-03-02 07:18:10 +00002700 tun_debug(KERN_INFO, tun, "persist %s\n",
2701 arg ? "enabled" : "disabled");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002702 break;
2703
2704 case TUNSETOWNER:
2705 /* Set owner of the device */
Eric W. Biederman0625c882012-02-07 16:48:55 -08002706 owner = make_kuid(current_user_ns(), arg);
2707 if (!uid_valid(owner)) {
2708 ret = -EINVAL;
2709 break;
2710 }
2711 tun->owner = owner;
Jason Wang1e588332012-10-31 19:45:56 +00002712 tun_debug(KERN_INFO, tun, "owner set to %u\n",
Eric W. Biederman0625c882012-02-07 16:48:55 -08002713 from_kuid(&init_user_ns, tun->owner));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002714 break;
2715
Guido Guenther8c644622007-07-02 22:50:25 -07002716 case TUNSETGROUP:
2717 /* Set group of the device */
Eric W. Biederman0625c882012-02-07 16:48:55 -08002718 group = make_kgid(current_user_ns(), arg);
2719 if (!gid_valid(group)) {
2720 ret = -EINVAL;
2721 break;
2722 }
2723 tun->group = group;
Jason Wang1e588332012-10-31 19:45:56 +00002724 tun_debug(KERN_INFO, tun, "group set to %u\n",
Eric W. Biederman0625c882012-02-07 16:48:55 -08002725 from_kgid(&init_user_ns, tun->group));
Guido Guenther8c644622007-07-02 22:50:25 -07002726 break;
2727
Mike Kershawff4cc3a2005-09-01 17:40:05 -07002728 case TUNSETLINK:
2729 /* Only allow setting the type when the interface is down */
2730 if (tun->dev->flags & IFF_UP) {
Joe Perches6b8a66e2011-03-02 07:18:10 +00002731 tun_debug(KERN_INFO, tun,
2732 "Linktype set failed because interface is up\n");
David S. Miller48abfe02008-04-23 19:37:58 -07002733 ret = -EBUSY;
Mike Kershawff4cc3a2005-09-01 17:40:05 -07002734 } else {
2735 tun->dev->type = (int) arg;
Joe Perches6b8a66e2011-03-02 07:18:10 +00002736 tun_debug(KERN_INFO, tun, "linktype set to %d\n",
2737 tun->dev->type);
David S. Miller48abfe02008-04-23 19:37:58 -07002738 ret = 0;
Mike Kershawff4cc3a2005-09-01 17:40:05 -07002739 }
Eric W. Biederman631ab462009-01-20 11:00:40 +00002740 break;
Mike Kershawff4cc3a2005-09-01 17:40:05 -07002741
Linus Torvalds1da177e2005-04-16 15:20:36 -07002742#ifdef TUN_DEBUG
2743 case TUNSETDEBUG:
2744 tun->debug = arg;
2745 break;
2746#endif
Rusty Russell5228ddc2008-07-03 03:46:16 -07002747 case TUNSETOFFLOAD:
Michał Mirosław88255372011-04-19 06:13:10 +00002748 ret = set_offload(tun, arg);
Eric W. Biederman631ab462009-01-20 11:00:40 +00002749 break;
Rusty Russell5228ddc2008-07-03 03:46:16 -07002750
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -07002751 case TUNSETTXFILTER:
2752 /* Can be set only for TAPs */
Eric W. Biederman631ab462009-01-20 11:00:40 +00002753 ret = -EINVAL;
Michael S. Tsirkin40630b82014-11-19 15:17:31 +02002754 if ((tun->flags & TUN_TYPE_MASK) != IFF_TAP)
Eric W. Biederman631ab462009-01-20 11:00:40 +00002755 break;
Harvey Harrisonc0e5a8c2008-07-16 12:45:34 -07002756 ret = update_filter(&tun->txflt, (void __user *)arg);
Eric W. Biederman631ab462009-01-20 11:00:40 +00002757 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002758
2759 case SIOCGIFHWADDR:
Uwe Kleine-Königb5950762010-11-01 15:38:34 -04002760 /* Get hw address */
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -07002761 memcpy(ifr.ifr_hwaddr.sa_data, tun->dev->dev_addr, ETH_ALEN);
2762 ifr.ifr_hwaddr.sa_family = tun->dev->type;
Arnd Bergmann50857e22009-11-06 22:52:32 -08002763 if (copy_to_user(argp, &ifr, ifreq_len))
Eric W. Biederman631ab462009-01-20 11:00:40 +00002764 ret = -EFAULT;
2765 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002766
2767 case SIOCSIFHWADDR:
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -07002768 /* Set hw address */
Joe Perches6b8a66e2011-03-02 07:18:10 +00002769 tun_debug(KERN_DEBUG, tun, "set hw address: %pM\n",
2770 ifr.ifr_hwaddr.sa_data);
Kim B. Heino40102372008-02-29 12:26:21 -08002771
Kim B. Heino40102372008-02-29 12:26:21 -08002772 ret = dev_set_mac_address(tun->dev, &ifr.ifr_hwaddr);
Eric W. Biederman631ab462009-01-20 11:00:40 +00002773 break;
Herbert Xu33dccbb2009-02-05 21:25:32 -08002774
2775 case TUNGETSNDBUF:
Jason Wang54f968d2012-10-31 19:45:57 +00002776 sndbuf = tfile->socket.sk->sk_sndbuf;
Herbert Xu33dccbb2009-02-05 21:25:32 -08002777 if (copy_to_user(argp, &sndbuf, sizeof(sndbuf)))
2778 ret = -EFAULT;
2779 break;
2780
2781 case TUNSETSNDBUF:
2782 if (copy_from_user(&sndbuf, argp, sizeof(sndbuf))) {
2783 ret = -EFAULT;
2784 break;
2785 }
Craig Gallek931619222017-10-30 18:50:11 -04002786 if (sndbuf <= 0) {
2787 ret = -EINVAL;
2788 break;
2789 }
Herbert Xu33dccbb2009-02-05 21:25:32 -08002790
Jason Wangc8d68e62012-10-31 19:46:00 +00002791 tun->sndbuf = sndbuf;
2792 tun_set_sndbuf(tun);
Herbert Xu33dccbb2009-02-05 21:25:32 -08002793 break;
2794
Michael S. Tsirkind9d52b52010-03-17 17:45:01 +02002795 case TUNGETVNETHDRSZ:
2796 vnet_hdr_sz = tun->vnet_hdr_sz;
2797 if (copy_to_user(argp, &vnet_hdr_sz, sizeof(vnet_hdr_sz)))
2798 ret = -EFAULT;
2799 break;
2800
2801 case TUNSETVNETHDRSZ:
2802 if (copy_from_user(&vnet_hdr_sz, argp, sizeof(vnet_hdr_sz))) {
2803 ret = -EFAULT;
2804 break;
2805 }
2806 if (vnet_hdr_sz < (int)sizeof(struct virtio_net_hdr)) {
2807 ret = -EINVAL;
2808 break;
2809 }
2810
2811 tun->vnet_hdr_sz = vnet_hdr_sz;
2812 break;
2813
Michael S. Tsirkin1cf8e412014-12-16 15:05:06 +02002814 case TUNGETVNETLE:
2815 le = !!(tun->flags & TUN_VNET_LE);
2816 if (put_user(le, (int __user *)argp))
2817 ret = -EFAULT;
2818 break;
2819
2820 case TUNSETVNETLE:
2821 if (get_user(le, (int __user *)argp)) {
2822 ret = -EFAULT;
2823 break;
2824 }
2825 if (le)
2826 tun->flags |= TUN_VNET_LE;
2827 else
2828 tun->flags &= ~TUN_VNET_LE;
2829 break;
2830
Greg Kurz8b8e6582015-04-24 14:50:36 +02002831 case TUNGETVNETBE:
2832 ret = tun_get_vnet_be(tun, argp);
2833 break;
2834
2835 case TUNSETVNETBE:
2836 ret = tun_set_vnet_be(tun, argp);
2837 break;
2838
Michael S. Tsirkin99405162010-02-14 01:01:10 +00002839 case TUNATTACHFILTER:
2840 /* Can be set only for TAPs */
2841 ret = -EINVAL;
Michael S. Tsirkin40630b82014-11-19 15:17:31 +02002842 if ((tun->flags & TUN_TYPE_MASK) != IFF_TAP)
Michael S. Tsirkin99405162010-02-14 01:01:10 +00002843 break;
2844 ret = -EFAULT;
Jason Wang54f968d2012-10-31 19:45:57 +00002845 if (copy_from_user(&tun->fprog, argp, sizeof(tun->fprog)))
Michael S. Tsirkin99405162010-02-14 01:01:10 +00002846 break;
2847
Jason Wangc8d68e62012-10-31 19:46:00 +00002848 ret = tun_attach_filter(tun);
Michael S. Tsirkin99405162010-02-14 01:01:10 +00002849 break;
2850
2851 case TUNDETACHFILTER:
2852 /* Can be set only for TAPs */
2853 ret = -EINVAL;
Michael S. Tsirkin40630b82014-11-19 15:17:31 +02002854 if ((tun->flags & TUN_TYPE_MASK) != IFF_TAP)
Michael S. Tsirkin99405162010-02-14 01:01:10 +00002855 break;
Jason Wangc8d68e62012-10-31 19:46:00 +00002856 ret = 0;
2857 tun_detach_filter(tun, tun->numqueues);
Michael S. Tsirkin99405162010-02-14 01:01:10 +00002858 break;
2859
Pavel Emelyanov76975e92013-08-21 14:32:39 +04002860 case TUNGETFILTER:
2861 ret = -EINVAL;
Michael S. Tsirkin40630b82014-11-19 15:17:31 +02002862 if ((tun->flags & TUN_TYPE_MASK) != IFF_TAP)
Pavel Emelyanov76975e92013-08-21 14:32:39 +04002863 break;
2864 ret = -EFAULT;
2865 if (copy_to_user(argp, &tun->fprog, sizeof(tun->fprog)))
2866 break;
2867 ret = 0;
2868 break;
2869
Jason Wang96f84062017-12-04 17:31:23 +08002870 case TUNSETSTEERINGEBPF:
2871 ret = tun_set_steering_ebpf(tun, argp);
2872 break;
2873
Linus Torvalds1da177e2005-04-16 15:20:36 -07002874 default:
Eric W. Biederman631ab462009-01-20 11:00:40 +00002875 ret = -EINVAL;
2876 break;
Joe Perchesee289b62010-05-17 22:47:34 -07002877 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002878
Herbert Xu876bfd42009-08-06 14:22:44 +00002879unlock:
2880 rtnl_unlock();
2881 if (tun)
2882 tun_put(tun);
Eric W. Biederman631ab462009-01-20 11:00:40 +00002883 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002884}
2885
Arnd Bergmann50857e22009-11-06 22:52:32 -08002886static long tun_chr_ioctl(struct file *file,
2887 unsigned int cmd, unsigned long arg)
2888{
2889 return __tun_chr_ioctl(file, cmd, arg, sizeof (struct ifreq));
2890}
2891
2892#ifdef CONFIG_COMPAT
2893static long tun_chr_compat_ioctl(struct file *file,
2894 unsigned int cmd, unsigned long arg)
2895{
2896 switch (cmd) {
2897 case TUNSETIFF:
2898 case TUNGETIFF:
2899 case TUNSETTXFILTER:
2900 case TUNGETSNDBUF:
2901 case TUNSETSNDBUF:
2902 case SIOCGIFHWADDR:
2903 case SIOCSIFHWADDR:
2904 arg = (unsigned long)compat_ptr(arg);
2905 break;
2906 default:
2907 arg = (compat_ulong_t)arg;
2908 break;
2909 }
2910
2911 /*
2912 * compat_ifreq is shorter than ifreq, so we must not access beyond
2913 * the end of that structure. All fields that are used in this
2914 * driver are compatible though, we don't need to convert the
2915 * contents.
2916 */
2917 return __tun_chr_ioctl(file, cmd, arg, sizeof(struct compat_ifreq));
2918}
2919#endif /* CONFIG_COMPAT */
2920
Linus Torvalds1da177e2005-04-16 15:20:36 -07002921static int tun_chr_fasync(int fd, struct file *file, int on)
2922{
Jason Wang54f968d2012-10-31 19:45:57 +00002923 struct tun_file *tfile = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002924 int ret;
2925
Jason Wang54f968d2012-10-31 19:45:57 +00002926 if ((ret = fasync_helper(fd, file, on, &tfile->fasync)) < 0)
Jonathan Corbet9d319522008-06-19 15:50:37 -06002927 goto out;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002928
Linus Torvalds1da177e2005-04-16 15:20:36 -07002929 if (on) {
Jeff Laytone0b93ed2014-08-22 11:27:32 -04002930 __f_setown(file, task_pid(current), PIDTYPE_PID, 0);
Jason Wang54f968d2012-10-31 19:45:57 +00002931 tfile->flags |= TUN_FASYNC;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002932 } else
Jason Wang54f968d2012-10-31 19:45:57 +00002933 tfile->flags &= ~TUN_FASYNC;
Jonathan Corbet9d319522008-06-19 15:50:37 -06002934 ret = 0;
2935out:
Jonathan Corbet9d319522008-06-19 15:50:37 -06002936 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002937}
2938
2939static int tun_chr_open(struct inode *inode, struct file * file)
2940{
Eric W. Biederman140e807da2015-05-08 21:07:08 -05002941 struct net *net = current->nsproxy->net_ns;
Eric W. Biederman631ab462009-01-20 11:00:40 +00002942 struct tun_file *tfile;
Thomas Gleixnerdeed49f2009-10-14 01:19:46 -07002943
Joe Perches6b8a66e2011-03-02 07:18:10 +00002944 DBG1(KERN_INFO, "tunX: tun_chr_open\n");
Eric W. Biederman631ab462009-01-20 11:00:40 +00002945
Eric W. Biederman140e807da2015-05-08 21:07:08 -05002946 tfile = (struct tun_file *)sk_alloc(net, AF_UNSPEC, GFP_KERNEL,
Eric W. Biederman11aa9c22015-05-08 21:09:13 -05002947 &tun_proto, 0);
Eric W. Biederman631ab462009-01-20 11:00:40 +00002948 if (!tfile)
2949 return -ENOMEM;
Monam Agarwalc9566742014-03-24 00:02:32 +05302950 RCU_INIT_POINTER(tfile->tun, NULL);
Jason Wang54f968d2012-10-31 19:45:57 +00002951 tfile->flags = 0;
Pavel Emelyanovfb7589a2013-08-21 14:31:38 +04002952 tfile->ifindex = 0;
Jason Wang54f968d2012-10-31 19:45:57 +00002953
Jason Wang54f968d2012-10-31 19:45:57 +00002954 init_waitqueue_head(&tfile->wq.wait);
Xi Wang9e641bd2014-05-16 15:11:48 -07002955 RCU_INIT_POINTER(tfile->socket.wq, &tfile->wq);
Jason Wang54f968d2012-10-31 19:45:57 +00002956
2957 tfile->socket.file = file;
2958 tfile->socket.ops = &tun_socket_ops;
2959
2960 sock_init_data(&tfile->socket, &tfile->sk);
Jason Wang54f968d2012-10-31 19:45:57 +00002961
2962 tfile->sk.sk_write_space = tun_sock_write_space;
2963 tfile->sk.sk_sndbuf = INT_MAX;
2964
Eric W. Biederman631ab462009-01-20 11:00:40 +00002965 file->private_data = tfile;
Jason Wang4008e972012-12-13 23:53:30 +00002966 INIT_LIST_HEAD(&tfile->next);
Jason Wang54f968d2012-10-31 19:45:57 +00002967
Jason Wang19a6afb2013-06-08 14:17:41 +08002968 sock_set_flag(&tfile->sk, SOCK_ZEROCOPY);
2969
Linus Torvalds1da177e2005-04-16 15:20:36 -07002970 return 0;
2971}
2972
2973static int tun_chr_close(struct inode *inode, struct file *file)
2974{
Eric W. Biederman631ab462009-01-20 11:00:40 +00002975 struct tun_file *tfile = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002976
Jason Wangc8d68e62012-10-31 19:46:00 +00002977 tun_detach(tfile, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002978
2979 return 0;
2980}
2981
Masatake YAMATO93e14b62014-01-29 16:43:31 +09002982#ifdef CONFIG_PROC_FS
yuan linyu9484dc72017-09-23 22:36:52 +08002983static void tun_chr_show_fdinfo(struct seq_file *m, struct file *file)
Masatake YAMATO93e14b62014-01-29 16:43:31 +09002984{
yuan linyu9484dc72017-09-23 22:36:52 +08002985 struct tun_file *tfile = file->private_data;
Masatake YAMATO93e14b62014-01-29 16:43:31 +09002986 struct tun_struct *tun;
2987 struct ifreq ifr;
2988
2989 memset(&ifr, 0, sizeof(ifr));
2990
2991 rtnl_lock();
yuan linyu9484dc72017-09-23 22:36:52 +08002992 tun = tun_get(tfile);
Masatake YAMATO93e14b62014-01-29 16:43:31 +09002993 if (tun)
2994 tun_get_iff(current->nsproxy->net_ns, tun, &ifr);
2995 rtnl_unlock();
2996
2997 if (tun)
2998 tun_put(tun);
2999
Joe Perchesa3816ab2014-09-29 16:08:25 -07003000 seq_printf(m, "iff:\t%s\n", ifr.ifr_name);
Masatake YAMATO93e14b62014-01-29 16:43:31 +09003001}
3002#endif
3003
Arjan van de Vend54b1fd2007-02-12 00:55:34 -08003004static const struct file_operations tun_fops = {
Jeff Garzik6aa20a22006-09-13 13:24:59 -04003005 .owner = THIS_MODULE,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003006 .llseek = no_llseek,
Al Viro9b067032014-11-07 13:52:07 -05003007 .read_iter = tun_chr_read_iter,
Al Virof5ff53b2014-06-19 15:36:49 -04003008 .write_iter = tun_chr_write_iter,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003009 .poll = tun_chr_poll,
Arnd Bergmann50857e22009-11-06 22:52:32 -08003010 .unlocked_ioctl = tun_chr_ioctl,
3011#ifdef CONFIG_COMPAT
3012 .compat_ioctl = tun_chr_compat_ioctl,
3013#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003014 .open = tun_chr_open,
3015 .release = tun_chr_close,
Masatake YAMATO93e14b62014-01-29 16:43:31 +09003016 .fasync = tun_chr_fasync,
3017#ifdef CONFIG_PROC_FS
3018 .show_fdinfo = tun_chr_show_fdinfo,
3019#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003020};
3021
3022static struct miscdevice tun_miscdev = {
3023 .minor = TUN_MINOR,
3024 .name = "tun",
Kay Sieverse454cea2009-09-18 23:01:12 +02003025 .nodename = "net/tun",
Linus Torvalds1da177e2005-04-16 15:20:36 -07003026 .fops = &tun_fops,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003027};
3028
3029/* ethtool interface */
3030
Philippe Reynes29ccc492017-03-11 22:03:50 +01003031static int tun_get_link_ksettings(struct net_device *dev,
3032 struct ethtool_link_ksettings *cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003033{
Philippe Reynes29ccc492017-03-11 22:03:50 +01003034 ethtool_link_ksettings_zero_link_mode(cmd, supported);
3035 ethtool_link_ksettings_zero_link_mode(cmd, advertising);
3036 cmd->base.speed = SPEED_10;
3037 cmd->base.duplex = DUPLEX_FULL;
3038 cmd->base.port = PORT_TP;
3039 cmd->base.phy_address = 0;
3040 cmd->base.autoneg = AUTONEG_DISABLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003041 return 0;
3042}
3043
3044static void tun_get_drvinfo(struct net_device *dev, struct ethtool_drvinfo *info)
3045{
3046 struct tun_struct *tun = netdev_priv(dev);
3047
Rick Jones33a5ba12011-11-15 14:59:53 +00003048 strlcpy(info->driver, DRV_NAME, sizeof(info->driver));
3049 strlcpy(info->version, DRV_VERSION, sizeof(info->version));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003050
3051 switch (tun->flags & TUN_TYPE_MASK) {
Michael S. Tsirkin40630b82014-11-19 15:17:31 +02003052 case IFF_TUN:
Rick Jones33a5ba12011-11-15 14:59:53 +00003053 strlcpy(info->bus_info, "tun", sizeof(info->bus_info));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003054 break;
Michael S. Tsirkin40630b82014-11-19 15:17:31 +02003055 case IFF_TAP:
Rick Jones33a5ba12011-11-15 14:59:53 +00003056 strlcpy(info->bus_info, "tap", sizeof(info->bus_info));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003057 break;
3058 }
3059}
3060
3061static u32 tun_get_msglevel(struct net_device *dev)
3062{
3063#ifdef TUN_DEBUG
3064 struct tun_struct *tun = netdev_priv(dev);
3065 return tun->debug;
3066#else
3067 return -EOPNOTSUPP;
3068#endif
3069}
3070
3071static void tun_set_msglevel(struct net_device *dev, u32 value)
3072{
3073#ifdef TUN_DEBUG
3074 struct tun_struct *tun = netdev_priv(dev);
3075 tun->debug = value;
3076#endif
3077}
3078
Jason Wang5503fce2017-01-18 15:02:03 +08003079static int tun_get_coalesce(struct net_device *dev,
3080 struct ethtool_coalesce *ec)
3081{
3082 struct tun_struct *tun = netdev_priv(dev);
3083
3084 ec->rx_max_coalesced_frames = tun->rx_batched;
3085
3086 return 0;
3087}
3088
3089static int tun_set_coalesce(struct net_device *dev,
3090 struct ethtool_coalesce *ec)
3091{
3092 struct tun_struct *tun = netdev_priv(dev);
3093
3094 if (ec->rx_max_coalesced_frames > NAPI_POLL_WEIGHT)
3095 tun->rx_batched = NAPI_POLL_WEIGHT;
3096 else
3097 tun->rx_batched = ec->rx_max_coalesced_frames;
3098
3099 return 0;
3100}
3101
Jeff Garzik7282d492006-09-13 14:30:00 -04003102static const struct ethtool_ops tun_ethtool_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003103 .get_drvinfo = tun_get_drvinfo,
3104 .get_msglevel = tun_get_msglevel,
3105 .set_msglevel = tun_set_msglevel,
Nolan Leakebee31362010-07-27 13:53:43 +00003106 .get_link = ethtool_op_get_link,
Richard Cochraneda29772013-07-19 19:40:10 +02003107 .get_ts_info = ethtool_op_get_ts_info,
Jason Wang5503fce2017-01-18 15:02:03 +08003108 .get_coalesce = tun_get_coalesce,
3109 .set_coalesce = tun_set_coalesce,
Philippe Reynes29ccc492017-03-11 22:03:50 +01003110 .get_link_ksettings = tun_get_link_ksettings,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003111};
3112
Jason Wang1576d982016-06-30 14:45:36 +08003113static int tun_queue_resize(struct tun_struct *tun)
3114{
3115 struct net_device *dev = tun->dev;
3116 struct tun_file *tfile;
3117 struct skb_array **arrays;
3118 int n = tun->numqueues + tun->numdisabled;
3119 int ret, i;
3120
stephen hemminger12039042017-08-15 10:29:16 -07003121 arrays = kmalloc_array(n, sizeof(*arrays), GFP_KERNEL);
Jason Wang1576d982016-06-30 14:45:36 +08003122 if (!arrays)
3123 return -ENOMEM;
3124
3125 for (i = 0; i < tun->numqueues; i++) {
3126 tfile = rtnl_dereference(tun->tfiles[i]);
3127 arrays[i] = &tfile->tx_array;
3128 }
3129 list_for_each_entry(tfile, &tun->disabled, next)
3130 arrays[i++] = &tfile->tx_array;
3131
3132 ret = skb_array_resize_multiple(arrays, n,
3133 dev->tx_queue_len, GFP_KERNEL);
3134
3135 kfree(arrays);
3136 return ret;
3137}
3138
3139static int tun_device_event(struct notifier_block *unused,
3140 unsigned long event, void *ptr)
3141{
3142 struct net_device *dev = netdev_notifier_info_to_dev(ptr);
3143 struct tun_struct *tun = netdev_priv(dev);
3144
Craig Gallek86dfb4ac2016-07-06 18:44:20 -04003145 if (dev->rtnl_link_ops != &tun_link_ops)
3146 return NOTIFY_DONE;
3147
Jason Wang1576d982016-06-30 14:45:36 +08003148 switch (event) {
3149 case NETDEV_CHANGE_TX_QUEUE_LEN:
3150 if (tun_queue_resize(tun))
3151 return NOTIFY_BAD;
3152 break;
3153 default:
3154 break;
3155 }
3156
3157 return NOTIFY_DONE;
3158}
3159
3160static struct notifier_block tun_notifier_block __read_mostly = {
3161 .notifier_call = tun_device_event,
3162};
Pavel Emelyanov79d17602008-04-16 00:40:46 -07003163
Linus Torvalds1da177e2005-04-16 15:20:36 -07003164static int __init tun_init(void)
3165{
3166 int ret = 0;
3167
Joe Perches6b8a66e2011-03-02 07:18:10 +00003168 pr_info("%s, %s\n", DRV_DESCRIPTION, DRV_VERSION);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003169
Eric W. Biedermanf019a7a2009-01-21 16:02:16 -08003170 ret = rtnl_link_register(&tun_link_ops);
Pavel Emelyanov79d17602008-04-16 00:40:46 -07003171 if (ret) {
Joe Perches6b8a66e2011-03-02 07:18:10 +00003172 pr_err("Can't register link_ops\n");
Eric W. Biedermanf019a7a2009-01-21 16:02:16 -08003173 goto err_linkops;
Pavel Emelyanov79d17602008-04-16 00:40:46 -07003174 }
3175
Linus Torvalds1da177e2005-04-16 15:20:36 -07003176 ret = misc_register(&tun_miscdev);
Pavel Emelyanov79d17602008-04-16 00:40:46 -07003177 if (ret) {
Joe Perches6b8a66e2011-03-02 07:18:10 +00003178 pr_err("Can't register misc device %d\n", TUN_MINOR);
Pavel Emelyanov79d17602008-04-16 00:40:46 -07003179 goto err_misc;
3180 }
Jason Wang1576d982016-06-30 14:45:36 +08003181
Tonghao Zhang5edfbd32017-07-20 02:41:34 -07003182 ret = register_netdevice_notifier(&tun_notifier_block);
3183 if (ret) {
3184 pr_err("Can't register netdevice notifier\n");
3185 goto err_notifier;
3186 }
3187
Eric W. Biedermanf019a7a2009-01-21 16:02:16 -08003188 return 0;
Tonghao Zhang5edfbd32017-07-20 02:41:34 -07003189
3190err_notifier:
3191 misc_deregister(&tun_miscdev);
Pavel Emelyanov79d17602008-04-16 00:40:46 -07003192err_misc:
Eric W. Biedermanf019a7a2009-01-21 16:02:16 -08003193 rtnl_link_unregister(&tun_link_ops);
3194err_linkops:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003195 return ret;
3196}
3197
3198static void tun_cleanup(void)
3199{
Jeff Garzik6aa20a22006-09-13 13:24:59 -04003200 misc_deregister(&tun_miscdev);
Eric W. Biedermanf019a7a2009-01-21 16:02:16 -08003201 rtnl_link_unregister(&tun_link_ops);
Jason Wang1576d982016-06-30 14:45:36 +08003202 unregister_netdevice_notifier(&tun_notifier_block);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003203}
3204
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00003205/* Get an underlying socket object from tun file. Returns error unless file is
3206 * attached to a device. The returned object works like a packet socket, it
3207 * can be used for sock_sendmsg/sock_recvmsg. The caller is responsible for
3208 * holding a reference to the file for as long as the socket is in use. */
3209struct socket *tun_get_socket(struct file *file)
3210{
Jason Wang6e914fc2012-10-31 19:45:58 +00003211 struct tun_file *tfile;
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00003212 if (file->f_op != &tun_fops)
3213 return ERR_PTR(-EINVAL);
Jason Wang6e914fc2012-10-31 19:45:58 +00003214 tfile = file->private_data;
3215 if (!tfile)
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00003216 return ERR_PTR(-EBADFD);
Jason Wang54f968d2012-10-31 19:45:57 +00003217 return &tfile->socket;
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00003218}
3219EXPORT_SYMBOL_GPL(tun_get_socket);
3220
Jason Wang83339c62017-05-17 12:14:41 +08003221struct skb_array *tun_get_skb_array(struct file *file)
3222{
3223 struct tun_file *tfile;
3224
3225 if (file->f_op != &tun_fops)
3226 return ERR_PTR(-EINVAL);
3227 tfile = file->private_data;
3228 if (!tfile)
3229 return ERR_PTR(-EBADFD);
3230 return &tfile->tx_array;
3231}
3232EXPORT_SYMBOL_GPL(tun_get_skb_array);
3233
Linus Torvalds1da177e2005-04-16 15:20:36 -07003234module_init(tun_init);
3235module_exit(tun_cleanup);
3236MODULE_DESCRIPTION(DRV_DESCRIPTION);
3237MODULE_AUTHOR(DRV_COPYRIGHT);
3238MODULE_LICENSE("GPL");
3239MODULE_ALIAS_MISCDEV(TUN_MINOR);
Kay Sievers578454f2010-05-20 18:07:20 +02003240MODULE_ALIAS("devname:net/tun");