blob: c3af08f24679bea4eb09ffdb8bcb0c7e457f22e2 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * TUN - Universal TUN/TAP device driver.
3 * Copyright (C) 1999-2002 Maxim Krasnyansky <maxk@qualcomm.com>
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * $Id: tun.c,v 1.15 2002/03/01 02:44:24 maxk Exp $
16 */
17
18/*
19 * Changes:
20 *
Mike Kershawff4cc3a2005-09-01 17:40:05 -070021 * Mike Kershaw <dragorn@kismetwireless.net> 2005/08/14
22 * Add TUNSETLINK ioctl to set the link encapsulation
23 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070024 * Mark Smith <markzzzsmith@yahoo.com.au>
Joe Perches344dc8e2012-07-12 19:33:09 +000025 * Use eth_random_addr() for tap MAC address.
Linus Torvalds1da177e2005-04-16 15:20:36 -070026 *
27 * Harald Roelle <harald.roelle@ifi.lmu.de> 2004/04/20
28 * Fixes in packet dropping, queue length setting and queue wakeup.
29 * Increased default tx queue length.
30 * Added ethtool API.
31 * Minor cleanups
32 *
33 * Daniel Podlejski <underley@underley.eu.org>
34 * Modifications for 2.3.99-pre5 kernel.
35 */
36
Joe Perches6b8a66e2011-03-02 07:18:10 +000037#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
38
Linus Torvalds1da177e2005-04-16 15:20:36 -070039#define DRV_NAME "tun"
40#define DRV_VERSION "1.6"
41#define DRV_DESCRIPTION "Universal TUN/TAP device driver"
42#define DRV_COPYRIGHT "(C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>"
43
Linus Torvalds1da177e2005-04-16 15:20:36 -070044#include <linux/module.h>
45#include <linux/errno.h>
46#include <linux/kernel.h>
Ingo Molnar174cd4b2017-02-02 19:15:33 +010047#include <linux/sched/signal.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070048#include <linux/major.h>
49#include <linux/slab.h>
50#include <linux/poll.h>
51#include <linux/fcntl.h>
52#include <linux/init.h>
53#include <linux/skbuff.h>
54#include <linux/netdevice.h>
55#include <linux/etherdevice.h>
56#include <linux/miscdevice.h>
57#include <linux/ethtool.h>
58#include <linux/rtnetlink.h>
Arnd Bergmann50857e22009-11-06 22:52:32 -080059#include <linux/compat.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070060#include <linux/if.h>
61#include <linux/if_arp.h>
62#include <linux/if_ether.h>
63#include <linux/if_tun.h>
Jason Wang6680ec62013-07-25 13:00:33 +080064#include <linux/if_vlan.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070065#include <linux/crc32.h>
Pavel Emelyanovd647a592008-04-16 00:41:16 -070066#include <linux/nsproxy.h>
Rusty Russellf43798c2008-07-03 03:48:02 -070067#include <linux/virtio_net.h>
Michael S. Tsirkin99405162010-02-14 01:01:10 +000068#include <linux/rcupdate.h>
Eric W. Biederman881d9662007-09-17 11:56:21 -070069#include <net/net_namespace.h>
Pavel Emelyanov79d17602008-04-16 00:40:46 -070070#include <net/netns/generic.h>
Eric W. Biedermanf019a7a2009-01-21 16:02:16 -080071#include <net/rtnetlink.h>
Herbert Xu33dccbb2009-02-05 21:25:32 -080072#include <net/sock.h>
Masatake YAMATO93e14b62014-01-29 16:43:31 +090073#include <linux/seq_file.h>
Herbert Xue0b46d02014-11-07 21:22:23 +080074#include <linux/uio.h>
Jason Wang1576d982016-06-30 14:45:36 +080075#include <linux/skb_array.h>
Jason Wang761876c2017-08-11 19:41:18 +080076#include <linux/bpf.h>
77#include <linux/bpf_trace.h>
Petar Penkov90e33d42017-09-22 13:49:15 -070078#include <linux/mutex.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070079
Linus Torvalds7c0f6ba2016-12-24 11:46:01 -080080#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070081
Rusty Russell14daa022008-04-12 18:48:58 -070082/* Uncomment to enable debugging */
83/* #define TUN_DEBUG 1 */
84
Linus Torvalds1da177e2005-04-16 15:20:36 -070085#ifdef TUN_DEBUG
86static int debug;
Rusty Russell14daa022008-04-12 18:48:58 -070087
Joe Perches6b8a66e2011-03-02 07:18:10 +000088#define tun_debug(level, tun, fmt, args...) \
89do { \
90 if (tun->debug) \
91 netdev_printk(level, tun->dev, fmt, ##args); \
92} while (0)
93#define DBG1(level, fmt, args...) \
94do { \
95 if (debug == 2) \
96 printk(level fmt, ##args); \
97} while (0)
Rusty Russell14daa022008-04-12 18:48:58 -070098#else
Joe Perches6b8a66e2011-03-02 07:18:10 +000099#define tun_debug(level, tun, fmt, args...) \
100do { \
101 if (0) \
102 netdev_printk(level, tun->dev, fmt, ##args); \
103} while (0)
104#define DBG1(level, fmt, args...) \
105do { \
106 if (0) \
107 printk(level fmt, ##args); \
108} while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109#endif
110
Jason Wang761876c2017-08-11 19:41:18 +0800111#define TUN_HEADROOM 256
Jason Wang7df13212017-09-04 11:36:08 +0800112#define TUN_RX_PAD (NET_IP_ALIGN + NET_SKB_PAD)
Jason Wang66ccbc92017-08-11 19:41:16 +0800113
Michael S. Tsirkin031f5e032014-11-19 14:44:40 +0200114/* TUN device flags */
115
116/* IFF_ATTACH_QUEUE is never stored in device flags,
117 * overload it to mean fasync when stored there.
118 */
119#define TUN_FASYNC IFF_ATTACH_QUEUE
Michael S. Tsirkin1cf8e412014-12-16 15:05:06 +0200120/* High bits in flags field are unused. */
121#define TUN_VNET_LE 0x80000000
Greg Kurz8b8e6582015-04-24 14:50:36 +0200122#define TUN_VNET_BE 0x40000000
Michael S. Tsirkin031f5e032014-11-19 14:44:40 +0200123
124#define TUN_FEATURES (IFF_NO_PI | IFF_ONE_QUEUE | IFF_VNET_HDR | \
Petar Penkov90e33d42017-09-22 13:49:15 -0700125 IFF_MULTI_QUEUE | IFF_NAPI | IFF_NAPI_FRAGS)
126
Michael S. Tsirkin06908992012-07-20 09:23:23 +0000127#define GOODCOPY_LEN 128
128
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -0700129#define FLT_EXACT_COUNT 8
130struct tap_filter {
131 unsigned int count; /* Number of addrs. Zero means disabled */
132 u32 mask[2]; /* Mask of the hashed addrs */
133 unsigned char addr[FLT_EXACT_COUNT][ETH_ALEN];
134};
135
Pankaj Guptabaf71c52015-01-12 11:41:29 +0530136/* MAX_TAP_QUEUES 256 is chosen to allow rx/tx queues to be equal
137 * to max number of VCPUs in guest. */
138#define MAX_TAP_QUEUES 256
Jason Wangb8732fb2013-01-23 03:59:13 +0000139#define MAX_TAP_FLOWS 4096
Jason Wangc8d68e62012-10-31 19:46:00 +0000140
Jason Wang96442e422012-10-31 19:46:02 +0000141#define TUN_FLOW_EXPIRE (3 * HZ)
142
Paolo Abeni608b9972016-04-13 10:52:20 +0200143struct tun_pcpu_stats {
144 u64 rx_packets;
145 u64 rx_bytes;
146 u64 tx_packets;
147 u64 tx_bytes;
148 struct u64_stats_sync syncp;
149 u32 rx_dropped;
150 u32 tx_dropped;
151 u32 rx_frame_errors;
152};
153
Jason Wang54f968d2012-10-31 19:45:57 +0000154/* A tun_file connects an open character device to a tuntap netdevice. It
stephen hemminger92d4ea62013-12-05 20:42:58 -0800155 * also contains all socket related structures (except sock_fprog and tap_filter)
Jason Wang54f968d2012-10-31 19:45:57 +0000156 * to serve as one transmit queue for tuntap device. The sock_fprog and
157 * tap_filter were kept in tun_struct since they were used for filtering for the
Rami Rosen36fe8c092012-11-25 22:07:40 +0000158 * netdevice not for a specific queue (at least I didn't see the requirement for
Jason Wang54f968d2012-10-31 19:45:57 +0000159 * this).
Jason Wang6e914fc2012-10-31 19:45:58 +0000160 *
161 * RCU usage:
Rami Rosen36fe8c092012-11-25 22:07:40 +0000162 * The tun_file and tun_struct are loosely coupled, the pointer from one to the
Jason Wang6e914fc2012-10-31 19:45:58 +0000163 * other can only be read while rcu_read_lock or rtnl_lock is held.
Jason Wang54f968d2012-10-31 19:45:57 +0000164 */
Eric W. Biederman631ab462009-01-20 11:00:40 +0000165struct tun_file {
Jason Wang54f968d2012-10-31 19:45:57 +0000166 struct sock sk;
167 struct socket socket;
168 struct socket_wq wq;
Jason Wang6e914fc2012-10-31 19:45:58 +0000169 struct tun_struct __rcu *tun;
Jason Wang54f968d2012-10-31 19:45:57 +0000170 struct fasync_struct *fasync;
171 /* only used for fasnyc */
172 unsigned int flags;
Pavel Emelyanovfb7589a2013-08-21 14:31:38 +0400173 union {
174 u16 queue_index;
175 unsigned int ifindex;
176 };
Petar Penkov94317092017-09-22 13:49:14 -0700177 struct napi_struct napi;
Eric Dumazetaec72f32017-10-18 12:12:09 -0700178 bool napi_enabled;
Petar Penkov90e33d42017-09-22 13:49:15 -0700179 struct mutex napi_mutex; /* Protects access to the above napi */
Jason Wang4008e972012-12-13 23:53:30 +0000180 struct list_head next;
181 struct tun_struct *detached;
Jason Wang1576d982016-06-30 14:45:36 +0800182 struct skb_array tx_array;
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 Wang54f968d2012-10-31 19:45:57 +0000198/* Since the socket were moved to tun_file, to preserve the behavior of persist
Rami Rosen36fe8c092012-11-25 22:07:40 +0000199 * device, socket filter, sndbuf and vnet header size were restore when the
Jason Wang54f968d2012-10-31 19:45:57 +0000200 * file were attached to a persist device.
201 */
Rusty Russell14daa022008-04-12 18:48:58 -0700202struct tun_struct {
Jason Wangc8d68e62012-10-31 19:46:00 +0000203 struct tun_file __rcu *tfiles[MAX_TAP_QUEUES];
204 unsigned int numqueues;
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -0700205 unsigned int flags;
Eric W. Biederman0625c882012-02-07 16:48:55 -0800206 kuid_t owner;
207 kgid_t group;
Rusty Russell14daa022008-04-12 18:48:58 -0700208
Rusty Russell14daa022008-04-12 18:48:58 -0700209 struct net_device *dev;
Michał Mirosławc8f44af2011-11-15 15:29:55 +0000210 netdev_features_t set_features;
Michał Mirosław88255372011-04-19 06:13:10 +0000211#define TUN_USER_FEATURES (NETIF_F_HW_CSUM|NETIF_F_TSO_ECN|NETIF_F_TSO| \
David S. Millerd591a1f2017-07-03 06:35:32 -0700212 NETIF_F_TSO6)
Michael S. Tsirkind9d52b52010-03-17 17:45:01 +0200213
Paolo Abenieaea34b2016-02-26 10:45:40 +0100214 int align;
Michael S. Tsirkind9d52b52010-03-17 17:45:01 +0200215 int vnet_hdr_sz;
Jason Wang54f968d2012-10-31 19:45:57 +0000216 int sndbuf;
217 struct tap_filter txflt;
218 struct sock_fprog fprog;
219 /* protected by rtnl lock */
220 bool filter_attached;
Rusty Russell14daa022008-04-12 18:48:58 -0700221#ifdef TUN_DEBUG
222 int debug;
223#endif
Jason Wang96442e422012-10-31 19:46:02 +0000224 spinlock_t lock;
Jason Wang96442e422012-10-31 19:46:02 +0000225 struct hlist_head flows[TUN_NUM_FLOW_ENTRIES];
226 struct timer_list flow_gc_timer;
227 unsigned long ageing_time;
Jason Wang4008e972012-12-13 23:53:30 +0000228 unsigned int numdisabled;
229 struct list_head disabled;
Paul Moore5dbbaf22013-01-14 07:12:19 +0000230 void *security;
Jason Wangb8732fb2013-01-23 03:59:13 +0000231 u32 flow_count;
Jason Wang5503fce2017-01-18 15:02:03 +0800232 u32 rx_batched;
Paolo Abeni608b9972016-04-13 10:52:20 +0200233 struct tun_pcpu_stats __percpu *pcpu_stats;
Jason Wang761876c2017-08-11 19:41:18 +0800234 struct bpf_prog __rcu *xdp_prog;
Rusty Russell14daa022008-04-12 18:48:58 -0700235};
236
Petar Penkov94317092017-09-22 13:49:14 -0700237static int tun_napi_receive(struct napi_struct *napi, int budget)
238{
239 struct tun_file *tfile = container_of(napi, struct tun_file, napi);
240 struct sk_buff_head *queue = &tfile->sk.sk_write_queue;
241 struct sk_buff_head process_queue;
242 struct sk_buff *skb;
243 int received = 0;
244
245 __skb_queue_head_init(&process_queue);
246
247 spin_lock(&queue->lock);
248 skb_queue_splice_tail_init(queue, &process_queue);
249 spin_unlock(&queue->lock);
250
251 while (received < budget && (skb = __skb_dequeue(&process_queue))) {
252 napi_gro_receive(napi, skb);
253 ++received;
254 }
255
256 if (!skb_queue_empty(&process_queue)) {
257 spin_lock(&queue->lock);
258 skb_queue_splice(&process_queue, queue);
259 spin_unlock(&queue->lock);
260 }
261
262 return received;
263}
264
265static int tun_napi_poll(struct napi_struct *napi, int budget)
266{
267 unsigned int received;
268
269 received = tun_napi_receive(napi, budget);
270
271 if (received < budget)
272 napi_complete_done(napi, received);
273
274 return received;
275}
276
277static void tun_napi_init(struct tun_struct *tun, struct tun_file *tfile,
278 bool napi_en)
279{
Eric Dumazetaec72f32017-10-18 12:12:09 -0700280 tfile->napi_enabled = napi_en;
Petar Penkov94317092017-09-22 13:49:14 -0700281 if (napi_en) {
282 netif_napi_add(tun->dev, &tfile->napi, tun_napi_poll,
283 NAPI_POLL_WEIGHT);
284 napi_enable(&tfile->napi);
Petar Penkov90e33d42017-09-22 13:49:15 -0700285 mutex_init(&tfile->napi_mutex);
Petar Penkov94317092017-09-22 13:49:14 -0700286 }
287}
288
289static void tun_napi_disable(struct tun_struct *tun, struct tun_file *tfile)
290{
Eric Dumazetaec72f32017-10-18 12:12:09 -0700291 if (tfile->napi_enabled)
Petar Penkov94317092017-09-22 13:49:14 -0700292 napi_disable(&tfile->napi);
293}
294
295static void tun_napi_del(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 netif_napi_del(&tfile->napi);
299}
300
Petar Penkov90e33d42017-09-22 13:49:15 -0700301static bool tun_napi_frags_enabled(const struct tun_struct *tun)
302{
303 return READ_ONCE(tun->flags) & IFF_NAPI_FRAGS;
304}
305
Greg Kurz8b8e6582015-04-24 14:50:36 +0200306#ifdef CONFIG_TUN_VNET_CROSS_LE
307static inline bool tun_legacy_is_little_endian(struct tun_struct *tun)
308{
309 return tun->flags & TUN_VNET_BE ? false :
310 virtio_legacy_is_little_endian();
311}
312
313static long tun_get_vnet_be(struct tun_struct *tun, int __user *argp)
314{
315 int be = !!(tun->flags & TUN_VNET_BE);
316
317 if (put_user(be, argp))
318 return -EFAULT;
319
320 return 0;
321}
322
323static long tun_set_vnet_be(struct tun_struct *tun, int __user *argp)
324{
325 int be;
326
327 if (get_user(be, argp))
328 return -EFAULT;
329
330 if (be)
331 tun->flags |= TUN_VNET_BE;
332 else
333 tun->flags &= ~TUN_VNET_BE;
334
335 return 0;
336}
337#else
338static inline bool tun_legacy_is_little_endian(struct tun_struct *tun)
339{
340 return virtio_legacy_is_little_endian();
341}
342
343static long tun_get_vnet_be(struct tun_struct *tun, int __user *argp)
344{
345 return -EINVAL;
346}
347
348static long tun_set_vnet_be(struct tun_struct *tun, int __user *argp)
349{
350 return -EINVAL;
351}
352#endif /* CONFIG_TUN_VNET_CROSS_LE */
353
Greg Kurz25bd55bb2015-04-24 14:24:38 +0200354static inline bool tun_is_little_endian(struct tun_struct *tun)
355{
Greg Kurz7d824102015-04-24 14:26:24 +0200356 return tun->flags & TUN_VNET_LE ||
Greg Kurz8b8e6582015-04-24 14:50:36 +0200357 tun_legacy_is_little_endian(tun);
Greg Kurz25bd55bb2015-04-24 14:24:38 +0200358}
359
Michael S. Tsirkin56f0dcc2014-10-23 22:59:31 +0300360static inline u16 tun16_to_cpu(struct tun_struct *tun, __virtio16 val)
361{
Greg Kurz25bd55bb2015-04-24 14:24:38 +0200362 return __virtio16_to_cpu(tun_is_little_endian(tun), val);
Michael S. Tsirkin56f0dcc2014-10-23 22:59:31 +0300363}
364
365static inline __virtio16 cpu_to_tun16(struct tun_struct *tun, u16 val)
366{
Greg Kurz25bd55bb2015-04-24 14:24:38 +0200367 return __cpu_to_virtio16(tun_is_little_endian(tun), val);
Michael S. Tsirkin56f0dcc2014-10-23 22:59:31 +0300368}
369
Jason Wang96442e422012-10-31 19:46:02 +0000370static inline u32 tun_hashfn(u32 rxhash)
371{
372 return rxhash & 0x3ff;
373}
374
375static struct tun_flow_entry *tun_flow_find(struct hlist_head *head, u32 rxhash)
376{
377 struct tun_flow_entry *e;
Jason Wang96442e422012-10-31 19:46:02 +0000378
Sasha Levinb67bfe02013-02-27 17:06:00 -0800379 hlist_for_each_entry_rcu(e, head, hash_link) {
Jason Wang96442e422012-10-31 19:46:02 +0000380 if (e->rxhash == rxhash)
381 return e;
382 }
383 return NULL;
384}
385
386static struct tun_flow_entry *tun_flow_create(struct tun_struct *tun,
387 struct hlist_head *head,
388 u32 rxhash, u16 queue_index)
389{
Eric Dumazet9fdc6be2012-12-21 07:17:21 +0000390 struct tun_flow_entry *e = kmalloc(sizeof(*e), GFP_ATOMIC);
391
Jason Wang96442e422012-10-31 19:46:02 +0000392 if (e) {
393 tun_debug(KERN_INFO, tun, "create flow: hash %u index %u\n",
394 rxhash, queue_index);
395 e->updated = jiffies;
396 e->rxhash = rxhash;
Tom Herbert9bc88932013-12-22 18:54:32 +0800397 e->rps_rxhash = 0;
Jason Wang96442e422012-10-31 19:46:02 +0000398 e->queue_index = queue_index;
399 e->tun = tun;
400 hlist_add_head_rcu(&e->hash_link, head);
Jason Wangb8732fb2013-01-23 03:59:13 +0000401 ++tun->flow_count;
Jason Wang96442e422012-10-31 19:46:02 +0000402 }
403 return e;
404}
405
Jason Wang96442e422012-10-31 19:46:02 +0000406static void tun_flow_delete(struct tun_struct *tun, struct tun_flow_entry *e)
407{
408 tun_debug(KERN_INFO, tun, "delete flow: hash %u index %u\n",
409 e->rxhash, e->queue_index);
410 hlist_del_rcu(&e->hash_link);
Eric Dumazet9fdc6be2012-12-21 07:17:21 +0000411 kfree_rcu(e, rcu);
Jason Wangb8732fb2013-01-23 03:59:13 +0000412 --tun->flow_count;
Jason Wang96442e422012-10-31 19:46:02 +0000413}
414
415static void tun_flow_flush(struct tun_struct *tun)
416{
417 int i;
418
419 spin_lock_bh(&tun->lock);
420 for (i = 0; i < TUN_NUM_FLOW_ENTRIES; i++) {
421 struct tun_flow_entry *e;
Sasha Levinb67bfe02013-02-27 17:06:00 -0800422 struct hlist_node *n;
Jason Wang96442e422012-10-31 19:46:02 +0000423
Sasha Levinb67bfe02013-02-27 17:06:00 -0800424 hlist_for_each_entry_safe(e, n, &tun->flows[i], hash_link)
Jason Wang96442e422012-10-31 19:46:02 +0000425 tun_flow_delete(tun, e);
426 }
427 spin_unlock_bh(&tun->lock);
428}
429
430static void tun_flow_delete_by_queue(struct tun_struct *tun, u16 queue_index)
431{
432 int i;
433
434 spin_lock_bh(&tun->lock);
435 for (i = 0; i < TUN_NUM_FLOW_ENTRIES; i++) {
436 struct tun_flow_entry *e;
Sasha Levinb67bfe02013-02-27 17:06:00 -0800437 struct hlist_node *n;
Jason Wang96442e422012-10-31 19:46:02 +0000438
Sasha Levinb67bfe02013-02-27 17:06:00 -0800439 hlist_for_each_entry_safe(e, n, &tun->flows[i], hash_link) {
Jason Wang96442e422012-10-31 19:46:02 +0000440 if (e->queue_index == queue_index)
441 tun_flow_delete(tun, e);
442 }
443 }
444 spin_unlock_bh(&tun->lock);
445}
446
Kees Cooke99e88a2017-10-16 14:43:17 -0700447static void tun_flow_cleanup(struct timer_list *t)
Jason Wang96442e422012-10-31 19:46:02 +0000448{
Kees Cooke99e88a2017-10-16 14:43:17 -0700449 struct tun_struct *tun = from_timer(tun, t, flow_gc_timer);
Jason Wang96442e422012-10-31 19:46:02 +0000450 unsigned long delay = tun->ageing_time;
451 unsigned long next_timer = jiffies + delay;
452 unsigned long count = 0;
453 int i;
454
455 tun_debug(KERN_INFO, tun, "tun_flow_cleanup\n");
456
Eric Dumazet7dbfb4e2017-10-20 11:29:55 -0700457 spin_lock(&tun->lock);
Jason Wang96442e422012-10-31 19:46:02 +0000458 for (i = 0; i < TUN_NUM_FLOW_ENTRIES; i++) {
459 struct tun_flow_entry *e;
Sasha Levinb67bfe02013-02-27 17:06:00 -0800460 struct hlist_node *n;
Jason Wang96442e422012-10-31 19:46:02 +0000461
Sasha Levinb67bfe02013-02-27 17:06:00 -0800462 hlist_for_each_entry_safe(e, n, &tun->flows[i], hash_link) {
Jason Wang96442e422012-10-31 19:46:02 +0000463 unsigned long this_timer;
Eric Dumazet81d98fa2017-10-20 11:29:56 -0700464
Jason Wang96442e422012-10-31 19:46:02 +0000465 this_timer = e->updated + delay;
Eric Dumazet81d98fa2017-10-20 11:29:56 -0700466 if (time_before_eq(this_timer, jiffies)) {
Jason Wang96442e422012-10-31 19:46:02 +0000467 tun_flow_delete(tun, e);
Eric Dumazet81d98fa2017-10-20 11:29:56 -0700468 continue;
469 }
470 count++;
471 if (time_before(this_timer, next_timer))
Jason Wang96442e422012-10-31 19:46:02 +0000472 next_timer = this_timer;
473 }
474 }
475
476 if (count)
477 mod_timer(&tun->flow_gc_timer, round_jiffies_up(next_timer));
Eric Dumazet7dbfb4e2017-10-20 11:29:55 -0700478 spin_unlock(&tun->lock);
Jason Wang96442e422012-10-31 19:46:02 +0000479}
480
Eric Dumazet49974422012-12-12 19:22:57 +0000481static void tun_flow_update(struct tun_struct *tun, u32 rxhash,
Jason Wang9e857222013-01-28 01:05:19 +0000482 struct tun_file *tfile)
Jason Wang96442e422012-10-31 19:46:02 +0000483{
484 struct hlist_head *head;
485 struct tun_flow_entry *e;
486 unsigned long delay = tun->ageing_time;
Jason Wang9e857222013-01-28 01:05:19 +0000487 u16 queue_index = tfile->queue_index;
Jason Wang96442e422012-10-31 19:46:02 +0000488
489 if (!rxhash)
490 return;
491 else
492 head = &tun->flows[tun_hashfn(rxhash)];
493
494 rcu_read_lock();
495
Jason Wang9e857222013-01-28 01:05:19 +0000496 /* We may get a very small possibility of OOO during switching, not
497 * worth to optimize.*/
498 if (tun->numqueues == 1 || tfile->detached)
Jason Wang96442e422012-10-31 19:46:02 +0000499 goto unlock;
500
501 e = tun_flow_find(head, rxhash);
502 if (likely(e)) {
503 /* TODO: keep queueing to old queue until it's empty? */
504 e->queue_index = queue_index;
505 e->updated = jiffies;
Tom Herbert9bc88932013-12-22 18:54:32 +0800506 sock_rps_record_flow_hash(e->rps_rxhash);
Jason Wang96442e422012-10-31 19:46:02 +0000507 } else {
508 spin_lock_bh(&tun->lock);
Jason Wangb8732fb2013-01-23 03:59:13 +0000509 if (!tun_flow_find(head, rxhash) &&
510 tun->flow_count < MAX_TAP_FLOWS)
Jason Wang96442e422012-10-31 19:46:02 +0000511 tun_flow_create(tun, head, rxhash, queue_index);
512
513 if (!timer_pending(&tun->flow_gc_timer))
514 mod_timer(&tun->flow_gc_timer,
515 round_jiffies_up(jiffies + delay));
516 spin_unlock_bh(&tun->lock);
517 }
518
519unlock:
520 rcu_read_unlock();
521}
522
Tom Herbert9bc88932013-12-22 18:54:32 +0800523/**
524 * Save the hash received in the stack receive path and update the
525 * flow_hash table accordingly.
526 */
527static inline void tun_flow_save_rps_rxhash(struct tun_flow_entry *e, u32 hash)
528{
Eric Dumazet567e4b72015-02-06 12:59:01 -0800529 if (unlikely(e->rps_rxhash != hash))
Tom Herbert9bc88932013-12-22 18:54:32 +0800530 e->rps_rxhash = hash;
Tom Herbert9bc88932013-12-22 18:54:32 +0800531}
532
Jason Wangc8d68e62012-10-31 19:46:00 +0000533/* We try to identify a flow through its rxhash first. The reason that
stephen hemminger92d4ea62013-12-05 20:42:58 -0800534 * we do not check rxq no. is because some cards(e.g 82599), chooses
Jason Wangc8d68e62012-10-31 19:46:00 +0000535 * the rxq based on the txq where the last packet of the flow comes. As
536 * the userspace application move between processors, we may get a
537 * different rxq no. here. If we could not get rxhash, then we would
538 * hope the rxq no. may help here.
539 */
Jason Wangf663dd92014-01-10 16:18:26 +0800540static u16 tun_select_queue(struct net_device *dev, struct sk_buff *skb,
Daniel Borkmann99932d42014-02-16 15:55:20 +0100541 void *accel_priv, select_queue_fallback_t fallback)
Jason Wangc8d68e62012-10-31 19:46:00 +0000542{
543 struct tun_struct *tun = netdev_priv(dev);
Jason Wang96442e422012-10-31 19:46:02 +0000544 struct tun_flow_entry *e;
Jason Wangc8d68e62012-10-31 19:46:00 +0000545 u32 txq = 0;
546 u32 numqueues = 0;
547
548 rcu_read_lock();
Mark Rutland6aa7de02017-10-23 14:07:29 -0700549 numqueues = READ_ONCE(tun->numqueues);
Jason Wangc8d68e62012-10-31 19:46:00 +0000550
Jason Wangfeec0842017-06-06 14:09:49 +0800551 txq = __skb_get_hash_symmetric(skb);
Jason Wangc8d68e62012-10-31 19:46:00 +0000552 if (txq) {
Jason Wang96442e422012-10-31 19:46:02 +0000553 e = tun_flow_find(&tun->flows[tun_hashfn(txq)], txq);
Tom Herbert9bc88932013-12-22 18:54:32 +0800554 if (e) {
Tom Herbert9bc88932013-12-22 18:54:32 +0800555 tun_flow_save_rps_rxhash(e, txq);
Zhi Yong Wufbe4d452014-01-02 13:24:28 +0800556 txq = e->queue_index;
Tom Herbert9bc88932013-12-22 18:54:32 +0800557 } else
Jason Wang96442e422012-10-31 19:46:02 +0000558 /* use multiply and shift instead of expensive divide */
559 txq = ((u64)txq * numqueues) >> 32;
Jason Wangc8d68e62012-10-31 19:46:00 +0000560 } else if (likely(skb_rx_queue_recorded(skb))) {
561 txq = skb_get_rx_queue(skb);
562 while (unlikely(txq >= numqueues))
563 txq -= numqueues;
564 }
565
566 rcu_read_unlock();
567 return txq;
568}
569
Jason Wangcde8b152012-10-31 19:46:01 +0000570static inline bool tun_not_capable(struct tun_struct *tun)
571{
572 const struct cred *cred = current_cred();
Eric W. Biedermanc260b772012-11-18 21:34:11 +0000573 struct net *net = dev_net(tun->dev);
Jason Wangcde8b152012-10-31 19:46:01 +0000574
575 return ((uid_valid(tun->owner) && !uid_eq(cred->euid, tun->owner)) ||
576 (gid_valid(tun->group) && !in_egroup_p(tun->group))) &&
Eric W. Biedermanc260b772012-11-18 21:34:11 +0000577 !ns_capable(net->user_ns, CAP_NET_ADMIN);
Jason Wangcde8b152012-10-31 19:46:01 +0000578}
579
Jason Wangc8d68e62012-10-31 19:46:00 +0000580static void tun_set_real_num_queues(struct tun_struct *tun)
581{
582 netif_set_real_num_tx_queues(tun->dev, tun->numqueues);
583 netif_set_real_num_rx_queues(tun->dev, tun->numqueues);
584}
585
Jason Wang4008e972012-12-13 23:53:30 +0000586static void tun_disable_queue(struct tun_struct *tun, struct tun_file *tfile)
587{
588 tfile->detached = tun;
589 list_add_tail(&tfile->next, &tun->disabled);
590 ++tun->numdisabled;
591}
592
Jason Wangd32649d2012-12-18 11:00:27 +0800593static struct tun_struct *tun_enable_queue(struct tun_file *tfile)
Jason Wang4008e972012-12-13 23:53:30 +0000594{
595 struct tun_struct *tun = tfile->detached;
596
597 tfile->detached = NULL;
598 list_del_init(&tfile->next);
599 --tun->numdisabled;
600 return tun;
601}
602
Jason Wang4bfb0512013-09-05 17:53:59 +0800603static void tun_queue_purge(struct tun_file *tfile)
604{
Jason Wang1576d982016-06-30 14:45:36 +0800605 struct sk_buff *skb;
606
607 while ((skb = skb_array_consume(&tfile->tx_array)) != NULL)
608 kfree_skb(skb);
609
Jason Wang5503fce2017-01-18 15:02:03 +0800610 skb_queue_purge(&tfile->sk.sk_write_queue);
Jason Wang4bfb0512013-09-05 17:53:59 +0800611 skb_queue_purge(&tfile->sk.sk_error_queue);
612}
613
Jason Wangc8d68e62012-10-31 19:46:00 +0000614static void __tun_detach(struct tun_file *tfile, bool clean)
615{
616 struct tun_file *ntfile;
617 struct tun_struct *tun;
Jason Wangc8d68e62012-10-31 19:46:00 +0000618
Jason Wangb8deabd2013-01-11 16:59:32 +0000619 tun = rtnl_dereference(tfile->tun);
620
Petar Penkov94317092017-09-22 13:49:14 -0700621 if (tun && clean) {
622 tun_napi_disable(tun, tfile);
623 tun_napi_del(tun, tfile);
624 }
625
Jason Wang9e857222013-01-28 01:05:19 +0000626 if (tun && !tfile->detached) {
Jason Wangc8d68e62012-10-31 19:46:00 +0000627 u16 index = tfile->queue_index;
628 BUG_ON(index >= tun->numqueues);
Jason Wangc8d68e62012-10-31 19:46:00 +0000629
630 rcu_assign_pointer(tun->tfiles[index],
631 tun->tfiles[tun->numqueues - 1]);
Jason Wangb8deabd2013-01-11 16:59:32 +0000632 ntfile = rtnl_dereference(tun->tfiles[index]);
Jason Wangc8d68e62012-10-31 19:46:00 +0000633 ntfile->queue_index = index;
634
635 --tun->numqueues;
Jason Wang9e857222013-01-28 01:05:19 +0000636 if (clean) {
Monam Agarwalc9566742014-03-24 00:02:32 +0530637 RCU_INIT_POINTER(tfile->tun, NULL);
Jason Wang4008e972012-12-13 23:53:30 +0000638 sock_put(&tfile->sk);
Jason Wang9e857222013-01-28 01:05:19 +0000639 } else
Jason Wang4008e972012-12-13 23:53:30 +0000640 tun_disable_queue(tun, tfile);
Jason Wangc8d68e62012-10-31 19:46:00 +0000641
642 synchronize_net();
Jason Wang96442e422012-10-31 19:46:02 +0000643 tun_flow_delete_by_queue(tun, tun->numqueues + 1);
Jason Wangc8d68e62012-10-31 19:46:00 +0000644 /* Drop read queue */
Jason Wang4bfb0512013-09-05 17:53:59 +0800645 tun_queue_purge(tfile);
Jason Wangc8d68e62012-10-31 19:46:00 +0000646 tun_set_real_num_queues(tun);
Jason Wangdd38bd82013-01-11 16:59:34 +0000647 } else if (tfile->detached && clean) {
Jason Wang4008e972012-12-13 23:53:30 +0000648 tun = tun_enable_queue(tfile);
Jason Wangdd38bd82013-01-11 16:59:34 +0000649 sock_put(&tfile->sk);
650 }
Jason Wangc8d68e62012-10-31 19:46:00 +0000651
652 if (clean) {
Michael S. Tsirkinaf668b32013-01-28 00:38:02 +0000653 if (tun && tun->numqueues == 0 && tun->numdisabled == 0) {
654 netif_carrier_off(tun->dev);
655
Michael S. Tsirkin40630b82014-11-19 15:17:31 +0200656 if (!(tun->flags & IFF_PERSIST) &&
Michael S. Tsirkinaf668b32013-01-28 00:38:02 +0000657 tun->dev->reg_state == NETREG_REGISTERED)
Jason Wang4008e972012-12-13 23:53:30 +0000658 unregister_netdevice(tun->dev);
Michael S. Tsirkinaf668b32013-01-28 00:38:02 +0000659 }
Jason Wang1576d982016-06-30 14:45:36 +0800660 if (tun)
661 skb_array_cleanup(&tfile->tx_array);
Eric W. Biederman140e807da2015-05-08 21:07:08 -0500662 sock_put(&tfile->sk);
Jason Wangc8d68e62012-10-31 19:46:00 +0000663 }
664}
665
666static void tun_detach(struct tun_file *tfile, bool clean)
667{
668 rtnl_lock();
669 __tun_detach(tfile, clean);
670 rtnl_unlock();
671}
672
673static void tun_detach_all(struct net_device *dev)
674{
675 struct tun_struct *tun = netdev_priv(dev);
Jason Wang761876c2017-08-11 19:41:18 +0800676 struct bpf_prog *xdp_prog = rtnl_dereference(tun->xdp_prog);
Jason Wang4008e972012-12-13 23:53:30 +0000677 struct tun_file *tfile, *tmp;
Jason Wangc8d68e62012-10-31 19:46:00 +0000678 int i, n = tun->numqueues;
679
680 for (i = 0; i < n; i++) {
Jason Wangb8deabd2013-01-11 16:59:32 +0000681 tfile = rtnl_dereference(tun->tfiles[i]);
Jason Wangc8d68e62012-10-31 19:46:00 +0000682 BUG_ON(!tfile);
Petar Penkov94317092017-09-22 13:49:14 -0700683 tun_napi_disable(tun, tfile);
Jason Wangaddf8fc2016-05-19 13:36:51 +0800684 tfile->socket.sk->sk_shutdown = RCV_SHUTDOWN;
Xi Wang9e641bd2014-05-16 15:11:48 -0700685 tfile->socket.sk->sk_data_ready(tfile->socket.sk);
Monam Agarwalc9566742014-03-24 00:02:32 +0530686 RCU_INIT_POINTER(tfile->tun, NULL);
Jason Wangc8d68e62012-10-31 19:46:00 +0000687 --tun->numqueues;
688 }
Jason Wang9e857222013-01-28 01:05:19 +0000689 list_for_each_entry(tfile, &tun->disabled, next) {
Jason Wangaddf8fc2016-05-19 13:36:51 +0800690 tfile->socket.sk->sk_shutdown = RCV_SHUTDOWN;
Xi Wang9e641bd2014-05-16 15:11:48 -0700691 tfile->socket.sk->sk_data_ready(tfile->socket.sk);
Monam Agarwalc9566742014-03-24 00:02:32 +0530692 RCU_INIT_POINTER(tfile->tun, NULL);
Jason Wang9e857222013-01-28 01:05:19 +0000693 }
Jason Wangc8d68e62012-10-31 19:46:00 +0000694 BUG_ON(tun->numqueues != 0);
695
696 synchronize_net();
697 for (i = 0; i < n; i++) {
Jason Wangb8deabd2013-01-11 16:59:32 +0000698 tfile = rtnl_dereference(tun->tfiles[i]);
Petar Penkov94317092017-09-22 13:49:14 -0700699 tun_napi_del(tun, tfile);
Jason Wangc8d68e62012-10-31 19:46:00 +0000700 /* Drop read queue */
Jason Wang4bfb0512013-09-05 17:53:59 +0800701 tun_queue_purge(tfile);
Jason Wangc8d68e62012-10-31 19:46:00 +0000702 sock_put(&tfile->sk);
703 }
Jason Wang4008e972012-12-13 23:53:30 +0000704 list_for_each_entry_safe(tfile, tmp, &tun->disabled, next) {
705 tun_enable_queue(tfile);
Jason Wang4bfb0512013-09-05 17:53:59 +0800706 tun_queue_purge(tfile);
Jason Wang4008e972012-12-13 23:53:30 +0000707 sock_put(&tfile->sk);
708 }
709 BUG_ON(tun->numdisabled != 0);
Jason Wangdd38bd82013-01-11 16:59:34 +0000710
Jason Wang761876c2017-08-11 19:41:18 +0800711 if (xdp_prog)
712 bpf_prog_put(xdp_prog);
713
Michael S. Tsirkin40630b82014-11-19 15:17:31 +0200714 if (tun->flags & IFF_PERSIST)
Jason Wangdd38bd82013-01-11 16:59:34 +0000715 module_put(THIS_MODULE);
Jason Wangc8d68e62012-10-31 19:46:00 +0000716}
717
Petar Penkov94317092017-09-22 13:49:14 -0700718static int tun_attach(struct tun_struct *tun, struct file *file,
719 bool skip_filter, bool napi)
Eric W. Biedermana7385ba2009-01-20 10:57:48 +0000720{
Eric W. Biederman631ab462009-01-20 11:00:40 +0000721 struct tun_file *tfile = file->private_data;
Jason Wang1576d982016-06-30 14:45:36 +0800722 struct net_device *dev = tun->dev;
Eric W. Biederman38231b72009-01-20 11:02:28 +0000723 int err;
Eric W. Biedermana7385ba2009-01-20 10:57:48 +0000724
Paul Moore5dbbaf22013-01-14 07:12:19 +0000725 err = security_tun_dev_attach(tfile->socket.sk, tun->security);
726 if (err < 0)
727 goto out;
728
Eric W. Biederman38231b72009-01-20 11:02:28 +0000729 err = -EINVAL;
Jason Wang9e857222013-01-28 01:05:19 +0000730 if (rtnl_dereference(tfile->tun) && !tfile->detached)
Eric W. Biederman38231b72009-01-20 11:02:28 +0000731 goto out;
732
733 err = -EBUSY;
Michael S. Tsirkin40630b82014-11-19 15:17:31 +0200734 if (!(tun->flags & IFF_MULTI_QUEUE) && tun->numqueues == 1)
Jason Wangc8d68e62012-10-31 19:46:00 +0000735 goto out;
736
737 err = -E2BIG;
Jason Wang4008e972012-12-13 23:53:30 +0000738 if (!tfile->detached &&
739 tun->numqueues + tun->numdisabled == MAX_TAP_QUEUES)
Eric W. Biederman38231b72009-01-20 11:02:28 +0000740 goto out;
741
742 err = 0;
Jason Wang54f968d2012-10-31 19:45:57 +0000743
stephen hemminger92d4ea62013-12-05 20:42:58 -0800744 /* Re-attach the filter to persist device */
Pavel Emelyanov849c9b62013-08-21 14:32:21 +0400745 if (!skip_filter && (tun->filter_attached == true)) {
Hannes Frederic Sowa8ced4252016-04-05 17:10:16 +0200746 lock_sock(tfile->socket.sk);
747 err = sk_attach_filter(&tun->fprog, tfile->socket.sk);
748 release_sock(tfile->socket.sk);
Jason Wang54f968d2012-10-31 19:45:57 +0000749 if (!err)
750 goto out;
751 }
Jason Wang1576d982016-06-30 14:45:36 +0800752
753 if (!tfile->detached &&
754 skb_array_init(&tfile->tx_array, dev->tx_queue_len, GFP_KERNEL)) {
755 err = -ENOMEM;
756 goto out;
757 }
758
Jason Wangc8d68e62012-10-31 19:46:00 +0000759 tfile->queue_index = tun->numqueues;
Jason Wangaddf8fc2016-05-19 13:36:51 +0800760 tfile->socket.sk->sk_shutdown &= ~RCV_SHUTDOWN;
Jason Wang6e914fc2012-10-31 19:45:58 +0000761 rcu_assign_pointer(tfile->tun, tun);
Jason Wangc8d68e62012-10-31 19:46:00 +0000762 rcu_assign_pointer(tun->tfiles[tun->numqueues], tfile);
Jason Wangc8d68e62012-10-31 19:46:00 +0000763 tun->numqueues++;
764
Petar Penkov94317092017-09-22 13:49:14 -0700765 if (tfile->detached) {
Jason Wang4008e972012-12-13 23:53:30 +0000766 tun_enable_queue(tfile);
Petar Penkov94317092017-09-22 13:49:14 -0700767 } else {
Jason Wang4008e972012-12-13 23:53:30 +0000768 sock_hold(&tfile->sk);
Petar Penkov94317092017-09-22 13:49:14 -0700769 tun_napi_init(tun, tfile, napi);
770 }
Jason Wang4008e972012-12-13 23:53:30 +0000771
Jason Wangc8d68e62012-10-31 19:46:00 +0000772 tun_set_real_num_queues(tun);
773
Jason Wangc8d68e62012-10-31 19:46:00 +0000774 /* device is allowed to go away first, so no need to hold extra
775 * refcnt.
776 */
Eric W. Biedermana7385ba2009-01-20 10:57:48 +0000777
Eric W. Biederman38231b72009-01-20 11:02:28 +0000778out:
Eric W. Biederman38231b72009-01-20 11:02:28 +0000779 return err;
Eric W. Biedermana7385ba2009-01-20 10:57:48 +0000780}
781
yuan linyu9484dc72017-09-23 22:36:52 +0800782static struct tun_struct *tun_get(struct tun_file *tfile)
Eric W. Biederman631ab462009-01-20 11:00:40 +0000783{
Jason Wang6e914fc2012-10-31 19:45:58 +0000784 struct tun_struct *tun;
Eric W. Biedermanc70f1822009-01-20 11:07:17 +0000785
Jason Wang6e914fc2012-10-31 19:45:58 +0000786 rcu_read_lock();
787 tun = rcu_dereference(tfile->tun);
788 if (tun)
789 dev_hold(tun->dev);
790 rcu_read_unlock();
Eric W. Biedermanc70f1822009-01-20 11:07:17 +0000791
792 return tun;
Eric W. Biederman631ab462009-01-20 11:00:40 +0000793}
794
Eric W. Biederman631ab462009-01-20 11:00:40 +0000795static void tun_put(struct tun_struct *tun)
796{
Jason Wang6e914fc2012-10-31 19:45:58 +0000797 dev_put(tun->dev);
Eric W. Biederman631ab462009-01-20 11:00:40 +0000798}
799
Joe Perches6b8a66e2011-03-02 07:18:10 +0000800/* TAP filtering */
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -0700801static void addr_hash_set(u32 *mask, const u8 *addr)
802{
803 int n = ether_crc(ETH_ALEN, addr) >> 26;
804 mask[n >> 5] |= (1 << (n & 31));
805}
806
807static unsigned int addr_hash_test(const u32 *mask, const u8 *addr)
808{
809 int n = ether_crc(ETH_ALEN, addr) >> 26;
810 return mask[n >> 5] & (1 << (n & 31));
811}
812
813static int update_filter(struct tap_filter *filter, void __user *arg)
814{
815 struct { u8 u[ETH_ALEN]; } *addr;
816 struct tun_filter uf;
817 int err, alen, n, nexact;
818
819 if (copy_from_user(&uf, arg, sizeof(uf)))
820 return -EFAULT;
821
822 if (!uf.count) {
823 /* Disabled */
824 filter->count = 0;
825 return 0;
826 }
827
828 alen = ETH_ALEN * uf.count;
Markus Elfring28e81902016-08-20 08:54:15 +0200829 addr = memdup_user(arg + sizeof(uf), alen);
830 if (IS_ERR(addr))
831 return PTR_ERR(addr);
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -0700832
833 /* The filter is updated without holding any locks. Which is
834 * perfectly safe. We disable it first and in the worst
835 * case we'll accept a few undesired packets. */
836 filter->count = 0;
837 wmb();
838
839 /* Use first set of addresses as an exact filter */
840 for (n = 0; n < uf.count && n < FLT_EXACT_COUNT; n++)
841 memcpy(filter->addr[n], addr[n].u, ETH_ALEN);
842
843 nexact = n;
844
Alex Williamsoncfbf84f2009-02-08 17:49:17 -0800845 /* Remaining multicast addresses are hashed,
846 * unicast will leave the filter disabled. */
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -0700847 memset(filter->mask, 0, sizeof(filter->mask));
Alex Williamsoncfbf84f2009-02-08 17:49:17 -0800848 for (; n < uf.count; n++) {
849 if (!is_multicast_ether_addr(addr[n].u)) {
850 err = 0; /* no filter */
Markus Elfring3b8d2a62016-08-20 09:00:34 +0200851 goto free_addr;
Alex Williamsoncfbf84f2009-02-08 17:49:17 -0800852 }
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -0700853 addr_hash_set(filter->mask, addr[n].u);
Alex Williamsoncfbf84f2009-02-08 17:49:17 -0800854 }
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -0700855
856 /* For ALLMULTI just set the mask to all ones.
857 * This overrides the mask populated above. */
858 if ((uf.flags & TUN_FLT_ALLMULTI))
859 memset(filter->mask, ~0, sizeof(filter->mask));
860
861 /* Now enable the filter */
862 wmb();
863 filter->count = nexact;
864
865 /* Return the number of exact filters */
866 err = nexact;
Markus Elfring3b8d2a62016-08-20 09:00:34 +0200867free_addr:
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -0700868 kfree(addr);
869 return err;
870}
871
872/* Returns: 0 - drop, !=0 - accept */
873static int run_filter(struct tap_filter *filter, const struct sk_buff *skb)
874{
875 /* Cannot use eth_hdr(skb) here because skb_mac_hdr() is incorrect
876 * at this point. */
877 struct ethhdr *eh = (struct ethhdr *) skb->data;
878 int i;
879
880 /* Exact match */
881 for (i = 0; i < filter->count; i++)
Joe Perches2e42e472012-05-09 17:17:46 +0000882 if (ether_addr_equal(eh->h_dest, filter->addr[i]))
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -0700883 return 1;
884
885 /* Inexact match (multicast only) */
886 if (is_multicast_ether_addr(eh->h_dest))
887 return addr_hash_test(filter->mask, eh->h_dest);
888
889 return 0;
890}
891
892/*
893 * Checks whether the packet is accepted or not.
894 * Returns: 0 - drop, !=0 - accept
895 */
896static int check_filter(struct tap_filter *filter, const struct sk_buff *skb)
897{
898 if (!filter->count)
899 return 1;
900
901 return run_filter(filter, skb);
902}
903
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904/* Network device part of the driver */
905
Jeff Garzik7282d492006-09-13 14:30:00 -0400906static const struct ethtool_ops tun_ethtool_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907
Eric W. Biedermanc70f1822009-01-20 11:07:17 +0000908/* Net device detach from fd. */
909static void tun_net_uninit(struct net_device *dev)
910{
Jason Wangc8d68e62012-10-31 19:46:00 +0000911 tun_detach_all(dev);
Eric W. Biedermanc70f1822009-01-20 11:07:17 +0000912}
913
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914/* Net device open. */
915static int tun_net_open(struct net_device *dev)
916{
Hannes Frederic Sowab20e2d52017-03-13 00:00:26 +0100917 struct tun_struct *tun = netdev_priv(dev);
918 int i;
919
Jason Wangc8d68e62012-10-31 19:46:00 +0000920 netif_tx_start_all_queues(dev);
Hannes Frederic Sowab20e2d52017-03-13 00:00:26 +0100921
922 for (i = 0; i < tun->numqueues; i++) {
923 struct tun_file *tfile;
924
925 tfile = rtnl_dereference(tun->tfiles[i]);
926 tfile->socket.sk->sk_write_space(tfile->socket.sk);
927 }
928
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929 return 0;
930}
931
932/* Net device close. */
933static int tun_net_close(struct net_device *dev)
934{
Jason Wangc8d68e62012-10-31 19:46:00 +0000935 netif_tx_stop_all_queues(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936 return 0;
937}
938
939/* Net device start xmit */
Stephen Hemminger424efe92009-08-31 19:50:51 +0000940static netdev_tx_t tun_net_xmit(struct sk_buff *skb, struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941{
942 struct tun_struct *tun = netdev_priv(dev);
Jason Wangc8d68e62012-10-31 19:46:00 +0000943 int txq = skb->queue_mapping;
Jason Wang6e914fc2012-10-31 19:45:58 +0000944 struct tun_file *tfile;
Dominic Curranfa358642014-01-22 03:03:23 +0000945 u32 numqueues = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946
Jason Wang6e914fc2012-10-31 19:45:58 +0000947 rcu_read_lock();
Jason Wangc8d68e62012-10-31 19:46:00 +0000948 tfile = rcu_dereference(tun->tfiles[txq]);
Mark Rutland6aa7de02017-10-23 14:07:29 -0700949 numqueues = READ_ONCE(tun->numqueues);
Jason Wangc8d68e62012-10-31 19:46:00 +0000950
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951 /* Drop packet if interface is not attached */
Dominic Curranfa358642014-01-22 03:03:23 +0000952 if (txq >= numqueues)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953 goto drop;
954
Jason Wang3df97ba2016-04-25 23:13:42 -0400955#ifdef CONFIG_RPS
956 if (numqueues == 1 && static_key_false(&rps_needed)) {
Tom Herbert9bc88932013-12-22 18:54:32 +0800957 /* Select queue was not called for the skbuff, so we extract the
958 * RPS hash and save it into the flow_table here.
959 */
960 __u32 rxhash;
961
Jason Wangfeec0842017-06-06 14:09:49 +0800962 rxhash = __skb_get_hash_symmetric(skb);
Tom Herbert9bc88932013-12-22 18:54:32 +0800963 if (rxhash) {
964 struct tun_flow_entry *e;
965 e = tun_flow_find(&tun->flows[tun_hashfn(rxhash)],
966 rxhash);
967 if (e)
968 tun_flow_save_rps_rxhash(e, rxhash);
969 }
970 }
Jason Wang3df97ba2016-04-25 23:13:42 -0400971#endif
Tom Herbert9bc88932013-12-22 18:54:32 +0800972
Jason Wang6e914fc2012-10-31 19:45:58 +0000973 tun_debug(KERN_INFO, tun, "tun_net_xmit %d\n", skb->len);
974
Jason Wangc8d68e62012-10-31 19:46:00 +0000975 BUG_ON(!tfile);
976
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -0700977 /* Drop if the filter does not like it.
978 * This is a noop if the filter is disabled.
979 * Filter can be enabled only for the TAP devices. */
980 if (!check_filter(&tun->txflt, skb))
981 goto drop;
982
Jason Wang54f968d2012-10-31 19:45:57 +0000983 if (tfile->socket.sk->sk_filter &&
984 sk_filter(tfile->socket.sk, skb))
Michael S. Tsirkin99405162010-02-14 01:01:10 +0000985 goto drop;
986
Willem de Bruijn1f8b9772017-08-03 16:29:41 -0400987 if (unlikely(skb_orphan_frags_rx(skb, GFP_ATOMIC)))
Jason Wang7bf66302013-09-05 17:54:00 +0800988 goto drop;
989
Soheil Hassas Yeganeh7b996242016-08-23 18:22:33 -0400990 skb_tx_timestamp(skb);
Richard Cochraneda29772013-07-19 19:40:10 +0200991
Michael S. Tsirkin0110d6f2010-04-13 04:59:44 +0000992 /* Orphan the skb - required as we might hang on to it
Jason Wang7bf66302013-09-05 17:54:00 +0800993 * for indefinite time.
994 */
Michael S. Tsirkin0110d6f2010-04-13 04:59:44 +0000995 skb_orphan(skb);
996
Eric Dumazetf8af75f2013-03-06 11:02:37 +0000997 nf_reset(skb);
998
Jason Wang1576d982016-06-30 14:45:36 +0800999 if (skb_array_produce(&tfile->tx_array, skb))
1000 goto drop;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001
1002 /* Notify and wake up reader process */
Jason Wang54f968d2012-10-31 19:45:57 +00001003 if (tfile->flags & TUN_FASYNC)
1004 kill_fasync(&tfile->fasync, SIGIO, POLL_IN);
Xi Wang9e641bd2014-05-16 15:11:48 -07001005 tfile->socket.sk->sk_data_ready(tfile->socket.sk);
Jason Wang6e914fc2012-10-31 19:45:58 +00001006
1007 rcu_read_unlock();
Patrick McHardy6ed10652009-06-23 06:03:08 +00001008 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009
1010drop:
Paolo Abeni608b9972016-04-13 10:52:20 +02001011 this_cpu_inc(tun->pcpu_stats->tx_dropped);
Michael S. Tsirkin149d36f2012-11-01 09:16:32 +00001012 skb_tx_error(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013 kfree_skb(skb);
Jason Wang6e914fc2012-10-31 19:45:58 +00001014 rcu_read_unlock();
Jason Wangbaeabab2014-11-18 13:20:41 +08001015 return NET_XMIT_DROP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016}
1017
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -07001018static void tun_net_mclist(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019{
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -07001020 /*
1021 * This callback is supposed to deal with mc filter in
1022 * _rx_ path and has nothing to do with the _tx_ path.
1023 * In rx path we always accept everything userspace gives us.
1024 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025}
1026
Michał Mirosławc8f44af2011-11-15 15:29:55 +00001027static netdev_features_t tun_net_fix_features(struct net_device *dev,
1028 netdev_features_t features)
Michał Mirosław88255372011-04-19 06:13:10 +00001029{
1030 struct tun_struct *tun = netdev_priv(dev);
1031
1032 return (features & tun->set_features) | (features & ~TUN_USER_FEATURES);
1033}
Neil Hormanbebd0972011-06-15 05:25:01 +00001034#ifdef CONFIG_NET_POLL_CONTROLLER
1035static void tun_poll_controller(struct net_device *dev)
1036{
1037 /*
1038 * Tun only receives frames when:
1039 * 1) the char device endpoint gets data from user space
1040 * 2) the tun socket gets a sendmsg call from user space
Petar Penkov94317092017-09-22 13:49:14 -07001041 * If NAPI is not enabled, since both of those are synchronous
1042 * operations, we are guaranteed never to have pending data when we poll
1043 * for it so there is nothing to do here but return.
Neil Hormanbebd0972011-06-15 05:25:01 +00001044 * We need this though so netpoll recognizes us as an interface that
1045 * supports polling, which enables bridge devices in virt setups to
1046 * still use netconsole
Petar Penkov94317092017-09-22 13:49:14 -07001047 * If NAPI is enabled, however, we need to schedule polling for all
Petar Penkov90e33d42017-09-22 13:49:15 -07001048 * queues unless we are using napi_gro_frags(), which we call in
1049 * process context and not in NAPI context.
Neil Hormanbebd0972011-06-15 05:25:01 +00001050 */
Petar Penkov94317092017-09-22 13:49:14 -07001051 struct tun_struct *tun = netdev_priv(dev);
1052
1053 if (tun->flags & IFF_NAPI) {
1054 struct tun_file *tfile;
1055 int i;
1056
Petar Penkov90e33d42017-09-22 13:49:15 -07001057 if (tun_napi_frags_enabled(tun))
1058 return;
1059
Petar Penkov94317092017-09-22 13:49:14 -07001060 rcu_read_lock();
1061 for (i = 0; i < tun->numqueues; i++) {
1062 tfile = rcu_dereference(tun->tfiles[i]);
Eric Dumazetaec72f32017-10-18 12:12:09 -07001063 if (tfile->napi_enabled)
1064 napi_schedule(&tfile->napi);
Petar Penkov94317092017-09-22 13:49:14 -07001065 }
1066 rcu_read_unlock();
1067 }
Neil Hormanbebd0972011-06-15 05:25:01 +00001068 return;
1069}
1070#endif
Paolo Abenieaea34b2016-02-26 10:45:40 +01001071
1072static void tun_set_headroom(struct net_device *dev, int new_hr)
1073{
1074 struct tun_struct *tun = netdev_priv(dev);
1075
1076 if (new_hr < NET_SKB_PAD)
1077 new_hr = NET_SKB_PAD;
1078
1079 tun->align = new_hr;
1080}
1081
stephen hemmingerbc1f4472017-01-06 19:12:52 -08001082static void
Paolo Abeni608b9972016-04-13 10:52:20 +02001083tun_net_get_stats64(struct net_device *dev, struct rtnl_link_stats64 *stats)
1084{
1085 u32 rx_dropped = 0, tx_dropped = 0, rx_frame_errors = 0;
1086 struct tun_struct *tun = netdev_priv(dev);
1087 struct tun_pcpu_stats *p;
1088 int i;
1089
1090 for_each_possible_cpu(i) {
1091 u64 rxpackets, rxbytes, txpackets, txbytes;
1092 unsigned int start;
1093
1094 p = per_cpu_ptr(tun->pcpu_stats, i);
1095 do {
1096 start = u64_stats_fetch_begin(&p->syncp);
1097 rxpackets = p->rx_packets;
1098 rxbytes = p->rx_bytes;
1099 txpackets = p->tx_packets;
1100 txbytes = p->tx_bytes;
1101 } while (u64_stats_fetch_retry(&p->syncp, start));
1102
1103 stats->rx_packets += rxpackets;
1104 stats->rx_bytes += rxbytes;
1105 stats->tx_packets += txpackets;
1106 stats->tx_bytes += txbytes;
1107
1108 /* u32 counters */
1109 rx_dropped += p->rx_dropped;
1110 rx_frame_errors += p->rx_frame_errors;
1111 tx_dropped += p->tx_dropped;
1112 }
1113 stats->rx_dropped = rx_dropped;
1114 stats->rx_frame_errors = rx_frame_errors;
1115 stats->tx_dropped = tx_dropped;
Paolo Abeni608b9972016-04-13 10:52:20 +02001116}
1117
Jason Wang761876c2017-08-11 19:41:18 +08001118static int tun_xdp_set(struct net_device *dev, struct bpf_prog *prog,
1119 struct netlink_ext_ack *extack)
1120{
1121 struct tun_struct *tun = netdev_priv(dev);
1122 struct bpf_prog *old_prog;
1123
1124 old_prog = rtnl_dereference(tun->xdp_prog);
1125 rcu_assign_pointer(tun->xdp_prog, prog);
1126 if (old_prog)
1127 bpf_prog_put(old_prog);
1128
1129 return 0;
1130}
1131
1132static u32 tun_xdp_query(struct net_device *dev)
1133{
1134 struct tun_struct *tun = netdev_priv(dev);
1135 const struct bpf_prog *xdp_prog;
1136
1137 xdp_prog = rtnl_dereference(tun->xdp_prog);
1138 if (xdp_prog)
1139 return xdp_prog->aux->id;
1140
1141 return 0;
1142}
1143
Jakub Kicinskif4e63522017-11-03 13:56:16 -07001144static int tun_xdp(struct net_device *dev, struct netdev_bpf *xdp)
Jason Wang761876c2017-08-11 19:41:18 +08001145{
1146 switch (xdp->command) {
1147 case XDP_SETUP_PROG:
1148 return tun_xdp_set(dev, xdp->prog, xdp->extack);
1149 case XDP_QUERY_PROG:
1150 xdp->prog_id = tun_xdp_query(dev);
1151 xdp->prog_attached = !!xdp->prog_id;
1152 return 0;
1153 default:
1154 return -EINVAL;
1155 }
1156}
1157
Stephen Hemminger758e43b2008-11-19 22:10:37 -08001158static const struct net_device_ops tun_netdev_ops = {
Eric W. Biedermanc70f1822009-01-20 11:07:17 +00001159 .ndo_uninit = tun_net_uninit,
Stephen Hemminger758e43b2008-11-19 22:10:37 -08001160 .ndo_open = tun_net_open,
1161 .ndo_stop = tun_net_close,
Stephen Hemminger00829822008-11-20 20:14:53 -08001162 .ndo_start_xmit = tun_net_xmit,
Michał Mirosław88255372011-04-19 06:13:10 +00001163 .ndo_fix_features = tun_net_fix_features,
Jason Wangc8d68e62012-10-31 19:46:00 +00001164 .ndo_select_queue = tun_select_queue,
Neil Hormanbebd0972011-06-15 05:25:01 +00001165#ifdef CONFIG_NET_POLL_CONTROLLER
1166 .ndo_poll_controller = tun_poll_controller,
1167#endif
Paolo Abenieaea34b2016-02-26 10:45:40 +01001168 .ndo_set_rx_headroom = tun_set_headroom,
Paolo Abeni608b9972016-04-13 10:52:20 +02001169 .ndo_get_stats64 = tun_net_get_stats64,
Stephen Hemminger758e43b2008-11-19 22:10:37 -08001170};
1171
1172static const struct net_device_ops tap_netdev_ops = {
Eric W. Biedermanc70f1822009-01-20 11:07:17 +00001173 .ndo_uninit = tun_net_uninit,
Stephen Hemminger758e43b2008-11-19 22:10:37 -08001174 .ndo_open = tun_net_open,
1175 .ndo_stop = tun_net_close,
Stephen Hemminger00829822008-11-20 20:14:53 -08001176 .ndo_start_xmit = tun_net_xmit,
Michał Mirosław88255372011-04-19 06:13:10 +00001177 .ndo_fix_features = tun_net_fix_features,
Jiri Pirkoafc4b132011-08-16 06:29:01 +00001178 .ndo_set_rx_mode = tun_net_mclist,
Stephen Hemminger758e43b2008-11-19 22:10:37 -08001179 .ndo_set_mac_address = eth_mac_addr,
1180 .ndo_validate_addr = eth_validate_addr,
Jason Wangc8d68e62012-10-31 19:46:00 +00001181 .ndo_select_queue = tun_select_queue,
Neil Hormanbebd0972011-06-15 05:25:01 +00001182#ifdef CONFIG_NET_POLL_CONTROLLER
1183 .ndo_poll_controller = tun_poll_controller,
1184#endif
Toshiaki Makita5e527962015-07-31 15:03:27 +09001185 .ndo_features_check = passthru_features_check,
Paolo Abenieaea34b2016-02-26 10:45:40 +01001186 .ndo_set_rx_headroom = tun_set_headroom,
Paolo Abeni608b9972016-04-13 10:52:20 +02001187 .ndo_get_stats64 = tun_net_get_stats64,
Jakub Kicinskif4e63522017-11-03 13:56:16 -07001188 .ndo_bpf = tun_xdp,
Stephen Hemminger758e43b2008-11-19 22:10:37 -08001189};
1190
Pavel Emelyanov944a1372013-06-11 17:01:08 +04001191static void tun_flow_init(struct tun_struct *tun)
Jason Wang96442e422012-10-31 19:46:02 +00001192{
1193 int i;
1194
Jason Wang96442e422012-10-31 19:46:02 +00001195 for (i = 0; i < TUN_NUM_FLOW_ENTRIES; i++)
1196 INIT_HLIST_HEAD(&tun->flows[i]);
1197
1198 tun->ageing_time = TUN_FLOW_EXPIRE;
Kees Cooke99e88a2017-10-16 14:43:17 -07001199 timer_setup(&tun->flow_gc_timer, tun_flow_cleanup, 0);
1200 mod_timer(&tun->flow_gc_timer,
1201 round_jiffies_up(jiffies + tun->ageing_time));
Jason Wang96442e422012-10-31 19:46:02 +00001202}
1203
1204static void tun_flow_uninit(struct tun_struct *tun)
1205{
1206 del_timer_sync(&tun->flow_gc_timer);
1207 tun_flow_flush(tun);
Jason Wang96442e422012-10-31 19:46:02 +00001208}
1209
Jarod Wilson91572082016-10-20 13:55:20 -04001210#define MIN_MTU 68
1211#define MAX_MTU 65535
1212
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213/* Initialize net device. */
1214static void tun_net_init(struct net_device *dev)
1215{
1216 struct tun_struct *tun = netdev_priv(dev);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001217
Linus Torvalds1da177e2005-04-16 15:20:36 -07001218 switch (tun->flags & TUN_TYPE_MASK) {
Michael S. Tsirkin40630b82014-11-19 15:17:31 +02001219 case IFF_TUN:
Stephen Hemminger758e43b2008-11-19 22:10:37 -08001220 dev->netdev_ops = &tun_netdev_ops;
1221
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222 /* Point-to-Point TUN Device */
1223 dev->hard_header_len = 0;
1224 dev->addr_len = 0;
1225 dev->mtu = 1500;
1226
1227 /* Zero header length */
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001228 dev->type = ARPHRD_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229 dev->flags = IFF_POINTOPOINT | IFF_NOARP | IFF_MULTICAST;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230 break;
1231
Michael S. Tsirkin40630b82014-11-19 15:17:31 +02001232 case IFF_TAP:
Kusanagi Kouichi7a0a9602008-12-29 18:23:28 -08001233 dev->netdev_ops = &tap_netdev_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234 /* Ethernet TAP Device */
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -07001235 ether_setup(dev);
Neil Horman550fd082011-07-26 06:05:38 +00001236 dev->priv_flags &= ~IFF_TX_SKB_SHARING;
stephen hemmingera6768472012-12-10 15:16:00 +00001237 dev->priv_flags |= IFF_LIVE_ADDR_CHANGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238
Danny Kukawkaf2cedb62012-02-15 06:45:39 +00001239 eth_hw_addr_random(dev);
Brian Braunstein36226a82007-04-26 01:00:55 -07001240
Linus Torvalds1da177e2005-04-16 15:20:36 -07001241 break;
1242 }
Jarod Wilson91572082016-10-20 13:55:20 -04001243
1244 dev->min_mtu = MIN_MTU;
1245 dev->max_mtu = MAX_MTU - dev->hard_header_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001246}
1247
1248/* Character device part */
1249
1250/* Poll */
Jason Wangc8d68e62012-10-31 19:46:00 +00001251static unsigned int tun_chr_poll(struct file *file, poll_table *wait)
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001252{
Eric W. Biedermanb2430de2009-01-20 11:03:21 +00001253 struct tun_file *tfile = file->private_data;
yuan linyu9484dc72017-09-23 22:36:52 +08001254 struct tun_struct *tun = tun_get(tfile);
Mariusz Kozlowski3c8a9c62009-07-05 19:48:35 +00001255 struct sock *sk;
Herbert Xu33dccbb2009-02-05 21:25:32 -08001256 unsigned int mask = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257
1258 if (!tun)
Eric W. Biedermaneac9e902009-01-20 10:59:05 +00001259 return POLLERR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260
Jason Wang54f968d2012-10-31 19:45:57 +00001261 sk = tfile->socket.sk;
Mariusz Kozlowski3c8a9c62009-07-05 19:48:35 +00001262
Joe Perches6b8a66e2011-03-02 07:18:10 +00001263 tun_debug(KERN_INFO, tun, "tun_chr_poll\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264
Xi Wang9e641bd2014-05-16 15:11:48 -07001265 poll_wait(file, sk_sleep(sk), wait);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001266
Jason Wang1576d982016-06-30 14:45:36 +08001267 if (!skb_array_empty(&tfile->tx_array))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268 mask |= POLLIN | POLLRDNORM;
1269
Hannes Frederic Sowab20e2d52017-03-13 00:00:26 +01001270 if (tun->dev->flags & IFF_UP &&
1271 (sock_writeable(sk) ||
1272 (!test_and_set_bit(SOCKWQ_ASYNC_NOSPACE, &sk->sk_socket->flags) &&
1273 sock_writeable(sk))))
Herbert Xu33dccbb2009-02-05 21:25:32 -08001274 mask |= POLLOUT | POLLWRNORM;
1275
Eric W. Biedermanc70f1822009-01-20 11:07:17 +00001276 if (tun->dev->reg_state != NETREG_REGISTERED)
1277 mask = POLLERR;
1278
Eric W. Biederman631ab462009-01-20 11:00:40 +00001279 tun_put(tun);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280 return mask;
1281}
1282
Petar Penkov90e33d42017-09-22 13:49:15 -07001283static struct sk_buff *tun_napi_alloc_frags(struct tun_file *tfile,
1284 size_t len,
1285 const struct iov_iter *it)
1286{
1287 struct sk_buff *skb;
1288 size_t linear;
1289 int err;
1290 int i;
1291
1292 if (it->nr_segs > MAX_SKB_FRAGS + 1)
1293 return ERR_PTR(-ENOMEM);
1294
1295 local_bh_disable();
1296 skb = napi_get_frags(&tfile->napi);
1297 local_bh_enable();
1298 if (!skb)
1299 return ERR_PTR(-ENOMEM);
1300
1301 linear = iov_iter_single_seg_count(it);
1302 err = __skb_grow(skb, linear);
1303 if (err)
1304 goto free;
1305
1306 skb->len = len;
1307 skb->data_len = len - linear;
1308 skb->truesize += skb->data_len;
1309
1310 for (i = 1; i < it->nr_segs; i++) {
1311 size_t fragsz = it->iov[i].iov_len;
1312 unsigned long offset;
1313 struct page *page;
1314 void *data;
1315
1316 if (fragsz == 0 || fragsz > PAGE_SIZE) {
1317 err = -EINVAL;
1318 goto free;
1319 }
1320
1321 local_bh_disable();
1322 data = napi_alloc_frag(fragsz);
1323 local_bh_enable();
1324 if (!data) {
1325 err = -ENOMEM;
1326 goto free;
1327 }
1328
1329 page = virt_to_head_page(data);
1330 offset = data - page_address(page);
1331 skb_fill_page_desc(skb, i - 1, page, offset, fragsz);
1332 }
1333
1334 return skb;
1335free:
1336 /* frees skb and all frags allocated with napi_alloc_frag() */
1337 napi_free_frags(&tfile->napi);
1338 return ERR_PTR(err);
1339}
1340
Rusty Russellf42157c2008-08-15 15:15:10 -07001341/* prepad is the amount to reserve at front. len is length after that.
1342 * linear is a hint as to how much to copy (usually headers). */
Jason Wang54f968d2012-10-31 19:45:57 +00001343static struct sk_buff *tun_alloc_skb(struct tun_file *tfile,
stephen hemminger6f7c1562011-06-08 14:33:08 +00001344 size_t prepad, size_t len,
1345 size_t linear, int noblock)
Rusty Russellf42157c2008-08-15 15:15:10 -07001346{
Jason Wang54f968d2012-10-31 19:45:57 +00001347 struct sock *sk = tfile->socket.sk;
Rusty Russellf42157c2008-08-15 15:15:10 -07001348 struct sk_buff *skb;
Herbert Xu33dccbb2009-02-05 21:25:32 -08001349 int err;
Rusty Russellf42157c2008-08-15 15:15:10 -07001350
1351 /* Under a page? Don't bother with paged skb. */
Herbert Xu0eca93b2009-04-14 02:09:43 -07001352 if (prepad + len < PAGE_SIZE || !linear)
Herbert Xu33dccbb2009-02-05 21:25:32 -08001353 linear = len;
Rusty Russellf42157c2008-08-15 15:15:10 -07001354
Herbert Xu33dccbb2009-02-05 21:25:32 -08001355 skb = sock_alloc_send_pskb(sk, prepad + linear, len - linear, noblock,
Eric Dumazet28d64272013-08-08 14:38:47 -07001356 &err, 0);
Rusty Russellf42157c2008-08-15 15:15:10 -07001357 if (!skb)
Herbert Xu33dccbb2009-02-05 21:25:32 -08001358 return ERR_PTR(err);
Rusty Russellf42157c2008-08-15 15:15:10 -07001359
1360 skb_reserve(skb, prepad);
1361 skb_put(skb, linear);
Herbert Xu33dccbb2009-02-05 21:25:32 -08001362 skb->data_len = len - linear;
1363 skb->len += len - linear;
Rusty Russellf42157c2008-08-15 15:15:10 -07001364
1365 return skb;
1366}
1367
Jason Wang5503fce2017-01-18 15:02:03 +08001368static void tun_rx_batched(struct tun_struct *tun, struct tun_file *tfile,
1369 struct sk_buff *skb, int more)
1370{
1371 struct sk_buff_head *queue = &tfile->sk.sk_write_queue;
1372 struct sk_buff_head process_queue;
1373 u32 rx_batched = tun->rx_batched;
1374 bool rcv = false;
1375
1376 if (!rx_batched || (!more && skb_queue_empty(queue))) {
1377 local_bh_disable();
1378 netif_receive_skb(skb);
1379 local_bh_enable();
1380 return;
1381 }
1382
1383 spin_lock(&queue->lock);
1384 if (!more || skb_queue_len(queue) == rx_batched) {
1385 __skb_queue_head_init(&process_queue);
1386 skb_queue_splice_tail_init(queue, &process_queue);
1387 rcv = true;
1388 } else {
1389 __skb_queue_tail(queue, skb);
1390 }
1391 spin_unlock(&queue->lock);
1392
1393 if (rcv) {
1394 struct sk_buff *nskb;
1395
1396 local_bh_disable();
1397 while ((nskb = __skb_dequeue(&process_queue)))
1398 netif_receive_skb(nskb);
1399 netif_receive_skb(skb);
1400 local_bh_enable();
1401 }
1402}
1403
Jason Wang66ccbc92017-08-11 19:41:16 +08001404static bool tun_can_build_skb(struct tun_struct *tun, struct tun_file *tfile,
1405 int len, int noblock, bool zerocopy)
1406{
1407 if ((tun->flags & TUN_TYPE_MASK) != IFF_TAP)
1408 return false;
1409
1410 if (tfile->socket.sk->sk_sndbuf != INT_MAX)
1411 return false;
1412
1413 if (!noblock)
1414 return false;
1415
1416 if (zerocopy)
1417 return false;
1418
1419 if (SKB_DATA_ALIGN(len + TUN_RX_PAD) +
1420 SKB_DATA_ALIGN(sizeof(struct skb_shared_info)) > PAGE_SIZE)
1421 return false;
1422
1423 return true;
1424}
1425
Jason Wang761876c2017-08-11 19:41:18 +08001426static struct sk_buff *tun_build_skb(struct tun_struct *tun,
1427 struct tun_file *tfile,
Jason Wang66ccbc92017-08-11 19:41:16 +08001428 struct iov_iter *from,
Jason Wang761876c2017-08-11 19:41:18 +08001429 struct virtio_net_hdr *hdr,
Jason Wang1cfe6e92017-09-04 11:36:09 +08001430 int len, int *skb_xdp)
Jason Wang66ccbc92017-08-11 19:41:16 +08001431{
Eric Dumazet0bbd7da2017-08-16 22:14:33 +08001432 struct page_frag *alloc_frag = &current->task_frag;
Jason Wang66ccbc92017-08-11 19:41:16 +08001433 struct sk_buff *skb;
Jason Wang761876c2017-08-11 19:41:18 +08001434 struct bpf_prog *xdp_prog;
Jason Wang7df13212017-09-04 11:36:08 +08001435 int buflen = SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
Jason Wang761876c2017-08-11 19:41:18 +08001436 unsigned int delta = 0;
Jason Wang66ccbc92017-08-11 19:41:16 +08001437 char *buf;
1438 size_t copied;
Jason Wang761876c2017-08-11 19:41:18 +08001439 bool xdp_xmit = false;
Jason Wang7df13212017-09-04 11:36:08 +08001440 int err, pad = TUN_RX_PAD;
1441
1442 rcu_read_lock();
1443 xdp_prog = rcu_dereference(tun->xdp_prog);
1444 if (xdp_prog)
1445 pad += TUN_HEADROOM;
1446 buflen += SKB_DATA_ALIGN(len + pad);
1447 rcu_read_unlock();
Jason Wang66ccbc92017-08-11 19:41:16 +08001448
Jason Wang63b9ab62017-10-27 11:05:44 +08001449 alloc_frag->offset = ALIGN((u64)alloc_frag->offset, SMP_CACHE_BYTES);
Jason Wang66ccbc92017-08-11 19:41:16 +08001450 if (unlikely(!skb_page_frag_refill(buflen, alloc_frag, GFP_KERNEL)))
1451 return ERR_PTR(-ENOMEM);
1452
1453 buf = (char *)page_address(alloc_frag->page) + alloc_frag->offset;
1454 copied = copy_page_from_iter(alloc_frag->page,
Jason Wang7df13212017-09-04 11:36:08 +08001455 alloc_frag->offset + pad,
Jason Wang66ccbc92017-08-11 19:41:16 +08001456 len, from);
1457 if (copied != len)
1458 return ERR_PTR(-EFAULT);
1459
Jason Wang7df13212017-09-04 11:36:08 +08001460 /* There's a small window that XDP may be set after the check
1461 * of xdp_prog above, this should be rare and for simplicity
1462 * we do XDP on skb in case the headroom is not enough.
1463 */
1464 if (hdr->gso_type || !xdp_prog)
Jason Wang1cfe6e92017-09-04 11:36:09 +08001465 *skb_xdp = 1;
Jason Wang761876c2017-08-11 19:41:18 +08001466 else
Jason Wang1cfe6e92017-09-04 11:36:09 +08001467 *skb_xdp = 0;
Jason Wang66ccbc92017-08-11 19:41:16 +08001468
Jason Wang761876c2017-08-11 19:41:18 +08001469 rcu_read_lock();
1470 xdp_prog = rcu_dereference(tun->xdp_prog);
Jason Wang1cfe6e92017-09-04 11:36:09 +08001471 if (xdp_prog && !*skb_xdp) {
Jason Wang761876c2017-08-11 19:41:18 +08001472 struct xdp_buff xdp;
1473 void *orig_data;
1474 u32 act;
1475
1476 xdp.data_hard_start = buf;
Jason Wang7df13212017-09-04 11:36:08 +08001477 xdp.data = buf + pad;
Daniel Borkmannde8f3a82017-09-25 02:25:51 +02001478 xdp_set_data_meta_invalid(&xdp);
Jason Wang761876c2017-08-11 19:41:18 +08001479 xdp.data_end = xdp.data + len;
1480 orig_data = xdp.data;
1481 act = bpf_prog_run_xdp(xdp_prog, &xdp);
1482
1483 switch (act) {
1484 case XDP_REDIRECT:
1485 get_page(alloc_frag->page);
1486 alloc_frag->offset += buflen;
1487 err = xdp_do_redirect(tun->dev, &xdp, xdp_prog);
1488 if (err)
1489 goto err_redirect;
Xin Long654d5732017-11-19 19:31:04 +08001490 rcu_read_unlock();
Jason Wang761876c2017-08-11 19:41:18 +08001491 return NULL;
1492 case XDP_TX:
1493 xdp_xmit = true;
1494 /* fall through */
1495 case XDP_PASS:
1496 delta = orig_data - xdp.data;
1497 break;
1498 default:
1499 bpf_warn_invalid_xdp_action(act);
1500 /* fall through */
1501 case XDP_ABORTED:
1502 trace_xdp_exception(tun->dev, xdp_prog, act);
1503 /* fall through */
1504 case XDP_DROP:
1505 goto err_xdp;
1506 }
1507 }
1508
1509 skb = build_skb(buf, buflen);
1510 if (!skb) {
1511 rcu_read_unlock();
1512 return ERR_PTR(-ENOMEM);
1513 }
1514
Jason Wang7df13212017-09-04 11:36:08 +08001515 skb_reserve(skb, pad - delta);
Jason Wang761876c2017-08-11 19:41:18 +08001516 skb_put(skb, len + delta);
Jason Wang66ccbc92017-08-11 19:41:16 +08001517 get_page(alloc_frag->page);
1518 alloc_frag->offset += buflen;
1519
Jason Wang761876c2017-08-11 19:41:18 +08001520 if (xdp_xmit) {
1521 skb->dev = tun->dev;
1522 generic_xdp_tx(skb, xdp_prog);
Xin Long654d5732017-11-19 19:31:04 +08001523 rcu_read_unlock();
Jason Wang761876c2017-08-11 19:41:18 +08001524 return NULL;
1525 }
1526
1527 rcu_read_unlock();
1528
Jason Wang66ccbc92017-08-11 19:41:16 +08001529 return skb;
Jason Wang761876c2017-08-11 19:41:18 +08001530
1531err_redirect:
1532 put_page(alloc_frag->page);
1533err_xdp:
1534 rcu_read_unlock();
1535 this_cpu_inc(tun->pcpu_stats->rx_dropped);
1536 return NULL;
Jason Wang66ccbc92017-08-11 19:41:16 +08001537}
1538
Linus Torvalds1da177e2005-04-16 15:20:36 -07001539/* Get packet from user space buffer */
Jason Wang54f968d2012-10-31 19:45:57 +00001540static ssize_t tun_get_user(struct tun_struct *tun, struct tun_file *tfile,
Al Virof5ff53b2014-06-19 15:36:49 -04001541 void *msg_control, struct iov_iter *from,
Jason Wang5503fce2017-01-18 15:02:03 +08001542 int noblock, bool more)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001543{
Harvey Harrison09640e632009-02-01 00:45:17 -08001544 struct tun_pi pi = { 0, cpu_to_be16(ETH_P_IP) };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001545 struct sk_buff *skb;
Al Virof5ff53b2014-06-19 15:36:49 -04001546 size_t total_len = iov_iter_count(from);
Paolo Abenieaea34b2016-02-26 10:45:40 +01001547 size_t len = total_len, align = tun->align, linear;
Rusty Russellf43798c2008-07-03 03:48:02 -07001548 struct virtio_net_hdr gso = { 0 };
Paolo Abeni608b9972016-04-13 10:52:20 +02001549 struct tun_pcpu_stats *stats;
Jason Wang96f8d9e2013-11-13 14:00:39 +08001550 int good_linear;
Michael S. Tsirkin06908992012-07-20 09:23:23 +00001551 int copylen;
1552 bool zerocopy = false;
1553 int err;
Eric Dumazet49974422012-12-12 19:22:57 +00001554 u32 rxhash;
Jason Wang1cfe6e92017-09-04 11:36:09 +08001555 int skb_xdp = 1;
Petar Penkov90e33d42017-09-22 13:49:15 -07001556 bool frags = tun_napi_frags_enabled(tun);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001557
Eric Dumazet1bd4978a2015-12-16 08:57:37 -08001558 if (!(tun->dev->flags & IFF_UP))
1559 return -EIO;
1560
Michael S. Tsirkin40630b82014-11-19 15:17:31 +02001561 if (!(tun->flags & IFF_NO_PI)) {
Dan Carpenter15718ea2013-08-15 15:52:57 +03001562 if (len < sizeof(pi))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001563 return -EINVAL;
Dan Carpenter15718ea2013-08-15 15:52:57 +03001564 len -= sizeof(pi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001565
Al Virocbbd26b2016-11-01 22:09:04 -04001566 if (!copy_from_iter_full(&pi, sizeof(pi), from))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001567 return -EFAULT;
1568 }
1569
Michael S. Tsirkin40630b82014-11-19 15:17:31 +02001570 if (tun->flags & IFF_VNET_HDR) {
Willem de Bruijne1edab82017-02-03 18:20:48 -05001571 int vnet_hdr_sz = READ_ONCE(tun->vnet_hdr_sz);
1572
1573 if (len < vnet_hdr_sz)
Rusty Russellf43798c2008-07-03 03:48:02 -07001574 return -EINVAL;
Willem de Bruijne1edab82017-02-03 18:20:48 -05001575 len -= vnet_hdr_sz;
Rusty Russellf43798c2008-07-03 03:48:02 -07001576
Al Virocbbd26b2016-11-01 22:09:04 -04001577 if (!copy_from_iter_full(&gso, sizeof(gso), from))
Rusty Russellf43798c2008-07-03 03:48:02 -07001578 return -EFAULT;
1579
Herbert Xu49091222009-06-08 00:20:01 -07001580 if ((gso.flags & VIRTIO_NET_HDR_F_NEEDS_CSUM) &&
Michael S. Tsirkin56f0dcc2014-10-23 22:59:31 +03001581 tun16_to_cpu(tun, gso.csum_start) + tun16_to_cpu(tun, gso.csum_offset) + 2 > tun16_to_cpu(tun, gso.hdr_len))
1582 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 -07001583
Michael S. Tsirkin56f0dcc2014-10-23 22:59:31 +03001584 if (tun16_to_cpu(tun, gso.hdr_len) > len)
Rusty Russellf43798c2008-07-03 03:48:02 -07001585 return -EINVAL;
Willem de Bruijne1edab82017-02-03 18:20:48 -05001586 iov_iter_advance(from, vnet_hdr_sz - sizeof(gso));
Rusty Russellf43798c2008-07-03 03:48:02 -07001587 }
1588
Michael S. Tsirkin40630b82014-11-19 15:17:31 +02001589 if ((tun->flags & TUN_TYPE_MASK) == IFF_TAP) {
stephen hemmingera504b862011-06-08 14:33:07 +00001590 align += NET_IP_ALIGN;
Herbert Xu0eca93b2009-04-14 02:09:43 -07001591 if (unlikely(len < ETH_HLEN ||
Michael S. Tsirkin56f0dcc2014-10-23 22:59:31 +03001592 (gso.hdr_len && tun16_to_cpu(tun, gso.hdr_len) < ETH_HLEN)))
Rusty Russelle01bf1c2008-04-12 18:49:30 -07001593 return -EINVAL;
1594 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001595
Jason Wang96f8d9e2013-11-13 14:00:39 +08001596 good_linear = SKB_MAX_HEAD(align);
1597
Jason Wang88529172013-07-18 10:55:15 +08001598 if (msg_control) {
Al Virof5ff53b2014-06-19 15:36:49 -04001599 struct iov_iter i = *from;
1600
Jason Wang88529172013-07-18 10:55:15 +08001601 /* There are 256 bytes to be copied in skb, so there is
1602 * enough room for skb expand head in case it is used.
Michael S. Tsirkin06908992012-07-20 09:23:23 +00001603 * The rest of the buffer is mapped from userspace.
1604 */
Michael S. Tsirkin56f0dcc2014-10-23 22:59:31 +03001605 copylen = gso.hdr_len ? tun16_to_cpu(tun, gso.hdr_len) : GOODCOPY_LEN;
Jason Wang96f8d9e2013-11-13 14:00:39 +08001606 if (copylen > good_linear)
1607 copylen = good_linear;
Jason Wang3dd5c332013-07-10 13:43:27 +08001608 linear = copylen;
Al Virof5ff53b2014-06-19 15:36:49 -04001609 iov_iter_advance(&i, copylen);
1610 if (iov_iter_npages(&i, INT_MAX) <= MAX_SKB_FRAGS)
Jason Wang88529172013-07-18 10:55:15 +08001611 zerocopy = true;
1612 }
1613
Petar Penkov90e33d42017-09-22 13:49:15 -07001614 if (!frags && tun_can_build_skb(tun, tfile, len, noblock, zerocopy)) {
Jason Wang1cfe6e92017-09-04 11:36:09 +08001615 /* For the packet that is not easy to be processed
1616 * (e.g gso or jumbo packet), we will do it at after
1617 * skb was created with generic XDP routine.
1618 */
1619 skb = tun_build_skb(tun, tfile, from, &gso, len, &skb_xdp);
Jason Wang66ccbc92017-08-11 19:41:16 +08001620 if (IS_ERR(skb)) {
Paolo Abeni608b9972016-04-13 10:52:20 +02001621 this_cpu_inc(tun->pcpu_stats->rx_dropped);
Jason Wang66ccbc92017-08-11 19:41:16 +08001622 return PTR_ERR(skb);
1623 }
Jason Wang761876c2017-08-11 19:41:18 +08001624 if (!skb)
1625 return total_len;
Jason Wang66ccbc92017-08-11 19:41:16 +08001626 } else {
1627 if (!zerocopy) {
1628 copylen = len;
1629 if (tun16_to_cpu(tun, gso.hdr_len) > good_linear)
1630 linear = good_linear;
1631 else
1632 linear = tun16_to_cpu(tun, gso.hdr_len);
1633 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001634
Petar Penkov90e33d42017-09-22 13:49:15 -07001635 if (frags) {
1636 mutex_lock(&tfile->napi_mutex);
1637 skb = tun_napi_alloc_frags(tfile, copylen, from);
1638 /* tun_napi_alloc_frags() enforces a layout for the skb.
1639 * If zerocopy is enabled, then this layout will be
1640 * overwritten by zerocopy_sg_from_iter().
1641 */
1642 zerocopy = false;
1643 } else {
1644 skb = tun_alloc_skb(tfile, align, copylen, linear,
1645 noblock);
1646 }
1647
Jason Wang66ccbc92017-08-11 19:41:16 +08001648 if (IS_ERR(skb)) {
1649 if (PTR_ERR(skb) != -EAGAIN)
1650 this_cpu_inc(tun->pcpu_stats->rx_dropped);
Petar Penkov90e33d42017-09-22 13:49:15 -07001651 if (frags)
1652 mutex_unlock(&tfile->napi_mutex);
Jason Wang66ccbc92017-08-11 19:41:16 +08001653 return PTR_ERR(skb);
1654 }
Michael S. Tsirkin06908992012-07-20 09:23:23 +00001655
Jason Wang66ccbc92017-08-11 19:41:16 +08001656 if (zerocopy)
1657 err = zerocopy_sg_from_iter(skb, from);
1658 else
1659 err = skb_copy_datagram_from_iter(skb, 0, from, len);
1660
1661 if (err) {
1662 this_cpu_inc(tun->pcpu_stats->rx_dropped);
1663 kfree_skb(skb);
Petar Penkov90e33d42017-09-22 13:49:15 -07001664 if (frags) {
1665 tfile->napi.skb = NULL;
1666 mutex_unlock(&tfile->napi_mutex);
1667 }
1668
Jason Wang66ccbc92017-08-11 19:41:16 +08001669 return -EFAULT;
1670 }
Dave Jones8f227572006-03-11 18:49:13 -08001671 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001672
Jarno Rajahalme3e9e40e2016-11-18 15:40:38 -08001673 if (virtio_net_hdr_to_skb(skb, &gso, tun_is_little_endian(tun))) {
Paolo Abenidf10db92016-06-14 00:00:04 +02001674 this_cpu_inc(tun->pcpu_stats->rx_frame_errors);
1675 kfree_skb(skb);
Petar Penkov90e33d42017-09-22 13:49:15 -07001676 if (frags) {
1677 tfile->napi.skb = NULL;
1678 mutex_unlock(&tfile->napi_mutex);
1679 }
1680
Paolo Abenidf10db92016-06-14 00:00:04 +02001681 return -EINVAL;
1682 }
1683
Linus Torvalds1da177e2005-04-16 15:20:36 -07001684 switch (tun->flags & TUN_TYPE_MASK) {
Michael S. Tsirkin40630b82014-11-19 15:17:31 +02001685 case IFF_TUN:
1686 if (tun->flags & IFF_NO_PI) {
Alexander Potapenko2580c4c2017-09-28 11:32:37 +02001687 u8 ip_version = skb->len ? (skb->data[0] >> 4) : 0;
1688
1689 switch (ip_version) {
1690 case 4:
Ang Way Chuangf09f7ee2008-06-17 21:10:33 -07001691 pi.proto = htons(ETH_P_IP);
1692 break;
Alexander Potapenko2580c4c2017-09-28 11:32:37 +02001693 case 6:
Ang Way Chuangf09f7ee2008-06-17 21:10:33 -07001694 pi.proto = htons(ETH_P_IPV6);
1695 break;
1696 default:
Paolo Abeni608b9972016-04-13 10:52:20 +02001697 this_cpu_inc(tun->pcpu_stats->rx_dropped);
Ang Way Chuangf09f7ee2008-06-17 21:10:33 -07001698 kfree_skb(skb);
1699 return -EINVAL;
1700 }
1701 }
1702
Arnaldo Carvalho de Melo459a98e2007-03-19 15:30:44 -07001703 skb_reset_mac_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001704 skb->protocol = pi.proto;
Arnaldo Carvalho de Melo4c13eb62007-04-25 17:40:23 -07001705 skb->dev = tun->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001706 break;
Michael S. Tsirkin40630b82014-11-19 15:17:31 +02001707 case IFF_TAP:
Petar Penkov90e33d42017-09-22 13:49:15 -07001708 if (!frags)
1709 skb->protocol = eth_type_trans(skb, tun->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001710 break;
Joe Perches6403eab2011-06-03 11:51:20 +00001711 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001712
Michael S. Tsirkin06908992012-07-20 09:23:23 +00001713 /* copy skb_ubuf_info for callback when skb has no error */
1714 if (zerocopy) {
1715 skb_shinfo(skb)->destructor_arg = msg_control;
1716 skb_shinfo(skb)->tx_flags |= SKBTX_DEV_ZEROCOPY;
Pravin B Shelarc9af6db2013-02-11 09:27:41 +00001717 skb_shinfo(skb)->tx_flags |= SKBTX_SHARED_FRAG;
Jason Wangaf1cc7a2016-11-30 13:17:51 +08001718 } else if (msg_control) {
1719 struct ubuf_info *uarg = msg_control;
1720 uarg->callback(uarg, false);
Michael S. Tsirkin06908992012-07-20 09:23:23 +00001721 }
1722
Vlad Yasevich72f65102015-02-03 16:36:16 -05001723 skb_reset_network_header(skb);
Jason Wang40893fd2013-03-26 23:11:22 +00001724 skb_probe_transport_header(skb, 0);
Jason Wang38502af2013-03-25 20:19:56 +00001725
Jason Wang1cfe6e92017-09-04 11:36:09 +08001726 if (skb_xdp) {
Jason Wang761876c2017-08-11 19:41:18 +08001727 struct bpf_prog *xdp_prog;
1728 int ret;
1729
1730 rcu_read_lock();
1731 xdp_prog = rcu_dereference(tun->xdp_prog);
1732 if (xdp_prog) {
1733 ret = do_xdp_generic(xdp_prog, skb);
1734 if (ret != XDP_PASS) {
1735 rcu_read_unlock();
1736 return total_len;
1737 }
1738 }
1739 rcu_read_unlock();
1740 }
1741
Jason Wangfeec0842017-06-06 14:09:49 +08001742 rxhash = __skb_get_hash_symmetric(skb);
Petar Penkov94317092017-09-22 13:49:14 -07001743
Petar Penkov90e33d42017-09-22 13:49:15 -07001744 if (frags) {
1745 /* Exercise flow dissector code path. */
1746 u32 headlen = eth_get_headlen(skb->data, skb_headlen(skb));
1747
Eric Dumazet010f2452017-10-17 10:07:44 -07001748 if (unlikely(headlen > skb_headlen(skb))) {
Petar Penkov90e33d42017-09-22 13:49:15 -07001749 this_cpu_inc(tun->pcpu_stats->rx_dropped);
1750 napi_free_frags(&tfile->napi);
1751 mutex_unlock(&tfile->napi_mutex);
1752 WARN_ON(1);
1753 return -ENOMEM;
1754 }
1755
1756 local_bh_disable();
1757 napi_gro_frags(&tfile->napi);
1758 local_bh_enable();
1759 mutex_unlock(&tfile->napi_mutex);
Eric Dumazetaec72f32017-10-18 12:12:09 -07001760 } else if (tfile->napi_enabled) {
Petar Penkov94317092017-09-22 13:49:14 -07001761 struct sk_buff_head *queue = &tfile->sk.sk_write_queue;
1762 int queue_len;
1763
1764 spin_lock_bh(&queue->lock);
1765 __skb_queue_tail(queue, skb);
1766 queue_len = skb_queue_len(queue);
1767 spin_unlock(&queue->lock);
1768
1769 if (!more || queue_len > NAPI_POLL_WEIGHT)
1770 napi_schedule(&tfile->napi);
1771
1772 local_bh_enable();
1773 } else if (!IS_ENABLED(CONFIG_4KSTACKS)) {
1774 tun_rx_batched(tun, tfile, skb, more);
1775 } else {
1776 netif_rx_ni(skb);
1777 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001778
Paolo Abeni608b9972016-04-13 10:52:20 +02001779 stats = get_cpu_ptr(tun->pcpu_stats);
1780 u64_stats_update_begin(&stats->syncp);
1781 stats->rx_packets++;
1782 stats->rx_bytes += len;
1783 u64_stats_update_end(&stats->syncp);
1784 put_cpu_ptr(stats);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001785
Jason Wang9e857222013-01-28 01:05:19 +00001786 tun_flow_update(tun, rxhash, tfile);
Michael S. Tsirkin06908992012-07-20 09:23:23 +00001787 return total_len;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001788}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001789
Al Virof5ff53b2014-06-19 15:36:49 -04001790static ssize_t tun_chr_write_iter(struct kiocb *iocb, struct iov_iter *from)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001791{
Herbert Xu33dccbb2009-02-05 21:25:32 -08001792 struct file *file = iocb->ki_filp;
Jason Wang54f968d2012-10-31 19:45:57 +00001793 struct tun_file *tfile = file->private_data;
yuan linyu9484dc72017-09-23 22:36:52 +08001794 struct tun_struct *tun = tun_get(tfile);
Eric W. Biederman631ab462009-01-20 11:00:40 +00001795 ssize_t result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001796
1797 if (!tun)
1798 return -EBADFD;
1799
Jason Wang5503fce2017-01-18 15:02:03 +08001800 result = tun_get_user(tun, tfile, NULL, from,
1801 file->f_flags & O_NONBLOCK, false);
Eric W. Biederman631ab462009-01-20 11:00:40 +00001802
1803 tun_put(tun);
1804 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001805}
1806
Linus Torvalds1da177e2005-04-16 15:20:36 -07001807/* Put packet to the user space buffer */
stephen hemminger6f7c1562011-06-08 14:33:08 +00001808static ssize_t tun_put_user(struct tun_struct *tun,
Jason Wang54f968d2012-10-31 19:45:57 +00001809 struct tun_file *tfile,
stephen hemminger6f7c1562011-06-08 14:33:08 +00001810 struct sk_buff *skb,
Herbert Xue0b46d02014-11-07 21:22:23 +08001811 struct iov_iter *iter)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001812{
1813 struct tun_pi pi = { 0, skb->protocol };
Paolo Abeni608b9972016-04-13 10:52:20 +02001814 struct tun_pcpu_stats *stats;
Herbert Xue0b46d02014-11-07 21:22:23 +08001815 ssize_t total;
Jason Wang8c847d22014-11-13 16:54:14 +08001816 int vlan_offset = 0;
Herbert Xua8f9bfd2014-11-03 04:30:13 +08001817 int vlan_hlen = 0;
Herbert Xu2eb783c2014-11-03 04:30:14 +08001818 int vnet_hdr_sz = 0;
Herbert Xua8f9bfd2014-11-03 04:30:13 +08001819
Jiri Pirkodf8a39d2015-01-13 17:13:44 +01001820 if (skb_vlan_tag_present(skb))
Herbert Xua8f9bfd2014-11-03 04:30:13 +08001821 vlan_hlen = VLAN_HLEN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001822
Michael S. Tsirkin40630b82014-11-19 15:17:31 +02001823 if (tun->flags & IFF_VNET_HDR)
Willem de Bruijne1edab82017-02-03 18:20:48 -05001824 vnet_hdr_sz = READ_ONCE(tun->vnet_hdr_sz);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001825
Herbert Xue0b46d02014-11-07 21:22:23 +08001826 total = skb->len + vlan_hlen + vnet_hdr_sz;
1827
Michael S. Tsirkin40630b82014-11-19 15:17:31 +02001828 if (!(tun->flags & IFF_NO_PI)) {
Herbert Xue0b46d02014-11-07 21:22:23 +08001829 if (iov_iter_count(iter) < sizeof(pi))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001830 return -EINVAL;
1831
Herbert Xue0b46d02014-11-07 21:22:23 +08001832 total += sizeof(pi);
1833 if (iov_iter_count(iter) < total) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001834 /* Packet will be striped */
1835 pi.flags |= TUN_PKT_STRIP;
1836 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001837
Herbert Xue0b46d02014-11-07 21:22:23 +08001838 if (copy_to_iter(&pi, sizeof(pi), iter) != sizeof(pi))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001839 return -EFAULT;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001840 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001841
Herbert Xu2eb783c2014-11-03 04:30:14 +08001842 if (vnet_hdr_sz) {
Jarno Rajahalme9403cd72016-11-18 15:40:40 -08001843 struct virtio_net_hdr gso;
Mike Rapoport34166092016-06-08 16:09:20 +03001844
Herbert Xue0b46d02014-11-07 21:22:23 +08001845 if (iov_iter_count(iter) < vnet_hdr_sz)
Rusty Russellf43798c2008-07-03 03:48:02 -07001846 return -EINVAL;
1847
Jarno Rajahalme3e9e40e2016-11-18 15:40:38 -08001848 if (virtio_net_hdr_from_skb(skb, &gso,
Jason Wang6391a442017-01-20 14:32:42 +08001849 tun_is_little_endian(tun), true)) {
Rusty Russellf43798c2008-07-03 03:48:02 -07001850 struct skb_shared_info *sinfo = skb_shinfo(skb);
Mike Rapoport34166092016-06-08 16:09:20 +03001851 pr_err("unexpected GSO type: "
1852 "0x%x, gso_size %d, hdr_len %d\n",
1853 sinfo->gso_type, tun16_to_cpu(tun, gso.gso_size),
1854 tun16_to_cpu(tun, gso.hdr_len));
1855 print_hex_dump(KERN_ERR, "tun: ",
1856 DUMP_PREFIX_NONE,
1857 16, 1, skb->head,
1858 min((int)tun16_to_cpu(tun, gso.hdr_len), 64), true);
1859 WARN_ON_ONCE(1);
1860 return -EINVAL;
1861 }
Rusty Russellf43798c2008-07-03 03:48:02 -07001862
Herbert Xue0b46d02014-11-07 21:22:23 +08001863 if (copy_to_iter(&gso, sizeof(gso), iter) != sizeof(gso))
Rusty Russellf43798c2008-07-03 03:48:02 -07001864 return -EFAULT;
Jason Wang8c847d22014-11-13 16:54:14 +08001865
1866 iov_iter_advance(iter, vnet_hdr_sz - sizeof(gso));
Rusty Russellf43798c2008-07-03 03:48:02 -07001867 }
1868
Herbert Xua8f9bfd2014-11-03 04:30:13 +08001869 if (vlan_hlen) {
Herbert Xue0b46d02014-11-07 21:22:23 +08001870 int ret;
Jason Wang6680ec62013-07-25 13:00:33 +08001871 struct {
1872 __be16 h_vlan_proto;
1873 __be16 h_vlan_TCI;
1874 } veth;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001875
Jason Wang6680ec62013-07-25 13:00:33 +08001876 veth.h_vlan_proto = skb->vlan_proto;
Jiri Pirkodf8a39d2015-01-13 17:13:44 +01001877 veth.h_vlan_TCI = htons(skb_vlan_tag_get(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001878
Jason Wang6680ec62013-07-25 13:00:33 +08001879 vlan_offset = offsetof(struct vlan_ethhdr, h_vlan_proto);
Jason Wang6680ec62013-07-25 13:00:33 +08001880
Herbert Xue0b46d02014-11-07 21:22:23 +08001881 ret = skb_copy_datagram_iter(skb, 0, iter, vlan_offset);
1882 if (ret || !iov_iter_count(iter))
Jason Wang6680ec62013-07-25 13:00:33 +08001883 goto done;
1884
Herbert Xue0b46d02014-11-07 21:22:23 +08001885 ret = copy_to_iter(&veth, sizeof(veth), iter);
1886 if (ret != sizeof(veth) || !iov_iter_count(iter))
Jason Wang6680ec62013-07-25 13:00:33 +08001887 goto done;
1888 }
1889
Herbert Xue0b46d02014-11-07 21:22:23 +08001890 skb_copy_datagram_iter(skb, vlan_offset, iter, skb->len - vlan_offset);
Jason Wang6680ec62013-07-25 13:00:33 +08001891
1892done:
Paolo Abeni608b9972016-04-13 10:52:20 +02001893 /* caller is in process context, */
1894 stats = get_cpu_ptr(tun->pcpu_stats);
1895 u64_stats_update_begin(&stats->syncp);
1896 stats->tx_packets++;
1897 stats->tx_bytes += skb->len + vlan_hlen;
1898 u64_stats_update_end(&stats->syncp);
1899 put_cpu_ptr(tun->pcpu_stats);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001900
1901 return total;
1902}
1903
Jason Wang1576d982016-06-30 14:45:36 +08001904static struct sk_buff *tun_ring_recv(struct tun_file *tfile, int noblock,
1905 int *err)
1906{
1907 DECLARE_WAITQUEUE(wait, current);
1908 struct sk_buff *skb = NULL;
Jason Wangf48cc6b2016-07-04 13:53:38 +08001909 int error = 0;
Jason Wang1576d982016-06-30 14:45:36 +08001910
1911 skb = skb_array_consume(&tfile->tx_array);
1912 if (skb)
1913 goto out;
1914 if (noblock) {
Jason Wangf48cc6b2016-07-04 13:53:38 +08001915 error = -EAGAIN;
Jason Wang1576d982016-06-30 14:45:36 +08001916 goto out;
1917 }
1918
1919 add_wait_queue(&tfile->wq.wait, &wait);
1920 current->state = TASK_INTERRUPTIBLE;
1921
1922 while (1) {
1923 skb = skb_array_consume(&tfile->tx_array);
1924 if (skb)
1925 break;
1926 if (signal_pending(current)) {
Jason Wangf48cc6b2016-07-04 13:53:38 +08001927 error = -ERESTARTSYS;
Jason Wang1576d982016-06-30 14:45:36 +08001928 break;
1929 }
1930 if (tfile->socket.sk->sk_shutdown & RCV_SHUTDOWN) {
Jason Wangf48cc6b2016-07-04 13:53:38 +08001931 error = -EFAULT;
Jason Wang1576d982016-06-30 14:45:36 +08001932 break;
1933 }
1934
1935 schedule();
1936 }
1937
1938 current->state = TASK_RUNNING;
1939 remove_wait_queue(&tfile->wq.wait, &wait);
1940
1941out:
Jason Wangf48cc6b2016-07-04 13:53:38 +08001942 *err = error;
Jason Wang1576d982016-06-30 14:45:36 +08001943 return skb;
1944}
1945
Jason Wang54f968d2012-10-31 19:45:57 +00001946static ssize_t tun_do_read(struct tun_struct *tun, struct tun_file *tfile,
Al Viro9b067032014-11-07 13:52:07 -05001947 struct iov_iter *to,
Jason Wangac77cfd2017-05-17 12:14:43 +08001948 int noblock, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001949{
Al Viro9b067032014-11-07 13:52:07 -05001950 ssize_t ret;
Jason Wang1576d982016-06-30 14:45:36 +08001951 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001952
Rami Rosen3872baf2012-11-25 22:07:41 +00001953 tun_debug(KERN_INFO, tun, "tun_do_read\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001954
Al Viro9b067032014-11-07 13:52:07 -05001955 if (!iov_iter_count(to))
1956 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001957
Jason Wangac77cfd2017-05-17 12:14:43 +08001958 if (!skb) {
1959 /* Read frames from ring */
1960 skb = tun_ring_recv(tfile, noblock, &err);
1961 if (!skb)
1962 return err;
1963 }
Herbert Xue0b46d02014-11-07 21:22:23 +08001964
Al Viro9b067032014-11-07 13:52:07 -05001965 ret = tun_put_user(tun, tfile, skb, to);
Jason Wangf51a5e82014-12-01 16:53:15 +08001966 if (unlikely(ret < 0))
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -07001967 kfree_skb(skb);
Jason Wangf51a5e82014-12-01 16:53:15 +08001968 else
1969 consume_skb(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001970
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00001971 return ret;
1972}
1973
Al Viro9b067032014-11-07 13:52:07 -05001974static ssize_t tun_chr_read_iter(struct kiocb *iocb, struct iov_iter *to)
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00001975{
1976 struct file *file = iocb->ki_filp;
1977 struct tun_file *tfile = file->private_data;
yuan linyu9484dc72017-09-23 22:36:52 +08001978 struct tun_struct *tun = tun_get(tfile);
Al Viro9b067032014-11-07 13:52:07 -05001979 ssize_t len = iov_iter_count(to), ret;
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00001980
1981 if (!tun)
1982 return -EBADFD;
Jason Wangac77cfd2017-05-17 12:14:43 +08001983 ret = tun_do_read(tun, tfile, to, file->f_flags & O_NONBLOCK, NULL);
David S. Miller42404c02013-12-10 22:05:45 -05001984 ret = min_t(ssize_t, ret, len);
Zhi Yong Wud0b7da8a2013-12-06 14:16:51 +08001985 if (ret > 0)
1986 iocb->ki_pos = ret;
Eric W. Biederman631ab462009-01-20 11:00:40 +00001987 tun_put(tun);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001988 return ret;
1989}
1990
Jason Wang96442e422012-10-31 19:46:02 +00001991static void tun_free_netdev(struct net_device *dev)
1992{
1993 struct tun_struct *tun = netdev_priv(dev);
1994
Jason Wang4008e972012-12-13 23:53:30 +00001995 BUG_ON(!(list_empty(&tun->disabled)));
Paolo Abeni608b9972016-04-13 10:52:20 +02001996 free_percpu(tun->pcpu_stats);
Jason Wang96442e422012-10-31 19:46:02 +00001997 tun_flow_uninit(tun);
Paul Moore5dbbaf22013-01-14 07:12:19 +00001998 security_tun_dev_free_security(tun->security);
Jason Wang96442e422012-10-31 19:46:02 +00001999}
2000
Linus Torvalds1da177e2005-04-16 15:20:36 -07002001static void tun_setup(struct net_device *dev)
2002{
2003 struct tun_struct *tun = netdev_priv(dev);
2004
Eric W. Biederman0625c882012-02-07 16:48:55 -08002005 tun->owner = INVALID_UID;
2006 tun->group = INVALID_GID;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002007
Linus Torvalds1da177e2005-04-16 15:20:36 -07002008 dev->ethtool_ops = &tun_ethtool_ops;
David S. Millercf124db2017-05-08 12:52:56 -04002009 dev->needs_free_netdev = true;
2010 dev->priv_destructor = tun_free_netdev;
Jason Wang016adb72016-04-08 13:26:48 +08002011 /* We prefer our own queue length */
2012 dev->tx_queue_len = TUN_READQ_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002013}
2014
Eric W. Biedermanf019a7a2009-01-21 16:02:16 -08002015/* Trivial set of netlink ops to allow deleting tun or tap
2016 * device with netlink.
2017 */
Matthias Schiffera8b8a8892017-06-25 23:56:01 +02002018static int tun_validate(struct nlattr *tb[], struct nlattr *data[],
2019 struct netlink_ext_ack *extack)
Eric W. Biedermanf019a7a2009-01-21 16:02:16 -08002020{
2021 return -EINVAL;
2022}
2023
2024static struct rtnl_link_ops tun_link_ops __read_mostly = {
2025 .kind = DRV_NAME,
2026 .priv_size = sizeof(struct tun_struct),
2027 .setup = tun_setup,
2028 .validate = tun_validate,
2029};
2030
Herbert Xu33dccbb2009-02-05 21:25:32 -08002031static void tun_sock_write_space(struct sock *sk)
2032{
Jason Wang54f968d2012-10-31 19:45:57 +00002033 struct tun_file *tfile;
Eric Dumazet43815482010-04-29 11:01:49 +00002034 wait_queue_head_t *wqueue;
Herbert Xu33dccbb2009-02-05 21:25:32 -08002035
2036 if (!sock_writeable(sk))
2037 return;
2038
Eric Dumazet9cd3e072015-11-29 20:03:10 -08002039 if (!test_and_clear_bit(SOCKWQ_ASYNC_NOSPACE, &sk->sk_socket->flags))
Herbert Xu33dccbb2009-02-05 21:25:32 -08002040 return;
2041
Eric Dumazet43815482010-04-29 11:01:49 +00002042 wqueue = sk_sleep(sk);
2043 if (wqueue && waitqueue_active(wqueue))
2044 wake_up_interruptible_sync_poll(wqueue, POLLOUT |
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00002045 POLLWRNORM | POLLWRBAND);
Herbert Xuc722c622009-06-03 21:45:55 -07002046
Jason Wang54f968d2012-10-31 19:45:57 +00002047 tfile = container_of(sk, struct tun_file, sk);
2048 kill_fasync(&tfile->fasync, SIGIO, POLL_OUT);
Herbert Xu33dccbb2009-02-05 21:25:32 -08002049}
2050
Ying Xue1b784142015-03-02 15:37:48 +08002051static int tun_sendmsg(struct socket *sock, struct msghdr *m, size_t total_len)
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00002052{
Jason Wang54f968d2012-10-31 19:45:57 +00002053 int ret;
2054 struct tun_file *tfile = container_of(sock, struct tun_file, socket);
yuan linyu9484dc72017-09-23 22:36:52 +08002055 struct tun_struct *tun = tun_get(tfile);
Jason Wang54f968d2012-10-31 19:45:57 +00002056
2057 if (!tun)
2058 return -EBADFD;
Al Virof5ff53b2014-06-19 15:36:49 -04002059
Al Viroc0371da2014-11-24 10:42:55 -05002060 ret = tun_get_user(tun, tfile, m->msg_control, &m->msg_iter,
Jason Wang5503fce2017-01-18 15:02:03 +08002061 m->msg_flags & MSG_DONTWAIT,
2062 m->msg_flags & MSG_MORE);
Jason Wang54f968d2012-10-31 19:45:57 +00002063 tun_put(tun);
2064 return ret;
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00002065}
2066
Ying Xue1b784142015-03-02 15:37:48 +08002067static int tun_recvmsg(struct socket *sock, struct msghdr *m, size_t total_len,
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00002068 int flags)
2069{
Jason Wang54f968d2012-10-31 19:45:57 +00002070 struct tun_file *tfile = container_of(sock, struct tun_file, socket);
yuan linyu9484dc72017-09-23 22:36:52 +08002071 struct tun_struct *tun = tun_get(tfile);
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00002072 int ret;
Jason Wang54f968d2012-10-31 19:45:57 +00002073
2074 if (!tun)
2075 return -EBADFD;
2076
Richard Cochraneda29772013-07-19 19:40:10 +02002077 if (flags & ~(MSG_DONTWAIT|MSG_TRUNC|MSG_ERRQUEUE)) {
Gao feng3811ae72013-04-24 21:59:23 +00002078 ret = -EINVAL;
2079 goto out;
2080 }
Richard Cochraneda29772013-07-19 19:40:10 +02002081 if (flags & MSG_ERRQUEUE) {
2082 ret = sock_recv_errqueue(sock->sk, m, total_len,
2083 SOL_PACKET, TUN_TX_TIMESTAMP);
2084 goto out;
2085 }
Jason Wangac77cfd2017-05-17 12:14:43 +08002086 ret = tun_do_read(tun, tfile, &m->msg_iter, flags & MSG_DONTWAIT,
2087 m->msg_control);
Alex Gartrell87897932014-12-25 23:05:03 -08002088 if (ret > (ssize_t)total_len) {
David S. Miller42404c02013-12-10 22:05:45 -05002089 m->msg_flags |= MSG_TRUNC;
2090 ret = flags & MSG_TRUNC ? ret : total_len;
2091 }
Gao feng3811ae72013-04-24 21:59:23 +00002092out:
Jason Wang54f968d2012-10-31 19:45:57 +00002093 tun_put(tun);
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00002094 return ret;
2095}
2096
Jason Wang1576d982016-06-30 14:45:36 +08002097static int tun_peek_len(struct socket *sock)
2098{
2099 struct tun_file *tfile = container_of(sock, struct tun_file, socket);
2100 struct tun_struct *tun;
2101 int ret = 0;
2102
yuan linyu9484dc72017-09-23 22:36:52 +08002103 tun = tun_get(tfile);
Jason Wang1576d982016-06-30 14:45:36 +08002104 if (!tun)
2105 return 0;
2106
2107 ret = skb_array_peek_len(&tfile->tx_array);
2108 tun_put(tun);
2109
2110 return ret;
2111}
2112
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00002113/* Ops structure to mimic raw sockets with tun */
2114static const struct proto_ops tun_socket_ops = {
Jason Wang1576d982016-06-30 14:45:36 +08002115 .peek_len = tun_peek_len,
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00002116 .sendmsg = tun_sendmsg,
2117 .recvmsg = tun_recvmsg,
2118};
2119
Herbert Xu33dccbb2009-02-05 21:25:32 -08002120static struct proto tun_proto = {
2121 .name = "tun",
2122 .owner = THIS_MODULE,
Jason Wang54f968d2012-10-31 19:45:57 +00002123 .obj_size = sizeof(struct tun_file),
Herbert Xu33dccbb2009-02-05 21:25:32 -08002124};
Eric W. Biedermanf019a7a2009-01-21 16:02:16 -08002125
David Woodhouse980c9e82009-05-09 22:54:21 -07002126static int tun_flags(struct tun_struct *tun)
2127{
Michael S. Tsirkin031f5e032014-11-19 14:44:40 +02002128 return tun->flags & (TUN_FEATURES | IFF_PERSIST | IFF_TUN | IFF_TAP);
David Woodhouse980c9e82009-05-09 22:54:21 -07002129}
2130
2131static ssize_t tun_show_flags(struct device *dev, struct device_attribute *attr,
2132 char *buf)
2133{
2134 struct tun_struct *tun = netdev_priv(to_net_dev(dev));
2135 return sprintf(buf, "0x%x\n", tun_flags(tun));
2136}
2137
2138static ssize_t tun_show_owner(struct device *dev, struct device_attribute *attr,
2139 char *buf)
2140{
2141 struct tun_struct *tun = netdev_priv(to_net_dev(dev));
Eric W. Biederman0625c882012-02-07 16:48:55 -08002142 return uid_valid(tun->owner)?
2143 sprintf(buf, "%u\n",
2144 from_kuid_munged(current_user_ns(), tun->owner)):
2145 sprintf(buf, "-1\n");
David Woodhouse980c9e82009-05-09 22:54:21 -07002146}
2147
2148static ssize_t tun_show_group(struct device *dev, struct device_attribute *attr,
2149 char *buf)
2150{
2151 struct tun_struct *tun = netdev_priv(to_net_dev(dev));
Eric W. Biederman0625c882012-02-07 16:48:55 -08002152 return gid_valid(tun->group) ?
2153 sprintf(buf, "%u\n",
2154 from_kgid_munged(current_user_ns(), tun->group)):
2155 sprintf(buf, "-1\n");
David Woodhouse980c9e82009-05-09 22:54:21 -07002156}
2157
2158static DEVICE_ATTR(tun_flags, 0444, tun_show_flags, NULL);
2159static DEVICE_ATTR(owner, 0444, tun_show_owner, NULL);
2160static DEVICE_ATTR(group, 0444, tun_show_group, NULL);
2161
Takashi Iwaic4d33e22015-02-04 14:37:34 +01002162static struct attribute *tun_dev_attrs[] = {
2163 &dev_attr_tun_flags.attr,
2164 &dev_attr_owner.attr,
2165 &dev_attr_group.attr,
2166 NULL
2167};
2168
2169static const struct attribute_group tun_attr_group = {
2170 .attrs = tun_dev_attrs
2171};
2172
Pavel Emelyanovd647a592008-04-16 00:41:16 -07002173static int tun_set_iff(struct net *net, struct file *file, struct ifreq *ifr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002174{
2175 struct tun_struct *tun;
Jason Wang54f968d2012-10-31 19:45:57 +00002176 struct tun_file *tfile = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002177 struct net_device *dev;
2178 int err;
2179
Jason Wang7c0c3b12013-01-11 16:59:33 +00002180 if (tfile->detached)
2181 return -EINVAL;
2182
Petar Penkov90e33d42017-09-22 13:49:15 -07002183 if ((ifr->ifr_flags & IFF_NAPI_FRAGS)) {
2184 if (!capable(CAP_NET_ADMIN))
2185 return -EPERM;
2186
2187 if (!(ifr->ifr_flags & IFF_NAPI) ||
2188 (ifr->ifr_flags & TUN_TYPE_MASK) != IFF_TAP)
2189 return -EINVAL;
2190 }
2191
Eric W. Biederman74a3e5a2009-01-20 10:56:20 +00002192 dev = __dev_get_by_name(net, ifr->ifr_name);
2193 if (dev) {
David Woodhousef85ba782009-04-27 03:23:54 -07002194 if (ifr->ifr_flags & IFF_TUN_EXCL)
2195 return -EBUSY;
Eric W. Biederman74a3e5a2009-01-20 10:56:20 +00002196 if ((ifr->ifr_flags & IFF_TUN) && dev->netdev_ops == &tun_netdev_ops)
2197 tun = netdev_priv(dev);
2198 else if ((ifr->ifr_flags & IFF_TAP) && dev->netdev_ops == &tap_netdev_ops)
2199 tun = netdev_priv(dev);
2200 else
2201 return -EINVAL;
2202
Jason Wang8e6d91a2013-05-28 18:32:11 +00002203 if (!!(ifr->ifr_flags & IFF_MULTI_QUEUE) !=
Michael S. Tsirkin40630b82014-11-19 15:17:31 +02002204 !!(tun->flags & IFF_MULTI_QUEUE))
Jason Wang8e6d91a2013-05-28 18:32:11 +00002205 return -EINVAL;
2206
Jason Wangcde8b152012-10-31 19:46:01 +00002207 if (tun_not_capable(tun))
Paul Moore2b980db2009-08-28 18:12:43 -04002208 return -EPERM;
Paul Moore5dbbaf22013-01-14 07:12:19 +00002209 err = security_tun_dev_open(tun->security);
Paul Moore2b980db2009-08-28 18:12:43 -04002210 if (err < 0)
2211 return err;
2212
Petar Penkov94317092017-09-22 13:49:14 -07002213 err = tun_attach(tun, file, ifr->ifr_flags & IFF_NOFILTER,
2214 ifr->ifr_flags & IFF_NAPI);
Eric W. Biedermana7385ba2009-01-20 10:57:48 +00002215 if (err < 0)
2216 return err;
Jason Wang4008e972012-12-13 23:53:30 +00002217
Michael S. Tsirkin40630b82014-11-19 15:17:31 +02002218 if (tun->flags & IFF_MULTI_QUEUE &&
Jason Wange8dbad62013-04-22 20:40:39 +00002219 (tun->numqueues + tun->numdisabled > 1)) {
2220 /* One or more queue has already been attached, no need
2221 * to initialize the device again.
2222 */
2223 return 0;
2224 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002225 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002226 else {
2227 char *name;
2228 unsigned long flags = 0;
Jason Wangedfb6a12013-01-23 03:59:12 +00002229 int queues = ifr->ifr_flags & IFF_MULTI_QUEUE ?
2230 MAX_TAP_QUEUES : 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002231
Eric W. Biedermanc260b772012-11-18 21:34:11 +00002232 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
David Woodhouseca6bb5d2006-06-22 16:07:52 -07002233 return -EPERM;
Paul Moore2b980db2009-08-28 18:12:43 -04002234 err = security_tun_dev_create();
2235 if (err < 0)
2236 return err;
David Woodhouseca6bb5d2006-06-22 16:07:52 -07002237
Linus Torvalds1da177e2005-04-16 15:20:36 -07002238 /* Set dev type */
2239 if (ifr->ifr_flags & IFF_TUN) {
2240 /* TUN device */
Michael S. Tsirkin40630b82014-11-19 15:17:31 +02002241 flags |= IFF_TUN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002242 name = "tun%d";
2243 } else if (ifr->ifr_flags & IFF_TAP) {
2244 /* TAP device */
Michael S. Tsirkin40630b82014-11-19 15:17:31 +02002245 flags |= IFF_TAP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002246 name = "tap%d";
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002247 } else
Kusanagi Kouichi36989b92009-09-16 21:36:13 +00002248 return -EINVAL;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002249
Linus Torvalds1da177e2005-04-16 15:20:36 -07002250 if (*ifr->ifr_name)
2251 name = ifr->ifr_name;
2252
Jason Wangc8d68e62012-10-31 19:46:00 +00002253 dev = alloc_netdev_mqs(sizeof(struct tun_struct), name,
Tom Gundersenc835a672014-07-14 16:37:24 +02002254 NET_NAME_UNKNOWN, tun_setup, queues,
2255 queues);
Jason Wangedfb6a12013-01-23 03:59:12 +00002256
Linus Torvalds1da177e2005-04-16 15:20:36 -07002257 if (!dev)
2258 return -ENOMEM;
Cong Wang0ad646c2017-10-13 11:58:53 -07002259 err = dev_get_valid_name(net, dev, name);
Julien Gomes5c25f652017-10-25 11:50:50 -07002260 if (err < 0)
Cong Wang0ad646c2017-10-13 11:58:53 -07002261 goto err_free_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002262
Pavel Emelyanovfc54c652008-04-16 00:41:53 -07002263 dev_net_set(dev, net);
Eric W. Biedermanf019a7a2009-01-21 16:02:16 -08002264 dev->rtnl_link_ops = &tun_link_ops;
Pavel Emelyanovfb7589a2013-08-21 14:31:38 +04002265 dev->ifindex = tfile->ifindex;
Takashi Iwaic4d33e22015-02-04 14:37:34 +01002266 dev->sysfs_groups[0] = &tun_attr_group;
Stephen Hemminger758e43b2008-11-19 22:10:37 -08002267
Linus Torvalds1da177e2005-04-16 15:20:36 -07002268 tun = netdev_priv(dev);
2269 tun->dev = dev;
2270 tun->flags = flags;
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -07002271 tun->txflt.count = 0;
Michael S. Tsirkind9d52b52010-03-17 17:45:01 +02002272 tun->vnet_hdr_sz = sizeof(struct virtio_net_hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002273
Paolo Abenieaea34b2016-02-26 10:45:40 +01002274 tun->align = NET_SKB_PAD;
Jason Wang54f968d2012-10-31 19:45:57 +00002275 tun->filter_attached = false;
2276 tun->sndbuf = tfile->socket.sk->sk_sndbuf;
Jason Wang5503fce2017-01-18 15:02:03 +08002277 tun->rx_batched = 0;
Herbert Xu33dccbb2009-02-05 21:25:32 -08002278
Paolo Abeni608b9972016-04-13 10:52:20 +02002279 tun->pcpu_stats = netdev_alloc_pcpu_stats(struct tun_pcpu_stats);
2280 if (!tun->pcpu_stats) {
2281 err = -ENOMEM;
2282 goto err_free_dev;
2283 }
2284
Jason Wang96442e422012-10-31 19:46:02 +00002285 spin_lock_init(&tun->lock);
2286
Paul Moore5dbbaf22013-01-14 07:12:19 +00002287 err = security_tun_dev_alloc_security(&tun->security);
2288 if (err < 0)
Paolo Abeni608b9972016-04-13 10:52:20 +02002289 goto err_free_stat;
Paul Moore2b980db2009-08-28 18:12:43 -04002290
Linus Torvalds1da177e2005-04-16 15:20:36 -07002291 tun_net_init(dev);
Pavel Emelyanov944a1372013-06-11 17:01:08 +04002292 tun_flow_init(tun);
Jason Wang96442e422012-10-31 19:46:02 +00002293
Michał Mirosław88255372011-04-19 06:13:10 +00002294 dev->hw_features = NETIF_F_SG | NETIF_F_FRAGLIST |
Jason Wang6680ec62013-07-25 13:00:33 +08002295 TUN_USER_FEATURES | NETIF_F_HW_VLAN_CTAG_TX |
2296 NETIF_F_HW_VLAN_STAG_TX;
Paolo Abeni2a2bbf12016-04-14 18:39:39 +02002297 dev->features = dev->hw_features | NETIF_F_LLTX;
Fernando Luis Vazquez Cao6671b222014-02-18 21:20:09 +09002298 dev->vlan_features = dev->features &
2299 ~(NETIF_F_HW_VLAN_CTAG_TX |
2300 NETIF_F_HW_VLAN_STAG_TX);
Michał Mirosław88255372011-04-19 06:13:10 +00002301
Jason Wang4008e972012-12-13 23:53:30 +00002302 INIT_LIST_HEAD(&tun->disabled);
Petar Penkov94317092017-09-22 13:49:14 -07002303 err = tun_attach(tun, file, false, ifr->ifr_flags & IFF_NAPI);
Jason Wangeb0fb362012-12-02 17:19:45 +00002304 if (err < 0)
Jason Wang662ca432013-09-11 18:09:48 +08002305 goto err_free_flow;
Jason Wangeb0fb362012-12-02 17:19:45 +00002306
Linus Torvalds1da177e2005-04-16 15:20:36 -07002307 err = register_netdevice(tun->dev);
2308 if (err < 0)
Jason Wang662ca432013-09-11 18:09:48 +08002309 goto err_detach;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002310 }
2311
Michael S. Tsirkinaf668b32013-01-28 00:38:02 +00002312 netif_carrier_on(tun->dev);
2313
Joe Perches6b8a66e2011-03-02 07:18:10 +00002314 tun_debug(KERN_INFO, tun, "tun_set_iff\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002315
Michael S. Tsirkin031f5e032014-11-19 14:44:40 +02002316 tun->flags = (tun->flags & ~TUN_FEATURES) |
2317 (ifr->ifr_flags & TUN_FEATURES);
Jason Wangc8d68e62012-10-31 19:46:00 +00002318
Max Krasnyanskye35259a2008-07-10 16:59:11 -07002319 /* Make sure persistent devices do not get stuck in
2320 * xoff state.
2321 */
2322 if (netif_running(tun->dev))
Jason Wangc8d68e62012-10-31 19:46:00 +00002323 netif_tx_wake_all_queues(tun->dev);
Max Krasnyanskye35259a2008-07-10 16:59:11 -07002324
Linus Torvalds1da177e2005-04-16 15:20:36 -07002325 strcpy(ifr->ifr_name, tun->dev->name);
2326 return 0;
2327
Jason Wang662ca432013-09-11 18:09:48 +08002328err_detach:
2329 tun_detach_all(dev);
Eric Dumazetff244c62017-08-18 13:39:56 -07002330 /* register_netdevice() already called tun_free_netdev() */
2331 goto err_free_dev;
2332
Jason Wang662ca432013-09-11 18:09:48 +08002333err_free_flow:
2334 tun_flow_uninit(tun);
2335 security_tun_dev_free_security(tun->security);
Paolo Abeni608b9972016-04-13 10:52:20 +02002336err_free_stat:
2337 free_percpu(tun->pcpu_stats);
Jason Wang662ca432013-09-11 18:09:48 +08002338err_free_dev:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002339 free_netdev(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002340 return err;
2341}
2342
Rami Rosen9ce99cf2012-11-23 03:58:10 +00002343static void tun_get_iff(struct net *net, struct tun_struct *tun,
Herbert Xu876bfd42009-08-06 14:22:44 +00002344 struct ifreq *ifr)
Mark McLoughline3b99552008-08-15 15:09:56 -07002345{
Joe Perches6b8a66e2011-03-02 07:18:10 +00002346 tun_debug(KERN_INFO, tun, "tun_get_iff\n");
Mark McLoughline3b99552008-08-15 15:09:56 -07002347
2348 strcpy(ifr->ifr_name, tun->dev->name);
2349
David Woodhouse980c9e82009-05-09 22:54:21 -07002350 ifr->ifr_flags = tun_flags(tun);
Mark McLoughline3b99552008-08-15 15:09:56 -07002351
Mark McLoughline3b99552008-08-15 15:09:56 -07002352}
2353
Rusty Russell5228ddc2008-07-03 03:46:16 -07002354/* This is like a cut-down ethtool ops, except done via tun fd so no
2355 * privs required. */
Michał Mirosław88255372011-04-19 06:13:10 +00002356static int set_offload(struct tun_struct *tun, unsigned long arg)
Rusty Russell5228ddc2008-07-03 03:46:16 -07002357{
Michał Mirosławc8f44af2011-11-15 15:29:55 +00002358 netdev_features_t features = 0;
Rusty Russell5228ddc2008-07-03 03:46:16 -07002359
2360 if (arg & TUN_F_CSUM) {
Michał Mirosław88255372011-04-19 06:13:10 +00002361 features |= NETIF_F_HW_CSUM;
Rusty Russell5228ddc2008-07-03 03:46:16 -07002362 arg &= ~TUN_F_CSUM;
2363
2364 if (arg & (TUN_F_TSO4|TUN_F_TSO6)) {
2365 if (arg & TUN_F_TSO_ECN) {
2366 features |= NETIF_F_TSO_ECN;
2367 arg &= ~TUN_F_TSO_ECN;
2368 }
2369 if (arg & TUN_F_TSO4)
2370 features |= NETIF_F_TSO;
2371 if (arg & TUN_F_TSO6)
2372 features |= NETIF_F_TSO6;
2373 arg &= ~(TUN_F_TSO4|TUN_F_TSO6);
2374 }
2375 }
2376
2377 /* This gives the user a way to test for new features in future by
2378 * trying to set them. */
2379 if (arg)
2380 return -EINVAL;
2381
Michał Mirosław88255372011-04-19 06:13:10 +00002382 tun->set_features = features;
Yaroslav Isakov09050952017-03-16 22:44:10 +03002383 tun->dev->wanted_features &= ~TUN_USER_FEATURES;
2384 tun->dev->wanted_features |= features;
Michał Mirosław88255372011-04-19 06:13:10 +00002385 netdev_update_features(tun->dev);
Rusty Russell5228ddc2008-07-03 03:46:16 -07002386
2387 return 0;
2388}
2389
Jason Wangc8d68e62012-10-31 19:46:00 +00002390static void tun_detach_filter(struct tun_struct *tun, int n)
2391{
2392 int i;
2393 struct tun_file *tfile;
2394
2395 for (i = 0; i < n; i++) {
Jason Wangb8deabd2013-01-11 16:59:32 +00002396 tfile = rtnl_dereference(tun->tfiles[i]);
Hannes Frederic Sowa8ced4252016-04-05 17:10:16 +02002397 lock_sock(tfile->socket.sk);
2398 sk_detach_filter(tfile->socket.sk);
2399 release_sock(tfile->socket.sk);
Jason Wangc8d68e62012-10-31 19:46:00 +00002400 }
2401
2402 tun->filter_attached = false;
2403}
2404
2405static int tun_attach_filter(struct tun_struct *tun)
2406{
2407 int i, ret = 0;
2408 struct tun_file *tfile;
2409
2410 for (i = 0; i < tun->numqueues; i++) {
Jason Wangb8deabd2013-01-11 16:59:32 +00002411 tfile = rtnl_dereference(tun->tfiles[i]);
Hannes Frederic Sowa8ced4252016-04-05 17:10:16 +02002412 lock_sock(tfile->socket.sk);
2413 ret = sk_attach_filter(&tun->fprog, tfile->socket.sk);
2414 release_sock(tfile->socket.sk);
Jason Wangc8d68e62012-10-31 19:46:00 +00002415 if (ret) {
2416 tun_detach_filter(tun, i);
2417 return ret;
2418 }
2419 }
2420
2421 tun->filter_attached = true;
2422 return ret;
2423}
2424
2425static void tun_set_sndbuf(struct tun_struct *tun)
2426{
2427 struct tun_file *tfile;
2428 int i;
2429
2430 for (i = 0; i < tun->numqueues; i++) {
Jason Wangb8deabd2013-01-11 16:59:32 +00002431 tfile = rtnl_dereference(tun->tfiles[i]);
Jason Wangc8d68e62012-10-31 19:46:00 +00002432 tfile->socket.sk->sk_sndbuf = tun->sndbuf;
2433 }
2434}
2435
Jason Wangcde8b152012-10-31 19:46:01 +00002436static int tun_set_queue(struct file *file, struct ifreq *ifr)
2437{
2438 struct tun_file *tfile = file->private_data;
2439 struct tun_struct *tun;
Jason Wangcde8b152012-10-31 19:46:01 +00002440 int ret = 0;
2441
2442 rtnl_lock();
2443
2444 if (ifr->ifr_flags & IFF_ATTACH_QUEUE) {
Jason Wang4008e972012-12-13 23:53:30 +00002445 tun = tfile->detached;
Paul Moore5dbbaf22013-01-14 07:12:19 +00002446 if (!tun) {
Jason Wangcde8b152012-10-31 19:46:01 +00002447 ret = -EINVAL;
Paul Moore5dbbaf22013-01-14 07:12:19 +00002448 goto unlock;
2449 }
2450 ret = security_tun_dev_attach_queue(tun->security);
2451 if (ret < 0)
2452 goto unlock;
Petar Penkov94317092017-09-22 13:49:14 -07002453 ret = tun_attach(tun, file, false, tun->flags & IFF_NAPI);
Jason Wang4008e972012-12-13 23:53:30 +00002454 } else if (ifr->ifr_flags & IFF_DETACH_QUEUE) {
Jason Wangb8deabd2013-01-11 16:59:32 +00002455 tun = rtnl_dereference(tfile->tun);
Michael S. Tsirkin40630b82014-11-19 15:17:31 +02002456 if (!tun || !(tun->flags & IFF_MULTI_QUEUE) || tfile->detached)
Jason Wang4008e972012-12-13 23:53:30 +00002457 ret = -EINVAL;
2458 else
2459 __tun_detach(tfile, false);
2460 } else
Jason Wangcde8b152012-10-31 19:46:01 +00002461 ret = -EINVAL;
2462
Paul Moore5dbbaf22013-01-14 07:12:19 +00002463unlock:
Jason Wangcde8b152012-10-31 19:46:01 +00002464 rtnl_unlock();
2465 return ret;
2466}
2467
Arnd Bergmann50857e22009-11-06 22:52:32 -08002468static long __tun_chr_ioctl(struct file *file, unsigned int cmd,
2469 unsigned long arg, int ifreq_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002470{
Eric W. Biederman36b50ba2009-01-20 11:01:48 +00002471 struct tun_file *tfile = file->private_data;
Eric W. Biederman631ab462009-01-20 11:00:40 +00002472 struct tun_struct *tun;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002473 void __user* argp = (void __user*)arg;
2474 struct ifreq ifr;
Eric W. Biederman0625c882012-02-07 16:48:55 -08002475 kuid_t owner;
2476 kgid_t group;
Herbert Xu33dccbb2009-02-05 21:25:32 -08002477 int sndbuf;
Michael S. Tsirkind9d52b52010-03-17 17:45:01 +02002478 int vnet_hdr_sz;
Pavel Emelyanovfb7589a2013-08-21 14:31:38 +04002479 unsigned int ifindex;
Michael S. Tsirkin1cf8e412014-12-16 15:05:06 +02002480 int le;
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -07002481 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002482
Gao Feng20861f22016-10-27 09:05:22 +08002483 if (cmd == TUNSETIFF || cmd == TUNSETQUEUE || _IOC_TYPE(cmd) == SOCK_IOC_TYPE) {
Arnd Bergmann50857e22009-11-06 22:52:32 -08002484 if (copy_from_user(&ifr, argp, ifreq_len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002485 return -EFAULT;
David S. Miller8bbb1812012-07-30 14:52:48 -07002486 } else {
Mathias Krausea117dac2012-07-29 19:45:14 +00002487 memset(&ifr, 0, sizeof(ifr));
David S. Miller8bbb1812012-07-30 14:52:48 -07002488 }
Eric W. Biederman631ab462009-01-20 11:00:40 +00002489 if (cmd == TUNGETFEATURES) {
2490 /* Currently this just means: "what IFF flags are valid?".
2491 * This is needed because we never checked for invalid flags on
Michael S. Tsirkin031f5e032014-11-19 14:44:40 +02002492 * TUNSETIFF.
2493 */
2494 return put_user(IFF_TUN | IFF_TAP | TUN_FEATURES,
Eric W. Biederman631ab462009-01-20 11:00:40 +00002495 (unsigned int __user*)argp);
Jason Wangcde8b152012-10-31 19:46:01 +00002496 } else if (cmd == TUNSETQUEUE)
2497 return tun_set_queue(file, &ifr);
Eric W. Biederman631ab462009-01-20 11:00:40 +00002498
Jason Wangc8d68e62012-10-31 19:46:00 +00002499 ret = 0;
Herbert Xu876bfd42009-08-06 14:22:44 +00002500 rtnl_lock();
2501
yuan linyu9484dc72017-09-23 22:36:52 +08002502 tun = tun_get(tfile);
Gao Feng0f16bc12016-10-25 22:26:09 +08002503 if (cmd == TUNSETIFF) {
2504 ret = -EEXIST;
2505 if (tun)
2506 goto unlock;
2507
Linus Torvalds1da177e2005-04-16 15:20:36 -07002508 ifr.ifr_name[IFNAMSIZ-1] = '\0';
2509
Eric W. Biederman140e807da2015-05-08 21:07:08 -05002510 ret = tun_set_iff(sock_net(&tfile->sk), file, &ifr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002511
Herbert Xu876bfd42009-08-06 14:22:44 +00002512 if (ret)
2513 goto unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002514
Arnd Bergmann50857e22009-11-06 22:52:32 -08002515 if (copy_to_user(argp, &ifr, ifreq_len))
Herbert Xu876bfd42009-08-06 14:22:44 +00002516 ret = -EFAULT;
2517 goto unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002518 }
Pavel Emelyanovfb7589a2013-08-21 14:31:38 +04002519 if (cmd == TUNSETIFINDEX) {
2520 ret = -EPERM;
2521 if (tun)
2522 goto unlock;
2523
2524 ret = -EFAULT;
2525 if (copy_from_user(&ifindex, argp, sizeof(ifindex)))
2526 goto unlock;
2527
2528 ret = 0;
2529 tfile->ifindex = ifindex;
2530 goto unlock;
2531 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002532
Herbert Xu876bfd42009-08-06 14:22:44 +00002533 ret = -EBADFD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002534 if (!tun)
Herbert Xu876bfd42009-08-06 14:22:44 +00002535 goto unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002536
Jason Wang1e588332012-10-31 19:45:56 +00002537 tun_debug(KERN_INFO, tun, "tun_chr_ioctl cmd %u\n", cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002538
Eric W. Biederman631ab462009-01-20 11:00:40 +00002539 ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002540 switch (cmd) {
Mark McLoughline3b99552008-08-15 15:09:56 -07002541 case TUNGETIFF:
Rami Rosen9ce99cf2012-11-23 03:58:10 +00002542 tun_get_iff(current->nsproxy->net_ns, tun, &ifr);
Mark McLoughline3b99552008-08-15 15:09:56 -07002543
Pavel Emelyanov3d407a82013-08-21 14:32:00 +04002544 if (tfile->detached)
2545 ifr.ifr_flags |= IFF_DETACH_QUEUE;
Pavel Emelyanov849c9b62013-08-21 14:32:21 +04002546 if (!tfile->socket.sk->sk_filter)
2547 ifr.ifr_flags |= IFF_NOFILTER;
Pavel Emelyanov3d407a82013-08-21 14:32:00 +04002548
Arnd Bergmann50857e22009-11-06 22:52:32 -08002549 if (copy_to_user(argp, &ifr, ifreq_len))
Eric W. Biederman631ab462009-01-20 11:00:40 +00002550 ret = -EFAULT;
Mark McLoughline3b99552008-08-15 15:09:56 -07002551 break;
2552
Linus Torvalds1da177e2005-04-16 15:20:36 -07002553 case TUNSETNOCSUM:
2554 /* Disable/Enable checksum */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002555
Michał Mirosław88255372011-04-19 06:13:10 +00002556 /* [unimplemented] */
2557 tun_debug(KERN_INFO, tun, "ignored: set checksum %s\n",
Joe Perches6b8a66e2011-03-02 07:18:10 +00002558 arg ? "disabled" : "enabled");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002559 break;
2560
2561 case TUNSETPERSIST:
Jason Wang54f968d2012-10-31 19:45:57 +00002562 /* Disable/Enable persist mode. Keep an extra reference to the
2563 * module to prevent the module being unprobed.
2564 */
Michael S. Tsirkin40630b82014-11-19 15:17:31 +02002565 if (arg && !(tun->flags & IFF_PERSIST)) {
2566 tun->flags |= IFF_PERSIST;
Jason Wang54f968d2012-10-31 19:45:57 +00002567 __module_get(THIS_MODULE);
Jason Wangdd38bd82013-01-11 16:59:34 +00002568 }
Michael S. Tsirkin40630b82014-11-19 15:17:31 +02002569 if (!arg && (tun->flags & IFF_PERSIST)) {
2570 tun->flags &= ~IFF_PERSIST;
Jason Wang54f968d2012-10-31 19:45:57 +00002571 module_put(THIS_MODULE);
2572 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002573
Joe Perches6b8a66e2011-03-02 07:18:10 +00002574 tun_debug(KERN_INFO, tun, "persist %s\n",
2575 arg ? "enabled" : "disabled");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002576 break;
2577
2578 case TUNSETOWNER:
2579 /* Set owner of the device */
Eric W. Biederman0625c882012-02-07 16:48:55 -08002580 owner = make_kuid(current_user_ns(), arg);
2581 if (!uid_valid(owner)) {
2582 ret = -EINVAL;
2583 break;
2584 }
2585 tun->owner = owner;
Jason Wang1e588332012-10-31 19:45:56 +00002586 tun_debug(KERN_INFO, tun, "owner set to %u\n",
Eric W. Biederman0625c882012-02-07 16:48:55 -08002587 from_kuid(&init_user_ns, tun->owner));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002588 break;
2589
Guido Guenther8c644622007-07-02 22:50:25 -07002590 case TUNSETGROUP:
2591 /* Set group of the device */
Eric W. Biederman0625c882012-02-07 16:48:55 -08002592 group = make_kgid(current_user_ns(), arg);
2593 if (!gid_valid(group)) {
2594 ret = -EINVAL;
2595 break;
2596 }
2597 tun->group = group;
Jason Wang1e588332012-10-31 19:45:56 +00002598 tun_debug(KERN_INFO, tun, "group set to %u\n",
Eric W. Biederman0625c882012-02-07 16:48:55 -08002599 from_kgid(&init_user_ns, tun->group));
Guido Guenther8c644622007-07-02 22:50:25 -07002600 break;
2601
Mike Kershawff4cc3a2005-09-01 17:40:05 -07002602 case TUNSETLINK:
2603 /* Only allow setting the type when the interface is down */
2604 if (tun->dev->flags & IFF_UP) {
Joe Perches6b8a66e2011-03-02 07:18:10 +00002605 tun_debug(KERN_INFO, tun,
2606 "Linktype set failed because interface is up\n");
David S. Miller48abfe02008-04-23 19:37:58 -07002607 ret = -EBUSY;
Mike Kershawff4cc3a2005-09-01 17:40:05 -07002608 } else {
2609 tun->dev->type = (int) arg;
Joe Perches6b8a66e2011-03-02 07:18:10 +00002610 tun_debug(KERN_INFO, tun, "linktype set to %d\n",
2611 tun->dev->type);
David S. Miller48abfe02008-04-23 19:37:58 -07002612 ret = 0;
Mike Kershawff4cc3a2005-09-01 17:40:05 -07002613 }
Eric W. Biederman631ab462009-01-20 11:00:40 +00002614 break;
Mike Kershawff4cc3a2005-09-01 17:40:05 -07002615
Linus Torvalds1da177e2005-04-16 15:20:36 -07002616#ifdef TUN_DEBUG
2617 case TUNSETDEBUG:
2618 tun->debug = arg;
2619 break;
2620#endif
Rusty Russell5228ddc2008-07-03 03:46:16 -07002621 case TUNSETOFFLOAD:
Michał Mirosław88255372011-04-19 06:13:10 +00002622 ret = set_offload(tun, arg);
Eric W. Biederman631ab462009-01-20 11:00:40 +00002623 break;
Rusty Russell5228ddc2008-07-03 03:46:16 -07002624
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -07002625 case TUNSETTXFILTER:
2626 /* Can be set only for TAPs */
Eric W. Biederman631ab462009-01-20 11:00:40 +00002627 ret = -EINVAL;
Michael S. Tsirkin40630b82014-11-19 15:17:31 +02002628 if ((tun->flags & TUN_TYPE_MASK) != IFF_TAP)
Eric W. Biederman631ab462009-01-20 11:00:40 +00002629 break;
Harvey Harrisonc0e5a8c2008-07-16 12:45:34 -07002630 ret = update_filter(&tun->txflt, (void __user *)arg);
Eric W. Biederman631ab462009-01-20 11:00:40 +00002631 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002632
2633 case SIOCGIFHWADDR:
Uwe Kleine-Königb5950762010-11-01 15:38:34 -04002634 /* Get hw address */
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -07002635 memcpy(ifr.ifr_hwaddr.sa_data, tun->dev->dev_addr, ETH_ALEN);
2636 ifr.ifr_hwaddr.sa_family = tun->dev->type;
Arnd Bergmann50857e22009-11-06 22:52:32 -08002637 if (copy_to_user(argp, &ifr, ifreq_len))
Eric W. Biederman631ab462009-01-20 11:00:40 +00002638 ret = -EFAULT;
2639 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002640
2641 case SIOCSIFHWADDR:
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -07002642 /* Set hw address */
Joe Perches6b8a66e2011-03-02 07:18:10 +00002643 tun_debug(KERN_DEBUG, tun, "set hw address: %pM\n",
2644 ifr.ifr_hwaddr.sa_data);
Kim B. Heino40102372008-02-29 12:26:21 -08002645
Kim B. Heino40102372008-02-29 12:26:21 -08002646 ret = dev_set_mac_address(tun->dev, &ifr.ifr_hwaddr);
Eric W. Biederman631ab462009-01-20 11:00:40 +00002647 break;
Herbert Xu33dccbb2009-02-05 21:25:32 -08002648
2649 case TUNGETSNDBUF:
Jason Wang54f968d2012-10-31 19:45:57 +00002650 sndbuf = tfile->socket.sk->sk_sndbuf;
Herbert Xu33dccbb2009-02-05 21:25:32 -08002651 if (copy_to_user(argp, &sndbuf, sizeof(sndbuf)))
2652 ret = -EFAULT;
2653 break;
2654
2655 case TUNSETSNDBUF:
2656 if (copy_from_user(&sndbuf, argp, sizeof(sndbuf))) {
2657 ret = -EFAULT;
2658 break;
2659 }
Craig Gallek931619222017-10-30 18:50:11 -04002660 if (sndbuf <= 0) {
2661 ret = -EINVAL;
2662 break;
2663 }
Herbert Xu33dccbb2009-02-05 21:25:32 -08002664
Jason Wangc8d68e62012-10-31 19:46:00 +00002665 tun->sndbuf = sndbuf;
2666 tun_set_sndbuf(tun);
Herbert Xu33dccbb2009-02-05 21:25:32 -08002667 break;
2668
Michael S. Tsirkind9d52b52010-03-17 17:45:01 +02002669 case TUNGETVNETHDRSZ:
2670 vnet_hdr_sz = tun->vnet_hdr_sz;
2671 if (copy_to_user(argp, &vnet_hdr_sz, sizeof(vnet_hdr_sz)))
2672 ret = -EFAULT;
2673 break;
2674
2675 case TUNSETVNETHDRSZ:
2676 if (copy_from_user(&vnet_hdr_sz, argp, sizeof(vnet_hdr_sz))) {
2677 ret = -EFAULT;
2678 break;
2679 }
2680 if (vnet_hdr_sz < (int)sizeof(struct virtio_net_hdr)) {
2681 ret = -EINVAL;
2682 break;
2683 }
2684
2685 tun->vnet_hdr_sz = vnet_hdr_sz;
2686 break;
2687
Michael S. Tsirkin1cf8e412014-12-16 15:05:06 +02002688 case TUNGETVNETLE:
2689 le = !!(tun->flags & TUN_VNET_LE);
2690 if (put_user(le, (int __user *)argp))
2691 ret = -EFAULT;
2692 break;
2693
2694 case TUNSETVNETLE:
2695 if (get_user(le, (int __user *)argp)) {
2696 ret = -EFAULT;
2697 break;
2698 }
2699 if (le)
2700 tun->flags |= TUN_VNET_LE;
2701 else
2702 tun->flags &= ~TUN_VNET_LE;
2703 break;
2704
Greg Kurz8b8e6582015-04-24 14:50:36 +02002705 case TUNGETVNETBE:
2706 ret = tun_get_vnet_be(tun, argp);
2707 break;
2708
2709 case TUNSETVNETBE:
2710 ret = tun_set_vnet_be(tun, argp);
2711 break;
2712
Michael S. Tsirkin99405162010-02-14 01:01:10 +00002713 case TUNATTACHFILTER:
2714 /* Can be set only for TAPs */
2715 ret = -EINVAL;
Michael S. Tsirkin40630b82014-11-19 15:17:31 +02002716 if ((tun->flags & TUN_TYPE_MASK) != IFF_TAP)
Michael S. Tsirkin99405162010-02-14 01:01:10 +00002717 break;
2718 ret = -EFAULT;
Jason Wang54f968d2012-10-31 19:45:57 +00002719 if (copy_from_user(&tun->fprog, argp, sizeof(tun->fprog)))
Michael S. Tsirkin99405162010-02-14 01:01:10 +00002720 break;
2721
Jason Wangc8d68e62012-10-31 19:46:00 +00002722 ret = tun_attach_filter(tun);
Michael S. Tsirkin99405162010-02-14 01:01:10 +00002723 break;
2724
2725 case TUNDETACHFILTER:
2726 /* Can be set only for TAPs */
2727 ret = -EINVAL;
Michael S. Tsirkin40630b82014-11-19 15:17:31 +02002728 if ((tun->flags & TUN_TYPE_MASK) != IFF_TAP)
Michael S. Tsirkin99405162010-02-14 01:01:10 +00002729 break;
Jason Wangc8d68e62012-10-31 19:46:00 +00002730 ret = 0;
2731 tun_detach_filter(tun, tun->numqueues);
Michael S. Tsirkin99405162010-02-14 01:01:10 +00002732 break;
2733
Pavel Emelyanov76975e92013-08-21 14:32:39 +04002734 case TUNGETFILTER:
2735 ret = -EINVAL;
Michael S. Tsirkin40630b82014-11-19 15:17:31 +02002736 if ((tun->flags & TUN_TYPE_MASK) != IFF_TAP)
Pavel Emelyanov76975e92013-08-21 14:32:39 +04002737 break;
2738 ret = -EFAULT;
2739 if (copy_to_user(argp, &tun->fprog, sizeof(tun->fprog)))
2740 break;
2741 ret = 0;
2742 break;
2743
Linus Torvalds1da177e2005-04-16 15:20:36 -07002744 default:
Eric W. Biederman631ab462009-01-20 11:00:40 +00002745 ret = -EINVAL;
2746 break;
Joe Perchesee289b62010-05-17 22:47:34 -07002747 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002748
Herbert Xu876bfd42009-08-06 14:22:44 +00002749unlock:
2750 rtnl_unlock();
2751 if (tun)
2752 tun_put(tun);
Eric W. Biederman631ab462009-01-20 11:00:40 +00002753 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002754}
2755
Arnd Bergmann50857e22009-11-06 22:52:32 -08002756static long tun_chr_ioctl(struct file *file,
2757 unsigned int cmd, unsigned long arg)
2758{
2759 return __tun_chr_ioctl(file, cmd, arg, sizeof (struct ifreq));
2760}
2761
2762#ifdef CONFIG_COMPAT
2763static long tun_chr_compat_ioctl(struct file *file,
2764 unsigned int cmd, unsigned long arg)
2765{
2766 switch (cmd) {
2767 case TUNSETIFF:
2768 case TUNGETIFF:
2769 case TUNSETTXFILTER:
2770 case TUNGETSNDBUF:
2771 case TUNSETSNDBUF:
2772 case SIOCGIFHWADDR:
2773 case SIOCSIFHWADDR:
2774 arg = (unsigned long)compat_ptr(arg);
2775 break;
2776 default:
2777 arg = (compat_ulong_t)arg;
2778 break;
2779 }
2780
2781 /*
2782 * compat_ifreq is shorter than ifreq, so we must not access beyond
2783 * the end of that structure. All fields that are used in this
2784 * driver are compatible though, we don't need to convert the
2785 * contents.
2786 */
2787 return __tun_chr_ioctl(file, cmd, arg, sizeof(struct compat_ifreq));
2788}
2789#endif /* CONFIG_COMPAT */
2790
Linus Torvalds1da177e2005-04-16 15:20:36 -07002791static int tun_chr_fasync(int fd, struct file *file, int on)
2792{
Jason Wang54f968d2012-10-31 19:45:57 +00002793 struct tun_file *tfile = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002794 int ret;
2795
Jason Wang54f968d2012-10-31 19:45:57 +00002796 if ((ret = fasync_helper(fd, file, on, &tfile->fasync)) < 0)
Jonathan Corbet9d319522008-06-19 15:50:37 -06002797 goto out;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002798
Linus Torvalds1da177e2005-04-16 15:20:36 -07002799 if (on) {
Jeff Laytone0b93ed2014-08-22 11:27:32 -04002800 __f_setown(file, task_pid(current), PIDTYPE_PID, 0);
Jason Wang54f968d2012-10-31 19:45:57 +00002801 tfile->flags |= TUN_FASYNC;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002802 } else
Jason Wang54f968d2012-10-31 19:45:57 +00002803 tfile->flags &= ~TUN_FASYNC;
Jonathan Corbet9d319522008-06-19 15:50:37 -06002804 ret = 0;
2805out:
Jonathan Corbet9d319522008-06-19 15:50:37 -06002806 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002807}
2808
2809static int tun_chr_open(struct inode *inode, struct file * file)
2810{
Eric W. Biederman140e807da2015-05-08 21:07:08 -05002811 struct net *net = current->nsproxy->net_ns;
Eric W. Biederman631ab462009-01-20 11:00:40 +00002812 struct tun_file *tfile;
Thomas Gleixnerdeed49f2009-10-14 01:19:46 -07002813
Joe Perches6b8a66e2011-03-02 07:18:10 +00002814 DBG1(KERN_INFO, "tunX: tun_chr_open\n");
Eric W. Biederman631ab462009-01-20 11:00:40 +00002815
Eric W. Biederman140e807da2015-05-08 21:07:08 -05002816 tfile = (struct tun_file *)sk_alloc(net, AF_UNSPEC, GFP_KERNEL,
Eric W. Biederman11aa9c22015-05-08 21:09:13 -05002817 &tun_proto, 0);
Eric W. Biederman631ab462009-01-20 11:00:40 +00002818 if (!tfile)
2819 return -ENOMEM;
Monam Agarwalc9566742014-03-24 00:02:32 +05302820 RCU_INIT_POINTER(tfile->tun, NULL);
Jason Wang54f968d2012-10-31 19:45:57 +00002821 tfile->flags = 0;
Pavel Emelyanovfb7589a2013-08-21 14:31:38 +04002822 tfile->ifindex = 0;
Jason Wang54f968d2012-10-31 19:45:57 +00002823
Jason Wang54f968d2012-10-31 19:45:57 +00002824 init_waitqueue_head(&tfile->wq.wait);
Xi Wang9e641bd2014-05-16 15:11:48 -07002825 RCU_INIT_POINTER(tfile->socket.wq, &tfile->wq);
Jason Wang54f968d2012-10-31 19:45:57 +00002826
2827 tfile->socket.file = file;
2828 tfile->socket.ops = &tun_socket_ops;
2829
2830 sock_init_data(&tfile->socket, &tfile->sk);
Jason Wang54f968d2012-10-31 19:45:57 +00002831
2832 tfile->sk.sk_write_space = tun_sock_write_space;
2833 tfile->sk.sk_sndbuf = INT_MAX;
2834
Eric W. Biederman631ab462009-01-20 11:00:40 +00002835 file->private_data = tfile;
Jason Wang4008e972012-12-13 23:53:30 +00002836 INIT_LIST_HEAD(&tfile->next);
Jason Wang54f968d2012-10-31 19:45:57 +00002837
Jason Wang19a6afb2013-06-08 14:17:41 +08002838 sock_set_flag(&tfile->sk, SOCK_ZEROCOPY);
2839
Linus Torvalds1da177e2005-04-16 15:20:36 -07002840 return 0;
2841}
2842
2843static int tun_chr_close(struct inode *inode, struct file *file)
2844{
Eric W. Biederman631ab462009-01-20 11:00:40 +00002845 struct tun_file *tfile = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002846
Jason Wangc8d68e62012-10-31 19:46:00 +00002847 tun_detach(tfile, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002848
2849 return 0;
2850}
2851
Masatake YAMATO93e14b62014-01-29 16:43:31 +09002852#ifdef CONFIG_PROC_FS
yuan linyu9484dc72017-09-23 22:36:52 +08002853static void tun_chr_show_fdinfo(struct seq_file *m, struct file *file)
Masatake YAMATO93e14b62014-01-29 16:43:31 +09002854{
yuan linyu9484dc72017-09-23 22:36:52 +08002855 struct tun_file *tfile = file->private_data;
Masatake YAMATO93e14b62014-01-29 16:43:31 +09002856 struct tun_struct *tun;
2857 struct ifreq ifr;
2858
2859 memset(&ifr, 0, sizeof(ifr));
2860
2861 rtnl_lock();
yuan linyu9484dc72017-09-23 22:36:52 +08002862 tun = tun_get(tfile);
Masatake YAMATO93e14b62014-01-29 16:43:31 +09002863 if (tun)
2864 tun_get_iff(current->nsproxy->net_ns, tun, &ifr);
2865 rtnl_unlock();
2866
2867 if (tun)
2868 tun_put(tun);
2869
Joe Perchesa3816ab2014-09-29 16:08:25 -07002870 seq_printf(m, "iff:\t%s\n", ifr.ifr_name);
Masatake YAMATO93e14b62014-01-29 16:43:31 +09002871}
2872#endif
2873
Arjan van de Vend54b1fd2007-02-12 00:55:34 -08002874static const struct file_operations tun_fops = {
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002875 .owner = THIS_MODULE,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002876 .llseek = no_llseek,
Al Viro9b067032014-11-07 13:52:07 -05002877 .read_iter = tun_chr_read_iter,
Al Virof5ff53b2014-06-19 15:36:49 -04002878 .write_iter = tun_chr_write_iter,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002879 .poll = tun_chr_poll,
Arnd Bergmann50857e22009-11-06 22:52:32 -08002880 .unlocked_ioctl = tun_chr_ioctl,
2881#ifdef CONFIG_COMPAT
2882 .compat_ioctl = tun_chr_compat_ioctl,
2883#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002884 .open = tun_chr_open,
2885 .release = tun_chr_close,
Masatake YAMATO93e14b62014-01-29 16:43:31 +09002886 .fasync = tun_chr_fasync,
2887#ifdef CONFIG_PROC_FS
2888 .show_fdinfo = tun_chr_show_fdinfo,
2889#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002890};
2891
2892static struct miscdevice tun_miscdev = {
2893 .minor = TUN_MINOR,
2894 .name = "tun",
Kay Sieverse454cea2009-09-18 23:01:12 +02002895 .nodename = "net/tun",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002896 .fops = &tun_fops,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002897};
2898
2899/* ethtool interface */
2900
Philippe Reynes29ccc492017-03-11 22:03:50 +01002901static int tun_get_link_ksettings(struct net_device *dev,
2902 struct ethtool_link_ksettings *cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002903{
Philippe Reynes29ccc492017-03-11 22:03:50 +01002904 ethtool_link_ksettings_zero_link_mode(cmd, supported);
2905 ethtool_link_ksettings_zero_link_mode(cmd, advertising);
2906 cmd->base.speed = SPEED_10;
2907 cmd->base.duplex = DUPLEX_FULL;
2908 cmd->base.port = PORT_TP;
2909 cmd->base.phy_address = 0;
2910 cmd->base.autoneg = AUTONEG_DISABLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002911 return 0;
2912}
2913
2914static void tun_get_drvinfo(struct net_device *dev, struct ethtool_drvinfo *info)
2915{
2916 struct tun_struct *tun = netdev_priv(dev);
2917
Rick Jones33a5ba12011-11-15 14:59:53 +00002918 strlcpy(info->driver, DRV_NAME, sizeof(info->driver));
2919 strlcpy(info->version, DRV_VERSION, sizeof(info->version));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002920
2921 switch (tun->flags & TUN_TYPE_MASK) {
Michael S. Tsirkin40630b82014-11-19 15:17:31 +02002922 case IFF_TUN:
Rick Jones33a5ba12011-11-15 14:59:53 +00002923 strlcpy(info->bus_info, "tun", sizeof(info->bus_info));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002924 break;
Michael S. Tsirkin40630b82014-11-19 15:17:31 +02002925 case IFF_TAP:
Rick Jones33a5ba12011-11-15 14:59:53 +00002926 strlcpy(info->bus_info, "tap", sizeof(info->bus_info));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002927 break;
2928 }
2929}
2930
2931static u32 tun_get_msglevel(struct net_device *dev)
2932{
2933#ifdef TUN_DEBUG
2934 struct tun_struct *tun = netdev_priv(dev);
2935 return tun->debug;
2936#else
2937 return -EOPNOTSUPP;
2938#endif
2939}
2940
2941static void tun_set_msglevel(struct net_device *dev, u32 value)
2942{
2943#ifdef TUN_DEBUG
2944 struct tun_struct *tun = netdev_priv(dev);
2945 tun->debug = value;
2946#endif
2947}
2948
Jason Wang5503fce2017-01-18 15:02:03 +08002949static int tun_get_coalesce(struct net_device *dev,
2950 struct ethtool_coalesce *ec)
2951{
2952 struct tun_struct *tun = netdev_priv(dev);
2953
2954 ec->rx_max_coalesced_frames = tun->rx_batched;
2955
2956 return 0;
2957}
2958
2959static int tun_set_coalesce(struct net_device *dev,
2960 struct ethtool_coalesce *ec)
2961{
2962 struct tun_struct *tun = netdev_priv(dev);
2963
2964 if (ec->rx_max_coalesced_frames > NAPI_POLL_WEIGHT)
2965 tun->rx_batched = NAPI_POLL_WEIGHT;
2966 else
2967 tun->rx_batched = ec->rx_max_coalesced_frames;
2968
2969 return 0;
2970}
2971
Jeff Garzik7282d492006-09-13 14:30:00 -04002972static const struct ethtool_ops tun_ethtool_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002973 .get_drvinfo = tun_get_drvinfo,
2974 .get_msglevel = tun_get_msglevel,
2975 .set_msglevel = tun_set_msglevel,
Nolan Leakebee31362010-07-27 13:53:43 +00002976 .get_link = ethtool_op_get_link,
Richard Cochraneda29772013-07-19 19:40:10 +02002977 .get_ts_info = ethtool_op_get_ts_info,
Jason Wang5503fce2017-01-18 15:02:03 +08002978 .get_coalesce = tun_get_coalesce,
2979 .set_coalesce = tun_set_coalesce,
Philippe Reynes29ccc492017-03-11 22:03:50 +01002980 .get_link_ksettings = tun_get_link_ksettings,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002981};
2982
Jason Wang1576d982016-06-30 14:45:36 +08002983static int tun_queue_resize(struct tun_struct *tun)
2984{
2985 struct net_device *dev = tun->dev;
2986 struct tun_file *tfile;
2987 struct skb_array **arrays;
2988 int n = tun->numqueues + tun->numdisabled;
2989 int ret, i;
2990
stephen hemminger12039042017-08-15 10:29:16 -07002991 arrays = kmalloc_array(n, sizeof(*arrays), GFP_KERNEL);
Jason Wang1576d982016-06-30 14:45:36 +08002992 if (!arrays)
2993 return -ENOMEM;
2994
2995 for (i = 0; i < tun->numqueues; i++) {
2996 tfile = rtnl_dereference(tun->tfiles[i]);
2997 arrays[i] = &tfile->tx_array;
2998 }
2999 list_for_each_entry(tfile, &tun->disabled, next)
3000 arrays[i++] = &tfile->tx_array;
3001
3002 ret = skb_array_resize_multiple(arrays, n,
3003 dev->tx_queue_len, GFP_KERNEL);
3004
3005 kfree(arrays);
3006 return ret;
3007}
3008
3009static int tun_device_event(struct notifier_block *unused,
3010 unsigned long event, void *ptr)
3011{
3012 struct net_device *dev = netdev_notifier_info_to_dev(ptr);
3013 struct tun_struct *tun = netdev_priv(dev);
3014
Craig Gallek86dfb4ac2016-07-06 18:44:20 -04003015 if (dev->rtnl_link_ops != &tun_link_ops)
3016 return NOTIFY_DONE;
3017
Jason Wang1576d982016-06-30 14:45:36 +08003018 switch (event) {
3019 case NETDEV_CHANGE_TX_QUEUE_LEN:
3020 if (tun_queue_resize(tun))
3021 return NOTIFY_BAD;
3022 break;
3023 default:
3024 break;
3025 }
3026
3027 return NOTIFY_DONE;
3028}
3029
3030static struct notifier_block tun_notifier_block __read_mostly = {
3031 .notifier_call = tun_device_event,
3032};
Pavel Emelyanov79d17602008-04-16 00:40:46 -07003033
Linus Torvalds1da177e2005-04-16 15:20:36 -07003034static int __init tun_init(void)
3035{
3036 int ret = 0;
3037
Joe Perches6b8a66e2011-03-02 07:18:10 +00003038 pr_info("%s, %s\n", DRV_DESCRIPTION, DRV_VERSION);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003039
Eric W. Biedermanf019a7a2009-01-21 16:02:16 -08003040 ret = rtnl_link_register(&tun_link_ops);
Pavel Emelyanov79d17602008-04-16 00:40:46 -07003041 if (ret) {
Joe Perches6b8a66e2011-03-02 07:18:10 +00003042 pr_err("Can't register link_ops\n");
Eric W. Biedermanf019a7a2009-01-21 16:02:16 -08003043 goto err_linkops;
Pavel Emelyanov79d17602008-04-16 00:40:46 -07003044 }
3045
Linus Torvalds1da177e2005-04-16 15:20:36 -07003046 ret = misc_register(&tun_miscdev);
Pavel Emelyanov79d17602008-04-16 00:40:46 -07003047 if (ret) {
Joe Perches6b8a66e2011-03-02 07:18:10 +00003048 pr_err("Can't register misc device %d\n", TUN_MINOR);
Pavel Emelyanov79d17602008-04-16 00:40:46 -07003049 goto err_misc;
3050 }
Jason Wang1576d982016-06-30 14:45:36 +08003051
Tonghao Zhang5edfbd32017-07-20 02:41:34 -07003052 ret = register_netdevice_notifier(&tun_notifier_block);
3053 if (ret) {
3054 pr_err("Can't register netdevice notifier\n");
3055 goto err_notifier;
3056 }
3057
Eric W. Biedermanf019a7a2009-01-21 16:02:16 -08003058 return 0;
Tonghao Zhang5edfbd32017-07-20 02:41:34 -07003059
3060err_notifier:
3061 misc_deregister(&tun_miscdev);
Pavel Emelyanov79d17602008-04-16 00:40:46 -07003062err_misc:
Eric W. Biedermanf019a7a2009-01-21 16:02:16 -08003063 rtnl_link_unregister(&tun_link_ops);
3064err_linkops:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003065 return ret;
3066}
3067
3068static void tun_cleanup(void)
3069{
Jeff Garzik6aa20a22006-09-13 13:24:59 -04003070 misc_deregister(&tun_miscdev);
Eric W. Biedermanf019a7a2009-01-21 16:02:16 -08003071 rtnl_link_unregister(&tun_link_ops);
Jason Wang1576d982016-06-30 14:45:36 +08003072 unregister_netdevice_notifier(&tun_notifier_block);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003073}
3074
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00003075/* Get an underlying socket object from tun file. Returns error unless file is
3076 * attached to a device. The returned object works like a packet socket, it
3077 * can be used for sock_sendmsg/sock_recvmsg. The caller is responsible for
3078 * holding a reference to the file for as long as the socket is in use. */
3079struct socket *tun_get_socket(struct file *file)
3080{
Jason Wang6e914fc2012-10-31 19:45:58 +00003081 struct tun_file *tfile;
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00003082 if (file->f_op != &tun_fops)
3083 return ERR_PTR(-EINVAL);
Jason Wang6e914fc2012-10-31 19:45:58 +00003084 tfile = file->private_data;
3085 if (!tfile)
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00003086 return ERR_PTR(-EBADFD);
Jason Wang54f968d2012-10-31 19:45:57 +00003087 return &tfile->socket;
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00003088}
3089EXPORT_SYMBOL_GPL(tun_get_socket);
3090
Jason Wang83339c62017-05-17 12:14:41 +08003091struct skb_array *tun_get_skb_array(struct file *file)
3092{
3093 struct tun_file *tfile;
3094
3095 if (file->f_op != &tun_fops)
3096 return ERR_PTR(-EINVAL);
3097 tfile = file->private_data;
3098 if (!tfile)
3099 return ERR_PTR(-EBADFD);
3100 return &tfile->tx_array;
3101}
3102EXPORT_SYMBOL_GPL(tun_get_skb_array);
3103
Linus Torvalds1da177e2005-04-16 15:20:36 -07003104module_init(tun_init);
3105module_exit(tun_cleanup);
3106MODULE_DESCRIPTION(DRV_DESCRIPTION);
3107MODULE_AUTHOR(DRV_COPYRIGHT);
3108MODULE_LICENSE("GPL");
3109MODULE_ALIAS_MISCDEV(TUN_MINOR);
Kay Sievers578454f2010-05-20 18:07:20 +02003110MODULE_ALIAS("devname:net/tun");