blob: e367d63103531a23f833211f7026d2e9c426c7af [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. Tsirkin031f5e02014-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. Tsirkin031f5e02014-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;
Eric W. Biederman631ab462009-01-20 11:00:40 +0000183};
184
Jason Wang96442e422012-10-31 19:46:02 +0000185struct tun_flow_entry {
186 struct hlist_node hash_link;
187 struct rcu_head rcu;
188 struct tun_struct *tun;
189
190 u32 rxhash;
Tom Herbert9bc88932013-12-22 18:54:32 +0800191 u32 rps_rxhash;
Jason Wang96442e422012-10-31 19:46:02 +0000192 int queue_index;
193 unsigned long updated;
194};
195
196#define TUN_NUM_FLOW_ENTRIES 1024
197
Jason Wang96f84062017-12-04 17:31:23 +0800198struct tun_steering_prog {
199 struct rcu_head rcu;
200 struct bpf_prog *prog;
201};
202
Jason Wang54f968d2012-10-31 19:45:57 +0000203/* Since the socket were moved to tun_file, to preserve the behavior of persist
Rami Rosen36fe8c092012-11-25 22:07:40 +0000204 * device, socket filter, sndbuf and vnet header size were restore when the
Jason Wang54f968d2012-10-31 19:45:57 +0000205 * file were attached to a persist device.
206 */
Rusty Russell14daa022008-04-12 18:48:58 -0700207struct tun_struct {
Jason Wangc8d68e62012-10-31 19:46:00 +0000208 struct tun_file __rcu *tfiles[MAX_TAP_QUEUES];
209 unsigned int numqueues;
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -0700210 unsigned int flags;
Eric W. Biederman0625c882012-02-07 16:48:55 -0800211 kuid_t owner;
212 kgid_t group;
Rusty Russell14daa022008-04-12 18:48:58 -0700213
Rusty Russell14daa022008-04-12 18:48:58 -0700214 struct net_device *dev;
Michał Mirosławc8f44af2011-11-15 15:29:55 +0000215 netdev_features_t set_features;
Michał Mirosław88255372011-04-19 06:13:10 +0000216#define TUN_USER_FEATURES (NETIF_F_HW_CSUM|NETIF_F_TSO_ECN|NETIF_F_TSO| \
David S. Millerd591a1f2017-07-03 06:35:32 -0700217 NETIF_F_TSO6)
Michael S. Tsirkind9d52b52010-03-17 17:45:01 +0200218
Paolo Abenieaea34b2016-02-26 10:45:40 +0100219 int align;
Michael S. Tsirkind9d52b52010-03-17 17:45:01 +0200220 int vnet_hdr_sz;
Jason Wang54f968d2012-10-31 19:45:57 +0000221 int sndbuf;
222 struct tap_filter txflt;
223 struct sock_fprog fprog;
224 /* protected by rtnl lock */
225 bool filter_attached;
Rusty Russell14daa022008-04-12 18:48:58 -0700226#ifdef TUN_DEBUG
227 int debug;
228#endif
Jason Wang96442e422012-10-31 19:46:02 +0000229 spinlock_t lock;
Jason Wang96442e422012-10-31 19:46:02 +0000230 struct hlist_head flows[TUN_NUM_FLOW_ENTRIES];
231 struct timer_list flow_gc_timer;
232 unsigned long ageing_time;
Jason Wang4008e972012-12-13 23:53:30 +0000233 unsigned int numdisabled;
234 struct list_head disabled;
Paul Moore5dbbaf22013-01-14 07:12:19 +0000235 void *security;
Jason Wangb8732fb2013-01-23 03:59:13 +0000236 u32 flow_count;
Jason Wang5503fce2017-01-18 15:02:03 +0800237 u32 rx_batched;
Paolo Abeni608b9972016-04-13 10:52:20 +0200238 struct tun_pcpu_stats __percpu *pcpu_stats;
Jason Wang761876c2017-08-11 19:41:18 +0800239 struct bpf_prog __rcu *xdp_prog;
Jason Wang96f84062017-12-04 17:31:23 +0800240 struct tun_steering_prog __rcu *steering_prog;
Rusty Russell14daa022008-04-12 18:48:58 -0700241};
242
Petar Penkov94317092017-09-22 13:49:14 -0700243static int tun_napi_receive(struct napi_struct *napi, int budget)
244{
245 struct tun_file *tfile = container_of(napi, struct tun_file, napi);
246 struct sk_buff_head *queue = &tfile->sk.sk_write_queue;
247 struct sk_buff_head process_queue;
248 struct sk_buff *skb;
249 int received = 0;
250
251 __skb_queue_head_init(&process_queue);
252
253 spin_lock(&queue->lock);
254 skb_queue_splice_tail_init(queue, &process_queue);
255 spin_unlock(&queue->lock);
256
257 while (received < budget && (skb = __skb_dequeue(&process_queue))) {
258 napi_gro_receive(napi, skb);
259 ++received;
260 }
261
262 if (!skb_queue_empty(&process_queue)) {
263 spin_lock(&queue->lock);
264 skb_queue_splice(&process_queue, queue);
265 spin_unlock(&queue->lock);
266 }
267
268 return received;
269}
270
271static int tun_napi_poll(struct napi_struct *napi, int budget)
272{
273 unsigned int received;
274
275 received = tun_napi_receive(napi, budget);
276
277 if (received < budget)
278 napi_complete_done(napi, received);
279
280 return received;
281}
282
283static void tun_napi_init(struct tun_struct *tun, struct tun_file *tfile,
284 bool napi_en)
285{
Eric Dumazetaec72f32017-10-18 12:12:09 -0700286 tfile->napi_enabled = napi_en;
Petar Penkov94317092017-09-22 13:49:14 -0700287 if (napi_en) {
288 netif_napi_add(tun->dev, &tfile->napi, tun_napi_poll,
289 NAPI_POLL_WEIGHT);
290 napi_enable(&tfile->napi);
Petar Penkov90e33d42017-09-22 13:49:15 -0700291 mutex_init(&tfile->napi_mutex);
Petar Penkov94317092017-09-22 13:49:14 -0700292 }
293}
294
295static void tun_napi_disable(struct tun_struct *tun, struct tun_file *tfile)
296{
Eric Dumazetaec72f32017-10-18 12:12:09 -0700297 if (tfile->napi_enabled)
Petar Penkov94317092017-09-22 13:49:14 -0700298 napi_disable(&tfile->napi);
299}
300
301static void tun_napi_del(struct tun_struct *tun, struct tun_file *tfile)
302{
Eric Dumazetaec72f32017-10-18 12:12:09 -0700303 if (tfile->napi_enabled)
Petar Penkov94317092017-09-22 13:49:14 -0700304 netif_napi_del(&tfile->napi);
305}
306
Petar Penkov90e33d42017-09-22 13:49:15 -0700307static bool tun_napi_frags_enabled(const struct tun_struct *tun)
308{
309 return READ_ONCE(tun->flags) & IFF_NAPI_FRAGS;
310}
311
Greg Kurz8b8e6582015-04-24 14:50:36 +0200312#ifdef CONFIG_TUN_VNET_CROSS_LE
313static inline bool tun_legacy_is_little_endian(struct tun_struct *tun)
314{
315 return tun->flags & TUN_VNET_BE ? false :
316 virtio_legacy_is_little_endian();
317}
318
319static long tun_get_vnet_be(struct tun_struct *tun, int __user *argp)
320{
321 int be = !!(tun->flags & TUN_VNET_BE);
322
323 if (put_user(be, argp))
324 return -EFAULT;
325
326 return 0;
327}
328
329static long tun_set_vnet_be(struct tun_struct *tun, int __user *argp)
330{
331 int be;
332
333 if (get_user(be, argp))
334 return -EFAULT;
335
336 if (be)
337 tun->flags |= TUN_VNET_BE;
338 else
339 tun->flags &= ~TUN_VNET_BE;
340
341 return 0;
342}
343#else
344static inline bool tun_legacy_is_little_endian(struct tun_struct *tun)
345{
346 return virtio_legacy_is_little_endian();
347}
348
349static long tun_get_vnet_be(struct tun_struct *tun, int __user *argp)
350{
351 return -EINVAL;
352}
353
354static long tun_set_vnet_be(struct tun_struct *tun, int __user *argp)
355{
356 return -EINVAL;
357}
358#endif /* CONFIG_TUN_VNET_CROSS_LE */
359
Greg Kurz25bd55bb2015-04-24 14:24:38 +0200360static inline bool tun_is_little_endian(struct tun_struct *tun)
361{
Greg Kurz7d824102015-04-24 14:26:24 +0200362 return tun->flags & TUN_VNET_LE ||
Greg Kurz8b8e6582015-04-24 14:50:36 +0200363 tun_legacy_is_little_endian(tun);
Greg Kurz25bd55bb2015-04-24 14:24:38 +0200364}
365
Michael S. Tsirkin56f0dcc2014-10-23 22:59:31 +0300366static inline u16 tun16_to_cpu(struct tun_struct *tun, __virtio16 val)
367{
Greg Kurz25bd55bb2015-04-24 14:24:38 +0200368 return __virtio16_to_cpu(tun_is_little_endian(tun), val);
Michael S. Tsirkin56f0dcc2014-10-23 22:59:31 +0300369}
370
371static inline __virtio16 cpu_to_tun16(struct tun_struct *tun, u16 val)
372{
Greg Kurz25bd55bb2015-04-24 14:24:38 +0200373 return __cpu_to_virtio16(tun_is_little_endian(tun), val);
Michael S. Tsirkin56f0dcc2014-10-23 22:59:31 +0300374}
375
Jason Wang96442e422012-10-31 19:46:02 +0000376static inline u32 tun_hashfn(u32 rxhash)
377{
378 return rxhash & 0x3ff;
379}
380
381static struct tun_flow_entry *tun_flow_find(struct hlist_head *head, u32 rxhash)
382{
383 struct tun_flow_entry *e;
Jason Wang96442e422012-10-31 19:46:02 +0000384
Sasha Levinb67bfe02013-02-27 17:06:00 -0800385 hlist_for_each_entry_rcu(e, head, hash_link) {
Jason Wang96442e422012-10-31 19:46:02 +0000386 if (e->rxhash == rxhash)
387 return e;
388 }
389 return NULL;
390}
391
392static struct tun_flow_entry *tun_flow_create(struct tun_struct *tun,
393 struct hlist_head *head,
394 u32 rxhash, u16 queue_index)
395{
Eric Dumazet9fdc6be2012-12-21 07:17:21 +0000396 struct tun_flow_entry *e = kmalloc(sizeof(*e), GFP_ATOMIC);
397
Jason Wang96442e422012-10-31 19:46:02 +0000398 if (e) {
399 tun_debug(KERN_INFO, tun, "create flow: hash %u index %u\n",
400 rxhash, queue_index);
401 e->updated = jiffies;
402 e->rxhash = rxhash;
Tom Herbert9bc88932013-12-22 18:54:32 +0800403 e->rps_rxhash = 0;
Jason Wang96442e422012-10-31 19:46:02 +0000404 e->queue_index = queue_index;
405 e->tun = tun;
406 hlist_add_head_rcu(&e->hash_link, head);
Jason Wangb8732fb2013-01-23 03:59:13 +0000407 ++tun->flow_count;
Jason Wang96442e422012-10-31 19:46:02 +0000408 }
409 return e;
410}
411
Jason Wang96442e422012-10-31 19:46:02 +0000412static void tun_flow_delete(struct tun_struct *tun, struct tun_flow_entry *e)
413{
414 tun_debug(KERN_INFO, tun, "delete flow: hash %u index %u\n",
415 e->rxhash, e->queue_index);
416 hlist_del_rcu(&e->hash_link);
Eric Dumazet9fdc6be2012-12-21 07:17:21 +0000417 kfree_rcu(e, rcu);
Jason Wangb8732fb2013-01-23 03:59:13 +0000418 --tun->flow_count;
Jason Wang96442e422012-10-31 19:46:02 +0000419}
420
421static void tun_flow_flush(struct tun_struct *tun)
422{
423 int i;
424
425 spin_lock_bh(&tun->lock);
426 for (i = 0; i < TUN_NUM_FLOW_ENTRIES; i++) {
427 struct tun_flow_entry *e;
Sasha Levinb67bfe02013-02-27 17:06:00 -0800428 struct hlist_node *n;
Jason Wang96442e422012-10-31 19:46:02 +0000429
Sasha Levinb67bfe02013-02-27 17:06:00 -0800430 hlist_for_each_entry_safe(e, n, &tun->flows[i], hash_link)
Jason Wang96442e422012-10-31 19:46:02 +0000431 tun_flow_delete(tun, e);
432 }
433 spin_unlock_bh(&tun->lock);
434}
435
436static void tun_flow_delete_by_queue(struct tun_struct *tun, u16 queue_index)
437{
438 int i;
439
440 spin_lock_bh(&tun->lock);
441 for (i = 0; i < TUN_NUM_FLOW_ENTRIES; i++) {
442 struct tun_flow_entry *e;
Sasha Levinb67bfe02013-02-27 17:06:00 -0800443 struct hlist_node *n;
Jason Wang96442e422012-10-31 19:46:02 +0000444
Sasha Levinb67bfe02013-02-27 17:06:00 -0800445 hlist_for_each_entry_safe(e, n, &tun->flows[i], hash_link) {
Jason Wang96442e422012-10-31 19:46:02 +0000446 if (e->queue_index == queue_index)
447 tun_flow_delete(tun, e);
448 }
449 }
450 spin_unlock_bh(&tun->lock);
451}
452
Kees Cooke99e88a2017-10-16 14:43:17 -0700453static void tun_flow_cleanup(struct timer_list *t)
Jason Wang96442e422012-10-31 19:46:02 +0000454{
Kees Cooke99e88a2017-10-16 14:43:17 -0700455 struct tun_struct *tun = from_timer(tun, t, flow_gc_timer);
Jason Wang96442e422012-10-31 19:46:02 +0000456 unsigned long delay = tun->ageing_time;
457 unsigned long next_timer = jiffies + delay;
458 unsigned long count = 0;
459 int i;
460
461 tun_debug(KERN_INFO, tun, "tun_flow_cleanup\n");
462
Eric Dumazet7dbfb4e2017-10-20 11:29:55 -0700463 spin_lock(&tun->lock);
Jason Wang96442e422012-10-31 19:46:02 +0000464 for (i = 0; i < TUN_NUM_FLOW_ENTRIES; i++) {
465 struct tun_flow_entry *e;
Sasha Levinb67bfe02013-02-27 17:06:00 -0800466 struct hlist_node *n;
Jason Wang96442e422012-10-31 19:46:02 +0000467
Sasha Levinb67bfe02013-02-27 17:06:00 -0800468 hlist_for_each_entry_safe(e, n, &tun->flows[i], hash_link) {
Jason Wang96442e422012-10-31 19:46:02 +0000469 unsigned long this_timer;
Eric Dumazet81d98fa2017-10-20 11:29:56 -0700470
Jason Wang96442e422012-10-31 19:46:02 +0000471 this_timer = e->updated + delay;
Eric Dumazet81d98fa2017-10-20 11:29:56 -0700472 if (time_before_eq(this_timer, jiffies)) {
Jason Wang96442e422012-10-31 19:46:02 +0000473 tun_flow_delete(tun, e);
Eric Dumazet81d98fa2017-10-20 11:29:56 -0700474 continue;
475 }
476 count++;
477 if (time_before(this_timer, next_timer))
Jason Wang96442e422012-10-31 19:46:02 +0000478 next_timer = this_timer;
479 }
480 }
481
482 if (count)
483 mod_timer(&tun->flow_gc_timer, round_jiffies_up(next_timer));
Eric Dumazet7dbfb4e2017-10-20 11:29:55 -0700484 spin_unlock(&tun->lock);
Jason Wang96442e422012-10-31 19:46:02 +0000485}
486
Eric Dumazet49974422012-12-12 19:22:57 +0000487static void tun_flow_update(struct tun_struct *tun, u32 rxhash,
Jason Wang9e857222013-01-28 01:05:19 +0000488 struct tun_file *tfile)
Jason Wang96442e422012-10-31 19:46:02 +0000489{
490 struct hlist_head *head;
491 struct tun_flow_entry *e;
492 unsigned long delay = tun->ageing_time;
Jason Wang9e857222013-01-28 01:05:19 +0000493 u16 queue_index = tfile->queue_index;
Jason Wang96442e422012-10-31 19:46:02 +0000494
495 if (!rxhash)
496 return;
497 else
498 head = &tun->flows[tun_hashfn(rxhash)];
499
500 rcu_read_lock();
501
Jason Wang9e857222013-01-28 01:05:19 +0000502 /* We may get a very small possibility of OOO during switching, not
503 * worth to optimize.*/
504 if (tun->numqueues == 1 || tfile->detached)
Jason Wang96442e422012-10-31 19:46:02 +0000505 goto unlock;
506
507 e = tun_flow_find(head, rxhash);
508 if (likely(e)) {
509 /* TODO: keep queueing to old queue until it's empty? */
510 e->queue_index = queue_index;
511 e->updated = jiffies;
Tom Herbert9bc88932013-12-22 18:54:32 +0800512 sock_rps_record_flow_hash(e->rps_rxhash);
Jason Wang96442e422012-10-31 19:46:02 +0000513 } else {
514 spin_lock_bh(&tun->lock);
Jason Wangb8732fb2013-01-23 03:59:13 +0000515 if (!tun_flow_find(head, rxhash) &&
516 tun->flow_count < MAX_TAP_FLOWS)
Jason Wang96442e422012-10-31 19:46:02 +0000517 tun_flow_create(tun, head, rxhash, queue_index);
518
519 if (!timer_pending(&tun->flow_gc_timer))
520 mod_timer(&tun->flow_gc_timer,
521 round_jiffies_up(jiffies + delay));
522 spin_unlock_bh(&tun->lock);
523 }
524
525unlock:
526 rcu_read_unlock();
527}
528
Tom Herbert9bc88932013-12-22 18:54:32 +0800529/**
530 * Save the hash received in the stack receive path and update the
531 * flow_hash table accordingly.
532 */
533static inline void tun_flow_save_rps_rxhash(struct tun_flow_entry *e, u32 hash)
534{
Eric Dumazet567e4b72015-02-06 12:59:01 -0800535 if (unlikely(e->rps_rxhash != hash))
Tom Herbert9bc88932013-12-22 18:54:32 +0800536 e->rps_rxhash = hash;
Tom Herbert9bc88932013-12-22 18:54:32 +0800537}
538
Jason Wangc8d68e62012-10-31 19:46:00 +0000539/* We try to identify a flow through its rxhash first. The reason that
stephen hemminger92d4ea62013-12-05 20:42:58 -0800540 * we do not check rxq no. is because some cards(e.g 82599), chooses
Jason Wangc8d68e62012-10-31 19:46:00 +0000541 * the rxq based on the txq where the last packet of the flow comes. As
542 * the userspace application move between processors, we may get a
543 * different rxq no. here. If we could not get rxhash, then we would
544 * hope the rxq no. may help here.
545 */
Jason Wang96f84062017-12-04 17:31:23 +0800546static u16 tun_automq_select_queue(struct tun_struct *tun, struct sk_buff *skb)
Jason Wangc8d68e62012-10-31 19:46:00 +0000547{
Jason Wang96442e422012-10-31 19:46:02 +0000548 struct tun_flow_entry *e;
Jason Wangc8d68e62012-10-31 19:46:00 +0000549 u32 txq = 0;
550 u32 numqueues = 0;
551
Mark Rutland6aa7de02017-10-23 14:07:29 -0700552 numqueues = READ_ONCE(tun->numqueues);
Jason Wangc8d68e62012-10-31 19:46:00 +0000553
Jason Wangfeec0842017-06-06 14:09:49 +0800554 txq = __skb_get_hash_symmetric(skb);
Jason Wangc8d68e62012-10-31 19:46:00 +0000555 if (txq) {
Jason Wang96442e422012-10-31 19:46:02 +0000556 e = tun_flow_find(&tun->flows[tun_hashfn(txq)], txq);
Tom Herbert9bc88932013-12-22 18:54:32 +0800557 if (e) {
Tom Herbert9bc88932013-12-22 18:54:32 +0800558 tun_flow_save_rps_rxhash(e, txq);
Zhi Yong Wufbe4d452014-01-02 13:24:28 +0800559 txq = e->queue_index;
Tom Herbert9bc88932013-12-22 18:54:32 +0800560 } else
Jason Wang96442e422012-10-31 19:46:02 +0000561 /* use multiply and shift instead of expensive divide */
562 txq = ((u64)txq * numqueues) >> 32;
Jason Wangc8d68e62012-10-31 19:46:00 +0000563 } else if (likely(skb_rx_queue_recorded(skb))) {
564 txq = skb_get_rx_queue(skb);
565 while (unlikely(txq >= numqueues))
566 txq -= numqueues;
567 }
568
Jason Wangc8d68e62012-10-31 19:46:00 +0000569 return txq;
570}
571
Jason Wang96f84062017-12-04 17:31:23 +0800572static u16 tun_ebpf_select_queue(struct tun_struct *tun, struct sk_buff *skb)
573{
574 struct tun_steering_prog *prog;
575 u16 ret = 0;
576
577 prog = rcu_dereference(tun->steering_prog);
578 if (prog)
579 ret = bpf_prog_run_clear_cb(prog->prog, skb);
580
581 return ret % tun->numqueues;
582}
583
584static u16 tun_select_queue(struct net_device *dev, struct sk_buff *skb,
585 void *accel_priv, select_queue_fallback_t fallback)
586{
587 struct tun_struct *tun = netdev_priv(dev);
588 u16 ret;
589
590 rcu_read_lock();
591 if (rcu_dereference(tun->steering_prog))
592 ret = tun_ebpf_select_queue(tun, skb);
593 else
594 ret = tun_automq_select_queue(tun, skb);
595 rcu_read_unlock();
596
597 return ret;
598}
599
Jason Wangcde8b152012-10-31 19:46:01 +0000600static inline bool tun_not_capable(struct tun_struct *tun)
601{
602 const struct cred *cred = current_cred();
Eric W. Biedermanc260b772012-11-18 21:34:11 +0000603 struct net *net = dev_net(tun->dev);
Jason Wangcde8b152012-10-31 19:46:01 +0000604
605 return ((uid_valid(tun->owner) && !uid_eq(cred->euid, tun->owner)) ||
606 (gid_valid(tun->group) && !in_egroup_p(tun->group))) &&
Eric W. Biedermanc260b772012-11-18 21:34:11 +0000607 !ns_capable(net->user_ns, CAP_NET_ADMIN);
Jason Wangcde8b152012-10-31 19:46:01 +0000608}
609
Jason Wangc8d68e62012-10-31 19:46:00 +0000610static void tun_set_real_num_queues(struct tun_struct *tun)
611{
612 netif_set_real_num_tx_queues(tun->dev, tun->numqueues);
613 netif_set_real_num_rx_queues(tun->dev, tun->numqueues);
614}
615
Jason Wang4008e972012-12-13 23:53:30 +0000616static void tun_disable_queue(struct tun_struct *tun, struct tun_file *tfile)
617{
618 tfile->detached = tun;
619 list_add_tail(&tfile->next, &tun->disabled);
620 ++tun->numdisabled;
621}
622
Jason Wangd32649d2012-12-18 11:00:27 +0800623static struct tun_struct *tun_enable_queue(struct tun_file *tfile)
Jason Wang4008e972012-12-13 23:53:30 +0000624{
625 struct tun_struct *tun = tfile->detached;
626
627 tfile->detached = NULL;
628 list_del_init(&tfile->next);
629 --tun->numdisabled;
630 return tun;
631}
632
Jason Wang4bfb0512013-09-05 17:53:59 +0800633static void tun_queue_purge(struct tun_file *tfile)
634{
Jason Wang1576d982016-06-30 14:45:36 +0800635 struct sk_buff *skb;
636
637 while ((skb = skb_array_consume(&tfile->tx_array)) != NULL)
638 kfree_skb(skb);
639
Jason Wang5503fce2017-01-18 15:02:03 +0800640 skb_queue_purge(&tfile->sk.sk_write_queue);
Jason Wang4bfb0512013-09-05 17:53:59 +0800641 skb_queue_purge(&tfile->sk.sk_error_queue);
642}
643
Jason Wangc8d68e62012-10-31 19:46:00 +0000644static void __tun_detach(struct tun_file *tfile, bool clean)
645{
646 struct tun_file *ntfile;
647 struct tun_struct *tun;
Jason Wangc8d68e62012-10-31 19:46:00 +0000648
Jason Wangb8deabd2013-01-11 16:59:32 +0000649 tun = rtnl_dereference(tfile->tun);
650
Petar Penkov94317092017-09-22 13:49:14 -0700651 if (tun && clean) {
652 tun_napi_disable(tun, tfile);
653 tun_napi_del(tun, tfile);
654 }
655
Jason Wang9e857222013-01-28 01:05:19 +0000656 if (tun && !tfile->detached) {
Jason Wangc8d68e62012-10-31 19:46:00 +0000657 u16 index = tfile->queue_index;
658 BUG_ON(index >= tun->numqueues);
Jason Wangc8d68e62012-10-31 19:46:00 +0000659
660 rcu_assign_pointer(tun->tfiles[index],
661 tun->tfiles[tun->numqueues - 1]);
Jason Wangb8deabd2013-01-11 16:59:32 +0000662 ntfile = rtnl_dereference(tun->tfiles[index]);
Jason Wangc8d68e62012-10-31 19:46:00 +0000663 ntfile->queue_index = index;
664
665 --tun->numqueues;
Jason Wang9e857222013-01-28 01:05:19 +0000666 if (clean) {
Monam Agarwalc9566742014-03-24 00:02:32 +0530667 RCU_INIT_POINTER(tfile->tun, NULL);
Jason Wang4008e972012-12-13 23:53:30 +0000668 sock_put(&tfile->sk);
Jason Wang9e857222013-01-28 01:05:19 +0000669 } else
Jason Wang4008e972012-12-13 23:53:30 +0000670 tun_disable_queue(tun, tfile);
Jason Wangc8d68e62012-10-31 19:46:00 +0000671
672 synchronize_net();
Jason Wang96442e422012-10-31 19:46:02 +0000673 tun_flow_delete_by_queue(tun, tun->numqueues + 1);
Jason Wangc8d68e62012-10-31 19:46:00 +0000674 /* Drop read queue */
Jason Wang4bfb0512013-09-05 17:53:59 +0800675 tun_queue_purge(tfile);
Jason Wangc8d68e62012-10-31 19:46:00 +0000676 tun_set_real_num_queues(tun);
Jason Wangdd38bd82013-01-11 16:59:34 +0000677 } else if (tfile->detached && clean) {
Jason Wang4008e972012-12-13 23:53:30 +0000678 tun = tun_enable_queue(tfile);
Jason Wangdd38bd82013-01-11 16:59:34 +0000679 sock_put(&tfile->sk);
680 }
Jason Wangc8d68e62012-10-31 19:46:00 +0000681
682 if (clean) {
Michael S. Tsirkinaf668b32013-01-28 00:38:02 +0000683 if (tun && tun->numqueues == 0 && tun->numdisabled == 0) {
684 netif_carrier_off(tun->dev);
685
Michael S. Tsirkin40630b82014-11-19 15:17:31 +0200686 if (!(tun->flags & IFF_PERSIST) &&
Michael S. Tsirkinaf668b32013-01-28 00:38:02 +0000687 tun->dev->reg_state == NETREG_REGISTERED)
Jason Wang4008e972012-12-13 23:53:30 +0000688 unregister_netdevice(tun->dev);
Michael S. Tsirkinaf668b32013-01-28 00:38:02 +0000689 }
Jason Wang1576d982016-06-30 14:45:36 +0800690 if (tun)
691 skb_array_cleanup(&tfile->tx_array);
Eric W. Biederman140e807da2015-05-08 21:07:08 -0500692 sock_put(&tfile->sk);
Jason Wangc8d68e62012-10-31 19:46:00 +0000693 }
694}
695
696static void tun_detach(struct tun_file *tfile, bool clean)
697{
698 rtnl_lock();
699 __tun_detach(tfile, clean);
700 rtnl_unlock();
701}
702
703static void tun_detach_all(struct net_device *dev)
704{
705 struct tun_struct *tun = netdev_priv(dev);
Jason Wang4008e972012-12-13 23:53:30 +0000706 struct tun_file *tfile, *tmp;
Jason Wangc8d68e62012-10-31 19:46:00 +0000707 int i, n = tun->numqueues;
708
709 for (i = 0; i < n; i++) {
Jason Wangb8deabd2013-01-11 16:59:32 +0000710 tfile = rtnl_dereference(tun->tfiles[i]);
Jason Wangc8d68e62012-10-31 19:46:00 +0000711 BUG_ON(!tfile);
Petar Penkov94317092017-09-22 13:49:14 -0700712 tun_napi_disable(tun, tfile);
Jason Wangaddf8fc2016-05-19 13:36:51 +0800713 tfile->socket.sk->sk_shutdown = RCV_SHUTDOWN;
Xi Wang9e641bd2014-05-16 15:11:48 -0700714 tfile->socket.sk->sk_data_ready(tfile->socket.sk);
Monam Agarwalc9566742014-03-24 00:02:32 +0530715 RCU_INIT_POINTER(tfile->tun, NULL);
Jason Wangc8d68e62012-10-31 19:46:00 +0000716 --tun->numqueues;
717 }
Jason Wang9e857222013-01-28 01:05:19 +0000718 list_for_each_entry(tfile, &tun->disabled, next) {
Jason Wangaddf8fc2016-05-19 13:36:51 +0800719 tfile->socket.sk->sk_shutdown = RCV_SHUTDOWN;
Xi Wang9e641bd2014-05-16 15:11:48 -0700720 tfile->socket.sk->sk_data_ready(tfile->socket.sk);
Monam Agarwalc9566742014-03-24 00:02:32 +0530721 RCU_INIT_POINTER(tfile->tun, NULL);
Jason Wang9e857222013-01-28 01:05:19 +0000722 }
Jason Wangc8d68e62012-10-31 19:46:00 +0000723 BUG_ON(tun->numqueues != 0);
724
725 synchronize_net();
726 for (i = 0; i < n; i++) {
Jason Wangb8deabd2013-01-11 16:59:32 +0000727 tfile = rtnl_dereference(tun->tfiles[i]);
Petar Penkov94317092017-09-22 13:49:14 -0700728 tun_napi_del(tun, tfile);
Jason Wangc8d68e62012-10-31 19:46:00 +0000729 /* Drop read queue */
Jason Wang4bfb0512013-09-05 17:53:59 +0800730 tun_queue_purge(tfile);
Jason Wangc8d68e62012-10-31 19:46:00 +0000731 sock_put(&tfile->sk);
732 }
Jason Wang4008e972012-12-13 23:53:30 +0000733 list_for_each_entry_safe(tfile, tmp, &tun->disabled, next) {
734 tun_enable_queue(tfile);
Jason Wang4bfb0512013-09-05 17:53:59 +0800735 tun_queue_purge(tfile);
Jason Wang4008e972012-12-13 23:53:30 +0000736 sock_put(&tfile->sk);
737 }
738 BUG_ON(tun->numdisabled != 0);
Jason Wangdd38bd82013-01-11 16:59:34 +0000739
Michael S. Tsirkin40630b82014-11-19 15:17:31 +0200740 if (tun->flags & IFF_PERSIST)
Jason Wangdd38bd82013-01-11 16:59:34 +0000741 module_put(THIS_MODULE);
Jason Wangc8d68e62012-10-31 19:46:00 +0000742}
743
Petar Penkov94317092017-09-22 13:49:14 -0700744static int tun_attach(struct tun_struct *tun, struct file *file,
745 bool skip_filter, bool napi)
Eric W. Biedermana7385ba2009-01-20 10:57:48 +0000746{
Eric W. Biederman631ab462009-01-20 11:00:40 +0000747 struct tun_file *tfile = file->private_data;
Jason Wang1576d982016-06-30 14:45:36 +0800748 struct net_device *dev = tun->dev;
Eric W. Biederman38231b72009-01-20 11:02:28 +0000749 int err;
Eric W. Biedermana7385ba2009-01-20 10:57:48 +0000750
Paul Moore5dbbaf22013-01-14 07:12:19 +0000751 err = security_tun_dev_attach(tfile->socket.sk, tun->security);
752 if (err < 0)
753 goto out;
754
Eric W. Biederman38231b72009-01-20 11:02:28 +0000755 err = -EINVAL;
Jason Wang9e857222013-01-28 01:05:19 +0000756 if (rtnl_dereference(tfile->tun) && !tfile->detached)
Eric W. Biederman38231b72009-01-20 11:02:28 +0000757 goto out;
758
759 err = -EBUSY;
Michael S. Tsirkin40630b82014-11-19 15:17:31 +0200760 if (!(tun->flags & IFF_MULTI_QUEUE) && tun->numqueues == 1)
Jason Wangc8d68e62012-10-31 19:46:00 +0000761 goto out;
762
763 err = -E2BIG;
Jason Wang4008e972012-12-13 23:53:30 +0000764 if (!tfile->detached &&
765 tun->numqueues + tun->numdisabled == MAX_TAP_QUEUES)
Eric W. Biederman38231b72009-01-20 11:02:28 +0000766 goto out;
767
768 err = 0;
Jason Wang54f968d2012-10-31 19:45:57 +0000769
stephen hemminger92d4ea62013-12-05 20:42:58 -0800770 /* Re-attach the filter to persist device */
Pavel Emelyanov849c9b62013-08-21 14:32:21 +0400771 if (!skip_filter && (tun->filter_attached == true)) {
Hannes Frederic Sowa8ced4252016-04-05 17:10:16 +0200772 lock_sock(tfile->socket.sk);
773 err = sk_attach_filter(&tun->fprog, tfile->socket.sk);
774 release_sock(tfile->socket.sk);
Jason Wang54f968d2012-10-31 19:45:57 +0000775 if (!err)
776 goto out;
777 }
Jason Wang1576d982016-06-30 14:45:36 +0800778
779 if (!tfile->detached &&
780 skb_array_init(&tfile->tx_array, dev->tx_queue_len, GFP_KERNEL)) {
781 err = -ENOMEM;
782 goto out;
783 }
784
Jason Wangc8d68e62012-10-31 19:46:00 +0000785 tfile->queue_index = tun->numqueues;
Jason Wangaddf8fc2016-05-19 13:36:51 +0800786 tfile->socket.sk->sk_shutdown &= ~RCV_SHUTDOWN;
Jason Wang6e914fc2012-10-31 19:45:58 +0000787 rcu_assign_pointer(tfile->tun, tun);
Jason Wangc8d68e62012-10-31 19:46:00 +0000788 rcu_assign_pointer(tun->tfiles[tun->numqueues], tfile);
Jason Wangc8d68e62012-10-31 19:46:00 +0000789 tun->numqueues++;
790
Petar Penkov94317092017-09-22 13:49:14 -0700791 if (tfile->detached) {
Jason Wang4008e972012-12-13 23:53:30 +0000792 tun_enable_queue(tfile);
Petar Penkov94317092017-09-22 13:49:14 -0700793 } else {
Jason Wang4008e972012-12-13 23:53:30 +0000794 sock_hold(&tfile->sk);
Petar Penkov94317092017-09-22 13:49:14 -0700795 tun_napi_init(tun, tfile, napi);
796 }
Jason Wang4008e972012-12-13 23:53:30 +0000797
Jason Wangc8d68e62012-10-31 19:46:00 +0000798 tun_set_real_num_queues(tun);
799
Jason Wangc8d68e62012-10-31 19:46:00 +0000800 /* device is allowed to go away first, so no need to hold extra
801 * refcnt.
802 */
Eric W. Biedermana7385ba2009-01-20 10:57:48 +0000803
Eric W. Biederman38231b72009-01-20 11:02:28 +0000804out:
Eric W. Biederman38231b72009-01-20 11:02:28 +0000805 return err;
Eric W. Biedermana7385ba2009-01-20 10:57:48 +0000806}
807
yuan linyu9484dc72017-09-23 22:36:52 +0800808static struct tun_struct *tun_get(struct tun_file *tfile)
Eric W. Biederman631ab462009-01-20 11:00:40 +0000809{
Jason Wang6e914fc2012-10-31 19:45:58 +0000810 struct tun_struct *tun;
Eric W. Biedermanc70f1822009-01-20 11:07:17 +0000811
Jason Wang6e914fc2012-10-31 19:45:58 +0000812 rcu_read_lock();
813 tun = rcu_dereference(tfile->tun);
814 if (tun)
815 dev_hold(tun->dev);
816 rcu_read_unlock();
Eric W. Biedermanc70f1822009-01-20 11:07:17 +0000817
818 return tun;
Eric W. Biederman631ab462009-01-20 11:00:40 +0000819}
820
Eric W. Biederman631ab462009-01-20 11:00:40 +0000821static void tun_put(struct tun_struct *tun)
822{
Jason Wang6e914fc2012-10-31 19:45:58 +0000823 dev_put(tun->dev);
Eric W. Biederman631ab462009-01-20 11:00:40 +0000824}
825
Joe Perches6b8a66e2011-03-02 07:18:10 +0000826/* TAP filtering */
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -0700827static void addr_hash_set(u32 *mask, const u8 *addr)
828{
829 int n = ether_crc(ETH_ALEN, addr) >> 26;
830 mask[n >> 5] |= (1 << (n & 31));
831}
832
833static unsigned int addr_hash_test(const u32 *mask, const u8 *addr)
834{
835 int n = ether_crc(ETH_ALEN, addr) >> 26;
836 return mask[n >> 5] & (1 << (n & 31));
837}
838
839static int update_filter(struct tap_filter *filter, void __user *arg)
840{
841 struct { u8 u[ETH_ALEN]; } *addr;
842 struct tun_filter uf;
843 int err, alen, n, nexact;
844
845 if (copy_from_user(&uf, arg, sizeof(uf)))
846 return -EFAULT;
847
848 if (!uf.count) {
849 /* Disabled */
850 filter->count = 0;
851 return 0;
852 }
853
854 alen = ETH_ALEN * uf.count;
Markus Elfring28e81902016-08-20 08:54:15 +0200855 addr = memdup_user(arg + sizeof(uf), alen);
856 if (IS_ERR(addr))
857 return PTR_ERR(addr);
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -0700858
859 /* The filter is updated without holding any locks. Which is
860 * perfectly safe. We disable it first and in the worst
861 * case we'll accept a few undesired packets. */
862 filter->count = 0;
863 wmb();
864
865 /* Use first set of addresses as an exact filter */
866 for (n = 0; n < uf.count && n < FLT_EXACT_COUNT; n++)
867 memcpy(filter->addr[n], addr[n].u, ETH_ALEN);
868
869 nexact = n;
870
Alex Williamsoncfbf84f2009-02-08 17:49:17 -0800871 /* Remaining multicast addresses are hashed,
872 * unicast will leave the filter disabled. */
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -0700873 memset(filter->mask, 0, sizeof(filter->mask));
Alex Williamsoncfbf84f2009-02-08 17:49:17 -0800874 for (; n < uf.count; n++) {
875 if (!is_multicast_ether_addr(addr[n].u)) {
876 err = 0; /* no filter */
Markus Elfring3b8d2a62016-08-20 09:00:34 +0200877 goto free_addr;
Alex Williamsoncfbf84f2009-02-08 17:49:17 -0800878 }
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -0700879 addr_hash_set(filter->mask, addr[n].u);
Alex Williamsoncfbf84f2009-02-08 17:49:17 -0800880 }
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -0700881
882 /* For ALLMULTI just set the mask to all ones.
883 * This overrides the mask populated above. */
884 if ((uf.flags & TUN_FLT_ALLMULTI))
885 memset(filter->mask, ~0, sizeof(filter->mask));
886
887 /* Now enable the filter */
888 wmb();
889 filter->count = nexact;
890
891 /* Return the number of exact filters */
892 err = nexact;
Markus Elfring3b8d2a62016-08-20 09:00:34 +0200893free_addr:
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -0700894 kfree(addr);
895 return err;
896}
897
898/* Returns: 0 - drop, !=0 - accept */
899static int run_filter(struct tap_filter *filter, const struct sk_buff *skb)
900{
901 /* Cannot use eth_hdr(skb) here because skb_mac_hdr() is incorrect
902 * at this point. */
903 struct ethhdr *eh = (struct ethhdr *) skb->data;
904 int i;
905
906 /* Exact match */
907 for (i = 0; i < filter->count; i++)
Joe Perches2e42e472012-05-09 17:17:46 +0000908 if (ether_addr_equal(eh->h_dest, filter->addr[i]))
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -0700909 return 1;
910
911 /* Inexact match (multicast only) */
912 if (is_multicast_ether_addr(eh->h_dest))
913 return addr_hash_test(filter->mask, eh->h_dest);
914
915 return 0;
916}
917
918/*
919 * Checks whether the packet is accepted or not.
920 * Returns: 0 - drop, !=0 - accept
921 */
922static int check_filter(struct tap_filter *filter, const struct sk_buff *skb)
923{
924 if (!filter->count)
925 return 1;
926
927 return run_filter(filter, skb);
928}
929
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930/* Network device part of the driver */
931
Jeff Garzik7282d492006-09-13 14:30:00 -0400932static const struct ethtool_ops tun_ethtool_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933
Eric W. Biedermanc70f1822009-01-20 11:07:17 +0000934/* Net device detach from fd. */
935static void tun_net_uninit(struct net_device *dev)
936{
Jason Wangc8d68e62012-10-31 19:46:00 +0000937 tun_detach_all(dev);
Eric W. Biedermanc70f1822009-01-20 11:07:17 +0000938}
939
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940/* Net device open. */
941static int tun_net_open(struct net_device *dev)
942{
Hannes Frederic Sowab20e2d52017-03-13 00:00:26 +0100943 struct tun_struct *tun = netdev_priv(dev);
944 int i;
945
Jason Wangc8d68e62012-10-31 19:46:00 +0000946 netif_tx_start_all_queues(dev);
Hannes Frederic Sowab20e2d52017-03-13 00:00:26 +0100947
948 for (i = 0; i < tun->numqueues; i++) {
949 struct tun_file *tfile;
950
951 tfile = rtnl_dereference(tun->tfiles[i]);
952 tfile->socket.sk->sk_write_space(tfile->socket.sk);
953 }
954
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955 return 0;
956}
957
958/* Net device close. */
959static int tun_net_close(struct net_device *dev)
960{
Jason Wangc8d68e62012-10-31 19:46:00 +0000961 netif_tx_stop_all_queues(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962 return 0;
963}
964
965/* Net device start xmit */
Jason Wang96f84062017-12-04 17:31:23 +0800966static void tun_automq_xmit(struct tun_struct *tun, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967{
Jason Wang3df97ba2016-04-25 23:13:42 -0400968#ifdef CONFIG_RPS
Jason Wang96f84062017-12-04 17:31:23 +0800969 if (tun->numqueues == 1 && static_key_false(&rps_needed)) {
Tom Herbert9bc88932013-12-22 18:54:32 +0800970 /* Select queue was not called for the skbuff, so we extract the
971 * RPS hash and save it into the flow_table here.
972 */
973 __u32 rxhash;
974
Jason Wangfeec0842017-06-06 14:09:49 +0800975 rxhash = __skb_get_hash_symmetric(skb);
Tom Herbert9bc88932013-12-22 18:54:32 +0800976 if (rxhash) {
977 struct tun_flow_entry *e;
978 e = tun_flow_find(&tun->flows[tun_hashfn(rxhash)],
979 rxhash);
980 if (e)
981 tun_flow_save_rps_rxhash(e, rxhash);
982 }
983 }
Jason Wang3df97ba2016-04-25 23:13:42 -0400984#endif
Jason Wang96f84062017-12-04 17:31:23 +0800985}
986
987/* Net device start xmit */
988static netdev_tx_t tun_net_xmit(struct sk_buff *skb, struct net_device *dev)
989{
990 struct tun_struct *tun = netdev_priv(dev);
991 int txq = skb->queue_mapping;
992 struct tun_file *tfile;
Jason Wang96f84062017-12-04 17:31:23 +0800993
994 rcu_read_lock();
995 tfile = rcu_dereference(tun->tfiles[txq]);
Jason Wang96f84062017-12-04 17:31:23 +0800996
997 /* Drop packet if interface is not attached */
Willem de Bruijncc166422017-12-05 22:11:17 -0500998 if (txq >= tun->numqueues)
Jason Wang96f84062017-12-04 17:31:23 +0800999 goto drop;
1000
1001 if (!rcu_dereference(tun->steering_prog))
1002 tun_automq_xmit(tun, skb);
Tom Herbert9bc88932013-12-22 18:54:32 +08001003
Jason Wang6e914fc2012-10-31 19:45:58 +00001004 tun_debug(KERN_INFO, tun, "tun_net_xmit %d\n", skb->len);
1005
Jason Wangc8d68e62012-10-31 19:46:00 +00001006 BUG_ON(!tfile);
1007
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -07001008 /* Drop if the filter does not like it.
1009 * This is a noop if the filter is disabled.
1010 * Filter can be enabled only for the TAP devices. */
1011 if (!check_filter(&tun->txflt, skb))
1012 goto drop;
1013
Jason Wang54f968d2012-10-31 19:45:57 +00001014 if (tfile->socket.sk->sk_filter &&
1015 sk_filter(tfile->socket.sk, skb))
Michael S. Tsirkin99405162010-02-14 01:01:10 +00001016 goto drop;
1017
Willem de Bruijn1f8b9772017-08-03 16:29:41 -04001018 if (unlikely(skb_orphan_frags_rx(skb, GFP_ATOMIC)))
Jason Wang7bf66302013-09-05 17:54:00 +08001019 goto drop;
1020
Soheil Hassas Yeganeh7b996242016-08-23 18:22:33 -04001021 skb_tx_timestamp(skb);
Richard Cochraneda29772013-07-19 19:40:10 +02001022
Michael S. Tsirkin0110d6f2010-04-13 04:59:44 +00001023 /* Orphan the skb - required as we might hang on to it
Jason Wang7bf66302013-09-05 17:54:00 +08001024 * for indefinite time.
1025 */
Michael S. Tsirkin0110d6f2010-04-13 04:59:44 +00001026 skb_orphan(skb);
1027
Eric Dumazetf8af75f2013-03-06 11:02:37 +00001028 nf_reset(skb);
1029
Jason Wang1576d982016-06-30 14:45:36 +08001030 if (skb_array_produce(&tfile->tx_array, skb))
1031 goto drop;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032
1033 /* Notify and wake up reader process */
Jason Wang54f968d2012-10-31 19:45:57 +00001034 if (tfile->flags & TUN_FASYNC)
1035 kill_fasync(&tfile->fasync, SIGIO, POLL_IN);
Xi Wang9e641bd2014-05-16 15:11:48 -07001036 tfile->socket.sk->sk_data_ready(tfile->socket.sk);
Jason Wang6e914fc2012-10-31 19:45:58 +00001037
1038 rcu_read_unlock();
Patrick McHardy6ed10652009-06-23 06:03:08 +00001039 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040
1041drop:
Paolo Abeni608b9972016-04-13 10:52:20 +02001042 this_cpu_inc(tun->pcpu_stats->tx_dropped);
Michael S. Tsirkin149d36f2012-11-01 09:16:32 +00001043 skb_tx_error(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044 kfree_skb(skb);
Jason Wang6e914fc2012-10-31 19:45:58 +00001045 rcu_read_unlock();
Jason Wangbaeabab2014-11-18 13:20:41 +08001046 return NET_XMIT_DROP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047}
1048
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -07001049static void tun_net_mclist(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050{
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -07001051 /*
1052 * This callback is supposed to deal with mc filter in
1053 * _rx_ path and has nothing to do with the _tx_ path.
1054 * In rx path we always accept everything userspace gives us.
1055 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056}
1057
Michał Mirosławc8f44af2011-11-15 15:29:55 +00001058static netdev_features_t tun_net_fix_features(struct net_device *dev,
1059 netdev_features_t features)
Michał Mirosław88255372011-04-19 06:13:10 +00001060{
1061 struct tun_struct *tun = netdev_priv(dev);
1062
1063 return (features & tun->set_features) | (features & ~TUN_USER_FEATURES);
1064}
Neil Hormanbebd0972011-06-15 05:25:01 +00001065#ifdef CONFIG_NET_POLL_CONTROLLER
1066static void tun_poll_controller(struct net_device *dev)
1067{
1068 /*
1069 * Tun only receives frames when:
1070 * 1) the char device endpoint gets data from user space
1071 * 2) the tun socket gets a sendmsg call from user space
Petar Penkov94317092017-09-22 13:49:14 -07001072 * If NAPI is not enabled, since both of those are synchronous
1073 * operations, we are guaranteed never to have pending data when we poll
1074 * for it so there is nothing to do here but return.
Neil Hormanbebd0972011-06-15 05:25:01 +00001075 * We need this though so netpoll recognizes us as an interface that
1076 * supports polling, which enables bridge devices in virt setups to
1077 * still use netconsole
Petar Penkov94317092017-09-22 13:49:14 -07001078 * If NAPI is enabled, however, we need to schedule polling for all
Petar Penkov90e33d42017-09-22 13:49:15 -07001079 * queues unless we are using napi_gro_frags(), which we call in
1080 * process context and not in NAPI context.
Neil Hormanbebd0972011-06-15 05:25:01 +00001081 */
Petar Penkov94317092017-09-22 13:49:14 -07001082 struct tun_struct *tun = netdev_priv(dev);
1083
1084 if (tun->flags & IFF_NAPI) {
1085 struct tun_file *tfile;
1086 int i;
1087
Petar Penkov90e33d42017-09-22 13:49:15 -07001088 if (tun_napi_frags_enabled(tun))
1089 return;
1090
Petar Penkov94317092017-09-22 13:49:14 -07001091 rcu_read_lock();
1092 for (i = 0; i < tun->numqueues; i++) {
1093 tfile = rcu_dereference(tun->tfiles[i]);
Eric Dumazetaec72f32017-10-18 12:12:09 -07001094 if (tfile->napi_enabled)
1095 napi_schedule(&tfile->napi);
Petar Penkov94317092017-09-22 13:49:14 -07001096 }
1097 rcu_read_unlock();
1098 }
Neil Hormanbebd0972011-06-15 05:25:01 +00001099 return;
1100}
1101#endif
Paolo Abenieaea34b2016-02-26 10:45:40 +01001102
1103static void tun_set_headroom(struct net_device *dev, int new_hr)
1104{
1105 struct tun_struct *tun = netdev_priv(dev);
1106
1107 if (new_hr < NET_SKB_PAD)
1108 new_hr = NET_SKB_PAD;
1109
1110 tun->align = new_hr;
1111}
1112
stephen hemmingerbc1f4472017-01-06 19:12:52 -08001113static void
Paolo Abeni608b9972016-04-13 10:52:20 +02001114tun_net_get_stats64(struct net_device *dev, struct rtnl_link_stats64 *stats)
1115{
1116 u32 rx_dropped = 0, tx_dropped = 0, rx_frame_errors = 0;
1117 struct tun_struct *tun = netdev_priv(dev);
1118 struct tun_pcpu_stats *p;
1119 int i;
1120
1121 for_each_possible_cpu(i) {
1122 u64 rxpackets, rxbytes, txpackets, txbytes;
1123 unsigned int start;
1124
1125 p = per_cpu_ptr(tun->pcpu_stats, i);
1126 do {
1127 start = u64_stats_fetch_begin(&p->syncp);
1128 rxpackets = p->rx_packets;
1129 rxbytes = p->rx_bytes;
1130 txpackets = p->tx_packets;
1131 txbytes = p->tx_bytes;
1132 } while (u64_stats_fetch_retry(&p->syncp, start));
1133
1134 stats->rx_packets += rxpackets;
1135 stats->rx_bytes += rxbytes;
1136 stats->tx_packets += txpackets;
1137 stats->tx_bytes += txbytes;
1138
1139 /* u32 counters */
1140 rx_dropped += p->rx_dropped;
1141 rx_frame_errors += p->rx_frame_errors;
1142 tx_dropped += p->tx_dropped;
1143 }
1144 stats->rx_dropped = rx_dropped;
1145 stats->rx_frame_errors = rx_frame_errors;
1146 stats->tx_dropped = tx_dropped;
Paolo Abeni608b9972016-04-13 10:52:20 +02001147}
1148
Jason Wang761876c2017-08-11 19:41:18 +08001149static int tun_xdp_set(struct net_device *dev, struct bpf_prog *prog,
1150 struct netlink_ext_ack *extack)
1151{
1152 struct tun_struct *tun = netdev_priv(dev);
1153 struct bpf_prog *old_prog;
1154
1155 old_prog = rtnl_dereference(tun->xdp_prog);
1156 rcu_assign_pointer(tun->xdp_prog, prog);
1157 if (old_prog)
1158 bpf_prog_put(old_prog);
1159
1160 return 0;
1161}
1162
1163static u32 tun_xdp_query(struct net_device *dev)
1164{
1165 struct tun_struct *tun = netdev_priv(dev);
1166 const struct bpf_prog *xdp_prog;
1167
1168 xdp_prog = rtnl_dereference(tun->xdp_prog);
1169 if (xdp_prog)
1170 return xdp_prog->aux->id;
1171
1172 return 0;
1173}
1174
Jakub Kicinskif4e63522017-11-03 13:56:16 -07001175static int tun_xdp(struct net_device *dev, struct netdev_bpf *xdp)
Jason Wang761876c2017-08-11 19:41:18 +08001176{
1177 switch (xdp->command) {
1178 case XDP_SETUP_PROG:
1179 return tun_xdp_set(dev, xdp->prog, xdp->extack);
1180 case XDP_QUERY_PROG:
1181 xdp->prog_id = tun_xdp_query(dev);
1182 xdp->prog_attached = !!xdp->prog_id;
1183 return 0;
1184 default:
1185 return -EINVAL;
1186 }
1187}
1188
Stephen Hemminger758e43b2008-11-19 22:10:37 -08001189static const struct net_device_ops tun_netdev_ops = {
Eric W. Biedermanc70f1822009-01-20 11:07:17 +00001190 .ndo_uninit = tun_net_uninit,
Stephen Hemminger758e43b2008-11-19 22:10:37 -08001191 .ndo_open = tun_net_open,
1192 .ndo_stop = tun_net_close,
Stephen Hemminger00829822008-11-20 20:14:53 -08001193 .ndo_start_xmit = tun_net_xmit,
Michał Mirosław88255372011-04-19 06:13:10 +00001194 .ndo_fix_features = tun_net_fix_features,
Jason Wangc8d68e62012-10-31 19:46:00 +00001195 .ndo_select_queue = tun_select_queue,
Neil Hormanbebd0972011-06-15 05:25:01 +00001196#ifdef CONFIG_NET_POLL_CONTROLLER
1197 .ndo_poll_controller = tun_poll_controller,
1198#endif
Paolo Abenieaea34b2016-02-26 10:45:40 +01001199 .ndo_set_rx_headroom = tun_set_headroom,
Paolo Abeni608b9972016-04-13 10:52:20 +02001200 .ndo_get_stats64 = tun_net_get_stats64,
Stephen Hemminger758e43b2008-11-19 22:10:37 -08001201};
1202
1203static const struct net_device_ops tap_netdev_ops = {
Eric W. Biedermanc70f1822009-01-20 11:07:17 +00001204 .ndo_uninit = tun_net_uninit,
Stephen Hemminger758e43b2008-11-19 22:10:37 -08001205 .ndo_open = tun_net_open,
1206 .ndo_stop = tun_net_close,
Stephen Hemminger00829822008-11-20 20:14:53 -08001207 .ndo_start_xmit = tun_net_xmit,
Michał Mirosław88255372011-04-19 06:13:10 +00001208 .ndo_fix_features = tun_net_fix_features,
Jiri Pirkoafc4b132011-08-16 06:29:01 +00001209 .ndo_set_rx_mode = tun_net_mclist,
Stephen Hemminger758e43b2008-11-19 22:10:37 -08001210 .ndo_set_mac_address = eth_mac_addr,
1211 .ndo_validate_addr = eth_validate_addr,
Jason Wangc8d68e62012-10-31 19:46:00 +00001212 .ndo_select_queue = tun_select_queue,
Neil Hormanbebd0972011-06-15 05:25:01 +00001213#ifdef CONFIG_NET_POLL_CONTROLLER
1214 .ndo_poll_controller = tun_poll_controller,
1215#endif
Toshiaki Makita5e527962015-07-31 15:03:27 +09001216 .ndo_features_check = passthru_features_check,
Paolo Abenieaea34b2016-02-26 10:45:40 +01001217 .ndo_set_rx_headroom = tun_set_headroom,
Paolo Abeni608b9972016-04-13 10:52:20 +02001218 .ndo_get_stats64 = tun_net_get_stats64,
Jakub Kicinskif4e63522017-11-03 13:56:16 -07001219 .ndo_bpf = tun_xdp,
Stephen Hemminger758e43b2008-11-19 22:10:37 -08001220};
1221
Pavel Emelyanov944a1372013-06-11 17:01:08 +04001222static void tun_flow_init(struct tun_struct *tun)
Jason Wang96442e422012-10-31 19:46:02 +00001223{
1224 int i;
1225
Jason Wang96442e422012-10-31 19:46:02 +00001226 for (i = 0; i < TUN_NUM_FLOW_ENTRIES; i++)
1227 INIT_HLIST_HEAD(&tun->flows[i]);
1228
1229 tun->ageing_time = TUN_FLOW_EXPIRE;
Kees Cooke99e88a2017-10-16 14:43:17 -07001230 timer_setup(&tun->flow_gc_timer, tun_flow_cleanup, 0);
1231 mod_timer(&tun->flow_gc_timer,
1232 round_jiffies_up(jiffies + tun->ageing_time));
Jason Wang96442e422012-10-31 19:46:02 +00001233}
1234
1235static void tun_flow_uninit(struct tun_struct *tun)
1236{
1237 del_timer_sync(&tun->flow_gc_timer);
1238 tun_flow_flush(tun);
Jason Wang96442e422012-10-31 19:46:02 +00001239}
1240
Jarod Wilson91572082016-10-20 13:55:20 -04001241#define MIN_MTU 68
1242#define MAX_MTU 65535
1243
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244/* Initialize net device. */
1245static void tun_net_init(struct net_device *dev)
1246{
1247 struct tun_struct *tun = netdev_priv(dev);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001248
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249 switch (tun->flags & TUN_TYPE_MASK) {
Michael S. Tsirkin40630b82014-11-19 15:17:31 +02001250 case IFF_TUN:
Stephen Hemminger758e43b2008-11-19 22:10:37 -08001251 dev->netdev_ops = &tun_netdev_ops;
1252
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253 /* Point-to-Point TUN Device */
1254 dev->hard_header_len = 0;
1255 dev->addr_len = 0;
1256 dev->mtu = 1500;
1257
1258 /* Zero header length */
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001259 dev->type = ARPHRD_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260 dev->flags = IFF_POINTOPOINT | IFF_NOARP | IFF_MULTICAST;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261 break;
1262
Michael S. Tsirkin40630b82014-11-19 15:17:31 +02001263 case IFF_TAP:
Kusanagi Kouichi7a0a9602008-12-29 18:23:28 -08001264 dev->netdev_ops = &tap_netdev_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265 /* Ethernet TAP Device */
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -07001266 ether_setup(dev);
Neil Horman550fd082011-07-26 06:05:38 +00001267 dev->priv_flags &= ~IFF_TX_SKB_SHARING;
stephen hemmingera6768472012-12-10 15:16:00 +00001268 dev->priv_flags |= IFF_LIVE_ADDR_CHANGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269
Danny Kukawkaf2cedb62012-02-15 06:45:39 +00001270 eth_hw_addr_random(dev);
Brian Braunstein36226a82007-04-26 01:00:55 -07001271
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272 break;
1273 }
Jarod Wilson91572082016-10-20 13:55:20 -04001274
1275 dev->min_mtu = MIN_MTU;
1276 dev->max_mtu = MAX_MTU - dev->hard_header_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277}
1278
1279/* Character device part */
1280
1281/* Poll */
Jason Wangc8d68e62012-10-31 19:46:00 +00001282static unsigned int tun_chr_poll(struct file *file, poll_table *wait)
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001283{
Eric W. Biedermanb2430de2009-01-20 11:03:21 +00001284 struct tun_file *tfile = file->private_data;
yuan linyu9484dc72017-09-23 22:36:52 +08001285 struct tun_struct *tun = tun_get(tfile);
Mariusz Kozlowski3c8a9c62009-07-05 19:48:35 +00001286 struct sock *sk;
Herbert Xu33dccbb2009-02-05 21:25:32 -08001287 unsigned int mask = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288
1289 if (!tun)
Eric W. Biedermaneac9e902009-01-20 10:59:05 +00001290 return POLLERR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001291
Jason Wang54f968d2012-10-31 19:45:57 +00001292 sk = tfile->socket.sk;
Mariusz Kozlowski3c8a9c62009-07-05 19:48:35 +00001293
Joe Perches6b8a66e2011-03-02 07:18:10 +00001294 tun_debug(KERN_INFO, tun, "tun_chr_poll\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295
Xi Wang9e641bd2014-05-16 15:11:48 -07001296 poll_wait(file, sk_sleep(sk), wait);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001297
Jason Wang1576d982016-06-30 14:45:36 +08001298 if (!skb_array_empty(&tfile->tx_array))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299 mask |= POLLIN | POLLRDNORM;
1300
Hannes Frederic Sowab20e2d52017-03-13 00:00:26 +01001301 if (tun->dev->flags & IFF_UP &&
1302 (sock_writeable(sk) ||
1303 (!test_and_set_bit(SOCKWQ_ASYNC_NOSPACE, &sk->sk_socket->flags) &&
1304 sock_writeable(sk))))
Herbert Xu33dccbb2009-02-05 21:25:32 -08001305 mask |= POLLOUT | POLLWRNORM;
1306
Eric W. Biedermanc70f1822009-01-20 11:07:17 +00001307 if (tun->dev->reg_state != NETREG_REGISTERED)
1308 mask = POLLERR;
1309
Eric W. Biederman631ab462009-01-20 11:00:40 +00001310 tun_put(tun);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311 return mask;
1312}
1313
Petar Penkov90e33d42017-09-22 13:49:15 -07001314static struct sk_buff *tun_napi_alloc_frags(struct tun_file *tfile,
1315 size_t len,
1316 const struct iov_iter *it)
1317{
1318 struct sk_buff *skb;
1319 size_t linear;
1320 int err;
1321 int i;
1322
1323 if (it->nr_segs > MAX_SKB_FRAGS + 1)
1324 return ERR_PTR(-ENOMEM);
1325
1326 local_bh_disable();
1327 skb = napi_get_frags(&tfile->napi);
1328 local_bh_enable();
1329 if (!skb)
1330 return ERR_PTR(-ENOMEM);
1331
1332 linear = iov_iter_single_seg_count(it);
1333 err = __skb_grow(skb, linear);
1334 if (err)
1335 goto free;
1336
1337 skb->len = len;
1338 skb->data_len = len - linear;
1339 skb->truesize += skb->data_len;
1340
1341 for (i = 1; i < it->nr_segs; i++) {
1342 size_t fragsz = it->iov[i].iov_len;
1343 unsigned long offset;
1344 struct page *page;
1345 void *data;
1346
1347 if (fragsz == 0 || fragsz > PAGE_SIZE) {
1348 err = -EINVAL;
1349 goto free;
1350 }
1351
1352 local_bh_disable();
1353 data = napi_alloc_frag(fragsz);
1354 local_bh_enable();
1355 if (!data) {
1356 err = -ENOMEM;
1357 goto free;
1358 }
1359
1360 page = virt_to_head_page(data);
1361 offset = data - page_address(page);
1362 skb_fill_page_desc(skb, i - 1, page, offset, fragsz);
1363 }
1364
1365 return skb;
1366free:
1367 /* frees skb and all frags allocated with napi_alloc_frag() */
1368 napi_free_frags(&tfile->napi);
1369 return ERR_PTR(err);
1370}
1371
Rusty Russellf42157c2008-08-15 15:15:10 -07001372/* prepad is the amount to reserve at front. len is length after that.
1373 * linear is a hint as to how much to copy (usually headers). */
Jason Wang54f968d2012-10-31 19:45:57 +00001374static struct sk_buff *tun_alloc_skb(struct tun_file *tfile,
stephen hemminger6f7c1562011-06-08 14:33:08 +00001375 size_t prepad, size_t len,
1376 size_t linear, int noblock)
Rusty Russellf42157c2008-08-15 15:15:10 -07001377{
Jason Wang54f968d2012-10-31 19:45:57 +00001378 struct sock *sk = tfile->socket.sk;
Rusty Russellf42157c2008-08-15 15:15:10 -07001379 struct sk_buff *skb;
Herbert Xu33dccbb2009-02-05 21:25:32 -08001380 int err;
Rusty Russellf42157c2008-08-15 15:15:10 -07001381
1382 /* Under a page? Don't bother with paged skb. */
Herbert Xu0eca93b2009-04-14 02:09:43 -07001383 if (prepad + len < PAGE_SIZE || !linear)
Herbert Xu33dccbb2009-02-05 21:25:32 -08001384 linear = len;
Rusty Russellf42157c2008-08-15 15:15:10 -07001385
Herbert Xu33dccbb2009-02-05 21:25:32 -08001386 skb = sock_alloc_send_pskb(sk, prepad + linear, len - linear, noblock,
Eric Dumazet28d64272013-08-08 14:38:47 -07001387 &err, 0);
Rusty Russellf42157c2008-08-15 15:15:10 -07001388 if (!skb)
Herbert Xu33dccbb2009-02-05 21:25:32 -08001389 return ERR_PTR(err);
Rusty Russellf42157c2008-08-15 15:15:10 -07001390
1391 skb_reserve(skb, prepad);
1392 skb_put(skb, linear);
Herbert Xu33dccbb2009-02-05 21:25:32 -08001393 skb->data_len = len - linear;
1394 skb->len += len - linear;
Rusty Russellf42157c2008-08-15 15:15:10 -07001395
1396 return skb;
1397}
1398
Jason Wang5503fce2017-01-18 15:02:03 +08001399static void tun_rx_batched(struct tun_struct *tun, struct tun_file *tfile,
1400 struct sk_buff *skb, int more)
1401{
1402 struct sk_buff_head *queue = &tfile->sk.sk_write_queue;
1403 struct sk_buff_head process_queue;
1404 u32 rx_batched = tun->rx_batched;
1405 bool rcv = false;
1406
1407 if (!rx_batched || (!more && skb_queue_empty(queue))) {
1408 local_bh_disable();
1409 netif_receive_skb(skb);
1410 local_bh_enable();
1411 return;
1412 }
1413
1414 spin_lock(&queue->lock);
1415 if (!more || skb_queue_len(queue) == rx_batched) {
1416 __skb_queue_head_init(&process_queue);
1417 skb_queue_splice_tail_init(queue, &process_queue);
1418 rcv = true;
1419 } else {
1420 __skb_queue_tail(queue, skb);
1421 }
1422 spin_unlock(&queue->lock);
1423
1424 if (rcv) {
1425 struct sk_buff *nskb;
1426
1427 local_bh_disable();
1428 while ((nskb = __skb_dequeue(&process_queue)))
1429 netif_receive_skb(nskb);
1430 netif_receive_skb(skb);
1431 local_bh_enable();
1432 }
1433}
1434
Jason Wang66ccbc92017-08-11 19:41:16 +08001435static bool tun_can_build_skb(struct tun_struct *tun, struct tun_file *tfile,
1436 int len, int noblock, bool zerocopy)
1437{
1438 if ((tun->flags & TUN_TYPE_MASK) != IFF_TAP)
1439 return false;
1440
1441 if (tfile->socket.sk->sk_sndbuf != INT_MAX)
1442 return false;
1443
1444 if (!noblock)
1445 return false;
1446
1447 if (zerocopy)
1448 return false;
1449
1450 if (SKB_DATA_ALIGN(len + TUN_RX_PAD) +
1451 SKB_DATA_ALIGN(sizeof(struct skb_shared_info)) > PAGE_SIZE)
1452 return false;
1453
1454 return true;
1455}
1456
Jason Wang761876c2017-08-11 19:41:18 +08001457static struct sk_buff *tun_build_skb(struct tun_struct *tun,
1458 struct tun_file *tfile,
Jason Wang66ccbc92017-08-11 19:41:16 +08001459 struct iov_iter *from,
Jason Wang761876c2017-08-11 19:41:18 +08001460 struct virtio_net_hdr *hdr,
Jason Wang1cfe6e92017-09-04 11:36:09 +08001461 int len, int *skb_xdp)
Jason Wang66ccbc92017-08-11 19:41:16 +08001462{
Eric Dumazet0bbd7da2017-08-16 22:14:33 +08001463 struct page_frag *alloc_frag = &current->task_frag;
Jason Wang66ccbc92017-08-11 19:41:16 +08001464 struct sk_buff *skb;
Jason Wang761876c2017-08-11 19:41:18 +08001465 struct bpf_prog *xdp_prog;
Jason Wang7df13212017-09-04 11:36:08 +08001466 int buflen = SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
Jason Wang761876c2017-08-11 19:41:18 +08001467 unsigned int delta = 0;
Jason Wang66ccbc92017-08-11 19:41:16 +08001468 char *buf;
1469 size_t copied;
Jason Wang761876c2017-08-11 19:41:18 +08001470 bool xdp_xmit = false;
Jason Wang7df13212017-09-04 11:36:08 +08001471 int err, pad = TUN_RX_PAD;
1472
1473 rcu_read_lock();
1474 xdp_prog = rcu_dereference(tun->xdp_prog);
1475 if (xdp_prog)
1476 pad += TUN_HEADROOM;
1477 buflen += SKB_DATA_ALIGN(len + pad);
1478 rcu_read_unlock();
Jason Wang66ccbc92017-08-11 19:41:16 +08001479
Jason Wang63b9ab62017-10-27 11:05:44 +08001480 alloc_frag->offset = ALIGN((u64)alloc_frag->offset, SMP_CACHE_BYTES);
Jason Wang66ccbc92017-08-11 19:41:16 +08001481 if (unlikely(!skb_page_frag_refill(buflen, alloc_frag, GFP_KERNEL)))
1482 return ERR_PTR(-ENOMEM);
1483
1484 buf = (char *)page_address(alloc_frag->page) + alloc_frag->offset;
1485 copied = copy_page_from_iter(alloc_frag->page,
Jason Wang7df13212017-09-04 11:36:08 +08001486 alloc_frag->offset + pad,
Jason Wang66ccbc92017-08-11 19:41:16 +08001487 len, from);
1488 if (copied != len)
1489 return ERR_PTR(-EFAULT);
1490
Jason Wang7df13212017-09-04 11:36:08 +08001491 /* There's a small window that XDP may be set after the check
1492 * of xdp_prog above, this should be rare and for simplicity
1493 * we do XDP on skb in case the headroom is not enough.
1494 */
1495 if (hdr->gso_type || !xdp_prog)
Jason Wang1cfe6e92017-09-04 11:36:09 +08001496 *skb_xdp = 1;
Jason Wang761876c2017-08-11 19:41:18 +08001497 else
Jason Wang1cfe6e92017-09-04 11:36:09 +08001498 *skb_xdp = 0;
Jason Wang66ccbc92017-08-11 19:41:16 +08001499
Jason Wang761876c2017-08-11 19:41:18 +08001500 rcu_read_lock();
1501 xdp_prog = rcu_dereference(tun->xdp_prog);
Jason Wang1cfe6e92017-09-04 11:36:09 +08001502 if (xdp_prog && !*skb_xdp) {
Jason Wang761876c2017-08-11 19:41:18 +08001503 struct xdp_buff xdp;
1504 void *orig_data;
1505 u32 act;
1506
1507 xdp.data_hard_start = buf;
Jason Wang7df13212017-09-04 11:36:08 +08001508 xdp.data = buf + pad;
Daniel Borkmannde8f3a82017-09-25 02:25:51 +02001509 xdp_set_data_meta_invalid(&xdp);
Jason Wang761876c2017-08-11 19:41:18 +08001510 xdp.data_end = xdp.data + len;
1511 orig_data = xdp.data;
1512 act = bpf_prog_run_xdp(xdp_prog, &xdp);
1513
1514 switch (act) {
1515 case XDP_REDIRECT:
1516 get_page(alloc_frag->page);
1517 alloc_frag->offset += buflen;
1518 err = xdp_do_redirect(tun->dev, &xdp, xdp_prog);
1519 if (err)
1520 goto err_redirect;
Xin Long654d5732017-11-19 19:31:04 +08001521 rcu_read_unlock();
Jason Wang761876c2017-08-11 19:41:18 +08001522 return NULL;
1523 case XDP_TX:
1524 xdp_xmit = true;
1525 /* fall through */
1526 case XDP_PASS:
1527 delta = orig_data - xdp.data;
1528 break;
1529 default:
1530 bpf_warn_invalid_xdp_action(act);
1531 /* fall through */
1532 case XDP_ABORTED:
1533 trace_xdp_exception(tun->dev, xdp_prog, act);
1534 /* fall through */
1535 case XDP_DROP:
1536 goto err_xdp;
1537 }
1538 }
1539
1540 skb = build_skb(buf, buflen);
1541 if (!skb) {
1542 rcu_read_unlock();
1543 return ERR_PTR(-ENOMEM);
1544 }
1545
Jason Wang7df13212017-09-04 11:36:08 +08001546 skb_reserve(skb, pad - delta);
Jason Wang761876c2017-08-11 19:41:18 +08001547 skb_put(skb, len + delta);
Jason Wang66ccbc92017-08-11 19:41:16 +08001548 get_page(alloc_frag->page);
1549 alloc_frag->offset += buflen;
1550
Jason Wang761876c2017-08-11 19:41:18 +08001551 if (xdp_xmit) {
1552 skb->dev = tun->dev;
1553 generic_xdp_tx(skb, xdp_prog);
Xin Long654d5732017-11-19 19:31:04 +08001554 rcu_read_unlock();
Jason Wang761876c2017-08-11 19:41:18 +08001555 return NULL;
1556 }
1557
1558 rcu_read_unlock();
1559
Jason Wang66ccbc92017-08-11 19:41:16 +08001560 return skb;
Jason Wang761876c2017-08-11 19:41:18 +08001561
1562err_redirect:
1563 put_page(alloc_frag->page);
1564err_xdp:
1565 rcu_read_unlock();
1566 this_cpu_inc(tun->pcpu_stats->rx_dropped);
1567 return NULL;
Jason Wang66ccbc92017-08-11 19:41:16 +08001568}
1569
Linus Torvalds1da177e2005-04-16 15:20:36 -07001570/* Get packet from user space buffer */
Jason Wang54f968d2012-10-31 19:45:57 +00001571static ssize_t tun_get_user(struct tun_struct *tun, struct tun_file *tfile,
Al Virof5ff53b2014-06-19 15:36:49 -04001572 void *msg_control, struct iov_iter *from,
Jason Wang5503fce2017-01-18 15:02:03 +08001573 int noblock, bool more)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001574{
Harvey Harrison09640e62009-02-01 00:45:17 -08001575 struct tun_pi pi = { 0, cpu_to_be16(ETH_P_IP) };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001576 struct sk_buff *skb;
Al Virof5ff53b2014-06-19 15:36:49 -04001577 size_t total_len = iov_iter_count(from);
Paolo Abenieaea34b2016-02-26 10:45:40 +01001578 size_t len = total_len, align = tun->align, linear;
Rusty Russellf43798c2008-07-03 03:48:02 -07001579 struct virtio_net_hdr gso = { 0 };
Paolo Abeni608b9972016-04-13 10:52:20 +02001580 struct tun_pcpu_stats *stats;
Jason Wang96f8d9e2013-11-13 14:00:39 +08001581 int good_linear;
Michael S. Tsirkin06908992012-07-20 09:23:23 +00001582 int copylen;
1583 bool zerocopy = false;
1584 int err;
Jason Wang96f84062017-12-04 17:31:23 +08001585 u32 rxhash = 0;
Jason Wang1cfe6e92017-09-04 11:36:09 +08001586 int skb_xdp = 1;
Petar Penkov90e33d42017-09-22 13:49:15 -07001587 bool frags = tun_napi_frags_enabled(tun);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588
Eric Dumazet1bd4978a2015-12-16 08:57:37 -08001589 if (!(tun->dev->flags & IFF_UP))
1590 return -EIO;
1591
Michael S. Tsirkin40630b82014-11-19 15:17:31 +02001592 if (!(tun->flags & IFF_NO_PI)) {
Dan Carpenter15718ea2013-08-15 15:52:57 +03001593 if (len < sizeof(pi))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001594 return -EINVAL;
Dan Carpenter15718ea2013-08-15 15:52:57 +03001595 len -= sizeof(pi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001596
Al Virocbbd26b2016-11-01 22:09:04 -04001597 if (!copy_from_iter_full(&pi, sizeof(pi), from))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598 return -EFAULT;
1599 }
1600
Michael S. Tsirkin40630b82014-11-19 15:17:31 +02001601 if (tun->flags & IFF_VNET_HDR) {
Willem de Bruijne1edab82017-02-03 18:20:48 -05001602 int vnet_hdr_sz = READ_ONCE(tun->vnet_hdr_sz);
1603
1604 if (len < vnet_hdr_sz)
Rusty Russellf43798c2008-07-03 03:48:02 -07001605 return -EINVAL;
Willem de Bruijne1edab82017-02-03 18:20:48 -05001606 len -= vnet_hdr_sz;
Rusty Russellf43798c2008-07-03 03:48:02 -07001607
Al Virocbbd26b2016-11-01 22:09:04 -04001608 if (!copy_from_iter_full(&gso, sizeof(gso), from))
Rusty Russellf43798c2008-07-03 03:48:02 -07001609 return -EFAULT;
1610
Herbert Xu49091222009-06-08 00:20:01 -07001611 if ((gso.flags & VIRTIO_NET_HDR_F_NEEDS_CSUM) &&
Michael S. Tsirkin56f0dcc2014-10-23 22:59:31 +03001612 tun16_to_cpu(tun, gso.csum_start) + tun16_to_cpu(tun, gso.csum_offset) + 2 > tun16_to_cpu(tun, gso.hdr_len))
1613 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 -07001614
Michael S. Tsirkin56f0dcc2014-10-23 22:59:31 +03001615 if (tun16_to_cpu(tun, gso.hdr_len) > len)
Rusty Russellf43798c2008-07-03 03:48:02 -07001616 return -EINVAL;
Willem de Bruijne1edab82017-02-03 18:20:48 -05001617 iov_iter_advance(from, vnet_hdr_sz - sizeof(gso));
Rusty Russellf43798c2008-07-03 03:48:02 -07001618 }
1619
Michael S. Tsirkin40630b82014-11-19 15:17:31 +02001620 if ((tun->flags & TUN_TYPE_MASK) == IFF_TAP) {
stephen hemmingera504b862011-06-08 14:33:07 +00001621 align += NET_IP_ALIGN;
Herbert Xu0eca93b2009-04-14 02:09:43 -07001622 if (unlikely(len < ETH_HLEN ||
Michael S. Tsirkin56f0dcc2014-10-23 22:59:31 +03001623 (gso.hdr_len && tun16_to_cpu(tun, gso.hdr_len) < ETH_HLEN)))
Rusty Russelle01bf1c2008-04-12 18:49:30 -07001624 return -EINVAL;
1625 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001626
Jason Wang96f8d9e2013-11-13 14:00:39 +08001627 good_linear = SKB_MAX_HEAD(align);
1628
Jason Wang88529172013-07-18 10:55:15 +08001629 if (msg_control) {
Al Virof5ff53b2014-06-19 15:36:49 -04001630 struct iov_iter i = *from;
1631
Jason Wang88529172013-07-18 10:55:15 +08001632 /* There are 256 bytes to be copied in skb, so there is
1633 * enough room for skb expand head in case it is used.
Michael S. Tsirkin06908992012-07-20 09:23:23 +00001634 * The rest of the buffer is mapped from userspace.
1635 */
Michael S. Tsirkin56f0dcc2014-10-23 22:59:31 +03001636 copylen = gso.hdr_len ? tun16_to_cpu(tun, gso.hdr_len) : GOODCOPY_LEN;
Jason Wang96f8d9e2013-11-13 14:00:39 +08001637 if (copylen > good_linear)
1638 copylen = good_linear;
Jason Wang3dd5c332013-07-10 13:43:27 +08001639 linear = copylen;
Al Virof5ff53b2014-06-19 15:36:49 -04001640 iov_iter_advance(&i, copylen);
1641 if (iov_iter_npages(&i, INT_MAX) <= MAX_SKB_FRAGS)
Jason Wang88529172013-07-18 10:55:15 +08001642 zerocopy = true;
1643 }
1644
Petar Penkov90e33d42017-09-22 13:49:15 -07001645 if (!frags && tun_can_build_skb(tun, tfile, len, noblock, zerocopy)) {
Jason Wang1cfe6e92017-09-04 11:36:09 +08001646 /* For the packet that is not easy to be processed
1647 * (e.g gso or jumbo packet), we will do it at after
1648 * skb was created with generic XDP routine.
1649 */
1650 skb = tun_build_skb(tun, tfile, from, &gso, len, &skb_xdp);
Jason Wang66ccbc92017-08-11 19:41:16 +08001651 if (IS_ERR(skb)) {
Paolo Abeni608b9972016-04-13 10:52:20 +02001652 this_cpu_inc(tun->pcpu_stats->rx_dropped);
Jason Wang66ccbc92017-08-11 19:41:16 +08001653 return PTR_ERR(skb);
1654 }
Jason Wang761876c2017-08-11 19:41:18 +08001655 if (!skb)
1656 return total_len;
Jason Wang66ccbc92017-08-11 19:41:16 +08001657 } else {
1658 if (!zerocopy) {
1659 copylen = len;
1660 if (tun16_to_cpu(tun, gso.hdr_len) > good_linear)
1661 linear = good_linear;
1662 else
1663 linear = tun16_to_cpu(tun, gso.hdr_len);
1664 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001665
Petar Penkov90e33d42017-09-22 13:49:15 -07001666 if (frags) {
1667 mutex_lock(&tfile->napi_mutex);
1668 skb = tun_napi_alloc_frags(tfile, copylen, from);
1669 /* tun_napi_alloc_frags() enforces a layout for the skb.
1670 * If zerocopy is enabled, then this layout will be
1671 * overwritten by zerocopy_sg_from_iter().
1672 */
1673 zerocopy = false;
1674 } else {
1675 skb = tun_alloc_skb(tfile, align, copylen, linear,
1676 noblock);
1677 }
1678
Jason Wang66ccbc92017-08-11 19:41:16 +08001679 if (IS_ERR(skb)) {
1680 if (PTR_ERR(skb) != -EAGAIN)
1681 this_cpu_inc(tun->pcpu_stats->rx_dropped);
Petar Penkov90e33d42017-09-22 13:49:15 -07001682 if (frags)
1683 mutex_unlock(&tfile->napi_mutex);
Jason Wang66ccbc92017-08-11 19:41:16 +08001684 return PTR_ERR(skb);
1685 }
Michael S. Tsirkin06908992012-07-20 09:23:23 +00001686
Jason Wang66ccbc92017-08-11 19:41:16 +08001687 if (zerocopy)
1688 err = zerocopy_sg_from_iter(skb, from);
1689 else
1690 err = skb_copy_datagram_from_iter(skb, 0, from, len);
1691
1692 if (err) {
1693 this_cpu_inc(tun->pcpu_stats->rx_dropped);
1694 kfree_skb(skb);
Petar Penkov90e33d42017-09-22 13:49:15 -07001695 if (frags) {
1696 tfile->napi.skb = NULL;
1697 mutex_unlock(&tfile->napi_mutex);
1698 }
1699
Jason Wang66ccbc92017-08-11 19:41:16 +08001700 return -EFAULT;
1701 }
Dave Jones8f227572006-03-11 18:49:13 -08001702 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001703
Jarno Rajahalme3e9e40e2016-11-18 15:40:38 -08001704 if (virtio_net_hdr_to_skb(skb, &gso, tun_is_little_endian(tun))) {
Paolo Abenidf10db92016-06-14 00:00:04 +02001705 this_cpu_inc(tun->pcpu_stats->rx_frame_errors);
1706 kfree_skb(skb);
Petar Penkov90e33d42017-09-22 13:49:15 -07001707 if (frags) {
1708 tfile->napi.skb = NULL;
1709 mutex_unlock(&tfile->napi_mutex);
1710 }
1711
Paolo Abenidf10db92016-06-14 00:00:04 +02001712 return -EINVAL;
1713 }
1714
Linus Torvalds1da177e2005-04-16 15:20:36 -07001715 switch (tun->flags & TUN_TYPE_MASK) {
Michael S. Tsirkin40630b82014-11-19 15:17:31 +02001716 case IFF_TUN:
1717 if (tun->flags & IFF_NO_PI) {
Alexander Potapenko2580c4c2017-09-28 11:32:37 +02001718 u8 ip_version = skb->len ? (skb->data[0] >> 4) : 0;
1719
1720 switch (ip_version) {
1721 case 4:
Ang Way Chuangf09f7ee2008-06-17 21:10:33 -07001722 pi.proto = htons(ETH_P_IP);
1723 break;
Alexander Potapenko2580c4c2017-09-28 11:32:37 +02001724 case 6:
Ang Way Chuangf09f7ee2008-06-17 21:10:33 -07001725 pi.proto = htons(ETH_P_IPV6);
1726 break;
1727 default:
Paolo Abeni608b9972016-04-13 10:52:20 +02001728 this_cpu_inc(tun->pcpu_stats->rx_dropped);
Ang Way Chuangf09f7ee2008-06-17 21:10:33 -07001729 kfree_skb(skb);
1730 return -EINVAL;
1731 }
1732 }
1733
Arnaldo Carvalho de Melo459a98e2007-03-19 15:30:44 -07001734 skb_reset_mac_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001735 skb->protocol = pi.proto;
Arnaldo Carvalho de Melo4c13eb62007-04-25 17:40:23 -07001736 skb->dev = tun->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001737 break;
Michael S. Tsirkin40630b82014-11-19 15:17:31 +02001738 case IFF_TAP:
Petar Penkov90e33d42017-09-22 13:49:15 -07001739 if (!frags)
1740 skb->protocol = eth_type_trans(skb, tun->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001741 break;
Joe Perches6403eab2011-06-03 11:51:20 +00001742 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001743
Michael S. Tsirkin06908992012-07-20 09:23:23 +00001744 /* copy skb_ubuf_info for callback when skb has no error */
1745 if (zerocopy) {
1746 skb_shinfo(skb)->destructor_arg = msg_control;
1747 skb_shinfo(skb)->tx_flags |= SKBTX_DEV_ZEROCOPY;
Pravin B Shelarc9af6db2013-02-11 09:27:41 +00001748 skb_shinfo(skb)->tx_flags |= SKBTX_SHARED_FRAG;
Jason Wangaf1cc7a2016-11-30 13:17:51 +08001749 } else if (msg_control) {
1750 struct ubuf_info *uarg = msg_control;
1751 uarg->callback(uarg, false);
Michael S. Tsirkin06908992012-07-20 09:23:23 +00001752 }
1753
Vlad Yasevich72f65102015-02-03 16:36:16 -05001754 skb_reset_network_header(skb);
Jason Wang40893fd2013-03-26 23:11:22 +00001755 skb_probe_transport_header(skb, 0);
Jason Wang38502af2013-03-25 20:19:56 +00001756
Jason Wang1cfe6e92017-09-04 11:36:09 +08001757 if (skb_xdp) {
Jason Wang761876c2017-08-11 19:41:18 +08001758 struct bpf_prog *xdp_prog;
1759 int ret;
1760
1761 rcu_read_lock();
1762 xdp_prog = rcu_dereference(tun->xdp_prog);
1763 if (xdp_prog) {
1764 ret = do_xdp_generic(xdp_prog, skb);
1765 if (ret != XDP_PASS) {
1766 rcu_read_unlock();
1767 return total_len;
1768 }
1769 }
1770 rcu_read_unlock();
1771 }
1772
Jason Wang96f84062017-12-04 17:31:23 +08001773 rcu_read_lock();
1774 if (!rcu_dereference(tun->steering_prog))
1775 rxhash = __skb_get_hash_symmetric(skb);
1776 rcu_read_unlock();
Petar Penkov94317092017-09-22 13:49:14 -07001777
Petar Penkov90e33d42017-09-22 13:49:15 -07001778 if (frags) {
1779 /* Exercise flow dissector code path. */
1780 u32 headlen = eth_get_headlen(skb->data, skb_headlen(skb));
1781
Eric Dumazet010f2452017-10-17 10:07:44 -07001782 if (unlikely(headlen > skb_headlen(skb))) {
Petar Penkov90e33d42017-09-22 13:49:15 -07001783 this_cpu_inc(tun->pcpu_stats->rx_dropped);
1784 napi_free_frags(&tfile->napi);
1785 mutex_unlock(&tfile->napi_mutex);
1786 WARN_ON(1);
1787 return -ENOMEM;
1788 }
1789
1790 local_bh_disable();
1791 napi_gro_frags(&tfile->napi);
1792 local_bh_enable();
1793 mutex_unlock(&tfile->napi_mutex);
Eric Dumazetaec72f32017-10-18 12:12:09 -07001794 } else if (tfile->napi_enabled) {
Petar Penkov94317092017-09-22 13:49:14 -07001795 struct sk_buff_head *queue = &tfile->sk.sk_write_queue;
1796 int queue_len;
1797
1798 spin_lock_bh(&queue->lock);
1799 __skb_queue_tail(queue, skb);
1800 queue_len = skb_queue_len(queue);
1801 spin_unlock(&queue->lock);
1802
1803 if (!more || queue_len > NAPI_POLL_WEIGHT)
1804 napi_schedule(&tfile->napi);
1805
1806 local_bh_enable();
1807 } else if (!IS_ENABLED(CONFIG_4KSTACKS)) {
1808 tun_rx_batched(tun, tfile, skb, more);
1809 } else {
1810 netif_rx_ni(skb);
1811 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001812
Paolo Abeni608b9972016-04-13 10:52:20 +02001813 stats = get_cpu_ptr(tun->pcpu_stats);
1814 u64_stats_update_begin(&stats->syncp);
1815 stats->rx_packets++;
1816 stats->rx_bytes += len;
1817 u64_stats_update_end(&stats->syncp);
1818 put_cpu_ptr(stats);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001819
Jason Wang96f84062017-12-04 17:31:23 +08001820 if (rxhash)
1821 tun_flow_update(tun, rxhash, tfile);
1822
Michael S. Tsirkin06908992012-07-20 09:23:23 +00001823 return total_len;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001824}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001825
Al Virof5ff53b2014-06-19 15:36:49 -04001826static ssize_t tun_chr_write_iter(struct kiocb *iocb, struct iov_iter *from)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001827{
Herbert Xu33dccbb2009-02-05 21:25:32 -08001828 struct file *file = iocb->ki_filp;
Jason Wang54f968d2012-10-31 19:45:57 +00001829 struct tun_file *tfile = file->private_data;
yuan linyu9484dc72017-09-23 22:36:52 +08001830 struct tun_struct *tun = tun_get(tfile);
Eric W. Biederman631ab462009-01-20 11:00:40 +00001831 ssize_t result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001832
1833 if (!tun)
1834 return -EBADFD;
1835
Jason Wang5503fce2017-01-18 15:02:03 +08001836 result = tun_get_user(tun, tfile, NULL, from,
1837 file->f_flags & O_NONBLOCK, false);
Eric W. Biederman631ab462009-01-20 11:00:40 +00001838
1839 tun_put(tun);
1840 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001841}
1842
Linus Torvalds1da177e2005-04-16 15:20:36 -07001843/* Put packet to the user space buffer */
stephen hemminger6f7c1562011-06-08 14:33:08 +00001844static ssize_t tun_put_user(struct tun_struct *tun,
Jason Wang54f968d2012-10-31 19:45:57 +00001845 struct tun_file *tfile,
stephen hemminger6f7c1562011-06-08 14:33:08 +00001846 struct sk_buff *skb,
Herbert Xue0b46d02014-11-07 21:22:23 +08001847 struct iov_iter *iter)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001848{
1849 struct tun_pi pi = { 0, skb->protocol };
Paolo Abeni608b9972016-04-13 10:52:20 +02001850 struct tun_pcpu_stats *stats;
Herbert Xue0b46d02014-11-07 21:22:23 +08001851 ssize_t total;
Jason Wang8c847d22014-11-13 16:54:14 +08001852 int vlan_offset = 0;
Herbert Xua8f9bfd2014-11-03 04:30:13 +08001853 int vlan_hlen = 0;
Herbert Xu2eb783c2014-11-03 04:30:14 +08001854 int vnet_hdr_sz = 0;
Herbert Xua8f9bfd2014-11-03 04:30:13 +08001855
Jiri Pirkodf8a39d2015-01-13 17:13:44 +01001856 if (skb_vlan_tag_present(skb))
Herbert Xua8f9bfd2014-11-03 04:30:13 +08001857 vlan_hlen = VLAN_HLEN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001858
Michael S. Tsirkin40630b82014-11-19 15:17:31 +02001859 if (tun->flags & IFF_VNET_HDR)
Willem de Bruijne1edab82017-02-03 18:20:48 -05001860 vnet_hdr_sz = READ_ONCE(tun->vnet_hdr_sz);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001861
Herbert Xue0b46d02014-11-07 21:22:23 +08001862 total = skb->len + vlan_hlen + vnet_hdr_sz;
1863
Michael S. Tsirkin40630b82014-11-19 15:17:31 +02001864 if (!(tun->flags & IFF_NO_PI)) {
Herbert Xue0b46d02014-11-07 21:22:23 +08001865 if (iov_iter_count(iter) < sizeof(pi))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001866 return -EINVAL;
1867
Herbert Xue0b46d02014-11-07 21:22:23 +08001868 total += sizeof(pi);
1869 if (iov_iter_count(iter) < total) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001870 /* Packet will be striped */
1871 pi.flags |= TUN_PKT_STRIP;
1872 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001873
Herbert Xue0b46d02014-11-07 21:22:23 +08001874 if (copy_to_iter(&pi, sizeof(pi), iter) != sizeof(pi))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001875 return -EFAULT;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001876 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001877
Herbert Xu2eb783c2014-11-03 04:30:14 +08001878 if (vnet_hdr_sz) {
Jarno Rajahalme9403cd72016-11-18 15:40:40 -08001879 struct virtio_net_hdr gso;
Mike Rapoport34166092016-06-08 16:09:20 +03001880
Herbert Xue0b46d02014-11-07 21:22:23 +08001881 if (iov_iter_count(iter) < vnet_hdr_sz)
Rusty Russellf43798c2008-07-03 03:48:02 -07001882 return -EINVAL;
1883
Jarno Rajahalme3e9e40e2016-11-18 15:40:38 -08001884 if (virtio_net_hdr_from_skb(skb, &gso,
Jason Wang6391a442017-01-20 14:32:42 +08001885 tun_is_little_endian(tun), true)) {
Rusty Russellf43798c2008-07-03 03:48:02 -07001886 struct skb_shared_info *sinfo = skb_shinfo(skb);
Mike Rapoport34166092016-06-08 16:09:20 +03001887 pr_err("unexpected GSO type: "
1888 "0x%x, gso_size %d, hdr_len %d\n",
1889 sinfo->gso_type, tun16_to_cpu(tun, gso.gso_size),
1890 tun16_to_cpu(tun, gso.hdr_len));
1891 print_hex_dump(KERN_ERR, "tun: ",
1892 DUMP_PREFIX_NONE,
1893 16, 1, skb->head,
1894 min((int)tun16_to_cpu(tun, gso.hdr_len), 64), true);
1895 WARN_ON_ONCE(1);
1896 return -EINVAL;
1897 }
Rusty Russellf43798c2008-07-03 03:48:02 -07001898
Herbert Xue0b46d02014-11-07 21:22:23 +08001899 if (copy_to_iter(&gso, sizeof(gso), iter) != sizeof(gso))
Rusty Russellf43798c2008-07-03 03:48:02 -07001900 return -EFAULT;
Jason Wang8c847d22014-11-13 16:54:14 +08001901
1902 iov_iter_advance(iter, vnet_hdr_sz - sizeof(gso));
Rusty Russellf43798c2008-07-03 03:48:02 -07001903 }
1904
Herbert Xua8f9bfd2014-11-03 04:30:13 +08001905 if (vlan_hlen) {
Herbert Xue0b46d02014-11-07 21:22:23 +08001906 int ret;
Jason Wang6680ec62013-07-25 13:00:33 +08001907 struct {
1908 __be16 h_vlan_proto;
1909 __be16 h_vlan_TCI;
1910 } veth;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001911
Jason Wang6680ec62013-07-25 13:00:33 +08001912 veth.h_vlan_proto = skb->vlan_proto;
Jiri Pirkodf8a39d2015-01-13 17:13:44 +01001913 veth.h_vlan_TCI = htons(skb_vlan_tag_get(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001914
Jason Wang6680ec62013-07-25 13:00:33 +08001915 vlan_offset = offsetof(struct vlan_ethhdr, h_vlan_proto);
Jason Wang6680ec62013-07-25 13:00:33 +08001916
Herbert Xue0b46d02014-11-07 21:22:23 +08001917 ret = skb_copy_datagram_iter(skb, 0, iter, vlan_offset);
1918 if (ret || !iov_iter_count(iter))
Jason Wang6680ec62013-07-25 13:00:33 +08001919 goto done;
1920
Herbert Xue0b46d02014-11-07 21:22:23 +08001921 ret = copy_to_iter(&veth, sizeof(veth), iter);
1922 if (ret != sizeof(veth) || !iov_iter_count(iter))
Jason Wang6680ec62013-07-25 13:00:33 +08001923 goto done;
1924 }
1925
Herbert Xue0b46d02014-11-07 21:22:23 +08001926 skb_copy_datagram_iter(skb, vlan_offset, iter, skb->len - vlan_offset);
Jason Wang6680ec62013-07-25 13:00:33 +08001927
1928done:
Paolo Abeni608b9972016-04-13 10:52:20 +02001929 /* caller is in process context, */
1930 stats = get_cpu_ptr(tun->pcpu_stats);
1931 u64_stats_update_begin(&stats->syncp);
1932 stats->tx_packets++;
1933 stats->tx_bytes += skb->len + vlan_hlen;
1934 u64_stats_update_end(&stats->syncp);
1935 put_cpu_ptr(tun->pcpu_stats);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001936
1937 return total;
1938}
1939
Jason Wang1576d982016-06-30 14:45:36 +08001940static struct sk_buff *tun_ring_recv(struct tun_file *tfile, int noblock,
1941 int *err)
1942{
1943 DECLARE_WAITQUEUE(wait, current);
1944 struct sk_buff *skb = NULL;
Jason Wangf48cc6b2016-07-04 13:53:38 +08001945 int error = 0;
Jason Wang1576d982016-06-30 14:45:36 +08001946
1947 skb = skb_array_consume(&tfile->tx_array);
1948 if (skb)
1949 goto out;
1950 if (noblock) {
Jason Wangf48cc6b2016-07-04 13:53:38 +08001951 error = -EAGAIN;
Jason Wang1576d982016-06-30 14:45:36 +08001952 goto out;
1953 }
1954
1955 add_wait_queue(&tfile->wq.wait, &wait);
1956 current->state = TASK_INTERRUPTIBLE;
1957
1958 while (1) {
1959 skb = skb_array_consume(&tfile->tx_array);
1960 if (skb)
1961 break;
1962 if (signal_pending(current)) {
Jason Wangf48cc6b2016-07-04 13:53:38 +08001963 error = -ERESTARTSYS;
Jason Wang1576d982016-06-30 14:45:36 +08001964 break;
1965 }
1966 if (tfile->socket.sk->sk_shutdown & RCV_SHUTDOWN) {
Jason Wangf48cc6b2016-07-04 13:53:38 +08001967 error = -EFAULT;
Jason Wang1576d982016-06-30 14:45:36 +08001968 break;
1969 }
1970
1971 schedule();
1972 }
1973
1974 current->state = TASK_RUNNING;
1975 remove_wait_queue(&tfile->wq.wait, &wait);
1976
1977out:
Jason Wangf48cc6b2016-07-04 13:53:38 +08001978 *err = error;
Jason Wang1576d982016-06-30 14:45:36 +08001979 return skb;
1980}
1981
Jason Wang54f968d2012-10-31 19:45:57 +00001982static ssize_t tun_do_read(struct tun_struct *tun, struct tun_file *tfile,
Al Viro9b067032014-11-07 13:52:07 -05001983 struct iov_iter *to,
Jason Wangac77cfd2017-05-17 12:14:43 +08001984 int noblock, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001985{
Al Viro9b067032014-11-07 13:52:07 -05001986 ssize_t ret;
Jason Wang1576d982016-06-30 14:45:36 +08001987 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001988
Rami Rosen3872baf2012-11-25 22:07:41 +00001989 tun_debug(KERN_INFO, tun, "tun_do_read\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001990
Wei Xuc33ee152017-12-01 05:10:37 -05001991 if (!iov_iter_count(to)) {
1992 if (skb)
1993 kfree_skb(skb);
Al Viro9b067032014-11-07 13:52:07 -05001994 return 0;
Wei Xuc33ee152017-12-01 05:10:37 -05001995 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001996
Jason Wangac77cfd2017-05-17 12:14:43 +08001997 if (!skb) {
1998 /* Read frames from ring */
1999 skb = tun_ring_recv(tfile, noblock, &err);
2000 if (!skb)
2001 return err;
2002 }
Herbert Xue0b46d02014-11-07 21:22:23 +08002003
Al Viro9b067032014-11-07 13:52:07 -05002004 ret = tun_put_user(tun, tfile, skb, to);
Jason Wangf51a5e82014-12-01 16:53:15 +08002005 if (unlikely(ret < 0))
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -07002006 kfree_skb(skb);
Jason Wangf51a5e82014-12-01 16:53:15 +08002007 else
2008 consume_skb(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002009
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00002010 return ret;
2011}
2012
Al Viro9b067032014-11-07 13:52:07 -05002013static ssize_t tun_chr_read_iter(struct kiocb *iocb, struct iov_iter *to)
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00002014{
2015 struct file *file = iocb->ki_filp;
2016 struct tun_file *tfile = file->private_data;
yuan linyu9484dc72017-09-23 22:36:52 +08002017 struct tun_struct *tun = tun_get(tfile);
Al Viro9b067032014-11-07 13:52:07 -05002018 ssize_t len = iov_iter_count(to), ret;
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00002019
2020 if (!tun)
2021 return -EBADFD;
Jason Wangac77cfd2017-05-17 12:14:43 +08002022 ret = tun_do_read(tun, tfile, to, file->f_flags & O_NONBLOCK, NULL);
David S. Miller42404c02013-12-10 22:05:45 -05002023 ret = min_t(ssize_t, ret, len);
Zhi Yong Wud0b7da8a2013-12-06 14:16:51 +08002024 if (ret > 0)
2025 iocb->ki_pos = ret;
Eric W. Biederman631ab462009-01-20 11:00:40 +00002026 tun_put(tun);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002027 return ret;
2028}
2029
Jason Wang96f84062017-12-04 17:31:23 +08002030static void tun_steering_prog_free(struct rcu_head *rcu)
2031{
2032 struct tun_steering_prog *prog = container_of(rcu,
2033 struct tun_steering_prog, rcu);
2034
2035 bpf_prog_destroy(prog->prog);
2036 kfree(prog);
2037}
2038
2039static int __tun_set_steering_ebpf(struct tun_struct *tun,
2040 struct bpf_prog *prog)
2041{
2042 struct tun_steering_prog *old, *new = NULL;
2043
2044 if (prog) {
2045 new = kmalloc(sizeof(*new), GFP_KERNEL);
2046 if (!new)
2047 return -ENOMEM;
2048 new->prog = prog;
2049 }
2050
Jason Wang124da8f2017-12-08 12:02:30 +08002051 spin_lock_bh(&tun->lock);
2052 old = rcu_dereference_protected(tun->steering_prog,
2053 lockdep_is_held(&tun->lock));
Jason Wang96f84062017-12-04 17:31:23 +08002054 rcu_assign_pointer(tun->steering_prog, new);
Jason Wang124da8f2017-12-08 12:02:30 +08002055 spin_unlock_bh(&tun->lock);
Jason Wang96f84062017-12-04 17:31:23 +08002056
2057 if (old)
2058 call_rcu(&old->rcu, tun_steering_prog_free);
2059
2060 return 0;
2061}
2062
Jason Wang96442e422012-10-31 19:46:02 +00002063static void tun_free_netdev(struct net_device *dev)
2064{
2065 struct tun_struct *tun = netdev_priv(dev);
2066
Jason Wang4008e972012-12-13 23:53:30 +00002067 BUG_ON(!(list_empty(&tun->disabled)));
Paolo Abeni608b9972016-04-13 10:52:20 +02002068 free_percpu(tun->pcpu_stats);
Jason Wang96442e422012-10-31 19:46:02 +00002069 tun_flow_uninit(tun);
Paul Moore5dbbaf22013-01-14 07:12:19 +00002070 security_tun_dev_free_security(tun->security);
Jason Wang96f84062017-12-04 17:31:23 +08002071 __tun_set_steering_ebpf(tun, NULL);
Jason Wang96442e422012-10-31 19:46:02 +00002072}
2073
Linus Torvalds1da177e2005-04-16 15:20:36 -07002074static void tun_setup(struct net_device *dev)
2075{
2076 struct tun_struct *tun = netdev_priv(dev);
2077
Eric W. Biederman0625c882012-02-07 16:48:55 -08002078 tun->owner = INVALID_UID;
2079 tun->group = INVALID_GID;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002080
Linus Torvalds1da177e2005-04-16 15:20:36 -07002081 dev->ethtool_ops = &tun_ethtool_ops;
David S. Millercf124db2017-05-08 12:52:56 -04002082 dev->needs_free_netdev = true;
2083 dev->priv_destructor = tun_free_netdev;
Jason Wang016adb72016-04-08 13:26:48 +08002084 /* We prefer our own queue length */
2085 dev->tx_queue_len = TUN_READQ_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002086}
2087
Eric W. Biedermanf019a7a2009-01-21 16:02:16 -08002088/* Trivial set of netlink ops to allow deleting tun or tap
2089 * device with netlink.
2090 */
Matthias Schiffera8b8a8892017-06-25 23:56:01 +02002091static int tun_validate(struct nlattr *tb[], struct nlattr *data[],
2092 struct netlink_ext_ack *extack)
Eric W. Biedermanf019a7a2009-01-21 16:02:16 -08002093{
2094 return -EINVAL;
2095}
2096
2097static struct rtnl_link_ops tun_link_ops __read_mostly = {
2098 .kind = DRV_NAME,
2099 .priv_size = sizeof(struct tun_struct),
2100 .setup = tun_setup,
2101 .validate = tun_validate,
2102};
2103
Herbert Xu33dccbb2009-02-05 21:25:32 -08002104static void tun_sock_write_space(struct sock *sk)
2105{
Jason Wang54f968d2012-10-31 19:45:57 +00002106 struct tun_file *tfile;
Eric Dumazet43815482010-04-29 11:01:49 +00002107 wait_queue_head_t *wqueue;
Herbert Xu33dccbb2009-02-05 21:25:32 -08002108
2109 if (!sock_writeable(sk))
2110 return;
2111
Eric Dumazet9cd3e072015-11-29 20:03:10 -08002112 if (!test_and_clear_bit(SOCKWQ_ASYNC_NOSPACE, &sk->sk_socket->flags))
Herbert Xu33dccbb2009-02-05 21:25:32 -08002113 return;
2114
Eric Dumazet43815482010-04-29 11:01:49 +00002115 wqueue = sk_sleep(sk);
2116 if (wqueue && waitqueue_active(wqueue))
2117 wake_up_interruptible_sync_poll(wqueue, POLLOUT |
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00002118 POLLWRNORM | POLLWRBAND);
Herbert Xuc722c622009-06-03 21:45:55 -07002119
Jason Wang54f968d2012-10-31 19:45:57 +00002120 tfile = container_of(sk, struct tun_file, sk);
2121 kill_fasync(&tfile->fasync, SIGIO, POLL_OUT);
Herbert Xu33dccbb2009-02-05 21:25:32 -08002122}
2123
Ying Xue1b784142015-03-02 15:37:48 +08002124static int tun_sendmsg(struct socket *sock, struct msghdr *m, size_t total_len)
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00002125{
Jason Wang54f968d2012-10-31 19:45:57 +00002126 int ret;
2127 struct tun_file *tfile = container_of(sock, struct tun_file, socket);
yuan linyu9484dc72017-09-23 22:36:52 +08002128 struct tun_struct *tun = tun_get(tfile);
Jason Wang54f968d2012-10-31 19:45:57 +00002129
2130 if (!tun)
2131 return -EBADFD;
Al Virof5ff53b2014-06-19 15:36:49 -04002132
Al Viroc0371da2014-11-24 10:42:55 -05002133 ret = tun_get_user(tun, tfile, m->msg_control, &m->msg_iter,
Jason Wang5503fce2017-01-18 15:02:03 +08002134 m->msg_flags & MSG_DONTWAIT,
2135 m->msg_flags & MSG_MORE);
Jason Wang54f968d2012-10-31 19:45:57 +00002136 tun_put(tun);
2137 return ret;
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00002138}
2139
Ying Xue1b784142015-03-02 15:37:48 +08002140static int tun_recvmsg(struct socket *sock, struct msghdr *m, size_t total_len,
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00002141 int flags)
2142{
Jason Wang54f968d2012-10-31 19:45:57 +00002143 struct tun_file *tfile = container_of(sock, struct tun_file, socket);
yuan linyu9484dc72017-09-23 22:36:52 +08002144 struct tun_struct *tun = tun_get(tfile);
Wei Xuc33ee152017-12-01 05:10:37 -05002145 struct sk_buff *skb = m->msg_control;
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00002146 int ret;
Jason Wang54f968d2012-10-31 19:45:57 +00002147
Wei Xuc33ee152017-12-01 05:10:37 -05002148 if (!tun) {
2149 ret = -EBADFD;
2150 goto out_free_skb;
2151 }
Jason Wang54f968d2012-10-31 19:45:57 +00002152
Richard Cochraneda29772013-07-19 19:40:10 +02002153 if (flags & ~(MSG_DONTWAIT|MSG_TRUNC|MSG_ERRQUEUE)) {
Gao feng3811ae72013-04-24 21:59:23 +00002154 ret = -EINVAL;
Wei Xuc33ee152017-12-01 05:10:37 -05002155 goto out_put_tun;
Gao feng3811ae72013-04-24 21:59:23 +00002156 }
Richard Cochraneda29772013-07-19 19:40:10 +02002157 if (flags & MSG_ERRQUEUE) {
2158 ret = sock_recv_errqueue(sock->sk, m, total_len,
2159 SOL_PACKET, TUN_TX_TIMESTAMP);
2160 goto out;
2161 }
Wei Xuc33ee152017-12-01 05:10:37 -05002162 ret = tun_do_read(tun, tfile, &m->msg_iter, flags & MSG_DONTWAIT, skb);
Alex Gartrell87897932014-12-25 23:05:03 -08002163 if (ret > (ssize_t)total_len) {
David S. Miller42404c02013-12-10 22:05:45 -05002164 m->msg_flags |= MSG_TRUNC;
2165 ret = flags & MSG_TRUNC ? ret : total_len;
2166 }
Gao feng3811ae72013-04-24 21:59:23 +00002167out:
Jason Wang54f968d2012-10-31 19:45:57 +00002168 tun_put(tun);
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00002169 return ret;
Wei Xuc33ee152017-12-01 05:10:37 -05002170
2171out_put_tun:
2172 tun_put(tun);
2173out_free_skb:
2174 if (skb)
2175 kfree_skb(skb);
2176 return ret;
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00002177}
2178
Jason Wang1576d982016-06-30 14:45:36 +08002179static int tun_peek_len(struct socket *sock)
2180{
2181 struct tun_file *tfile = container_of(sock, struct tun_file, socket);
2182 struct tun_struct *tun;
2183 int ret = 0;
2184
yuan linyu9484dc72017-09-23 22:36:52 +08002185 tun = tun_get(tfile);
Jason Wang1576d982016-06-30 14:45:36 +08002186 if (!tun)
2187 return 0;
2188
2189 ret = skb_array_peek_len(&tfile->tx_array);
2190 tun_put(tun);
2191
2192 return ret;
2193}
2194
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00002195/* Ops structure to mimic raw sockets with tun */
2196static const struct proto_ops tun_socket_ops = {
Jason Wang1576d982016-06-30 14:45:36 +08002197 .peek_len = tun_peek_len,
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00002198 .sendmsg = tun_sendmsg,
2199 .recvmsg = tun_recvmsg,
2200};
2201
Herbert Xu33dccbb2009-02-05 21:25:32 -08002202static struct proto tun_proto = {
2203 .name = "tun",
2204 .owner = THIS_MODULE,
Jason Wang54f968d2012-10-31 19:45:57 +00002205 .obj_size = sizeof(struct tun_file),
Herbert Xu33dccbb2009-02-05 21:25:32 -08002206};
Eric W. Biedermanf019a7a2009-01-21 16:02:16 -08002207
David Woodhouse980c9e82009-05-09 22:54:21 -07002208static int tun_flags(struct tun_struct *tun)
2209{
Michael S. Tsirkin031f5e02014-11-19 14:44:40 +02002210 return tun->flags & (TUN_FEATURES | IFF_PERSIST | IFF_TUN | IFF_TAP);
David Woodhouse980c9e82009-05-09 22:54:21 -07002211}
2212
2213static ssize_t tun_show_flags(struct device *dev, struct device_attribute *attr,
2214 char *buf)
2215{
2216 struct tun_struct *tun = netdev_priv(to_net_dev(dev));
2217 return sprintf(buf, "0x%x\n", tun_flags(tun));
2218}
2219
2220static ssize_t tun_show_owner(struct device *dev, struct device_attribute *attr,
2221 char *buf)
2222{
2223 struct tun_struct *tun = netdev_priv(to_net_dev(dev));
Eric W. Biederman0625c882012-02-07 16:48:55 -08002224 return uid_valid(tun->owner)?
2225 sprintf(buf, "%u\n",
2226 from_kuid_munged(current_user_ns(), tun->owner)):
2227 sprintf(buf, "-1\n");
David Woodhouse980c9e82009-05-09 22:54:21 -07002228}
2229
2230static ssize_t tun_show_group(struct device *dev, struct device_attribute *attr,
2231 char *buf)
2232{
2233 struct tun_struct *tun = netdev_priv(to_net_dev(dev));
Eric W. Biederman0625c882012-02-07 16:48:55 -08002234 return gid_valid(tun->group) ?
2235 sprintf(buf, "%u\n",
2236 from_kgid_munged(current_user_ns(), tun->group)):
2237 sprintf(buf, "-1\n");
David Woodhouse980c9e82009-05-09 22:54:21 -07002238}
2239
2240static DEVICE_ATTR(tun_flags, 0444, tun_show_flags, NULL);
2241static DEVICE_ATTR(owner, 0444, tun_show_owner, NULL);
2242static DEVICE_ATTR(group, 0444, tun_show_group, NULL);
2243
Takashi Iwaic4d33e22015-02-04 14:37:34 +01002244static struct attribute *tun_dev_attrs[] = {
2245 &dev_attr_tun_flags.attr,
2246 &dev_attr_owner.attr,
2247 &dev_attr_group.attr,
2248 NULL
2249};
2250
2251static const struct attribute_group tun_attr_group = {
2252 .attrs = tun_dev_attrs
2253};
2254
Pavel Emelyanovd647a592008-04-16 00:41:16 -07002255static int tun_set_iff(struct net *net, struct file *file, struct ifreq *ifr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002256{
2257 struct tun_struct *tun;
Jason Wang54f968d2012-10-31 19:45:57 +00002258 struct tun_file *tfile = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002259 struct net_device *dev;
2260 int err;
2261
Jason Wang7c0c3b12013-01-11 16:59:33 +00002262 if (tfile->detached)
2263 return -EINVAL;
2264
Petar Penkov90e33d42017-09-22 13:49:15 -07002265 if ((ifr->ifr_flags & IFF_NAPI_FRAGS)) {
2266 if (!capable(CAP_NET_ADMIN))
2267 return -EPERM;
2268
2269 if (!(ifr->ifr_flags & IFF_NAPI) ||
2270 (ifr->ifr_flags & TUN_TYPE_MASK) != IFF_TAP)
2271 return -EINVAL;
2272 }
2273
Eric W. Biederman74a3e5a2009-01-20 10:56:20 +00002274 dev = __dev_get_by_name(net, ifr->ifr_name);
2275 if (dev) {
David Woodhousef85ba782009-04-27 03:23:54 -07002276 if (ifr->ifr_flags & IFF_TUN_EXCL)
2277 return -EBUSY;
Eric W. Biederman74a3e5a2009-01-20 10:56:20 +00002278 if ((ifr->ifr_flags & IFF_TUN) && dev->netdev_ops == &tun_netdev_ops)
2279 tun = netdev_priv(dev);
2280 else if ((ifr->ifr_flags & IFF_TAP) && dev->netdev_ops == &tap_netdev_ops)
2281 tun = netdev_priv(dev);
2282 else
2283 return -EINVAL;
2284
Jason Wang8e6d91a2013-05-28 18:32:11 +00002285 if (!!(ifr->ifr_flags & IFF_MULTI_QUEUE) !=
Michael S. Tsirkin40630b82014-11-19 15:17:31 +02002286 !!(tun->flags & IFF_MULTI_QUEUE))
Jason Wang8e6d91a2013-05-28 18:32:11 +00002287 return -EINVAL;
2288
Jason Wangcde8b152012-10-31 19:46:01 +00002289 if (tun_not_capable(tun))
Paul Moore2b980db2009-08-28 18:12:43 -04002290 return -EPERM;
Paul Moore5dbbaf22013-01-14 07:12:19 +00002291 err = security_tun_dev_open(tun->security);
Paul Moore2b980db2009-08-28 18:12:43 -04002292 if (err < 0)
2293 return err;
2294
Petar Penkov94317092017-09-22 13:49:14 -07002295 err = tun_attach(tun, file, ifr->ifr_flags & IFF_NOFILTER,
2296 ifr->ifr_flags & IFF_NAPI);
Eric W. Biedermana7385ba2009-01-20 10:57:48 +00002297 if (err < 0)
2298 return err;
Jason Wang4008e972012-12-13 23:53:30 +00002299
Michael S. Tsirkin40630b82014-11-19 15:17:31 +02002300 if (tun->flags & IFF_MULTI_QUEUE &&
Jason Wange8dbad62013-04-22 20:40:39 +00002301 (tun->numqueues + tun->numdisabled > 1)) {
2302 /* One or more queue has already been attached, no need
2303 * to initialize the device again.
2304 */
2305 return 0;
2306 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002307 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002308 else {
2309 char *name;
2310 unsigned long flags = 0;
Jason Wangedfb6a12013-01-23 03:59:12 +00002311 int queues = ifr->ifr_flags & IFF_MULTI_QUEUE ?
2312 MAX_TAP_QUEUES : 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002313
Eric W. Biedermanc260b772012-11-18 21:34:11 +00002314 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
David Woodhouseca6bb5d2006-06-22 16:07:52 -07002315 return -EPERM;
Paul Moore2b980db2009-08-28 18:12:43 -04002316 err = security_tun_dev_create();
2317 if (err < 0)
2318 return err;
David Woodhouseca6bb5d2006-06-22 16:07:52 -07002319
Linus Torvalds1da177e2005-04-16 15:20:36 -07002320 /* Set dev type */
2321 if (ifr->ifr_flags & IFF_TUN) {
2322 /* TUN device */
Michael S. Tsirkin40630b82014-11-19 15:17:31 +02002323 flags |= IFF_TUN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002324 name = "tun%d";
2325 } else if (ifr->ifr_flags & IFF_TAP) {
2326 /* TAP device */
Michael S. Tsirkin40630b82014-11-19 15:17:31 +02002327 flags |= IFF_TAP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002328 name = "tap%d";
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002329 } else
Kusanagi Kouichi36989b92009-09-16 21:36:13 +00002330 return -EINVAL;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002331
Linus Torvalds1da177e2005-04-16 15:20:36 -07002332 if (*ifr->ifr_name)
2333 name = ifr->ifr_name;
2334
Jason Wangc8d68e62012-10-31 19:46:00 +00002335 dev = alloc_netdev_mqs(sizeof(struct tun_struct), name,
Tom Gundersenc835a672014-07-14 16:37:24 +02002336 NET_NAME_UNKNOWN, tun_setup, queues,
2337 queues);
Jason Wangedfb6a12013-01-23 03:59:12 +00002338
Linus Torvalds1da177e2005-04-16 15:20:36 -07002339 if (!dev)
2340 return -ENOMEM;
Cong Wang0ad646c2017-10-13 11:58:53 -07002341 err = dev_get_valid_name(net, dev, name);
Julien Gomes5c25f652017-10-25 11:50:50 -07002342 if (err < 0)
Cong Wang0ad646c2017-10-13 11:58:53 -07002343 goto err_free_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002344
Pavel Emelyanovfc54c652008-04-16 00:41:53 -07002345 dev_net_set(dev, net);
Eric W. Biedermanf019a7a2009-01-21 16:02:16 -08002346 dev->rtnl_link_ops = &tun_link_ops;
Pavel Emelyanovfb7589a2013-08-21 14:31:38 +04002347 dev->ifindex = tfile->ifindex;
Takashi Iwaic4d33e22015-02-04 14:37:34 +01002348 dev->sysfs_groups[0] = &tun_attr_group;
Stephen Hemminger758e43b2008-11-19 22:10:37 -08002349
Linus Torvalds1da177e2005-04-16 15:20:36 -07002350 tun = netdev_priv(dev);
2351 tun->dev = dev;
2352 tun->flags = flags;
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -07002353 tun->txflt.count = 0;
Michael S. Tsirkind9d52b52010-03-17 17:45:01 +02002354 tun->vnet_hdr_sz = sizeof(struct virtio_net_hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002355
Paolo Abenieaea34b2016-02-26 10:45:40 +01002356 tun->align = NET_SKB_PAD;
Jason Wang54f968d2012-10-31 19:45:57 +00002357 tun->filter_attached = false;
2358 tun->sndbuf = tfile->socket.sk->sk_sndbuf;
Jason Wang5503fce2017-01-18 15:02:03 +08002359 tun->rx_batched = 0;
Jason Wang96f84062017-12-04 17:31:23 +08002360 RCU_INIT_POINTER(tun->steering_prog, NULL);
Herbert Xu33dccbb2009-02-05 21:25:32 -08002361
Paolo Abeni608b9972016-04-13 10:52:20 +02002362 tun->pcpu_stats = netdev_alloc_pcpu_stats(struct tun_pcpu_stats);
2363 if (!tun->pcpu_stats) {
2364 err = -ENOMEM;
2365 goto err_free_dev;
2366 }
2367
Jason Wang96442e422012-10-31 19:46:02 +00002368 spin_lock_init(&tun->lock);
2369
Paul Moore5dbbaf22013-01-14 07:12:19 +00002370 err = security_tun_dev_alloc_security(&tun->security);
2371 if (err < 0)
Paolo Abeni608b9972016-04-13 10:52:20 +02002372 goto err_free_stat;
Paul Moore2b980db2009-08-28 18:12:43 -04002373
Linus Torvalds1da177e2005-04-16 15:20:36 -07002374 tun_net_init(dev);
Pavel Emelyanov944a1372013-06-11 17:01:08 +04002375 tun_flow_init(tun);
Jason Wang96442e422012-10-31 19:46:02 +00002376
Michał Mirosław88255372011-04-19 06:13:10 +00002377 dev->hw_features = NETIF_F_SG | NETIF_F_FRAGLIST |
Jason Wang6680ec62013-07-25 13:00:33 +08002378 TUN_USER_FEATURES | NETIF_F_HW_VLAN_CTAG_TX |
2379 NETIF_F_HW_VLAN_STAG_TX;
Paolo Abeni2a2bbf12016-04-14 18:39:39 +02002380 dev->features = dev->hw_features | NETIF_F_LLTX;
Fernando Luis Vazquez Cao6671b222014-02-18 21:20:09 +09002381 dev->vlan_features = dev->features &
2382 ~(NETIF_F_HW_VLAN_CTAG_TX |
2383 NETIF_F_HW_VLAN_STAG_TX);
Michał Mirosław88255372011-04-19 06:13:10 +00002384
Jason Wang4008e972012-12-13 23:53:30 +00002385 INIT_LIST_HEAD(&tun->disabled);
Petar Penkov94317092017-09-22 13:49:14 -07002386 err = tun_attach(tun, file, false, ifr->ifr_flags & IFF_NAPI);
Jason Wangeb0fb362012-12-02 17:19:45 +00002387 if (err < 0)
Jason Wang662ca432013-09-11 18:09:48 +08002388 goto err_free_flow;
Jason Wangeb0fb362012-12-02 17:19:45 +00002389
Linus Torvalds1da177e2005-04-16 15:20:36 -07002390 err = register_netdevice(tun->dev);
2391 if (err < 0)
Jason Wang662ca432013-09-11 18:09:48 +08002392 goto err_detach;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002393 }
2394
Michael S. Tsirkinaf668b32013-01-28 00:38:02 +00002395 netif_carrier_on(tun->dev);
2396
Joe Perches6b8a66e2011-03-02 07:18:10 +00002397 tun_debug(KERN_INFO, tun, "tun_set_iff\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002398
Michael S. Tsirkin031f5e02014-11-19 14:44:40 +02002399 tun->flags = (tun->flags & ~TUN_FEATURES) |
2400 (ifr->ifr_flags & TUN_FEATURES);
Jason Wangc8d68e62012-10-31 19:46:00 +00002401
Max Krasnyanskye35259a2008-07-10 16:59:11 -07002402 /* Make sure persistent devices do not get stuck in
2403 * xoff state.
2404 */
2405 if (netif_running(tun->dev))
Jason Wangc8d68e62012-10-31 19:46:00 +00002406 netif_tx_wake_all_queues(tun->dev);
Max Krasnyanskye35259a2008-07-10 16:59:11 -07002407
Linus Torvalds1da177e2005-04-16 15:20:36 -07002408 strcpy(ifr->ifr_name, tun->dev->name);
2409 return 0;
2410
Jason Wang662ca432013-09-11 18:09:48 +08002411err_detach:
2412 tun_detach_all(dev);
Eric Dumazetff244c62017-08-18 13:39:56 -07002413 /* register_netdevice() already called tun_free_netdev() */
2414 goto err_free_dev;
2415
Jason Wang662ca432013-09-11 18:09:48 +08002416err_free_flow:
2417 tun_flow_uninit(tun);
2418 security_tun_dev_free_security(tun->security);
Paolo Abeni608b9972016-04-13 10:52:20 +02002419err_free_stat:
2420 free_percpu(tun->pcpu_stats);
Jason Wang662ca432013-09-11 18:09:48 +08002421err_free_dev:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002422 free_netdev(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002423 return err;
2424}
2425
Rami Rosen9ce99cf2012-11-23 03:58:10 +00002426static void tun_get_iff(struct net *net, struct tun_struct *tun,
Herbert Xu876bfd42009-08-06 14:22:44 +00002427 struct ifreq *ifr)
Mark McLoughline3b99552008-08-15 15:09:56 -07002428{
Joe Perches6b8a66e2011-03-02 07:18:10 +00002429 tun_debug(KERN_INFO, tun, "tun_get_iff\n");
Mark McLoughline3b99552008-08-15 15:09:56 -07002430
2431 strcpy(ifr->ifr_name, tun->dev->name);
2432
David Woodhouse980c9e82009-05-09 22:54:21 -07002433 ifr->ifr_flags = tun_flags(tun);
Mark McLoughline3b99552008-08-15 15:09:56 -07002434
Mark McLoughline3b99552008-08-15 15:09:56 -07002435}
2436
Rusty Russell5228ddc2008-07-03 03:46:16 -07002437/* This is like a cut-down ethtool ops, except done via tun fd so no
2438 * privs required. */
Michał Mirosław88255372011-04-19 06:13:10 +00002439static int set_offload(struct tun_struct *tun, unsigned long arg)
Rusty Russell5228ddc2008-07-03 03:46:16 -07002440{
Michał Mirosławc8f44af2011-11-15 15:29:55 +00002441 netdev_features_t features = 0;
Rusty Russell5228ddc2008-07-03 03:46:16 -07002442
2443 if (arg & TUN_F_CSUM) {
Michał Mirosław88255372011-04-19 06:13:10 +00002444 features |= NETIF_F_HW_CSUM;
Rusty Russell5228ddc2008-07-03 03:46:16 -07002445 arg &= ~TUN_F_CSUM;
2446
2447 if (arg & (TUN_F_TSO4|TUN_F_TSO6)) {
2448 if (arg & TUN_F_TSO_ECN) {
2449 features |= NETIF_F_TSO_ECN;
2450 arg &= ~TUN_F_TSO_ECN;
2451 }
2452 if (arg & TUN_F_TSO4)
2453 features |= NETIF_F_TSO;
2454 if (arg & TUN_F_TSO6)
2455 features |= NETIF_F_TSO6;
2456 arg &= ~(TUN_F_TSO4|TUN_F_TSO6);
2457 }
Willem de Bruijn0c19f8462017-11-21 10:22:25 -05002458
2459 arg &= ~TUN_F_UFO;
Rusty Russell5228ddc2008-07-03 03:46:16 -07002460 }
2461
2462 /* This gives the user a way to test for new features in future by
2463 * trying to set them. */
2464 if (arg)
2465 return -EINVAL;
2466
Michał Mirosław88255372011-04-19 06:13:10 +00002467 tun->set_features = features;
Yaroslav Isakov09050952017-03-16 22:44:10 +03002468 tun->dev->wanted_features &= ~TUN_USER_FEATURES;
2469 tun->dev->wanted_features |= features;
Michał Mirosław88255372011-04-19 06:13:10 +00002470 netdev_update_features(tun->dev);
Rusty Russell5228ddc2008-07-03 03:46:16 -07002471
2472 return 0;
2473}
2474
Jason Wangc8d68e62012-10-31 19:46:00 +00002475static void tun_detach_filter(struct tun_struct *tun, int n)
2476{
2477 int i;
2478 struct tun_file *tfile;
2479
2480 for (i = 0; i < n; i++) {
Jason Wangb8deabd2013-01-11 16:59:32 +00002481 tfile = rtnl_dereference(tun->tfiles[i]);
Hannes Frederic Sowa8ced4252016-04-05 17:10:16 +02002482 lock_sock(tfile->socket.sk);
2483 sk_detach_filter(tfile->socket.sk);
2484 release_sock(tfile->socket.sk);
Jason Wangc8d68e62012-10-31 19:46:00 +00002485 }
2486
2487 tun->filter_attached = false;
2488}
2489
2490static int tun_attach_filter(struct tun_struct *tun)
2491{
2492 int i, ret = 0;
2493 struct tun_file *tfile;
2494
2495 for (i = 0; i < tun->numqueues; i++) {
Jason Wangb8deabd2013-01-11 16:59:32 +00002496 tfile = rtnl_dereference(tun->tfiles[i]);
Hannes Frederic Sowa8ced4252016-04-05 17:10:16 +02002497 lock_sock(tfile->socket.sk);
2498 ret = sk_attach_filter(&tun->fprog, tfile->socket.sk);
2499 release_sock(tfile->socket.sk);
Jason Wangc8d68e62012-10-31 19:46:00 +00002500 if (ret) {
2501 tun_detach_filter(tun, i);
2502 return ret;
2503 }
2504 }
2505
2506 tun->filter_attached = true;
2507 return ret;
2508}
2509
2510static void tun_set_sndbuf(struct tun_struct *tun)
2511{
2512 struct tun_file *tfile;
2513 int i;
2514
2515 for (i = 0; i < tun->numqueues; i++) {
Jason Wangb8deabd2013-01-11 16:59:32 +00002516 tfile = rtnl_dereference(tun->tfiles[i]);
Jason Wangc8d68e62012-10-31 19:46:00 +00002517 tfile->socket.sk->sk_sndbuf = tun->sndbuf;
2518 }
2519}
2520
Jason Wangcde8b152012-10-31 19:46:01 +00002521static int tun_set_queue(struct file *file, struct ifreq *ifr)
2522{
2523 struct tun_file *tfile = file->private_data;
2524 struct tun_struct *tun;
Jason Wangcde8b152012-10-31 19:46:01 +00002525 int ret = 0;
2526
2527 rtnl_lock();
2528
2529 if (ifr->ifr_flags & IFF_ATTACH_QUEUE) {
Jason Wang4008e972012-12-13 23:53:30 +00002530 tun = tfile->detached;
Paul Moore5dbbaf22013-01-14 07:12:19 +00002531 if (!tun) {
Jason Wangcde8b152012-10-31 19:46:01 +00002532 ret = -EINVAL;
Paul Moore5dbbaf22013-01-14 07:12:19 +00002533 goto unlock;
2534 }
2535 ret = security_tun_dev_attach_queue(tun->security);
2536 if (ret < 0)
2537 goto unlock;
Petar Penkov94317092017-09-22 13:49:14 -07002538 ret = tun_attach(tun, file, false, tun->flags & IFF_NAPI);
Jason Wang4008e972012-12-13 23:53:30 +00002539 } else if (ifr->ifr_flags & IFF_DETACH_QUEUE) {
Jason Wangb8deabd2013-01-11 16:59:32 +00002540 tun = rtnl_dereference(tfile->tun);
Michael S. Tsirkin40630b82014-11-19 15:17:31 +02002541 if (!tun || !(tun->flags & IFF_MULTI_QUEUE) || tfile->detached)
Jason Wang4008e972012-12-13 23:53:30 +00002542 ret = -EINVAL;
2543 else
2544 __tun_detach(tfile, false);
2545 } else
Jason Wangcde8b152012-10-31 19:46:01 +00002546 ret = -EINVAL;
2547
Paul Moore5dbbaf22013-01-14 07:12:19 +00002548unlock:
Jason Wangcde8b152012-10-31 19:46:01 +00002549 rtnl_unlock();
2550 return ret;
2551}
2552
Jason Wang96f84062017-12-04 17:31:23 +08002553static int tun_set_steering_ebpf(struct tun_struct *tun, void __user *data)
2554{
2555 struct bpf_prog *prog;
2556 int fd;
2557
2558 if (copy_from_user(&fd, data, sizeof(fd)))
2559 return -EFAULT;
2560
2561 if (fd == -1) {
2562 prog = NULL;
2563 } else {
2564 prog = bpf_prog_get_type(fd, BPF_PROG_TYPE_SOCKET_FILTER);
2565 if (IS_ERR(prog))
2566 return PTR_ERR(prog);
2567 }
2568
2569 return __tun_set_steering_ebpf(tun, prog);
2570}
2571
Arnd Bergmann50857e22009-11-06 22:52:32 -08002572static long __tun_chr_ioctl(struct file *file, unsigned int cmd,
2573 unsigned long arg, int ifreq_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002574{
Eric W. Biederman36b50ba2009-01-20 11:01:48 +00002575 struct tun_file *tfile = file->private_data;
Eric W. Biederman631ab462009-01-20 11:00:40 +00002576 struct tun_struct *tun;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002577 void __user* argp = (void __user*)arg;
2578 struct ifreq ifr;
Eric W. Biederman0625c882012-02-07 16:48:55 -08002579 kuid_t owner;
2580 kgid_t group;
Herbert Xu33dccbb2009-02-05 21:25:32 -08002581 int sndbuf;
Michael S. Tsirkind9d52b52010-03-17 17:45:01 +02002582 int vnet_hdr_sz;
Pavel Emelyanovfb7589a2013-08-21 14:31:38 +04002583 unsigned int ifindex;
Michael S. Tsirkin1cf8e412014-12-16 15:05:06 +02002584 int le;
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -07002585 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002586
Gao Feng20861f22016-10-27 09:05:22 +08002587 if (cmd == TUNSETIFF || cmd == TUNSETQUEUE || _IOC_TYPE(cmd) == SOCK_IOC_TYPE) {
Arnd Bergmann50857e22009-11-06 22:52:32 -08002588 if (copy_from_user(&ifr, argp, ifreq_len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002589 return -EFAULT;
David S. Miller8bbb1812012-07-30 14:52:48 -07002590 } else {
Mathias Krausea117dac2012-07-29 19:45:14 +00002591 memset(&ifr, 0, sizeof(ifr));
David S. Miller8bbb1812012-07-30 14:52:48 -07002592 }
Eric W. Biederman631ab462009-01-20 11:00:40 +00002593 if (cmd == TUNGETFEATURES) {
2594 /* Currently this just means: "what IFF flags are valid?".
2595 * This is needed because we never checked for invalid flags on
Michael S. Tsirkin031f5e02014-11-19 14:44:40 +02002596 * TUNSETIFF.
2597 */
2598 return put_user(IFF_TUN | IFF_TAP | TUN_FEATURES,
Eric W. Biederman631ab462009-01-20 11:00:40 +00002599 (unsigned int __user*)argp);
Jason Wangcde8b152012-10-31 19:46:01 +00002600 } else if (cmd == TUNSETQUEUE)
2601 return tun_set_queue(file, &ifr);
Eric W. Biederman631ab462009-01-20 11:00:40 +00002602
Jason Wangc8d68e62012-10-31 19:46:00 +00002603 ret = 0;
Herbert Xu876bfd42009-08-06 14:22:44 +00002604 rtnl_lock();
2605
yuan linyu9484dc72017-09-23 22:36:52 +08002606 tun = tun_get(tfile);
Gao Feng0f16bc12016-10-25 22:26:09 +08002607 if (cmd == TUNSETIFF) {
2608 ret = -EEXIST;
2609 if (tun)
2610 goto unlock;
2611
Linus Torvalds1da177e2005-04-16 15:20:36 -07002612 ifr.ifr_name[IFNAMSIZ-1] = '\0';
2613
Eric W. Biederman140e807da2015-05-08 21:07:08 -05002614 ret = tun_set_iff(sock_net(&tfile->sk), file, &ifr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002615
Herbert Xu876bfd42009-08-06 14:22:44 +00002616 if (ret)
2617 goto unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002618
Arnd Bergmann50857e22009-11-06 22:52:32 -08002619 if (copy_to_user(argp, &ifr, ifreq_len))
Herbert Xu876bfd42009-08-06 14:22:44 +00002620 ret = -EFAULT;
2621 goto unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002622 }
Pavel Emelyanovfb7589a2013-08-21 14:31:38 +04002623 if (cmd == TUNSETIFINDEX) {
2624 ret = -EPERM;
2625 if (tun)
2626 goto unlock;
2627
2628 ret = -EFAULT;
2629 if (copy_from_user(&ifindex, argp, sizeof(ifindex)))
2630 goto unlock;
2631
2632 ret = 0;
2633 tfile->ifindex = ifindex;
2634 goto unlock;
2635 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002636
Herbert Xu876bfd42009-08-06 14:22:44 +00002637 ret = -EBADFD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002638 if (!tun)
Herbert Xu876bfd42009-08-06 14:22:44 +00002639 goto unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002640
Jason Wang1e588332012-10-31 19:45:56 +00002641 tun_debug(KERN_INFO, tun, "tun_chr_ioctl cmd %u\n", cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002642
Eric W. Biederman631ab462009-01-20 11:00:40 +00002643 ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002644 switch (cmd) {
Mark McLoughline3b99552008-08-15 15:09:56 -07002645 case TUNGETIFF:
Rami Rosen9ce99cf2012-11-23 03:58:10 +00002646 tun_get_iff(current->nsproxy->net_ns, tun, &ifr);
Mark McLoughline3b99552008-08-15 15:09:56 -07002647
Pavel Emelyanov3d407a82013-08-21 14:32:00 +04002648 if (tfile->detached)
2649 ifr.ifr_flags |= IFF_DETACH_QUEUE;
Pavel Emelyanov849c9b62013-08-21 14:32:21 +04002650 if (!tfile->socket.sk->sk_filter)
2651 ifr.ifr_flags |= IFF_NOFILTER;
Pavel Emelyanov3d407a82013-08-21 14:32:00 +04002652
Arnd Bergmann50857e22009-11-06 22:52:32 -08002653 if (copy_to_user(argp, &ifr, ifreq_len))
Eric W. Biederman631ab462009-01-20 11:00:40 +00002654 ret = -EFAULT;
Mark McLoughline3b99552008-08-15 15:09:56 -07002655 break;
2656
Linus Torvalds1da177e2005-04-16 15:20:36 -07002657 case TUNSETNOCSUM:
2658 /* Disable/Enable checksum */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002659
Michał Mirosław88255372011-04-19 06:13:10 +00002660 /* [unimplemented] */
2661 tun_debug(KERN_INFO, tun, "ignored: set checksum %s\n",
Joe Perches6b8a66e2011-03-02 07:18:10 +00002662 arg ? "disabled" : "enabled");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002663 break;
2664
2665 case TUNSETPERSIST:
Jason Wang54f968d2012-10-31 19:45:57 +00002666 /* Disable/Enable persist mode. Keep an extra reference to the
2667 * module to prevent the module being unprobed.
2668 */
Michael S. Tsirkin40630b82014-11-19 15:17:31 +02002669 if (arg && !(tun->flags & IFF_PERSIST)) {
2670 tun->flags |= IFF_PERSIST;
Jason Wang54f968d2012-10-31 19:45:57 +00002671 __module_get(THIS_MODULE);
Jason Wangdd38bd82013-01-11 16:59:34 +00002672 }
Michael S. Tsirkin40630b82014-11-19 15:17:31 +02002673 if (!arg && (tun->flags & IFF_PERSIST)) {
2674 tun->flags &= ~IFF_PERSIST;
Jason Wang54f968d2012-10-31 19:45:57 +00002675 module_put(THIS_MODULE);
2676 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002677
Joe Perches6b8a66e2011-03-02 07:18:10 +00002678 tun_debug(KERN_INFO, tun, "persist %s\n",
2679 arg ? "enabled" : "disabled");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002680 break;
2681
2682 case TUNSETOWNER:
2683 /* Set owner of the device */
Eric W. Biederman0625c882012-02-07 16:48:55 -08002684 owner = make_kuid(current_user_ns(), arg);
2685 if (!uid_valid(owner)) {
2686 ret = -EINVAL;
2687 break;
2688 }
2689 tun->owner = owner;
Jason Wang1e588332012-10-31 19:45:56 +00002690 tun_debug(KERN_INFO, tun, "owner set to %u\n",
Eric W. Biederman0625c882012-02-07 16:48:55 -08002691 from_kuid(&init_user_ns, tun->owner));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002692 break;
2693
Guido Guenther8c644622007-07-02 22:50:25 -07002694 case TUNSETGROUP:
2695 /* Set group of the device */
Eric W. Biederman0625c882012-02-07 16:48:55 -08002696 group = make_kgid(current_user_ns(), arg);
2697 if (!gid_valid(group)) {
2698 ret = -EINVAL;
2699 break;
2700 }
2701 tun->group = group;
Jason Wang1e588332012-10-31 19:45:56 +00002702 tun_debug(KERN_INFO, tun, "group set to %u\n",
Eric W. Biederman0625c882012-02-07 16:48:55 -08002703 from_kgid(&init_user_ns, tun->group));
Guido Guenther8c644622007-07-02 22:50:25 -07002704 break;
2705
Mike Kershawff4cc3a2005-09-01 17:40:05 -07002706 case TUNSETLINK:
2707 /* Only allow setting the type when the interface is down */
2708 if (tun->dev->flags & IFF_UP) {
Joe Perches6b8a66e2011-03-02 07:18:10 +00002709 tun_debug(KERN_INFO, tun,
2710 "Linktype set failed because interface is up\n");
David S. Miller48abfe02008-04-23 19:37:58 -07002711 ret = -EBUSY;
Mike Kershawff4cc3a2005-09-01 17:40:05 -07002712 } else {
2713 tun->dev->type = (int) arg;
Joe Perches6b8a66e2011-03-02 07:18:10 +00002714 tun_debug(KERN_INFO, tun, "linktype set to %d\n",
2715 tun->dev->type);
David S. Miller48abfe02008-04-23 19:37:58 -07002716 ret = 0;
Mike Kershawff4cc3a2005-09-01 17:40:05 -07002717 }
Eric W. Biederman631ab462009-01-20 11:00:40 +00002718 break;
Mike Kershawff4cc3a2005-09-01 17:40:05 -07002719
Linus Torvalds1da177e2005-04-16 15:20:36 -07002720#ifdef TUN_DEBUG
2721 case TUNSETDEBUG:
2722 tun->debug = arg;
2723 break;
2724#endif
Rusty Russell5228ddc2008-07-03 03:46:16 -07002725 case TUNSETOFFLOAD:
Michał Mirosław88255372011-04-19 06:13:10 +00002726 ret = set_offload(tun, arg);
Eric W. Biederman631ab462009-01-20 11:00:40 +00002727 break;
Rusty Russell5228ddc2008-07-03 03:46:16 -07002728
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -07002729 case TUNSETTXFILTER:
2730 /* Can be set only for TAPs */
Eric W. Biederman631ab462009-01-20 11:00:40 +00002731 ret = -EINVAL;
Michael S. Tsirkin40630b82014-11-19 15:17:31 +02002732 if ((tun->flags & TUN_TYPE_MASK) != IFF_TAP)
Eric W. Biederman631ab462009-01-20 11:00:40 +00002733 break;
Harvey Harrisonc0e5a8c2008-07-16 12:45:34 -07002734 ret = update_filter(&tun->txflt, (void __user *)arg);
Eric W. Biederman631ab462009-01-20 11:00:40 +00002735 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002736
2737 case SIOCGIFHWADDR:
Uwe Kleine-Königb5950762010-11-01 15:38:34 -04002738 /* Get hw address */
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -07002739 memcpy(ifr.ifr_hwaddr.sa_data, tun->dev->dev_addr, ETH_ALEN);
2740 ifr.ifr_hwaddr.sa_family = tun->dev->type;
Arnd Bergmann50857e22009-11-06 22:52:32 -08002741 if (copy_to_user(argp, &ifr, ifreq_len))
Eric W. Biederman631ab462009-01-20 11:00:40 +00002742 ret = -EFAULT;
2743 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002744
2745 case SIOCSIFHWADDR:
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -07002746 /* Set hw address */
Joe Perches6b8a66e2011-03-02 07:18:10 +00002747 tun_debug(KERN_DEBUG, tun, "set hw address: %pM\n",
2748 ifr.ifr_hwaddr.sa_data);
Kim B. Heino40102372008-02-29 12:26:21 -08002749
Kim B. Heino40102372008-02-29 12:26:21 -08002750 ret = dev_set_mac_address(tun->dev, &ifr.ifr_hwaddr);
Eric W. Biederman631ab462009-01-20 11:00:40 +00002751 break;
Herbert Xu33dccbb2009-02-05 21:25:32 -08002752
2753 case TUNGETSNDBUF:
Jason Wang54f968d2012-10-31 19:45:57 +00002754 sndbuf = tfile->socket.sk->sk_sndbuf;
Herbert Xu33dccbb2009-02-05 21:25:32 -08002755 if (copy_to_user(argp, &sndbuf, sizeof(sndbuf)))
2756 ret = -EFAULT;
2757 break;
2758
2759 case TUNSETSNDBUF:
2760 if (copy_from_user(&sndbuf, argp, sizeof(sndbuf))) {
2761 ret = -EFAULT;
2762 break;
2763 }
Craig Gallek931619222017-10-30 18:50:11 -04002764 if (sndbuf <= 0) {
2765 ret = -EINVAL;
2766 break;
2767 }
Herbert Xu33dccbb2009-02-05 21:25:32 -08002768
Jason Wangc8d68e62012-10-31 19:46:00 +00002769 tun->sndbuf = sndbuf;
2770 tun_set_sndbuf(tun);
Herbert Xu33dccbb2009-02-05 21:25:32 -08002771 break;
2772
Michael S. Tsirkind9d52b52010-03-17 17:45:01 +02002773 case TUNGETVNETHDRSZ:
2774 vnet_hdr_sz = tun->vnet_hdr_sz;
2775 if (copy_to_user(argp, &vnet_hdr_sz, sizeof(vnet_hdr_sz)))
2776 ret = -EFAULT;
2777 break;
2778
2779 case TUNSETVNETHDRSZ:
2780 if (copy_from_user(&vnet_hdr_sz, argp, sizeof(vnet_hdr_sz))) {
2781 ret = -EFAULT;
2782 break;
2783 }
2784 if (vnet_hdr_sz < (int)sizeof(struct virtio_net_hdr)) {
2785 ret = -EINVAL;
2786 break;
2787 }
2788
2789 tun->vnet_hdr_sz = vnet_hdr_sz;
2790 break;
2791
Michael S. Tsirkin1cf8e412014-12-16 15:05:06 +02002792 case TUNGETVNETLE:
2793 le = !!(tun->flags & TUN_VNET_LE);
2794 if (put_user(le, (int __user *)argp))
2795 ret = -EFAULT;
2796 break;
2797
2798 case TUNSETVNETLE:
2799 if (get_user(le, (int __user *)argp)) {
2800 ret = -EFAULT;
2801 break;
2802 }
2803 if (le)
2804 tun->flags |= TUN_VNET_LE;
2805 else
2806 tun->flags &= ~TUN_VNET_LE;
2807 break;
2808
Greg Kurz8b8e6582015-04-24 14:50:36 +02002809 case TUNGETVNETBE:
2810 ret = tun_get_vnet_be(tun, argp);
2811 break;
2812
2813 case TUNSETVNETBE:
2814 ret = tun_set_vnet_be(tun, argp);
2815 break;
2816
Michael S. Tsirkin99405162010-02-14 01:01:10 +00002817 case TUNATTACHFILTER:
2818 /* Can be set only for TAPs */
2819 ret = -EINVAL;
Michael S. Tsirkin40630b82014-11-19 15:17:31 +02002820 if ((tun->flags & TUN_TYPE_MASK) != IFF_TAP)
Michael S. Tsirkin99405162010-02-14 01:01:10 +00002821 break;
2822 ret = -EFAULT;
Jason Wang54f968d2012-10-31 19:45:57 +00002823 if (copy_from_user(&tun->fprog, argp, sizeof(tun->fprog)))
Michael S. Tsirkin99405162010-02-14 01:01:10 +00002824 break;
2825
Jason Wangc8d68e62012-10-31 19:46:00 +00002826 ret = tun_attach_filter(tun);
Michael S. Tsirkin99405162010-02-14 01:01:10 +00002827 break;
2828
2829 case TUNDETACHFILTER:
2830 /* Can be set only for TAPs */
2831 ret = -EINVAL;
Michael S. Tsirkin40630b82014-11-19 15:17:31 +02002832 if ((tun->flags & TUN_TYPE_MASK) != IFF_TAP)
Michael S. Tsirkin99405162010-02-14 01:01:10 +00002833 break;
Jason Wangc8d68e62012-10-31 19:46:00 +00002834 ret = 0;
2835 tun_detach_filter(tun, tun->numqueues);
Michael S. Tsirkin99405162010-02-14 01:01:10 +00002836 break;
2837
Pavel Emelyanov76975e92013-08-21 14:32:39 +04002838 case TUNGETFILTER:
2839 ret = -EINVAL;
Michael S. Tsirkin40630b82014-11-19 15:17:31 +02002840 if ((tun->flags & TUN_TYPE_MASK) != IFF_TAP)
Pavel Emelyanov76975e92013-08-21 14:32:39 +04002841 break;
2842 ret = -EFAULT;
2843 if (copy_to_user(argp, &tun->fprog, sizeof(tun->fprog)))
2844 break;
2845 ret = 0;
2846 break;
2847
Jason Wang96f84062017-12-04 17:31:23 +08002848 case TUNSETSTEERINGEBPF:
2849 ret = tun_set_steering_ebpf(tun, argp);
2850 break;
2851
Linus Torvalds1da177e2005-04-16 15:20:36 -07002852 default:
Eric W. Biederman631ab462009-01-20 11:00:40 +00002853 ret = -EINVAL;
2854 break;
Joe Perchesee289b62010-05-17 22:47:34 -07002855 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002856
Herbert Xu876bfd42009-08-06 14:22:44 +00002857unlock:
2858 rtnl_unlock();
2859 if (tun)
2860 tun_put(tun);
Eric W. Biederman631ab462009-01-20 11:00:40 +00002861 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002862}
2863
Arnd Bergmann50857e22009-11-06 22:52:32 -08002864static long tun_chr_ioctl(struct file *file,
2865 unsigned int cmd, unsigned long arg)
2866{
2867 return __tun_chr_ioctl(file, cmd, arg, sizeof (struct ifreq));
2868}
2869
2870#ifdef CONFIG_COMPAT
2871static long tun_chr_compat_ioctl(struct file *file,
2872 unsigned int cmd, unsigned long arg)
2873{
2874 switch (cmd) {
2875 case TUNSETIFF:
2876 case TUNGETIFF:
2877 case TUNSETTXFILTER:
2878 case TUNGETSNDBUF:
2879 case TUNSETSNDBUF:
2880 case SIOCGIFHWADDR:
2881 case SIOCSIFHWADDR:
2882 arg = (unsigned long)compat_ptr(arg);
2883 break;
2884 default:
2885 arg = (compat_ulong_t)arg;
2886 break;
2887 }
2888
2889 /*
2890 * compat_ifreq is shorter than ifreq, so we must not access beyond
2891 * the end of that structure. All fields that are used in this
2892 * driver are compatible though, we don't need to convert the
2893 * contents.
2894 */
2895 return __tun_chr_ioctl(file, cmd, arg, sizeof(struct compat_ifreq));
2896}
2897#endif /* CONFIG_COMPAT */
2898
Linus Torvalds1da177e2005-04-16 15:20:36 -07002899static int tun_chr_fasync(int fd, struct file *file, int on)
2900{
Jason Wang54f968d2012-10-31 19:45:57 +00002901 struct tun_file *tfile = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002902 int ret;
2903
Jason Wang54f968d2012-10-31 19:45:57 +00002904 if ((ret = fasync_helper(fd, file, on, &tfile->fasync)) < 0)
Jonathan Corbet9d319522008-06-19 15:50:37 -06002905 goto out;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002906
Linus Torvalds1da177e2005-04-16 15:20:36 -07002907 if (on) {
Jeff Laytone0b93ed2014-08-22 11:27:32 -04002908 __f_setown(file, task_pid(current), PIDTYPE_PID, 0);
Jason Wang54f968d2012-10-31 19:45:57 +00002909 tfile->flags |= TUN_FASYNC;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002910 } else
Jason Wang54f968d2012-10-31 19:45:57 +00002911 tfile->flags &= ~TUN_FASYNC;
Jonathan Corbet9d319522008-06-19 15:50:37 -06002912 ret = 0;
2913out:
Jonathan Corbet9d319522008-06-19 15:50:37 -06002914 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002915}
2916
2917static int tun_chr_open(struct inode *inode, struct file * file)
2918{
Eric W. Biederman140e807da2015-05-08 21:07:08 -05002919 struct net *net = current->nsproxy->net_ns;
Eric W. Biederman631ab462009-01-20 11:00:40 +00002920 struct tun_file *tfile;
Thomas Gleixnerdeed49f2009-10-14 01:19:46 -07002921
Joe Perches6b8a66e2011-03-02 07:18:10 +00002922 DBG1(KERN_INFO, "tunX: tun_chr_open\n");
Eric W. Biederman631ab462009-01-20 11:00:40 +00002923
Eric W. Biederman140e807da2015-05-08 21:07:08 -05002924 tfile = (struct tun_file *)sk_alloc(net, AF_UNSPEC, GFP_KERNEL,
Eric W. Biederman11aa9c22015-05-08 21:09:13 -05002925 &tun_proto, 0);
Eric W. Biederman631ab462009-01-20 11:00:40 +00002926 if (!tfile)
2927 return -ENOMEM;
Monam Agarwalc9566742014-03-24 00:02:32 +05302928 RCU_INIT_POINTER(tfile->tun, NULL);
Jason Wang54f968d2012-10-31 19:45:57 +00002929 tfile->flags = 0;
Pavel Emelyanovfb7589a2013-08-21 14:31:38 +04002930 tfile->ifindex = 0;
Jason Wang54f968d2012-10-31 19:45:57 +00002931
Jason Wang54f968d2012-10-31 19:45:57 +00002932 init_waitqueue_head(&tfile->wq.wait);
Xi Wang9e641bd2014-05-16 15:11:48 -07002933 RCU_INIT_POINTER(tfile->socket.wq, &tfile->wq);
Jason Wang54f968d2012-10-31 19:45:57 +00002934
2935 tfile->socket.file = file;
2936 tfile->socket.ops = &tun_socket_ops;
2937
2938 sock_init_data(&tfile->socket, &tfile->sk);
Jason Wang54f968d2012-10-31 19:45:57 +00002939
2940 tfile->sk.sk_write_space = tun_sock_write_space;
2941 tfile->sk.sk_sndbuf = INT_MAX;
2942
Eric W. Biederman631ab462009-01-20 11:00:40 +00002943 file->private_data = tfile;
Jason Wang4008e972012-12-13 23:53:30 +00002944 INIT_LIST_HEAD(&tfile->next);
Jason Wang54f968d2012-10-31 19:45:57 +00002945
Jason Wang19a6afb2013-06-08 14:17:41 +08002946 sock_set_flag(&tfile->sk, SOCK_ZEROCOPY);
2947
Linus Torvalds1da177e2005-04-16 15:20:36 -07002948 return 0;
2949}
2950
2951static int tun_chr_close(struct inode *inode, struct file *file)
2952{
Eric W. Biederman631ab462009-01-20 11:00:40 +00002953 struct tun_file *tfile = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002954
Jason Wangc8d68e62012-10-31 19:46:00 +00002955 tun_detach(tfile, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002956
2957 return 0;
2958}
2959
Masatake YAMATO93e14b62014-01-29 16:43:31 +09002960#ifdef CONFIG_PROC_FS
yuan linyu9484dc72017-09-23 22:36:52 +08002961static void tun_chr_show_fdinfo(struct seq_file *m, struct file *file)
Masatake YAMATO93e14b62014-01-29 16:43:31 +09002962{
yuan linyu9484dc72017-09-23 22:36:52 +08002963 struct tun_file *tfile = file->private_data;
Masatake YAMATO93e14b62014-01-29 16:43:31 +09002964 struct tun_struct *tun;
2965 struct ifreq ifr;
2966
2967 memset(&ifr, 0, sizeof(ifr));
2968
2969 rtnl_lock();
yuan linyu9484dc72017-09-23 22:36:52 +08002970 tun = tun_get(tfile);
Masatake YAMATO93e14b62014-01-29 16:43:31 +09002971 if (tun)
2972 tun_get_iff(current->nsproxy->net_ns, tun, &ifr);
2973 rtnl_unlock();
2974
2975 if (tun)
2976 tun_put(tun);
2977
Joe Perchesa3816ab2014-09-29 16:08:25 -07002978 seq_printf(m, "iff:\t%s\n", ifr.ifr_name);
Masatake YAMATO93e14b62014-01-29 16:43:31 +09002979}
2980#endif
2981
Arjan van de Vend54b1fd2007-02-12 00:55:34 -08002982static const struct file_operations tun_fops = {
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002983 .owner = THIS_MODULE,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002984 .llseek = no_llseek,
Al Viro9b067032014-11-07 13:52:07 -05002985 .read_iter = tun_chr_read_iter,
Al Virof5ff53b2014-06-19 15:36:49 -04002986 .write_iter = tun_chr_write_iter,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002987 .poll = tun_chr_poll,
Arnd Bergmann50857e22009-11-06 22:52:32 -08002988 .unlocked_ioctl = tun_chr_ioctl,
2989#ifdef CONFIG_COMPAT
2990 .compat_ioctl = tun_chr_compat_ioctl,
2991#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002992 .open = tun_chr_open,
2993 .release = tun_chr_close,
Masatake YAMATO93e14b62014-01-29 16:43:31 +09002994 .fasync = tun_chr_fasync,
2995#ifdef CONFIG_PROC_FS
2996 .show_fdinfo = tun_chr_show_fdinfo,
2997#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002998};
2999
3000static struct miscdevice tun_miscdev = {
3001 .minor = TUN_MINOR,
3002 .name = "tun",
Kay Sieverse454cea2009-09-18 23:01:12 +02003003 .nodename = "net/tun",
Linus Torvalds1da177e2005-04-16 15:20:36 -07003004 .fops = &tun_fops,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003005};
3006
3007/* ethtool interface */
3008
Philippe Reynes29ccc492017-03-11 22:03:50 +01003009static int tun_get_link_ksettings(struct net_device *dev,
3010 struct ethtool_link_ksettings *cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003011{
Philippe Reynes29ccc492017-03-11 22:03:50 +01003012 ethtool_link_ksettings_zero_link_mode(cmd, supported);
3013 ethtool_link_ksettings_zero_link_mode(cmd, advertising);
3014 cmd->base.speed = SPEED_10;
3015 cmd->base.duplex = DUPLEX_FULL;
3016 cmd->base.port = PORT_TP;
3017 cmd->base.phy_address = 0;
3018 cmd->base.autoneg = AUTONEG_DISABLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003019 return 0;
3020}
3021
3022static void tun_get_drvinfo(struct net_device *dev, struct ethtool_drvinfo *info)
3023{
3024 struct tun_struct *tun = netdev_priv(dev);
3025
Rick Jones33a5ba12011-11-15 14:59:53 +00003026 strlcpy(info->driver, DRV_NAME, sizeof(info->driver));
3027 strlcpy(info->version, DRV_VERSION, sizeof(info->version));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003028
3029 switch (tun->flags & TUN_TYPE_MASK) {
Michael S. Tsirkin40630b82014-11-19 15:17:31 +02003030 case IFF_TUN:
Rick Jones33a5ba12011-11-15 14:59:53 +00003031 strlcpy(info->bus_info, "tun", sizeof(info->bus_info));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003032 break;
Michael S. Tsirkin40630b82014-11-19 15:17:31 +02003033 case IFF_TAP:
Rick Jones33a5ba12011-11-15 14:59:53 +00003034 strlcpy(info->bus_info, "tap", sizeof(info->bus_info));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003035 break;
3036 }
3037}
3038
3039static u32 tun_get_msglevel(struct net_device *dev)
3040{
3041#ifdef TUN_DEBUG
3042 struct tun_struct *tun = netdev_priv(dev);
3043 return tun->debug;
3044#else
3045 return -EOPNOTSUPP;
3046#endif
3047}
3048
3049static void tun_set_msglevel(struct net_device *dev, u32 value)
3050{
3051#ifdef TUN_DEBUG
3052 struct tun_struct *tun = netdev_priv(dev);
3053 tun->debug = value;
3054#endif
3055}
3056
Jason Wang5503fce2017-01-18 15:02:03 +08003057static int tun_get_coalesce(struct net_device *dev,
3058 struct ethtool_coalesce *ec)
3059{
3060 struct tun_struct *tun = netdev_priv(dev);
3061
3062 ec->rx_max_coalesced_frames = tun->rx_batched;
3063
3064 return 0;
3065}
3066
3067static int tun_set_coalesce(struct net_device *dev,
3068 struct ethtool_coalesce *ec)
3069{
3070 struct tun_struct *tun = netdev_priv(dev);
3071
3072 if (ec->rx_max_coalesced_frames > NAPI_POLL_WEIGHT)
3073 tun->rx_batched = NAPI_POLL_WEIGHT;
3074 else
3075 tun->rx_batched = ec->rx_max_coalesced_frames;
3076
3077 return 0;
3078}
3079
Jeff Garzik7282d492006-09-13 14:30:00 -04003080static const struct ethtool_ops tun_ethtool_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003081 .get_drvinfo = tun_get_drvinfo,
3082 .get_msglevel = tun_get_msglevel,
3083 .set_msglevel = tun_set_msglevel,
Nolan Leakebee31362010-07-27 13:53:43 +00003084 .get_link = ethtool_op_get_link,
Richard Cochraneda29772013-07-19 19:40:10 +02003085 .get_ts_info = ethtool_op_get_ts_info,
Jason Wang5503fce2017-01-18 15:02:03 +08003086 .get_coalesce = tun_get_coalesce,
3087 .set_coalesce = tun_set_coalesce,
Philippe Reynes29ccc492017-03-11 22:03:50 +01003088 .get_link_ksettings = tun_get_link_ksettings,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003089};
3090
Jason Wang1576d982016-06-30 14:45:36 +08003091static int tun_queue_resize(struct tun_struct *tun)
3092{
3093 struct net_device *dev = tun->dev;
3094 struct tun_file *tfile;
3095 struct skb_array **arrays;
3096 int n = tun->numqueues + tun->numdisabled;
3097 int ret, i;
3098
stephen hemminger12039042017-08-15 10:29:16 -07003099 arrays = kmalloc_array(n, sizeof(*arrays), GFP_KERNEL);
Jason Wang1576d982016-06-30 14:45:36 +08003100 if (!arrays)
3101 return -ENOMEM;
3102
3103 for (i = 0; i < tun->numqueues; i++) {
3104 tfile = rtnl_dereference(tun->tfiles[i]);
3105 arrays[i] = &tfile->tx_array;
3106 }
3107 list_for_each_entry(tfile, &tun->disabled, next)
3108 arrays[i++] = &tfile->tx_array;
3109
3110 ret = skb_array_resize_multiple(arrays, n,
3111 dev->tx_queue_len, GFP_KERNEL);
3112
3113 kfree(arrays);
3114 return ret;
3115}
3116
3117static int tun_device_event(struct notifier_block *unused,
3118 unsigned long event, void *ptr)
3119{
3120 struct net_device *dev = netdev_notifier_info_to_dev(ptr);
3121 struct tun_struct *tun = netdev_priv(dev);
3122
Craig Gallek86dfb4ac2016-07-06 18:44:20 -04003123 if (dev->rtnl_link_ops != &tun_link_ops)
3124 return NOTIFY_DONE;
3125
Jason Wang1576d982016-06-30 14:45:36 +08003126 switch (event) {
3127 case NETDEV_CHANGE_TX_QUEUE_LEN:
3128 if (tun_queue_resize(tun))
3129 return NOTIFY_BAD;
3130 break;
3131 default:
3132 break;
3133 }
3134
3135 return NOTIFY_DONE;
3136}
3137
3138static struct notifier_block tun_notifier_block __read_mostly = {
3139 .notifier_call = tun_device_event,
3140};
Pavel Emelyanov79d17602008-04-16 00:40:46 -07003141
Linus Torvalds1da177e2005-04-16 15:20:36 -07003142static int __init tun_init(void)
3143{
3144 int ret = 0;
3145
Joe Perches6b8a66e2011-03-02 07:18:10 +00003146 pr_info("%s, %s\n", DRV_DESCRIPTION, DRV_VERSION);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003147
Eric W. Biedermanf019a7a2009-01-21 16:02:16 -08003148 ret = rtnl_link_register(&tun_link_ops);
Pavel Emelyanov79d17602008-04-16 00:40:46 -07003149 if (ret) {
Joe Perches6b8a66e2011-03-02 07:18:10 +00003150 pr_err("Can't register link_ops\n");
Eric W. Biedermanf019a7a2009-01-21 16:02:16 -08003151 goto err_linkops;
Pavel Emelyanov79d17602008-04-16 00:40:46 -07003152 }
3153
Linus Torvalds1da177e2005-04-16 15:20:36 -07003154 ret = misc_register(&tun_miscdev);
Pavel Emelyanov79d17602008-04-16 00:40:46 -07003155 if (ret) {
Joe Perches6b8a66e2011-03-02 07:18:10 +00003156 pr_err("Can't register misc device %d\n", TUN_MINOR);
Pavel Emelyanov79d17602008-04-16 00:40:46 -07003157 goto err_misc;
3158 }
Jason Wang1576d982016-06-30 14:45:36 +08003159
Tonghao Zhang5edfbd32017-07-20 02:41:34 -07003160 ret = register_netdevice_notifier(&tun_notifier_block);
3161 if (ret) {
3162 pr_err("Can't register netdevice notifier\n");
3163 goto err_notifier;
3164 }
3165
Eric W. Biedermanf019a7a2009-01-21 16:02:16 -08003166 return 0;
Tonghao Zhang5edfbd32017-07-20 02:41:34 -07003167
3168err_notifier:
3169 misc_deregister(&tun_miscdev);
Pavel Emelyanov79d17602008-04-16 00:40:46 -07003170err_misc:
Eric W. Biedermanf019a7a2009-01-21 16:02:16 -08003171 rtnl_link_unregister(&tun_link_ops);
3172err_linkops:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003173 return ret;
3174}
3175
3176static void tun_cleanup(void)
3177{
Jeff Garzik6aa20a22006-09-13 13:24:59 -04003178 misc_deregister(&tun_miscdev);
Eric W. Biedermanf019a7a2009-01-21 16:02:16 -08003179 rtnl_link_unregister(&tun_link_ops);
Jason Wang1576d982016-06-30 14:45:36 +08003180 unregister_netdevice_notifier(&tun_notifier_block);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003181}
3182
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00003183/* Get an underlying socket object from tun file. Returns error unless file is
3184 * attached to a device. The returned object works like a packet socket, it
3185 * can be used for sock_sendmsg/sock_recvmsg. The caller is responsible for
3186 * holding a reference to the file for as long as the socket is in use. */
3187struct socket *tun_get_socket(struct file *file)
3188{
Jason Wang6e914fc2012-10-31 19:45:58 +00003189 struct tun_file *tfile;
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00003190 if (file->f_op != &tun_fops)
3191 return ERR_PTR(-EINVAL);
Jason Wang6e914fc2012-10-31 19:45:58 +00003192 tfile = file->private_data;
3193 if (!tfile)
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00003194 return ERR_PTR(-EBADFD);
Jason Wang54f968d2012-10-31 19:45:57 +00003195 return &tfile->socket;
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00003196}
3197EXPORT_SYMBOL_GPL(tun_get_socket);
3198
Jason Wang83339c62017-05-17 12:14:41 +08003199struct skb_array *tun_get_skb_array(struct file *file)
3200{
3201 struct tun_file *tfile;
3202
3203 if (file->f_op != &tun_fops)
3204 return ERR_PTR(-EINVAL);
3205 tfile = file->private_data;
3206 if (!tfile)
3207 return ERR_PTR(-EBADFD);
3208 return &tfile->tx_array;
3209}
3210EXPORT_SYMBOL_GPL(tun_get_skb_array);
3211
Linus Torvalds1da177e2005-04-16 15:20:36 -07003212module_init(tun_init);
3213module_exit(tun_cleanup);
3214MODULE_DESCRIPTION(DRV_DESCRIPTION);
3215MODULE_AUTHOR(DRV_COPYRIGHT);
3216MODULE_LICENSE("GPL");
3217MODULE_ALIAS_MISCDEV(TUN_MINOR);
Kay Sievers578454f2010-05-20 18:07:20 +02003218MODULE_ALIAS("devname:net/tun");