blob: 3b41c36eae904fec5d11f51ed9fde0e060bba27e [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
447static void tun_flow_cleanup(unsigned long data)
448{
449 struct tun_struct *tun = (struct tun_struct *)data;
450 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
457 spin_lock_bh(&tun->lock);
458 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;
464 count++;
465 this_timer = e->updated + delay;
466 if (time_before_eq(this_timer, jiffies))
467 tun_flow_delete(tun, e);
468 else if (time_before(this_timer, next_timer))
469 next_timer = this_timer;
470 }
471 }
472
473 if (count)
474 mod_timer(&tun->flow_gc_timer, round_jiffies_up(next_timer));
475 spin_unlock_bh(&tun->lock);
476}
477
Eric Dumazet49974422012-12-12 19:22:57 +0000478static void tun_flow_update(struct tun_struct *tun, u32 rxhash,
Jason Wang9e857222013-01-28 01:05:19 +0000479 struct tun_file *tfile)
Jason Wang96442e422012-10-31 19:46:02 +0000480{
481 struct hlist_head *head;
482 struct tun_flow_entry *e;
483 unsigned long delay = tun->ageing_time;
Jason Wang9e857222013-01-28 01:05:19 +0000484 u16 queue_index = tfile->queue_index;
Jason Wang96442e422012-10-31 19:46:02 +0000485
486 if (!rxhash)
487 return;
488 else
489 head = &tun->flows[tun_hashfn(rxhash)];
490
491 rcu_read_lock();
492
Jason Wang9e857222013-01-28 01:05:19 +0000493 /* We may get a very small possibility of OOO during switching, not
494 * worth to optimize.*/
495 if (tun->numqueues == 1 || tfile->detached)
Jason Wang96442e422012-10-31 19:46:02 +0000496 goto unlock;
497
498 e = tun_flow_find(head, rxhash);
499 if (likely(e)) {
500 /* TODO: keep queueing to old queue until it's empty? */
501 e->queue_index = queue_index;
502 e->updated = jiffies;
Tom Herbert9bc88932013-12-22 18:54:32 +0800503 sock_rps_record_flow_hash(e->rps_rxhash);
Jason Wang96442e422012-10-31 19:46:02 +0000504 } else {
505 spin_lock_bh(&tun->lock);
Jason Wangb8732fb2013-01-23 03:59:13 +0000506 if (!tun_flow_find(head, rxhash) &&
507 tun->flow_count < MAX_TAP_FLOWS)
Jason Wang96442e422012-10-31 19:46:02 +0000508 tun_flow_create(tun, head, rxhash, queue_index);
509
510 if (!timer_pending(&tun->flow_gc_timer))
511 mod_timer(&tun->flow_gc_timer,
512 round_jiffies_up(jiffies + delay));
513 spin_unlock_bh(&tun->lock);
514 }
515
516unlock:
517 rcu_read_unlock();
518}
519
Tom Herbert9bc88932013-12-22 18:54:32 +0800520/**
521 * Save the hash received in the stack receive path and update the
522 * flow_hash table accordingly.
523 */
524static inline void tun_flow_save_rps_rxhash(struct tun_flow_entry *e, u32 hash)
525{
Eric Dumazet567e4b72015-02-06 12:59:01 -0800526 if (unlikely(e->rps_rxhash != hash))
Tom Herbert9bc88932013-12-22 18:54:32 +0800527 e->rps_rxhash = hash;
Tom Herbert9bc88932013-12-22 18:54:32 +0800528}
529
Jason Wangc8d68e62012-10-31 19:46:00 +0000530/* We try to identify a flow through its rxhash first. The reason that
stephen hemminger92d4ea62013-12-05 20:42:58 -0800531 * we do not check rxq no. is because some cards(e.g 82599), chooses
Jason Wangc8d68e62012-10-31 19:46:00 +0000532 * the rxq based on the txq where the last packet of the flow comes. As
533 * the userspace application move between processors, we may get a
534 * different rxq no. here. If we could not get rxhash, then we would
535 * hope the rxq no. may help here.
536 */
Jason Wangf663dd92014-01-10 16:18:26 +0800537static u16 tun_select_queue(struct net_device *dev, struct sk_buff *skb,
Daniel Borkmann99932d42014-02-16 15:55:20 +0100538 void *accel_priv, select_queue_fallback_t fallback)
Jason Wangc8d68e62012-10-31 19:46:00 +0000539{
540 struct tun_struct *tun = netdev_priv(dev);
Jason Wang96442e422012-10-31 19:46:02 +0000541 struct tun_flow_entry *e;
Jason Wangc8d68e62012-10-31 19:46:00 +0000542 u32 txq = 0;
543 u32 numqueues = 0;
544
545 rcu_read_lock();
Jason Wang92bb73e2013-06-05 16:44:57 +0800546 numqueues = ACCESS_ONCE(tun->numqueues);
Jason Wangc8d68e62012-10-31 19:46:00 +0000547
Jason Wangfeec0842017-06-06 14:09:49 +0800548 txq = __skb_get_hash_symmetric(skb);
Jason Wangc8d68e62012-10-31 19:46:00 +0000549 if (txq) {
Jason Wang96442e422012-10-31 19:46:02 +0000550 e = tun_flow_find(&tun->flows[tun_hashfn(txq)], txq);
Tom Herbert9bc88932013-12-22 18:54:32 +0800551 if (e) {
Tom Herbert9bc88932013-12-22 18:54:32 +0800552 tun_flow_save_rps_rxhash(e, txq);
Zhi Yong Wufbe4d452014-01-02 13:24:28 +0800553 txq = e->queue_index;
Tom Herbert9bc88932013-12-22 18:54:32 +0800554 } else
Jason Wang96442e422012-10-31 19:46:02 +0000555 /* use multiply and shift instead of expensive divide */
556 txq = ((u64)txq * numqueues) >> 32;
Jason Wangc8d68e62012-10-31 19:46:00 +0000557 } else if (likely(skb_rx_queue_recorded(skb))) {
558 txq = skb_get_rx_queue(skb);
559 while (unlikely(txq >= numqueues))
560 txq -= numqueues;
561 }
562
563 rcu_read_unlock();
564 return txq;
565}
566
Jason Wangcde8b152012-10-31 19:46:01 +0000567static inline bool tun_not_capable(struct tun_struct *tun)
568{
569 const struct cred *cred = current_cred();
Eric W. Biedermanc260b772012-11-18 21:34:11 +0000570 struct net *net = dev_net(tun->dev);
Jason Wangcde8b152012-10-31 19:46:01 +0000571
572 return ((uid_valid(tun->owner) && !uid_eq(cred->euid, tun->owner)) ||
573 (gid_valid(tun->group) && !in_egroup_p(tun->group))) &&
Eric W. Biedermanc260b772012-11-18 21:34:11 +0000574 !ns_capable(net->user_ns, CAP_NET_ADMIN);
Jason Wangcde8b152012-10-31 19:46:01 +0000575}
576
Jason Wangc8d68e62012-10-31 19:46:00 +0000577static void tun_set_real_num_queues(struct tun_struct *tun)
578{
579 netif_set_real_num_tx_queues(tun->dev, tun->numqueues);
580 netif_set_real_num_rx_queues(tun->dev, tun->numqueues);
581}
582
Jason Wang4008e972012-12-13 23:53:30 +0000583static void tun_disable_queue(struct tun_struct *tun, struct tun_file *tfile)
584{
585 tfile->detached = tun;
586 list_add_tail(&tfile->next, &tun->disabled);
587 ++tun->numdisabled;
588}
589
Jason Wangd32649d2012-12-18 11:00:27 +0800590static struct tun_struct *tun_enable_queue(struct tun_file *tfile)
Jason Wang4008e972012-12-13 23:53:30 +0000591{
592 struct tun_struct *tun = tfile->detached;
593
594 tfile->detached = NULL;
595 list_del_init(&tfile->next);
596 --tun->numdisabled;
597 return tun;
598}
599
Jason Wang4bfb0512013-09-05 17:53:59 +0800600static void tun_queue_purge(struct tun_file *tfile)
601{
Jason Wang1576d982016-06-30 14:45:36 +0800602 struct sk_buff *skb;
603
604 while ((skb = skb_array_consume(&tfile->tx_array)) != NULL)
605 kfree_skb(skb);
606
Jason Wang5503fce2017-01-18 15:02:03 +0800607 skb_queue_purge(&tfile->sk.sk_write_queue);
Jason Wang4bfb0512013-09-05 17:53:59 +0800608 skb_queue_purge(&tfile->sk.sk_error_queue);
609}
610
Jason Wangc8d68e62012-10-31 19:46:00 +0000611static void __tun_detach(struct tun_file *tfile, bool clean)
612{
613 struct tun_file *ntfile;
614 struct tun_struct *tun;
Jason Wangc8d68e62012-10-31 19:46:00 +0000615
Jason Wangb8deabd2013-01-11 16:59:32 +0000616 tun = rtnl_dereference(tfile->tun);
617
Petar Penkov94317092017-09-22 13:49:14 -0700618 if (tun && clean) {
619 tun_napi_disable(tun, tfile);
620 tun_napi_del(tun, tfile);
621 }
622
Jason Wang9e857222013-01-28 01:05:19 +0000623 if (tun && !tfile->detached) {
Jason Wangc8d68e62012-10-31 19:46:00 +0000624 u16 index = tfile->queue_index;
625 BUG_ON(index >= tun->numqueues);
Jason Wangc8d68e62012-10-31 19:46:00 +0000626
627 rcu_assign_pointer(tun->tfiles[index],
628 tun->tfiles[tun->numqueues - 1]);
Jason Wangb8deabd2013-01-11 16:59:32 +0000629 ntfile = rtnl_dereference(tun->tfiles[index]);
Jason Wangc8d68e62012-10-31 19:46:00 +0000630 ntfile->queue_index = index;
631
632 --tun->numqueues;
Jason Wang9e857222013-01-28 01:05:19 +0000633 if (clean) {
Monam Agarwalc9566742014-03-24 00:02:32 +0530634 RCU_INIT_POINTER(tfile->tun, NULL);
Jason Wang4008e972012-12-13 23:53:30 +0000635 sock_put(&tfile->sk);
Jason Wang9e857222013-01-28 01:05:19 +0000636 } else
Jason Wang4008e972012-12-13 23:53:30 +0000637 tun_disable_queue(tun, tfile);
Jason Wangc8d68e62012-10-31 19:46:00 +0000638
639 synchronize_net();
Jason Wang96442e422012-10-31 19:46:02 +0000640 tun_flow_delete_by_queue(tun, tun->numqueues + 1);
Jason Wangc8d68e62012-10-31 19:46:00 +0000641 /* Drop read queue */
Jason Wang4bfb0512013-09-05 17:53:59 +0800642 tun_queue_purge(tfile);
Jason Wangc8d68e62012-10-31 19:46:00 +0000643 tun_set_real_num_queues(tun);
Jason Wangdd38bd82013-01-11 16:59:34 +0000644 } else if (tfile->detached && clean) {
Jason Wang4008e972012-12-13 23:53:30 +0000645 tun = tun_enable_queue(tfile);
Jason Wangdd38bd82013-01-11 16:59:34 +0000646 sock_put(&tfile->sk);
647 }
Jason Wangc8d68e62012-10-31 19:46:00 +0000648
649 if (clean) {
Michael S. Tsirkinaf668b32013-01-28 00:38:02 +0000650 if (tun && tun->numqueues == 0 && tun->numdisabled == 0) {
651 netif_carrier_off(tun->dev);
652
Michael S. Tsirkin40630b82014-11-19 15:17:31 +0200653 if (!(tun->flags & IFF_PERSIST) &&
Michael S. Tsirkinaf668b32013-01-28 00:38:02 +0000654 tun->dev->reg_state == NETREG_REGISTERED)
Jason Wang4008e972012-12-13 23:53:30 +0000655 unregister_netdevice(tun->dev);
Michael S. Tsirkinaf668b32013-01-28 00:38:02 +0000656 }
Jason Wang1576d982016-06-30 14:45:36 +0800657 if (tun)
658 skb_array_cleanup(&tfile->tx_array);
Eric W. Biederman140e807da2015-05-08 21:07:08 -0500659 sock_put(&tfile->sk);
Jason Wangc8d68e62012-10-31 19:46:00 +0000660 }
661}
662
663static void tun_detach(struct tun_file *tfile, bool clean)
664{
665 rtnl_lock();
666 __tun_detach(tfile, clean);
667 rtnl_unlock();
668}
669
670static void tun_detach_all(struct net_device *dev)
671{
672 struct tun_struct *tun = netdev_priv(dev);
Jason Wang761876c2017-08-11 19:41:18 +0800673 struct bpf_prog *xdp_prog = rtnl_dereference(tun->xdp_prog);
Jason Wang4008e972012-12-13 23:53:30 +0000674 struct tun_file *tfile, *tmp;
Jason Wangc8d68e62012-10-31 19:46:00 +0000675 int i, n = tun->numqueues;
676
677 for (i = 0; i < n; i++) {
Jason Wangb8deabd2013-01-11 16:59:32 +0000678 tfile = rtnl_dereference(tun->tfiles[i]);
Jason Wangc8d68e62012-10-31 19:46:00 +0000679 BUG_ON(!tfile);
Petar Penkov94317092017-09-22 13:49:14 -0700680 tun_napi_disable(tun, tfile);
Jason Wangaddf8fc2016-05-19 13:36:51 +0800681 tfile->socket.sk->sk_shutdown = RCV_SHUTDOWN;
Xi Wang9e641bd2014-05-16 15:11:48 -0700682 tfile->socket.sk->sk_data_ready(tfile->socket.sk);
Monam Agarwalc9566742014-03-24 00:02:32 +0530683 RCU_INIT_POINTER(tfile->tun, NULL);
Jason Wangc8d68e62012-10-31 19:46:00 +0000684 --tun->numqueues;
685 }
Jason Wang9e857222013-01-28 01:05:19 +0000686 list_for_each_entry(tfile, &tun->disabled, next) {
Jason Wangaddf8fc2016-05-19 13:36:51 +0800687 tfile->socket.sk->sk_shutdown = RCV_SHUTDOWN;
Xi Wang9e641bd2014-05-16 15:11:48 -0700688 tfile->socket.sk->sk_data_ready(tfile->socket.sk);
Monam Agarwalc9566742014-03-24 00:02:32 +0530689 RCU_INIT_POINTER(tfile->tun, NULL);
Jason Wang9e857222013-01-28 01:05:19 +0000690 }
Jason Wangc8d68e62012-10-31 19:46:00 +0000691 BUG_ON(tun->numqueues != 0);
692
693 synchronize_net();
694 for (i = 0; i < n; i++) {
Jason Wangb8deabd2013-01-11 16:59:32 +0000695 tfile = rtnl_dereference(tun->tfiles[i]);
Petar Penkov94317092017-09-22 13:49:14 -0700696 tun_napi_del(tun, tfile);
Jason Wangc8d68e62012-10-31 19:46:00 +0000697 /* Drop read queue */
Jason Wang4bfb0512013-09-05 17:53:59 +0800698 tun_queue_purge(tfile);
Jason Wangc8d68e62012-10-31 19:46:00 +0000699 sock_put(&tfile->sk);
700 }
Jason Wang4008e972012-12-13 23:53:30 +0000701 list_for_each_entry_safe(tfile, tmp, &tun->disabled, next) {
702 tun_enable_queue(tfile);
Jason Wang4bfb0512013-09-05 17:53:59 +0800703 tun_queue_purge(tfile);
Jason Wang4008e972012-12-13 23:53:30 +0000704 sock_put(&tfile->sk);
705 }
706 BUG_ON(tun->numdisabled != 0);
Jason Wangdd38bd82013-01-11 16:59:34 +0000707
Jason Wang761876c2017-08-11 19:41:18 +0800708 if (xdp_prog)
709 bpf_prog_put(xdp_prog);
710
Michael S. Tsirkin40630b82014-11-19 15:17:31 +0200711 if (tun->flags & IFF_PERSIST)
Jason Wangdd38bd82013-01-11 16:59:34 +0000712 module_put(THIS_MODULE);
Jason Wangc8d68e62012-10-31 19:46:00 +0000713}
714
Petar Penkov94317092017-09-22 13:49:14 -0700715static int tun_attach(struct tun_struct *tun, struct file *file,
716 bool skip_filter, bool napi)
Eric W. Biedermana7385ba2009-01-20 10:57:48 +0000717{
Eric W. Biederman631ab462009-01-20 11:00:40 +0000718 struct tun_file *tfile = file->private_data;
Jason Wang1576d982016-06-30 14:45:36 +0800719 struct net_device *dev = tun->dev;
Eric W. Biederman38231b72009-01-20 11:02:28 +0000720 int err;
Eric W. Biedermana7385ba2009-01-20 10:57:48 +0000721
Paul Moore5dbbaf22013-01-14 07:12:19 +0000722 err = security_tun_dev_attach(tfile->socket.sk, tun->security);
723 if (err < 0)
724 goto out;
725
Eric W. Biederman38231b72009-01-20 11:02:28 +0000726 err = -EINVAL;
Jason Wang9e857222013-01-28 01:05:19 +0000727 if (rtnl_dereference(tfile->tun) && !tfile->detached)
Eric W. Biederman38231b72009-01-20 11:02:28 +0000728 goto out;
729
730 err = -EBUSY;
Michael S. Tsirkin40630b82014-11-19 15:17:31 +0200731 if (!(tun->flags & IFF_MULTI_QUEUE) && tun->numqueues == 1)
Jason Wangc8d68e62012-10-31 19:46:00 +0000732 goto out;
733
734 err = -E2BIG;
Jason Wang4008e972012-12-13 23:53:30 +0000735 if (!tfile->detached &&
736 tun->numqueues + tun->numdisabled == MAX_TAP_QUEUES)
Eric W. Biederman38231b72009-01-20 11:02:28 +0000737 goto out;
738
739 err = 0;
Jason Wang54f968d2012-10-31 19:45:57 +0000740
stephen hemminger92d4ea62013-12-05 20:42:58 -0800741 /* Re-attach the filter to persist device */
Pavel Emelyanov849c9b62013-08-21 14:32:21 +0400742 if (!skip_filter && (tun->filter_attached == true)) {
Hannes Frederic Sowa8ced4252016-04-05 17:10:16 +0200743 lock_sock(tfile->socket.sk);
744 err = sk_attach_filter(&tun->fprog, tfile->socket.sk);
745 release_sock(tfile->socket.sk);
Jason Wang54f968d2012-10-31 19:45:57 +0000746 if (!err)
747 goto out;
748 }
Jason Wang1576d982016-06-30 14:45:36 +0800749
750 if (!tfile->detached &&
751 skb_array_init(&tfile->tx_array, dev->tx_queue_len, GFP_KERNEL)) {
752 err = -ENOMEM;
753 goto out;
754 }
755
Jason Wangc8d68e62012-10-31 19:46:00 +0000756 tfile->queue_index = tun->numqueues;
Jason Wangaddf8fc2016-05-19 13:36:51 +0800757 tfile->socket.sk->sk_shutdown &= ~RCV_SHUTDOWN;
Jason Wang6e914fc2012-10-31 19:45:58 +0000758 rcu_assign_pointer(tfile->tun, tun);
Jason Wangc8d68e62012-10-31 19:46:00 +0000759 rcu_assign_pointer(tun->tfiles[tun->numqueues], tfile);
Jason Wangc8d68e62012-10-31 19:46:00 +0000760 tun->numqueues++;
761
Petar Penkov94317092017-09-22 13:49:14 -0700762 if (tfile->detached) {
Jason Wang4008e972012-12-13 23:53:30 +0000763 tun_enable_queue(tfile);
Petar Penkov94317092017-09-22 13:49:14 -0700764 } else {
Jason Wang4008e972012-12-13 23:53:30 +0000765 sock_hold(&tfile->sk);
Petar Penkov94317092017-09-22 13:49:14 -0700766 tun_napi_init(tun, tfile, napi);
767 }
Jason Wang4008e972012-12-13 23:53:30 +0000768
Jason Wangc8d68e62012-10-31 19:46:00 +0000769 tun_set_real_num_queues(tun);
770
Jason Wangc8d68e62012-10-31 19:46:00 +0000771 /* device is allowed to go away first, so no need to hold extra
772 * refcnt.
773 */
Eric W. Biedermana7385ba2009-01-20 10:57:48 +0000774
Eric W. Biederman38231b72009-01-20 11:02:28 +0000775out:
Eric W. Biederman38231b72009-01-20 11:02:28 +0000776 return err;
Eric W. Biedermana7385ba2009-01-20 10:57:48 +0000777}
778
yuan linyu9484dc72017-09-23 22:36:52 +0800779static struct tun_struct *tun_get(struct tun_file *tfile)
Eric W. Biederman631ab462009-01-20 11:00:40 +0000780{
Jason Wang6e914fc2012-10-31 19:45:58 +0000781 struct tun_struct *tun;
Eric W. Biedermanc70f1822009-01-20 11:07:17 +0000782
Jason Wang6e914fc2012-10-31 19:45:58 +0000783 rcu_read_lock();
784 tun = rcu_dereference(tfile->tun);
785 if (tun)
786 dev_hold(tun->dev);
787 rcu_read_unlock();
Eric W. Biedermanc70f1822009-01-20 11:07:17 +0000788
789 return tun;
Eric W. Biederman631ab462009-01-20 11:00:40 +0000790}
791
Eric W. Biederman631ab462009-01-20 11:00:40 +0000792static void tun_put(struct tun_struct *tun)
793{
Jason Wang6e914fc2012-10-31 19:45:58 +0000794 dev_put(tun->dev);
Eric W. Biederman631ab462009-01-20 11:00:40 +0000795}
796
Joe Perches6b8a66e2011-03-02 07:18:10 +0000797/* TAP filtering */
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -0700798static void addr_hash_set(u32 *mask, const u8 *addr)
799{
800 int n = ether_crc(ETH_ALEN, addr) >> 26;
801 mask[n >> 5] |= (1 << (n & 31));
802}
803
804static unsigned int addr_hash_test(const u32 *mask, const u8 *addr)
805{
806 int n = ether_crc(ETH_ALEN, addr) >> 26;
807 return mask[n >> 5] & (1 << (n & 31));
808}
809
810static int update_filter(struct tap_filter *filter, void __user *arg)
811{
812 struct { u8 u[ETH_ALEN]; } *addr;
813 struct tun_filter uf;
814 int err, alen, n, nexact;
815
816 if (copy_from_user(&uf, arg, sizeof(uf)))
817 return -EFAULT;
818
819 if (!uf.count) {
820 /* Disabled */
821 filter->count = 0;
822 return 0;
823 }
824
825 alen = ETH_ALEN * uf.count;
Markus Elfring28e81902016-08-20 08:54:15 +0200826 addr = memdup_user(arg + sizeof(uf), alen);
827 if (IS_ERR(addr))
828 return PTR_ERR(addr);
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -0700829
830 /* The filter is updated without holding any locks. Which is
831 * perfectly safe. We disable it first and in the worst
832 * case we'll accept a few undesired packets. */
833 filter->count = 0;
834 wmb();
835
836 /* Use first set of addresses as an exact filter */
837 for (n = 0; n < uf.count && n < FLT_EXACT_COUNT; n++)
838 memcpy(filter->addr[n], addr[n].u, ETH_ALEN);
839
840 nexact = n;
841
Alex Williamsoncfbf84f2009-02-08 17:49:17 -0800842 /* Remaining multicast addresses are hashed,
843 * unicast will leave the filter disabled. */
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -0700844 memset(filter->mask, 0, sizeof(filter->mask));
Alex Williamsoncfbf84f2009-02-08 17:49:17 -0800845 for (; n < uf.count; n++) {
846 if (!is_multicast_ether_addr(addr[n].u)) {
847 err = 0; /* no filter */
Markus Elfring3b8d2a62016-08-20 09:00:34 +0200848 goto free_addr;
Alex Williamsoncfbf84f2009-02-08 17:49:17 -0800849 }
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -0700850 addr_hash_set(filter->mask, addr[n].u);
Alex Williamsoncfbf84f2009-02-08 17:49:17 -0800851 }
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -0700852
853 /* For ALLMULTI just set the mask to all ones.
854 * This overrides the mask populated above. */
855 if ((uf.flags & TUN_FLT_ALLMULTI))
856 memset(filter->mask, ~0, sizeof(filter->mask));
857
858 /* Now enable the filter */
859 wmb();
860 filter->count = nexact;
861
862 /* Return the number of exact filters */
863 err = nexact;
Markus Elfring3b8d2a62016-08-20 09:00:34 +0200864free_addr:
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -0700865 kfree(addr);
866 return err;
867}
868
869/* Returns: 0 - drop, !=0 - accept */
870static int run_filter(struct tap_filter *filter, const struct sk_buff *skb)
871{
872 /* Cannot use eth_hdr(skb) here because skb_mac_hdr() is incorrect
873 * at this point. */
874 struct ethhdr *eh = (struct ethhdr *) skb->data;
875 int i;
876
877 /* Exact match */
878 for (i = 0; i < filter->count; i++)
Joe Perches2e42e472012-05-09 17:17:46 +0000879 if (ether_addr_equal(eh->h_dest, filter->addr[i]))
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -0700880 return 1;
881
882 /* Inexact match (multicast only) */
883 if (is_multicast_ether_addr(eh->h_dest))
884 return addr_hash_test(filter->mask, eh->h_dest);
885
886 return 0;
887}
888
889/*
890 * Checks whether the packet is accepted or not.
891 * Returns: 0 - drop, !=0 - accept
892 */
893static int check_filter(struct tap_filter *filter, const struct sk_buff *skb)
894{
895 if (!filter->count)
896 return 1;
897
898 return run_filter(filter, skb);
899}
900
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901/* Network device part of the driver */
902
Jeff Garzik7282d492006-09-13 14:30:00 -0400903static const struct ethtool_ops tun_ethtool_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904
Eric W. Biedermanc70f1822009-01-20 11:07:17 +0000905/* Net device detach from fd. */
906static void tun_net_uninit(struct net_device *dev)
907{
Jason Wangc8d68e62012-10-31 19:46:00 +0000908 tun_detach_all(dev);
Eric W. Biedermanc70f1822009-01-20 11:07:17 +0000909}
910
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911/* Net device open. */
912static int tun_net_open(struct net_device *dev)
913{
Hannes Frederic Sowab20e2d52017-03-13 00:00:26 +0100914 struct tun_struct *tun = netdev_priv(dev);
915 int i;
916
Jason Wangc8d68e62012-10-31 19:46:00 +0000917 netif_tx_start_all_queues(dev);
Hannes Frederic Sowab20e2d52017-03-13 00:00:26 +0100918
919 for (i = 0; i < tun->numqueues; i++) {
920 struct tun_file *tfile;
921
922 tfile = rtnl_dereference(tun->tfiles[i]);
923 tfile->socket.sk->sk_write_space(tfile->socket.sk);
924 }
925
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926 return 0;
927}
928
929/* Net device close. */
930static int tun_net_close(struct net_device *dev)
931{
Jason Wangc8d68e62012-10-31 19:46:00 +0000932 netif_tx_stop_all_queues(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933 return 0;
934}
935
936/* Net device start xmit */
Stephen Hemminger424efe92009-08-31 19:50:51 +0000937static netdev_tx_t tun_net_xmit(struct sk_buff *skb, struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938{
939 struct tun_struct *tun = netdev_priv(dev);
Jason Wangc8d68e62012-10-31 19:46:00 +0000940 int txq = skb->queue_mapping;
Jason Wang6e914fc2012-10-31 19:45:58 +0000941 struct tun_file *tfile;
Dominic Curranfa358642014-01-22 03:03:23 +0000942 u32 numqueues = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943
Jason Wang6e914fc2012-10-31 19:45:58 +0000944 rcu_read_lock();
Jason Wangc8d68e62012-10-31 19:46:00 +0000945 tfile = rcu_dereference(tun->tfiles[txq]);
Dominic Curranfa358642014-01-22 03:03:23 +0000946 numqueues = ACCESS_ONCE(tun->numqueues);
Jason Wangc8d68e62012-10-31 19:46:00 +0000947
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948 /* Drop packet if interface is not attached */
Dominic Curranfa358642014-01-22 03:03:23 +0000949 if (txq >= numqueues)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950 goto drop;
951
Jason Wang3df97ba2016-04-25 23:13:42 -0400952#ifdef CONFIG_RPS
953 if (numqueues == 1 && static_key_false(&rps_needed)) {
Tom Herbert9bc88932013-12-22 18:54:32 +0800954 /* Select queue was not called for the skbuff, so we extract the
955 * RPS hash and save it into the flow_table here.
956 */
957 __u32 rxhash;
958
Jason Wangfeec0842017-06-06 14:09:49 +0800959 rxhash = __skb_get_hash_symmetric(skb);
Tom Herbert9bc88932013-12-22 18:54:32 +0800960 if (rxhash) {
961 struct tun_flow_entry *e;
962 e = tun_flow_find(&tun->flows[tun_hashfn(rxhash)],
963 rxhash);
964 if (e)
965 tun_flow_save_rps_rxhash(e, rxhash);
966 }
967 }
Jason Wang3df97ba2016-04-25 23:13:42 -0400968#endif
Tom Herbert9bc88932013-12-22 18:54:32 +0800969
Jason Wang6e914fc2012-10-31 19:45:58 +0000970 tun_debug(KERN_INFO, tun, "tun_net_xmit %d\n", skb->len);
971
Jason Wangc8d68e62012-10-31 19:46:00 +0000972 BUG_ON(!tfile);
973
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -0700974 /* Drop if the filter does not like it.
975 * This is a noop if the filter is disabled.
976 * Filter can be enabled only for the TAP devices. */
977 if (!check_filter(&tun->txflt, skb))
978 goto drop;
979
Jason Wang54f968d2012-10-31 19:45:57 +0000980 if (tfile->socket.sk->sk_filter &&
981 sk_filter(tfile->socket.sk, skb))
Michael S. Tsirkin99405162010-02-14 01:01:10 +0000982 goto drop;
983
Willem de Bruijn1f8b9772017-08-03 16:29:41 -0400984 if (unlikely(skb_orphan_frags_rx(skb, GFP_ATOMIC)))
Jason Wang7bf66302013-09-05 17:54:00 +0800985 goto drop;
986
Soheil Hassas Yeganeh7b996242016-08-23 18:22:33 -0400987 skb_tx_timestamp(skb);
Richard Cochraneda29772013-07-19 19:40:10 +0200988
Michael S. Tsirkin0110d6f2010-04-13 04:59:44 +0000989 /* Orphan the skb - required as we might hang on to it
Jason Wang7bf66302013-09-05 17:54:00 +0800990 * for indefinite time.
991 */
Michael S. Tsirkin0110d6f2010-04-13 04:59:44 +0000992 skb_orphan(skb);
993
Eric Dumazetf8af75f2013-03-06 11:02:37 +0000994 nf_reset(skb);
995
Jason Wang1576d982016-06-30 14:45:36 +0800996 if (skb_array_produce(&tfile->tx_array, skb))
997 goto drop;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998
999 /* Notify and wake up reader process */
Jason Wang54f968d2012-10-31 19:45:57 +00001000 if (tfile->flags & TUN_FASYNC)
1001 kill_fasync(&tfile->fasync, SIGIO, POLL_IN);
Xi Wang9e641bd2014-05-16 15:11:48 -07001002 tfile->socket.sk->sk_data_ready(tfile->socket.sk);
Jason Wang6e914fc2012-10-31 19:45:58 +00001003
1004 rcu_read_unlock();
Patrick McHardy6ed10652009-06-23 06:03:08 +00001005 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006
1007drop:
Paolo Abeni608b9972016-04-13 10:52:20 +02001008 this_cpu_inc(tun->pcpu_stats->tx_dropped);
Michael S. Tsirkin149d36f2012-11-01 09:16:32 +00001009 skb_tx_error(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010 kfree_skb(skb);
Jason Wang6e914fc2012-10-31 19:45:58 +00001011 rcu_read_unlock();
Jason Wangbaeabab2014-11-18 13:20:41 +08001012 return NET_XMIT_DROP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013}
1014
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -07001015static void tun_net_mclist(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016{
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -07001017 /*
1018 * This callback is supposed to deal with mc filter in
1019 * _rx_ path and has nothing to do with the _tx_ path.
1020 * In rx path we always accept everything userspace gives us.
1021 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022}
1023
Michał Mirosławc8f44af2011-11-15 15:29:55 +00001024static netdev_features_t tun_net_fix_features(struct net_device *dev,
1025 netdev_features_t features)
Michał Mirosław88255372011-04-19 06:13:10 +00001026{
1027 struct tun_struct *tun = netdev_priv(dev);
1028
1029 return (features & tun->set_features) | (features & ~TUN_USER_FEATURES);
1030}
Neil Hormanbebd0972011-06-15 05:25:01 +00001031#ifdef CONFIG_NET_POLL_CONTROLLER
1032static void tun_poll_controller(struct net_device *dev)
1033{
1034 /*
1035 * Tun only receives frames when:
1036 * 1) the char device endpoint gets data from user space
1037 * 2) the tun socket gets a sendmsg call from user space
Petar Penkov94317092017-09-22 13:49:14 -07001038 * If NAPI is not enabled, since both of those are synchronous
1039 * operations, we are guaranteed never to have pending data when we poll
1040 * for it so there is nothing to do here but return.
Neil Hormanbebd0972011-06-15 05:25:01 +00001041 * We need this though so netpoll recognizes us as an interface that
1042 * supports polling, which enables bridge devices in virt setups to
1043 * still use netconsole
Petar Penkov94317092017-09-22 13:49:14 -07001044 * If NAPI is enabled, however, we need to schedule polling for all
Petar Penkov90e33d42017-09-22 13:49:15 -07001045 * queues unless we are using napi_gro_frags(), which we call in
1046 * process context and not in NAPI context.
Neil Hormanbebd0972011-06-15 05:25:01 +00001047 */
Petar Penkov94317092017-09-22 13:49:14 -07001048 struct tun_struct *tun = netdev_priv(dev);
1049
1050 if (tun->flags & IFF_NAPI) {
1051 struct tun_file *tfile;
1052 int i;
1053
Petar Penkov90e33d42017-09-22 13:49:15 -07001054 if (tun_napi_frags_enabled(tun))
1055 return;
1056
Petar Penkov94317092017-09-22 13:49:14 -07001057 rcu_read_lock();
1058 for (i = 0; i < tun->numqueues; i++) {
1059 tfile = rcu_dereference(tun->tfiles[i]);
Eric Dumazetaec72f32017-10-18 12:12:09 -07001060 if (tfile->napi_enabled)
1061 napi_schedule(&tfile->napi);
Petar Penkov94317092017-09-22 13:49:14 -07001062 }
1063 rcu_read_unlock();
1064 }
Neil Hormanbebd0972011-06-15 05:25:01 +00001065 return;
1066}
1067#endif
Paolo Abenieaea34b2016-02-26 10:45:40 +01001068
1069static void tun_set_headroom(struct net_device *dev, int new_hr)
1070{
1071 struct tun_struct *tun = netdev_priv(dev);
1072
1073 if (new_hr < NET_SKB_PAD)
1074 new_hr = NET_SKB_PAD;
1075
1076 tun->align = new_hr;
1077}
1078
stephen hemmingerbc1f4472017-01-06 19:12:52 -08001079static void
Paolo Abeni608b9972016-04-13 10:52:20 +02001080tun_net_get_stats64(struct net_device *dev, struct rtnl_link_stats64 *stats)
1081{
1082 u32 rx_dropped = 0, tx_dropped = 0, rx_frame_errors = 0;
1083 struct tun_struct *tun = netdev_priv(dev);
1084 struct tun_pcpu_stats *p;
1085 int i;
1086
1087 for_each_possible_cpu(i) {
1088 u64 rxpackets, rxbytes, txpackets, txbytes;
1089 unsigned int start;
1090
1091 p = per_cpu_ptr(tun->pcpu_stats, i);
1092 do {
1093 start = u64_stats_fetch_begin(&p->syncp);
1094 rxpackets = p->rx_packets;
1095 rxbytes = p->rx_bytes;
1096 txpackets = p->tx_packets;
1097 txbytes = p->tx_bytes;
1098 } while (u64_stats_fetch_retry(&p->syncp, start));
1099
1100 stats->rx_packets += rxpackets;
1101 stats->rx_bytes += rxbytes;
1102 stats->tx_packets += txpackets;
1103 stats->tx_bytes += txbytes;
1104
1105 /* u32 counters */
1106 rx_dropped += p->rx_dropped;
1107 rx_frame_errors += p->rx_frame_errors;
1108 tx_dropped += p->tx_dropped;
1109 }
1110 stats->rx_dropped = rx_dropped;
1111 stats->rx_frame_errors = rx_frame_errors;
1112 stats->tx_dropped = tx_dropped;
Paolo Abeni608b9972016-04-13 10:52:20 +02001113}
1114
Jason Wang761876c2017-08-11 19:41:18 +08001115static int tun_xdp_set(struct net_device *dev, struct bpf_prog *prog,
1116 struct netlink_ext_ack *extack)
1117{
1118 struct tun_struct *tun = netdev_priv(dev);
1119 struct bpf_prog *old_prog;
1120
1121 old_prog = rtnl_dereference(tun->xdp_prog);
1122 rcu_assign_pointer(tun->xdp_prog, prog);
1123 if (old_prog)
1124 bpf_prog_put(old_prog);
1125
1126 return 0;
1127}
1128
1129static u32 tun_xdp_query(struct net_device *dev)
1130{
1131 struct tun_struct *tun = netdev_priv(dev);
1132 const struct bpf_prog *xdp_prog;
1133
1134 xdp_prog = rtnl_dereference(tun->xdp_prog);
1135 if (xdp_prog)
1136 return xdp_prog->aux->id;
1137
1138 return 0;
1139}
1140
1141static int tun_xdp(struct net_device *dev, struct netdev_xdp *xdp)
1142{
1143 switch (xdp->command) {
1144 case XDP_SETUP_PROG:
1145 return tun_xdp_set(dev, xdp->prog, xdp->extack);
1146 case XDP_QUERY_PROG:
1147 xdp->prog_id = tun_xdp_query(dev);
1148 xdp->prog_attached = !!xdp->prog_id;
1149 return 0;
1150 default:
1151 return -EINVAL;
1152 }
1153}
1154
Stephen Hemminger758e43b2008-11-19 22:10:37 -08001155static const struct net_device_ops tun_netdev_ops = {
Eric W. Biedermanc70f1822009-01-20 11:07:17 +00001156 .ndo_uninit = tun_net_uninit,
Stephen Hemminger758e43b2008-11-19 22:10:37 -08001157 .ndo_open = tun_net_open,
1158 .ndo_stop = tun_net_close,
Stephen Hemminger00829822008-11-20 20:14:53 -08001159 .ndo_start_xmit = tun_net_xmit,
Michał Mirosław88255372011-04-19 06:13:10 +00001160 .ndo_fix_features = tun_net_fix_features,
Jason Wangc8d68e62012-10-31 19:46:00 +00001161 .ndo_select_queue = tun_select_queue,
Neil Hormanbebd0972011-06-15 05:25:01 +00001162#ifdef CONFIG_NET_POLL_CONTROLLER
1163 .ndo_poll_controller = tun_poll_controller,
1164#endif
Paolo Abenieaea34b2016-02-26 10:45:40 +01001165 .ndo_set_rx_headroom = tun_set_headroom,
Paolo Abeni608b9972016-04-13 10:52:20 +02001166 .ndo_get_stats64 = tun_net_get_stats64,
Stephen Hemminger758e43b2008-11-19 22:10:37 -08001167};
1168
1169static const struct net_device_ops tap_netdev_ops = {
Eric W. Biedermanc70f1822009-01-20 11:07:17 +00001170 .ndo_uninit = tun_net_uninit,
Stephen Hemminger758e43b2008-11-19 22:10:37 -08001171 .ndo_open = tun_net_open,
1172 .ndo_stop = tun_net_close,
Stephen Hemminger00829822008-11-20 20:14:53 -08001173 .ndo_start_xmit = tun_net_xmit,
Michał Mirosław88255372011-04-19 06:13:10 +00001174 .ndo_fix_features = tun_net_fix_features,
Jiri Pirkoafc4b132011-08-16 06:29:01 +00001175 .ndo_set_rx_mode = tun_net_mclist,
Stephen Hemminger758e43b2008-11-19 22:10:37 -08001176 .ndo_set_mac_address = eth_mac_addr,
1177 .ndo_validate_addr = eth_validate_addr,
Jason Wangc8d68e62012-10-31 19:46:00 +00001178 .ndo_select_queue = tun_select_queue,
Neil Hormanbebd0972011-06-15 05:25:01 +00001179#ifdef CONFIG_NET_POLL_CONTROLLER
1180 .ndo_poll_controller = tun_poll_controller,
1181#endif
Toshiaki Makita5e527962015-07-31 15:03:27 +09001182 .ndo_features_check = passthru_features_check,
Paolo Abenieaea34b2016-02-26 10:45:40 +01001183 .ndo_set_rx_headroom = tun_set_headroom,
Paolo Abeni608b9972016-04-13 10:52:20 +02001184 .ndo_get_stats64 = tun_net_get_stats64,
Jason Wang761876c2017-08-11 19:41:18 +08001185 .ndo_xdp = tun_xdp,
Stephen Hemminger758e43b2008-11-19 22:10:37 -08001186};
1187
Pavel Emelyanov944a1372013-06-11 17:01:08 +04001188static void tun_flow_init(struct tun_struct *tun)
Jason Wang96442e422012-10-31 19:46:02 +00001189{
1190 int i;
1191
Jason Wang96442e422012-10-31 19:46:02 +00001192 for (i = 0; i < TUN_NUM_FLOW_ENTRIES; i++)
1193 INIT_HLIST_HEAD(&tun->flows[i]);
1194
1195 tun->ageing_time = TUN_FLOW_EXPIRE;
1196 setup_timer(&tun->flow_gc_timer, tun_flow_cleanup, (unsigned long)tun);
1197 mod_timer(&tun->flow_gc_timer,
1198 round_jiffies_up(jiffies + tun->ageing_time));
Jason Wang96442e422012-10-31 19:46:02 +00001199}
1200
1201static void tun_flow_uninit(struct tun_struct *tun)
1202{
1203 del_timer_sync(&tun->flow_gc_timer);
1204 tun_flow_flush(tun);
Jason Wang96442e422012-10-31 19:46:02 +00001205}
1206
Jarod Wilson91572082016-10-20 13:55:20 -04001207#define MIN_MTU 68
1208#define MAX_MTU 65535
1209
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210/* Initialize net device. */
1211static void tun_net_init(struct net_device *dev)
1212{
1213 struct tun_struct *tun = netdev_priv(dev);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001214
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215 switch (tun->flags & TUN_TYPE_MASK) {
Michael S. Tsirkin40630b82014-11-19 15:17:31 +02001216 case IFF_TUN:
Stephen Hemminger758e43b2008-11-19 22:10:37 -08001217 dev->netdev_ops = &tun_netdev_ops;
1218
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219 /* Point-to-Point TUN Device */
1220 dev->hard_header_len = 0;
1221 dev->addr_len = 0;
1222 dev->mtu = 1500;
1223
1224 /* Zero header length */
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001225 dev->type = ARPHRD_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226 dev->flags = IFF_POINTOPOINT | IFF_NOARP | IFF_MULTICAST;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227 break;
1228
Michael S. Tsirkin40630b82014-11-19 15:17:31 +02001229 case IFF_TAP:
Kusanagi Kouichi7a0a9602008-12-29 18:23:28 -08001230 dev->netdev_ops = &tap_netdev_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231 /* Ethernet TAP Device */
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -07001232 ether_setup(dev);
Neil Horman550fd082011-07-26 06:05:38 +00001233 dev->priv_flags &= ~IFF_TX_SKB_SHARING;
stephen hemmingera6768472012-12-10 15:16:00 +00001234 dev->priv_flags |= IFF_LIVE_ADDR_CHANGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235
Danny Kukawkaf2cedb62012-02-15 06:45:39 +00001236 eth_hw_addr_random(dev);
Brian Braunstein36226a82007-04-26 01:00:55 -07001237
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238 break;
1239 }
Jarod Wilson91572082016-10-20 13:55:20 -04001240
1241 dev->min_mtu = MIN_MTU;
1242 dev->max_mtu = MAX_MTU - dev->hard_header_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243}
1244
1245/* Character device part */
1246
1247/* Poll */
Jason Wangc8d68e62012-10-31 19:46:00 +00001248static unsigned int tun_chr_poll(struct file *file, poll_table *wait)
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001249{
Eric W. Biedermanb2430de2009-01-20 11:03:21 +00001250 struct tun_file *tfile = file->private_data;
yuan linyu9484dc72017-09-23 22:36:52 +08001251 struct tun_struct *tun = tun_get(tfile);
Mariusz Kozlowski3c8a9c62009-07-05 19:48:35 +00001252 struct sock *sk;
Herbert Xu33dccbb2009-02-05 21:25:32 -08001253 unsigned int mask = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001254
1255 if (!tun)
Eric W. Biedermaneac9e902009-01-20 10:59:05 +00001256 return POLLERR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257
Jason Wang54f968d2012-10-31 19:45:57 +00001258 sk = tfile->socket.sk;
Mariusz Kozlowski3c8a9c62009-07-05 19:48:35 +00001259
Joe Perches6b8a66e2011-03-02 07:18:10 +00001260 tun_debug(KERN_INFO, tun, "tun_chr_poll\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261
Xi Wang9e641bd2014-05-16 15:11:48 -07001262 poll_wait(file, sk_sleep(sk), wait);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001263
Jason Wang1576d982016-06-30 14:45:36 +08001264 if (!skb_array_empty(&tfile->tx_array))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265 mask |= POLLIN | POLLRDNORM;
1266
Hannes Frederic Sowab20e2d52017-03-13 00:00:26 +01001267 if (tun->dev->flags & IFF_UP &&
1268 (sock_writeable(sk) ||
1269 (!test_and_set_bit(SOCKWQ_ASYNC_NOSPACE, &sk->sk_socket->flags) &&
1270 sock_writeable(sk))))
Herbert Xu33dccbb2009-02-05 21:25:32 -08001271 mask |= POLLOUT | POLLWRNORM;
1272
Eric W. Biedermanc70f1822009-01-20 11:07:17 +00001273 if (tun->dev->reg_state != NETREG_REGISTERED)
1274 mask = POLLERR;
1275
Eric W. Biederman631ab462009-01-20 11:00:40 +00001276 tun_put(tun);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277 return mask;
1278}
1279
Petar Penkov90e33d42017-09-22 13:49:15 -07001280static struct sk_buff *tun_napi_alloc_frags(struct tun_file *tfile,
1281 size_t len,
1282 const struct iov_iter *it)
1283{
1284 struct sk_buff *skb;
1285 size_t linear;
1286 int err;
1287 int i;
1288
1289 if (it->nr_segs > MAX_SKB_FRAGS + 1)
1290 return ERR_PTR(-ENOMEM);
1291
1292 local_bh_disable();
1293 skb = napi_get_frags(&tfile->napi);
1294 local_bh_enable();
1295 if (!skb)
1296 return ERR_PTR(-ENOMEM);
1297
1298 linear = iov_iter_single_seg_count(it);
1299 err = __skb_grow(skb, linear);
1300 if (err)
1301 goto free;
1302
1303 skb->len = len;
1304 skb->data_len = len - linear;
1305 skb->truesize += skb->data_len;
1306
1307 for (i = 1; i < it->nr_segs; i++) {
1308 size_t fragsz = it->iov[i].iov_len;
1309 unsigned long offset;
1310 struct page *page;
1311 void *data;
1312
1313 if (fragsz == 0 || fragsz > PAGE_SIZE) {
1314 err = -EINVAL;
1315 goto free;
1316 }
1317
1318 local_bh_disable();
1319 data = napi_alloc_frag(fragsz);
1320 local_bh_enable();
1321 if (!data) {
1322 err = -ENOMEM;
1323 goto free;
1324 }
1325
1326 page = virt_to_head_page(data);
1327 offset = data - page_address(page);
1328 skb_fill_page_desc(skb, i - 1, page, offset, fragsz);
1329 }
1330
1331 return skb;
1332free:
1333 /* frees skb and all frags allocated with napi_alloc_frag() */
1334 napi_free_frags(&tfile->napi);
1335 return ERR_PTR(err);
1336}
1337
Rusty Russellf42157c2008-08-15 15:15:10 -07001338/* prepad is the amount to reserve at front. len is length after that.
1339 * linear is a hint as to how much to copy (usually headers). */
Jason Wang54f968d2012-10-31 19:45:57 +00001340static struct sk_buff *tun_alloc_skb(struct tun_file *tfile,
stephen hemminger6f7c1562011-06-08 14:33:08 +00001341 size_t prepad, size_t len,
1342 size_t linear, int noblock)
Rusty Russellf42157c2008-08-15 15:15:10 -07001343{
Jason Wang54f968d2012-10-31 19:45:57 +00001344 struct sock *sk = tfile->socket.sk;
Rusty Russellf42157c2008-08-15 15:15:10 -07001345 struct sk_buff *skb;
Herbert Xu33dccbb2009-02-05 21:25:32 -08001346 int err;
Rusty Russellf42157c2008-08-15 15:15:10 -07001347
1348 /* Under a page? Don't bother with paged skb. */
Herbert Xu0eca93b2009-04-14 02:09:43 -07001349 if (prepad + len < PAGE_SIZE || !linear)
Herbert Xu33dccbb2009-02-05 21:25:32 -08001350 linear = len;
Rusty Russellf42157c2008-08-15 15:15:10 -07001351
Herbert Xu33dccbb2009-02-05 21:25:32 -08001352 skb = sock_alloc_send_pskb(sk, prepad + linear, len - linear, noblock,
Eric Dumazet28d64272013-08-08 14:38:47 -07001353 &err, 0);
Rusty Russellf42157c2008-08-15 15:15:10 -07001354 if (!skb)
Herbert Xu33dccbb2009-02-05 21:25:32 -08001355 return ERR_PTR(err);
Rusty Russellf42157c2008-08-15 15:15:10 -07001356
1357 skb_reserve(skb, prepad);
1358 skb_put(skb, linear);
Herbert Xu33dccbb2009-02-05 21:25:32 -08001359 skb->data_len = len - linear;
1360 skb->len += len - linear;
Rusty Russellf42157c2008-08-15 15:15:10 -07001361
1362 return skb;
1363}
1364
Jason Wang5503fce2017-01-18 15:02:03 +08001365static void tun_rx_batched(struct tun_struct *tun, struct tun_file *tfile,
1366 struct sk_buff *skb, int more)
1367{
1368 struct sk_buff_head *queue = &tfile->sk.sk_write_queue;
1369 struct sk_buff_head process_queue;
1370 u32 rx_batched = tun->rx_batched;
1371 bool rcv = false;
1372
1373 if (!rx_batched || (!more && skb_queue_empty(queue))) {
1374 local_bh_disable();
1375 netif_receive_skb(skb);
1376 local_bh_enable();
1377 return;
1378 }
1379
1380 spin_lock(&queue->lock);
1381 if (!more || skb_queue_len(queue) == rx_batched) {
1382 __skb_queue_head_init(&process_queue);
1383 skb_queue_splice_tail_init(queue, &process_queue);
1384 rcv = true;
1385 } else {
1386 __skb_queue_tail(queue, skb);
1387 }
1388 spin_unlock(&queue->lock);
1389
1390 if (rcv) {
1391 struct sk_buff *nskb;
1392
1393 local_bh_disable();
1394 while ((nskb = __skb_dequeue(&process_queue)))
1395 netif_receive_skb(nskb);
1396 netif_receive_skb(skb);
1397 local_bh_enable();
1398 }
1399}
1400
Jason Wang66ccbc92017-08-11 19:41:16 +08001401static bool tun_can_build_skb(struct tun_struct *tun, struct tun_file *tfile,
1402 int len, int noblock, bool zerocopy)
1403{
1404 if ((tun->flags & TUN_TYPE_MASK) != IFF_TAP)
1405 return false;
1406
1407 if (tfile->socket.sk->sk_sndbuf != INT_MAX)
1408 return false;
1409
1410 if (!noblock)
1411 return false;
1412
1413 if (zerocopy)
1414 return false;
1415
1416 if (SKB_DATA_ALIGN(len + TUN_RX_PAD) +
1417 SKB_DATA_ALIGN(sizeof(struct skb_shared_info)) > PAGE_SIZE)
1418 return false;
1419
1420 return true;
1421}
1422
Jason Wang761876c2017-08-11 19:41:18 +08001423static struct sk_buff *tun_build_skb(struct tun_struct *tun,
1424 struct tun_file *tfile,
Jason Wang66ccbc92017-08-11 19:41:16 +08001425 struct iov_iter *from,
Jason Wang761876c2017-08-11 19:41:18 +08001426 struct virtio_net_hdr *hdr,
Jason Wang1cfe6e92017-09-04 11:36:09 +08001427 int len, int *skb_xdp)
Jason Wang66ccbc92017-08-11 19:41:16 +08001428{
Eric Dumazet0bbd7da2017-08-16 22:14:33 +08001429 struct page_frag *alloc_frag = &current->task_frag;
Jason Wang66ccbc92017-08-11 19:41:16 +08001430 struct sk_buff *skb;
Jason Wang761876c2017-08-11 19:41:18 +08001431 struct bpf_prog *xdp_prog;
Jason Wang7df13212017-09-04 11:36:08 +08001432 int buflen = SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
Jason Wang761876c2017-08-11 19:41:18 +08001433 unsigned int delta = 0;
Jason Wang66ccbc92017-08-11 19:41:16 +08001434 char *buf;
1435 size_t copied;
Jason Wang761876c2017-08-11 19:41:18 +08001436 bool xdp_xmit = false;
Jason Wang7df13212017-09-04 11:36:08 +08001437 int err, pad = TUN_RX_PAD;
1438
1439 rcu_read_lock();
1440 xdp_prog = rcu_dereference(tun->xdp_prog);
1441 if (xdp_prog)
1442 pad += TUN_HEADROOM;
1443 buflen += SKB_DATA_ALIGN(len + pad);
1444 rcu_read_unlock();
Jason Wang66ccbc92017-08-11 19:41:16 +08001445
1446 if (unlikely(!skb_page_frag_refill(buflen, alloc_frag, GFP_KERNEL)))
1447 return ERR_PTR(-ENOMEM);
1448
1449 buf = (char *)page_address(alloc_frag->page) + alloc_frag->offset;
1450 copied = copy_page_from_iter(alloc_frag->page,
Jason Wang7df13212017-09-04 11:36:08 +08001451 alloc_frag->offset + pad,
Jason Wang66ccbc92017-08-11 19:41:16 +08001452 len, from);
1453 if (copied != len)
1454 return ERR_PTR(-EFAULT);
1455
Jason Wang7df13212017-09-04 11:36:08 +08001456 /* There's a small window that XDP may be set after the check
1457 * of xdp_prog above, this should be rare and for simplicity
1458 * we do XDP on skb in case the headroom is not enough.
1459 */
1460 if (hdr->gso_type || !xdp_prog)
Jason Wang1cfe6e92017-09-04 11:36:09 +08001461 *skb_xdp = 1;
Jason Wang761876c2017-08-11 19:41:18 +08001462 else
Jason Wang1cfe6e92017-09-04 11:36:09 +08001463 *skb_xdp = 0;
Jason Wang66ccbc92017-08-11 19:41:16 +08001464
Jason Wang761876c2017-08-11 19:41:18 +08001465 rcu_read_lock();
1466 xdp_prog = rcu_dereference(tun->xdp_prog);
Jason Wang1cfe6e92017-09-04 11:36:09 +08001467 if (xdp_prog && !*skb_xdp) {
Jason Wang761876c2017-08-11 19:41:18 +08001468 struct xdp_buff xdp;
1469 void *orig_data;
1470 u32 act;
1471
1472 xdp.data_hard_start = buf;
Jason Wang7df13212017-09-04 11:36:08 +08001473 xdp.data = buf + pad;
Daniel Borkmannde8f3a82017-09-25 02:25:51 +02001474 xdp_set_data_meta_invalid(&xdp);
Jason Wang761876c2017-08-11 19:41:18 +08001475 xdp.data_end = xdp.data + len;
1476 orig_data = xdp.data;
1477 act = bpf_prog_run_xdp(xdp_prog, &xdp);
1478
1479 switch (act) {
1480 case XDP_REDIRECT:
1481 get_page(alloc_frag->page);
1482 alloc_frag->offset += buflen;
1483 err = xdp_do_redirect(tun->dev, &xdp, xdp_prog);
1484 if (err)
1485 goto err_redirect;
1486 return NULL;
1487 case XDP_TX:
1488 xdp_xmit = true;
1489 /* fall through */
1490 case XDP_PASS:
1491 delta = orig_data - xdp.data;
1492 break;
1493 default:
1494 bpf_warn_invalid_xdp_action(act);
1495 /* fall through */
1496 case XDP_ABORTED:
1497 trace_xdp_exception(tun->dev, xdp_prog, act);
1498 /* fall through */
1499 case XDP_DROP:
1500 goto err_xdp;
1501 }
1502 }
1503
1504 skb = build_skb(buf, buflen);
1505 if (!skb) {
1506 rcu_read_unlock();
1507 return ERR_PTR(-ENOMEM);
1508 }
1509
Jason Wang7df13212017-09-04 11:36:08 +08001510 skb_reserve(skb, pad - delta);
Jason Wang761876c2017-08-11 19:41:18 +08001511 skb_put(skb, len + delta);
Jason Wang66ccbc92017-08-11 19:41:16 +08001512 get_page(alloc_frag->page);
1513 alloc_frag->offset += buflen;
1514
Jason Wang761876c2017-08-11 19:41:18 +08001515 if (xdp_xmit) {
1516 skb->dev = tun->dev;
1517 generic_xdp_tx(skb, xdp_prog);
1518 rcu_read_lock();
1519 return NULL;
1520 }
1521
1522 rcu_read_unlock();
1523
Jason Wang66ccbc92017-08-11 19:41:16 +08001524 return skb;
Jason Wang761876c2017-08-11 19:41:18 +08001525
1526err_redirect:
1527 put_page(alloc_frag->page);
1528err_xdp:
1529 rcu_read_unlock();
1530 this_cpu_inc(tun->pcpu_stats->rx_dropped);
1531 return NULL;
Jason Wang66ccbc92017-08-11 19:41:16 +08001532}
1533
Linus Torvalds1da177e2005-04-16 15:20:36 -07001534/* Get packet from user space buffer */
Jason Wang54f968d2012-10-31 19:45:57 +00001535static ssize_t tun_get_user(struct tun_struct *tun, struct tun_file *tfile,
Al Virof5ff53b2014-06-19 15:36:49 -04001536 void *msg_control, struct iov_iter *from,
Jason Wang5503fce2017-01-18 15:02:03 +08001537 int noblock, bool more)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538{
Harvey Harrison09640e632009-02-01 00:45:17 -08001539 struct tun_pi pi = { 0, cpu_to_be16(ETH_P_IP) };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001540 struct sk_buff *skb;
Al Virof5ff53b2014-06-19 15:36:49 -04001541 size_t total_len = iov_iter_count(from);
Paolo Abenieaea34b2016-02-26 10:45:40 +01001542 size_t len = total_len, align = tun->align, linear;
Rusty Russellf43798c2008-07-03 03:48:02 -07001543 struct virtio_net_hdr gso = { 0 };
Paolo Abeni608b9972016-04-13 10:52:20 +02001544 struct tun_pcpu_stats *stats;
Jason Wang96f8d9e2013-11-13 14:00:39 +08001545 int good_linear;
Michael S. Tsirkin06908992012-07-20 09:23:23 +00001546 int copylen;
1547 bool zerocopy = false;
1548 int err;
Eric Dumazet49974422012-12-12 19:22:57 +00001549 u32 rxhash;
Jason Wang1cfe6e92017-09-04 11:36:09 +08001550 int skb_xdp = 1;
Petar Penkov90e33d42017-09-22 13:49:15 -07001551 bool frags = tun_napi_frags_enabled(tun);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001552
Eric Dumazet1bd4978a2015-12-16 08:57:37 -08001553 if (!(tun->dev->flags & IFF_UP))
1554 return -EIO;
1555
Michael S. Tsirkin40630b82014-11-19 15:17:31 +02001556 if (!(tun->flags & IFF_NO_PI)) {
Dan Carpenter15718ea2013-08-15 15:52:57 +03001557 if (len < sizeof(pi))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558 return -EINVAL;
Dan Carpenter15718ea2013-08-15 15:52:57 +03001559 len -= sizeof(pi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001560
Al Virocbbd26b2016-11-01 22:09:04 -04001561 if (!copy_from_iter_full(&pi, sizeof(pi), from))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001562 return -EFAULT;
1563 }
1564
Michael S. Tsirkin40630b82014-11-19 15:17:31 +02001565 if (tun->flags & IFF_VNET_HDR) {
Willem de Bruijne1edab82017-02-03 18:20:48 -05001566 int vnet_hdr_sz = READ_ONCE(tun->vnet_hdr_sz);
1567
1568 if (len < vnet_hdr_sz)
Rusty Russellf43798c2008-07-03 03:48:02 -07001569 return -EINVAL;
Willem de Bruijne1edab82017-02-03 18:20:48 -05001570 len -= vnet_hdr_sz;
Rusty Russellf43798c2008-07-03 03:48:02 -07001571
Al Virocbbd26b2016-11-01 22:09:04 -04001572 if (!copy_from_iter_full(&gso, sizeof(gso), from))
Rusty Russellf43798c2008-07-03 03:48:02 -07001573 return -EFAULT;
1574
Herbert Xu49091222009-06-08 00:20:01 -07001575 if ((gso.flags & VIRTIO_NET_HDR_F_NEEDS_CSUM) &&
Michael S. Tsirkin56f0dcc2014-10-23 22:59:31 +03001576 tun16_to_cpu(tun, gso.csum_start) + tun16_to_cpu(tun, gso.csum_offset) + 2 > tun16_to_cpu(tun, gso.hdr_len))
1577 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 -07001578
Michael S. Tsirkin56f0dcc2014-10-23 22:59:31 +03001579 if (tun16_to_cpu(tun, gso.hdr_len) > len)
Rusty Russellf43798c2008-07-03 03:48:02 -07001580 return -EINVAL;
Willem de Bruijne1edab82017-02-03 18:20:48 -05001581 iov_iter_advance(from, vnet_hdr_sz - sizeof(gso));
Rusty Russellf43798c2008-07-03 03:48:02 -07001582 }
1583
Michael S. Tsirkin40630b82014-11-19 15:17:31 +02001584 if ((tun->flags & TUN_TYPE_MASK) == IFF_TAP) {
stephen hemmingera504b862011-06-08 14:33:07 +00001585 align += NET_IP_ALIGN;
Herbert Xu0eca93b2009-04-14 02:09:43 -07001586 if (unlikely(len < ETH_HLEN ||
Michael S. Tsirkin56f0dcc2014-10-23 22:59:31 +03001587 (gso.hdr_len && tun16_to_cpu(tun, gso.hdr_len) < ETH_HLEN)))
Rusty Russelle01bf1c2008-04-12 18:49:30 -07001588 return -EINVAL;
1589 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001590
Jason Wang96f8d9e2013-11-13 14:00:39 +08001591 good_linear = SKB_MAX_HEAD(align);
1592
Jason Wang88529172013-07-18 10:55:15 +08001593 if (msg_control) {
Al Virof5ff53b2014-06-19 15:36:49 -04001594 struct iov_iter i = *from;
1595
Jason Wang88529172013-07-18 10:55:15 +08001596 /* There are 256 bytes to be copied in skb, so there is
1597 * enough room for skb expand head in case it is used.
Michael S. Tsirkin06908992012-07-20 09:23:23 +00001598 * The rest of the buffer is mapped from userspace.
1599 */
Michael S. Tsirkin56f0dcc2014-10-23 22:59:31 +03001600 copylen = gso.hdr_len ? tun16_to_cpu(tun, gso.hdr_len) : GOODCOPY_LEN;
Jason Wang96f8d9e2013-11-13 14:00:39 +08001601 if (copylen > good_linear)
1602 copylen = good_linear;
Jason Wang3dd5c332013-07-10 13:43:27 +08001603 linear = copylen;
Al Virof5ff53b2014-06-19 15:36:49 -04001604 iov_iter_advance(&i, copylen);
1605 if (iov_iter_npages(&i, INT_MAX) <= MAX_SKB_FRAGS)
Jason Wang88529172013-07-18 10:55:15 +08001606 zerocopy = true;
1607 }
1608
Petar Penkov90e33d42017-09-22 13:49:15 -07001609 if (!frags && tun_can_build_skb(tun, tfile, len, noblock, zerocopy)) {
Jason Wang1cfe6e92017-09-04 11:36:09 +08001610 /* For the packet that is not easy to be processed
1611 * (e.g gso or jumbo packet), we will do it at after
1612 * skb was created with generic XDP routine.
1613 */
1614 skb = tun_build_skb(tun, tfile, from, &gso, len, &skb_xdp);
Jason Wang66ccbc92017-08-11 19:41:16 +08001615 if (IS_ERR(skb)) {
Paolo Abeni608b9972016-04-13 10:52:20 +02001616 this_cpu_inc(tun->pcpu_stats->rx_dropped);
Jason Wang66ccbc92017-08-11 19:41:16 +08001617 return PTR_ERR(skb);
1618 }
Jason Wang761876c2017-08-11 19:41:18 +08001619 if (!skb)
1620 return total_len;
Jason Wang66ccbc92017-08-11 19:41:16 +08001621 } else {
1622 if (!zerocopy) {
1623 copylen = len;
1624 if (tun16_to_cpu(tun, gso.hdr_len) > good_linear)
1625 linear = good_linear;
1626 else
1627 linear = tun16_to_cpu(tun, gso.hdr_len);
1628 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001629
Petar Penkov90e33d42017-09-22 13:49:15 -07001630 if (frags) {
1631 mutex_lock(&tfile->napi_mutex);
1632 skb = tun_napi_alloc_frags(tfile, copylen, from);
1633 /* tun_napi_alloc_frags() enforces a layout for the skb.
1634 * If zerocopy is enabled, then this layout will be
1635 * overwritten by zerocopy_sg_from_iter().
1636 */
1637 zerocopy = false;
1638 } else {
1639 skb = tun_alloc_skb(tfile, align, copylen, linear,
1640 noblock);
1641 }
1642
Jason Wang66ccbc92017-08-11 19:41:16 +08001643 if (IS_ERR(skb)) {
1644 if (PTR_ERR(skb) != -EAGAIN)
1645 this_cpu_inc(tun->pcpu_stats->rx_dropped);
Petar Penkov90e33d42017-09-22 13:49:15 -07001646 if (frags)
1647 mutex_unlock(&tfile->napi_mutex);
Jason Wang66ccbc92017-08-11 19:41:16 +08001648 return PTR_ERR(skb);
1649 }
Michael S. Tsirkin06908992012-07-20 09:23:23 +00001650
Jason Wang66ccbc92017-08-11 19:41:16 +08001651 if (zerocopy)
1652 err = zerocopy_sg_from_iter(skb, from);
1653 else
1654 err = skb_copy_datagram_from_iter(skb, 0, from, len);
1655
1656 if (err) {
1657 this_cpu_inc(tun->pcpu_stats->rx_dropped);
1658 kfree_skb(skb);
Petar Penkov90e33d42017-09-22 13:49:15 -07001659 if (frags) {
1660 tfile->napi.skb = NULL;
1661 mutex_unlock(&tfile->napi_mutex);
1662 }
1663
Jason Wang66ccbc92017-08-11 19:41:16 +08001664 return -EFAULT;
1665 }
Dave Jones8f227572006-03-11 18:49:13 -08001666 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001667
Jarno Rajahalme3e9e40e2016-11-18 15:40:38 -08001668 if (virtio_net_hdr_to_skb(skb, &gso, tun_is_little_endian(tun))) {
Paolo Abenidf10db92016-06-14 00:00:04 +02001669 this_cpu_inc(tun->pcpu_stats->rx_frame_errors);
1670 kfree_skb(skb);
Petar Penkov90e33d42017-09-22 13:49:15 -07001671 if (frags) {
1672 tfile->napi.skb = NULL;
1673 mutex_unlock(&tfile->napi_mutex);
1674 }
1675
Paolo Abenidf10db92016-06-14 00:00:04 +02001676 return -EINVAL;
1677 }
1678
Linus Torvalds1da177e2005-04-16 15:20:36 -07001679 switch (tun->flags & TUN_TYPE_MASK) {
Michael S. Tsirkin40630b82014-11-19 15:17:31 +02001680 case IFF_TUN:
1681 if (tun->flags & IFF_NO_PI) {
Alexander Potapenko2580c4c2017-09-28 11:32:37 +02001682 u8 ip_version = skb->len ? (skb->data[0] >> 4) : 0;
1683
1684 switch (ip_version) {
1685 case 4:
Ang Way Chuangf09f7ee2008-06-17 21:10:33 -07001686 pi.proto = htons(ETH_P_IP);
1687 break;
Alexander Potapenko2580c4c2017-09-28 11:32:37 +02001688 case 6:
Ang Way Chuangf09f7ee2008-06-17 21:10:33 -07001689 pi.proto = htons(ETH_P_IPV6);
1690 break;
1691 default:
Paolo Abeni608b9972016-04-13 10:52:20 +02001692 this_cpu_inc(tun->pcpu_stats->rx_dropped);
Ang Way Chuangf09f7ee2008-06-17 21:10:33 -07001693 kfree_skb(skb);
1694 return -EINVAL;
1695 }
1696 }
1697
Arnaldo Carvalho de Melo459a98e2007-03-19 15:30:44 -07001698 skb_reset_mac_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001699 skb->protocol = pi.proto;
Arnaldo Carvalho de Melo4c13eb62007-04-25 17:40:23 -07001700 skb->dev = tun->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001701 break;
Michael S. Tsirkin40630b82014-11-19 15:17:31 +02001702 case IFF_TAP:
Petar Penkov90e33d42017-09-22 13:49:15 -07001703 if (!frags)
1704 skb->protocol = eth_type_trans(skb, tun->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001705 break;
Joe Perches6403eab2011-06-03 11:51:20 +00001706 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001707
Michael S. Tsirkin06908992012-07-20 09:23:23 +00001708 /* copy skb_ubuf_info for callback when skb has no error */
1709 if (zerocopy) {
1710 skb_shinfo(skb)->destructor_arg = msg_control;
1711 skb_shinfo(skb)->tx_flags |= SKBTX_DEV_ZEROCOPY;
Pravin B Shelarc9af6db2013-02-11 09:27:41 +00001712 skb_shinfo(skb)->tx_flags |= SKBTX_SHARED_FRAG;
Jason Wangaf1cc7a2016-11-30 13:17:51 +08001713 } else if (msg_control) {
1714 struct ubuf_info *uarg = msg_control;
1715 uarg->callback(uarg, false);
Michael S. Tsirkin06908992012-07-20 09:23:23 +00001716 }
1717
Vlad Yasevich72f65102015-02-03 16:36:16 -05001718 skb_reset_network_header(skb);
Jason Wang40893fd2013-03-26 23:11:22 +00001719 skb_probe_transport_header(skb, 0);
Jason Wang38502af2013-03-25 20:19:56 +00001720
Jason Wang1cfe6e92017-09-04 11:36:09 +08001721 if (skb_xdp) {
Jason Wang761876c2017-08-11 19:41:18 +08001722 struct bpf_prog *xdp_prog;
1723 int ret;
1724
1725 rcu_read_lock();
1726 xdp_prog = rcu_dereference(tun->xdp_prog);
1727 if (xdp_prog) {
1728 ret = do_xdp_generic(xdp_prog, skb);
1729 if (ret != XDP_PASS) {
1730 rcu_read_unlock();
1731 return total_len;
1732 }
1733 }
1734 rcu_read_unlock();
1735 }
1736
Jason Wangfeec0842017-06-06 14:09:49 +08001737 rxhash = __skb_get_hash_symmetric(skb);
Petar Penkov94317092017-09-22 13:49:14 -07001738
Petar Penkov90e33d42017-09-22 13:49:15 -07001739 if (frags) {
1740 /* Exercise flow dissector code path. */
1741 u32 headlen = eth_get_headlen(skb->data, skb_headlen(skb));
1742
Eric Dumazet010f2452017-10-17 10:07:44 -07001743 if (unlikely(headlen > skb_headlen(skb))) {
Petar Penkov90e33d42017-09-22 13:49:15 -07001744 this_cpu_inc(tun->pcpu_stats->rx_dropped);
1745 napi_free_frags(&tfile->napi);
1746 mutex_unlock(&tfile->napi_mutex);
1747 WARN_ON(1);
1748 return -ENOMEM;
1749 }
1750
1751 local_bh_disable();
1752 napi_gro_frags(&tfile->napi);
1753 local_bh_enable();
1754 mutex_unlock(&tfile->napi_mutex);
Eric Dumazetaec72f32017-10-18 12:12:09 -07001755 } else if (tfile->napi_enabled) {
Petar Penkov94317092017-09-22 13:49:14 -07001756 struct sk_buff_head *queue = &tfile->sk.sk_write_queue;
1757 int queue_len;
1758
1759 spin_lock_bh(&queue->lock);
1760 __skb_queue_tail(queue, skb);
1761 queue_len = skb_queue_len(queue);
1762 spin_unlock(&queue->lock);
1763
1764 if (!more || queue_len > NAPI_POLL_WEIGHT)
1765 napi_schedule(&tfile->napi);
1766
1767 local_bh_enable();
1768 } else if (!IS_ENABLED(CONFIG_4KSTACKS)) {
1769 tun_rx_batched(tun, tfile, skb, more);
1770 } else {
1771 netif_rx_ni(skb);
1772 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001773
Paolo Abeni608b9972016-04-13 10:52:20 +02001774 stats = get_cpu_ptr(tun->pcpu_stats);
1775 u64_stats_update_begin(&stats->syncp);
1776 stats->rx_packets++;
1777 stats->rx_bytes += len;
1778 u64_stats_update_end(&stats->syncp);
1779 put_cpu_ptr(stats);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001780
Jason Wang9e857222013-01-28 01:05:19 +00001781 tun_flow_update(tun, rxhash, tfile);
Michael S. Tsirkin06908992012-07-20 09:23:23 +00001782 return total_len;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001783}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001784
Al Virof5ff53b2014-06-19 15:36:49 -04001785static ssize_t tun_chr_write_iter(struct kiocb *iocb, struct iov_iter *from)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001786{
Herbert Xu33dccbb2009-02-05 21:25:32 -08001787 struct file *file = iocb->ki_filp;
Jason Wang54f968d2012-10-31 19:45:57 +00001788 struct tun_file *tfile = file->private_data;
yuan linyu9484dc72017-09-23 22:36:52 +08001789 struct tun_struct *tun = tun_get(tfile);
Eric W. Biederman631ab462009-01-20 11:00:40 +00001790 ssize_t result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001791
1792 if (!tun)
1793 return -EBADFD;
1794
Jason Wang5503fce2017-01-18 15:02:03 +08001795 result = tun_get_user(tun, tfile, NULL, from,
1796 file->f_flags & O_NONBLOCK, false);
Eric W. Biederman631ab462009-01-20 11:00:40 +00001797
1798 tun_put(tun);
1799 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001800}
1801
Linus Torvalds1da177e2005-04-16 15:20:36 -07001802/* Put packet to the user space buffer */
stephen hemminger6f7c1562011-06-08 14:33:08 +00001803static ssize_t tun_put_user(struct tun_struct *tun,
Jason Wang54f968d2012-10-31 19:45:57 +00001804 struct tun_file *tfile,
stephen hemminger6f7c1562011-06-08 14:33:08 +00001805 struct sk_buff *skb,
Herbert Xue0b46d02014-11-07 21:22:23 +08001806 struct iov_iter *iter)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001807{
1808 struct tun_pi pi = { 0, skb->protocol };
Paolo Abeni608b9972016-04-13 10:52:20 +02001809 struct tun_pcpu_stats *stats;
Herbert Xue0b46d02014-11-07 21:22:23 +08001810 ssize_t total;
Jason Wang8c847d22014-11-13 16:54:14 +08001811 int vlan_offset = 0;
Herbert Xua8f9bfd2014-11-03 04:30:13 +08001812 int vlan_hlen = 0;
Herbert Xu2eb783c2014-11-03 04:30:14 +08001813 int vnet_hdr_sz = 0;
Herbert Xua8f9bfd2014-11-03 04:30:13 +08001814
Jiri Pirkodf8a39d2015-01-13 17:13:44 +01001815 if (skb_vlan_tag_present(skb))
Herbert Xua8f9bfd2014-11-03 04:30:13 +08001816 vlan_hlen = VLAN_HLEN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001817
Michael S. Tsirkin40630b82014-11-19 15:17:31 +02001818 if (tun->flags & IFF_VNET_HDR)
Willem de Bruijne1edab82017-02-03 18:20:48 -05001819 vnet_hdr_sz = READ_ONCE(tun->vnet_hdr_sz);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001820
Herbert Xue0b46d02014-11-07 21:22:23 +08001821 total = skb->len + vlan_hlen + vnet_hdr_sz;
1822
Michael S. Tsirkin40630b82014-11-19 15:17:31 +02001823 if (!(tun->flags & IFF_NO_PI)) {
Herbert Xue0b46d02014-11-07 21:22:23 +08001824 if (iov_iter_count(iter) < sizeof(pi))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001825 return -EINVAL;
1826
Herbert Xue0b46d02014-11-07 21:22:23 +08001827 total += sizeof(pi);
1828 if (iov_iter_count(iter) < total) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001829 /* Packet will be striped */
1830 pi.flags |= TUN_PKT_STRIP;
1831 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001832
Herbert Xue0b46d02014-11-07 21:22:23 +08001833 if (copy_to_iter(&pi, sizeof(pi), iter) != sizeof(pi))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001834 return -EFAULT;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001835 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001836
Herbert Xu2eb783c2014-11-03 04:30:14 +08001837 if (vnet_hdr_sz) {
Jarno Rajahalme9403cd72016-11-18 15:40:40 -08001838 struct virtio_net_hdr gso;
Mike Rapoport34166092016-06-08 16:09:20 +03001839
Herbert Xue0b46d02014-11-07 21:22:23 +08001840 if (iov_iter_count(iter) < vnet_hdr_sz)
Rusty Russellf43798c2008-07-03 03:48:02 -07001841 return -EINVAL;
1842
Jarno Rajahalme3e9e40e2016-11-18 15:40:38 -08001843 if (virtio_net_hdr_from_skb(skb, &gso,
Jason Wang6391a442017-01-20 14:32:42 +08001844 tun_is_little_endian(tun), true)) {
Rusty Russellf43798c2008-07-03 03:48:02 -07001845 struct skb_shared_info *sinfo = skb_shinfo(skb);
Mike Rapoport34166092016-06-08 16:09:20 +03001846 pr_err("unexpected GSO type: "
1847 "0x%x, gso_size %d, hdr_len %d\n",
1848 sinfo->gso_type, tun16_to_cpu(tun, gso.gso_size),
1849 tun16_to_cpu(tun, gso.hdr_len));
1850 print_hex_dump(KERN_ERR, "tun: ",
1851 DUMP_PREFIX_NONE,
1852 16, 1, skb->head,
1853 min((int)tun16_to_cpu(tun, gso.hdr_len), 64), true);
1854 WARN_ON_ONCE(1);
1855 return -EINVAL;
1856 }
Rusty Russellf43798c2008-07-03 03:48:02 -07001857
Herbert Xue0b46d02014-11-07 21:22:23 +08001858 if (copy_to_iter(&gso, sizeof(gso), iter) != sizeof(gso))
Rusty Russellf43798c2008-07-03 03:48:02 -07001859 return -EFAULT;
Jason Wang8c847d22014-11-13 16:54:14 +08001860
1861 iov_iter_advance(iter, vnet_hdr_sz - sizeof(gso));
Rusty Russellf43798c2008-07-03 03:48:02 -07001862 }
1863
Herbert Xua8f9bfd2014-11-03 04:30:13 +08001864 if (vlan_hlen) {
Herbert Xue0b46d02014-11-07 21:22:23 +08001865 int ret;
Jason Wang6680ec62013-07-25 13:00:33 +08001866 struct {
1867 __be16 h_vlan_proto;
1868 __be16 h_vlan_TCI;
1869 } veth;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001870
Jason Wang6680ec62013-07-25 13:00:33 +08001871 veth.h_vlan_proto = skb->vlan_proto;
Jiri Pirkodf8a39d2015-01-13 17:13:44 +01001872 veth.h_vlan_TCI = htons(skb_vlan_tag_get(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001873
Jason Wang6680ec62013-07-25 13:00:33 +08001874 vlan_offset = offsetof(struct vlan_ethhdr, h_vlan_proto);
Jason Wang6680ec62013-07-25 13:00:33 +08001875
Herbert Xue0b46d02014-11-07 21:22:23 +08001876 ret = skb_copy_datagram_iter(skb, 0, iter, vlan_offset);
1877 if (ret || !iov_iter_count(iter))
Jason Wang6680ec62013-07-25 13:00:33 +08001878 goto done;
1879
Herbert Xue0b46d02014-11-07 21:22:23 +08001880 ret = copy_to_iter(&veth, sizeof(veth), iter);
1881 if (ret != sizeof(veth) || !iov_iter_count(iter))
Jason Wang6680ec62013-07-25 13:00:33 +08001882 goto done;
1883 }
1884
Herbert Xue0b46d02014-11-07 21:22:23 +08001885 skb_copy_datagram_iter(skb, vlan_offset, iter, skb->len - vlan_offset);
Jason Wang6680ec62013-07-25 13:00:33 +08001886
1887done:
Paolo Abeni608b9972016-04-13 10:52:20 +02001888 /* caller is in process context, */
1889 stats = get_cpu_ptr(tun->pcpu_stats);
1890 u64_stats_update_begin(&stats->syncp);
1891 stats->tx_packets++;
1892 stats->tx_bytes += skb->len + vlan_hlen;
1893 u64_stats_update_end(&stats->syncp);
1894 put_cpu_ptr(tun->pcpu_stats);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001895
1896 return total;
1897}
1898
Jason Wang1576d982016-06-30 14:45:36 +08001899static struct sk_buff *tun_ring_recv(struct tun_file *tfile, int noblock,
1900 int *err)
1901{
1902 DECLARE_WAITQUEUE(wait, current);
1903 struct sk_buff *skb = NULL;
Jason Wangf48cc6b2016-07-04 13:53:38 +08001904 int error = 0;
Jason Wang1576d982016-06-30 14:45:36 +08001905
1906 skb = skb_array_consume(&tfile->tx_array);
1907 if (skb)
1908 goto out;
1909 if (noblock) {
Jason Wangf48cc6b2016-07-04 13:53:38 +08001910 error = -EAGAIN;
Jason Wang1576d982016-06-30 14:45:36 +08001911 goto out;
1912 }
1913
1914 add_wait_queue(&tfile->wq.wait, &wait);
1915 current->state = TASK_INTERRUPTIBLE;
1916
1917 while (1) {
1918 skb = skb_array_consume(&tfile->tx_array);
1919 if (skb)
1920 break;
1921 if (signal_pending(current)) {
Jason Wangf48cc6b2016-07-04 13:53:38 +08001922 error = -ERESTARTSYS;
Jason Wang1576d982016-06-30 14:45:36 +08001923 break;
1924 }
1925 if (tfile->socket.sk->sk_shutdown & RCV_SHUTDOWN) {
Jason Wangf48cc6b2016-07-04 13:53:38 +08001926 error = -EFAULT;
Jason Wang1576d982016-06-30 14:45:36 +08001927 break;
1928 }
1929
1930 schedule();
1931 }
1932
1933 current->state = TASK_RUNNING;
1934 remove_wait_queue(&tfile->wq.wait, &wait);
1935
1936out:
Jason Wangf48cc6b2016-07-04 13:53:38 +08001937 *err = error;
Jason Wang1576d982016-06-30 14:45:36 +08001938 return skb;
1939}
1940
Jason Wang54f968d2012-10-31 19:45:57 +00001941static ssize_t tun_do_read(struct tun_struct *tun, struct tun_file *tfile,
Al Viro9b067032014-11-07 13:52:07 -05001942 struct iov_iter *to,
Jason Wangac77cfd2017-05-17 12:14:43 +08001943 int noblock, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001944{
Al Viro9b067032014-11-07 13:52:07 -05001945 ssize_t ret;
Jason Wang1576d982016-06-30 14:45:36 +08001946 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001947
Rami Rosen3872baf2012-11-25 22:07:41 +00001948 tun_debug(KERN_INFO, tun, "tun_do_read\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001949
Al Viro9b067032014-11-07 13:52:07 -05001950 if (!iov_iter_count(to))
1951 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001952
Jason Wangac77cfd2017-05-17 12:14:43 +08001953 if (!skb) {
1954 /* Read frames from ring */
1955 skb = tun_ring_recv(tfile, noblock, &err);
1956 if (!skb)
1957 return err;
1958 }
Herbert Xue0b46d02014-11-07 21:22:23 +08001959
Al Viro9b067032014-11-07 13:52:07 -05001960 ret = tun_put_user(tun, tfile, skb, to);
Jason Wangf51a5e82014-12-01 16:53:15 +08001961 if (unlikely(ret < 0))
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -07001962 kfree_skb(skb);
Jason Wangf51a5e82014-12-01 16:53:15 +08001963 else
1964 consume_skb(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001965
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00001966 return ret;
1967}
1968
Al Viro9b067032014-11-07 13:52:07 -05001969static ssize_t tun_chr_read_iter(struct kiocb *iocb, struct iov_iter *to)
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00001970{
1971 struct file *file = iocb->ki_filp;
1972 struct tun_file *tfile = file->private_data;
yuan linyu9484dc72017-09-23 22:36:52 +08001973 struct tun_struct *tun = tun_get(tfile);
Al Viro9b067032014-11-07 13:52:07 -05001974 ssize_t len = iov_iter_count(to), ret;
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00001975
1976 if (!tun)
1977 return -EBADFD;
Jason Wangac77cfd2017-05-17 12:14:43 +08001978 ret = tun_do_read(tun, tfile, to, file->f_flags & O_NONBLOCK, NULL);
David S. Miller42404c02013-12-10 22:05:45 -05001979 ret = min_t(ssize_t, ret, len);
Zhi Yong Wud0b7da8a2013-12-06 14:16:51 +08001980 if (ret > 0)
1981 iocb->ki_pos = ret;
Eric W. Biederman631ab462009-01-20 11:00:40 +00001982 tun_put(tun);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001983 return ret;
1984}
1985
Jason Wang96442e422012-10-31 19:46:02 +00001986static void tun_free_netdev(struct net_device *dev)
1987{
1988 struct tun_struct *tun = netdev_priv(dev);
1989
Jason Wang4008e972012-12-13 23:53:30 +00001990 BUG_ON(!(list_empty(&tun->disabled)));
Paolo Abeni608b9972016-04-13 10:52:20 +02001991 free_percpu(tun->pcpu_stats);
Jason Wang96442e422012-10-31 19:46:02 +00001992 tun_flow_uninit(tun);
Paul Moore5dbbaf22013-01-14 07:12:19 +00001993 security_tun_dev_free_security(tun->security);
Jason Wang96442e422012-10-31 19:46:02 +00001994}
1995
Linus Torvalds1da177e2005-04-16 15:20:36 -07001996static void tun_setup(struct net_device *dev)
1997{
1998 struct tun_struct *tun = netdev_priv(dev);
1999
Eric W. Biederman0625c882012-02-07 16:48:55 -08002000 tun->owner = INVALID_UID;
2001 tun->group = INVALID_GID;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002002
Linus Torvalds1da177e2005-04-16 15:20:36 -07002003 dev->ethtool_ops = &tun_ethtool_ops;
David S. Millercf124db2017-05-08 12:52:56 -04002004 dev->needs_free_netdev = true;
2005 dev->priv_destructor = tun_free_netdev;
Jason Wang016adb72016-04-08 13:26:48 +08002006 /* We prefer our own queue length */
2007 dev->tx_queue_len = TUN_READQ_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002008}
2009
Eric W. Biedermanf019a7a2009-01-21 16:02:16 -08002010/* Trivial set of netlink ops to allow deleting tun or tap
2011 * device with netlink.
2012 */
Matthias Schiffera8b8a8892017-06-25 23:56:01 +02002013static int tun_validate(struct nlattr *tb[], struct nlattr *data[],
2014 struct netlink_ext_ack *extack)
Eric W. Biedermanf019a7a2009-01-21 16:02:16 -08002015{
2016 return -EINVAL;
2017}
2018
2019static struct rtnl_link_ops tun_link_ops __read_mostly = {
2020 .kind = DRV_NAME,
2021 .priv_size = sizeof(struct tun_struct),
2022 .setup = tun_setup,
2023 .validate = tun_validate,
2024};
2025
Herbert Xu33dccbb2009-02-05 21:25:32 -08002026static void tun_sock_write_space(struct sock *sk)
2027{
Jason Wang54f968d2012-10-31 19:45:57 +00002028 struct tun_file *tfile;
Eric Dumazet43815482010-04-29 11:01:49 +00002029 wait_queue_head_t *wqueue;
Herbert Xu33dccbb2009-02-05 21:25:32 -08002030
2031 if (!sock_writeable(sk))
2032 return;
2033
Eric Dumazet9cd3e072015-11-29 20:03:10 -08002034 if (!test_and_clear_bit(SOCKWQ_ASYNC_NOSPACE, &sk->sk_socket->flags))
Herbert Xu33dccbb2009-02-05 21:25:32 -08002035 return;
2036
Eric Dumazet43815482010-04-29 11:01:49 +00002037 wqueue = sk_sleep(sk);
2038 if (wqueue && waitqueue_active(wqueue))
2039 wake_up_interruptible_sync_poll(wqueue, POLLOUT |
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00002040 POLLWRNORM | POLLWRBAND);
Herbert Xuc722c622009-06-03 21:45:55 -07002041
Jason Wang54f968d2012-10-31 19:45:57 +00002042 tfile = container_of(sk, struct tun_file, sk);
2043 kill_fasync(&tfile->fasync, SIGIO, POLL_OUT);
Herbert Xu33dccbb2009-02-05 21:25:32 -08002044}
2045
Ying Xue1b784142015-03-02 15:37:48 +08002046static int tun_sendmsg(struct socket *sock, struct msghdr *m, size_t total_len)
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00002047{
Jason Wang54f968d2012-10-31 19:45:57 +00002048 int ret;
2049 struct tun_file *tfile = container_of(sock, struct tun_file, socket);
yuan linyu9484dc72017-09-23 22:36:52 +08002050 struct tun_struct *tun = tun_get(tfile);
Jason Wang54f968d2012-10-31 19:45:57 +00002051
2052 if (!tun)
2053 return -EBADFD;
Al Virof5ff53b2014-06-19 15:36:49 -04002054
Al Viroc0371da2014-11-24 10:42:55 -05002055 ret = tun_get_user(tun, tfile, m->msg_control, &m->msg_iter,
Jason Wang5503fce2017-01-18 15:02:03 +08002056 m->msg_flags & MSG_DONTWAIT,
2057 m->msg_flags & MSG_MORE);
Jason Wang54f968d2012-10-31 19:45:57 +00002058 tun_put(tun);
2059 return ret;
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00002060}
2061
Ying Xue1b784142015-03-02 15:37:48 +08002062static int tun_recvmsg(struct socket *sock, struct msghdr *m, size_t total_len,
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00002063 int flags)
2064{
Jason Wang54f968d2012-10-31 19:45:57 +00002065 struct tun_file *tfile = container_of(sock, struct tun_file, socket);
yuan linyu9484dc72017-09-23 22:36:52 +08002066 struct tun_struct *tun = tun_get(tfile);
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00002067 int ret;
Jason Wang54f968d2012-10-31 19:45:57 +00002068
2069 if (!tun)
2070 return -EBADFD;
2071
Richard Cochraneda29772013-07-19 19:40:10 +02002072 if (flags & ~(MSG_DONTWAIT|MSG_TRUNC|MSG_ERRQUEUE)) {
Gao feng3811ae72013-04-24 21:59:23 +00002073 ret = -EINVAL;
2074 goto out;
2075 }
Richard Cochraneda29772013-07-19 19:40:10 +02002076 if (flags & MSG_ERRQUEUE) {
2077 ret = sock_recv_errqueue(sock->sk, m, total_len,
2078 SOL_PACKET, TUN_TX_TIMESTAMP);
2079 goto out;
2080 }
Jason Wangac77cfd2017-05-17 12:14:43 +08002081 ret = tun_do_read(tun, tfile, &m->msg_iter, flags & MSG_DONTWAIT,
2082 m->msg_control);
Alex Gartrell87897932014-12-25 23:05:03 -08002083 if (ret > (ssize_t)total_len) {
David S. Miller42404c02013-12-10 22:05:45 -05002084 m->msg_flags |= MSG_TRUNC;
2085 ret = flags & MSG_TRUNC ? ret : total_len;
2086 }
Gao feng3811ae72013-04-24 21:59:23 +00002087out:
Jason Wang54f968d2012-10-31 19:45:57 +00002088 tun_put(tun);
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00002089 return ret;
2090}
2091
Jason Wang1576d982016-06-30 14:45:36 +08002092static int tun_peek_len(struct socket *sock)
2093{
2094 struct tun_file *tfile = container_of(sock, struct tun_file, socket);
2095 struct tun_struct *tun;
2096 int ret = 0;
2097
yuan linyu9484dc72017-09-23 22:36:52 +08002098 tun = tun_get(tfile);
Jason Wang1576d982016-06-30 14:45:36 +08002099 if (!tun)
2100 return 0;
2101
2102 ret = skb_array_peek_len(&tfile->tx_array);
2103 tun_put(tun);
2104
2105 return ret;
2106}
2107
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00002108/* Ops structure to mimic raw sockets with tun */
2109static const struct proto_ops tun_socket_ops = {
Jason Wang1576d982016-06-30 14:45:36 +08002110 .peek_len = tun_peek_len,
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00002111 .sendmsg = tun_sendmsg,
2112 .recvmsg = tun_recvmsg,
2113};
2114
Herbert Xu33dccbb2009-02-05 21:25:32 -08002115static struct proto tun_proto = {
2116 .name = "tun",
2117 .owner = THIS_MODULE,
Jason Wang54f968d2012-10-31 19:45:57 +00002118 .obj_size = sizeof(struct tun_file),
Herbert Xu33dccbb2009-02-05 21:25:32 -08002119};
Eric W. Biedermanf019a7a2009-01-21 16:02:16 -08002120
David Woodhouse980c9e82009-05-09 22:54:21 -07002121static int tun_flags(struct tun_struct *tun)
2122{
Michael S. Tsirkin031f5e032014-11-19 14:44:40 +02002123 return tun->flags & (TUN_FEATURES | IFF_PERSIST | IFF_TUN | IFF_TAP);
David Woodhouse980c9e82009-05-09 22:54:21 -07002124}
2125
2126static ssize_t tun_show_flags(struct device *dev, struct device_attribute *attr,
2127 char *buf)
2128{
2129 struct tun_struct *tun = netdev_priv(to_net_dev(dev));
2130 return sprintf(buf, "0x%x\n", tun_flags(tun));
2131}
2132
2133static ssize_t tun_show_owner(struct device *dev, struct device_attribute *attr,
2134 char *buf)
2135{
2136 struct tun_struct *tun = netdev_priv(to_net_dev(dev));
Eric W. Biederman0625c882012-02-07 16:48:55 -08002137 return uid_valid(tun->owner)?
2138 sprintf(buf, "%u\n",
2139 from_kuid_munged(current_user_ns(), tun->owner)):
2140 sprintf(buf, "-1\n");
David Woodhouse980c9e82009-05-09 22:54:21 -07002141}
2142
2143static ssize_t tun_show_group(struct device *dev, struct device_attribute *attr,
2144 char *buf)
2145{
2146 struct tun_struct *tun = netdev_priv(to_net_dev(dev));
Eric W. Biederman0625c882012-02-07 16:48:55 -08002147 return gid_valid(tun->group) ?
2148 sprintf(buf, "%u\n",
2149 from_kgid_munged(current_user_ns(), tun->group)):
2150 sprintf(buf, "-1\n");
David Woodhouse980c9e82009-05-09 22:54:21 -07002151}
2152
2153static DEVICE_ATTR(tun_flags, 0444, tun_show_flags, NULL);
2154static DEVICE_ATTR(owner, 0444, tun_show_owner, NULL);
2155static DEVICE_ATTR(group, 0444, tun_show_group, NULL);
2156
Takashi Iwaic4d33e22015-02-04 14:37:34 +01002157static struct attribute *tun_dev_attrs[] = {
2158 &dev_attr_tun_flags.attr,
2159 &dev_attr_owner.attr,
2160 &dev_attr_group.attr,
2161 NULL
2162};
2163
2164static const struct attribute_group tun_attr_group = {
2165 .attrs = tun_dev_attrs
2166};
2167
Pavel Emelyanovd647a592008-04-16 00:41:16 -07002168static int tun_set_iff(struct net *net, struct file *file, struct ifreq *ifr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002169{
2170 struct tun_struct *tun;
Jason Wang54f968d2012-10-31 19:45:57 +00002171 struct tun_file *tfile = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002172 struct net_device *dev;
2173 int err;
2174
Jason Wang7c0c3b12013-01-11 16:59:33 +00002175 if (tfile->detached)
2176 return -EINVAL;
2177
Petar Penkov90e33d42017-09-22 13:49:15 -07002178 if ((ifr->ifr_flags & IFF_NAPI_FRAGS)) {
2179 if (!capable(CAP_NET_ADMIN))
2180 return -EPERM;
2181
2182 if (!(ifr->ifr_flags & IFF_NAPI) ||
2183 (ifr->ifr_flags & TUN_TYPE_MASK) != IFF_TAP)
2184 return -EINVAL;
2185 }
2186
Eric W. Biederman74a3e5a2009-01-20 10:56:20 +00002187 dev = __dev_get_by_name(net, ifr->ifr_name);
2188 if (dev) {
David Woodhousef85ba782009-04-27 03:23:54 -07002189 if (ifr->ifr_flags & IFF_TUN_EXCL)
2190 return -EBUSY;
Eric W. Biederman74a3e5a2009-01-20 10:56:20 +00002191 if ((ifr->ifr_flags & IFF_TUN) && dev->netdev_ops == &tun_netdev_ops)
2192 tun = netdev_priv(dev);
2193 else if ((ifr->ifr_flags & IFF_TAP) && dev->netdev_ops == &tap_netdev_ops)
2194 tun = netdev_priv(dev);
2195 else
2196 return -EINVAL;
2197
Jason Wang8e6d91a2013-05-28 18:32:11 +00002198 if (!!(ifr->ifr_flags & IFF_MULTI_QUEUE) !=
Michael S. Tsirkin40630b82014-11-19 15:17:31 +02002199 !!(tun->flags & IFF_MULTI_QUEUE))
Jason Wang8e6d91a2013-05-28 18:32:11 +00002200 return -EINVAL;
2201
Jason Wangcde8b152012-10-31 19:46:01 +00002202 if (tun_not_capable(tun))
Paul Moore2b980db2009-08-28 18:12:43 -04002203 return -EPERM;
Paul Moore5dbbaf22013-01-14 07:12:19 +00002204 err = security_tun_dev_open(tun->security);
Paul Moore2b980db2009-08-28 18:12:43 -04002205 if (err < 0)
2206 return err;
2207
Petar Penkov94317092017-09-22 13:49:14 -07002208 err = tun_attach(tun, file, ifr->ifr_flags & IFF_NOFILTER,
2209 ifr->ifr_flags & IFF_NAPI);
Eric W. Biedermana7385ba2009-01-20 10:57:48 +00002210 if (err < 0)
2211 return err;
Jason Wang4008e972012-12-13 23:53:30 +00002212
Michael S. Tsirkin40630b82014-11-19 15:17:31 +02002213 if (tun->flags & IFF_MULTI_QUEUE &&
Jason Wange8dbad62013-04-22 20:40:39 +00002214 (tun->numqueues + tun->numdisabled > 1)) {
2215 /* One or more queue has already been attached, no need
2216 * to initialize the device again.
2217 */
2218 return 0;
2219 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002220 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002221 else {
2222 char *name;
2223 unsigned long flags = 0;
Jason Wangedfb6a12013-01-23 03:59:12 +00002224 int queues = ifr->ifr_flags & IFF_MULTI_QUEUE ?
2225 MAX_TAP_QUEUES : 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002226
Eric W. Biedermanc260b772012-11-18 21:34:11 +00002227 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
David Woodhouseca6bb5d2006-06-22 16:07:52 -07002228 return -EPERM;
Paul Moore2b980db2009-08-28 18:12:43 -04002229 err = security_tun_dev_create();
2230 if (err < 0)
2231 return err;
David Woodhouseca6bb5d2006-06-22 16:07:52 -07002232
Linus Torvalds1da177e2005-04-16 15:20:36 -07002233 /* Set dev type */
2234 if (ifr->ifr_flags & IFF_TUN) {
2235 /* TUN device */
Michael S. Tsirkin40630b82014-11-19 15:17:31 +02002236 flags |= IFF_TUN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002237 name = "tun%d";
2238 } else if (ifr->ifr_flags & IFF_TAP) {
2239 /* TAP device */
Michael S. Tsirkin40630b82014-11-19 15:17:31 +02002240 flags |= IFF_TAP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002241 name = "tap%d";
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002242 } else
Kusanagi Kouichi36989b92009-09-16 21:36:13 +00002243 return -EINVAL;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002244
Linus Torvalds1da177e2005-04-16 15:20:36 -07002245 if (*ifr->ifr_name)
2246 name = ifr->ifr_name;
2247
Jason Wangc8d68e62012-10-31 19:46:00 +00002248 dev = alloc_netdev_mqs(sizeof(struct tun_struct), name,
Tom Gundersenc835a672014-07-14 16:37:24 +02002249 NET_NAME_UNKNOWN, tun_setup, queues,
2250 queues);
Jason Wangedfb6a12013-01-23 03:59:12 +00002251
Linus Torvalds1da177e2005-04-16 15:20:36 -07002252 if (!dev)
2253 return -ENOMEM;
2254
Pavel Emelyanovfc54c652008-04-16 00:41:53 -07002255 dev_net_set(dev, net);
Eric W. Biedermanf019a7a2009-01-21 16:02:16 -08002256 dev->rtnl_link_ops = &tun_link_ops;
Pavel Emelyanovfb7589a2013-08-21 14:31:38 +04002257 dev->ifindex = tfile->ifindex;
Takashi Iwaic4d33e22015-02-04 14:37:34 +01002258 dev->sysfs_groups[0] = &tun_attr_group;
Stephen Hemminger758e43b2008-11-19 22:10:37 -08002259
Linus Torvalds1da177e2005-04-16 15:20:36 -07002260 tun = netdev_priv(dev);
2261 tun->dev = dev;
2262 tun->flags = flags;
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -07002263 tun->txflt.count = 0;
Michael S. Tsirkind9d52b52010-03-17 17:45:01 +02002264 tun->vnet_hdr_sz = sizeof(struct virtio_net_hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002265
Paolo Abenieaea34b2016-02-26 10:45:40 +01002266 tun->align = NET_SKB_PAD;
Jason Wang54f968d2012-10-31 19:45:57 +00002267 tun->filter_attached = false;
2268 tun->sndbuf = tfile->socket.sk->sk_sndbuf;
Jason Wang5503fce2017-01-18 15:02:03 +08002269 tun->rx_batched = 0;
Herbert Xu33dccbb2009-02-05 21:25:32 -08002270
Paolo Abeni608b9972016-04-13 10:52:20 +02002271 tun->pcpu_stats = netdev_alloc_pcpu_stats(struct tun_pcpu_stats);
2272 if (!tun->pcpu_stats) {
2273 err = -ENOMEM;
2274 goto err_free_dev;
2275 }
2276
Jason Wang96442e422012-10-31 19:46:02 +00002277 spin_lock_init(&tun->lock);
2278
Paul Moore5dbbaf22013-01-14 07:12:19 +00002279 err = security_tun_dev_alloc_security(&tun->security);
2280 if (err < 0)
Paolo Abeni608b9972016-04-13 10:52:20 +02002281 goto err_free_stat;
Paul Moore2b980db2009-08-28 18:12:43 -04002282
Linus Torvalds1da177e2005-04-16 15:20:36 -07002283 tun_net_init(dev);
Pavel Emelyanov944a1372013-06-11 17:01:08 +04002284 tun_flow_init(tun);
Jason Wang96442e422012-10-31 19:46:02 +00002285
Michał Mirosław88255372011-04-19 06:13:10 +00002286 dev->hw_features = NETIF_F_SG | NETIF_F_FRAGLIST |
Jason Wang6680ec62013-07-25 13:00:33 +08002287 TUN_USER_FEATURES | NETIF_F_HW_VLAN_CTAG_TX |
2288 NETIF_F_HW_VLAN_STAG_TX;
Paolo Abeni2a2bbf12016-04-14 18:39:39 +02002289 dev->features = dev->hw_features | NETIF_F_LLTX;
Fernando Luis Vazquez Cao6671b222014-02-18 21:20:09 +09002290 dev->vlan_features = dev->features &
2291 ~(NETIF_F_HW_VLAN_CTAG_TX |
2292 NETIF_F_HW_VLAN_STAG_TX);
Michał Mirosław88255372011-04-19 06:13:10 +00002293
Jason Wang4008e972012-12-13 23:53:30 +00002294 INIT_LIST_HEAD(&tun->disabled);
Petar Penkov94317092017-09-22 13:49:14 -07002295 err = tun_attach(tun, file, false, ifr->ifr_flags & IFF_NAPI);
Jason Wangeb0fb362012-12-02 17:19:45 +00002296 if (err < 0)
Jason Wang662ca432013-09-11 18:09:48 +08002297 goto err_free_flow;
Jason Wangeb0fb362012-12-02 17:19:45 +00002298
Linus Torvalds1da177e2005-04-16 15:20:36 -07002299 err = register_netdevice(tun->dev);
2300 if (err < 0)
Jason Wang662ca432013-09-11 18:09:48 +08002301 goto err_detach;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002302 }
2303
Michael S. Tsirkinaf668b32013-01-28 00:38:02 +00002304 netif_carrier_on(tun->dev);
2305
Joe Perches6b8a66e2011-03-02 07:18:10 +00002306 tun_debug(KERN_INFO, tun, "tun_set_iff\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002307
Michael S. Tsirkin031f5e032014-11-19 14:44:40 +02002308 tun->flags = (tun->flags & ~TUN_FEATURES) |
2309 (ifr->ifr_flags & TUN_FEATURES);
Jason Wangc8d68e62012-10-31 19:46:00 +00002310
Max Krasnyanskye35259a2008-07-10 16:59:11 -07002311 /* Make sure persistent devices do not get stuck in
2312 * xoff state.
2313 */
2314 if (netif_running(tun->dev))
Jason Wangc8d68e62012-10-31 19:46:00 +00002315 netif_tx_wake_all_queues(tun->dev);
Max Krasnyanskye35259a2008-07-10 16:59:11 -07002316
Linus Torvalds1da177e2005-04-16 15:20:36 -07002317 strcpy(ifr->ifr_name, tun->dev->name);
2318 return 0;
2319
Jason Wang662ca432013-09-11 18:09:48 +08002320err_detach:
2321 tun_detach_all(dev);
Eric Dumazetff244c62017-08-18 13:39:56 -07002322 /* register_netdevice() already called tun_free_netdev() */
2323 goto err_free_dev;
2324
Jason Wang662ca432013-09-11 18:09:48 +08002325err_free_flow:
2326 tun_flow_uninit(tun);
2327 security_tun_dev_free_security(tun->security);
Paolo Abeni608b9972016-04-13 10:52:20 +02002328err_free_stat:
2329 free_percpu(tun->pcpu_stats);
Jason Wang662ca432013-09-11 18:09:48 +08002330err_free_dev:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002331 free_netdev(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002332 return err;
2333}
2334
Rami Rosen9ce99cf2012-11-23 03:58:10 +00002335static void tun_get_iff(struct net *net, struct tun_struct *tun,
Herbert Xu876bfd42009-08-06 14:22:44 +00002336 struct ifreq *ifr)
Mark McLoughline3b99552008-08-15 15:09:56 -07002337{
Joe Perches6b8a66e2011-03-02 07:18:10 +00002338 tun_debug(KERN_INFO, tun, "tun_get_iff\n");
Mark McLoughline3b99552008-08-15 15:09:56 -07002339
2340 strcpy(ifr->ifr_name, tun->dev->name);
2341
David Woodhouse980c9e82009-05-09 22:54:21 -07002342 ifr->ifr_flags = tun_flags(tun);
Mark McLoughline3b99552008-08-15 15:09:56 -07002343
Mark McLoughline3b99552008-08-15 15:09:56 -07002344}
2345
Rusty Russell5228ddc2008-07-03 03:46:16 -07002346/* This is like a cut-down ethtool ops, except done via tun fd so no
2347 * privs required. */
Michał Mirosław88255372011-04-19 06:13:10 +00002348static int set_offload(struct tun_struct *tun, unsigned long arg)
Rusty Russell5228ddc2008-07-03 03:46:16 -07002349{
Michał Mirosławc8f44af2011-11-15 15:29:55 +00002350 netdev_features_t features = 0;
Rusty Russell5228ddc2008-07-03 03:46:16 -07002351
2352 if (arg & TUN_F_CSUM) {
Michał Mirosław88255372011-04-19 06:13:10 +00002353 features |= NETIF_F_HW_CSUM;
Rusty Russell5228ddc2008-07-03 03:46:16 -07002354 arg &= ~TUN_F_CSUM;
2355
2356 if (arg & (TUN_F_TSO4|TUN_F_TSO6)) {
2357 if (arg & TUN_F_TSO_ECN) {
2358 features |= NETIF_F_TSO_ECN;
2359 arg &= ~TUN_F_TSO_ECN;
2360 }
2361 if (arg & TUN_F_TSO4)
2362 features |= NETIF_F_TSO;
2363 if (arg & TUN_F_TSO6)
2364 features |= NETIF_F_TSO6;
2365 arg &= ~(TUN_F_TSO4|TUN_F_TSO6);
2366 }
2367 }
2368
2369 /* This gives the user a way to test for new features in future by
2370 * trying to set them. */
2371 if (arg)
2372 return -EINVAL;
2373
Michał Mirosław88255372011-04-19 06:13:10 +00002374 tun->set_features = features;
Yaroslav Isakov09050952017-03-16 22:44:10 +03002375 tun->dev->wanted_features &= ~TUN_USER_FEATURES;
2376 tun->dev->wanted_features |= features;
Michał Mirosław88255372011-04-19 06:13:10 +00002377 netdev_update_features(tun->dev);
Rusty Russell5228ddc2008-07-03 03:46:16 -07002378
2379 return 0;
2380}
2381
Jason Wangc8d68e62012-10-31 19:46:00 +00002382static void tun_detach_filter(struct tun_struct *tun, int n)
2383{
2384 int i;
2385 struct tun_file *tfile;
2386
2387 for (i = 0; i < n; i++) {
Jason Wangb8deabd2013-01-11 16:59:32 +00002388 tfile = rtnl_dereference(tun->tfiles[i]);
Hannes Frederic Sowa8ced4252016-04-05 17:10:16 +02002389 lock_sock(tfile->socket.sk);
2390 sk_detach_filter(tfile->socket.sk);
2391 release_sock(tfile->socket.sk);
Jason Wangc8d68e62012-10-31 19:46:00 +00002392 }
2393
2394 tun->filter_attached = false;
2395}
2396
2397static int tun_attach_filter(struct tun_struct *tun)
2398{
2399 int i, ret = 0;
2400 struct tun_file *tfile;
2401
2402 for (i = 0; i < tun->numqueues; i++) {
Jason Wangb8deabd2013-01-11 16:59:32 +00002403 tfile = rtnl_dereference(tun->tfiles[i]);
Hannes Frederic Sowa8ced4252016-04-05 17:10:16 +02002404 lock_sock(tfile->socket.sk);
2405 ret = sk_attach_filter(&tun->fprog, tfile->socket.sk);
2406 release_sock(tfile->socket.sk);
Jason Wangc8d68e62012-10-31 19:46:00 +00002407 if (ret) {
2408 tun_detach_filter(tun, i);
2409 return ret;
2410 }
2411 }
2412
2413 tun->filter_attached = true;
2414 return ret;
2415}
2416
2417static void tun_set_sndbuf(struct tun_struct *tun)
2418{
2419 struct tun_file *tfile;
2420 int i;
2421
2422 for (i = 0; i < tun->numqueues; i++) {
Jason Wangb8deabd2013-01-11 16:59:32 +00002423 tfile = rtnl_dereference(tun->tfiles[i]);
Jason Wangc8d68e62012-10-31 19:46:00 +00002424 tfile->socket.sk->sk_sndbuf = tun->sndbuf;
2425 }
2426}
2427
Jason Wangcde8b152012-10-31 19:46:01 +00002428static int tun_set_queue(struct file *file, struct ifreq *ifr)
2429{
2430 struct tun_file *tfile = file->private_data;
2431 struct tun_struct *tun;
Jason Wangcde8b152012-10-31 19:46:01 +00002432 int ret = 0;
2433
2434 rtnl_lock();
2435
2436 if (ifr->ifr_flags & IFF_ATTACH_QUEUE) {
Jason Wang4008e972012-12-13 23:53:30 +00002437 tun = tfile->detached;
Paul Moore5dbbaf22013-01-14 07:12:19 +00002438 if (!tun) {
Jason Wangcde8b152012-10-31 19:46:01 +00002439 ret = -EINVAL;
Paul Moore5dbbaf22013-01-14 07:12:19 +00002440 goto unlock;
2441 }
2442 ret = security_tun_dev_attach_queue(tun->security);
2443 if (ret < 0)
2444 goto unlock;
Petar Penkov94317092017-09-22 13:49:14 -07002445 ret = tun_attach(tun, file, false, tun->flags & IFF_NAPI);
Jason Wang4008e972012-12-13 23:53:30 +00002446 } else if (ifr->ifr_flags & IFF_DETACH_QUEUE) {
Jason Wangb8deabd2013-01-11 16:59:32 +00002447 tun = rtnl_dereference(tfile->tun);
Michael S. Tsirkin40630b82014-11-19 15:17:31 +02002448 if (!tun || !(tun->flags & IFF_MULTI_QUEUE) || tfile->detached)
Jason Wang4008e972012-12-13 23:53:30 +00002449 ret = -EINVAL;
2450 else
2451 __tun_detach(tfile, false);
2452 } else
Jason Wangcde8b152012-10-31 19:46:01 +00002453 ret = -EINVAL;
2454
Paul Moore5dbbaf22013-01-14 07:12:19 +00002455unlock:
Jason Wangcde8b152012-10-31 19:46:01 +00002456 rtnl_unlock();
2457 return ret;
2458}
2459
Arnd Bergmann50857e22009-11-06 22:52:32 -08002460static long __tun_chr_ioctl(struct file *file, unsigned int cmd,
2461 unsigned long arg, int ifreq_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002462{
Eric W. Biederman36b50ba2009-01-20 11:01:48 +00002463 struct tun_file *tfile = file->private_data;
Eric W. Biederman631ab462009-01-20 11:00:40 +00002464 struct tun_struct *tun;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002465 void __user* argp = (void __user*)arg;
2466 struct ifreq ifr;
Eric W. Biederman0625c882012-02-07 16:48:55 -08002467 kuid_t owner;
2468 kgid_t group;
Herbert Xu33dccbb2009-02-05 21:25:32 -08002469 int sndbuf;
Michael S. Tsirkind9d52b52010-03-17 17:45:01 +02002470 int vnet_hdr_sz;
Pavel Emelyanovfb7589a2013-08-21 14:31:38 +04002471 unsigned int ifindex;
Michael S. Tsirkin1cf8e412014-12-16 15:05:06 +02002472 int le;
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -07002473 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002474
Gao Feng20861f22016-10-27 09:05:22 +08002475 if (cmd == TUNSETIFF || cmd == TUNSETQUEUE || _IOC_TYPE(cmd) == SOCK_IOC_TYPE) {
Arnd Bergmann50857e22009-11-06 22:52:32 -08002476 if (copy_from_user(&ifr, argp, ifreq_len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002477 return -EFAULT;
David S. Miller8bbb1812012-07-30 14:52:48 -07002478 } else {
Mathias Krausea117dac2012-07-29 19:45:14 +00002479 memset(&ifr, 0, sizeof(ifr));
David S. Miller8bbb1812012-07-30 14:52:48 -07002480 }
Eric W. Biederman631ab462009-01-20 11:00:40 +00002481 if (cmd == TUNGETFEATURES) {
2482 /* Currently this just means: "what IFF flags are valid?".
2483 * This is needed because we never checked for invalid flags on
Michael S. Tsirkin031f5e032014-11-19 14:44:40 +02002484 * TUNSETIFF.
2485 */
2486 return put_user(IFF_TUN | IFF_TAP | TUN_FEATURES,
Eric W. Biederman631ab462009-01-20 11:00:40 +00002487 (unsigned int __user*)argp);
Jason Wangcde8b152012-10-31 19:46:01 +00002488 } else if (cmd == TUNSETQUEUE)
2489 return tun_set_queue(file, &ifr);
Eric W. Biederman631ab462009-01-20 11:00:40 +00002490
Jason Wangc8d68e62012-10-31 19:46:00 +00002491 ret = 0;
Herbert Xu876bfd42009-08-06 14:22:44 +00002492 rtnl_lock();
2493
yuan linyu9484dc72017-09-23 22:36:52 +08002494 tun = tun_get(tfile);
Gao Feng0f16bc12016-10-25 22:26:09 +08002495 if (cmd == TUNSETIFF) {
2496 ret = -EEXIST;
2497 if (tun)
2498 goto unlock;
2499
Linus Torvalds1da177e2005-04-16 15:20:36 -07002500 ifr.ifr_name[IFNAMSIZ-1] = '\0';
2501
Eric W. Biederman140e807da2015-05-08 21:07:08 -05002502 ret = tun_set_iff(sock_net(&tfile->sk), file, &ifr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002503
Herbert Xu876bfd42009-08-06 14:22:44 +00002504 if (ret)
2505 goto unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002506
Arnd Bergmann50857e22009-11-06 22:52:32 -08002507 if (copy_to_user(argp, &ifr, ifreq_len))
Herbert Xu876bfd42009-08-06 14:22:44 +00002508 ret = -EFAULT;
2509 goto unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002510 }
Pavel Emelyanovfb7589a2013-08-21 14:31:38 +04002511 if (cmd == TUNSETIFINDEX) {
2512 ret = -EPERM;
2513 if (tun)
2514 goto unlock;
2515
2516 ret = -EFAULT;
2517 if (copy_from_user(&ifindex, argp, sizeof(ifindex)))
2518 goto unlock;
2519
2520 ret = 0;
2521 tfile->ifindex = ifindex;
2522 goto unlock;
2523 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002524
Herbert Xu876bfd42009-08-06 14:22:44 +00002525 ret = -EBADFD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002526 if (!tun)
Herbert Xu876bfd42009-08-06 14:22:44 +00002527 goto unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002528
Jason Wang1e588332012-10-31 19:45:56 +00002529 tun_debug(KERN_INFO, tun, "tun_chr_ioctl cmd %u\n", cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002530
Eric W. Biederman631ab462009-01-20 11:00:40 +00002531 ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002532 switch (cmd) {
Mark McLoughline3b99552008-08-15 15:09:56 -07002533 case TUNGETIFF:
Rami Rosen9ce99cf2012-11-23 03:58:10 +00002534 tun_get_iff(current->nsproxy->net_ns, tun, &ifr);
Mark McLoughline3b99552008-08-15 15:09:56 -07002535
Pavel Emelyanov3d407a82013-08-21 14:32:00 +04002536 if (tfile->detached)
2537 ifr.ifr_flags |= IFF_DETACH_QUEUE;
Pavel Emelyanov849c9b62013-08-21 14:32:21 +04002538 if (!tfile->socket.sk->sk_filter)
2539 ifr.ifr_flags |= IFF_NOFILTER;
Pavel Emelyanov3d407a82013-08-21 14:32:00 +04002540
Arnd Bergmann50857e22009-11-06 22:52:32 -08002541 if (copy_to_user(argp, &ifr, ifreq_len))
Eric W. Biederman631ab462009-01-20 11:00:40 +00002542 ret = -EFAULT;
Mark McLoughline3b99552008-08-15 15:09:56 -07002543 break;
2544
Linus Torvalds1da177e2005-04-16 15:20:36 -07002545 case TUNSETNOCSUM:
2546 /* Disable/Enable checksum */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002547
Michał Mirosław88255372011-04-19 06:13:10 +00002548 /* [unimplemented] */
2549 tun_debug(KERN_INFO, tun, "ignored: set checksum %s\n",
Joe Perches6b8a66e2011-03-02 07:18:10 +00002550 arg ? "disabled" : "enabled");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002551 break;
2552
2553 case TUNSETPERSIST:
Jason Wang54f968d2012-10-31 19:45:57 +00002554 /* Disable/Enable persist mode. Keep an extra reference to the
2555 * module to prevent the module being unprobed.
2556 */
Michael S. Tsirkin40630b82014-11-19 15:17:31 +02002557 if (arg && !(tun->flags & IFF_PERSIST)) {
2558 tun->flags |= IFF_PERSIST;
Jason Wang54f968d2012-10-31 19:45:57 +00002559 __module_get(THIS_MODULE);
Jason Wangdd38bd82013-01-11 16:59:34 +00002560 }
Michael S. Tsirkin40630b82014-11-19 15:17:31 +02002561 if (!arg && (tun->flags & IFF_PERSIST)) {
2562 tun->flags &= ~IFF_PERSIST;
Jason Wang54f968d2012-10-31 19:45:57 +00002563 module_put(THIS_MODULE);
2564 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002565
Joe Perches6b8a66e2011-03-02 07:18:10 +00002566 tun_debug(KERN_INFO, tun, "persist %s\n",
2567 arg ? "enabled" : "disabled");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002568 break;
2569
2570 case TUNSETOWNER:
2571 /* Set owner of the device */
Eric W. Biederman0625c882012-02-07 16:48:55 -08002572 owner = make_kuid(current_user_ns(), arg);
2573 if (!uid_valid(owner)) {
2574 ret = -EINVAL;
2575 break;
2576 }
2577 tun->owner = owner;
Jason Wang1e588332012-10-31 19:45:56 +00002578 tun_debug(KERN_INFO, tun, "owner set to %u\n",
Eric W. Biederman0625c882012-02-07 16:48:55 -08002579 from_kuid(&init_user_ns, tun->owner));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002580 break;
2581
Guido Guenther8c644622007-07-02 22:50:25 -07002582 case TUNSETGROUP:
2583 /* Set group of the device */
Eric W. Biederman0625c882012-02-07 16:48:55 -08002584 group = make_kgid(current_user_ns(), arg);
2585 if (!gid_valid(group)) {
2586 ret = -EINVAL;
2587 break;
2588 }
2589 tun->group = group;
Jason Wang1e588332012-10-31 19:45:56 +00002590 tun_debug(KERN_INFO, tun, "group set to %u\n",
Eric W. Biederman0625c882012-02-07 16:48:55 -08002591 from_kgid(&init_user_ns, tun->group));
Guido Guenther8c644622007-07-02 22:50:25 -07002592 break;
2593
Mike Kershawff4cc3a2005-09-01 17:40:05 -07002594 case TUNSETLINK:
2595 /* Only allow setting the type when the interface is down */
2596 if (tun->dev->flags & IFF_UP) {
Joe Perches6b8a66e2011-03-02 07:18:10 +00002597 tun_debug(KERN_INFO, tun,
2598 "Linktype set failed because interface is up\n");
David S. Miller48abfe02008-04-23 19:37:58 -07002599 ret = -EBUSY;
Mike Kershawff4cc3a2005-09-01 17:40:05 -07002600 } else {
2601 tun->dev->type = (int) arg;
Joe Perches6b8a66e2011-03-02 07:18:10 +00002602 tun_debug(KERN_INFO, tun, "linktype set to %d\n",
2603 tun->dev->type);
David S. Miller48abfe02008-04-23 19:37:58 -07002604 ret = 0;
Mike Kershawff4cc3a2005-09-01 17:40:05 -07002605 }
Eric W. Biederman631ab462009-01-20 11:00:40 +00002606 break;
Mike Kershawff4cc3a2005-09-01 17:40:05 -07002607
Linus Torvalds1da177e2005-04-16 15:20:36 -07002608#ifdef TUN_DEBUG
2609 case TUNSETDEBUG:
2610 tun->debug = arg;
2611 break;
2612#endif
Rusty Russell5228ddc2008-07-03 03:46:16 -07002613 case TUNSETOFFLOAD:
Michał Mirosław88255372011-04-19 06:13:10 +00002614 ret = set_offload(tun, arg);
Eric W. Biederman631ab462009-01-20 11:00:40 +00002615 break;
Rusty Russell5228ddc2008-07-03 03:46:16 -07002616
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -07002617 case TUNSETTXFILTER:
2618 /* Can be set only for TAPs */
Eric W. Biederman631ab462009-01-20 11:00:40 +00002619 ret = -EINVAL;
Michael S. Tsirkin40630b82014-11-19 15:17:31 +02002620 if ((tun->flags & TUN_TYPE_MASK) != IFF_TAP)
Eric W. Biederman631ab462009-01-20 11:00:40 +00002621 break;
Harvey Harrisonc0e5a8c2008-07-16 12:45:34 -07002622 ret = update_filter(&tun->txflt, (void __user *)arg);
Eric W. Biederman631ab462009-01-20 11:00:40 +00002623 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002624
2625 case SIOCGIFHWADDR:
Uwe Kleine-Königb5950762010-11-01 15:38:34 -04002626 /* Get hw address */
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -07002627 memcpy(ifr.ifr_hwaddr.sa_data, tun->dev->dev_addr, ETH_ALEN);
2628 ifr.ifr_hwaddr.sa_family = tun->dev->type;
Arnd Bergmann50857e22009-11-06 22:52:32 -08002629 if (copy_to_user(argp, &ifr, ifreq_len))
Eric W. Biederman631ab462009-01-20 11:00:40 +00002630 ret = -EFAULT;
2631 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002632
2633 case SIOCSIFHWADDR:
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -07002634 /* Set hw address */
Joe Perches6b8a66e2011-03-02 07:18:10 +00002635 tun_debug(KERN_DEBUG, tun, "set hw address: %pM\n",
2636 ifr.ifr_hwaddr.sa_data);
Kim B. Heino40102372008-02-29 12:26:21 -08002637
Kim B. Heino40102372008-02-29 12:26:21 -08002638 ret = dev_set_mac_address(tun->dev, &ifr.ifr_hwaddr);
Eric W. Biederman631ab462009-01-20 11:00:40 +00002639 break;
Herbert Xu33dccbb2009-02-05 21:25:32 -08002640
2641 case TUNGETSNDBUF:
Jason Wang54f968d2012-10-31 19:45:57 +00002642 sndbuf = tfile->socket.sk->sk_sndbuf;
Herbert Xu33dccbb2009-02-05 21:25:32 -08002643 if (copy_to_user(argp, &sndbuf, sizeof(sndbuf)))
2644 ret = -EFAULT;
2645 break;
2646
2647 case TUNSETSNDBUF:
2648 if (copy_from_user(&sndbuf, argp, sizeof(sndbuf))) {
2649 ret = -EFAULT;
2650 break;
2651 }
2652
Jason Wangc8d68e62012-10-31 19:46:00 +00002653 tun->sndbuf = sndbuf;
2654 tun_set_sndbuf(tun);
Herbert Xu33dccbb2009-02-05 21:25:32 -08002655 break;
2656
Michael S. Tsirkind9d52b52010-03-17 17:45:01 +02002657 case TUNGETVNETHDRSZ:
2658 vnet_hdr_sz = tun->vnet_hdr_sz;
2659 if (copy_to_user(argp, &vnet_hdr_sz, sizeof(vnet_hdr_sz)))
2660 ret = -EFAULT;
2661 break;
2662
2663 case TUNSETVNETHDRSZ:
2664 if (copy_from_user(&vnet_hdr_sz, argp, sizeof(vnet_hdr_sz))) {
2665 ret = -EFAULT;
2666 break;
2667 }
2668 if (vnet_hdr_sz < (int)sizeof(struct virtio_net_hdr)) {
2669 ret = -EINVAL;
2670 break;
2671 }
2672
2673 tun->vnet_hdr_sz = vnet_hdr_sz;
2674 break;
2675
Michael S. Tsirkin1cf8e412014-12-16 15:05:06 +02002676 case TUNGETVNETLE:
2677 le = !!(tun->flags & TUN_VNET_LE);
2678 if (put_user(le, (int __user *)argp))
2679 ret = -EFAULT;
2680 break;
2681
2682 case TUNSETVNETLE:
2683 if (get_user(le, (int __user *)argp)) {
2684 ret = -EFAULT;
2685 break;
2686 }
2687 if (le)
2688 tun->flags |= TUN_VNET_LE;
2689 else
2690 tun->flags &= ~TUN_VNET_LE;
2691 break;
2692
Greg Kurz8b8e6582015-04-24 14:50:36 +02002693 case TUNGETVNETBE:
2694 ret = tun_get_vnet_be(tun, argp);
2695 break;
2696
2697 case TUNSETVNETBE:
2698 ret = tun_set_vnet_be(tun, argp);
2699 break;
2700
Michael S. Tsirkin99405162010-02-14 01:01:10 +00002701 case TUNATTACHFILTER:
2702 /* Can be set only for TAPs */
2703 ret = -EINVAL;
Michael S. Tsirkin40630b82014-11-19 15:17:31 +02002704 if ((tun->flags & TUN_TYPE_MASK) != IFF_TAP)
Michael S. Tsirkin99405162010-02-14 01:01:10 +00002705 break;
2706 ret = -EFAULT;
Jason Wang54f968d2012-10-31 19:45:57 +00002707 if (copy_from_user(&tun->fprog, argp, sizeof(tun->fprog)))
Michael S. Tsirkin99405162010-02-14 01:01:10 +00002708 break;
2709
Jason Wangc8d68e62012-10-31 19:46:00 +00002710 ret = tun_attach_filter(tun);
Michael S. Tsirkin99405162010-02-14 01:01:10 +00002711 break;
2712
2713 case TUNDETACHFILTER:
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;
Jason Wangc8d68e62012-10-31 19:46:00 +00002718 ret = 0;
2719 tun_detach_filter(tun, tun->numqueues);
Michael S. Tsirkin99405162010-02-14 01:01:10 +00002720 break;
2721
Pavel Emelyanov76975e92013-08-21 14:32:39 +04002722 case TUNGETFILTER:
2723 ret = -EINVAL;
Michael S. Tsirkin40630b82014-11-19 15:17:31 +02002724 if ((tun->flags & TUN_TYPE_MASK) != IFF_TAP)
Pavel Emelyanov76975e92013-08-21 14:32:39 +04002725 break;
2726 ret = -EFAULT;
2727 if (copy_to_user(argp, &tun->fprog, sizeof(tun->fprog)))
2728 break;
2729 ret = 0;
2730 break;
2731
Linus Torvalds1da177e2005-04-16 15:20:36 -07002732 default:
Eric W. Biederman631ab462009-01-20 11:00:40 +00002733 ret = -EINVAL;
2734 break;
Joe Perchesee289b62010-05-17 22:47:34 -07002735 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002736
Herbert Xu876bfd42009-08-06 14:22:44 +00002737unlock:
2738 rtnl_unlock();
2739 if (tun)
2740 tun_put(tun);
Eric W. Biederman631ab462009-01-20 11:00:40 +00002741 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002742}
2743
Arnd Bergmann50857e22009-11-06 22:52:32 -08002744static long tun_chr_ioctl(struct file *file,
2745 unsigned int cmd, unsigned long arg)
2746{
2747 return __tun_chr_ioctl(file, cmd, arg, sizeof (struct ifreq));
2748}
2749
2750#ifdef CONFIG_COMPAT
2751static long tun_chr_compat_ioctl(struct file *file,
2752 unsigned int cmd, unsigned long arg)
2753{
2754 switch (cmd) {
2755 case TUNSETIFF:
2756 case TUNGETIFF:
2757 case TUNSETTXFILTER:
2758 case TUNGETSNDBUF:
2759 case TUNSETSNDBUF:
2760 case SIOCGIFHWADDR:
2761 case SIOCSIFHWADDR:
2762 arg = (unsigned long)compat_ptr(arg);
2763 break;
2764 default:
2765 arg = (compat_ulong_t)arg;
2766 break;
2767 }
2768
2769 /*
2770 * compat_ifreq is shorter than ifreq, so we must not access beyond
2771 * the end of that structure. All fields that are used in this
2772 * driver are compatible though, we don't need to convert the
2773 * contents.
2774 */
2775 return __tun_chr_ioctl(file, cmd, arg, sizeof(struct compat_ifreq));
2776}
2777#endif /* CONFIG_COMPAT */
2778
Linus Torvalds1da177e2005-04-16 15:20:36 -07002779static int tun_chr_fasync(int fd, struct file *file, int on)
2780{
Jason Wang54f968d2012-10-31 19:45:57 +00002781 struct tun_file *tfile = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002782 int ret;
2783
Jason Wang54f968d2012-10-31 19:45:57 +00002784 if ((ret = fasync_helper(fd, file, on, &tfile->fasync)) < 0)
Jonathan Corbet9d319522008-06-19 15:50:37 -06002785 goto out;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002786
Linus Torvalds1da177e2005-04-16 15:20:36 -07002787 if (on) {
Jeff Laytone0b93ed2014-08-22 11:27:32 -04002788 __f_setown(file, task_pid(current), PIDTYPE_PID, 0);
Jason Wang54f968d2012-10-31 19:45:57 +00002789 tfile->flags |= TUN_FASYNC;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002790 } else
Jason Wang54f968d2012-10-31 19:45:57 +00002791 tfile->flags &= ~TUN_FASYNC;
Jonathan Corbet9d319522008-06-19 15:50:37 -06002792 ret = 0;
2793out:
Jonathan Corbet9d319522008-06-19 15:50:37 -06002794 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002795}
2796
2797static int tun_chr_open(struct inode *inode, struct file * file)
2798{
Eric W. Biederman140e807da2015-05-08 21:07:08 -05002799 struct net *net = current->nsproxy->net_ns;
Eric W. Biederman631ab462009-01-20 11:00:40 +00002800 struct tun_file *tfile;
Thomas Gleixnerdeed49f2009-10-14 01:19:46 -07002801
Joe Perches6b8a66e2011-03-02 07:18:10 +00002802 DBG1(KERN_INFO, "tunX: tun_chr_open\n");
Eric W. Biederman631ab462009-01-20 11:00:40 +00002803
Eric W. Biederman140e807da2015-05-08 21:07:08 -05002804 tfile = (struct tun_file *)sk_alloc(net, AF_UNSPEC, GFP_KERNEL,
Eric W. Biederman11aa9c22015-05-08 21:09:13 -05002805 &tun_proto, 0);
Eric W. Biederman631ab462009-01-20 11:00:40 +00002806 if (!tfile)
2807 return -ENOMEM;
Monam Agarwalc9566742014-03-24 00:02:32 +05302808 RCU_INIT_POINTER(tfile->tun, NULL);
Jason Wang54f968d2012-10-31 19:45:57 +00002809 tfile->flags = 0;
Pavel Emelyanovfb7589a2013-08-21 14:31:38 +04002810 tfile->ifindex = 0;
Jason Wang54f968d2012-10-31 19:45:57 +00002811
Jason Wang54f968d2012-10-31 19:45:57 +00002812 init_waitqueue_head(&tfile->wq.wait);
Xi Wang9e641bd2014-05-16 15:11:48 -07002813 RCU_INIT_POINTER(tfile->socket.wq, &tfile->wq);
Jason Wang54f968d2012-10-31 19:45:57 +00002814
2815 tfile->socket.file = file;
2816 tfile->socket.ops = &tun_socket_ops;
2817
2818 sock_init_data(&tfile->socket, &tfile->sk);
Jason Wang54f968d2012-10-31 19:45:57 +00002819
2820 tfile->sk.sk_write_space = tun_sock_write_space;
2821 tfile->sk.sk_sndbuf = INT_MAX;
2822
Eric W. Biederman631ab462009-01-20 11:00:40 +00002823 file->private_data = tfile;
Jason Wang4008e972012-12-13 23:53:30 +00002824 INIT_LIST_HEAD(&tfile->next);
Jason Wang54f968d2012-10-31 19:45:57 +00002825
Jason Wang19a6afb2013-06-08 14:17:41 +08002826 sock_set_flag(&tfile->sk, SOCK_ZEROCOPY);
2827
Linus Torvalds1da177e2005-04-16 15:20:36 -07002828 return 0;
2829}
2830
2831static int tun_chr_close(struct inode *inode, struct file *file)
2832{
Eric W. Biederman631ab462009-01-20 11:00:40 +00002833 struct tun_file *tfile = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002834
Jason Wangc8d68e62012-10-31 19:46:00 +00002835 tun_detach(tfile, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002836
2837 return 0;
2838}
2839
Masatake YAMATO93e14b62014-01-29 16:43:31 +09002840#ifdef CONFIG_PROC_FS
yuan linyu9484dc72017-09-23 22:36:52 +08002841static void tun_chr_show_fdinfo(struct seq_file *m, struct file *file)
Masatake YAMATO93e14b62014-01-29 16:43:31 +09002842{
yuan linyu9484dc72017-09-23 22:36:52 +08002843 struct tun_file *tfile = file->private_data;
Masatake YAMATO93e14b62014-01-29 16:43:31 +09002844 struct tun_struct *tun;
2845 struct ifreq ifr;
2846
2847 memset(&ifr, 0, sizeof(ifr));
2848
2849 rtnl_lock();
yuan linyu9484dc72017-09-23 22:36:52 +08002850 tun = tun_get(tfile);
Masatake YAMATO93e14b62014-01-29 16:43:31 +09002851 if (tun)
2852 tun_get_iff(current->nsproxy->net_ns, tun, &ifr);
2853 rtnl_unlock();
2854
2855 if (tun)
2856 tun_put(tun);
2857
Joe Perchesa3816ab2014-09-29 16:08:25 -07002858 seq_printf(m, "iff:\t%s\n", ifr.ifr_name);
Masatake YAMATO93e14b62014-01-29 16:43:31 +09002859}
2860#endif
2861
Arjan van de Vend54b1fd2007-02-12 00:55:34 -08002862static const struct file_operations tun_fops = {
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002863 .owner = THIS_MODULE,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002864 .llseek = no_llseek,
Al Viro9b067032014-11-07 13:52:07 -05002865 .read_iter = tun_chr_read_iter,
Al Virof5ff53b2014-06-19 15:36:49 -04002866 .write_iter = tun_chr_write_iter,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002867 .poll = tun_chr_poll,
Arnd Bergmann50857e22009-11-06 22:52:32 -08002868 .unlocked_ioctl = tun_chr_ioctl,
2869#ifdef CONFIG_COMPAT
2870 .compat_ioctl = tun_chr_compat_ioctl,
2871#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002872 .open = tun_chr_open,
2873 .release = tun_chr_close,
Masatake YAMATO93e14b62014-01-29 16:43:31 +09002874 .fasync = tun_chr_fasync,
2875#ifdef CONFIG_PROC_FS
2876 .show_fdinfo = tun_chr_show_fdinfo,
2877#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002878};
2879
2880static struct miscdevice tun_miscdev = {
2881 .minor = TUN_MINOR,
2882 .name = "tun",
Kay Sieverse454cea2009-09-18 23:01:12 +02002883 .nodename = "net/tun",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002884 .fops = &tun_fops,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002885};
2886
2887/* ethtool interface */
2888
Philippe Reynes29ccc492017-03-11 22:03:50 +01002889static int tun_get_link_ksettings(struct net_device *dev,
2890 struct ethtool_link_ksettings *cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002891{
Philippe Reynes29ccc492017-03-11 22:03:50 +01002892 ethtool_link_ksettings_zero_link_mode(cmd, supported);
2893 ethtool_link_ksettings_zero_link_mode(cmd, advertising);
2894 cmd->base.speed = SPEED_10;
2895 cmd->base.duplex = DUPLEX_FULL;
2896 cmd->base.port = PORT_TP;
2897 cmd->base.phy_address = 0;
2898 cmd->base.autoneg = AUTONEG_DISABLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002899 return 0;
2900}
2901
2902static void tun_get_drvinfo(struct net_device *dev, struct ethtool_drvinfo *info)
2903{
2904 struct tun_struct *tun = netdev_priv(dev);
2905
Rick Jones33a5ba12011-11-15 14:59:53 +00002906 strlcpy(info->driver, DRV_NAME, sizeof(info->driver));
2907 strlcpy(info->version, DRV_VERSION, sizeof(info->version));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002908
2909 switch (tun->flags & TUN_TYPE_MASK) {
Michael S. Tsirkin40630b82014-11-19 15:17:31 +02002910 case IFF_TUN:
Rick Jones33a5ba12011-11-15 14:59:53 +00002911 strlcpy(info->bus_info, "tun", sizeof(info->bus_info));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002912 break;
Michael S. Tsirkin40630b82014-11-19 15:17:31 +02002913 case IFF_TAP:
Rick Jones33a5ba12011-11-15 14:59:53 +00002914 strlcpy(info->bus_info, "tap", sizeof(info->bus_info));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002915 break;
2916 }
2917}
2918
2919static u32 tun_get_msglevel(struct net_device *dev)
2920{
2921#ifdef TUN_DEBUG
2922 struct tun_struct *tun = netdev_priv(dev);
2923 return tun->debug;
2924#else
2925 return -EOPNOTSUPP;
2926#endif
2927}
2928
2929static void tun_set_msglevel(struct net_device *dev, u32 value)
2930{
2931#ifdef TUN_DEBUG
2932 struct tun_struct *tun = netdev_priv(dev);
2933 tun->debug = value;
2934#endif
2935}
2936
Jason Wang5503fce2017-01-18 15:02:03 +08002937static int tun_get_coalesce(struct net_device *dev,
2938 struct ethtool_coalesce *ec)
2939{
2940 struct tun_struct *tun = netdev_priv(dev);
2941
2942 ec->rx_max_coalesced_frames = tun->rx_batched;
2943
2944 return 0;
2945}
2946
2947static int tun_set_coalesce(struct net_device *dev,
2948 struct ethtool_coalesce *ec)
2949{
2950 struct tun_struct *tun = netdev_priv(dev);
2951
2952 if (ec->rx_max_coalesced_frames > NAPI_POLL_WEIGHT)
2953 tun->rx_batched = NAPI_POLL_WEIGHT;
2954 else
2955 tun->rx_batched = ec->rx_max_coalesced_frames;
2956
2957 return 0;
2958}
2959
Jeff Garzik7282d492006-09-13 14:30:00 -04002960static const struct ethtool_ops tun_ethtool_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002961 .get_drvinfo = tun_get_drvinfo,
2962 .get_msglevel = tun_get_msglevel,
2963 .set_msglevel = tun_set_msglevel,
Nolan Leakebee31362010-07-27 13:53:43 +00002964 .get_link = ethtool_op_get_link,
Richard Cochraneda29772013-07-19 19:40:10 +02002965 .get_ts_info = ethtool_op_get_ts_info,
Jason Wang5503fce2017-01-18 15:02:03 +08002966 .get_coalesce = tun_get_coalesce,
2967 .set_coalesce = tun_set_coalesce,
Philippe Reynes29ccc492017-03-11 22:03:50 +01002968 .get_link_ksettings = tun_get_link_ksettings,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002969};
2970
Jason Wang1576d982016-06-30 14:45:36 +08002971static int tun_queue_resize(struct tun_struct *tun)
2972{
2973 struct net_device *dev = tun->dev;
2974 struct tun_file *tfile;
2975 struct skb_array **arrays;
2976 int n = tun->numqueues + tun->numdisabled;
2977 int ret, i;
2978
stephen hemminger12039042017-08-15 10:29:16 -07002979 arrays = kmalloc_array(n, sizeof(*arrays), GFP_KERNEL);
Jason Wang1576d982016-06-30 14:45:36 +08002980 if (!arrays)
2981 return -ENOMEM;
2982
2983 for (i = 0; i < tun->numqueues; i++) {
2984 tfile = rtnl_dereference(tun->tfiles[i]);
2985 arrays[i] = &tfile->tx_array;
2986 }
2987 list_for_each_entry(tfile, &tun->disabled, next)
2988 arrays[i++] = &tfile->tx_array;
2989
2990 ret = skb_array_resize_multiple(arrays, n,
2991 dev->tx_queue_len, GFP_KERNEL);
2992
2993 kfree(arrays);
2994 return ret;
2995}
2996
2997static int tun_device_event(struct notifier_block *unused,
2998 unsigned long event, void *ptr)
2999{
3000 struct net_device *dev = netdev_notifier_info_to_dev(ptr);
3001 struct tun_struct *tun = netdev_priv(dev);
3002
Craig Gallek86dfb4ac2016-07-06 18:44:20 -04003003 if (dev->rtnl_link_ops != &tun_link_ops)
3004 return NOTIFY_DONE;
3005
Jason Wang1576d982016-06-30 14:45:36 +08003006 switch (event) {
3007 case NETDEV_CHANGE_TX_QUEUE_LEN:
3008 if (tun_queue_resize(tun))
3009 return NOTIFY_BAD;
3010 break;
3011 default:
3012 break;
3013 }
3014
3015 return NOTIFY_DONE;
3016}
3017
3018static struct notifier_block tun_notifier_block __read_mostly = {
3019 .notifier_call = tun_device_event,
3020};
Pavel Emelyanov79d17602008-04-16 00:40:46 -07003021
Linus Torvalds1da177e2005-04-16 15:20:36 -07003022static int __init tun_init(void)
3023{
3024 int ret = 0;
3025
Joe Perches6b8a66e2011-03-02 07:18:10 +00003026 pr_info("%s, %s\n", DRV_DESCRIPTION, DRV_VERSION);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003027
Eric W. Biedermanf019a7a2009-01-21 16:02:16 -08003028 ret = rtnl_link_register(&tun_link_ops);
Pavel Emelyanov79d17602008-04-16 00:40:46 -07003029 if (ret) {
Joe Perches6b8a66e2011-03-02 07:18:10 +00003030 pr_err("Can't register link_ops\n");
Eric W. Biedermanf019a7a2009-01-21 16:02:16 -08003031 goto err_linkops;
Pavel Emelyanov79d17602008-04-16 00:40:46 -07003032 }
3033
Linus Torvalds1da177e2005-04-16 15:20:36 -07003034 ret = misc_register(&tun_miscdev);
Pavel Emelyanov79d17602008-04-16 00:40:46 -07003035 if (ret) {
Joe Perches6b8a66e2011-03-02 07:18:10 +00003036 pr_err("Can't register misc device %d\n", TUN_MINOR);
Pavel Emelyanov79d17602008-04-16 00:40:46 -07003037 goto err_misc;
3038 }
Jason Wang1576d982016-06-30 14:45:36 +08003039
Tonghao Zhang5edfbd32017-07-20 02:41:34 -07003040 ret = register_netdevice_notifier(&tun_notifier_block);
3041 if (ret) {
3042 pr_err("Can't register netdevice notifier\n");
3043 goto err_notifier;
3044 }
3045
Eric W. Biedermanf019a7a2009-01-21 16:02:16 -08003046 return 0;
Tonghao Zhang5edfbd32017-07-20 02:41:34 -07003047
3048err_notifier:
3049 misc_deregister(&tun_miscdev);
Pavel Emelyanov79d17602008-04-16 00:40:46 -07003050err_misc:
Eric W. Biedermanf019a7a2009-01-21 16:02:16 -08003051 rtnl_link_unregister(&tun_link_ops);
3052err_linkops:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003053 return ret;
3054}
3055
3056static void tun_cleanup(void)
3057{
Jeff Garzik6aa20a22006-09-13 13:24:59 -04003058 misc_deregister(&tun_miscdev);
Eric W. Biedermanf019a7a2009-01-21 16:02:16 -08003059 rtnl_link_unregister(&tun_link_ops);
Jason Wang1576d982016-06-30 14:45:36 +08003060 unregister_netdevice_notifier(&tun_notifier_block);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003061}
3062
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00003063/* Get an underlying socket object from tun file. Returns error unless file is
3064 * attached to a device. The returned object works like a packet socket, it
3065 * can be used for sock_sendmsg/sock_recvmsg. The caller is responsible for
3066 * holding a reference to the file for as long as the socket is in use. */
3067struct socket *tun_get_socket(struct file *file)
3068{
Jason Wang6e914fc2012-10-31 19:45:58 +00003069 struct tun_file *tfile;
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00003070 if (file->f_op != &tun_fops)
3071 return ERR_PTR(-EINVAL);
Jason Wang6e914fc2012-10-31 19:45:58 +00003072 tfile = file->private_data;
3073 if (!tfile)
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00003074 return ERR_PTR(-EBADFD);
Jason Wang54f968d2012-10-31 19:45:57 +00003075 return &tfile->socket;
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00003076}
3077EXPORT_SYMBOL_GPL(tun_get_socket);
3078
Jason Wang83339c62017-05-17 12:14:41 +08003079struct skb_array *tun_get_skb_array(struct file *file)
3080{
3081 struct tun_file *tfile;
3082
3083 if (file->f_op != &tun_fops)
3084 return ERR_PTR(-EINVAL);
3085 tfile = file->private_data;
3086 if (!tfile)
3087 return ERR_PTR(-EBADFD);
3088 return &tfile->tx_array;
3089}
3090EXPORT_SYMBOL_GPL(tun_get_skb_array);
3091
Linus Torvalds1da177e2005-04-16 15:20:36 -07003092module_init(tun_init);
3093module_exit(tun_cleanup);
3094MODULE_DESCRIPTION(DRV_DESCRIPTION);
3095MODULE_AUTHOR(DRV_COPYRIGHT);
3096MODULE_LICENSE("GPL");
3097MODULE_ALIAS_MISCDEV(TUN_MINOR);
Kay Sievers578454f2010-05-20 18:07:20 +02003098MODULE_ALIAS("devname:net/tun");