blob: a52bd47e7aa20b63606106635335681d2bad9686 [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>
Jesper Dangaard Brouer735fc402018-05-24 16:46:12 +020073#include <net/xdp.h>
Masatake YAMATO93e14b62014-01-29 16:43:31 +090074#include <linux/seq_file.h>
Herbert Xue0b46d02014-11-07 21:22:23 +080075#include <linux/uio.h>
Jason Wang1576d982016-06-30 14:45:36 +080076#include <linux/skb_array.h>
Jason Wang761876c2017-08-11 19:41:18 +080077#include <linux/bpf.h>
78#include <linux/bpf_trace.h>
Petar Penkov90e33d42017-09-22 13:49:15 -070079#include <linux/mutex.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070080
Linus Torvalds7c0f6ba2016-12-24 11:46:01 -080081#include <linux/uaccess.h>
Kirill Tkhaif2780d62018-02-14 16:40:14 +030082#include <linux/proc_fs.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070083
Chas Williams4e24f2d2018-06-02 17:49:53 -040084static void tun_default_link_ksettings(struct net_device *dev,
85 struct ethtool_link_ksettings *cmd);
86
Rusty Russell14daa022008-04-12 18:48:58 -070087/* Uncomment to enable debugging */
88/* #define TUN_DEBUG 1 */
89
Linus Torvalds1da177e2005-04-16 15:20:36 -070090#ifdef TUN_DEBUG
91static int debug;
Rusty Russell14daa022008-04-12 18:48:58 -070092
Joe Perches6b8a66e2011-03-02 07:18:10 +000093#define tun_debug(level, tun, fmt, args...) \
94do { \
95 if (tun->debug) \
96 netdev_printk(level, tun->dev, fmt, ##args); \
97} while (0)
98#define DBG1(level, fmt, args...) \
99do { \
100 if (debug == 2) \
101 printk(level fmt, ##args); \
102} while (0)
Rusty Russell14daa022008-04-12 18:48:58 -0700103#else
Joe Perches6b8a66e2011-03-02 07:18:10 +0000104#define tun_debug(level, tun, fmt, args...) \
105do { \
106 if (0) \
107 netdev_printk(level, tun->dev, fmt, ##args); \
108} while (0)
109#define DBG1(level, fmt, args...) \
110do { \
111 if (0) \
112 printk(level fmt, ##args); \
113} while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114#endif
115
Jason Wang7df13212017-09-04 11:36:08 +0800116#define TUN_RX_PAD (NET_IP_ALIGN + NET_SKB_PAD)
Jason Wang66ccbc92017-08-11 19:41:16 +0800117
Michael S. Tsirkin031f5e02014-11-19 14:44:40 +0200118/* TUN device flags */
119
120/* IFF_ATTACH_QUEUE is never stored in device flags,
121 * overload it to mean fasync when stored there.
122 */
123#define TUN_FASYNC IFF_ATTACH_QUEUE
Michael S. Tsirkin1cf8e412014-12-16 15:05:06 +0200124/* High bits in flags field are unused. */
125#define TUN_VNET_LE 0x80000000
Greg Kurz8b8e6582015-04-24 14:50:36 +0200126#define TUN_VNET_BE 0x40000000
Michael S. Tsirkin031f5e02014-11-19 14:44:40 +0200127
128#define TUN_FEATURES (IFF_NO_PI | IFF_ONE_QUEUE | IFF_VNET_HDR | \
Petar Penkov90e33d42017-09-22 13:49:15 -0700129 IFF_MULTI_QUEUE | IFF_NAPI | IFF_NAPI_FRAGS)
130
Michael S. Tsirkin06908992012-07-20 09:23:23 +0000131#define GOODCOPY_LEN 128
132
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -0700133#define FLT_EXACT_COUNT 8
134struct tap_filter {
135 unsigned int count; /* Number of addrs. Zero means disabled */
136 u32 mask[2]; /* Mask of the hashed addrs */
137 unsigned char addr[FLT_EXACT_COUNT][ETH_ALEN];
138};
139
Pankaj Guptabaf71c52015-01-12 11:41:29 +0530140/* MAX_TAP_QUEUES 256 is chosen to allow rx/tx queues to be equal
141 * to max number of VCPUs in guest. */
142#define MAX_TAP_QUEUES 256
Jason Wangb8732fb2013-01-23 03:59:13 +0000143#define MAX_TAP_FLOWS 4096
Jason Wangc8d68e62012-10-31 19:46:00 +0000144
Jason Wang96442e422012-10-31 19:46:02 +0000145#define TUN_FLOW_EXPIRE (3 * HZ)
146
Paolo Abeni608b9972016-04-13 10:52:20 +0200147struct tun_pcpu_stats {
148 u64 rx_packets;
149 u64 rx_bytes;
150 u64 tx_packets;
151 u64 tx_bytes;
152 struct u64_stats_sync syncp;
153 u32 rx_dropped;
154 u32 tx_dropped;
155 u32 rx_frame_errors;
156};
157
Jason Wang54f968d2012-10-31 19:45:57 +0000158/* A tun_file connects an open character device to a tuntap netdevice. It
stephen hemminger92d4ea62013-12-05 20:42:58 -0800159 * also contains all socket related structures (except sock_fprog and tap_filter)
Jason Wang54f968d2012-10-31 19:45:57 +0000160 * to serve as one transmit queue for tuntap device. The sock_fprog and
161 * tap_filter were kept in tun_struct since they were used for filtering for the
Rami Rosen36fe8c092012-11-25 22:07:40 +0000162 * netdevice not for a specific queue (at least I didn't see the requirement for
Jason Wang54f968d2012-10-31 19:45:57 +0000163 * this).
Jason Wang6e914fc2012-10-31 19:45:58 +0000164 *
165 * RCU usage:
Rami Rosen36fe8c092012-11-25 22:07:40 +0000166 * The tun_file and tun_struct are loosely coupled, the pointer from one to the
Jason Wang6e914fc2012-10-31 19:45:58 +0000167 * other can only be read while rcu_read_lock or rtnl_lock is held.
Jason Wang54f968d2012-10-31 19:45:57 +0000168 */
Eric W. Biederman631ab462009-01-20 11:00:40 +0000169struct tun_file {
Jason Wang54f968d2012-10-31 19:45:57 +0000170 struct sock sk;
171 struct socket socket;
172 struct socket_wq wq;
Jason Wang6e914fc2012-10-31 19:45:58 +0000173 struct tun_struct __rcu *tun;
Jason Wang54f968d2012-10-31 19:45:57 +0000174 struct fasync_struct *fasync;
175 /* only used for fasnyc */
176 unsigned int flags;
Pavel Emelyanovfb7589a2013-08-21 14:31:38 +0400177 union {
178 u16 queue_index;
179 unsigned int ifindex;
180 };
Petar Penkov94317092017-09-22 13:49:14 -0700181 struct napi_struct napi;
Eric Dumazetaec72f32017-10-18 12:12:09 -0700182 bool napi_enabled;
Eric Dumazetaf3fb242018-09-28 14:51:49 -0700183 bool napi_frags_enabled;
Petar Penkov90e33d42017-09-22 13:49:15 -0700184 struct mutex napi_mutex; /* Protects access to the above napi */
Jason Wang4008e972012-12-13 23:53:30 +0000185 struct list_head next;
186 struct tun_struct *detached;
Jason Wang5990a302018-01-04 11:14:27 +0800187 struct ptr_ring tx_ring;
Jesper Dangaard Brouer8bf5c4e2018-01-03 11:25:59 +0100188 struct xdp_rxq_info xdp_rxq;
Eric W. Biederman631ab462009-01-20 11:00:40 +0000189};
190
Jason Wangf9e06c42018-11-15 17:43:10 +0800191struct tun_page {
192 struct page *page;
193 int count;
194};
195
Jason Wang96442e422012-10-31 19:46:02 +0000196struct tun_flow_entry {
197 struct hlist_node hash_link;
198 struct rcu_head rcu;
199 struct tun_struct *tun;
200
201 u32 rxhash;
Tom Herbert9bc88932013-12-22 18:54:32 +0800202 u32 rps_rxhash;
Jason Wang96442e422012-10-31 19:46:02 +0000203 int queue_index;
Li RongQing83b1bc12018-12-06 16:08:17 +0800204 unsigned long updated ____cacheline_aligned_in_smp;
Jason Wang96442e422012-10-31 19:46:02 +0000205};
206
207#define TUN_NUM_FLOW_ENTRIES 1024
Li RongQingf13b5462018-08-03 15:50:02 +0800208#define TUN_MASK_FLOW_ENTRIES (TUN_NUM_FLOW_ENTRIES - 1)
Jason Wang96442e422012-10-31 19:46:02 +0000209
Jason Wangcd5681d2018-01-16 16:31:01 +0800210struct tun_prog {
Jason Wang96f84062017-12-04 17:31:23 +0800211 struct rcu_head rcu;
212 struct bpf_prog *prog;
213};
214
Jason Wang54f968d2012-10-31 19:45:57 +0000215/* Since the socket were moved to tun_file, to preserve the behavior of persist
Rami Rosen36fe8c092012-11-25 22:07:40 +0000216 * device, socket filter, sndbuf and vnet header size were restore when the
Jason Wang54f968d2012-10-31 19:45:57 +0000217 * file were attached to a persist device.
218 */
Rusty Russell14daa022008-04-12 18:48:58 -0700219struct tun_struct {
Jason Wangc8d68e62012-10-31 19:46:00 +0000220 struct tun_file __rcu *tfiles[MAX_TAP_QUEUES];
221 unsigned int numqueues;
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -0700222 unsigned int flags;
Eric W. Biederman0625c882012-02-07 16:48:55 -0800223 kuid_t owner;
224 kgid_t group;
Rusty Russell14daa022008-04-12 18:48:58 -0700225
Rusty Russell14daa022008-04-12 18:48:58 -0700226 struct net_device *dev;
Michał Mirosławc8f44af2011-11-15 15:29:55 +0000227 netdev_features_t set_features;
Michał Mirosław88255372011-04-19 06:13:10 +0000228#define TUN_USER_FEATURES (NETIF_F_HW_CSUM|NETIF_F_TSO_ECN|NETIF_F_TSO| \
David S. Millerd591a1f2017-07-03 06:35:32 -0700229 NETIF_F_TSO6)
Michael S. Tsirkind9d52b52010-03-17 17:45:01 +0200230
Paolo Abenieaea34b2016-02-26 10:45:40 +0100231 int align;
Michael S. Tsirkind9d52b52010-03-17 17:45:01 +0200232 int vnet_hdr_sz;
Jason Wang54f968d2012-10-31 19:45:57 +0000233 int sndbuf;
234 struct tap_filter txflt;
235 struct sock_fprog fprog;
236 /* protected by rtnl lock */
237 bool filter_attached;
Rusty Russell14daa022008-04-12 18:48:58 -0700238#ifdef TUN_DEBUG
239 int debug;
240#endif
Jason Wang96442e422012-10-31 19:46:02 +0000241 spinlock_t lock;
Jason Wang96442e422012-10-31 19:46:02 +0000242 struct hlist_head flows[TUN_NUM_FLOW_ENTRIES];
243 struct timer_list flow_gc_timer;
244 unsigned long ageing_time;
Jason Wang4008e972012-12-13 23:53:30 +0000245 unsigned int numdisabled;
246 struct list_head disabled;
Paul Moore5dbbaf22013-01-14 07:12:19 +0000247 void *security;
Jason Wangb8732fb2013-01-23 03:59:13 +0000248 u32 flow_count;
Jason Wang5503fce2017-01-18 15:02:03 +0800249 u32 rx_batched;
Paolo Abeni608b9972016-04-13 10:52:20 +0200250 struct tun_pcpu_stats __percpu *pcpu_stats;
Jason Wang761876c2017-08-11 19:41:18 +0800251 struct bpf_prog __rcu *xdp_prog;
Jason Wangcd5681d2018-01-16 16:31:01 +0800252 struct tun_prog __rcu *steering_prog;
Jason Wangaff3d702018-01-16 16:31:02 +0800253 struct tun_prog __rcu *filter_prog;
Chas Williams4e24f2d2018-06-02 17:49:53 -0400254 struct ethtool_link_ksettings link_ksettings;
Rusty Russell14daa022008-04-12 18:48:58 -0700255};
256
Jason Wangaff3d702018-01-16 16:31:02 +0800257struct veth {
258 __be16 h_vlan_proto;
259 __be16 h_vlan_TCI;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260};
261
Jesper Dangaard Brouer1ffcbc82018-04-17 16:45:47 +0200262bool tun_is_xdp_frame(void *ptr)
Jason Wangfc72d1d2018-01-04 11:14:28 +0800263{
264 return (unsigned long)ptr & TUN_XDP_FLAG;
265}
Jesper Dangaard Brouer1ffcbc82018-04-17 16:45:47 +0200266EXPORT_SYMBOL(tun_is_xdp_frame);
Jason Wangfc72d1d2018-01-04 11:14:28 +0800267
268void *tun_xdp_to_ptr(void *ptr)
269{
270 return (void *)((unsigned long)ptr | TUN_XDP_FLAG);
271}
272EXPORT_SYMBOL(tun_xdp_to_ptr);
273
274void *tun_ptr_to_xdp(void *ptr)
275{
276 return (void *)((unsigned long)ptr & ~TUN_XDP_FLAG);
277}
278EXPORT_SYMBOL(tun_ptr_to_xdp);
279
Petar Penkov94317092017-09-22 13:49:14 -0700280static int tun_napi_receive(struct napi_struct *napi, int budget)
281{
282 struct tun_file *tfile = container_of(napi, struct tun_file, napi);
283 struct sk_buff_head *queue = &tfile->sk.sk_write_queue;
284 struct sk_buff_head process_queue;
285 struct sk_buff *skb;
286 int received = 0;
287
288 __skb_queue_head_init(&process_queue);
289
290 spin_lock(&queue->lock);
291 skb_queue_splice_tail_init(queue, &process_queue);
292 spin_unlock(&queue->lock);
293
294 while (received < budget && (skb = __skb_dequeue(&process_queue))) {
295 napi_gro_receive(napi, skb);
296 ++received;
297 }
298
299 if (!skb_queue_empty(&process_queue)) {
300 spin_lock(&queue->lock);
301 skb_queue_splice(&process_queue, queue);
302 spin_unlock(&queue->lock);
303 }
304
305 return received;
306}
307
308static int tun_napi_poll(struct napi_struct *napi, int budget)
309{
310 unsigned int received;
311
312 received = tun_napi_receive(napi, budget);
313
314 if (received < budget)
315 napi_complete_done(napi, received);
316
317 return received;
318}
319
320static void tun_napi_init(struct tun_struct *tun, struct tun_file *tfile,
Eric Dumazetaf3fb242018-09-28 14:51:49 -0700321 bool napi_en, bool napi_frags)
Petar Penkov94317092017-09-22 13:49:14 -0700322{
Eric Dumazetaec72f32017-10-18 12:12:09 -0700323 tfile->napi_enabled = napi_en;
Eric Dumazetaf3fb242018-09-28 14:51:49 -0700324 tfile->napi_frags_enabled = napi_en && napi_frags;
Petar Penkov94317092017-09-22 13:49:14 -0700325 if (napi_en) {
326 netif_napi_add(tun->dev, &tfile->napi, tun_napi_poll,
327 NAPI_POLL_WEIGHT);
328 napi_enable(&tfile->napi);
329 }
330}
331
Eric Dumazet06e55ad2018-09-28 14:51:47 -0700332static void tun_napi_disable(struct tun_file *tfile)
Petar Penkov94317092017-09-22 13:49:14 -0700333{
Eric Dumazetaec72f32017-10-18 12:12:09 -0700334 if (tfile->napi_enabled)
Petar Penkov94317092017-09-22 13:49:14 -0700335 napi_disable(&tfile->napi);
336}
337
Eric Dumazet06e55ad2018-09-28 14:51:47 -0700338static void tun_napi_del(struct tun_file *tfile)
Petar Penkov94317092017-09-22 13:49:14 -0700339{
Eric Dumazetaec72f32017-10-18 12:12:09 -0700340 if (tfile->napi_enabled)
Petar Penkov94317092017-09-22 13:49:14 -0700341 netif_napi_del(&tfile->napi);
342}
343
Eric Dumazetaf3fb242018-09-28 14:51:49 -0700344static bool tun_napi_frags_enabled(const struct tun_file *tfile)
Petar Penkov90e33d42017-09-22 13:49:15 -0700345{
Eric Dumazetaf3fb242018-09-28 14:51:49 -0700346 return tfile->napi_frags_enabled;
Petar Penkov90e33d42017-09-22 13:49:15 -0700347}
348
Greg Kurz8b8e6582015-04-24 14:50:36 +0200349#ifdef CONFIG_TUN_VNET_CROSS_LE
350static inline bool tun_legacy_is_little_endian(struct tun_struct *tun)
351{
352 return tun->flags & TUN_VNET_BE ? false :
353 virtio_legacy_is_little_endian();
354}
355
356static long tun_get_vnet_be(struct tun_struct *tun, int __user *argp)
357{
358 int be = !!(tun->flags & TUN_VNET_BE);
359
360 if (put_user(be, argp))
361 return -EFAULT;
362
363 return 0;
364}
365
366static long tun_set_vnet_be(struct tun_struct *tun, int __user *argp)
367{
368 int be;
369
370 if (get_user(be, argp))
371 return -EFAULT;
372
373 if (be)
374 tun->flags |= TUN_VNET_BE;
375 else
376 tun->flags &= ~TUN_VNET_BE;
377
378 return 0;
379}
380#else
381static inline bool tun_legacy_is_little_endian(struct tun_struct *tun)
382{
383 return virtio_legacy_is_little_endian();
384}
385
386static long tun_get_vnet_be(struct tun_struct *tun, int __user *argp)
387{
388 return -EINVAL;
389}
390
391static long tun_set_vnet_be(struct tun_struct *tun, int __user *argp)
392{
393 return -EINVAL;
394}
395#endif /* CONFIG_TUN_VNET_CROSS_LE */
396
Greg Kurz25bd55bb2015-04-24 14:24:38 +0200397static inline bool tun_is_little_endian(struct tun_struct *tun)
398{
Greg Kurz7d824102015-04-24 14:26:24 +0200399 return tun->flags & TUN_VNET_LE ||
Greg Kurz8b8e6582015-04-24 14:50:36 +0200400 tun_legacy_is_little_endian(tun);
Greg Kurz25bd55bb2015-04-24 14:24:38 +0200401}
402
Michael S. Tsirkin56f0dcc2014-10-23 22:59:31 +0300403static inline u16 tun16_to_cpu(struct tun_struct *tun, __virtio16 val)
404{
Greg Kurz25bd55bb2015-04-24 14:24:38 +0200405 return __virtio16_to_cpu(tun_is_little_endian(tun), val);
Michael S. Tsirkin56f0dcc2014-10-23 22:59:31 +0300406}
407
408static inline __virtio16 cpu_to_tun16(struct tun_struct *tun, u16 val)
409{
Greg Kurz25bd55bb2015-04-24 14:24:38 +0200410 return __cpu_to_virtio16(tun_is_little_endian(tun), val);
Michael S. Tsirkin56f0dcc2014-10-23 22:59:31 +0300411}
412
Jason Wang96442e422012-10-31 19:46:02 +0000413static inline u32 tun_hashfn(u32 rxhash)
414{
Li RongQingf13b5462018-08-03 15:50:02 +0800415 return rxhash & TUN_MASK_FLOW_ENTRIES;
Jason Wang96442e422012-10-31 19:46:02 +0000416}
417
418static struct tun_flow_entry *tun_flow_find(struct hlist_head *head, u32 rxhash)
419{
420 struct tun_flow_entry *e;
Jason Wang96442e422012-10-31 19:46:02 +0000421
Sasha Levinb67bfe02013-02-27 17:06:00 -0800422 hlist_for_each_entry_rcu(e, head, hash_link) {
Jason Wang96442e422012-10-31 19:46:02 +0000423 if (e->rxhash == rxhash)
424 return e;
425 }
426 return NULL;
427}
428
429static struct tun_flow_entry *tun_flow_create(struct tun_struct *tun,
430 struct hlist_head *head,
431 u32 rxhash, u16 queue_index)
432{
Eric Dumazet9fdc6be2012-12-21 07:17:21 +0000433 struct tun_flow_entry *e = kmalloc(sizeof(*e), GFP_ATOMIC);
434
Jason Wang96442e422012-10-31 19:46:02 +0000435 if (e) {
436 tun_debug(KERN_INFO, tun, "create flow: hash %u index %u\n",
437 rxhash, queue_index);
438 e->updated = jiffies;
439 e->rxhash = rxhash;
Tom Herbert9bc88932013-12-22 18:54:32 +0800440 e->rps_rxhash = 0;
Jason Wang96442e422012-10-31 19:46:02 +0000441 e->queue_index = queue_index;
442 e->tun = tun;
443 hlist_add_head_rcu(&e->hash_link, head);
Jason Wangb8732fb2013-01-23 03:59:13 +0000444 ++tun->flow_count;
Jason Wang96442e422012-10-31 19:46:02 +0000445 }
446 return e;
447}
448
Jason Wang96442e422012-10-31 19:46:02 +0000449static void tun_flow_delete(struct tun_struct *tun, struct tun_flow_entry *e)
450{
451 tun_debug(KERN_INFO, tun, "delete flow: hash %u index %u\n",
452 e->rxhash, e->queue_index);
453 hlist_del_rcu(&e->hash_link);
Eric Dumazet9fdc6be2012-12-21 07:17:21 +0000454 kfree_rcu(e, rcu);
Jason Wangb8732fb2013-01-23 03:59:13 +0000455 --tun->flow_count;
Jason Wang96442e422012-10-31 19:46:02 +0000456}
457
458static void tun_flow_flush(struct tun_struct *tun)
459{
460 int i;
461
462 spin_lock_bh(&tun->lock);
463 for (i = 0; i < TUN_NUM_FLOW_ENTRIES; i++) {
464 struct tun_flow_entry *e;
Sasha Levinb67bfe02013-02-27 17:06:00 -0800465 struct hlist_node *n;
Jason Wang96442e422012-10-31 19:46:02 +0000466
Sasha Levinb67bfe02013-02-27 17:06:00 -0800467 hlist_for_each_entry_safe(e, n, &tun->flows[i], hash_link)
Jason Wang96442e422012-10-31 19:46:02 +0000468 tun_flow_delete(tun, e);
469 }
470 spin_unlock_bh(&tun->lock);
471}
472
473static void tun_flow_delete_by_queue(struct tun_struct *tun, u16 queue_index)
474{
475 int i;
476
477 spin_lock_bh(&tun->lock);
478 for (i = 0; i < TUN_NUM_FLOW_ENTRIES; i++) {
479 struct tun_flow_entry *e;
Sasha Levinb67bfe02013-02-27 17:06:00 -0800480 struct hlist_node *n;
Jason Wang96442e422012-10-31 19:46:02 +0000481
Sasha Levinb67bfe02013-02-27 17:06:00 -0800482 hlist_for_each_entry_safe(e, n, &tun->flows[i], hash_link) {
Jason Wang96442e422012-10-31 19:46:02 +0000483 if (e->queue_index == queue_index)
484 tun_flow_delete(tun, e);
485 }
486 }
487 spin_unlock_bh(&tun->lock);
488}
489
Kees Cooke99e88a2017-10-16 14:43:17 -0700490static void tun_flow_cleanup(struct timer_list *t)
Jason Wang96442e422012-10-31 19:46:02 +0000491{
Kees Cooke99e88a2017-10-16 14:43:17 -0700492 struct tun_struct *tun = from_timer(tun, t, flow_gc_timer);
Jason Wang96442e422012-10-31 19:46:02 +0000493 unsigned long delay = tun->ageing_time;
494 unsigned long next_timer = jiffies + delay;
495 unsigned long count = 0;
496 int i;
497
498 tun_debug(KERN_INFO, tun, "tun_flow_cleanup\n");
499
Eric Dumazet7dbfb4e2017-10-20 11:29:55 -0700500 spin_lock(&tun->lock);
Jason Wang96442e422012-10-31 19:46:02 +0000501 for (i = 0; i < TUN_NUM_FLOW_ENTRIES; i++) {
502 struct tun_flow_entry *e;
Sasha Levinb67bfe02013-02-27 17:06:00 -0800503 struct hlist_node *n;
Jason Wang96442e422012-10-31 19:46:02 +0000504
Sasha Levinb67bfe02013-02-27 17:06:00 -0800505 hlist_for_each_entry_safe(e, n, &tun->flows[i], hash_link) {
Jason Wang96442e422012-10-31 19:46:02 +0000506 unsigned long this_timer;
Eric Dumazet81d98fa2017-10-20 11:29:56 -0700507
Jason Wang96442e422012-10-31 19:46:02 +0000508 this_timer = e->updated + delay;
Eric Dumazet81d98fa2017-10-20 11:29:56 -0700509 if (time_before_eq(this_timer, jiffies)) {
Jason Wang96442e422012-10-31 19:46:02 +0000510 tun_flow_delete(tun, e);
Eric Dumazet81d98fa2017-10-20 11:29:56 -0700511 continue;
512 }
513 count++;
514 if (time_before(this_timer, next_timer))
Jason Wang96442e422012-10-31 19:46:02 +0000515 next_timer = this_timer;
516 }
517 }
518
519 if (count)
520 mod_timer(&tun->flow_gc_timer, round_jiffies_up(next_timer));
Eric Dumazet7dbfb4e2017-10-20 11:29:55 -0700521 spin_unlock(&tun->lock);
Jason Wang96442e422012-10-31 19:46:02 +0000522}
523
Eric Dumazet49974422012-12-12 19:22:57 +0000524static void tun_flow_update(struct tun_struct *tun, u32 rxhash,
Jason Wang9e857222013-01-28 01:05:19 +0000525 struct tun_file *tfile)
Jason Wang96442e422012-10-31 19:46:02 +0000526{
527 struct hlist_head *head;
528 struct tun_flow_entry *e;
529 unsigned long delay = tun->ageing_time;
Jason Wang9e857222013-01-28 01:05:19 +0000530 u16 queue_index = tfile->queue_index;
Jason Wang96442e422012-10-31 19:46:02 +0000531
Li RongQing5c327f62018-12-06 16:28:11 +0800532 head = &tun->flows[tun_hashfn(rxhash)];
Jason Wang96442e422012-10-31 19:46:02 +0000533
534 rcu_read_lock();
535
Jason Wang96442e422012-10-31 19:46:02 +0000536 e = tun_flow_find(head, rxhash);
537 if (likely(e)) {
538 /* TODO: keep queueing to old queue until it's empty? */
Li RongQing83b1bc12018-12-06 16:08:17 +0800539 if (e->queue_index != queue_index)
540 e->queue_index = queue_index;
541 if (e->updated != jiffies)
542 e->updated = jiffies;
Tom Herbert9bc88932013-12-22 18:54:32 +0800543 sock_rps_record_flow_hash(e->rps_rxhash);
Jason Wang96442e422012-10-31 19:46:02 +0000544 } else {
545 spin_lock_bh(&tun->lock);
Jason Wangb8732fb2013-01-23 03:59:13 +0000546 if (!tun_flow_find(head, rxhash) &&
547 tun->flow_count < MAX_TAP_FLOWS)
Jason Wang96442e422012-10-31 19:46:02 +0000548 tun_flow_create(tun, head, rxhash, queue_index);
549
550 if (!timer_pending(&tun->flow_gc_timer))
551 mod_timer(&tun->flow_gc_timer,
552 round_jiffies_up(jiffies + delay));
553 spin_unlock_bh(&tun->lock);
554 }
555
Jason Wang96442e422012-10-31 19:46:02 +0000556 rcu_read_unlock();
557}
558
Tom Herbert9bc88932013-12-22 18:54:32 +0800559/**
560 * Save the hash received in the stack receive path and update the
561 * flow_hash table accordingly.
562 */
563static inline void tun_flow_save_rps_rxhash(struct tun_flow_entry *e, u32 hash)
564{
Eric Dumazet567e4b72015-02-06 12:59:01 -0800565 if (unlikely(e->rps_rxhash != hash))
Tom Herbert9bc88932013-12-22 18:54:32 +0800566 e->rps_rxhash = hash;
Tom Herbert9bc88932013-12-22 18:54:32 +0800567}
568
Wang Li4b035272018-10-09 10:32:04 +0800569/* We try to identify a flow through its rxhash. The reason that
stephen hemminger92d4ea62013-12-05 20:42:58 -0800570 * we do not check rxq no. is because some cards(e.g 82599), chooses
Jason Wangc8d68e62012-10-31 19:46:00 +0000571 * the rxq based on the txq where the last packet of the flow comes. As
572 * the userspace application move between processors, we may get a
Wang Li4b035272018-10-09 10:32:04 +0800573 * different rxq no. here.
Jason Wangc8d68e62012-10-31 19:46:00 +0000574 */
Jason Wang96f84062017-12-04 17:31:23 +0800575static u16 tun_automq_select_queue(struct tun_struct *tun, struct sk_buff *skb)
Jason Wangc8d68e62012-10-31 19:46:00 +0000576{
Jason Wang96442e422012-10-31 19:46:02 +0000577 struct tun_flow_entry *e;
Jason Wangc8d68e62012-10-31 19:46:00 +0000578 u32 txq = 0;
579 u32 numqueues = 0;
580
Mark Rutland6aa7de02017-10-23 14:07:29 -0700581 numqueues = READ_ONCE(tun->numqueues);
Jason Wangc8d68e62012-10-31 19:46:00 +0000582
Jason Wangfeec0842017-06-06 14:09:49 +0800583 txq = __skb_get_hash_symmetric(skb);
Wang Li4b035272018-10-09 10:32:04 +0800584 e = tun_flow_find(&tun->flows[tun_hashfn(txq)], txq);
585 if (e) {
586 tun_flow_save_rps_rxhash(e, txq);
587 txq = e->queue_index;
588 } else {
589 /* use multiply and shift instead of expensive divide */
590 txq = ((u64)txq * numqueues) >> 32;
Jason Wangc8d68e62012-10-31 19:46:00 +0000591 }
592
Jason Wangc8d68e62012-10-31 19:46:00 +0000593 return txq;
594}
595
Jason Wang96f84062017-12-04 17:31:23 +0800596static u16 tun_ebpf_select_queue(struct tun_struct *tun, struct sk_buff *skb)
597{
Jason Wangcd5681d2018-01-16 16:31:01 +0800598 struct tun_prog *prog;
Jason Wanga35d3102019-05-08 23:20:17 -0400599 u32 numqueues;
Jason Wang96f84062017-12-04 17:31:23 +0800600 u16 ret = 0;
601
Jason Wanga35d3102019-05-08 23:20:17 -0400602 numqueues = READ_ONCE(tun->numqueues);
603 if (!numqueues)
604 return 0;
605
Jason Wang96f84062017-12-04 17:31:23 +0800606 prog = rcu_dereference(tun->steering_prog);
607 if (prog)
608 ret = bpf_prog_run_clear_cb(prog->prog, skb);
609
Jason Wanga35d3102019-05-08 23:20:17 -0400610 return ret % numqueues;
Jason Wang96f84062017-12-04 17:31:23 +0800611}
612
613static u16 tun_select_queue(struct net_device *dev, struct sk_buff *skb,
Paolo Abenia350ecc2019-03-20 11:02:06 +0100614 struct net_device *sb_dev)
Jason Wang96f84062017-12-04 17:31:23 +0800615{
616 struct tun_struct *tun = netdev_priv(dev);
617 u16 ret;
618
619 rcu_read_lock();
620 if (rcu_dereference(tun->steering_prog))
621 ret = tun_ebpf_select_queue(tun, skb);
622 else
623 ret = tun_automq_select_queue(tun, skb);
624 rcu_read_unlock();
625
626 return ret;
627}
628
Jason Wangcde8b152012-10-31 19:46:01 +0000629static inline bool tun_not_capable(struct tun_struct *tun)
630{
631 const struct cred *cred = current_cred();
Eric W. Biedermanc260b772012-11-18 21:34:11 +0000632 struct net *net = dev_net(tun->dev);
Jason Wangcde8b152012-10-31 19:46:01 +0000633
634 return ((uid_valid(tun->owner) && !uid_eq(cred->euid, tun->owner)) ||
635 (gid_valid(tun->group) && !in_egroup_p(tun->group))) &&
Eric W. Biedermanc260b772012-11-18 21:34:11 +0000636 !ns_capable(net->user_ns, CAP_NET_ADMIN);
Jason Wangcde8b152012-10-31 19:46:01 +0000637}
638
Jason Wangc8d68e62012-10-31 19:46:00 +0000639static void tun_set_real_num_queues(struct tun_struct *tun)
640{
641 netif_set_real_num_tx_queues(tun->dev, tun->numqueues);
642 netif_set_real_num_rx_queues(tun->dev, tun->numqueues);
643}
644
Jason Wang4008e972012-12-13 23:53:30 +0000645static void tun_disable_queue(struct tun_struct *tun, struct tun_file *tfile)
646{
647 tfile->detached = tun;
648 list_add_tail(&tfile->next, &tun->disabled);
649 ++tun->numdisabled;
650}
651
Jason Wangd32649d2012-12-18 11:00:27 +0800652static struct tun_struct *tun_enable_queue(struct tun_file *tfile)
Jason Wang4008e972012-12-13 23:53:30 +0000653{
654 struct tun_struct *tun = tfile->detached;
655
656 tfile->detached = NULL;
657 list_del_init(&tfile->next);
658 --tun->numdisabled;
659 return tun;
660}
661
Jason Wang3a403072018-03-09 14:50:34 +0800662void tun_ptr_free(void *ptr)
Jason Wangfc72d1d2018-01-04 11:14:28 +0800663{
664 if (!ptr)
665 return;
Jesper Dangaard Brouer1ffcbc82018-04-17 16:45:47 +0200666 if (tun_is_xdp_frame(ptr)) {
667 struct xdp_frame *xdpf = tun_ptr_to_xdp(ptr);
Jason Wangfc72d1d2018-01-04 11:14:28 +0800668
Jesper Dangaard Brouer03993092018-04-17 16:46:32 +0200669 xdp_return_frame(xdpf);
Jason Wangfc72d1d2018-01-04 11:14:28 +0800670 } else {
671 __skb_array_destroy_skb(ptr);
672 }
673}
Jason Wang3a403072018-03-09 14:50:34 +0800674EXPORT_SYMBOL_GPL(tun_ptr_free);
Jason Wangfc72d1d2018-01-04 11:14:28 +0800675
Jason Wang4bfb0512013-09-05 17:53:59 +0800676static void tun_queue_purge(struct tun_file *tfile)
677{
Jason Wangfc72d1d2018-01-04 11:14:28 +0800678 void *ptr;
Jason Wang1576d982016-06-30 14:45:36 +0800679
Jason Wangfc72d1d2018-01-04 11:14:28 +0800680 while ((ptr = ptr_ring_consume(&tfile->tx_ring)) != NULL)
681 tun_ptr_free(ptr);
Jason Wang1576d982016-06-30 14:45:36 +0800682
Jason Wang5503fce2017-01-18 15:02:03 +0800683 skb_queue_purge(&tfile->sk.sk_write_queue);
Jason Wang4bfb0512013-09-05 17:53:59 +0800684 skb_queue_purge(&tfile->sk.sk_error_queue);
685}
686
Jason Wangc8d68e62012-10-31 19:46:00 +0000687static void __tun_detach(struct tun_file *tfile, bool clean)
688{
689 struct tun_file *ntfile;
690 struct tun_struct *tun;
Jason Wangc8d68e62012-10-31 19:46:00 +0000691
Jason Wangb8deabd2013-01-11 16:59:32 +0000692 tun = rtnl_dereference(tfile->tun);
693
Petar Penkov94317092017-09-22 13:49:14 -0700694 if (tun && clean) {
Eric Dumazet06e55ad2018-09-28 14:51:47 -0700695 tun_napi_disable(tfile);
696 tun_napi_del(tfile);
Petar Penkov94317092017-09-22 13:49:14 -0700697 }
698
Jason Wang9e857222013-01-28 01:05:19 +0000699 if (tun && !tfile->detached) {
Jason Wangc8d68e62012-10-31 19:46:00 +0000700 u16 index = tfile->queue_index;
701 BUG_ON(index >= tun->numqueues);
Jason Wangc8d68e62012-10-31 19:46:00 +0000702
703 rcu_assign_pointer(tun->tfiles[index],
704 tun->tfiles[tun->numqueues - 1]);
Jason Wangb8deabd2013-01-11 16:59:32 +0000705 ntfile = rtnl_dereference(tun->tfiles[index]);
Jason Wangc8d68e62012-10-31 19:46:00 +0000706 ntfile->queue_index = index;
707
708 --tun->numqueues;
Jason Wang9e857222013-01-28 01:05:19 +0000709 if (clean) {
Monam Agarwalc9566742014-03-24 00:02:32 +0530710 RCU_INIT_POINTER(tfile->tun, NULL);
Jason Wang4008e972012-12-13 23:53:30 +0000711 sock_put(&tfile->sk);
Jason Wang9e857222013-01-28 01:05:19 +0000712 } else
Jason Wang4008e972012-12-13 23:53:30 +0000713 tun_disable_queue(tun, tfile);
Jason Wangc8d68e62012-10-31 19:46:00 +0000714
715 synchronize_net();
Jason Wang96442e422012-10-31 19:46:02 +0000716 tun_flow_delete_by_queue(tun, tun->numqueues + 1);
Jason Wangc8d68e62012-10-31 19:46:00 +0000717 /* Drop read queue */
Jason Wang4bfb0512013-09-05 17:53:59 +0800718 tun_queue_purge(tfile);
Jason Wangc8d68e62012-10-31 19:46:00 +0000719 tun_set_real_num_queues(tun);
Jason Wangdd38bd82013-01-11 16:59:34 +0000720 } else if (tfile->detached && clean) {
Jason Wang4008e972012-12-13 23:53:30 +0000721 tun = tun_enable_queue(tfile);
Jason Wangdd38bd82013-01-11 16:59:34 +0000722 sock_put(&tfile->sk);
723 }
Jason Wangc8d68e62012-10-31 19:46:00 +0000724
725 if (clean) {
Michael S. Tsirkinaf668b32013-01-28 00:38:02 +0000726 if (tun && tun->numqueues == 0 && tun->numdisabled == 0) {
727 netif_carrier_off(tun->dev);
728
Michael S. Tsirkin40630b82014-11-19 15:17:31 +0200729 if (!(tun->flags & IFF_PERSIST) &&
Michael S. Tsirkinaf668b32013-01-28 00:38:02 +0000730 tun->dev->reg_state == NETREG_REGISTERED)
Jason Wang4008e972012-12-13 23:53:30 +0000731 unregister_netdevice(tun->dev);
Michael S. Tsirkinaf668b32013-01-28 00:38:02 +0000732 }
Jason Wangb196d882018-05-11 10:49:25 +0800733 if (tun)
734 xdp_rxq_info_unreg(&tfile->xdp_rxq);
Jason Wang7063efd2018-05-16 20:39:33 +0800735 ptr_ring_cleanup(&tfile->tx_ring, tun_ptr_free);
Eric W. Biederman140e807da2015-05-08 21:07:08 -0500736 sock_put(&tfile->sk);
Jason Wangc8d68e62012-10-31 19:46:00 +0000737 }
738}
739
740static void tun_detach(struct tun_file *tfile, bool clean)
741{
Sabrina Dubroca83c1f362018-04-10 16:28:56 +0200742 struct tun_struct *tun;
743 struct net_device *dev;
744
Jason Wangc8d68e62012-10-31 19:46:00 +0000745 rtnl_lock();
Sabrina Dubroca83c1f362018-04-10 16:28:56 +0200746 tun = rtnl_dereference(tfile->tun);
747 dev = tun ? tun->dev : NULL;
Jason Wangc8d68e62012-10-31 19:46:00 +0000748 __tun_detach(tfile, clean);
Sabrina Dubroca83c1f362018-04-10 16:28:56 +0200749 if (dev)
750 netdev_state_change(dev);
Jason Wangc8d68e62012-10-31 19:46:00 +0000751 rtnl_unlock();
752}
753
754static void tun_detach_all(struct net_device *dev)
755{
756 struct tun_struct *tun = netdev_priv(dev);
Jason Wang4008e972012-12-13 23:53:30 +0000757 struct tun_file *tfile, *tmp;
Jason Wangc8d68e62012-10-31 19:46:00 +0000758 int i, n = tun->numqueues;
759
760 for (i = 0; i < n; i++) {
Jason Wangb8deabd2013-01-11 16:59:32 +0000761 tfile = rtnl_dereference(tun->tfiles[i]);
Jason Wangc8d68e62012-10-31 19:46:00 +0000762 BUG_ON(!tfile);
Eric Dumazet06e55ad2018-09-28 14:51:47 -0700763 tun_napi_disable(tfile);
Jason Wangaddf8fc2016-05-19 13:36:51 +0800764 tfile->socket.sk->sk_shutdown = RCV_SHUTDOWN;
Xi Wang9e641bd2014-05-16 15:11:48 -0700765 tfile->socket.sk->sk_data_ready(tfile->socket.sk);
Monam Agarwalc9566742014-03-24 00:02:32 +0530766 RCU_INIT_POINTER(tfile->tun, NULL);
Jason Wangc8d68e62012-10-31 19:46:00 +0000767 --tun->numqueues;
768 }
Jason Wang9e857222013-01-28 01:05:19 +0000769 list_for_each_entry(tfile, &tun->disabled, next) {
Jason Wangaddf8fc2016-05-19 13:36:51 +0800770 tfile->socket.sk->sk_shutdown = RCV_SHUTDOWN;
Xi Wang9e641bd2014-05-16 15:11:48 -0700771 tfile->socket.sk->sk_data_ready(tfile->socket.sk);
Monam Agarwalc9566742014-03-24 00:02:32 +0530772 RCU_INIT_POINTER(tfile->tun, NULL);
Jason Wang9e857222013-01-28 01:05:19 +0000773 }
Jason Wangc8d68e62012-10-31 19:46:00 +0000774 BUG_ON(tun->numqueues != 0);
775
776 synchronize_net();
777 for (i = 0; i < n; i++) {
Jason Wangb8deabd2013-01-11 16:59:32 +0000778 tfile = rtnl_dereference(tun->tfiles[i]);
Eric Dumazet06e55ad2018-09-28 14:51:47 -0700779 tun_napi_del(tfile);
Jason Wangc8d68e62012-10-31 19:46:00 +0000780 /* Drop read queue */
Jason Wang4bfb0512013-09-05 17:53:59 +0800781 tun_queue_purge(tfile);
Jason Wangb196d882018-05-11 10:49:25 +0800782 xdp_rxq_info_unreg(&tfile->xdp_rxq);
Jason Wangc8d68e62012-10-31 19:46:00 +0000783 sock_put(&tfile->sk);
784 }
Jason Wang4008e972012-12-13 23:53:30 +0000785 list_for_each_entry_safe(tfile, tmp, &tun->disabled, next) {
786 tun_enable_queue(tfile);
Jason Wang4bfb0512013-09-05 17:53:59 +0800787 tun_queue_purge(tfile);
Jason Wangb196d882018-05-11 10:49:25 +0800788 xdp_rxq_info_unreg(&tfile->xdp_rxq);
Jason Wang4008e972012-12-13 23:53:30 +0000789 sock_put(&tfile->sk);
790 }
791 BUG_ON(tun->numdisabled != 0);
Jason Wangdd38bd82013-01-11 16:59:34 +0000792
Michael S. Tsirkin40630b82014-11-19 15:17:31 +0200793 if (tun->flags & IFF_PERSIST)
Jason Wangdd38bd82013-01-11 16:59:34 +0000794 module_put(THIS_MODULE);
Jason Wangc8d68e62012-10-31 19:46:00 +0000795}
796
Petar Penkov94317092017-09-22 13:49:14 -0700797static int tun_attach(struct tun_struct *tun, struct file *file,
Eric Dumazetaf3fb242018-09-28 14:51:49 -0700798 bool skip_filter, bool napi, bool napi_frags)
Eric W. Biedermana7385ba2009-01-20 10:57:48 +0000799{
Eric W. Biederman631ab462009-01-20 11:00:40 +0000800 struct tun_file *tfile = file->private_data;
Jason Wang1576d982016-06-30 14:45:36 +0800801 struct net_device *dev = tun->dev;
Eric W. Biederman38231b72009-01-20 11:02:28 +0000802 int err;
Eric W. Biedermana7385ba2009-01-20 10:57:48 +0000803
Paul Moore5dbbaf22013-01-14 07:12:19 +0000804 err = security_tun_dev_attach(tfile->socket.sk, tun->security);
805 if (err < 0)
806 goto out;
807
Eric W. Biederman38231b72009-01-20 11:02:28 +0000808 err = -EINVAL;
Jason Wang9e857222013-01-28 01:05:19 +0000809 if (rtnl_dereference(tfile->tun) && !tfile->detached)
Eric W. Biederman38231b72009-01-20 11:02:28 +0000810 goto out;
811
812 err = -EBUSY;
Michael S. Tsirkin40630b82014-11-19 15:17:31 +0200813 if (!(tun->flags & IFF_MULTI_QUEUE) && tun->numqueues == 1)
Jason Wangc8d68e62012-10-31 19:46:00 +0000814 goto out;
815
816 err = -E2BIG;
Jason Wang4008e972012-12-13 23:53:30 +0000817 if (!tfile->detached &&
818 tun->numqueues + tun->numdisabled == MAX_TAP_QUEUES)
Eric W. Biederman38231b72009-01-20 11:02:28 +0000819 goto out;
820
821 err = 0;
Jason Wang54f968d2012-10-31 19:45:57 +0000822
stephen hemminger92d4ea62013-12-05 20:42:58 -0800823 /* Re-attach the filter to persist device */
Pavel Emelyanov849c9b62013-08-21 14:32:21 +0400824 if (!skip_filter && (tun->filter_attached == true)) {
Hannes Frederic Sowa8ced4252016-04-05 17:10:16 +0200825 lock_sock(tfile->socket.sk);
826 err = sk_attach_filter(&tun->fprog, tfile->socket.sk);
827 release_sock(tfile->socket.sk);
Jason Wang54f968d2012-10-31 19:45:57 +0000828 if (!err)
829 goto out;
830 }
Jason Wang1576d982016-06-30 14:45:36 +0800831
832 if (!tfile->detached &&
Jason Wangb196d882018-05-11 10:49:25 +0800833 ptr_ring_resize(&tfile->tx_ring, dev->tx_queue_len,
834 GFP_KERNEL, tun_ptr_free)) {
Jason Wang1576d982016-06-30 14:45:36 +0800835 err = -ENOMEM;
836 goto out;
837 }
838
Jason Wangc8d68e62012-10-31 19:46:00 +0000839 tfile->queue_index = tun->numqueues;
Jason Wangaddf8fc2016-05-19 13:36:51 +0800840 tfile->socket.sk->sk_shutdown &= ~RCV_SHUTDOWN;
Jesper Dangaard Brouer8bf5c4e2018-01-03 11:25:59 +0100841
842 if (tfile->detached) {
843 /* Re-attach detached tfile, updating XDP queue_index */
844 WARN_ON(!xdp_rxq_info_is_reg(&tfile->xdp_rxq));
845
846 if (tfile->xdp_rxq.queue_index != tfile->queue_index)
847 tfile->xdp_rxq.queue_index = tfile->queue_index;
848 } else {
849 /* Setup XDP RX-queue info, for new tfile getting attached */
850 err = xdp_rxq_info_reg(&tfile->xdp_rxq,
851 tun->dev, tfile->queue_index);
852 if (err < 0)
853 goto out;
Jesper Dangaard Brouer8d5d8852018-04-17 16:46:12 +0200854 err = xdp_rxq_info_reg_mem_model(&tfile->xdp_rxq,
855 MEM_TYPE_PAGE_SHARED, NULL);
856 if (err < 0) {
857 xdp_rxq_info_unreg(&tfile->xdp_rxq);
858 goto out;
859 }
Jesper Dangaard Brouer8bf5c4e2018-01-03 11:25:59 +0100860 err = 0;
861 }
862
Petar Penkov94317092017-09-22 13:49:14 -0700863 if (tfile->detached) {
Jason Wang4008e972012-12-13 23:53:30 +0000864 tun_enable_queue(tfile);
Petar Penkov94317092017-09-22 13:49:14 -0700865 } else {
Jason Wang4008e972012-12-13 23:53:30 +0000866 sock_hold(&tfile->sk);
Eric Dumazetaf3fb242018-09-28 14:51:49 -0700867 tun_napi_init(tun, tfile, napi, napi_frags);
Petar Penkov94317092017-09-22 13:49:14 -0700868 }
Jason Wang4008e972012-12-13 23:53:30 +0000869
Jason Wange4a2a302018-09-12 11:16:59 +0800870 if (rtnl_dereference(tun->xdp_prog))
871 sock_set_flag(&tfile->sk, SOCK_XDP);
872
Jason Wangc8d68e62012-10-31 19:46:00 +0000873 /* device is allowed to go away first, so no need to hold extra
874 * refcnt.
875 */
Eric W. Biedermana7385ba2009-01-20 10:57:48 +0000876
Stanislav Fomichev0b7959b2019-01-07 13:38:38 -0800877 /* Publish tfile->tun and tun->tfiles only after we've fully
878 * initialized tfile; otherwise we risk using half-initialized
879 * object.
880 */
881 rcu_assign_pointer(tfile->tun, tun);
882 rcu_assign_pointer(tun->tfiles[tun->numqueues], tfile);
883 tun->numqueues++;
George Amanakis3a03cb82019-01-29 22:50:13 -0500884 tun_set_real_num_queues(tun);
Eric W. Biederman38231b72009-01-20 11:02:28 +0000885out:
Eric W. Biederman38231b72009-01-20 11:02:28 +0000886 return err;
Eric W. Biedermana7385ba2009-01-20 10:57:48 +0000887}
888
yuan linyu9484dc72017-09-23 22:36:52 +0800889static struct tun_struct *tun_get(struct tun_file *tfile)
Eric W. Biederman631ab462009-01-20 11:00:40 +0000890{
Jason Wang6e914fc2012-10-31 19:45:58 +0000891 struct tun_struct *tun;
Eric W. Biedermanc70f1822009-01-20 11:07:17 +0000892
Jason Wang6e914fc2012-10-31 19:45:58 +0000893 rcu_read_lock();
894 tun = rcu_dereference(tfile->tun);
895 if (tun)
896 dev_hold(tun->dev);
897 rcu_read_unlock();
Eric W. Biedermanc70f1822009-01-20 11:07:17 +0000898
899 return tun;
Eric W. Biederman631ab462009-01-20 11:00:40 +0000900}
901
Eric W. Biederman631ab462009-01-20 11:00:40 +0000902static void tun_put(struct tun_struct *tun)
903{
Jason Wang6e914fc2012-10-31 19:45:58 +0000904 dev_put(tun->dev);
Eric W. Biederman631ab462009-01-20 11:00:40 +0000905}
906
Joe Perches6b8a66e2011-03-02 07:18:10 +0000907/* TAP filtering */
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -0700908static void addr_hash_set(u32 *mask, const u8 *addr)
909{
910 int n = ether_crc(ETH_ALEN, addr) >> 26;
911 mask[n >> 5] |= (1 << (n & 31));
912}
913
914static unsigned int addr_hash_test(const u32 *mask, const u8 *addr)
915{
916 int n = ether_crc(ETH_ALEN, addr) >> 26;
917 return mask[n >> 5] & (1 << (n & 31));
918}
919
920static int update_filter(struct tap_filter *filter, void __user *arg)
921{
922 struct { u8 u[ETH_ALEN]; } *addr;
923 struct tun_filter uf;
924 int err, alen, n, nexact;
925
926 if (copy_from_user(&uf, arg, sizeof(uf)))
927 return -EFAULT;
928
929 if (!uf.count) {
930 /* Disabled */
931 filter->count = 0;
932 return 0;
933 }
934
935 alen = ETH_ALEN * uf.count;
Markus Elfring28e81902016-08-20 08:54:15 +0200936 addr = memdup_user(arg + sizeof(uf), alen);
937 if (IS_ERR(addr))
938 return PTR_ERR(addr);
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -0700939
940 /* The filter is updated without holding any locks. Which is
941 * perfectly safe. We disable it first and in the worst
942 * case we'll accept a few undesired packets. */
943 filter->count = 0;
944 wmb();
945
946 /* Use first set of addresses as an exact filter */
947 for (n = 0; n < uf.count && n < FLT_EXACT_COUNT; n++)
948 memcpy(filter->addr[n], addr[n].u, ETH_ALEN);
949
950 nexact = n;
951
Alex Williamsoncfbf84f2009-02-08 17:49:17 -0800952 /* Remaining multicast addresses are hashed,
953 * unicast will leave the filter disabled. */
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -0700954 memset(filter->mask, 0, sizeof(filter->mask));
Alex Williamsoncfbf84f2009-02-08 17:49:17 -0800955 for (; n < uf.count; n++) {
956 if (!is_multicast_ether_addr(addr[n].u)) {
957 err = 0; /* no filter */
Markus Elfring3b8d2a62016-08-20 09:00:34 +0200958 goto free_addr;
Alex Williamsoncfbf84f2009-02-08 17:49:17 -0800959 }
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -0700960 addr_hash_set(filter->mask, addr[n].u);
Alex Williamsoncfbf84f2009-02-08 17:49:17 -0800961 }
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -0700962
963 /* For ALLMULTI just set the mask to all ones.
964 * This overrides the mask populated above. */
965 if ((uf.flags & TUN_FLT_ALLMULTI))
966 memset(filter->mask, ~0, sizeof(filter->mask));
967
968 /* Now enable the filter */
969 wmb();
970 filter->count = nexact;
971
972 /* Return the number of exact filters */
973 err = nexact;
Markus Elfring3b8d2a62016-08-20 09:00:34 +0200974free_addr:
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -0700975 kfree(addr);
976 return err;
977}
978
979/* Returns: 0 - drop, !=0 - accept */
980static int run_filter(struct tap_filter *filter, const struct sk_buff *skb)
981{
982 /* Cannot use eth_hdr(skb) here because skb_mac_hdr() is incorrect
983 * at this point. */
984 struct ethhdr *eh = (struct ethhdr *) skb->data;
985 int i;
986
987 /* Exact match */
988 for (i = 0; i < filter->count; i++)
Joe Perches2e42e472012-05-09 17:17:46 +0000989 if (ether_addr_equal(eh->h_dest, filter->addr[i]))
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -0700990 return 1;
991
992 /* Inexact match (multicast only) */
993 if (is_multicast_ether_addr(eh->h_dest))
994 return addr_hash_test(filter->mask, eh->h_dest);
995
996 return 0;
997}
998
999/*
1000 * Checks whether the packet is accepted or not.
1001 * Returns: 0 - drop, !=0 - accept
1002 */
1003static int check_filter(struct tap_filter *filter, const struct sk_buff *skb)
1004{
1005 if (!filter->count)
1006 return 1;
1007
1008 return run_filter(filter, skb);
1009}
1010
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011/* Network device part of the driver */
1012
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013static const struct ethtool_ops tun_ethtool_ops;
1014
Eric W. Biedermanc70f1822009-01-20 11:07:17 +00001015/* Net device detach from fd. */
1016static void tun_net_uninit(struct net_device *dev)
1017{
Jason Wangc8d68e62012-10-31 19:46:00 +00001018 tun_detach_all(dev);
Eric W. Biedermanc70f1822009-01-20 11:07:17 +00001019}
1020
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021/* Net device open. */
1022static int tun_net_open(struct net_device *dev)
1023{
Hannes Frederic Sowab20e2d52017-03-13 00:00:26 +01001024 struct tun_struct *tun = netdev_priv(dev);
1025 int i;
1026
Jason Wangc8d68e62012-10-31 19:46:00 +00001027 netif_tx_start_all_queues(dev);
Hannes Frederic Sowab20e2d52017-03-13 00:00:26 +01001028
1029 for (i = 0; i < tun->numqueues; i++) {
1030 struct tun_file *tfile;
1031
1032 tfile = rtnl_dereference(tun->tfiles[i]);
1033 tfile->socket.sk->sk_write_space(tfile->socket.sk);
1034 }
1035
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036 return 0;
1037}
1038
1039/* Net device close. */
1040static int tun_net_close(struct net_device *dev)
1041{
Jason Wangc8d68e62012-10-31 19:46:00 +00001042 netif_tx_stop_all_queues(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043 return 0;
1044}
1045
1046/* Net device start xmit */
Jason Wang96f84062017-12-04 17:31:23 +08001047static void tun_automq_xmit(struct tun_struct *tun, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048{
Jason Wang3df97ba2016-04-25 23:13:42 -04001049#ifdef CONFIG_RPS
Eric Dumazetdc053602019-03-22 08:56:38 -07001050 if (tun->numqueues == 1 && static_branch_unlikely(&rps_needed)) {
Tom Herbert9bc88932013-12-22 18:54:32 +08001051 /* Select queue was not called for the skbuff, so we extract the
1052 * RPS hash and save it into the flow_table here.
1053 */
Wang Li4b035272018-10-09 10:32:04 +08001054 struct tun_flow_entry *e;
Tom Herbert9bc88932013-12-22 18:54:32 +08001055 __u32 rxhash;
1056
Jason Wangfeec0842017-06-06 14:09:49 +08001057 rxhash = __skb_get_hash_symmetric(skb);
Wang Li4b035272018-10-09 10:32:04 +08001058 e = tun_flow_find(&tun->flows[tun_hashfn(rxhash)], rxhash);
1059 if (e)
1060 tun_flow_save_rps_rxhash(e, rxhash);
Tom Herbert9bc88932013-12-22 18:54:32 +08001061 }
Jason Wang3df97ba2016-04-25 23:13:42 -04001062#endif
Jason Wang96f84062017-12-04 17:31:23 +08001063}
1064
Jason Wangaff3d702018-01-16 16:31:02 +08001065static unsigned int run_ebpf_filter(struct tun_struct *tun,
1066 struct sk_buff *skb,
1067 int len)
1068{
1069 struct tun_prog *prog = rcu_dereference(tun->filter_prog);
1070
1071 if (prog)
1072 len = bpf_prog_run_clear_cb(prog->prog, skb);
1073
1074 return len;
1075}
1076
Jason Wang96f84062017-12-04 17:31:23 +08001077/* Net device start xmit */
1078static netdev_tx_t tun_net_xmit(struct sk_buff *skb, struct net_device *dev)
1079{
1080 struct tun_struct *tun = netdev_priv(dev);
1081 int txq = skb->queue_mapping;
1082 struct tun_file *tfile;
Jason Wangaff3d702018-01-16 16:31:02 +08001083 int len = skb->len;
Jason Wang96f84062017-12-04 17:31:23 +08001084
1085 rcu_read_lock();
1086 tfile = rcu_dereference(tun->tfiles[txq]);
Jason Wang96f84062017-12-04 17:31:23 +08001087
1088 /* Drop packet if interface is not attached */
Willem de Bruijncc166422017-12-05 22:11:17 -05001089 if (txq >= tun->numqueues)
Jason Wang96f84062017-12-04 17:31:23 +08001090 goto drop;
1091
1092 if (!rcu_dereference(tun->steering_prog))
1093 tun_automq_xmit(tun, skb);
Tom Herbert9bc88932013-12-22 18:54:32 +08001094
Jason Wang6e914fc2012-10-31 19:45:58 +00001095 tun_debug(KERN_INFO, tun, "tun_net_xmit %d\n", skb->len);
1096
Jason Wangc8d68e62012-10-31 19:46:00 +00001097 BUG_ON(!tfile);
1098
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -07001099 /* Drop if the filter does not like it.
1100 * This is a noop if the filter is disabled.
1101 * Filter can be enabled only for the TAP devices. */
1102 if (!check_filter(&tun->txflt, skb))
1103 goto drop;
1104
Jason Wang54f968d2012-10-31 19:45:57 +00001105 if (tfile->socket.sk->sk_filter &&
1106 sk_filter(tfile->socket.sk, skb))
Michael S. Tsirkin99405162010-02-14 01:01:10 +00001107 goto drop;
1108
Jason Wangaff3d702018-01-16 16:31:02 +08001109 len = run_ebpf_filter(tun, skb, len);
Bjørn Mork81c89502018-04-17 22:46:38 +02001110 if (len == 0 || pskb_trim(skb, len))
Jason Wangaff3d702018-01-16 16:31:02 +08001111 goto drop;
1112
Willem de Bruijn1f8b9772017-08-03 16:29:41 -04001113 if (unlikely(skb_orphan_frags_rx(skb, GFP_ATOMIC)))
Jason Wang7bf66302013-09-05 17:54:00 +08001114 goto drop;
1115
Soheil Hassas Yeganeh7b996242016-08-23 18:22:33 -04001116 skb_tx_timestamp(skb);
Richard Cochraneda29772013-07-19 19:40:10 +02001117
Michael S. Tsirkin0110d6f2010-04-13 04:59:44 +00001118 /* Orphan the skb - required as we might hang on to it
Jason Wang7bf66302013-09-05 17:54:00 +08001119 * for indefinite time.
1120 */
Michael S. Tsirkin0110d6f2010-04-13 04:59:44 +00001121 skb_orphan(skb);
1122
Eric Dumazetf8af75f2013-03-06 11:02:37 +00001123 nf_reset(skb);
1124
Jason Wang5990a302018-01-04 11:14:27 +08001125 if (ptr_ring_produce(&tfile->tx_ring, skb))
Jason Wang1576d982016-06-30 14:45:36 +08001126 goto drop;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127
1128 /* Notify and wake up reader process */
Jason Wang54f968d2012-10-31 19:45:57 +00001129 if (tfile->flags & TUN_FASYNC)
1130 kill_fasync(&tfile->fasync, SIGIO, POLL_IN);
Xi Wang9e641bd2014-05-16 15:11:48 -07001131 tfile->socket.sk->sk_data_ready(tfile->socket.sk);
Jason Wang6e914fc2012-10-31 19:45:58 +00001132
1133 rcu_read_unlock();
Patrick McHardy6ed10652009-06-23 06:03:08 +00001134 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135
1136drop:
Paolo Abeni608b9972016-04-13 10:52:20 +02001137 this_cpu_inc(tun->pcpu_stats->tx_dropped);
Michael S. Tsirkin149d36f2012-11-01 09:16:32 +00001138 skb_tx_error(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139 kfree_skb(skb);
Jason Wang6e914fc2012-10-31 19:45:58 +00001140 rcu_read_unlock();
Jason Wangbaeabab2014-11-18 13:20:41 +08001141 return NET_XMIT_DROP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142}
1143
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -07001144static void tun_net_mclist(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145{
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -07001146 /*
1147 * This callback is supposed to deal with mc filter in
1148 * _rx_ path and has nothing to do with the _tx_ path.
1149 * In rx path we always accept everything userspace gives us.
1150 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151}
1152
Michał Mirosławc8f44af2011-11-15 15:29:55 +00001153static netdev_features_t tun_net_fix_features(struct net_device *dev,
1154 netdev_features_t features)
Michał Mirosław88255372011-04-19 06:13:10 +00001155{
1156 struct tun_struct *tun = netdev_priv(dev);
1157
1158 return (features & tun->set_features) | (features & ~TUN_USER_FEATURES);
1159}
Paolo Abenieaea34b2016-02-26 10:45:40 +01001160
1161static void tun_set_headroom(struct net_device *dev, int new_hr)
1162{
1163 struct tun_struct *tun = netdev_priv(dev);
1164
1165 if (new_hr < NET_SKB_PAD)
1166 new_hr = NET_SKB_PAD;
1167
1168 tun->align = new_hr;
1169}
1170
stephen hemmingerbc1f4472017-01-06 19:12:52 -08001171static void
Paolo Abeni608b9972016-04-13 10:52:20 +02001172tun_net_get_stats64(struct net_device *dev, struct rtnl_link_stats64 *stats)
1173{
1174 u32 rx_dropped = 0, tx_dropped = 0, rx_frame_errors = 0;
1175 struct tun_struct *tun = netdev_priv(dev);
1176 struct tun_pcpu_stats *p;
1177 int i;
1178
1179 for_each_possible_cpu(i) {
1180 u64 rxpackets, rxbytes, txpackets, txbytes;
1181 unsigned int start;
1182
1183 p = per_cpu_ptr(tun->pcpu_stats, i);
1184 do {
1185 start = u64_stats_fetch_begin(&p->syncp);
1186 rxpackets = p->rx_packets;
1187 rxbytes = p->rx_bytes;
1188 txpackets = p->tx_packets;
1189 txbytes = p->tx_bytes;
1190 } while (u64_stats_fetch_retry(&p->syncp, start));
1191
1192 stats->rx_packets += rxpackets;
1193 stats->rx_bytes += rxbytes;
1194 stats->tx_packets += txpackets;
1195 stats->tx_bytes += txbytes;
1196
1197 /* u32 counters */
1198 rx_dropped += p->rx_dropped;
1199 rx_frame_errors += p->rx_frame_errors;
1200 tx_dropped += p->tx_dropped;
1201 }
1202 stats->rx_dropped = rx_dropped;
1203 stats->rx_frame_errors = rx_frame_errors;
1204 stats->tx_dropped = tx_dropped;
Paolo Abeni608b9972016-04-13 10:52:20 +02001205}
1206
Jason Wang761876c2017-08-11 19:41:18 +08001207static int tun_xdp_set(struct net_device *dev, struct bpf_prog *prog,
1208 struct netlink_ext_ack *extack)
1209{
1210 struct tun_struct *tun = netdev_priv(dev);
Jason Wange4a2a302018-09-12 11:16:59 +08001211 struct tun_file *tfile;
Jason Wang761876c2017-08-11 19:41:18 +08001212 struct bpf_prog *old_prog;
Jason Wange4a2a302018-09-12 11:16:59 +08001213 int i;
Jason Wang761876c2017-08-11 19:41:18 +08001214
1215 old_prog = rtnl_dereference(tun->xdp_prog);
1216 rcu_assign_pointer(tun->xdp_prog, prog);
1217 if (old_prog)
1218 bpf_prog_put(old_prog);
1219
Jason Wange4a2a302018-09-12 11:16:59 +08001220 for (i = 0; i < tun->numqueues; i++) {
1221 tfile = rtnl_dereference(tun->tfiles[i]);
1222 if (prog)
1223 sock_set_flag(&tfile->sk, SOCK_XDP);
1224 else
1225 sock_reset_flag(&tfile->sk, SOCK_XDP);
1226 }
1227 list_for_each_entry(tfile, &tun->disabled, next) {
1228 if (prog)
1229 sock_set_flag(&tfile->sk, SOCK_XDP);
1230 else
1231 sock_reset_flag(&tfile->sk, SOCK_XDP);
1232 }
1233
Jason Wang761876c2017-08-11 19:41:18 +08001234 return 0;
1235}
1236
1237static u32 tun_xdp_query(struct net_device *dev)
1238{
1239 struct tun_struct *tun = netdev_priv(dev);
1240 const struct bpf_prog *xdp_prog;
1241
1242 xdp_prog = rtnl_dereference(tun->xdp_prog);
1243 if (xdp_prog)
1244 return xdp_prog->aux->id;
1245
1246 return 0;
1247}
1248
Jakub Kicinskif4e63522017-11-03 13:56:16 -07001249static int tun_xdp(struct net_device *dev, struct netdev_bpf *xdp)
Jason Wang761876c2017-08-11 19:41:18 +08001250{
1251 switch (xdp->command) {
1252 case XDP_SETUP_PROG:
1253 return tun_xdp_set(dev, xdp->prog, xdp->extack);
1254 case XDP_QUERY_PROG:
1255 xdp->prog_id = tun_xdp_query(dev);
Jason Wang761876c2017-08-11 19:41:18 +08001256 return 0;
1257 default:
1258 return -EINVAL;
1259 }
1260}
1261
Nicolas Dichtel26d31922018-11-28 19:12:56 +01001262static int tun_net_change_carrier(struct net_device *dev, bool new_carrier)
1263{
1264 if (new_carrier) {
1265 struct tun_struct *tun = netdev_priv(dev);
1266
1267 if (!tun->numqueues)
1268 return -EPERM;
1269
1270 netif_carrier_on(dev);
1271 } else {
1272 netif_carrier_off(dev);
1273 }
1274 return 0;
1275}
1276
Stephen Hemminger758e43b2008-11-19 22:10:37 -08001277static const struct net_device_ops tun_netdev_ops = {
Eric W. Biedermanc70f1822009-01-20 11:07:17 +00001278 .ndo_uninit = tun_net_uninit,
Stephen Hemminger758e43b2008-11-19 22:10:37 -08001279 .ndo_open = tun_net_open,
1280 .ndo_stop = tun_net_close,
Stephen Hemminger00829822008-11-20 20:14:53 -08001281 .ndo_start_xmit = tun_net_xmit,
Michał Mirosław88255372011-04-19 06:13:10 +00001282 .ndo_fix_features = tun_net_fix_features,
Jason Wangc8d68e62012-10-31 19:46:00 +00001283 .ndo_select_queue = tun_select_queue,
Paolo Abenieaea34b2016-02-26 10:45:40 +01001284 .ndo_set_rx_headroom = tun_set_headroom,
Paolo Abeni608b9972016-04-13 10:52:20 +02001285 .ndo_get_stats64 = tun_net_get_stats64,
Nicolas Dichtel26d31922018-11-28 19:12:56 +01001286 .ndo_change_carrier = tun_net_change_carrier,
Stephen Hemminger758e43b2008-11-19 22:10:37 -08001287};
1288
Jesper Dangaard Brouer0c9d9172018-05-31 11:00:03 +02001289static void __tun_xdp_flush_tfile(struct tun_file *tfile)
1290{
1291 /* Notify and wake up reader process */
1292 if (tfile->flags & TUN_FASYNC)
1293 kill_fasync(&tfile->fasync, SIGIO, POLL_IN);
1294 tfile->socket.sk->sk_data_ready(tfile->socket.sk);
1295}
1296
Jesper Dangaard Brouer42b33462018-05-31 10:59:47 +02001297static int tun_xdp_xmit(struct net_device *dev, int n,
1298 struct xdp_frame **frames, u32 flags)
Jason Wangfc72d1d2018-01-04 11:14:28 +08001299{
1300 struct tun_struct *tun = netdev_priv(dev);
Jason Wangfc72d1d2018-01-04 11:14:28 +08001301 struct tun_file *tfile;
1302 u32 numqueues;
Jesper Dangaard Brouer735fc402018-05-24 16:46:12 +02001303 int drops = 0;
1304 int cnt = n;
1305 int i;
Jason Wangfc72d1d2018-01-04 11:14:28 +08001306
Jesper Dangaard Brouer0c9d9172018-05-31 11:00:03 +02001307 if (unlikely(flags & ~XDP_XMIT_FLAGS_MASK))
Jesper Dangaard Brouer42b33462018-05-31 10:59:47 +02001308 return -EINVAL;
1309
Jason Wangfc72d1d2018-01-04 11:14:28 +08001310 rcu_read_lock();
1311
1312 numqueues = READ_ONCE(tun->numqueues);
1313 if (!numqueues) {
Jesper Dangaard Brouer735fc402018-05-24 16:46:12 +02001314 rcu_read_unlock();
1315 return -ENXIO; /* Caller will free/return all frames */
Jason Wangfc72d1d2018-01-04 11:14:28 +08001316 }
1317
1318 tfile = rcu_dereference(tun->tfiles[smp_processor_id() %
1319 numqueues]);
Jason Wangfc72d1d2018-01-04 11:14:28 +08001320
Jesper Dangaard Brouer735fc402018-05-24 16:46:12 +02001321 spin_lock(&tfile->tx_ring.producer_lock);
1322 for (i = 0; i < n; i++) {
1323 struct xdp_frame *xdp = frames[i];
1324 /* Encode the XDP flag into lowest bit for consumer to differ
1325 * XDP buffer from sk_buff.
1326 */
1327 void *frame = tun_xdp_to_ptr(xdp);
1328
1329 if (__ptr_ring_produce(&tfile->tx_ring, frame)) {
1330 this_cpu_inc(tun->pcpu_stats->tx_dropped);
1331 xdp_return_frame_rx_napi(xdp);
1332 drops++;
1333 }
1334 }
1335 spin_unlock(&tfile->tx_ring.producer_lock);
1336
Jesper Dangaard Brouer0c9d9172018-05-31 11:00:03 +02001337 if (flags & XDP_XMIT_FLUSH)
1338 __tun_xdp_flush_tfile(tfile);
1339
Jason Wangfc72d1d2018-01-04 11:14:28 +08001340 rcu_read_unlock();
Jesper Dangaard Brouer735fc402018-05-24 16:46:12 +02001341 return cnt - drops;
Jason Wangfc72d1d2018-01-04 11:14:28 +08001342}
1343
Jesper Dangaard Brouer44fa2db2018-04-17 16:46:37 +02001344static int tun_xdp_tx(struct net_device *dev, struct xdp_buff *xdp)
1345{
1346 struct xdp_frame *frame = convert_to_xdp_frame(xdp);
1347
1348 if (unlikely(!frame))
1349 return -EOVERFLOW;
1350
Jesper Dangaard Brouer42421a52018-06-05 13:55:45 +02001351 return tun_xdp_xmit(dev, 1, &frame, XDP_XMIT_FLUSH);
Jason Wangfc72d1d2018-01-04 11:14:28 +08001352}
1353
Stephen Hemminger758e43b2008-11-19 22:10:37 -08001354static const struct net_device_ops tap_netdev_ops = {
Eric W. Biedermanc70f1822009-01-20 11:07:17 +00001355 .ndo_uninit = tun_net_uninit,
Stephen Hemminger758e43b2008-11-19 22:10:37 -08001356 .ndo_open = tun_net_open,
1357 .ndo_stop = tun_net_close,
Stephen Hemminger00829822008-11-20 20:14:53 -08001358 .ndo_start_xmit = tun_net_xmit,
Michał Mirosław88255372011-04-19 06:13:10 +00001359 .ndo_fix_features = tun_net_fix_features,
Jiri Pirkoafc4b132011-08-16 06:29:01 +00001360 .ndo_set_rx_mode = tun_net_mclist,
Stephen Hemminger758e43b2008-11-19 22:10:37 -08001361 .ndo_set_mac_address = eth_mac_addr,
1362 .ndo_validate_addr = eth_validate_addr,
Jason Wangc8d68e62012-10-31 19:46:00 +00001363 .ndo_select_queue = tun_select_queue,
Toshiaki Makita5e527962015-07-31 15:03:27 +09001364 .ndo_features_check = passthru_features_check,
Paolo Abenieaea34b2016-02-26 10:45:40 +01001365 .ndo_set_rx_headroom = tun_set_headroom,
Paolo Abeni608b9972016-04-13 10:52:20 +02001366 .ndo_get_stats64 = tun_net_get_stats64,
Jakub Kicinskif4e63522017-11-03 13:56:16 -07001367 .ndo_bpf = tun_xdp,
Jason Wangfc72d1d2018-01-04 11:14:28 +08001368 .ndo_xdp_xmit = tun_xdp_xmit,
Nicolas Dichtel26d31922018-11-28 19:12:56 +01001369 .ndo_change_carrier = tun_net_change_carrier,
Stephen Hemminger758e43b2008-11-19 22:10:37 -08001370};
1371
Pavel Emelyanov944a1372013-06-11 17:01:08 +04001372static void tun_flow_init(struct tun_struct *tun)
Jason Wang96442e422012-10-31 19:46:02 +00001373{
1374 int i;
1375
Jason Wang96442e422012-10-31 19:46:02 +00001376 for (i = 0; i < TUN_NUM_FLOW_ENTRIES; i++)
1377 INIT_HLIST_HEAD(&tun->flows[i]);
1378
1379 tun->ageing_time = TUN_FLOW_EXPIRE;
Kees Cooke99e88a2017-10-16 14:43:17 -07001380 timer_setup(&tun->flow_gc_timer, tun_flow_cleanup, 0);
1381 mod_timer(&tun->flow_gc_timer,
1382 round_jiffies_up(jiffies + tun->ageing_time));
Jason Wang96442e422012-10-31 19:46:02 +00001383}
1384
1385static void tun_flow_uninit(struct tun_struct *tun)
1386{
1387 del_timer_sync(&tun->flow_gc_timer);
1388 tun_flow_flush(tun);
Jason Wang96442e422012-10-31 19:46:02 +00001389}
1390
Jarod Wilson91572082016-10-20 13:55:20 -04001391#define MIN_MTU 68
1392#define MAX_MTU 65535
1393
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394/* Initialize net device. */
1395static void tun_net_init(struct net_device *dev)
1396{
1397 struct tun_struct *tun = netdev_priv(dev);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001398
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399 switch (tun->flags & TUN_TYPE_MASK) {
Michael S. Tsirkin40630b82014-11-19 15:17:31 +02001400 case IFF_TUN:
Stephen Hemminger758e43b2008-11-19 22:10:37 -08001401 dev->netdev_ops = &tun_netdev_ops;
1402
Linus Torvalds1da177e2005-04-16 15:20:36 -07001403 /* Point-to-Point TUN Device */
1404 dev->hard_header_len = 0;
1405 dev->addr_len = 0;
1406 dev->mtu = 1500;
1407
1408 /* Zero header length */
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001409 dev->type = ARPHRD_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001410 dev->flags = IFF_POINTOPOINT | IFF_NOARP | IFF_MULTICAST;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001411 break;
1412
Michael S. Tsirkin40630b82014-11-19 15:17:31 +02001413 case IFF_TAP:
Kusanagi Kouichi7a0a9602008-12-29 18:23:28 -08001414 dev->netdev_ops = &tap_netdev_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001415 /* Ethernet TAP Device */
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -07001416 ether_setup(dev);
Neil Horman550fd082011-07-26 06:05:38 +00001417 dev->priv_flags &= ~IFF_TX_SKB_SHARING;
stephen hemmingera6768472012-12-10 15:16:00 +00001418 dev->priv_flags |= IFF_LIVE_ADDR_CHANGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001419
Danny Kukawkaf2cedb62012-02-15 06:45:39 +00001420 eth_hw_addr_random(dev);
Brian Braunstein36226a82007-04-26 01:00:55 -07001421
Linus Torvalds1da177e2005-04-16 15:20:36 -07001422 break;
1423 }
Jarod Wilson91572082016-10-20 13:55:20 -04001424
1425 dev->min_mtu = MIN_MTU;
1426 dev->max_mtu = MAX_MTU - dev->hard_header_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001427}
1428
Jason Wang2f3ab622018-05-22 14:21:04 +08001429static bool tun_sock_writeable(struct tun_struct *tun, struct tun_file *tfile)
1430{
1431 struct sock *sk = tfile->socket.sk;
1432
1433 return (tun->dev->flags & IFF_UP) && sock_writeable(sk);
1434}
1435
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436/* Character device part */
1437
1438/* Poll */
Al Viroafc9a422017-07-03 06:39:46 -04001439static __poll_t tun_chr_poll(struct file *file, poll_table *wait)
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001440{
Eric W. Biedermanb2430de2009-01-20 11:03:21 +00001441 struct tun_file *tfile = file->private_data;
yuan linyu9484dc72017-09-23 22:36:52 +08001442 struct tun_struct *tun = tun_get(tfile);
Mariusz Kozlowski3c8a9c62009-07-05 19:48:35 +00001443 struct sock *sk;
Al Viroafc9a422017-07-03 06:39:46 -04001444 __poll_t mask = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445
1446 if (!tun)
Linus Torvaldsa9a08842018-02-11 14:34:03 -08001447 return EPOLLERR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448
Jason Wang54f968d2012-10-31 19:45:57 +00001449 sk = tfile->socket.sk;
Mariusz Kozlowski3c8a9c62009-07-05 19:48:35 +00001450
Joe Perches6b8a66e2011-03-02 07:18:10 +00001451 tun_debug(KERN_INFO, tun, "tun_chr_poll\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001452
Xi Wang9e641bd2014-05-16 15:11:48 -07001453 poll_wait(file, sk_sleep(sk), wait);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001454
Jason Wang5990a302018-01-04 11:14:27 +08001455 if (!ptr_ring_empty(&tfile->tx_ring))
Linus Torvaldsa9a08842018-02-11 14:34:03 -08001456 mask |= EPOLLIN | EPOLLRDNORM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001457
Jason Wang2f3ab622018-05-22 14:21:04 +08001458 /* Make sure SOCKWQ_ASYNC_NOSPACE is set if not writable to
1459 * guarantee EPOLLOUT to be raised by either here or
1460 * tun_sock_write_space(). Then process could get notification
1461 * after it writes to a down device and meets -EIO.
1462 */
1463 if (tun_sock_writeable(tun, tfile) ||
1464 (!test_and_set_bit(SOCKWQ_ASYNC_NOSPACE, &sk->sk_socket->flags) &&
1465 tun_sock_writeable(tun, tfile)))
Linus Torvaldsa9a08842018-02-11 14:34:03 -08001466 mask |= EPOLLOUT | EPOLLWRNORM;
Herbert Xu33dccbb2009-02-05 21:25:32 -08001467
Eric W. Biedermanc70f1822009-01-20 11:07:17 +00001468 if (tun->dev->reg_state != NETREG_REGISTERED)
Linus Torvaldsa9a08842018-02-11 14:34:03 -08001469 mask = EPOLLERR;
Eric W. Biedermanc70f1822009-01-20 11:07:17 +00001470
Eric W. Biederman631ab462009-01-20 11:00:40 +00001471 tun_put(tun);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472 return mask;
1473}
1474
Petar Penkov90e33d42017-09-22 13:49:15 -07001475static struct sk_buff *tun_napi_alloc_frags(struct tun_file *tfile,
1476 size_t len,
1477 const struct iov_iter *it)
1478{
1479 struct sk_buff *skb;
1480 size_t linear;
1481 int err;
1482 int i;
1483
1484 if (it->nr_segs > MAX_SKB_FRAGS + 1)
1485 return ERR_PTR(-ENOMEM);
1486
1487 local_bh_disable();
1488 skb = napi_get_frags(&tfile->napi);
1489 local_bh_enable();
1490 if (!skb)
1491 return ERR_PTR(-ENOMEM);
1492
1493 linear = iov_iter_single_seg_count(it);
1494 err = __skb_grow(skb, linear);
1495 if (err)
1496 goto free;
1497
1498 skb->len = len;
1499 skb->data_len = len - linear;
1500 skb->truesize += skb->data_len;
1501
1502 for (i = 1; i < it->nr_segs; i++) {
1503 size_t fragsz = it->iov[i].iov_len;
Eric Dumazetaa6daac2018-11-18 07:37:33 -08001504 struct page *page;
1505 void *frag;
Petar Penkov90e33d42017-09-22 13:49:15 -07001506
1507 if (fragsz == 0 || fragsz > PAGE_SIZE) {
1508 err = -EINVAL;
1509 goto free;
1510 }
Eric Dumazetaa6daac2018-11-18 07:37:33 -08001511 frag = netdev_alloc_frag(fragsz);
1512 if (!frag) {
Petar Penkov90e33d42017-09-22 13:49:15 -07001513 err = -ENOMEM;
1514 goto free;
1515 }
Eric Dumazetaa6daac2018-11-18 07:37:33 -08001516 page = virt_to_head_page(frag);
1517 skb_fill_page_desc(skb, i - 1, page,
1518 frag - page_address(page), fragsz);
Petar Penkov90e33d42017-09-22 13:49:15 -07001519 }
1520
1521 return skb;
1522free:
1523 /* frees skb and all frags allocated with napi_alloc_frag() */
1524 napi_free_frags(&tfile->napi);
1525 return ERR_PTR(err);
1526}
1527
Rusty Russellf42157c2008-08-15 15:15:10 -07001528/* prepad is the amount to reserve at front. len is length after that.
1529 * linear is a hint as to how much to copy (usually headers). */
Jason Wang54f968d2012-10-31 19:45:57 +00001530static struct sk_buff *tun_alloc_skb(struct tun_file *tfile,
stephen hemminger6f7c1562011-06-08 14:33:08 +00001531 size_t prepad, size_t len,
1532 size_t linear, int noblock)
Rusty Russellf42157c2008-08-15 15:15:10 -07001533{
Jason Wang54f968d2012-10-31 19:45:57 +00001534 struct sock *sk = tfile->socket.sk;
Rusty Russellf42157c2008-08-15 15:15:10 -07001535 struct sk_buff *skb;
Herbert Xu33dccbb2009-02-05 21:25:32 -08001536 int err;
Rusty Russellf42157c2008-08-15 15:15:10 -07001537
1538 /* Under a page? Don't bother with paged skb. */
Herbert Xu0eca93b2009-04-14 02:09:43 -07001539 if (prepad + len < PAGE_SIZE || !linear)
Herbert Xu33dccbb2009-02-05 21:25:32 -08001540 linear = len;
Rusty Russellf42157c2008-08-15 15:15:10 -07001541
Herbert Xu33dccbb2009-02-05 21:25:32 -08001542 skb = sock_alloc_send_pskb(sk, prepad + linear, len - linear, noblock,
Eric Dumazet28d64272013-08-08 14:38:47 -07001543 &err, 0);
Rusty Russellf42157c2008-08-15 15:15:10 -07001544 if (!skb)
Herbert Xu33dccbb2009-02-05 21:25:32 -08001545 return ERR_PTR(err);
Rusty Russellf42157c2008-08-15 15:15:10 -07001546
1547 skb_reserve(skb, prepad);
1548 skb_put(skb, linear);
Herbert Xu33dccbb2009-02-05 21:25:32 -08001549 skb->data_len = len - linear;
1550 skb->len += len - linear;
Rusty Russellf42157c2008-08-15 15:15:10 -07001551
1552 return skb;
1553}
1554
Jason Wang5503fce2017-01-18 15:02:03 +08001555static void tun_rx_batched(struct tun_struct *tun, struct tun_file *tfile,
1556 struct sk_buff *skb, int more)
1557{
1558 struct sk_buff_head *queue = &tfile->sk.sk_write_queue;
1559 struct sk_buff_head process_queue;
1560 u32 rx_batched = tun->rx_batched;
1561 bool rcv = false;
1562
1563 if (!rx_batched || (!more && skb_queue_empty(queue))) {
1564 local_bh_disable();
Matthew Cover8ebebcb2018-11-18 00:46:00 -07001565 skb_record_rx_queue(skb, tfile->queue_index);
Jason Wang5503fce2017-01-18 15:02:03 +08001566 netif_receive_skb(skb);
1567 local_bh_enable();
1568 return;
1569 }
1570
1571 spin_lock(&queue->lock);
1572 if (!more || skb_queue_len(queue) == rx_batched) {
1573 __skb_queue_head_init(&process_queue);
1574 skb_queue_splice_tail_init(queue, &process_queue);
1575 rcv = true;
1576 } else {
1577 __skb_queue_tail(queue, skb);
1578 }
1579 spin_unlock(&queue->lock);
1580
1581 if (rcv) {
1582 struct sk_buff *nskb;
1583
1584 local_bh_disable();
Matthew Cover8ebebcb2018-11-18 00:46:00 -07001585 while ((nskb = __skb_dequeue(&process_queue))) {
1586 skb_record_rx_queue(nskb, tfile->queue_index);
Jason Wang5503fce2017-01-18 15:02:03 +08001587 netif_receive_skb(nskb);
Matthew Cover8ebebcb2018-11-18 00:46:00 -07001588 }
1589 skb_record_rx_queue(skb, tfile->queue_index);
Jason Wang5503fce2017-01-18 15:02:03 +08001590 netif_receive_skb(skb);
1591 local_bh_enable();
1592 }
1593}
1594
Jason Wang66ccbc92017-08-11 19:41:16 +08001595static bool tun_can_build_skb(struct tun_struct *tun, struct tun_file *tfile,
1596 int len, int noblock, bool zerocopy)
1597{
1598 if ((tun->flags & TUN_TYPE_MASK) != IFF_TAP)
1599 return false;
1600
1601 if (tfile->socket.sk->sk_sndbuf != INT_MAX)
1602 return false;
1603
1604 if (!noblock)
1605 return false;
1606
1607 if (zerocopy)
1608 return false;
1609
1610 if (SKB_DATA_ALIGN(len + TUN_RX_PAD) +
1611 SKB_DATA_ALIGN(sizeof(struct skb_shared_info)) > PAGE_SIZE)
1612 return false;
1613
1614 return true;
1615}
1616
Jason Wangac1f1f62018-09-12 11:17:03 +08001617static struct sk_buff *__tun_build_skb(struct page_frag *alloc_frag, char *buf,
Jason Wang8ae1aff2018-09-12 11:17:04 +08001618 int buflen, int len, int pad)
Jason Wangac1f1f62018-09-12 11:17:03 +08001619{
1620 struct sk_buff *skb = build_skb(buf, buflen);
1621
1622 if (!skb)
1623 return ERR_PTR(-ENOMEM);
1624
Jason Wang8ae1aff2018-09-12 11:17:04 +08001625 skb_reserve(skb, pad);
Jason Wangac1f1f62018-09-12 11:17:03 +08001626 skb_put(skb, len);
1627
1628 get_page(alloc_frag->page);
1629 alloc_frag->offset += buflen;
1630
1631 return skb;
1632}
1633
Jason Wang8ae1aff2018-09-12 11:17:04 +08001634static int tun_xdp_act(struct tun_struct *tun, struct bpf_prog *xdp_prog,
1635 struct xdp_buff *xdp, u32 act)
1636{
1637 int err;
1638
1639 switch (act) {
1640 case XDP_REDIRECT:
1641 err = xdp_do_redirect(tun->dev, xdp, xdp_prog);
Jason Wang8ae1aff2018-09-12 11:17:04 +08001642 if (err)
1643 return err;
1644 break;
1645 case XDP_TX:
1646 err = tun_xdp_tx(tun->dev, xdp);
1647 if (err < 0)
1648 return err;
1649 break;
1650 case XDP_PASS:
1651 break;
1652 default:
1653 bpf_warn_invalid_xdp_action(act);
1654 /* fall through */
1655 case XDP_ABORTED:
1656 trace_xdp_exception(tun->dev, xdp_prog, act);
1657 /* fall through */
1658 case XDP_DROP:
1659 this_cpu_inc(tun->pcpu_stats->rx_dropped);
1660 break;
1661 }
1662
1663 return act;
1664}
1665
Jason Wang761876c2017-08-11 19:41:18 +08001666static struct sk_buff *tun_build_skb(struct tun_struct *tun,
1667 struct tun_file *tfile,
Jason Wang66ccbc92017-08-11 19:41:16 +08001668 struct iov_iter *from,
Jason Wang761876c2017-08-11 19:41:18 +08001669 struct virtio_net_hdr *hdr,
Jason Wang1cfe6e92017-09-04 11:36:09 +08001670 int len, int *skb_xdp)
Jason Wang66ccbc92017-08-11 19:41:16 +08001671{
Eric Dumazet0bbd7da2017-08-16 22:14:33 +08001672 struct page_frag *alloc_frag = &current->task_frag;
Jason Wang761876c2017-08-11 19:41:18 +08001673 struct bpf_prog *xdp_prog;
Jason Wang7df13212017-09-04 11:36:08 +08001674 int buflen = SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
Jason Wang66ccbc92017-08-11 19:41:16 +08001675 char *buf;
1676 size_t copied;
Jason Wang8ae1aff2018-09-12 11:17:04 +08001677 int pad = TUN_RX_PAD;
1678 int err = 0;
Jason Wang7df13212017-09-04 11:36:08 +08001679
1680 rcu_read_lock();
1681 xdp_prog = rcu_dereference(tun->xdp_prog);
1682 if (xdp_prog)
Jason Wang4f23aff2018-09-12 11:17:00 +08001683 pad += XDP_PACKET_HEADROOM;
Jason Wang7df13212017-09-04 11:36:08 +08001684 buflen += SKB_DATA_ALIGN(len + pad);
1685 rcu_read_unlock();
Jason Wang66ccbc92017-08-11 19:41:16 +08001686
Jason Wang63b9ab62017-10-27 11:05:44 +08001687 alloc_frag->offset = ALIGN((u64)alloc_frag->offset, SMP_CACHE_BYTES);
Jason Wang66ccbc92017-08-11 19:41:16 +08001688 if (unlikely(!skb_page_frag_refill(buflen, alloc_frag, GFP_KERNEL)))
1689 return ERR_PTR(-ENOMEM);
1690
1691 buf = (char *)page_address(alloc_frag->page) + alloc_frag->offset;
1692 copied = copy_page_from_iter(alloc_frag->page,
Jason Wang7df13212017-09-04 11:36:08 +08001693 alloc_frag->offset + pad,
Jason Wang66ccbc92017-08-11 19:41:16 +08001694 len, from);
1695 if (copied != len)
1696 return ERR_PTR(-EFAULT);
1697
Jason Wang7df13212017-09-04 11:36:08 +08001698 /* There's a small window that XDP may be set after the check
1699 * of xdp_prog above, this should be rare and for simplicity
1700 * we do XDP on skb in case the headroom is not enough.
1701 */
Jason Wangac1f1f62018-09-12 11:17:03 +08001702 if (hdr->gso_type || !xdp_prog) {
Jason Wang1cfe6e92017-09-04 11:36:09 +08001703 *skb_xdp = 1;
Jason Wang8ae1aff2018-09-12 11:17:04 +08001704 return __tun_build_skb(alloc_frag, buf, buflen, len, pad);
Jason Wangac1f1f62018-09-12 11:17:03 +08001705 }
1706
1707 *skb_xdp = 0;
Jason Wang66ccbc92017-08-11 19:41:16 +08001708
Toshiaki Makita6547e382018-05-28 19:37:49 +09001709 local_bh_disable();
Jason Wang761876c2017-08-11 19:41:18 +08001710 rcu_read_lock();
1711 xdp_prog = rcu_dereference(tun->xdp_prog);
Jason Wang8ae1aff2018-09-12 11:17:04 +08001712 if (xdp_prog) {
Jason Wang761876c2017-08-11 19:41:18 +08001713 struct xdp_buff xdp;
Jason Wang761876c2017-08-11 19:41:18 +08001714 u32 act;
1715
1716 xdp.data_hard_start = buf;
Jason Wang7df13212017-09-04 11:36:08 +08001717 xdp.data = buf + pad;
Daniel Borkmannde8f3a82017-09-25 02:25:51 +02001718 xdp_set_data_meta_invalid(&xdp);
Jason Wang761876c2017-08-11 19:41:18 +08001719 xdp.data_end = xdp.data + len;
Jesper Dangaard Brouer8bf5c4e2018-01-03 11:25:59 +01001720 xdp.rxq = &tfile->xdp_rxq;
Jason Wang761876c2017-08-11 19:41:18 +08001721
Jason Wang8ae1aff2018-09-12 11:17:04 +08001722 act = bpf_prog_run_xdp(xdp_prog, &xdp);
1723 if (act == XDP_REDIRECT || act == XDP_TX) {
Jason Wang761876c2017-08-11 19:41:18 +08001724 get_page(alloc_frag->page);
1725 alloc_frag->offset += buflen;
Jason Wang761876c2017-08-11 19:41:18 +08001726 }
Jason Wang8ae1aff2018-09-12 11:17:04 +08001727 err = tun_xdp_act(tun, xdp_prog, &xdp, act);
1728 if (err < 0)
1729 goto err_xdp;
Jason Wang1a097912018-09-12 11:17:05 +08001730 if (err == XDP_REDIRECT)
1731 xdp_do_flush_map();
Jason Wang8ae1aff2018-09-12 11:17:04 +08001732 if (err != XDP_PASS)
1733 goto out;
1734
1735 pad = xdp.data - xdp.data_hard_start;
1736 len = xdp.data_end - xdp.data;
Jason Wang761876c2017-08-11 19:41:18 +08001737 }
Jason Wang291aeb22018-09-12 11:17:01 +08001738 rcu_read_unlock();
1739 local_bh_enable();
Jason Wang761876c2017-08-11 19:41:18 +08001740
Jason Wang8ae1aff2018-09-12 11:17:04 +08001741 return __tun_build_skb(alloc_frag, buf, buflen, len, pad);
Jason Wang761876c2017-08-11 19:41:18 +08001742
Jason Wang8ae1aff2018-09-12 11:17:04 +08001743err_xdp:
Jason Wang761876c2017-08-11 19:41:18 +08001744 put_page(alloc_frag->page);
Jason Wangf7053b62018-09-12 11:17:02 +08001745out:
Jason Wang761876c2017-08-11 19:41:18 +08001746 rcu_read_unlock();
Toshiaki Makita6547e382018-05-28 19:37:49 +09001747 local_bh_enable();
Jason Wang761876c2017-08-11 19:41:18 +08001748 return NULL;
Jason Wang66ccbc92017-08-11 19:41:16 +08001749}
1750
Linus Torvalds1da177e2005-04-16 15:20:36 -07001751/* Get packet from user space buffer */
Jason Wang54f968d2012-10-31 19:45:57 +00001752static ssize_t tun_get_user(struct tun_struct *tun, struct tun_file *tfile,
Al Virof5ff53b2014-06-19 15:36:49 -04001753 void *msg_control, struct iov_iter *from,
Jason Wang5503fce2017-01-18 15:02:03 +08001754 int noblock, bool more)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001755{
Harvey Harrison09640e632009-02-01 00:45:17 -08001756 struct tun_pi pi = { 0, cpu_to_be16(ETH_P_IP) };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001757 struct sk_buff *skb;
Al Virof5ff53b2014-06-19 15:36:49 -04001758 size_t total_len = iov_iter_count(from);
Paolo Abenieaea34b2016-02-26 10:45:40 +01001759 size_t len = total_len, align = tun->align, linear;
Rusty Russellf43798c2008-07-03 03:48:02 -07001760 struct virtio_net_hdr gso = { 0 };
Paolo Abeni608b9972016-04-13 10:52:20 +02001761 struct tun_pcpu_stats *stats;
Jason Wang96f8d9e2013-11-13 14:00:39 +08001762 int good_linear;
Michael S. Tsirkin06908992012-07-20 09:23:23 +00001763 int copylen;
1764 bool zerocopy = false;
1765 int err;
Jason Wang96f84062017-12-04 17:31:23 +08001766 u32 rxhash = 0;
Jason Wang1cfe6e92017-09-04 11:36:09 +08001767 int skb_xdp = 1;
Eric Dumazetaf3fb242018-09-28 14:51:49 -07001768 bool frags = tun_napi_frags_enabled(tfile);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001769
Michael S. Tsirkin40630b82014-11-19 15:17:31 +02001770 if (!(tun->flags & IFF_NO_PI)) {
Dan Carpenter15718ea2013-08-15 15:52:57 +03001771 if (len < sizeof(pi))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001772 return -EINVAL;
Dan Carpenter15718ea2013-08-15 15:52:57 +03001773 len -= sizeof(pi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001774
Al Virocbbd26b2016-11-01 22:09:04 -04001775 if (!copy_from_iter_full(&pi, sizeof(pi), from))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001776 return -EFAULT;
1777 }
1778
Michael S. Tsirkin40630b82014-11-19 15:17:31 +02001779 if (tun->flags & IFF_VNET_HDR) {
Willem de Bruijne1edab82017-02-03 18:20:48 -05001780 int vnet_hdr_sz = READ_ONCE(tun->vnet_hdr_sz);
1781
1782 if (len < vnet_hdr_sz)
Rusty Russellf43798c2008-07-03 03:48:02 -07001783 return -EINVAL;
Willem de Bruijne1edab82017-02-03 18:20:48 -05001784 len -= vnet_hdr_sz;
Rusty Russellf43798c2008-07-03 03:48:02 -07001785
Al Virocbbd26b2016-11-01 22:09:04 -04001786 if (!copy_from_iter_full(&gso, sizeof(gso), from))
Rusty Russellf43798c2008-07-03 03:48:02 -07001787 return -EFAULT;
1788
Herbert Xu49091222009-06-08 00:20:01 -07001789 if ((gso.flags & VIRTIO_NET_HDR_F_NEEDS_CSUM) &&
Michael S. Tsirkin56f0dcc2014-10-23 22:59:31 +03001790 tun16_to_cpu(tun, gso.csum_start) + tun16_to_cpu(tun, gso.csum_offset) + 2 > tun16_to_cpu(tun, gso.hdr_len))
1791 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 -07001792
Michael S. Tsirkin56f0dcc2014-10-23 22:59:31 +03001793 if (tun16_to_cpu(tun, gso.hdr_len) > len)
Rusty Russellf43798c2008-07-03 03:48:02 -07001794 return -EINVAL;
Willem de Bruijne1edab82017-02-03 18:20:48 -05001795 iov_iter_advance(from, vnet_hdr_sz - sizeof(gso));
Rusty Russellf43798c2008-07-03 03:48:02 -07001796 }
1797
Michael S. Tsirkin40630b82014-11-19 15:17:31 +02001798 if ((tun->flags & TUN_TYPE_MASK) == IFF_TAP) {
stephen hemmingera504b862011-06-08 14:33:07 +00001799 align += NET_IP_ALIGN;
Herbert Xu0eca93b2009-04-14 02:09:43 -07001800 if (unlikely(len < ETH_HLEN ||
Michael S. Tsirkin56f0dcc2014-10-23 22:59:31 +03001801 (gso.hdr_len && tun16_to_cpu(tun, gso.hdr_len) < ETH_HLEN)))
Rusty Russelle01bf1c2008-04-12 18:49:30 -07001802 return -EINVAL;
1803 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001804
Jason Wang96f8d9e2013-11-13 14:00:39 +08001805 good_linear = SKB_MAX_HEAD(align);
1806
Jason Wang88529172013-07-18 10:55:15 +08001807 if (msg_control) {
Al Virof5ff53b2014-06-19 15:36:49 -04001808 struct iov_iter i = *from;
1809
Jason Wang88529172013-07-18 10:55:15 +08001810 /* There are 256 bytes to be copied in skb, so there is
1811 * enough room for skb expand head in case it is used.
Michael S. Tsirkin06908992012-07-20 09:23:23 +00001812 * The rest of the buffer is mapped from userspace.
1813 */
Michael S. Tsirkin56f0dcc2014-10-23 22:59:31 +03001814 copylen = gso.hdr_len ? tun16_to_cpu(tun, gso.hdr_len) : GOODCOPY_LEN;
Jason Wang96f8d9e2013-11-13 14:00:39 +08001815 if (copylen > good_linear)
1816 copylen = good_linear;
Jason Wang3dd5c332013-07-10 13:43:27 +08001817 linear = copylen;
Al Virof5ff53b2014-06-19 15:36:49 -04001818 iov_iter_advance(&i, copylen);
1819 if (iov_iter_npages(&i, INT_MAX) <= MAX_SKB_FRAGS)
Jason Wang88529172013-07-18 10:55:15 +08001820 zerocopy = true;
1821 }
1822
Petar Penkov90e33d42017-09-22 13:49:15 -07001823 if (!frags && tun_can_build_skb(tun, tfile, len, noblock, zerocopy)) {
Jason Wang1cfe6e92017-09-04 11:36:09 +08001824 /* For the packet that is not easy to be processed
1825 * (e.g gso or jumbo packet), we will do it at after
1826 * skb was created with generic XDP routine.
1827 */
1828 skb = tun_build_skb(tun, tfile, from, &gso, len, &skb_xdp);
Jason Wang66ccbc92017-08-11 19:41:16 +08001829 if (IS_ERR(skb)) {
Paolo Abeni608b9972016-04-13 10:52:20 +02001830 this_cpu_inc(tun->pcpu_stats->rx_dropped);
Jason Wang66ccbc92017-08-11 19:41:16 +08001831 return PTR_ERR(skb);
1832 }
Jason Wang761876c2017-08-11 19:41:18 +08001833 if (!skb)
1834 return total_len;
Jason Wang66ccbc92017-08-11 19:41:16 +08001835 } else {
1836 if (!zerocopy) {
1837 copylen = len;
1838 if (tun16_to_cpu(tun, gso.hdr_len) > good_linear)
1839 linear = good_linear;
1840 else
1841 linear = tun16_to_cpu(tun, gso.hdr_len);
1842 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001843
Petar Penkov90e33d42017-09-22 13:49:15 -07001844 if (frags) {
1845 mutex_lock(&tfile->napi_mutex);
1846 skb = tun_napi_alloc_frags(tfile, copylen, from);
1847 /* tun_napi_alloc_frags() enforces a layout for the skb.
1848 * If zerocopy is enabled, then this layout will be
1849 * overwritten by zerocopy_sg_from_iter().
1850 */
1851 zerocopy = false;
1852 } else {
1853 skb = tun_alloc_skb(tfile, align, copylen, linear,
1854 noblock);
1855 }
1856
Jason Wang66ccbc92017-08-11 19:41:16 +08001857 if (IS_ERR(skb)) {
1858 if (PTR_ERR(skb) != -EAGAIN)
1859 this_cpu_inc(tun->pcpu_stats->rx_dropped);
Petar Penkov90e33d42017-09-22 13:49:15 -07001860 if (frags)
1861 mutex_unlock(&tfile->napi_mutex);
Jason Wang66ccbc92017-08-11 19:41:16 +08001862 return PTR_ERR(skb);
1863 }
Michael S. Tsirkin06908992012-07-20 09:23:23 +00001864
Jason Wang66ccbc92017-08-11 19:41:16 +08001865 if (zerocopy)
1866 err = zerocopy_sg_from_iter(skb, from);
1867 else
1868 err = skb_copy_datagram_from_iter(skb, 0, from, len);
1869
1870 if (err) {
Eric Dumazet44771382019-03-14 20:19:47 -07001871 err = -EFAULT;
1872drop:
Jason Wang66ccbc92017-08-11 19:41:16 +08001873 this_cpu_inc(tun->pcpu_stats->rx_dropped);
1874 kfree_skb(skb);
Petar Penkov90e33d42017-09-22 13:49:15 -07001875 if (frags) {
1876 tfile->napi.skb = NULL;
1877 mutex_unlock(&tfile->napi_mutex);
1878 }
1879
Eric Dumazet44771382019-03-14 20:19:47 -07001880 return err;
Jason Wang66ccbc92017-08-11 19:41:16 +08001881 }
Dave Jones8f227572006-03-11 18:49:13 -08001882 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001883
Jarno Rajahalme3e9e40e2016-11-18 15:40:38 -08001884 if (virtio_net_hdr_to_skb(skb, &gso, tun_is_little_endian(tun))) {
Paolo Abenidf10db92016-06-14 00:00:04 +02001885 this_cpu_inc(tun->pcpu_stats->rx_frame_errors);
1886 kfree_skb(skb);
Petar Penkov90e33d42017-09-22 13:49:15 -07001887 if (frags) {
1888 tfile->napi.skb = NULL;
1889 mutex_unlock(&tfile->napi_mutex);
1890 }
1891
Paolo Abenidf10db92016-06-14 00:00:04 +02001892 return -EINVAL;
1893 }
1894
Linus Torvalds1da177e2005-04-16 15:20:36 -07001895 switch (tun->flags & TUN_TYPE_MASK) {
Michael S. Tsirkin40630b82014-11-19 15:17:31 +02001896 case IFF_TUN:
1897 if (tun->flags & IFF_NO_PI) {
Alexander Potapenko2580c4c2017-09-28 11:32:37 +02001898 u8 ip_version = skb->len ? (skb->data[0] >> 4) : 0;
1899
1900 switch (ip_version) {
1901 case 4:
Ang Way Chuangf09f7ee2008-06-17 21:10:33 -07001902 pi.proto = htons(ETH_P_IP);
1903 break;
Alexander Potapenko2580c4c2017-09-28 11:32:37 +02001904 case 6:
Ang Way Chuangf09f7ee2008-06-17 21:10:33 -07001905 pi.proto = htons(ETH_P_IPV6);
1906 break;
1907 default:
Paolo Abeni608b9972016-04-13 10:52:20 +02001908 this_cpu_inc(tun->pcpu_stats->rx_dropped);
Ang Way Chuangf09f7ee2008-06-17 21:10:33 -07001909 kfree_skb(skb);
1910 return -EINVAL;
1911 }
1912 }
1913
Arnaldo Carvalho de Melo459a98e2007-03-19 15:30:44 -07001914 skb_reset_mac_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001915 skb->protocol = pi.proto;
Arnaldo Carvalho de Melo4c13eb62007-04-25 17:40:23 -07001916 skb->dev = tun->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001917 break;
Michael S. Tsirkin40630b82014-11-19 15:17:31 +02001918 case IFF_TAP:
Petar Penkov90e33d42017-09-22 13:49:15 -07001919 if (!frags)
1920 skb->protocol = eth_type_trans(skb, tun->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001921 break;
Joe Perches6403eab2011-06-03 11:51:20 +00001922 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001923
Michael S. Tsirkin06908992012-07-20 09:23:23 +00001924 /* copy skb_ubuf_info for callback when skb has no error */
1925 if (zerocopy) {
1926 skb_shinfo(skb)->destructor_arg = msg_control;
1927 skb_shinfo(skb)->tx_flags |= SKBTX_DEV_ZEROCOPY;
Pravin B Shelarc9af6db2013-02-11 09:27:41 +00001928 skb_shinfo(skb)->tx_flags |= SKBTX_SHARED_FRAG;
Jason Wangaf1cc7a2016-11-30 13:17:51 +08001929 } else if (msg_control) {
1930 struct ubuf_info *uarg = msg_control;
1931 uarg->callback(uarg, false);
Michael S. Tsirkin06908992012-07-20 09:23:23 +00001932 }
1933
Vlad Yasevich72f65102015-02-03 16:36:16 -05001934 skb_reset_network_header(skb);
Maxim Mikityanskiyd2aa1252019-02-21 12:39:57 +00001935 skb_probe_transport_header(skb);
Jason Wang38502af2013-03-25 20:19:56 +00001936
Jason Wang1cfe6e92017-09-04 11:36:09 +08001937 if (skb_xdp) {
Jason Wang761876c2017-08-11 19:41:18 +08001938 struct bpf_prog *xdp_prog;
1939 int ret;
1940
Toshiaki Makita6547e382018-05-28 19:37:49 +09001941 local_bh_disable();
Jason Wang761876c2017-08-11 19:41:18 +08001942 rcu_read_lock();
1943 xdp_prog = rcu_dereference(tun->xdp_prog);
1944 if (xdp_prog) {
1945 ret = do_xdp_generic(xdp_prog, skb);
1946 if (ret != XDP_PASS) {
1947 rcu_read_unlock();
Toshiaki Makita6547e382018-05-28 19:37:49 +09001948 local_bh_enable();
Jason Wang761876c2017-08-11 19:41:18 +08001949 return total_len;
1950 }
1951 }
1952 rcu_read_unlock();
Toshiaki Makita6547e382018-05-28 19:37:49 +09001953 local_bh_enable();
Jason Wang761876c2017-08-11 19:41:18 +08001954 }
1955
Paolo Abenicf1a1e02018-04-20 13:18:16 +02001956 /* Compute the costly rx hash only if needed for flow updates.
1957 * We may get a very small possibility of OOO during switching, not
1958 * worth to optimize.
1959 */
1960 if (!rcu_access_pointer(tun->steering_prog) && tun->numqueues > 1 &&
1961 !tfile->detached)
Jason Wang96f84062017-12-04 17:31:23 +08001962 rxhash = __skb_get_hash_symmetric(skb);
Petar Penkov94317092017-09-22 13:49:14 -07001963
Eric Dumazet44771382019-03-14 20:19:47 -07001964 rcu_read_lock();
1965 if (unlikely(!(tun->dev->flags & IFF_UP))) {
1966 err = -EIO;
Eric Dumazet9180bb42019-03-16 13:09:53 -07001967 rcu_read_unlock();
Eric Dumazet44771382019-03-14 20:19:47 -07001968 goto drop;
1969 }
1970
Petar Penkov90e33d42017-09-22 13:49:15 -07001971 if (frags) {
1972 /* Exercise flow dissector code path. */
Stanislav Fomichevc43f1252019-04-22 08:55:48 -07001973 u32 headlen = eth_get_headlen(tun->dev, skb->data,
1974 skb_headlen(skb));
Petar Penkov90e33d42017-09-22 13:49:15 -07001975
Eric Dumazet010f2452017-10-17 10:07:44 -07001976 if (unlikely(headlen > skb_headlen(skb))) {
Petar Penkov90e33d42017-09-22 13:49:15 -07001977 this_cpu_inc(tun->pcpu_stats->rx_dropped);
1978 napi_free_frags(&tfile->napi);
Eric Dumazet44771382019-03-14 20:19:47 -07001979 rcu_read_unlock();
Petar Penkov90e33d42017-09-22 13:49:15 -07001980 mutex_unlock(&tfile->napi_mutex);
1981 WARN_ON(1);
1982 return -ENOMEM;
1983 }
1984
1985 local_bh_disable();
1986 napi_gro_frags(&tfile->napi);
1987 local_bh_enable();
1988 mutex_unlock(&tfile->napi_mutex);
Eric Dumazetaec72f32017-10-18 12:12:09 -07001989 } else if (tfile->napi_enabled) {
Petar Penkov94317092017-09-22 13:49:14 -07001990 struct sk_buff_head *queue = &tfile->sk.sk_write_queue;
1991 int queue_len;
1992
1993 spin_lock_bh(&queue->lock);
1994 __skb_queue_tail(queue, skb);
1995 queue_len = skb_queue_len(queue);
1996 spin_unlock(&queue->lock);
1997
1998 if (!more || queue_len > NAPI_POLL_WEIGHT)
1999 napi_schedule(&tfile->napi);
2000
2001 local_bh_enable();
2002 } else if (!IS_ENABLED(CONFIG_4KSTACKS)) {
2003 tun_rx_batched(tun, tfile, skb, more);
2004 } else {
2005 netif_rx_ni(skb);
2006 }
Eric Dumazet44771382019-03-14 20:19:47 -07002007 rcu_read_unlock();
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002008
Paolo Abeni608b9972016-04-13 10:52:20 +02002009 stats = get_cpu_ptr(tun->pcpu_stats);
2010 u64_stats_update_begin(&stats->syncp);
2011 stats->rx_packets++;
2012 stats->rx_bytes += len;
2013 u64_stats_update_end(&stats->syncp);
2014 put_cpu_ptr(stats);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002015
Jason Wang96f84062017-12-04 17:31:23 +08002016 if (rxhash)
2017 tun_flow_update(tun, rxhash, tfile);
2018
Michael S. Tsirkin06908992012-07-20 09:23:23 +00002019 return total_len;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002020}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002021
Al Virof5ff53b2014-06-19 15:36:49 -04002022static ssize_t tun_chr_write_iter(struct kiocb *iocb, struct iov_iter *from)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002023{
Herbert Xu33dccbb2009-02-05 21:25:32 -08002024 struct file *file = iocb->ki_filp;
Jason Wang54f968d2012-10-31 19:45:57 +00002025 struct tun_file *tfile = file->private_data;
yuan linyu9484dc72017-09-23 22:36:52 +08002026 struct tun_struct *tun = tun_get(tfile);
Eric W. Biederman631ab462009-01-20 11:00:40 +00002027 ssize_t result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002028
2029 if (!tun)
2030 return -EBADFD;
2031
Jason Wang5503fce2017-01-18 15:02:03 +08002032 result = tun_get_user(tun, tfile, NULL, from,
2033 file->f_flags & O_NONBLOCK, false);
Eric W. Biederman631ab462009-01-20 11:00:40 +00002034
2035 tun_put(tun);
2036 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002037}
2038
Jason Wangfc72d1d2018-01-04 11:14:28 +08002039static ssize_t tun_put_user_xdp(struct tun_struct *tun,
2040 struct tun_file *tfile,
Jesper Dangaard Brouer1ffcbc82018-04-17 16:45:47 +02002041 struct xdp_frame *xdp_frame,
Jason Wangfc72d1d2018-01-04 11:14:28 +08002042 struct iov_iter *iter)
2043{
2044 int vnet_hdr_sz = 0;
Jesper Dangaard Brouer1ffcbc82018-04-17 16:45:47 +02002045 size_t size = xdp_frame->len;
Jason Wangfc72d1d2018-01-04 11:14:28 +08002046 struct tun_pcpu_stats *stats;
2047 size_t ret;
2048
2049 if (tun->flags & IFF_VNET_HDR) {
2050 struct virtio_net_hdr gso = { 0 };
2051
2052 vnet_hdr_sz = READ_ONCE(tun->vnet_hdr_sz);
2053 if (unlikely(iov_iter_count(iter) < vnet_hdr_sz))
2054 return -EINVAL;
2055 if (unlikely(copy_to_iter(&gso, sizeof(gso), iter) !=
2056 sizeof(gso)))
2057 return -EFAULT;
2058 iov_iter_advance(iter, vnet_hdr_sz - sizeof(gso));
2059 }
2060
Jesper Dangaard Brouer1ffcbc82018-04-17 16:45:47 +02002061 ret = copy_to_iter(xdp_frame->data, size, iter) + vnet_hdr_sz;
Jason Wangfc72d1d2018-01-04 11:14:28 +08002062
2063 stats = get_cpu_ptr(tun->pcpu_stats);
2064 u64_stats_update_begin(&stats->syncp);
2065 stats->tx_packets++;
2066 stats->tx_bytes += ret;
2067 u64_stats_update_end(&stats->syncp);
2068 put_cpu_ptr(tun->pcpu_stats);
2069
2070 return ret;
2071}
2072
Linus Torvalds1da177e2005-04-16 15:20:36 -07002073/* Put packet to the user space buffer */
stephen hemminger6f7c1562011-06-08 14:33:08 +00002074static ssize_t tun_put_user(struct tun_struct *tun,
Jason Wang54f968d2012-10-31 19:45:57 +00002075 struct tun_file *tfile,
stephen hemminger6f7c1562011-06-08 14:33:08 +00002076 struct sk_buff *skb,
Herbert Xue0b46d02014-11-07 21:22:23 +08002077 struct iov_iter *iter)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002078{
2079 struct tun_pi pi = { 0, skb->protocol };
Paolo Abeni608b9972016-04-13 10:52:20 +02002080 struct tun_pcpu_stats *stats;
Herbert Xue0b46d02014-11-07 21:22:23 +08002081 ssize_t total;
Jason Wang8c847d22014-11-13 16:54:14 +08002082 int vlan_offset = 0;
Herbert Xua8f9bfd2014-11-03 04:30:13 +08002083 int vlan_hlen = 0;
Herbert Xu2eb783c2014-11-03 04:30:14 +08002084 int vnet_hdr_sz = 0;
Herbert Xua8f9bfd2014-11-03 04:30:13 +08002085
Jiri Pirkodf8a39d2015-01-13 17:13:44 +01002086 if (skb_vlan_tag_present(skb))
Herbert Xua8f9bfd2014-11-03 04:30:13 +08002087 vlan_hlen = VLAN_HLEN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002088
Michael S. Tsirkin40630b82014-11-19 15:17:31 +02002089 if (tun->flags & IFF_VNET_HDR)
Willem de Bruijne1edab82017-02-03 18:20:48 -05002090 vnet_hdr_sz = READ_ONCE(tun->vnet_hdr_sz);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002091
Herbert Xue0b46d02014-11-07 21:22:23 +08002092 total = skb->len + vlan_hlen + vnet_hdr_sz;
2093
Michael S. Tsirkin40630b82014-11-19 15:17:31 +02002094 if (!(tun->flags & IFF_NO_PI)) {
Herbert Xue0b46d02014-11-07 21:22:23 +08002095 if (iov_iter_count(iter) < sizeof(pi))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002096 return -EINVAL;
2097
Herbert Xue0b46d02014-11-07 21:22:23 +08002098 total += sizeof(pi);
2099 if (iov_iter_count(iter) < total) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002100 /* Packet will be striped */
2101 pi.flags |= TUN_PKT_STRIP;
2102 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002103
Herbert Xue0b46d02014-11-07 21:22:23 +08002104 if (copy_to_iter(&pi, sizeof(pi), iter) != sizeof(pi))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002105 return -EFAULT;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002106 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002107
Herbert Xu2eb783c2014-11-03 04:30:14 +08002108 if (vnet_hdr_sz) {
Jarno Rajahalme9403cd72016-11-18 15:40:40 -08002109 struct virtio_net_hdr gso;
Mike Rapoport34166092016-06-08 16:09:20 +03002110
Herbert Xue0b46d02014-11-07 21:22:23 +08002111 if (iov_iter_count(iter) < vnet_hdr_sz)
Rusty Russellf43798c2008-07-03 03:48:02 -07002112 return -EINVAL;
2113
Jarno Rajahalme3e9e40e2016-11-18 15:40:38 -08002114 if (virtio_net_hdr_from_skb(skb, &gso,
Willem de Bruijnfd3a8862018-06-06 11:23:01 -04002115 tun_is_little_endian(tun), true,
2116 vlan_hlen)) {
Rusty Russellf43798c2008-07-03 03:48:02 -07002117 struct skb_shared_info *sinfo = skb_shinfo(skb);
Mike Rapoport34166092016-06-08 16:09:20 +03002118 pr_err("unexpected GSO type: "
2119 "0x%x, gso_size %d, hdr_len %d\n",
2120 sinfo->gso_type, tun16_to_cpu(tun, gso.gso_size),
2121 tun16_to_cpu(tun, gso.hdr_len));
2122 print_hex_dump(KERN_ERR, "tun: ",
2123 DUMP_PREFIX_NONE,
2124 16, 1, skb->head,
2125 min((int)tun16_to_cpu(tun, gso.hdr_len), 64), true);
2126 WARN_ON_ONCE(1);
2127 return -EINVAL;
2128 }
Rusty Russellf43798c2008-07-03 03:48:02 -07002129
Herbert Xue0b46d02014-11-07 21:22:23 +08002130 if (copy_to_iter(&gso, sizeof(gso), iter) != sizeof(gso))
Rusty Russellf43798c2008-07-03 03:48:02 -07002131 return -EFAULT;
Jason Wang8c847d22014-11-13 16:54:14 +08002132
2133 iov_iter_advance(iter, vnet_hdr_sz - sizeof(gso));
Rusty Russellf43798c2008-07-03 03:48:02 -07002134 }
2135
Herbert Xua8f9bfd2014-11-03 04:30:13 +08002136 if (vlan_hlen) {
Herbert Xue0b46d02014-11-07 21:22:23 +08002137 int ret;
Jason Wangaff3d702018-01-16 16:31:02 +08002138 struct veth veth;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002139
Jason Wang6680ec62013-07-25 13:00:33 +08002140 veth.h_vlan_proto = skb->vlan_proto;
Jiri Pirkodf8a39d2015-01-13 17:13:44 +01002141 veth.h_vlan_TCI = htons(skb_vlan_tag_get(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002142
Jason Wang6680ec62013-07-25 13:00:33 +08002143 vlan_offset = offsetof(struct vlan_ethhdr, h_vlan_proto);
Jason Wang6680ec62013-07-25 13:00:33 +08002144
Herbert Xue0b46d02014-11-07 21:22:23 +08002145 ret = skb_copy_datagram_iter(skb, 0, iter, vlan_offset);
2146 if (ret || !iov_iter_count(iter))
Jason Wang6680ec62013-07-25 13:00:33 +08002147 goto done;
2148
Herbert Xue0b46d02014-11-07 21:22:23 +08002149 ret = copy_to_iter(&veth, sizeof(veth), iter);
2150 if (ret != sizeof(veth) || !iov_iter_count(iter))
Jason Wang6680ec62013-07-25 13:00:33 +08002151 goto done;
2152 }
2153
Herbert Xue0b46d02014-11-07 21:22:23 +08002154 skb_copy_datagram_iter(skb, vlan_offset, iter, skb->len - vlan_offset);
Jason Wang6680ec62013-07-25 13:00:33 +08002155
2156done:
Paolo Abeni608b9972016-04-13 10:52:20 +02002157 /* caller is in process context, */
2158 stats = get_cpu_ptr(tun->pcpu_stats);
2159 u64_stats_update_begin(&stats->syncp);
2160 stats->tx_packets++;
2161 stats->tx_bytes += skb->len + vlan_hlen;
2162 u64_stats_update_end(&stats->syncp);
2163 put_cpu_ptr(tun->pcpu_stats);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002164
2165 return total;
2166}
2167
Jason Wangfc72d1d2018-01-04 11:14:28 +08002168static void *tun_ring_recv(struct tun_file *tfile, int noblock, int *err)
Jason Wang1576d982016-06-30 14:45:36 +08002169{
2170 DECLARE_WAITQUEUE(wait, current);
Jason Wangfc72d1d2018-01-04 11:14:28 +08002171 void *ptr = NULL;
Jason Wangf48cc6b2016-07-04 13:53:38 +08002172 int error = 0;
Jason Wang1576d982016-06-30 14:45:36 +08002173
Jason Wangfc72d1d2018-01-04 11:14:28 +08002174 ptr = ptr_ring_consume(&tfile->tx_ring);
2175 if (ptr)
Jason Wang1576d982016-06-30 14:45:36 +08002176 goto out;
2177 if (noblock) {
Jason Wangf48cc6b2016-07-04 13:53:38 +08002178 error = -EAGAIN;
Jason Wang1576d982016-06-30 14:45:36 +08002179 goto out;
2180 }
2181
2182 add_wait_queue(&tfile->wq.wait, &wait);
Jason Wang1576d982016-06-30 14:45:36 +08002183
2184 while (1) {
Timur Celik71828b22019-02-23 12:53:13 +01002185 set_current_state(TASK_INTERRUPTIBLE);
Jason Wangfc72d1d2018-01-04 11:14:28 +08002186 ptr = ptr_ring_consume(&tfile->tx_ring);
2187 if (ptr)
Jason Wang1576d982016-06-30 14:45:36 +08002188 break;
2189 if (signal_pending(current)) {
Jason Wangf48cc6b2016-07-04 13:53:38 +08002190 error = -ERESTARTSYS;
Jason Wang1576d982016-06-30 14:45:36 +08002191 break;
2192 }
2193 if (tfile->socket.sk->sk_shutdown & RCV_SHUTDOWN) {
Jason Wangf48cc6b2016-07-04 13:53:38 +08002194 error = -EFAULT;
Jason Wang1576d982016-06-30 14:45:36 +08002195 break;
2196 }
2197
2198 schedule();
2199 }
2200
Timur Celikecef67c2019-02-25 21:13:13 +01002201 __set_current_state(TASK_RUNNING);
Jason Wang1576d982016-06-30 14:45:36 +08002202 remove_wait_queue(&tfile->wq.wait, &wait);
2203
2204out:
Jason Wangf48cc6b2016-07-04 13:53:38 +08002205 *err = error;
Jason Wangfc72d1d2018-01-04 11:14:28 +08002206 return ptr;
Jason Wang1576d982016-06-30 14:45:36 +08002207}
2208
Jason Wang54f968d2012-10-31 19:45:57 +00002209static ssize_t tun_do_read(struct tun_struct *tun, struct tun_file *tfile,
Al Viro9b067032014-11-07 13:52:07 -05002210 struct iov_iter *to,
Jason Wangfc72d1d2018-01-04 11:14:28 +08002211 int noblock, void *ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002212{
Al Viro9b067032014-11-07 13:52:07 -05002213 ssize_t ret;
Jason Wang1576d982016-06-30 14:45:36 +08002214 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002215
Rami Rosen3872baf2012-11-25 22:07:41 +00002216 tun_debug(KERN_INFO, tun, "tun_do_read\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002217
Wei Xuc33ee152017-12-01 05:10:37 -05002218 if (!iov_iter_count(to)) {
Jason Wangfc72d1d2018-01-04 11:14:28 +08002219 tun_ptr_free(ptr);
Al Viro9b067032014-11-07 13:52:07 -05002220 return 0;
Wei Xuc33ee152017-12-01 05:10:37 -05002221 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002222
Jason Wangfc72d1d2018-01-04 11:14:28 +08002223 if (!ptr) {
Jason Wangac77cfd2017-05-17 12:14:43 +08002224 /* Read frames from ring */
Jason Wangfc72d1d2018-01-04 11:14:28 +08002225 ptr = tun_ring_recv(tfile, noblock, &err);
2226 if (!ptr)
Jason Wangac77cfd2017-05-17 12:14:43 +08002227 return err;
2228 }
Herbert Xue0b46d02014-11-07 21:22:23 +08002229
Jesper Dangaard Brouer1ffcbc82018-04-17 16:45:47 +02002230 if (tun_is_xdp_frame(ptr)) {
2231 struct xdp_frame *xdpf = tun_ptr_to_xdp(ptr);
Jason Wangfc72d1d2018-01-04 11:14:28 +08002232
Jesper Dangaard Brouer1ffcbc82018-04-17 16:45:47 +02002233 ret = tun_put_user_xdp(tun, tfile, xdpf, to);
Jesper Dangaard Brouer03993092018-04-17 16:46:32 +02002234 xdp_return_frame(xdpf);
Jason Wangfc72d1d2018-01-04 11:14:28 +08002235 } else {
2236 struct sk_buff *skb = ptr;
2237
2238 ret = tun_put_user(tun, tfile, skb, to);
2239 if (unlikely(ret < 0))
2240 kfree_skb(skb);
2241 else
2242 consume_skb(skb);
2243 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002244
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00002245 return ret;
2246}
2247
Al Viro9b067032014-11-07 13:52:07 -05002248static ssize_t tun_chr_read_iter(struct kiocb *iocb, struct iov_iter *to)
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00002249{
2250 struct file *file = iocb->ki_filp;
2251 struct tun_file *tfile = file->private_data;
yuan linyu9484dc72017-09-23 22:36:52 +08002252 struct tun_struct *tun = tun_get(tfile);
Al Viro9b067032014-11-07 13:52:07 -05002253 ssize_t len = iov_iter_count(to), ret;
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00002254
2255 if (!tun)
2256 return -EBADFD;
Jason Wangac77cfd2017-05-17 12:14:43 +08002257 ret = tun_do_read(tun, tfile, to, file->f_flags & O_NONBLOCK, NULL);
David S. Miller42404c02013-12-10 22:05:45 -05002258 ret = min_t(ssize_t, ret, len);
Zhi Yong Wud0b7da8a2013-12-06 14:16:51 +08002259 if (ret > 0)
2260 iocb->ki_pos = ret;
Eric W. Biederman631ab462009-01-20 11:00:40 +00002261 tun_put(tun);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002262 return ret;
2263}
2264
Jason Wangcd5681d2018-01-16 16:31:01 +08002265static void tun_prog_free(struct rcu_head *rcu)
Jason Wang96f84062017-12-04 17:31:23 +08002266{
Jason Wangcd5681d2018-01-16 16:31:01 +08002267 struct tun_prog *prog = container_of(rcu, struct tun_prog, rcu);
Jason Wang96f84062017-12-04 17:31:23 +08002268
2269 bpf_prog_destroy(prog->prog);
2270 kfree(prog);
2271}
2272
Jason Wang9d6474e2018-01-22 10:55:38 +08002273static int __tun_set_ebpf(struct tun_struct *tun,
2274 struct tun_prog __rcu **prog_p,
Jason Wangcd5681d2018-01-16 16:31:01 +08002275 struct bpf_prog *prog)
Jason Wang96f84062017-12-04 17:31:23 +08002276{
Jason Wangcd5681d2018-01-16 16:31:01 +08002277 struct tun_prog *old, *new = NULL;
Jason Wang96f84062017-12-04 17:31:23 +08002278
2279 if (prog) {
2280 new = kmalloc(sizeof(*new), GFP_KERNEL);
2281 if (!new)
2282 return -ENOMEM;
2283 new->prog = prog;
2284 }
2285
Jason Wang124da8f2017-12-08 12:02:30 +08002286 spin_lock_bh(&tun->lock);
Jason Wangcd5681d2018-01-16 16:31:01 +08002287 old = rcu_dereference_protected(*prog_p,
Jason Wang124da8f2017-12-08 12:02:30 +08002288 lockdep_is_held(&tun->lock));
Jason Wangcd5681d2018-01-16 16:31:01 +08002289 rcu_assign_pointer(*prog_p, new);
Jason Wang124da8f2017-12-08 12:02:30 +08002290 spin_unlock_bh(&tun->lock);
Jason Wang96f84062017-12-04 17:31:23 +08002291
2292 if (old)
Jason Wangcd5681d2018-01-16 16:31:01 +08002293 call_rcu(&old->rcu, tun_prog_free);
Jason Wang96f84062017-12-04 17:31:23 +08002294
2295 return 0;
2296}
2297
Jason Wang96442e422012-10-31 19:46:02 +00002298static void tun_free_netdev(struct net_device *dev)
2299{
2300 struct tun_struct *tun = netdev_priv(dev);
2301
Jason Wang4008e972012-12-13 23:53:30 +00002302 BUG_ON(!(list_empty(&tun->disabled)));
Paolo Abeni608b9972016-04-13 10:52:20 +02002303 free_percpu(tun->pcpu_stats);
Jason Wang96442e422012-10-31 19:46:02 +00002304 tun_flow_uninit(tun);
Paul Moore5dbbaf22013-01-14 07:12:19 +00002305 security_tun_dev_free_security(tun->security);
Jason Wangcd5681d2018-01-16 16:31:01 +08002306 __tun_set_ebpf(tun, &tun->steering_prog, NULL);
Jason Wangaff3d702018-01-16 16:31:02 +08002307 __tun_set_ebpf(tun, &tun->filter_prog, NULL);
Jason Wang96442e422012-10-31 19:46:02 +00002308}
2309
Linus Torvalds1da177e2005-04-16 15:20:36 -07002310static void tun_setup(struct net_device *dev)
2311{
2312 struct tun_struct *tun = netdev_priv(dev);
2313
Eric W. Biederman0625c882012-02-07 16:48:55 -08002314 tun->owner = INVALID_UID;
2315 tun->group = INVALID_GID;
Chas Williams4e24f2d2018-06-02 17:49:53 -04002316 tun_default_link_ksettings(dev, &tun->link_ksettings);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002317
Linus Torvalds1da177e2005-04-16 15:20:36 -07002318 dev->ethtool_ops = &tun_ethtool_ops;
David S. Millercf124db2017-05-08 12:52:56 -04002319 dev->needs_free_netdev = true;
2320 dev->priv_destructor = tun_free_netdev;
Jason Wang016adb72016-04-08 13:26:48 +08002321 /* We prefer our own queue length */
2322 dev->tx_queue_len = TUN_READQ_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002323}
2324
Eric W. Biedermanf019a7a2009-01-21 16:02:16 -08002325/* Trivial set of netlink ops to allow deleting tun or tap
2326 * device with netlink.
2327 */
Matthias Schiffera8b8a8892017-06-25 23:56:01 +02002328static int tun_validate(struct nlattr *tb[], struct nlattr *data[],
2329 struct netlink_ext_ack *extack)
Eric W. Biedermanf019a7a2009-01-21 16:02:16 -08002330{
Nicolas Dichtel35b827b2018-11-29 14:45:39 +01002331 NL_SET_ERR_MSG(extack,
2332 "tun/tap creation via rtnetlink is not supported.");
2333 return -EOPNOTSUPP;
Eric W. Biedermanf019a7a2009-01-21 16:02:16 -08002334}
2335
Sabrina Dubroca1ec010e2018-02-16 11:03:07 +01002336static size_t tun_get_size(const struct net_device *dev)
2337{
2338 BUILD_BUG_ON(sizeof(u32) != sizeof(uid_t));
2339 BUILD_BUG_ON(sizeof(u32) != sizeof(gid_t));
2340
2341 return nla_total_size(sizeof(uid_t)) + /* OWNER */
2342 nla_total_size(sizeof(gid_t)) + /* GROUP */
2343 nla_total_size(sizeof(u8)) + /* TYPE */
2344 nla_total_size(sizeof(u8)) + /* PI */
2345 nla_total_size(sizeof(u8)) + /* VNET_HDR */
2346 nla_total_size(sizeof(u8)) + /* PERSIST */
2347 nla_total_size(sizeof(u8)) + /* MULTI_QUEUE */
2348 nla_total_size(sizeof(u32)) + /* NUM_QUEUES */
2349 nla_total_size(sizeof(u32)) + /* NUM_DISABLED_QUEUES */
2350 0;
2351}
2352
2353static int tun_fill_info(struct sk_buff *skb, const struct net_device *dev)
2354{
2355 struct tun_struct *tun = netdev_priv(dev);
2356
2357 if (nla_put_u8(skb, IFLA_TUN_TYPE, tun->flags & TUN_TYPE_MASK))
2358 goto nla_put_failure;
2359 if (uid_valid(tun->owner) &&
2360 nla_put_u32(skb, IFLA_TUN_OWNER,
2361 from_kuid_munged(current_user_ns(), tun->owner)))
2362 goto nla_put_failure;
2363 if (gid_valid(tun->group) &&
2364 nla_put_u32(skb, IFLA_TUN_GROUP,
2365 from_kgid_munged(current_user_ns(), tun->group)))
2366 goto nla_put_failure;
2367 if (nla_put_u8(skb, IFLA_TUN_PI, !(tun->flags & IFF_NO_PI)))
2368 goto nla_put_failure;
2369 if (nla_put_u8(skb, IFLA_TUN_VNET_HDR, !!(tun->flags & IFF_VNET_HDR)))
2370 goto nla_put_failure;
2371 if (nla_put_u8(skb, IFLA_TUN_PERSIST, !!(tun->flags & IFF_PERSIST)))
2372 goto nla_put_failure;
2373 if (nla_put_u8(skb, IFLA_TUN_MULTI_QUEUE,
2374 !!(tun->flags & IFF_MULTI_QUEUE)))
2375 goto nla_put_failure;
2376 if (tun->flags & IFF_MULTI_QUEUE) {
2377 if (nla_put_u32(skb, IFLA_TUN_NUM_QUEUES, tun->numqueues))
2378 goto nla_put_failure;
2379 if (nla_put_u32(skb, IFLA_TUN_NUM_DISABLED_QUEUES,
2380 tun->numdisabled))
2381 goto nla_put_failure;
2382 }
2383
2384 return 0;
2385
2386nla_put_failure:
2387 return -EMSGSIZE;
2388}
2389
Eric W. Biedermanf019a7a2009-01-21 16:02:16 -08002390static struct rtnl_link_ops tun_link_ops __read_mostly = {
2391 .kind = DRV_NAME,
2392 .priv_size = sizeof(struct tun_struct),
2393 .setup = tun_setup,
2394 .validate = tun_validate,
Sabrina Dubroca1ec010e2018-02-16 11:03:07 +01002395 .get_size = tun_get_size,
2396 .fill_info = tun_fill_info,
Eric W. Biedermanf019a7a2009-01-21 16:02:16 -08002397};
2398
Herbert Xu33dccbb2009-02-05 21:25:32 -08002399static void tun_sock_write_space(struct sock *sk)
2400{
Jason Wang54f968d2012-10-31 19:45:57 +00002401 struct tun_file *tfile;
Eric Dumazet43815482010-04-29 11:01:49 +00002402 wait_queue_head_t *wqueue;
Herbert Xu33dccbb2009-02-05 21:25:32 -08002403
2404 if (!sock_writeable(sk))
2405 return;
2406
Eric Dumazet9cd3e072015-11-29 20:03:10 -08002407 if (!test_and_clear_bit(SOCKWQ_ASYNC_NOSPACE, &sk->sk_socket->flags))
Herbert Xu33dccbb2009-02-05 21:25:32 -08002408 return;
2409
Eric Dumazet43815482010-04-29 11:01:49 +00002410 wqueue = sk_sleep(sk);
2411 if (wqueue && waitqueue_active(wqueue))
Linus Torvaldsa9a08842018-02-11 14:34:03 -08002412 wake_up_interruptible_sync_poll(wqueue, EPOLLOUT |
2413 EPOLLWRNORM | EPOLLWRBAND);
Herbert Xuc722c622009-06-03 21:45:55 -07002414
Jason Wang54f968d2012-10-31 19:45:57 +00002415 tfile = container_of(sk, struct tun_file, sk);
2416 kill_fasync(&tfile->fasync, SIGIO, POLL_OUT);
Herbert Xu33dccbb2009-02-05 21:25:32 -08002417}
2418
Jason Wangf9e06c42018-11-15 17:43:10 +08002419static void tun_put_page(struct tun_page *tpage)
2420{
2421 if (tpage->page)
2422 __page_frag_cache_drain(tpage->page, tpage->count);
2423}
2424
Jason Wang043d2222018-09-12 11:17:07 +08002425static int tun_xdp_one(struct tun_struct *tun,
2426 struct tun_file *tfile,
Jason Wangf9e06c42018-11-15 17:43:10 +08002427 struct xdp_buff *xdp, int *flush,
2428 struct tun_page *tpage)
Jason Wang043d2222018-09-12 11:17:07 +08002429{
Prashant Bhole4e4b08e2018-12-03 18:09:24 +09002430 unsigned int datasize = xdp->data_end - xdp->data;
Jason Wang043d2222018-09-12 11:17:07 +08002431 struct tun_xdp_hdr *hdr = xdp->data_hard_start;
2432 struct virtio_net_hdr *gso = &hdr->gso;
2433 struct tun_pcpu_stats *stats;
2434 struct bpf_prog *xdp_prog;
2435 struct sk_buff *skb = NULL;
2436 u32 rxhash = 0, act;
2437 int buflen = hdr->buflen;
2438 int err = 0;
2439 bool skb_xdp = false;
Jason Wangf9e06c42018-11-15 17:43:10 +08002440 struct page *page;
Jason Wang043d2222018-09-12 11:17:07 +08002441
2442 xdp_prog = rcu_dereference(tun->xdp_prog);
2443 if (xdp_prog) {
2444 if (gso->gso_type) {
2445 skb_xdp = true;
2446 goto build;
2447 }
2448 xdp_set_data_meta_invalid(xdp);
2449 xdp->rxq = &tfile->xdp_rxq;
2450
2451 act = bpf_prog_run_xdp(xdp_prog, xdp);
2452 err = tun_xdp_act(tun, xdp_prog, xdp, act);
2453 if (err < 0) {
2454 put_page(virt_to_head_page(xdp->data));
2455 return err;
2456 }
2457
2458 switch (err) {
2459 case XDP_REDIRECT:
2460 *flush = true;
2461 /* fall through */
2462 case XDP_TX:
2463 return 0;
2464 case XDP_PASS:
2465 break;
2466 default:
Jason Wangf9e06c42018-11-15 17:43:10 +08002467 page = virt_to_head_page(xdp->data);
2468 if (tpage->page == page) {
2469 ++tpage->count;
2470 } else {
2471 tun_put_page(tpage);
2472 tpage->page = page;
2473 tpage->count = 1;
2474 }
Jason Wang043d2222018-09-12 11:17:07 +08002475 return 0;
2476 }
2477 }
2478
2479build:
2480 skb = build_skb(xdp->data_hard_start, buflen);
2481 if (!skb) {
2482 err = -ENOMEM;
2483 goto out;
2484 }
2485
2486 skb_reserve(skb, xdp->data - xdp->data_hard_start);
2487 skb_put(skb, xdp->data_end - xdp->data);
2488
2489 if (virtio_net_hdr_to_skb(skb, gso, tun_is_little_endian(tun))) {
2490 this_cpu_inc(tun->pcpu_stats->rx_frame_errors);
2491 kfree_skb(skb);
2492 err = -EINVAL;
2493 goto out;
2494 }
2495
2496 skb->protocol = eth_type_trans(skb, tun->dev);
2497 skb_reset_network_header(skb);
Maxim Mikityanskiyd2aa1252019-02-21 12:39:57 +00002498 skb_probe_transport_header(skb);
Jason Wang043d2222018-09-12 11:17:07 +08002499
2500 if (skb_xdp) {
2501 err = do_xdp_generic(xdp_prog, skb);
2502 if (err != XDP_PASS)
2503 goto out;
2504 }
2505
Paolo Abenif29eb2a2018-11-07 10:34:36 +01002506 if (!rcu_dereference(tun->steering_prog) && tun->numqueues > 1 &&
2507 !tfile->detached)
Jason Wang043d2222018-09-12 11:17:07 +08002508 rxhash = __skb_get_hash_symmetric(skb);
2509
Matthew Cover8ebebcb2018-11-18 00:46:00 -07002510 skb_record_rx_queue(skb, tfile->queue_index);
Jason Wang043d2222018-09-12 11:17:07 +08002511 netif_receive_skb(skb);
2512
Prashant Bhole6342ca62018-12-11 11:43:07 +09002513 /* No need for get_cpu_ptr() here since this function is
2514 * always called with bh disabled
2515 */
2516 stats = this_cpu_ptr(tun->pcpu_stats);
Jason Wang043d2222018-09-12 11:17:07 +08002517 u64_stats_update_begin(&stats->syncp);
2518 stats->rx_packets++;
Prashant Bhole4e4b08e2018-12-03 18:09:24 +09002519 stats->rx_bytes += datasize;
Jason Wang043d2222018-09-12 11:17:07 +08002520 u64_stats_update_end(&stats->syncp);
Jason Wang043d2222018-09-12 11:17:07 +08002521
2522 if (rxhash)
2523 tun_flow_update(tun, rxhash, tfile);
2524
2525out:
2526 return err;
2527}
2528
Ying Xue1b784142015-03-02 15:37:48 +08002529static int tun_sendmsg(struct socket *sock, struct msghdr *m, size_t total_len)
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00002530{
Jason Wang043d2222018-09-12 11:17:07 +08002531 int ret, i;
Jason Wang54f968d2012-10-31 19:45:57 +00002532 struct tun_file *tfile = container_of(sock, struct tun_file, socket);
yuan linyu9484dc72017-09-23 22:36:52 +08002533 struct tun_struct *tun = tun_get(tfile);
Jason Wangfe8dd452018-09-12 11:17:06 +08002534 struct tun_msg_ctl *ctl = m->msg_control;
Jason Wang043d2222018-09-12 11:17:07 +08002535 struct xdp_buff *xdp;
Jason Wang54f968d2012-10-31 19:45:57 +00002536
2537 if (!tun)
2538 return -EBADFD;
Al Virof5ff53b2014-06-19 15:36:49 -04002539
Jason Wang043d2222018-09-12 11:17:07 +08002540 if (ctl && (ctl->type == TUN_MSG_PTR)) {
David S. Miller6f0271d2018-11-17 16:53:46 -08002541 struct tun_page tpage;
Jason Wang043d2222018-09-12 11:17:07 +08002542 int n = ctl->num;
2543 int flush = 0;
2544
David S. Miller6f0271d2018-11-17 16:53:46 -08002545 memset(&tpage, 0, sizeof(tpage));
2546
Jason Wang043d2222018-09-12 11:17:07 +08002547 local_bh_disable();
2548 rcu_read_lock();
2549
2550 for (i = 0; i < n; i++) {
2551 xdp = &((struct xdp_buff *)ctl->ptr)[i];
Jason Wangf9e06c42018-11-15 17:43:10 +08002552 tun_xdp_one(tun, tfile, xdp, &flush, &tpage);
Jason Wang043d2222018-09-12 11:17:07 +08002553 }
2554
2555 if (flush)
2556 xdp_do_flush_map();
2557
2558 rcu_read_unlock();
2559 local_bh_enable();
2560
Jason Wangf9e06c42018-11-15 17:43:10 +08002561 tun_put_page(&tpage);
2562
Jason Wang043d2222018-09-12 11:17:07 +08002563 ret = total_len;
2564 goto out;
2565 }
Jason Wangfe8dd452018-09-12 11:17:06 +08002566
2567 ret = tun_get_user(tun, tfile, ctl ? ctl->ptr : NULL, &m->msg_iter,
Jason Wang5503fce2017-01-18 15:02:03 +08002568 m->msg_flags & MSG_DONTWAIT,
2569 m->msg_flags & MSG_MORE);
Jason Wang043d2222018-09-12 11:17:07 +08002570out:
Jason Wang54f968d2012-10-31 19:45:57 +00002571 tun_put(tun);
2572 return ret;
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00002573}
2574
Ying Xue1b784142015-03-02 15:37:48 +08002575static int tun_recvmsg(struct socket *sock, struct msghdr *m, size_t total_len,
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00002576 int flags)
2577{
Jason Wang54f968d2012-10-31 19:45:57 +00002578 struct tun_file *tfile = container_of(sock, struct tun_file, socket);
yuan linyu9484dc72017-09-23 22:36:52 +08002579 struct tun_struct *tun = tun_get(tfile);
Jason Wangfc72d1d2018-01-04 11:14:28 +08002580 void *ptr = m->msg_control;
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00002581 int ret;
Jason Wang54f968d2012-10-31 19:45:57 +00002582
Wei Xuc33ee152017-12-01 05:10:37 -05002583 if (!tun) {
2584 ret = -EBADFD;
Jason Wangfc72d1d2018-01-04 11:14:28 +08002585 goto out_free;
Wei Xuc33ee152017-12-01 05:10:37 -05002586 }
Jason Wang54f968d2012-10-31 19:45:57 +00002587
Richard Cochraneda29772013-07-19 19:40:10 +02002588 if (flags & ~(MSG_DONTWAIT|MSG_TRUNC|MSG_ERRQUEUE)) {
Gao feng3811ae72013-04-24 21:59:23 +00002589 ret = -EINVAL;
Wei Xuc33ee152017-12-01 05:10:37 -05002590 goto out_put_tun;
Gao feng3811ae72013-04-24 21:59:23 +00002591 }
Richard Cochraneda29772013-07-19 19:40:10 +02002592 if (flags & MSG_ERRQUEUE) {
2593 ret = sock_recv_errqueue(sock->sk, m, total_len,
2594 SOL_PACKET, TUN_TX_TIMESTAMP);
2595 goto out;
2596 }
Jason Wangfc72d1d2018-01-04 11:14:28 +08002597 ret = tun_do_read(tun, tfile, &m->msg_iter, flags & MSG_DONTWAIT, ptr);
Alex Gartrell87897932014-12-25 23:05:03 -08002598 if (ret > (ssize_t)total_len) {
David S. Miller42404c02013-12-10 22:05:45 -05002599 m->msg_flags |= MSG_TRUNC;
2600 ret = flags & MSG_TRUNC ? ret : total_len;
2601 }
Gao feng3811ae72013-04-24 21:59:23 +00002602out:
Jason Wang54f968d2012-10-31 19:45:57 +00002603 tun_put(tun);
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00002604 return ret;
Wei Xuc33ee152017-12-01 05:10:37 -05002605
2606out_put_tun:
2607 tun_put(tun);
Jason Wangfc72d1d2018-01-04 11:14:28 +08002608out_free:
2609 tun_ptr_free(ptr);
Wei Xuc33ee152017-12-01 05:10:37 -05002610 return ret;
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00002611}
2612
Jason Wangfc72d1d2018-01-04 11:14:28 +08002613static int tun_ptr_peek_len(void *ptr)
2614{
2615 if (likely(ptr)) {
Jesper Dangaard Brouer1ffcbc82018-04-17 16:45:47 +02002616 if (tun_is_xdp_frame(ptr)) {
2617 struct xdp_frame *xdpf = tun_ptr_to_xdp(ptr);
Jason Wangfc72d1d2018-01-04 11:14:28 +08002618
Jesper Dangaard Brouer1ffcbc82018-04-17 16:45:47 +02002619 return xdpf->len;
Jason Wangfc72d1d2018-01-04 11:14:28 +08002620 }
2621 return __skb_array_len_with_tag(ptr);
2622 } else {
2623 return 0;
2624 }
2625}
2626
Jason Wang1576d982016-06-30 14:45:36 +08002627static int tun_peek_len(struct socket *sock)
2628{
2629 struct tun_file *tfile = container_of(sock, struct tun_file, socket);
2630 struct tun_struct *tun;
2631 int ret = 0;
2632
yuan linyu9484dc72017-09-23 22:36:52 +08002633 tun = tun_get(tfile);
Jason Wang1576d982016-06-30 14:45:36 +08002634 if (!tun)
2635 return 0;
2636
Jason Wangfc72d1d2018-01-04 11:14:28 +08002637 ret = PTR_RING_PEEK_CALL(&tfile->tx_ring, tun_ptr_peek_len);
Jason Wang1576d982016-06-30 14:45:36 +08002638 tun_put(tun);
2639
2640 return ret;
2641}
2642
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00002643/* Ops structure to mimic raw sockets with tun */
2644static const struct proto_ops tun_socket_ops = {
Jason Wang1576d982016-06-30 14:45:36 +08002645 .peek_len = tun_peek_len,
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00002646 .sendmsg = tun_sendmsg,
2647 .recvmsg = tun_recvmsg,
2648};
2649
Herbert Xu33dccbb2009-02-05 21:25:32 -08002650static struct proto tun_proto = {
2651 .name = "tun",
2652 .owner = THIS_MODULE,
Jason Wang54f968d2012-10-31 19:45:57 +00002653 .obj_size = sizeof(struct tun_file),
Herbert Xu33dccbb2009-02-05 21:25:32 -08002654};
Eric W. Biedermanf019a7a2009-01-21 16:02:16 -08002655
David Woodhouse980c9e82009-05-09 22:54:21 -07002656static int tun_flags(struct tun_struct *tun)
2657{
Michael S. Tsirkin031f5e02014-11-19 14:44:40 +02002658 return tun->flags & (TUN_FEATURES | IFF_PERSIST | IFF_TUN | IFF_TAP);
David Woodhouse980c9e82009-05-09 22:54:21 -07002659}
2660
2661static ssize_t tun_show_flags(struct device *dev, struct device_attribute *attr,
2662 char *buf)
2663{
2664 struct tun_struct *tun = netdev_priv(to_net_dev(dev));
2665 return sprintf(buf, "0x%x\n", tun_flags(tun));
2666}
2667
2668static ssize_t tun_show_owner(struct device *dev, struct device_attribute *attr,
2669 char *buf)
2670{
2671 struct tun_struct *tun = netdev_priv(to_net_dev(dev));
Eric W. Biederman0625c882012-02-07 16:48:55 -08002672 return uid_valid(tun->owner)?
2673 sprintf(buf, "%u\n",
2674 from_kuid_munged(current_user_ns(), tun->owner)):
2675 sprintf(buf, "-1\n");
David Woodhouse980c9e82009-05-09 22:54:21 -07002676}
2677
2678static ssize_t tun_show_group(struct device *dev, struct device_attribute *attr,
2679 char *buf)
2680{
2681 struct tun_struct *tun = netdev_priv(to_net_dev(dev));
Eric W. Biederman0625c882012-02-07 16:48:55 -08002682 return gid_valid(tun->group) ?
2683 sprintf(buf, "%u\n",
2684 from_kgid_munged(current_user_ns(), tun->group)):
2685 sprintf(buf, "-1\n");
David Woodhouse980c9e82009-05-09 22:54:21 -07002686}
2687
2688static DEVICE_ATTR(tun_flags, 0444, tun_show_flags, NULL);
2689static DEVICE_ATTR(owner, 0444, tun_show_owner, NULL);
2690static DEVICE_ATTR(group, 0444, tun_show_group, NULL);
2691
Takashi Iwaic4d33e22015-02-04 14:37:34 +01002692static struct attribute *tun_dev_attrs[] = {
2693 &dev_attr_tun_flags.attr,
2694 &dev_attr_owner.attr,
2695 &dev_attr_group.attr,
2696 NULL
2697};
2698
2699static const struct attribute_group tun_attr_group = {
2700 .attrs = tun_dev_attrs
2701};
2702
Pavel Emelyanovd647a592008-04-16 00:41:16 -07002703static int tun_set_iff(struct net *net, struct file *file, struct ifreq *ifr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002704{
2705 struct tun_struct *tun;
Jason Wang54f968d2012-10-31 19:45:57 +00002706 struct tun_file *tfile = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002707 struct net_device *dev;
2708 int err;
2709
Jason Wang7c0c3b12013-01-11 16:59:33 +00002710 if (tfile->detached)
2711 return -EINVAL;
2712
Petar Penkov90e33d42017-09-22 13:49:15 -07002713 if ((ifr->ifr_flags & IFF_NAPI_FRAGS)) {
2714 if (!capable(CAP_NET_ADMIN))
2715 return -EPERM;
2716
2717 if (!(ifr->ifr_flags & IFF_NAPI) ||
2718 (ifr->ifr_flags & TUN_TYPE_MASK) != IFF_TAP)
2719 return -EINVAL;
2720 }
2721
Eric W. Biederman74a3e5a2009-01-20 10:56:20 +00002722 dev = __dev_get_by_name(net, ifr->ifr_name);
2723 if (dev) {
David Woodhousef85ba782009-04-27 03:23:54 -07002724 if (ifr->ifr_flags & IFF_TUN_EXCL)
2725 return -EBUSY;
Eric W. Biederman74a3e5a2009-01-20 10:56:20 +00002726 if ((ifr->ifr_flags & IFF_TUN) && dev->netdev_ops == &tun_netdev_ops)
2727 tun = netdev_priv(dev);
2728 else if ((ifr->ifr_flags & IFF_TAP) && dev->netdev_ops == &tap_netdev_ops)
2729 tun = netdev_priv(dev);
2730 else
2731 return -EINVAL;
2732
Jason Wang8e6d91a2013-05-28 18:32:11 +00002733 if (!!(ifr->ifr_flags & IFF_MULTI_QUEUE) !=
Michael S. Tsirkin40630b82014-11-19 15:17:31 +02002734 !!(tun->flags & IFF_MULTI_QUEUE))
Jason Wang8e6d91a2013-05-28 18:32:11 +00002735 return -EINVAL;
2736
Jason Wangcde8b152012-10-31 19:46:01 +00002737 if (tun_not_capable(tun))
Paul Moore2b980db2009-08-28 18:12:43 -04002738 return -EPERM;
Paul Moore5dbbaf22013-01-14 07:12:19 +00002739 err = security_tun_dev_open(tun->security);
Paul Moore2b980db2009-08-28 18:12:43 -04002740 if (err < 0)
2741 return err;
2742
Petar Penkov94317092017-09-22 13:49:14 -07002743 err = tun_attach(tun, file, ifr->ifr_flags & IFF_NOFILTER,
Eric Dumazetaf3fb242018-09-28 14:51:49 -07002744 ifr->ifr_flags & IFF_NAPI,
2745 ifr->ifr_flags & IFF_NAPI_FRAGS);
Eric W. Biedermana7385ba2009-01-20 10:57:48 +00002746 if (err < 0)
2747 return err;
Jason Wang4008e972012-12-13 23:53:30 +00002748
Michael S. Tsirkin40630b82014-11-19 15:17:31 +02002749 if (tun->flags & IFF_MULTI_QUEUE &&
Jason Wange8dbad62013-04-22 20:40:39 +00002750 (tun->numqueues + tun->numdisabled > 1)) {
2751 /* One or more queue has already been attached, no need
2752 * to initialize the device again.
2753 */
Sabrina Dubroca83c1f362018-04-10 16:28:56 +02002754 netdev_state_change(dev);
Jason Wange8dbad62013-04-22 20:40:39 +00002755 return 0;
2756 }
Sabrina Dubroca9fffc5c2018-04-10 16:28:55 +02002757
2758 tun->flags = (tun->flags & ~TUN_FEATURES) |
2759 (ifr->ifr_flags & TUN_FEATURES);
Sabrina Dubroca83c1f362018-04-10 16:28:56 +02002760
2761 netdev_state_change(dev);
2762 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002763 char *name;
2764 unsigned long flags = 0;
Jason Wangedfb6a12013-01-23 03:59:12 +00002765 int queues = ifr->ifr_flags & IFF_MULTI_QUEUE ?
2766 MAX_TAP_QUEUES : 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002767
Eric W. Biedermanc260b772012-11-18 21:34:11 +00002768 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
David Woodhouseca6bb5d2006-06-22 16:07:52 -07002769 return -EPERM;
Paul Moore2b980db2009-08-28 18:12:43 -04002770 err = security_tun_dev_create();
2771 if (err < 0)
2772 return err;
David Woodhouseca6bb5d2006-06-22 16:07:52 -07002773
Linus Torvalds1da177e2005-04-16 15:20:36 -07002774 /* Set dev type */
2775 if (ifr->ifr_flags & IFF_TUN) {
2776 /* TUN device */
Michael S. Tsirkin40630b82014-11-19 15:17:31 +02002777 flags |= IFF_TUN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002778 name = "tun%d";
2779 } else if (ifr->ifr_flags & IFF_TAP) {
2780 /* TAP device */
Michael S. Tsirkin40630b82014-11-19 15:17:31 +02002781 flags |= IFF_TAP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002782 name = "tap%d";
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002783 } else
Kusanagi Kouichi36989b92009-09-16 21:36:13 +00002784 return -EINVAL;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002785
Linus Torvalds1da177e2005-04-16 15:20:36 -07002786 if (*ifr->ifr_name)
2787 name = ifr->ifr_name;
2788
Jason Wangc8d68e62012-10-31 19:46:00 +00002789 dev = alloc_netdev_mqs(sizeof(struct tun_struct), name,
Tom Gundersenc835a672014-07-14 16:37:24 +02002790 NET_NAME_UNKNOWN, tun_setup, queues,
2791 queues);
Jason Wangedfb6a12013-01-23 03:59:12 +00002792
Linus Torvalds1da177e2005-04-16 15:20:36 -07002793 if (!dev)
2794 return -ENOMEM;
Cong Wang0ad646c2017-10-13 11:58:53 -07002795 err = dev_get_valid_name(net, dev, name);
Julien Gomes5c25f652017-10-25 11:50:50 -07002796 if (err < 0)
Cong Wang0ad646c2017-10-13 11:58:53 -07002797 goto err_free_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002798
Pavel Emelyanovfc54c652008-04-16 00:41:53 -07002799 dev_net_set(dev, net);
Eric W. Biedermanf019a7a2009-01-21 16:02:16 -08002800 dev->rtnl_link_ops = &tun_link_ops;
Pavel Emelyanovfb7589a2013-08-21 14:31:38 +04002801 dev->ifindex = tfile->ifindex;
Takashi Iwaic4d33e22015-02-04 14:37:34 +01002802 dev->sysfs_groups[0] = &tun_attr_group;
Stephen Hemminger758e43b2008-11-19 22:10:37 -08002803
Linus Torvalds1da177e2005-04-16 15:20:36 -07002804 tun = netdev_priv(dev);
2805 tun->dev = dev;
2806 tun->flags = flags;
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -07002807 tun->txflt.count = 0;
Michael S. Tsirkind9d52b52010-03-17 17:45:01 +02002808 tun->vnet_hdr_sz = sizeof(struct virtio_net_hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002809
Paolo Abenieaea34b2016-02-26 10:45:40 +01002810 tun->align = NET_SKB_PAD;
Jason Wang54f968d2012-10-31 19:45:57 +00002811 tun->filter_attached = false;
2812 tun->sndbuf = tfile->socket.sk->sk_sndbuf;
Jason Wang5503fce2017-01-18 15:02:03 +08002813 tun->rx_batched = 0;
Jason Wang96f84062017-12-04 17:31:23 +08002814 RCU_INIT_POINTER(tun->steering_prog, NULL);
Herbert Xu33dccbb2009-02-05 21:25:32 -08002815
Paolo Abeni608b9972016-04-13 10:52:20 +02002816 tun->pcpu_stats = netdev_alloc_pcpu_stats(struct tun_pcpu_stats);
2817 if (!tun->pcpu_stats) {
2818 err = -ENOMEM;
2819 goto err_free_dev;
2820 }
2821
Jason Wang96442e422012-10-31 19:46:02 +00002822 spin_lock_init(&tun->lock);
2823
Paul Moore5dbbaf22013-01-14 07:12:19 +00002824 err = security_tun_dev_alloc_security(&tun->security);
2825 if (err < 0)
Paolo Abeni608b9972016-04-13 10:52:20 +02002826 goto err_free_stat;
Paul Moore2b980db2009-08-28 18:12:43 -04002827
Linus Torvalds1da177e2005-04-16 15:20:36 -07002828 tun_net_init(dev);
Pavel Emelyanov944a1372013-06-11 17:01:08 +04002829 tun_flow_init(tun);
Jason Wang96442e422012-10-31 19:46:02 +00002830
Michał Mirosław88255372011-04-19 06:13:10 +00002831 dev->hw_features = NETIF_F_SG | NETIF_F_FRAGLIST |
Jason Wang6680ec62013-07-25 13:00:33 +08002832 TUN_USER_FEATURES | NETIF_F_HW_VLAN_CTAG_TX |
2833 NETIF_F_HW_VLAN_STAG_TX;
Paolo Abeni2a2bbf12016-04-14 18:39:39 +02002834 dev->features = dev->hw_features | NETIF_F_LLTX;
Fernando Luis Vazquez Cao6671b222014-02-18 21:20:09 +09002835 dev->vlan_features = dev->features &
2836 ~(NETIF_F_HW_VLAN_CTAG_TX |
2837 NETIF_F_HW_VLAN_STAG_TX);
Michał Mirosław88255372011-04-19 06:13:10 +00002838
Sabrina Dubroca9fffc5c2018-04-10 16:28:55 +02002839 tun->flags = (tun->flags & ~TUN_FEATURES) |
2840 (ifr->ifr_flags & TUN_FEATURES);
2841
Jason Wang4008e972012-12-13 23:53:30 +00002842 INIT_LIST_HEAD(&tun->disabled);
Eric Dumazetaf3fb242018-09-28 14:51:49 -07002843 err = tun_attach(tun, file, false, ifr->ifr_flags & IFF_NAPI,
2844 ifr->ifr_flags & IFF_NAPI_FRAGS);
Jason Wangeb0fb362012-12-02 17:19:45 +00002845 if (err < 0)
Jason Wang662ca432013-09-11 18:09:48 +08002846 goto err_free_flow;
Jason Wangeb0fb362012-12-02 17:19:45 +00002847
Linus Torvalds1da177e2005-04-16 15:20:36 -07002848 err = register_netdevice(tun->dev);
2849 if (err < 0)
Jason Wang662ca432013-09-11 18:09:48 +08002850 goto err_detach;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002851 }
2852
Michael S. Tsirkinaf668b32013-01-28 00:38:02 +00002853 netif_carrier_on(tun->dev);
2854
Joe Perches6b8a66e2011-03-02 07:18:10 +00002855 tun_debug(KERN_INFO, tun, "tun_set_iff\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002856
Max Krasnyanskye35259a2008-07-10 16:59:11 -07002857 /* Make sure persistent devices do not get stuck in
2858 * xoff state.
2859 */
2860 if (netif_running(tun->dev))
Jason Wangc8d68e62012-10-31 19:46:00 +00002861 netif_tx_wake_all_queues(tun->dev);
Max Krasnyanskye35259a2008-07-10 16:59:11 -07002862
Linus Torvalds1da177e2005-04-16 15:20:36 -07002863 strcpy(ifr->ifr_name, tun->dev->name);
2864 return 0;
2865
Jason Wang662ca432013-09-11 18:09:48 +08002866err_detach:
2867 tun_detach_all(dev);
Eric Dumazetff244c62017-08-18 13:39:56 -07002868 /* register_netdevice() already called tun_free_netdev() */
2869 goto err_free_dev;
2870
Jason Wang662ca432013-09-11 18:09:48 +08002871err_free_flow:
2872 tun_flow_uninit(tun);
2873 security_tun_dev_free_security(tun->security);
Paolo Abeni608b9972016-04-13 10:52:20 +02002874err_free_stat:
2875 free_percpu(tun->pcpu_stats);
Jason Wang662ca432013-09-11 18:09:48 +08002876err_free_dev:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002877 free_netdev(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002878 return err;
2879}
2880
Kirill Tkhai12132762019-03-20 12:16:53 +03002881static void tun_get_iff(struct tun_struct *tun, struct ifreq *ifr)
Mark McLoughline3b99552008-08-15 15:09:56 -07002882{
Joe Perches6b8a66e2011-03-02 07:18:10 +00002883 tun_debug(KERN_INFO, tun, "tun_get_iff\n");
Mark McLoughline3b99552008-08-15 15:09:56 -07002884
2885 strcpy(ifr->ifr_name, tun->dev->name);
2886
David Woodhouse980c9e82009-05-09 22:54:21 -07002887 ifr->ifr_flags = tun_flags(tun);
Mark McLoughline3b99552008-08-15 15:09:56 -07002888
Mark McLoughline3b99552008-08-15 15:09:56 -07002889}
2890
Rusty Russell5228ddc2008-07-03 03:46:16 -07002891/* This is like a cut-down ethtool ops, except done via tun fd so no
2892 * privs required. */
Michał Mirosław88255372011-04-19 06:13:10 +00002893static int set_offload(struct tun_struct *tun, unsigned long arg)
Rusty Russell5228ddc2008-07-03 03:46:16 -07002894{
Michał Mirosławc8f44af2011-11-15 15:29:55 +00002895 netdev_features_t features = 0;
Rusty Russell5228ddc2008-07-03 03:46:16 -07002896
2897 if (arg & TUN_F_CSUM) {
Michał Mirosław88255372011-04-19 06:13:10 +00002898 features |= NETIF_F_HW_CSUM;
Rusty Russell5228ddc2008-07-03 03:46:16 -07002899 arg &= ~TUN_F_CSUM;
2900
2901 if (arg & (TUN_F_TSO4|TUN_F_TSO6)) {
2902 if (arg & TUN_F_TSO_ECN) {
2903 features |= NETIF_F_TSO_ECN;
2904 arg &= ~TUN_F_TSO_ECN;
2905 }
2906 if (arg & TUN_F_TSO4)
2907 features |= NETIF_F_TSO;
2908 if (arg & TUN_F_TSO6)
2909 features |= NETIF_F_TSO6;
2910 arg &= ~(TUN_F_TSO4|TUN_F_TSO6);
2911 }
Willem de Bruijn0c19f8462017-11-21 10:22:25 -05002912
2913 arg &= ~TUN_F_UFO;
Rusty Russell5228ddc2008-07-03 03:46:16 -07002914 }
2915
2916 /* This gives the user a way to test for new features in future by
2917 * trying to set them. */
2918 if (arg)
2919 return -EINVAL;
2920
Michał Mirosław88255372011-04-19 06:13:10 +00002921 tun->set_features = features;
Yaroslav Isakov09050952017-03-16 22:44:10 +03002922 tun->dev->wanted_features &= ~TUN_USER_FEATURES;
2923 tun->dev->wanted_features |= features;
Michał Mirosław88255372011-04-19 06:13:10 +00002924 netdev_update_features(tun->dev);
Rusty Russell5228ddc2008-07-03 03:46:16 -07002925
2926 return 0;
2927}
2928
Jason Wangc8d68e62012-10-31 19:46:00 +00002929static void tun_detach_filter(struct tun_struct *tun, int n)
2930{
2931 int i;
2932 struct tun_file *tfile;
2933
2934 for (i = 0; i < n; i++) {
Jason Wangb8deabd2013-01-11 16:59:32 +00002935 tfile = rtnl_dereference(tun->tfiles[i]);
Hannes Frederic Sowa8ced4252016-04-05 17:10:16 +02002936 lock_sock(tfile->socket.sk);
2937 sk_detach_filter(tfile->socket.sk);
2938 release_sock(tfile->socket.sk);
Jason Wangc8d68e62012-10-31 19:46:00 +00002939 }
2940
2941 tun->filter_attached = false;
2942}
2943
2944static int tun_attach_filter(struct tun_struct *tun)
2945{
2946 int i, ret = 0;
2947 struct tun_file *tfile;
2948
2949 for (i = 0; i < tun->numqueues; i++) {
Jason Wangb8deabd2013-01-11 16:59:32 +00002950 tfile = rtnl_dereference(tun->tfiles[i]);
Hannes Frederic Sowa8ced4252016-04-05 17:10:16 +02002951 lock_sock(tfile->socket.sk);
2952 ret = sk_attach_filter(&tun->fprog, tfile->socket.sk);
2953 release_sock(tfile->socket.sk);
Jason Wangc8d68e62012-10-31 19:46:00 +00002954 if (ret) {
2955 tun_detach_filter(tun, i);
2956 return ret;
2957 }
2958 }
2959
2960 tun->filter_attached = true;
2961 return ret;
2962}
2963
2964static void tun_set_sndbuf(struct tun_struct *tun)
2965{
2966 struct tun_file *tfile;
2967 int i;
2968
2969 for (i = 0; i < tun->numqueues; i++) {
Jason Wangb8deabd2013-01-11 16:59:32 +00002970 tfile = rtnl_dereference(tun->tfiles[i]);
Jason Wangc8d68e62012-10-31 19:46:00 +00002971 tfile->socket.sk->sk_sndbuf = tun->sndbuf;
2972 }
2973}
2974
Jason Wangcde8b152012-10-31 19:46:01 +00002975static int tun_set_queue(struct file *file, struct ifreq *ifr)
2976{
2977 struct tun_file *tfile = file->private_data;
2978 struct tun_struct *tun;
Jason Wangcde8b152012-10-31 19:46:01 +00002979 int ret = 0;
2980
2981 rtnl_lock();
2982
2983 if (ifr->ifr_flags & IFF_ATTACH_QUEUE) {
Jason Wang4008e972012-12-13 23:53:30 +00002984 tun = tfile->detached;
Paul Moore5dbbaf22013-01-14 07:12:19 +00002985 if (!tun) {
Jason Wangcde8b152012-10-31 19:46:01 +00002986 ret = -EINVAL;
Paul Moore5dbbaf22013-01-14 07:12:19 +00002987 goto unlock;
2988 }
2989 ret = security_tun_dev_attach_queue(tun->security);
2990 if (ret < 0)
2991 goto unlock;
Eric Dumazetaf3fb242018-09-28 14:51:49 -07002992 ret = tun_attach(tun, file, false, tun->flags & IFF_NAPI,
2993 tun->flags & IFF_NAPI_FRAGS);
Jason Wang4008e972012-12-13 23:53:30 +00002994 } else if (ifr->ifr_flags & IFF_DETACH_QUEUE) {
Jason Wangb8deabd2013-01-11 16:59:32 +00002995 tun = rtnl_dereference(tfile->tun);
Michael S. Tsirkin40630b82014-11-19 15:17:31 +02002996 if (!tun || !(tun->flags & IFF_MULTI_QUEUE) || tfile->detached)
Jason Wang4008e972012-12-13 23:53:30 +00002997 ret = -EINVAL;
2998 else
2999 __tun_detach(tfile, false);
3000 } else
Jason Wangcde8b152012-10-31 19:46:01 +00003001 ret = -EINVAL;
3002
Sabrina Dubroca83c1f362018-04-10 16:28:56 +02003003 if (ret >= 0)
3004 netdev_state_change(tun->dev);
3005
Paul Moore5dbbaf22013-01-14 07:12:19 +00003006unlock:
Jason Wangcde8b152012-10-31 19:46:01 +00003007 rtnl_unlock();
3008 return ret;
3009}
3010
Jason Wangcd5681d2018-01-16 16:31:01 +08003011static int tun_set_ebpf(struct tun_struct *tun, struct tun_prog **prog_p,
3012 void __user *data)
Jason Wang96f84062017-12-04 17:31:23 +08003013{
3014 struct bpf_prog *prog;
3015 int fd;
3016
3017 if (copy_from_user(&fd, data, sizeof(fd)))
3018 return -EFAULT;
3019
3020 if (fd == -1) {
3021 prog = NULL;
3022 } else {
3023 prog = bpf_prog_get_type(fd, BPF_PROG_TYPE_SOCKET_FILTER);
3024 if (IS_ERR(prog))
3025 return PTR_ERR(prog);
3026 }
3027
Jason Wangcd5681d2018-01-16 16:31:01 +08003028 return __tun_set_ebpf(tun, prog_p, prog);
Jason Wang96f84062017-12-04 17:31:23 +08003029}
3030
Arnd Bergmann50857e22009-11-06 22:52:32 -08003031static long __tun_chr_ioctl(struct file *file, unsigned int cmd,
3032 unsigned long arg, int ifreq_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003033{
Eric W. Biederman36b50ba2009-01-20 11:01:48 +00003034 struct tun_file *tfile = file->private_data;
Kirill Tkhaif6637062018-05-08 19:21:34 +03003035 struct net *net = sock_net(&tfile->sk);
Eric W. Biederman631ab462009-01-20 11:00:40 +00003036 struct tun_struct *tun;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003037 void __user* argp = (void __user*)arg;
Nicolas Dichtel26d31922018-11-28 19:12:56 +01003038 unsigned int ifindex, carrier;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003039 struct ifreq ifr;
Eric W. Biederman0625c882012-02-07 16:48:55 -08003040 kuid_t owner;
3041 kgid_t group;
Herbert Xu33dccbb2009-02-05 21:25:32 -08003042 int sndbuf;
Michael S. Tsirkind9d52b52010-03-17 17:45:01 +02003043 int vnet_hdr_sz;
Michael S. Tsirkin1cf8e412014-12-16 15:05:06 +02003044 int le;
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -07003045 int ret;
Sabrina Dubroca83c1f362018-04-10 16:28:56 +02003046 bool do_notify = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003047
Kirill Tkhaif2780d62018-02-14 16:40:14 +03003048 if (cmd == TUNSETIFF || cmd == TUNSETQUEUE ||
3049 (_IOC_TYPE(cmd) == SOCK_IOC_TYPE && cmd != SIOCGSKNS)) {
Arnd Bergmann50857e22009-11-06 22:52:32 -08003050 if (copy_from_user(&ifr, argp, ifreq_len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003051 return -EFAULT;
David S. Miller8bbb1812012-07-30 14:52:48 -07003052 } else {
Mathias Krausea117dac2012-07-29 19:45:14 +00003053 memset(&ifr, 0, sizeof(ifr));
David S. Miller8bbb1812012-07-30 14:52:48 -07003054 }
Eric W. Biederman631ab462009-01-20 11:00:40 +00003055 if (cmd == TUNGETFEATURES) {
3056 /* Currently this just means: "what IFF flags are valid?".
3057 * This is needed because we never checked for invalid flags on
Michael S. Tsirkin031f5e02014-11-19 14:44:40 +02003058 * TUNSETIFF.
3059 */
3060 return put_user(IFF_TUN | IFF_TAP | TUN_FEATURES,
Eric W. Biederman631ab462009-01-20 11:00:40 +00003061 (unsigned int __user*)argp);
Kirill Tkhaif6637062018-05-08 19:21:34 +03003062 } else if (cmd == TUNSETQUEUE) {
Jason Wangcde8b152012-10-31 19:46:01 +00003063 return tun_set_queue(file, &ifr);
Kirill Tkhaif6637062018-05-08 19:21:34 +03003064 } else if (cmd == SIOCGSKNS) {
3065 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
3066 return -EPERM;
3067 return open_related_ns(&net->ns, get_net_ns);
3068 }
Eric W. Biederman631ab462009-01-20 11:00:40 +00003069
Jason Wangc8d68e62012-10-31 19:46:00 +00003070 ret = 0;
Herbert Xu876bfd42009-08-06 14:22:44 +00003071 rtnl_lock();
3072
yuan linyu9484dc72017-09-23 22:36:52 +08003073 tun = tun_get(tfile);
Gao Feng0f16bc12016-10-25 22:26:09 +08003074 if (cmd == TUNSETIFF) {
3075 ret = -EEXIST;
3076 if (tun)
3077 goto unlock;
3078
Linus Torvalds1da177e2005-04-16 15:20:36 -07003079 ifr.ifr_name[IFNAMSIZ-1] = '\0';
3080
Kirill Tkhaif2780d62018-02-14 16:40:14 +03003081 ret = tun_set_iff(net, file, &ifr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003082
Herbert Xu876bfd42009-08-06 14:22:44 +00003083 if (ret)
3084 goto unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003085
Arnd Bergmann50857e22009-11-06 22:52:32 -08003086 if (copy_to_user(argp, &ifr, ifreq_len))
Herbert Xu876bfd42009-08-06 14:22:44 +00003087 ret = -EFAULT;
3088 goto unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003089 }
Pavel Emelyanovfb7589a2013-08-21 14:31:38 +04003090 if (cmd == TUNSETIFINDEX) {
3091 ret = -EPERM;
3092 if (tun)
3093 goto unlock;
3094
3095 ret = -EFAULT;
3096 if (copy_from_user(&ifindex, argp, sizeof(ifindex)))
3097 goto unlock;
3098
3099 ret = 0;
3100 tfile->ifindex = ifindex;
3101 goto unlock;
3102 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003103
Herbert Xu876bfd42009-08-06 14:22:44 +00003104 ret = -EBADFD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003105 if (!tun)
Herbert Xu876bfd42009-08-06 14:22:44 +00003106 goto unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003107
Jason Wang1e588332012-10-31 19:45:56 +00003108 tun_debug(KERN_INFO, tun, "tun_chr_ioctl cmd %u\n", cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003109
Kirill Tkhai0c3e0e32019-03-20 12:16:42 +03003110 net = dev_net(tun->dev);
Eric W. Biederman631ab462009-01-20 11:00:40 +00003111 ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003112 switch (cmd) {
Mark McLoughline3b99552008-08-15 15:09:56 -07003113 case TUNGETIFF:
Kirill Tkhai12132762019-03-20 12:16:53 +03003114 tun_get_iff(tun, &ifr);
Mark McLoughline3b99552008-08-15 15:09:56 -07003115
Pavel Emelyanov3d407a82013-08-21 14:32:00 +04003116 if (tfile->detached)
3117 ifr.ifr_flags |= IFF_DETACH_QUEUE;
Pavel Emelyanov849c9b62013-08-21 14:32:21 +04003118 if (!tfile->socket.sk->sk_filter)
3119 ifr.ifr_flags |= IFF_NOFILTER;
Pavel Emelyanov3d407a82013-08-21 14:32:00 +04003120
Arnd Bergmann50857e22009-11-06 22:52:32 -08003121 if (copy_to_user(argp, &ifr, ifreq_len))
Eric W. Biederman631ab462009-01-20 11:00:40 +00003122 ret = -EFAULT;
Mark McLoughline3b99552008-08-15 15:09:56 -07003123 break;
3124
Linus Torvalds1da177e2005-04-16 15:20:36 -07003125 case TUNSETNOCSUM:
3126 /* Disable/Enable checksum */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003127
Michał Mirosław88255372011-04-19 06:13:10 +00003128 /* [unimplemented] */
3129 tun_debug(KERN_INFO, tun, "ignored: set checksum %s\n",
Joe Perches6b8a66e2011-03-02 07:18:10 +00003130 arg ? "disabled" : "enabled");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003131 break;
3132
3133 case TUNSETPERSIST:
Jason Wang54f968d2012-10-31 19:45:57 +00003134 /* Disable/Enable persist mode. Keep an extra reference to the
3135 * module to prevent the module being unprobed.
3136 */
Michael S. Tsirkin40630b82014-11-19 15:17:31 +02003137 if (arg && !(tun->flags & IFF_PERSIST)) {
3138 tun->flags |= IFF_PERSIST;
Jason Wang54f968d2012-10-31 19:45:57 +00003139 __module_get(THIS_MODULE);
Sabrina Dubroca83c1f362018-04-10 16:28:56 +02003140 do_notify = true;
Jason Wangdd38bd82013-01-11 16:59:34 +00003141 }
Michael S. Tsirkin40630b82014-11-19 15:17:31 +02003142 if (!arg && (tun->flags & IFF_PERSIST)) {
3143 tun->flags &= ~IFF_PERSIST;
Jason Wang54f968d2012-10-31 19:45:57 +00003144 module_put(THIS_MODULE);
Sabrina Dubroca83c1f362018-04-10 16:28:56 +02003145 do_notify = true;
Jason Wang54f968d2012-10-31 19:45:57 +00003146 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003147
Joe Perches6b8a66e2011-03-02 07:18:10 +00003148 tun_debug(KERN_INFO, tun, "persist %s\n",
3149 arg ? "enabled" : "disabled");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003150 break;
3151
3152 case TUNSETOWNER:
3153 /* Set owner of the device */
Eric W. Biederman0625c882012-02-07 16:48:55 -08003154 owner = make_kuid(current_user_ns(), arg);
3155 if (!uid_valid(owner)) {
3156 ret = -EINVAL;
3157 break;
3158 }
3159 tun->owner = owner;
Sabrina Dubroca83c1f362018-04-10 16:28:56 +02003160 do_notify = true;
Jason Wang1e588332012-10-31 19:45:56 +00003161 tun_debug(KERN_INFO, tun, "owner set to %u\n",
Eric W. Biederman0625c882012-02-07 16:48:55 -08003162 from_kuid(&init_user_ns, tun->owner));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003163 break;
3164
Guido Guenther8c644622007-07-02 22:50:25 -07003165 case TUNSETGROUP:
3166 /* Set group of the device */
Eric W. Biederman0625c882012-02-07 16:48:55 -08003167 group = make_kgid(current_user_ns(), arg);
3168 if (!gid_valid(group)) {
3169 ret = -EINVAL;
3170 break;
3171 }
3172 tun->group = group;
Sabrina Dubroca83c1f362018-04-10 16:28:56 +02003173 do_notify = true;
Jason Wang1e588332012-10-31 19:45:56 +00003174 tun_debug(KERN_INFO, tun, "group set to %u\n",
Eric W. Biederman0625c882012-02-07 16:48:55 -08003175 from_kgid(&init_user_ns, tun->group));
Guido Guenther8c644622007-07-02 22:50:25 -07003176 break;
3177
Mike Kershawff4cc3a2005-09-01 17:40:05 -07003178 case TUNSETLINK:
3179 /* Only allow setting the type when the interface is down */
3180 if (tun->dev->flags & IFF_UP) {
Joe Perches6b8a66e2011-03-02 07:18:10 +00003181 tun_debug(KERN_INFO, tun,
3182 "Linktype set failed because interface is up\n");
David S. Miller48abfe02008-04-23 19:37:58 -07003183 ret = -EBUSY;
Mike Kershawff4cc3a2005-09-01 17:40:05 -07003184 } else {
3185 tun->dev->type = (int) arg;
Joe Perches6b8a66e2011-03-02 07:18:10 +00003186 tun_debug(KERN_INFO, tun, "linktype set to %d\n",
3187 tun->dev->type);
David S. Miller48abfe02008-04-23 19:37:58 -07003188 ret = 0;
Mike Kershawff4cc3a2005-09-01 17:40:05 -07003189 }
Eric W. Biederman631ab462009-01-20 11:00:40 +00003190 break;
Mike Kershawff4cc3a2005-09-01 17:40:05 -07003191
Linus Torvalds1da177e2005-04-16 15:20:36 -07003192#ifdef TUN_DEBUG
3193 case TUNSETDEBUG:
3194 tun->debug = arg;
3195 break;
3196#endif
Rusty Russell5228ddc2008-07-03 03:46:16 -07003197 case TUNSETOFFLOAD:
Michał Mirosław88255372011-04-19 06:13:10 +00003198 ret = set_offload(tun, arg);
Eric W. Biederman631ab462009-01-20 11:00:40 +00003199 break;
Rusty Russell5228ddc2008-07-03 03:46:16 -07003200
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -07003201 case TUNSETTXFILTER:
3202 /* Can be set only for TAPs */
Eric W. Biederman631ab462009-01-20 11:00:40 +00003203 ret = -EINVAL;
Michael S. Tsirkin40630b82014-11-19 15:17:31 +02003204 if ((tun->flags & TUN_TYPE_MASK) != IFF_TAP)
Eric W. Biederman631ab462009-01-20 11:00:40 +00003205 break;
Harvey Harrisonc0e5a8c2008-07-16 12:45:34 -07003206 ret = update_filter(&tun->txflt, (void __user *)arg);
Eric W. Biederman631ab462009-01-20 11:00:40 +00003207 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003208
3209 case SIOCGIFHWADDR:
Uwe Kleine-Königb5950762010-11-01 15:38:34 -04003210 /* Get hw address */
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -07003211 memcpy(ifr.ifr_hwaddr.sa_data, tun->dev->dev_addr, ETH_ALEN);
3212 ifr.ifr_hwaddr.sa_family = tun->dev->type;
Arnd Bergmann50857e22009-11-06 22:52:32 -08003213 if (copy_to_user(argp, &ifr, ifreq_len))
Eric W. Biederman631ab462009-01-20 11:00:40 +00003214 ret = -EFAULT;
3215 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003216
3217 case SIOCSIFHWADDR:
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -07003218 /* Set hw address */
Joe Perches6b8a66e2011-03-02 07:18:10 +00003219 tun_debug(KERN_DEBUG, tun, "set hw address: %pM\n",
3220 ifr.ifr_hwaddr.sa_data);
Kim B. Heino40102372008-02-29 12:26:21 -08003221
Petr Machata3a37a962018-12-13 11:54:30 +00003222 ret = dev_set_mac_address(tun->dev, &ifr.ifr_hwaddr, NULL);
Eric W. Biederman631ab462009-01-20 11:00:40 +00003223 break;
Herbert Xu33dccbb2009-02-05 21:25:32 -08003224
3225 case TUNGETSNDBUF:
Jason Wang54f968d2012-10-31 19:45:57 +00003226 sndbuf = tfile->socket.sk->sk_sndbuf;
Herbert Xu33dccbb2009-02-05 21:25:32 -08003227 if (copy_to_user(argp, &sndbuf, sizeof(sndbuf)))
3228 ret = -EFAULT;
3229 break;
3230
3231 case TUNSETSNDBUF:
3232 if (copy_from_user(&sndbuf, argp, sizeof(sndbuf))) {
3233 ret = -EFAULT;
3234 break;
3235 }
Craig Gallek931619222017-10-30 18:50:11 -04003236 if (sndbuf <= 0) {
3237 ret = -EINVAL;
3238 break;
3239 }
Herbert Xu33dccbb2009-02-05 21:25:32 -08003240
Jason Wangc8d68e62012-10-31 19:46:00 +00003241 tun->sndbuf = sndbuf;
3242 tun_set_sndbuf(tun);
Herbert Xu33dccbb2009-02-05 21:25:32 -08003243 break;
3244
Michael S. Tsirkind9d52b52010-03-17 17:45:01 +02003245 case TUNGETVNETHDRSZ:
3246 vnet_hdr_sz = tun->vnet_hdr_sz;
3247 if (copy_to_user(argp, &vnet_hdr_sz, sizeof(vnet_hdr_sz)))
3248 ret = -EFAULT;
3249 break;
3250
3251 case TUNSETVNETHDRSZ:
3252 if (copy_from_user(&vnet_hdr_sz, argp, sizeof(vnet_hdr_sz))) {
3253 ret = -EFAULT;
3254 break;
3255 }
3256 if (vnet_hdr_sz < (int)sizeof(struct virtio_net_hdr)) {
3257 ret = -EINVAL;
3258 break;
3259 }
3260
3261 tun->vnet_hdr_sz = vnet_hdr_sz;
3262 break;
3263
Michael S. Tsirkin1cf8e412014-12-16 15:05:06 +02003264 case TUNGETVNETLE:
3265 le = !!(tun->flags & TUN_VNET_LE);
3266 if (put_user(le, (int __user *)argp))
3267 ret = -EFAULT;
3268 break;
3269
3270 case TUNSETVNETLE:
3271 if (get_user(le, (int __user *)argp)) {
3272 ret = -EFAULT;
3273 break;
3274 }
3275 if (le)
3276 tun->flags |= TUN_VNET_LE;
3277 else
3278 tun->flags &= ~TUN_VNET_LE;
3279 break;
3280
Greg Kurz8b8e6582015-04-24 14:50:36 +02003281 case TUNGETVNETBE:
3282 ret = tun_get_vnet_be(tun, argp);
3283 break;
3284
3285 case TUNSETVNETBE:
3286 ret = tun_set_vnet_be(tun, argp);
3287 break;
3288
Michael S. Tsirkin99405162010-02-14 01:01:10 +00003289 case TUNATTACHFILTER:
3290 /* Can be set only for TAPs */
3291 ret = -EINVAL;
Michael S. Tsirkin40630b82014-11-19 15:17:31 +02003292 if ((tun->flags & TUN_TYPE_MASK) != IFF_TAP)
Michael S. Tsirkin99405162010-02-14 01:01:10 +00003293 break;
3294 ret = -EFAULT;
Jason Wang54f968d2012-10-31 19:45:57 +00003295 if (copy_from_user(&tun->fprog, argp, sizeof(tun->fprog)))
Michael S. Tsirkin99405162010-02-14 01:01:10 +00003296 break;
3297
Jason Wangc8d68e62012-10-31 19:46:00 +00003298 ret = tun_attach_filter(tun);
Michael S. Tsirkin99405162010-02-14 01:01:10 +00003299 break;
3300
3301 case TUNDETACHFILTER:
3302 /* Can be set only for TAPs */
3303 ret = -EINVAL;
Michael S. Tsirkin40630b82014-11-19 15:17:31 +02003304 if ((tun->flags & TUN_TYPE_MASK) != IFF_TAP)
Michael S. Tsirkin99405162010-02-14 01:01:10 +00003305 break;
Jason Wangc8d68e62012-10-31 19:46:00 +00003306 ret = 0;
3307 tun_detach_filter(tun, tun->numqueues);
Michael S. Tsirkin99405162010-02-14 01:01:10 +00003308 break;
3309
Pavel Emelyanov76975e92013-08-21 14:32:39 +04003310 case TUNGETFILTER:
3311 ret = -EINVAL;
Michael S. Tsirkin40630b82014-11-19 15:17:31 +02003312 if ((tun->flags & TUN_TYPE_MASK) != IFF_TAP)
Pavel Emelyanov76975e92013-08-21 14:32:39 +04003313 break;
3314 ret = -EFAULT;
3315 if (copy_to_user(argp, &tun->fprog, sizeof(tun->fprog)))
3316 break;
3317 ret = 0;
3318 break;
3319
Jason Wang96f84062017-12-04 17:31:23 +08003320 case TUNSETSTEERINGEBPF:
Jason Wangcd5681d2018-01-16 16:31:01 +08003321 ret = tun_set_ebpf(tun, &tun->steering_prog, argp);
Jason Wang96f84062017-12-04 17:31:23 +08003322 break;
3323
Jason Wangaff3d702018-01-16 16:31:02 +08003324 case TUNSETFILTEREBPF:
3325 ret = tun_set_ebpf(tun, &tun->filter_prog, argp);
3326 break;
3327
Nicolas Dichtel26d31922018-11-28 19:12:56 +01003328 case TUNSETCARRIER:
3329 ret = -EFAULT;
3330 if (copy_from_user(&carrier, argp, sizeof(carrier)))
3331 goto unlock;
3332
3333 ret = tun_net_change_carrier(tun->dev, (bool)carrier);
3334 break;
3335
Kirill Tkhai0c3e0e32019-03-20 12:16:42 +03003336 case TUNGETDEVNETNS:
3337 ret = -EPERM;
3338 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
3339 goto unlock;
3340 ret = open_related_ns(&net->ns, get_net_ns);
3341 break;
3342
Linus Torvalds1da177e2005-04-16 15:20:36 -07003343 default:
Eric W. Biederman631ab462009-01-20 11:00:40 +00003344 ret = -EINVAL;
3345 break;
Joe Perchesee289b62010-05-17 22:47:34 -07003346 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003347
Sabrina Dubroca83c1f362018-04-10 16:28:56 +02003348 if (do_notify)
3349 netdev_state_change(tun->dev);
3350
Herbert Xu876bfd42009-08-06 14:22:44 +00003351unlock:
3352 rtnl_unlock();
3353 if (tun)
3354 tun_put(tun);
Eric W. Biederman631ab462009-01-20 11:00:40 +00003355 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003356}
3357
Arnd Bergmann50857e22009-11-06 22:52:32 -08003358static long tun_chr_ioctl(struct file *file,
3359 unsigned int cmd, unsigned long arg)
3360{
3361 return __tun_chr_ioctl(file, cmd, arg, sizeof (struct ifreq));
3362}
3363
3364#ifdef CONFIG_COMPAT
3365static long tun_chr_compat_ioctl(struct file *file,
3366 unsigned int cmd, unsigned long arg)
3367{
3368 switch (cmd) {
3369 case TUNSETIFF:
3370 case TUNGETIFF:
3371 case TUNSETTXFILTER:
3372 case TUNGETSNDBUF:
3373 case TUNSETSNDBUF:
3374 case SIOCGIFHWADDR:
3375 case SIOCSIFHWADDR:
3376 arg = (unsigned long)compat_ptr(arg);
3377 break;
3378 default:
3379 arg = (compat_ulong_t)arg;
3380 break;
3381 }
3382
3383 /*
3384 * compat_ifreq is shorter than ifreq, so we must not access beyond
3385 * the end of that structure. All fields that are used in this
3386 * driver are compatible though, we don't need to convert the
3387 * contents.
3388 */
3389 return __tun_chr_ioctl(file, cmd, arg, sizeof(struct compat_ifreq));
3390}
3391#endif /* CONFIG_COMPAT */
3392
Linus Torvalds1da177e2005-04-16 15:20:36 -07003393static int tun_chr_fasync(int fd, struct file *file, int on)
3394{
Jason Wang54f968d2012-10-31 19:45:57 +00003395 struct tun_file *tfile = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003396 int ret;
3397
Jason Wang54f968d2012-10-31 19:45:57 +00003398 if ((ret = fasync_helper(fd, file, on, &tfile->fasync)) < 0)
Jonathan Corbet9d319522008-06-19 15:50:37 -06003399 goto out;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04003400
Linus Torvalds1da177e2005-04-16 15:20:36 -07003401 if (on) {
Eric W. Biederman01919132017-07-16 22:05:57 -05003402 __f_setown(file, task_pid(current), PIDTYPE_TGID, 0);
Jason Wang54f968d2012-10-31 19:45:57 +00003403 tfile->flags |= TUN_FASYNC;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04003404 } else
Jason Wang54f968d2012-10-31 19:45:57 +00003405 tfile->flags &= ~TUN_FASYNC;
Jonathan Corbet9d319522008-06-19 15:50:37 -06003406 ret = 0;
3407out:
Jonathan Corbet9d319522008-06-19 15:50:37 -06003408 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003409}
3410
3411static int tun_chr_open(struct inode *inode, struct file * file)
3412{
Eric W. Biederman140e807da2015-05-08 21:07:08 -05003413 struct net *net = current->nsproxy->net_ns;
Eric W. Biederman631ab462009-01-20 11:00:40 +00003414 struct tun_file *tfile;
Thomas Gleixnerdeed49f2009-10-14 01:19:46 -07003415
Joe Perches6b8a66e2011-03-02 07:18:10 +00003416 DBG1(KERN_INFO, "tunX: tun_chr_open\n");
Eric W. Biederman631ab462009-01-20 11:00:40 +00003417
Eric W. Biederman140e807da2015-05-08 21:07:08 -05003418 tfile = (struct tun_file *)sk_alloc(net, AF_UNSPEC, GFP_KERNEL,
Eric W. Biederman11aa9c22015-05-08 21:09:13 -05003419 &tun_proto, 0);
Eric W. Biederman631ab462009-01-20 11:00:40 +00003420 if (!tfile)
3421 return -ENOMEM;
Jason Wangb196d882018-05-11 10:49:25 +08003422 if (ptr_ring_init(&tfile->tx_ring, 0, GFP_KERNEL)) {
3423 sk_free(&tfile->sk);
3424 return -ENOMEM;
3425 }
3426
Eric Dumazetc7256f52018-09-28 14:51:48 -07003427 mutex_init(&tfile->napi_mutex);
Monam Agarwalc9566742014-03-24 00:02:32 +05303428 RCU_INIT_POINTER(tfile->tun, NULL);
Jason Wang54f968d2012-10-31 19:45:57 +00003429 tfile->flags = 0;
Pavel Emelyanovfb7589a2013-08-21 14:31:38 +04003430 tfile->ifindex = 0;
Jason Wang54f968d2012-10-31 19:45:57 +00003431
Jason Wang54f968d2012-10-31 19:45:57 +00003432 init_waitqueue_head(&tfile->wq.wait);
Xi Wang9e641bd2014-05-16 15:11:48 -07003433 RCU_INIT_POINTER(tfile->socket.wq, &tfile->wq);
Jason Wang54f968d2012-10-31 19:45:57 +00003434
3435 tfile->socket.file = file;
3436 tfile->socket.ops = &tun_socket_ops;
3437
3438 sock_init_data(&tfile->socket, &tfile->sk);
Jason Wang54f968d2012-10-31 19:45:57 +00003439
3440 tfile->sk.sk_write_space = tun_sock_write_space;
3441 tfile->sk.sk_sndbuf = INT_MAX;
3442
Eric W. Biederman631ab462009-01-20 11:00:40 +00003443 file->private_data = tfile;
Jason Wang4008e972012-12-13 23:53:30 +00003444 INIT_LIST_HEAD(&tfile->next);
Jason Wang54f968d2012-10-31 19:45:57 +00003445
Jason Wang19a6afb2013-06-08 14:17:41 +08003446 sock_set_flag(&tfile->sk, SOCK_ZEROCOPY);
3447
Linus Torvalds1da177e2005-04-16 15:20:36 -07003448 return 0;
3449}
3450
3451static int tun_chr_close(struct inode *inode, struct file *file)
3452{
Eric W. Biederman631ab462009-01-20 11:00:40 +00003453 struct tun_file *tfile = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003454
Jason Wangc8d68e62012-10-31 19:46:00 +00003455 tun_detach(tfile, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003456
3457 return 0;
3458}
3459
Masatake YAMATO93e14b62014-01-29 16:43:31 +09003460#ifdef CONFIG_PROC_FS
yuan linyu9484dc72017-09-23 22:36:52 +08003461static void tun_chr_show_fdinfo(struct seq_file *m, struct file *file)
Masatake YAMATO93e14b62014-01-29 16:43:31 +09003462{
yuan linyu9484dc72017-09-23 22:36:52 +08003463 struct tun_file *tfile = file->private_data;
Masatake YAMATO93e14b62014-01-29 16:43:31 +09003464 struct tun_struct *tun;
3465 struct ifreq ifr;
3466
3467 memset(&ifr, 0, sizeof(ifr));
3468
3469 rtnl_lock();
yuan linyu9484dc72017-09-23 22:36:52 +08003470 tun = tun_get(tfile);
Masatake YAMATO93e14b62014-01-29 16:43:31 +09003471 if (tun)
Kirill Tkhai12132762019-03-20 12:16:53 +03003472 tun_get_iff(tun, &ifr);
Masatake YAMATO93e14b62014-01-29 16:43:31 +09003473 rtnl_unlock();
3474
3475 if (tun)
3476 tun_put(tun);
3477
Joe Perchesa3816ab2014-09-29 16:08:25 -07003478 seq_printf(m, "iff:\t%s\n", ifr.ifr_name);
Masatake YAMATO93e14b62014-01-29 16:43:31 +09003479}
3480#endif
3481
Arjan van de Vend54b1fd2007-02-12 00:55:34 -08003482static const struct file_operations tun_fops = {
Jeff Garzik6aa20a22006-09-13 13:24:59 -04003483 .owner = THIS_MODULE,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003484 .llseek = no_llseek,
Al Viro9b067032014-11-07 13:52:07 -05003485 .read_iter = tun_chr_read_iter,
Al Virof5ff53b2014-06-19 15:36:49 -04003486 .write_iter = tun_chr_write_iter,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003487 .poll = tun_chr_poll,
Arnd Bergmann50857e22009-11-06 22:52:32 -08003488 .unlocked_ioctl = tun_chr_ioctl,
3489#ifdef CONFIG_COMPAT
3490 .compat_ioctl = tun_chr_compat_ioctl,
3491#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003492 .open = tun_chr_open,
3493 .release = tun_chr_close,
Masatake YAMATO93e14b62014-01-29 16:43:31 +09003494 .fasync = tun_chr_fasync,
3495#ifdef CONFIG_PROC_FS
3496 .show_fdinfo = tun_chr_show_fdinfo,
3497#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003498};
3499
3500static struct miscdevice tun_miscdev = {
3501 .minor = TUN_MINOR,
3502 .name = "tun",
Kay Sieverse454cea2009-09-18 23:01:12 +02003503 .nodename = "net/tun",
Linus Torvalds1da177e2005-04-16 15:20:36 -07003504 .fops = &tun_fops,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003505};
3506
3507/* ethtool interface */
3508
Chas Williams4e24f2d2018-06-02 17:49:53 -04003509static void tun_default_link_ksettings(struct net_device *dev,
3510 struct ethtool_link_ksettings *cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003511{
Philippe Reynes29ccc492017-03-11 22:03:50 +01003512 ethtool_link_ksettings_zero_link_mode(cmd, supported);
3513 ethtool_link_ksettings_zero_link_mode(cmd, advertising);
3514 cmd->base.speed = SPEED_10;
3515 cmd->base.duplex = DUPLEX_FULL;
3516 cmd->base.port = PORT_TP;
3517 cmd->base.phy_address = 0;
3518 cmd->base.autoneg = AUTONEG_DISABLE;
Chas Williams4e24f2d2018-06-02 17:49:53 -04003519}
3520
3521static int tun_get_link_ksettings(struct net_device *dev,
3522 struct ethtool_link_ksettings *cmd)
3523{
3524 struct tun_struct *tun = netdev_priv(dev);
3525
3526 memcpy(cmd, &tun->link_ksettings, sizeof(*cmd));
3527 return 0;
3528}
3529
3530static int tun_set_link_ksettings(struct net_device *dev,
3531 const struct ethtool_link_ksettings *cmd)
3532{
3533 struct tun_struct *tun = netdev_priv(dev);
3534
3535 memcpy(&tun->link_ksettings, cmd, sizeof(*cmd));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003536 return 0;
3537}
3538
3539static void tun_get_drvinfo(struct net_device *dev, struct ethtool_drvinfo *info)
3540{
3541 struct tun_struct *tun = netdev_priv(dev);
3542
Rick Jones33a5ba12011-11-15 14:59:53 +00003543 strlcpy(info->driver, DRV_NAME, sizeof(info->driver));
3544 strlcpy(info->version, DRV_VERSION, sizeof(info->version));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003545
3546 switch (tun->flags & TUN_TYPE_MASK) {
Michael S. Tsirkin40630b82014-11-19 15:17:31 +02003547 case IFF_TUN:
Rick Jones33a5ba12011-11-15 14:59:53 +00003548 strlcpy(info->bus_info, "tun", sizeof(info->bus_info));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003549 break;
Michael S. Tsirkin40630b82014-11-19 15:17:31 +02003550 case IFF_TAP:
Rick Jones33a5ba12011-11-15 14:59:53 +00003551 strlcpy(info->bus_info, "tap", sizeof(info->bus_info));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003552 break;
3553 }
3554}
3555
3556static u32 tun_get_msglevel(struct net_device *dev)
3557{
3558#ifdef TUN_DEBUG
3559 struct tun_struct *tun = netdev_priv(dev);
3560 return tun->debug;
3561#else
3562 return -EOPNOTSUPP;
3563#endif
3564}
3565
3566static void tun_set_msglevel(struct net_device *dev, u32 value)
3567{
3568#ifdef TUN_DEBUG
3569 struct tun_struct *tun = netdev_priv(dev);
3570 tun->debug = value;
3571#endif
3572}
3573
Jason Wang5503fce2017-01-18 15:02:03 +08003574static int tun_get_coalesce(struct net_device *dev,
3575 struct ethtool_coalesce *ec)
3576{
3577 struct tun_struct *tun = netdev_priv(dev);
3578
3579 ec->rx_max_coalesced_frames = tun->rx_batched;
3580
3581 return 0;
3582}
3583
3584static int tun_set_coalesce(struct net_device *dev,
3585 struct ethtool_coalesce *ec)
3586{
3587 struct tun_struct *tun = netdev_priv(dev);
3588
3589 if (ec->rx_max_coalesced_frames > NAPI_POLL_WEIGHT)
3590 tun->rx_batched = NAPI_POLL_WEIGHT;
3591 else
3592 tun->rx_batched = ec->rx_max_coalesced_frames;
3593
3594 return 0;
3595}
3596
Jeff Garzik7282d492006-09-13 14:30:00 -04003597static const struct ethtool_ops tun_ethtool_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003598 .get_drvinfo = tun_get_drvinfo,
3599 .get_msglevel = tun_get_msglevel,
3600 .set_msglevel = tun_set_msglevel,
Nolan Leakebee31362010-07-27 13:53:43 +00003601 .get_link = ethtool_op_get_link,
Richard Cochraneda29772013-07-19 19:40:10 +02003602 .get_ts_info = ethtool_op_get_ts_info,
Jason Wang5503fce2017-01-18 15:02:03 +08003603 .get_coalesce = tun_get_coalesce,
3604 .set_coalesce = tun_set_coalesce,
Philippe Reynes29ccc492017-03-11 22:03:50 +01003605 .get_link_ksettings = tun_get_link_ksettings,
Chas Williams4e24f2d2018-06-02 17:49:53 -04003606 .set_link_ksettings = tun_set_link_ksettings,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003607};
3608
Jason Wang1576d982016-06-30 14:45:36 +08003609static int tun_queue_resize(struct tun_struct *tun)
3610{
3611 struct net_device *dev = tun->dev;
3612 struct tun_file *tfile;
Jason Wang5990a302018-01-04 11:14:27 +08003613 struct ptr_ring **rings;
Jason Wang1576d982016-06-30 14:45:36 +08003614 int n = tun->numqueues + tun->numdisabled;
3615 int ret, i;
3616
Jason Wang5990a302018-01-04 11:14:27 +08003617 rings = kmalloc_array(n, sizeof(*rings), GFP_KERNEL);
3618 if (!rings)
Jason Wang1576d982016-06-30 14:45:36 +08003619 return -ENOMEM;
3620
3621 for (i = 0; i < tun->numqueues; i++) {
3622 tfile = rtnl_dereference(tun->tfiles[i]);
Jason Wang5990a302018-01-04 11:14:27 +08003623 rings[i] = &tfile->tx_ring;
Jason Wang1576d982016-06-30 14:45:36 +08003624 }
3625 list_for_each_entry(tfile, &tun->disabled, next)
Jason Wang5990a302018-01-04 11:14:27 +08003626 rings[i++] = &tfile->tx_ring;
Jason Wang1576d982016-06-30 14:45:36 +08003627
Jason Wang5990a302018-01-04 11:14:27 +08003628 ret = ptr_ring_resize_multiple(rings, n,
3629 dev->tx_queue_len, GFP_KERNEL,
Jason Wangfc72d1d2018-01-04 11:14:28 +08003630 tun_ptr_free);
Jason Wang1576d982016-06-30 14:45:36 +08003631
Jason Wang5990a302018-01-04 11:14:27 +08003632 kfree(rings);
Jason Wang1576d982016-06-30 14:45:36 +08003633 return ret;
3634}
3635
3636static int tun_device_event(struct notifier_block *unused,
3637 unsigned long event, void *ptr)
3638{
3639 struct net_device *dev = netdev_notifier_info_to_dev(ptr);
3640 struct tun_struct *tun = netdev_priv(dev);
3641
Craig Gallek86dfb4ac2016-07-06 18:44:20 -04003642 if (dev->rtnl_link_ops != &tun_link_ops)
3643 return NOTIFY_DONE;
3644
Jason Wang1576d982016-06-30 14:45:36 +08003645 switch (event) {
3646 case NETDEV_CHANGE_TX_QUEUE_LEN:
3647 if (tun_queue_resize(tun))
3648 return NOTIFY_BAD;
3649 break;
3650 default:
3651 break;
3652 }
3653
3654 return NOTIFY_DONE;
3655}
3656
3657static struct notifier_block tun_notifier_block __read_mostly = {
3658 .notifier_call = tun_device_event,
3659};
Pavel Emelyanov79d17602008-04-16 00:40:46 -07003660
Linus Torvalds1da177e2005-04-16 15:20:36 -07003661static int __init tun_init(void)
3662{
3663 int ret = 0;
3664
Joe Perches6b8a66e2011-03-02 07:18:10 +00003665 pr_info("%s, %s\n", DRV_DESCRIPTION, DRV_VERSION);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003666
Eric W. Biedermanf019a7a2009-01-21 16:02:16 -08003667 ret = rtnl_link_register(&tun_link_ops);
Pavel Emelyanov79d17602008-04-16 00:40:46 -07003668 if (ret) {
Joe Perches6b8a66e2011-03-02 07:18:10 +00003669 pr_err("Can't register link_ops\n");
Eric W. Biedermanf019a7a2009-01-21 16:02:16 -08003670 goto err_linkops;
Pavel Emelyanov79d17602008-04-16 00:40:46 -07003671 }
3672
Linus Torvalds1da177e2005-04-16 15:20:36 -07003673 ret = misc_register(&tun_miscdev);
Pavel Emelyanov79d17602008-04-16 00:40:46 -07003674 if (ret) {
Joe Perches6b8a66e2011-03-02 07:18:10 +00003675 pr_err("Can't register misc device %d\n", TUN_MINOR);
Pavel Emelyanov79d17602008-04-16 00:40:46 -07003676 goto err_misc;
3677 }
Jason Wang1576d982016-06-30 14:45:36 +08003678
Tonghao Zhang5edfbd32017-07-20 02:41:34 -07003679 ret = register_netdevice_notifier(&tun_notifier_block);
3680 if (ret) {
3681 pr_err("Can't register netdevice notifier\n");
3682 goto err_notifier;
3683 }
3684
Eric W. Biedermanf019a7a2009-01-21 16:02:16 -08003685 return 0;
Tonghao Zhang5edfbd32017-07-20 02:41:34 -07003686
3687err_notifier:
3688 misc_deregister(&tun_miscdev);
Pavel Emelyanov79d17602008-04-16 00:40:46 -07003689err_misc:
Eric W. Biedermanf019a7a2009-01-21 16:02:16 -08003690 rtnl_link_unregister(&tun_link_ops);
3691err_linkops:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003692 return ret;
3693}
3694
3695static void tun_cleanup(void)
3696{
Jeff Garzik6aa20a22006-09-13 13:24:59 -04003697 misc_deregister(&tun_miscdev);
Eric W. Biedermanf019a7a2009-01-21 16:02:16 -08003698 rtnl_link_unregister(&tun_link_ops);
Jason Wang1576d982016-06-30 14:45:36 +08003699 unregister_netdevice_notifier(&tun_notifier_block);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003700}
3701
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00003702/* Get an underlying socket object from tun file. Returns error unless file is
3703 * attached to a device. The returned object works like a packet socket, it
3704 * can be used for sock_sendmsg/sock_recvmsg. The caller is responsible for
3705 * holding a reference to the file for as long as the socket is in use. */
3706struct socket *tun_get_socket(struct file *file)
3707{
Jason Wang6e914fc2012-10-31 19:45:58 +00003708 struct tun_file *tfile;
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00003709 if (file->f_op != &tun_fops)
3710 return ERR_PTR(-EINVAL);
Jason Wang6e914fc2012-10-31 19:45:58 +00003711 tfile = file->private_data;
3712 if (!tfile)
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00003713 return ERR_PTR(-EBADFD);
Jason Wang54f968d2012-10-31 19:45:57 +00003714 return &tfile->socket;
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00003715}
3716EXPORT_SYMBOL_GPL(tun_get_socket);
3717
Jason Wang5990a302018-01-04 11:14:27 +08003718struct ptr_ring *tun_get_tx_ring(struct file *file)
Jason Wang83339c62017-05-17 12:14:41 +08003719{
3720 struct tun_file *tfile;
3721
3722 if (file->f_op != &tun_fops)
3723 return ERR_PTR(-EINVAL);
3724 tfile = file->private_data;
3725 if (!tfile)
3726 return ERR_PTR(-EBADFD);
Jason Wang5990a302018-01-04 11:14:27 +08003727 return &tfile->tx_ring;
Jason Wang83339c62017-05-17 12:14:41 +08003728}
Jason Wang5990a302018-01-04 11:14:27 +08003729EXPORT_SYMBOL_GPL(tun_get_tx_ring);
Jason Wang83339c62017-05-17 12:14:41 +08003730
Linus Torvalds1da177e2005-04-16 15:20:36 -07003731module_init(tun_init);
3732module_exit(tun_cleanup);
3733MODULE_DESCRIPTION(DRV_DESCRIPTION);
3734MODULE_AUTHOR(DRV_COPYRIGHT);
3735MODULE_LICENSE("GPL");
3736MODULE_ALIAS_MISCDEV(TUN_MINOR);
Kay Sievers578454f2010-05-20 18:07:20 +02003737MODULE_ALIAS("devname:net/tun");