blob: 1572878c340319953fc07ab2721dc9a994ed1b88 [file] [log] [blame]
Thomas Gleixnerc942fdd2019-05-27 08:55:06 +02001// SPDX-License-Identifier: GPL-2.0-or-later
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
3 * TUN - Universal TUN/TAP device driver.
4 * Copyright (C) 1999-2002 Maxim Krasnyansky <maxk@qualcomm.com>
5 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 * $Id: tun.c,v 1.15 2002/03/01 02:44:24 maxk Exp $
7 */
8
9/*
10 * Changes:
11 *
Mike Kershawff4cc3a2005-09-01 17:40:05 -070012 * Mike Kershaw <dragorn@kismetwireless.net> 2005/08/14
13 * Add TUNSETLINK ioctl to set the link encapsulation
14 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070015 * Mark Smith <markzzzsmith@yahoo.com.au>
Joe Perches344dc8e2012-07-12 19:33:09 +000016 * Use eth_random_addr() for tap MAC address.
Linus Torvalds1da177e2005-04-16 15:20:36 -070017 *
18 * Harald Roelle <harald.roelle@ifi.lmu.de> 2004/04/20
19 * Fixes in packet dropping, queue length setting and queue wakeup.
20 * Increased default tx queue length.
21 * Added ethtool API.
22 * Minor cleanups
23 *
24 * Daniel Podlejski <underley@underley.eu.org>
25 * Modifications for 2.3.99-pre5 kernel.
26 */
27
Joe Perches6b8a66e2011-03-02 07:18:10 +000028#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
29
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#define DRV_NAME "tun"
31#define DRV_VERSION "1.6"
32#define DRV_DESCRIPTION "Universal TUN/TAP device driver"
33#define DRV_COPYRIGHT "(C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>"
34
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#include <linux/module.h>
36#include <linux/errno.h>
37#include <linux/kernel.h>
Ingo Molnar174cd4b2017-02-02 19:15:33 +010038#include <linux/sched/signal.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070039#include <linux/major.h>
40#include <linux/slab.h>
41#include <linux/poll.h>
42#include <linux/fcntl.h>
43#include <linux/init.h>
44#include <linux/skbuff.h>
45#include <linux/netdevice.h>
46#include <linux/etherdevice.h>
47#include <linux/miscdevice.h>
48#include <linux/ethtool.h>
49#include <linux/rtnetlink.h>
Arnd Bergmann50857e22009-11-06 22:52:32 -080050#include <linux/compat.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070051#include <linux/if.h>
52#include <linux/if_arp.h>
53#include <linux/if_ether.h>
54#include <linux/if_tun.h>
Jason Wang6680ec62013-07-25 13:00:33 +080055#include <linux/if_vlan.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070056#include <linux/crc32.h>
Pavel Emelyanovd647a592008-04-16 00:41:16 -070057#include <linux/nsproxy.h>
Rusty Russellf43798c2008-07-03 03:48:02 -070058#include <linux/virtio_net.h>
Michael S. Tsirkin99405162010-02-14 01:01:10 +000059#include <linux/rcupdate.h>
Eric W. Biederman881d9662007-09-17 11:56:21 -070060#include <net/net_namespace.h>
Pavel Emelyanov79d17602008-04-16 00:40:46 -070061#include <net/netns/generic.h>
Eric W. Biedermanf019a7a2009-01-21 16:02:16 -080062#include <net/rtnetlink.h>
Herbert Xu33dccbb2009-02-05 21:25:32 -080063#include <net/sock.h>
Jesper Dangaard Brouer735fc402018-05-24 16:46:12 +020064#include <net/xdp.h>
Jason A. Donenfeldb9815eb2020-06-29 19:06:22 -060065#include <net/ip_tunnels.h>
Masatake YAMATO93e14b62014-01-29 16:43:31 +090066#include <linux/seq_file.h>
Herbert Xue0b46d02014-11-07 21:22:23 +080067#include <linux/uio.h>
Jason Wang1576d982016-06-30 14:45:36 +080068#include <linux/skb_array.h>
Jason Wang761876c2017-08-11 19:41:18 +080069#include <linux/bpf.h>
70#include <linux/bpf_trace.h>
Petar Penkov90e33d42017-09-22 13:49:15 -070071#include <linux/mutex.h>
Phillip Pottercca8ea32021-04-06 18:45:54 +010072#include <linux/ieee802154.h>
73#include <linux/if_ltalk.h>
74#include <uapi/linux/if_fddi.h>
75#include <uapi/linux/if_hippi.h>
76#include <uapi/linux/if_fc.h>
77#include <net/ax25.h>
78#include <net/rose.h>
79#include <net/6lowpan.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
Jason Wang7df13212017-09-04 11:36:08 +080087#define TUN_RX_PAD (NET_IP_ALIGN + NET_SKB_PAD)
Jason Wang66ccbc92017-08-11 19:41:16 +080088
Michael S. Tsirkin031f5e032014-11-19 14:44:40 +020089/* TUN device flags */
90
91/* IFF_ATTACH_QUEUE is never stored in device flags,
92 * overload it to mean fasync when stored there.
93 */
94#define TUN_FASYNC IFF_ATTACH_QUEUE
Michael S. Tsirkin1cf8e412014-12-16 15:05:06 +020095/* High bits in flags field are unused. */
96#define TUN_VNET_LE 0x80000000
Greg Kurz8b8e6582015-04-24 14:50:36 +020097#define TUN_VNET_BE 0x40000000
Michael S. Tsirkin031f5e032014-11-19 14:44:40 +020098
99#define TUN_FEATURES (IFF_NO_PI | IFF_ONE_QUEUE | IFF_VNET_HDR | \
Petar Penkov90e33d42017-09-22 13:49:15 -0700100 IFF_MULTI_QUEUE | IFF_NAPI | IFF_NAPI_FRAGS)
101
Michael S. Tsirkin06908992012-07-20 09:23:23 +0000102#define GOODCOPY_LEN 128
103
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -0700104#define FLT_EXACT_COUNT 8
105struct tap_filter {
106 unsigned int count; /* Number of addrs. Zero means disabled */
107 u32 mask[2]; /* Mask of the hashed addrs */
108 unsigned char addr[FLT_EXACT_COUNT][ETH_ALEN];
109};
110
Pankaj Guptabaf71c52015-01-12 11:41:29 +0530111/* MAX_TAP_QUEUES 256 is chosen to allow rx/tx queues to be equal
112 * to max number of VCPUs in guest. */
113#define MAX_TAP_QUEUES 256
Jason Wangb8732fb2013-01-23 03:59:13 +0000114#define MAX_TAP_FLOWS 4096
Jason Wangc8d68e62012-10-31 19:46:00 +0000115
Jason Wang96442e422012-10-31 19:46:02 +0000116#define TUN_FLOW_EXPIRE (3 * HZ)
117
Jason Wang54f968d2012-10-31 19:45:57 +0000118/* A tun_file connects an open character device to a tuntap netdevice. It
stephen hemminger92d4ea62013-12-05 20:42:58 -0800119 * also contains all socket related structures (except sock_fprog and tap_filter)
Jason Wang54f968d2012-10-31 19:45:57 +0000120 * to serve as one transmit queue for tuntap device. The sock_fprog and
121 * tap_filter were kept in tun_struct since they were used for filtering for the
Rami Rosen36fe8c092012-11-25 22:07:40 +0000122 * netdevice not for a specific queue (at least I didn't see the requirement for
Jason Wang54f968d2012-10-31 19:45:57 +0000123 * this).
Jason Wang6e914fc2012-10-31 19:45:58 +0000124 *
125 * RCU usage:
Rami Rosen36fe8c092012-11-25 22:07:40 +0000126 * The tun_file and tun_struct are loosely coupled, the pointer from one to the
Jason Wang6e914fc2012-10-31 19:45:58 +0000127 * other can only be read while rcu_read_lock or rtnl_lock is held.
Jason Wang54f968d2012-10-31 19:45:57 +0000128 */
Eric W. Biederman631ab462009-01-20 11:00:40 +0000129struct tun_file {
Jason Wang54f968d2012-10-31 19:45:57 +0000130 struct sock sk;
131 struct socket socket;
Jason Wang6e914fc2012-10-31 19:45:58 +0000132 struct tun_struct __rcu *tun;
Jason Wang54f968d2012-10-31 19:45:57 +0000133 struct fasync_struct *fasync;
134 /* only used for fasnyc */
135 unsigned int flags;
Pavel Emelyanovfb7589a2013-08-21 14:31:38 +0400136 union {
137 u16 queue_index;
138 unsigned int ifindex;
139 };
Petar Penkov94317092017-09-22 13:49:14 -0700140 struct napi_struct napi;
Eric Dumazetaec72f32017-10-18 12:12:09 -0700141 bool napi_enabled;
Eric Dumazetaf3fb242018-09-28 14:51:49 -0700142 bool napi_frags_enabled;
Petar Penkov90e33d42017-09-22 13:49:15 -0700143 struct mutex napi_mutex; /* Protects access to the above napi */
Jason Wang4008e972012-12-13 23:53:30 +0000144 struct list_head next;
145 struct tun_struct *detached;
Jason Wang5990a302018-01-04 11:14:27 +0800146 struct ptr_ring tx_ring;
Jesper Dangaard Brouer8bf5c4e2018-01-03 11:25:59 +0100147 struct xdp_rxq_info xdp_rxq;
Eric W. Biederman631ab462009-01-20 11:00:40 +0000148};
149
Jason Wangf9e06c42018-11-15 17:43:10 +0800150struct tun_page {
151 struct page *page;
152 int count;
153};
154
Jason Wang96442e422012-10-31 19:46:02 +0000155struct tun_flow_entry {
156 struct hlist_node hash_link;
157 struct rcu_head rcu;
158 struct tun_struct *tun;
159
160 u32 rxhash;
Tom Herbert9bc88932013-12-22 18:54:32 +0800161 u32 rps_rxhash;
Jason Wang96442e422012-10-31 19:46:02 +0000162 int queue_index;
Li RongQing83b1bc12018-12-06 16:08:17 +0800163 unsigned long updated ____cacheline_aligned_in_smp;
Jason Wang96442e422012-10-31 19:46:02 +0000164};
165
166#define TUN_NUM_FLOW_ENTRIES 1024
Li RongQingf13b5462018-08-03 15:50:02 +0800167#define TUN_MASK_FLOW_ENTRIES (TUN_NUM_FLOW_ENTRIES - 1)
Jason Wang96442e422012-10-31 19:46:02 +0000168
Jason Wangcd5681d2018-01-16 16:31:01 +0800169struct tun_prog {
Jason Wang96f84062017-12-04 17:31:23 +0800170 struct rcu_head rcu;
171 struct bpf_prog *prog;
172};
173
Jason Wang54f968d2012-10-31 19:45:57 +0000174/* Since the socket were moved to tun_file, to preserve the behavior of persist
Rami Rosen36fe8c092012-11-25 22:07:40 +0000175 * device, socket filter, sndbuf and vnet header size were restore when the
Jason Wang54f968d2012-10-31 19:45:57 +0000176 * file were attached to a persist device.
177 */
Rusty Russell14daa022008-04-12 18:48:58 -0700178struct tun_struct {
Jason Wangc8d68e62012-10-31 19:46:00 +0000179 struct tun_file __rcu *tfiles[MAX_TAP_QUEUES];
180 unsigned int numqueues;
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -0700181 unsigned int flags;
Eric W. Biederman0625c882012-02-07 16:48:55 -0800182 kuid_t owner;
183 kgid_t group;
Rusty Russell14daa022008-04-12 18:48:58 -0700184
Rusty Russell14daa022008-04-12 18:48:58 -0700185 struct net_device *dev;
Michał Mirosławc8f44af2011-11-15 15:29:55 +0000186 netdev_features_t set_features;
Michał Mirosław88255372011-04-19 06:13:10 +0000187#define TUN_USER_FEATURES (NETIF_F_HW_CSUM|NETIF_F_TSO_ECN|NETIF_F_TSO| \
David S. Millerd591a1f2017-07-03 06:35:32 -0700188 NETIF_F_TSO6)
Michael S. Tsirkind9d52b52010-03-17 17:45:01 +0200189
Paolo Abenieaea34b2016-02-26 10:45:40 +0100190 int align;
Michael S. Tsirkind9d52b52010-03-17 17:45:01 +0200191 int vnet_hdr_sz;
Jason Wang54f968d2012-10-31 19:45:57 +0000192 int sndbuf;
193 struct tap_filter txflt;
194 struct sock_fprog fprog;
195 /* protected by rtnl lock */
196 bool filter_attached;
Michal Kubecek34241702020-03-04 17:24:14 +0100197 u32 msg_enable;
Jason Wang96442e422012-10-31 19:46:02 +0000198 spinlock_t lock;
Jason Wang96442e422012-10-31 19:46:02 +0000199 struct hlist_head flows[TUN_NUM_FLOW_ENTRIES];
200 struct timer_list flow_gc_timer;
201 unsigned long ageing_time;
Jason Wang4008e972012-12-13 23:53:30 +0000202 unsigned int numdisabled;
203 struct list_head disabled;
Paul Moore5dbbaf22013-01-14 07:12:19 +0000204 void *security;
Jason Wangb8732fb2013-01-23 03:59:13 +0000205 u32 flow_count;
Jason Wang5503fce2017-01-18 15:02:03 +0800206 u32 rx_batched;
Heiner Kallweit497a5752020-11-07 21:50:56 +0100207 atomic_long_t rx_frame_errors;
Jason Wang761876c2017-08-11 19:41:18 +0800208 struct bpf_prog __rcu *xdp_prog;
Jason Wangcd5681d2018-01-16 16:31:01 +0800209 struct tun_prog __rcu *steering_prog;
Jason Wangaff3d702018-01-16 16:31:02 +0800210 struct tun_prog __rcu *filter_prog;
Chas Williams4e24f2d2018-06-02 17:49:53 -0400211 struct ethtool_link_ksettings link_ksettings;
Rusty Russell14daa022008-04-12 18:48:58 -0700212};
213
Jason Wangaff3d702018-01-16 16:31:02 +0800214struct veth {
215 __be16 h_vlan_proto;
216 __be16 h_vlan_TCI;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217};
218
Petar Penkov94317092017-09-22 13:49:14 -0700219static int tun_napi_receive(struct napi_struct *napi, int budget)
220{
221 struct tun_file *tfile = container_of(napi, struct tun_file, napi);
222 struct sk_buff_head *queue = &tfile->sk.sk_write_queue;
223 struct sk_buff_head process_queue;
224 struct sk_buff *skb;
225 int received = 0;
226
227 __skb_queue_head_init(&process_queue);
228
229 spin_lock(&queue->lock);
230 skb_queue_splice_tail_init(queue, &process_queue);
231 spin_unlock(&queue->lock);
232
233 while (received < budget && (skb = __skb_dequeue(&process_queue))) {
234 napi_gro_receive(napi, skb);
235 ++received;
236 }
237
238 if (!skb_queue_empty(&process_queue)) {
239 spin_lock(&queue->lock);
240 skb_queue_splice(&process_queue, queue);
241 spin_unlock(&queue->lock);
242 }
243
244 return received;
245}
246
247static int tun_napi_poll(struct napi_struct *napi, int budget)
248{
249 unsigned int received;
250
251 received = tun_napi_receive(napi, budget);
252
253 if (received < budget)
254 napi_complete_done(napi, received);
255
256 return received;
257}
258
259static void tun_napi_init(struct tun_struct *tun, struct tun_file *tfile,
Eric Dumazetaf3fb242018-09-28 14:51:49 -0700260 bool napi_en, bool napi_frags)
Petar Penkov94317092017-09-22 13:49:14 -0700261{
Eric Dumazetaec72f32017-10-18 12:12:09 -0700262 tfile->napi_enabled = napi_en;
Eric Dumazetaf3fb242018-09-28 14:51:49 -0700263 tfile->napi_frags_enabled = napi_en && napi_frags;
Petar Penkov94317092017-09-22 13:49:14 -0700264 if (napi_en) {
Petar Penkovc39e3422019-11-14 09:52:09 -0800265 netif_tx_napi_add(tun->dev, &tfile->napi, tun_napi_poll,
266 NAPI_POLL_WEIGHT);
Petar Penkov94317092017-09-22 13:49:14 -0700267 napi_enable(&tfile->napi);
268 }
269}
270
Eric Dumazet06e55ad2018-09-28 14:51:47 -0700271static void tun_napi_disable(struct tun_file *tfile)
Petar Penkov94317092017-09-22 13:49:14 -0700272{
Eric Dumazetaec72f32017-10-18 12:12:09 -0700273 if (tfile->napi_enabled)
Petar Penkov94317092017-09-22 13:49:14 -0700274 napi_disable(&tfile->napi);
275}
276
Eric Dumazet06e55ad2018-09-28 14:51:47 -0700277static void tun_napi_del(struct tun_file *tfile)
Petar Penkov94317092017-09-22 13:49:14 -0700278{
Eric Dumazetaec72f32017-10-18 12:12:09 -0700279 if (tfile->napi_enabled)
Petar Penkov94317092017-09-22 13:49:14 -0700280 netif_napi_del(&tfile->napi);
281}
282
Eric Dumazetaf3fb242018-09-28 14:51:49 -0700283static bool tun_napi_frags_enabled(const struct tun_file *tfile)
Petar Penkov90e33d42017-09-22 13:49:15 -0700284{
Eric Dumazetaf3fb242018-09-28 14:51:49 -0700285 return tfile->napi_frags_enabled;
Petar Penkov90e33d42017-09-22 13:49:15 -0700286}
287
Greg Kurz8b8e6582015-04-24 14:50:36 +0200288#ifdef CONFIG_TUN_VNET_CROSS_LE
289static inline bool tun_legacy_is_little_endian(struct tun_struct *tun)
290{
291 return tun->flags & TUN_VNET_BE ? false :
292 virtio_legacy_is_little_endian();
293}
294
295static long tun_get_vnet_be(struct tun_struct *tun, int __user *argp)
296{
297 int be = !!(tun->flags & TUN_VNET_BE);
298
299 if (put_user(be, argp))
300 return -EFAULT;
301
302 return 0;
303}
304
305static long tun_set_vnet_be(struct tun_struct *tun, int __user *argp)
306{
307 int be;
308
309 if (get_user(be, argp))
310 return -EFAULT;
311
312 if (be)
313 tun->flags |= TUN_VNET_BE;
314 else
315 tun->flags &= ~TUN_VNET_BE;
316
317 return 0;
318}
319#else
320static inline bool tun_legacy_is_little_endian(struct tun_struct *tun)
321{
322 return virtio_legacy_is_little_endian();
323}
324
325static long tun_get_vnet_be(struct tun_struct *tun, int __user *argp)
326{
327 return -EINVAL;
328}
329
330static long tun_set_vnet_be(struct tun_struct *tun, int __user *argp)
331{
332 return -EINVAL;
333}
334#endif /* CONFIG_TUN_VNET_CROSS_LE */
335
Greg Kurz25bd55bb2015-04-24 14:24:38 +0200336static inline bool tun_is_little_endian(struct tun_struct *tun)
337{
Greg Kurz7d824102015-04-24 14:26:24 +0200338 return tun->flags & TUN_VNET_LE ||
Greg Kurz8b8e6582015-04-24 14:50:36 +0200339 tun_legacy_is_little_endian(tun);
Greg Kurz25bd55bb2015-04-24 14:24:38 +0200340}
341
Michael S. Tsirkin56f0dcc2014-10-23 22:59:31 +0300342static inline u16 tun16_to_cpu(struct tun_struct *tun, __virtio16 val)
343{
Greg Kurz25bd55bb2015-04-24 14:24:38 +0200344 return __virtio16_to_cpu(tun_is_little_endian(tun), val);
Michael S. Tsirkin56f0dcc2014-10-23 22:59:31 +0300345}
346
347static inline __virtio16 cpu_to_tun16(struct tun_struct *tun, u16 val)
348{
Greg Kurz25bd55bb2015-04-24 14:24:38 +0200349 return __cpu_to_virtio16(tun_is_little_endian(tun), val);
Michael S. Tsirkin56f0dcc2014-10-23 22:59:31 +0300350}
351
Jason Wang96442e422012-10-31 19:46:02 +0000352static inline u32 tun_hashfn(u32 rxhash)
353{
Li RongQingf13b5462018-08-03 15:50:02 +0800354 return rxhash & TUN_MASK_FLOW_ENTRIES;
Jason Wang96442e422012-10-31 19:46:02 +0000355}
356
357static struct tun_flow_entry *tun_flow_find(struct hlist_head *head, u32 rxhash)
358{
359 struct tun_flow_entry *e;
Jason Wang96442e422012-10-31 19:46:02 +0000360
Sasha Levinb67bfe02013-02-27 17:06:00 -0800361 hlist_for_each_entry_rcu(e, head, hash_link) {
Jason Wang96442e422012-10-31 19:46:02 +0000362 if (e->rxhash == rxhash)
363 return e;
364 }
365 return NULL;
366}
367
368static struct tun_flow_entry *tun_flow_create(struct tun_struct *tun,
369 struct hlist_head *head,
370 u32 rxhash, u16 queue_index)
371{
Eric Dumazet9fdc6be2012-12-21 07:17:21 +0000372 struct tun_flow_entry *e = kmalloc(sizeof(*e), GFP_ATOMIC);
373
Jason Wang96442e422012-10-31 19:46:02 +0000374 if (e) {
Michal Kubecek34241702020-03-04 17:24:14 +0100375 netif_info(tun, tx_queued, tun->dev,
376 "create flow: hash %u index %u\n",
377 rxhash, queue_index);
Jason Wang96442e422012-10-31 19:46:02 +0000378 e->updated = jiffies;
379 e->rxhash = rxhash;
Tom Herbert9bc88932013-12-22 18:54:32 +0800380 e->rps_rxhash = 0;
Jason Wang96442e422012-10-31 19:46:02 +0000381 e->queue_index = queue_index;
382 e->tun = tun;
383 hlist_add_head_rcu(&e->hash_link, head);
Jason Wangb8732fb2013-01-23 03:59:13 +0000384 ++tun->flow_count;
Jason Wang96442e422012-10-31 19:46:02 +0000385 }
386 return e;
387}
388
Jason Wang96442e422012-10-31 19:46:02 +0000389static void tun_flow_delete(struct tun_struct *tun, struct tun_flow_entry *e)
390{
Michal Kubecek34241702020-03-04 17:24:14 +0100391 netif_info(tun, tx_queued, tun->dev, "delete flow: hash %u index %u\n",
392 e->rxhash, e->queue_index);
Jason Wang96442e422012-10-31 19:46:02 +0000393 hlist_del_rcu(&e->hash_link);
Eric Dumazet9fdc6be2012-12-21 07:17:21 +0000394 kfree_rcu(e, rcu);
Jason Wangb8732fb2013-01-23 03:59:13 +0000395 --tun->flow_count;
Jason Wang96442e422012-10-31 19:46:02 +0000396}
397
398static void tun_flow_flush(struct tun_struct *tun)
399{
400 int i;
401
402 spin_lock_bh(&tun->lock);
403 for (i = 0; i < TUN_NUM_FLOW_ENTRIES; i++) {
404 struct tun_flow_entry *e;
Sasha Levinb67bfe02013-02-27 17:06:00 -0800405 struct hlist_node *n;
Jason Wang96442e422012-10-31 19:46:02 +0000406
Sasha Levinb67bfe02013-02-27 17:06:00 -0800407 hlist_for_each_entry_safe(e, n, &tun->flows[i], hash_link)
Jason Wang96442e422012-10-31 19:46:02 +0000408 tun_flow_delete(tun, e);
409 }
410 spin_unlock_bh(&tun->lock);
411}
412
413static void tun_flow_delete_by_queue(struct tun_struct *tun, u16 queue_index)
414{
415 int i;
416
417 spin_lock_bh(&tun->lock);
418 for (i = 0; i < TUN_NUM_FLOW_ENTRIES; i++) {
419 struct tun_flow_entry *e;
Sasha Levinb67bfe02013-02-27 17:06:00 -0800420 struct hlist_node *n;
Jason Wang96442e422012-10-31 19:46:02 +0000421
Sasha Levinb67bfe02013-02-27 17:06:00 -0800422 hlist_for_each_entry_safe(e, n, &tun->flows[i], hash_link) {
Jason Wang96442e422012-10-31 19:46:02 +0000423 if (e->queue_index == queue_index)
424 tun_flow_delete(tun, e);
425 }
426 }
427 spin_unlock_bh(&tun->lock);
428}
429
Kees Cooke99e88a2017-10-16 14:43:17 -0700430static void tun_flow_cleanup(struct timer_list *t)
Jason Wang96442e422012-10-31 19:46:02 +0000431{
Kees Cooke99e88a2017-10-16 14:43:17 -0700432 struct tun_struct *tun = from_timer(tun, t, flow_gc_timer);
Jason Wang96442e422012-10-31 19:46:02 +0000433 unsigned long delay = tun->ageing_time;
434 unsigned long next_timer = jiffies + delay;
435 unsigned long count = 0;
436 int i;
437
Eric Dumazet7dbfb4e2017-10-20 11:29:55 -0700438 spin_lock(&tun->lock);
Jason Wang96442e422012-10-31 19:46:02 +0000439 for (i = 0; i < TUN_NUM_FLOW_ENTRIES; i++) {
440 struct tun_flow_entry *e;
Sasha Levinb67bfe02013-02-27 17:06:00 -0800441 struct hlist_node *n;
Jason Wang96442e422012-10-31 19:46:02 +0000442
Sasha Levinb67bfe02013-02-27 17:06:00 -0800443 hlist_for_each_entry_safe(e, n, &tun->flows[i], hash_link) {
Jason Wang96442e422012-10-31 19:46:02 +0000444 unsigned long this_timer;
Eric Dumazet81d98fa2017-10-20 11:29:56 -0700445
Jason Wang96442e422012-10-31 19:46:02 +0000446 this_timer = e->updated + delay;
Eric Dumazet81d98fa2017-10-20 11:29:56 -0700447 if (time_before_eq(this_timer, jiffies)) {
Jason Wang96442e422012-10-31 19:46:02 +0000448 tun_flow_delete(tun, e);
Eric Dumazet81d98fa2017-10-20 11:29:56 -0700449 continue;
450 }
451 count++;
452 if (time_before(this_timer, next_timer))
Jason Wang96442e422012-10-31 19:46:02 +0000453 next_timer = this_timer;
454 }
455 }
456
457 if (count)
458 mod_timer(&tun->flow_gc_timer, round_jiffies_up(next_timer));
Eric Dumazet7dbfb4e2017-10-20 11:29:55 -0700459 spin_unlock(&tun->lock);
Jason Wang96442e422012-10-31 19:46:02 +0000460}
461
Eric Dumazet49974422012-12-12 19:22:57 +0000462static void tun_flow_update(struct tun_struct *tun, u32 rxhash,
Jason Wang9e857222013-01-28 01:05:19 +0000463 struct tun_file *tfile)
Jason Wang96442e422012-10-31 19:46:02 +0000464{
465 struct hlist_head *head;
466 struct tun_flow_entry *e;
467 unsigned long delay = tun->ageing_time;
Jason Wang9e857222013-01-28 01:05:19 +0000468 u16 queue_index = tfile->queue_index;
Jason Wang96442e422012-10-31 19:46:02 +0000469
Li RongQing5c327f62018-12-06 16:28:11 +0800470 head = &tun->flows[tun_hashfn(rxhash)];
Jason Wang96442e422012-10-31 19:46:02 +0000471
472 rcu_read_lock();
473
Jason Wang96442e422012-10-31 19:46:02 +0000474 e = tun_flow_find(head, rxhash);
475 if (likely(e)) {
476 /* TODO: keep queueing to old queue until it's empty? */
Eric Dumazet4ffdd222019-10-09 09:20:02 -0700477 if (READ_ONCE(e->queue_index) != queue_index)
478 WRITE_ONCE(e->queue_index, queue_index);
Li RongQing83b1bc12018-12-06 16:08:17 +0800479 if (e->updated != jiffies)
480 e->updated = jiffies;
Tom Herbert9bc88932013-12-22 18:54:32 +0800481 sock_rps_record_flow_hash(e->rps_rxhash);
Jason Wang96442e422012-10-31 19:46:02 +0000482 } else {
483 spin_lock_bh(&tun->lock);
Jason Wangb8732fb2013-01-23 03:59:13 +0000484 if (!tun_flow_find(head, rxhash) &&
485 tun->flow_count < MAX_TAP_FLOWS)
Jason Wang96442e422012-10-31 19:46:02 +0000486 tun_flow_create(tun, head, rxhash, queue_index);
487
488 if (!timer_pending(&tun->flow_gc_timer))
489 mod_timer(&tun->flow_gc_timer,
490 round_jiffies_up(jiffies + delay));
491 spin_unlock_bh(&tun->lock);
492 }
493
Jason Wang96442e422012-10-31 19:46:02 +0000494 rcu_read_unlock();
495}
496
Michal Kubecek516c5122020-03-04 17:23:59 +0100497/* Save the hash received in the stack receive path and update the
Tom Herbert9bc88932013-12-22 18:54:32 +0800498 * flow_hash table accordingly.
499 */
500static inline void tun_flow_save_rps_rxhash(struct tun_flow_entry *e, u32 hash)
501{
Eric Dumazet567e4b72015-02-06 12:59:01 -0800502 if (unlikely(e->rps_rxhash != hash))
Tom Herbert9bc88932013-12-22 18:54:32 +0800503 e->rps_rxhash = hash;
Tom Herbert9bc88932013-12-22 18:54:32 +0800504}
505
Wang Li4b035272018-10-09 10:32:04 +0800506/* We try to identify a flow through its rxhash. The reason that
stephen hemminger92d4ea62013-12-05 20:42:58 -0800507 * we do not check rxq no. is because some cards(e.g 82599), chooses
Jason Wangc8d68e62012-10-31 19:46:00 +0000508 * the rxq based on the txq where the last packet of the flow comes. As
509 * the userspace application move between processors, we may get a
Wang Li4b035272018-10-09 10:32:04 +0800510 * different rxq no. here.
Jason Wangc8d68e62012-10-31 19:46:00 +0000511 */
Jason Wang96f84062017-12-04 17:31:23 +0800512static u16 tun_automq_select_queue(struct tun_struct *tun, struct sk_buff *skb)
Jason Wangc8d68e62012-10-31 19:46:00 +0000513{
Jason Wang96442e422012-10-31 19:46:02 +0000514 struct tun_flow_entry *e;
Jason Wangc8d68e62012-10-31 19:46:00 +0000515 u32 txq = 0;
516 u32 numqueues = 0;
517
Mark Rutland6aa7de02017-10-23 14:07:29 -0700518 numqueues = READ_ONCE(tun->numqueues);
Jason Wangc8d68e62012-10-31 19:46:00 +0000519
Jason Wangfeec0842017-06-06 14:09:49 +0800520 txq = __skb_get_hash_symmetric(skb);
Wang Li4b035272018-10-09 10:32:04 +0800521 e = tun_flow_find(&tun->flows[tun_hashfn(txq)], txq);
522 if (e) {
523 tun_flow_save_rps_rxhash(e, txq);
524 txq = e->queue_index;
525 } else {
526 /* use multiply and shift instead of expensive divide */
527 txq = ((u64)txq * numqueues) >> 32;
Jason Wangc8d68e62012-10-31 19:46:00 +0000528 }
529
Jason Wangc8d68e62012-10-31 19:46:00 +0000530 return txq;
531}
532
Jason Wang96f84062017-12-04 17:31:23 +0800533static u16 tun_ebpf_select_queue(struct tun_struct *tun, struct sk_buff *skb)
534{
Jason Wangcd5681d2018-01-16 16:31:01 +0800535 struct tun_prog *prog;
Jason Wanga35d3102019-05-08 23:20:17 -0400536 u32 numqueues;
Jason Wang96f84062017-12-04 17:31:23 +0800537 u16 ret = 0;
538
Jason Wanga35d3102019-05-08 23:20:17 -0400539 numqueues = READ_ONCE(tun->numqueues);
540 if (!numqueues)
541 return 0;
542
Jason Wang96f84062017-12-04 17:31:23 +0800543 prog = rcu_dereference(tun->steering_prog);
544 if (prog)
545 ret = bpf_prog_run_clear_cb(prog->prog, skb);
546
Jason Wanga35d3102019-05-08 23:20:17 -0400547 return ret % numqueues;
Jason Wang96f84062017-12-04 17:31:23 +0800548}
549
550static u16 tun_select_queue(struct net_device *dev, struct sk_buff *skb,
Paolo Abenia350ecc2019-03-20 11:02:06 +0100551 struct net_device *sb_dev)
Jason Wang96f84062017-12-04 17:31:23 +0800552{
553 struct tun_struct *tun = netdev_priv(dev);
554 u16 ret;
555
556 rcu_read_lock();
557 if (rcu_dereference(tun->steering_prog))
558 ret = tun_ebpf_select_queue(tun, skb);
559 else
560 ret = tun_automq_select_queue(tun, skb);
561 rcu_read_unlock();
562
563 return ret;
564}
565
Jason Wangcde8b152012-10-31 19:46:01 +0000566static inline bool tun_not_capable(struct tun_struct *tun)
567{
568 const struct cred *cred = current_cred();
Eric W. Biedermanc260b772012-11-18 21:34:11 +0000569 struct net *net = dev_net(tun->dev);
Jason Wangcde8b152012-10-31 19:46:01 +0000570
571 return ((uid_valid(tun->owner) && !uid_eq(cred->euid, tun->owner)) ||
572 (gid_valid(tun->group) && !in_egroup_p(tun->group))) &&
Eric W. Biedermanc260b772012-11-18 21:34:11 +0000573 !ns_capable(net->user_ns, CAP_NET_ADMIN);
Jason Wangcde8b152012-10-31 19:46:01 +0000574}
575
Jason Wangc8d68e62012-10-31 19:46:00 +0000576static void tun_set_real_num_queues(struct tun_struct *tun)
577{
578 netif_set_real_num_tx_queues(tun->dev, tun->numqueues);
579 netif_set_real_num_rx_queues(tun->dev, tun->numqueues);
580}
581
Jason Wang4008e972012-12-13 23:53:30 +0000582static void tun_disable_queue(struct tun_struct *tun, struct tun_file *tfile)
583{
584 tfile->detached = tun;
585 list_add_tail(&tfile->next, &tun->disabled);
586 ++tun->numdisabled;
587}
588
Jason Wangd32649d2012-12-18 11:00:27 +0800589static struct tun_struct *tun_enable_queue(struct tun_file *tfile)
Jason Wang4008e972012-12-13 23:53:30 +0000590{
591 struct tun_struct *tun = tfile->detached;
592
593 tfile->detached = NULL;
594 list_del_init(&tfile->next);
595 --tun->numdisabled;
596 return tun;
597}
598
Jason Wang3a403072018-03-09 14:50:34 +0800599void tun_ptr_free(void *ptr)
Jason Wangfc72d1d2018-01-04 11:14:28 +0800600{
601 if (!ptr)
602 return;
Jesper Dangaard Brouer1ffcbc82018-04-17 16:45:47 +0200603 if (tun_is_xdp_frame(ptr)) {
604 struct xdp_frame *xdpf = tun_ptr_to_xdp(ptr);
Jason Wangfc72d1d2018-01-04 11:14:28 +0800605
Jesper Dangaard Brouer03993092018-04-17 16:46:32 +0200606 xdp_return_frame(xdpf);
Jason Wangfc72d1d2018-01-04 11:14:28 +0800607 } else {
608 __skb_array_destroy_skb(ptr);
609 }
610}
Jason Wang3a403072018-03-09 14:50:34 +0800611EXPORT_SYMBOL_GPL(tun_ptr_free);
Jason Wangfc72d1d2018-01-04 11:14:28 +0800612
Jason Wang4bfb0512013-09-05 17:53:59 +0800613static void tun_queue_purge(struct tun_file *tfile)
614{
Jason Wangfc72d1d2018-01-04 11:14:28 +0800615 void *ptr;
Jason Wang1576d982016-06-30 14:45:36 +0800616
Jason Wangfc72d1d2018-01-04 11:14:28 +0800617 while ((ptr = ptr_ring_consume(&tfile->tx_ring)) != NULL)
618 tun_ptr_free(ptr);
Jason Wang1576d982016-06-30 14:45:36 +0800619
Jason Wang5503fce2017-01-18 15:02:03 +0800620 skb_queue_purge(&tfile->sk.sk_write_queue);
Jason Wang4bfb0512013-09-05 17:53:59 +0800621 skb_queue_purge(&tfile->sk.sk_error_queue);
622}
623
Jason Wangc8d68e62012-10-31 19:46:00 +0000624static void __tun_detach(struct tun_file *tfile, bool clean)
625{
626 struct tun_file *ntfile;
627 struct tun_struct *tun;
Jason Wangc8d68e62012-10-31 19:46:00 +0000628
Jason Wangb8deabd2013-01-11 16:59:32 +0000629 tun = rtnl_dereference(tfile->tun);
630
Petar Penkov94317092017-09-22 13:49:14 -0700631 if (tun && clean) {
Eric Dumazet06e55ad2018-09-28 14:51:47 -0700632 tun_napi_disable(tfile);
633 tun_napi_del(tfile);
Petar Penkov94317092017-09-22 13:49:14 -0700634 }
635
Jason Wang9e857222013-01-28 01:05:19 +0000636 if (tun && !tfile->detached) {
Jason Wangc8d68e62012-10-31 19:46:00 +0000637 u16 index = tfile->queue_index;
638 BUG_ON(index >= tun->numqueues);
Jason Wangc8d68e62012-10-31 19:46:00 +0000639
640 rcu_assign_pointer(tun->tfiles[index],
641 tun->tfiles[tun->numqueues - 1]);
Jason Wangb8deabd2013-01-11 16:59:32 +0000642 ntfile = rtnl_dereference(tun->tfiles[index]);
Jason Wangc8d68e62012-10-31 19:46:00 +0000643 ntfile->queue_index = index;
Jason Wang9871a9e2019-05-08 23:20:18 -0400644 rcu_assign_pointer(tun->tfiles[tun->numqueues - 1],
645 NULL);
Jason Wangc8d68e62012-10-31 19:46:00 +0000646
647 --tun->numqueues;
Jason Wang9e857222013-01-28 01:05:19 +0000648 if (clean) {
Monam Agarwalc9566742014-03-24 00:02:32 +0530649 RCU_INIT_POINTER(tfile->tun, NULL);
Jason Wang4008e972012-12-13 23:53:30 +0000650 sock_put(&tfile->sk);
Jason Wang9e857222013-01-28 01:05:19 +0000651 } else
Jason Wang4008e972012-12-13 23:53:30 +0000652 tun_disable_queue(tun, tfile);
Jason Wangc8d68e62012-10-31 19:46:00 +0000653
654 synchronize_net();
Jason Wang96442e422012-10-31 19:46:02 +0000655 tun_flow_delete_by_queue(tun, tun->numqueues + 1);
Jason Wangc8d68e62012-10-31 19:46:00 +0000656 /* Drop read queue */
Jason Wang4bfb0512013-09-05 17:53:59 +0800657 tun_queue_purge(tfile);
Jason Wangc8d68e62012-10-31 19:46:00 +0000658 tun_set_real_num_queues(tun);
Jason Wangdd38bd82013-01-11 16:59:34 +0000659 } else if (tfile->detached && clean) {
Jason Wang4008e972012-12-13 23:53:30 +0000660 tun = tun_enable_queue(tfile);
Jason Wangdd38bd82013-01-11 16:59:34 +0000661 sock_put(&tfile->sk);
662 }
Jason Wangc8d68e62012-10-31 19:46:00 +0000663
664 if (clean) {
Michael S. Tsirkinaf668b32013-01-28 00:38:02 +0000665 if (tun && tun->numqueues == 0 && tun->numdisabled == 0) {
666 netif_carrier_off(tun->dev);
667
Michael S. Tsirkin40630b82014-11-19 15:17:31 +0200668 if (!(tun->flags & IFF_PERSIST) &&
Michael S. Tsirkinaf668b32013-01-28 00:38:02 +0000669 tun->dev->reg_state == NETREG_REGISTERED)
Jason Wang4008e972012-12-13 23:53:30 +0000670 unregister_netdevice(tun->dev);
Michael S. Tsirkinaf668b32013-01-28 00:38:02 +0000671 }
Jason Wangb196d882018-05-11 10:49:25 +0800672 if (tun)
673 xdp_rxq_info_unreg(&tfile->xdp_rxq);
Jason Wang7063efd2018-05-16 20:39:33 +0800674 ptr_ring_cleanup(&tfile->tx_ring, tun_ptr_free);
Eric W. Biederman140e807da2015-05-08 21:07:08 -0500675 sock_put(&tfile->sk);
Jason Wangc8d68e62012-10-31 19:46:00 +0000676 }
677}
678
679static void tun_detach(struct tun_file *tfile, bool clean)
680{
Sabrina Dubroca83c1f362018-04-10 16:28:56 +0200681 struct tun_struct *tun;
682 struct net_device *dev;
683
Jason Wangc8d68e62012-10-31 19:46:00 +0000684 rtnl_lock();
Sabrina Dubroca83c1f362018-04-10 16:28:56 +0200685 tun = rtnl_dereference(tfile->tun);
686 dev = tun ? tun->dev : NULL;
Jason Wangc8d68e62012-10-31 19:46:00 +0000687 __tun_detach(tfile, clean);
Sabrina Dubroca83c1f362018-04-10 16:28:56 +0200688 if (dev)
689 netdev_state_change(dev);
Jason Wangc8d68e62012-10-31 19:46:00 +0000690 rtnl_unlock();
691}
692
693static void tun_detach_all(struct net_device *dev)
694{
695 struct tun_struct *tun = netdev_priv(dev);
Jason Wang4008e972012-12-13 23:53:30 +0000696 struct tun_file *tfile, *tmp;
Jason Wangc8d68e62012-10-31 19:46:00 +0000697 int i, n = tun->numqueues;
698
699 for (i = 0; i < n; i++) {
Jason Wangb8deabd2013-01-11 16:59:32 +0000700 tfile = rtnl_dereference(tun->tfiles[i]);
Jason Wangc8d68e62012-10-31 19:46:00 +0000701 BUG_ON(!tfile);
Eric Dumazet06e55ad2018-09-28 14:51:47 -0700702 tun_napi_disable(tfile);
Jason Wangaddf8fc2016-05-19 13:36:51 +0800703 tfile->socket.sk->sk_shutdown = RCV_SHUTDOWN;
Xi Wang9e641bd2014-05-16 15:11:48 -0700704 tfile->socket.sk->sk_data_ready(tfile->socket.sk);
Monam Agarwalc9566742014-03-24 00:02:32 +0530705 RCU_INIT_POINTER(tfile->tun, NULL);
Jason Wangc8d68e62012-10-31 19:46:00 +0000706 --tun->numqueues;
707 }
Jason Wang9e857222013-01-28 01:05:19 +0000708 list_for_each_entry(tfile, &tun->disabled, next) {
Jason Wangaddf8fc2016-05-19 13:36:51 +0800709 tfile->socket.sk->sk_shutdown = RCV_SHUTDOWN;
Xi Wang9e641bd2014-05-16 15:11:48 -0700710 tfile->socket.sk->sk_data_ready(tfile->socket.sk);
Monam Agarwalc9566742014-03-24 00:02:32 +0530711 RCU_INIT_POINTER(tfile->tun, NULL);
Jason Wang9e857222013-01-28 01:05:19 +0000712 }
Jason Wangc8d68e62012-10-31 19:46:00 +0000713 BUG_ON(tun->numqueues != 0);
714
715 synchronize_net();
716 for (i = 0; i < n; i++) {
Jason Wangb8deabd2013-01-11 16:59:32 +0000717 tfile = rtnl_dereference(tun->tfiles[i]);
Eric Dumazet06e55ad2018-09-28 14:51:47 -0700718 tun_napi_del(tfile);
Jason Wangc8d68e62012-10-31 19:46:00 +0000719 /* Drop read queue */
Jason Wang4bfb0512013-09-05 17:53:59 +0800720 tun_queue_purge(tfile);
Jason Wangb196d882018-05-11 10:49:25 +0800721 xdp_rxq_info_unreg(&tfile->xdp_rxq);
Jason Wangc8d68e62012-10-31 19:46:00 +0000722 sock_put(&tfile->sk);
723 }
Jason Wang4008e972012-12-13 23:53:30 +0000724 list_for_each_entry_safe(tfile, tmp, &tun->disabled, next) {
725 tun_enable_queue(tfile);
Jason Wang4bfb0512013-09-05 17:53:59 +0800726 tun_queue_purge(tfile);
Jason Wangb196d882018-05-11 10:49:25 +0800727 xdp_rxq_info_unreg(&tfile->xdp_rxq);
Jason Wang4008e972012-12-13 23:53:30 +0000728 sock_put(&tfile->sk);
729 }
730 BUG_ON(tun->numdisabled != 0);
Jason Wangdd38bd82013-01-11 16:59:34 +0000731
Michael S. Tsirkin40630b82014-11-19 15:17:31 +0200732 if (tun->flags & IFF_PERSIST)
Jason Wangdd38bd82013-01-11 16:59:34 +0000733 module_put(THIS_MODULE);
Jason Wangc8d68e62012-10-31 19:46:00 +0000734}
735
Petar Penkov94317092017-09-22 13:49:14 -0700736static int tun_attach(struct tun_struct *tun, struct file *file,
Yang Yingliang77f22f92019-09-10 18:56:57 +0800737 bool skip_filter, bool napi, bool napi_frags,
738 bool publish_tun)
Eric W. Biedermana7385ba2009-01-20 10:57:48 +0000739{
Eric W. Biederman631ab462009-01-20 11:00:40 +0000740 struct tun_file *tfile = file->private_data;
Jason Wang1576d982016-06-30 14:45:36 +0800741 struct net_device *dev = tun->dev;
Eric W. Biederman38231b72009-01-20 11:02:28 +0000742 int err;
Eric W. Biedermana7385ba2009-01-20 10:57:48 +0000743
Paul Moore5dbbaf22013-01-14 07:12:19 +0000744 err = security_tun_dev_attach(tfile->socket.sk, tun->security);
745 if (err < 0)
746 goto out;
747
Eric W. Biederman38231b72009-01-20 11:02:28 +0000748 err = -EINVAL;
Jason Wang9e857222013-01-28 01:05:19 +0000749 if (rtnl_dereference(tfile->tun) && !tfile->detached)
Eric W. Biederman38231b72009-01-20 11:02:28 +0000750 goto out;
751
752 err = -EBUSY;
Michael S. Tsirkin40630b82014-11-19 15:17:31 +0200753 if (!(tun->flags & IFF_MULTI_QUEUE) && tun->numqueues == 1)
Jason Wangc8d68e62012-10-31 19:46:00 +0000754 goto out;
755
756 err = -E2BIG;
Jason Wang4008e972012-12-13 23:53:30 +0000757 if (!tfile->detached &&
758 tun->numqueues + tun->numdisabled == MAX_TAP_QUEUES)
Eric W. Biederman38231b72009-01-20 11:02:28 +0000759 goto out;
760
761 err = 0;
Jason Wang54f968d2012-10-31 19:45:57 +0000762
stephen hemminger92d4ea62013-12-05 20:42:58 -0800763 /* Re-attach the filter to persist device */
Pavel Emelyanov849c9b62013-08-21 14:32:21 +0400764 if (!skip_filter && (tun->filter_attached == true)) {
Hannes Frederic Sowa8ced4252016-04-05 17:10:16 +0200765 lock_sock(tfile->socket.sk);
766 err = sk_attach_filter(&tun->fprog, tfile->socket.sk);
767 release_sock(tfile->socket.sk);
Jason Wang54f968d2012-10-31 19:45:57 +0000768 if (!err)
769 goto out;
770 }
Jason Wang1576d982016-06-30 14:45:36 +0800771
772 if (!tfile->detached &&
Jason Wangb196d882018-05-11 10:49:25 +0800773 ptr_ring_resize(&tfile->tx_ring, dev->tx_queue_len,
774 GFP_KERNEL, tun_ptr_free)) {
Jason Wang1576d982016-06-30 14:45:36 +0800775 err = -ENOMEM;
776 goto out;
777 }
778
Jason Wangc8d68e62012-10-31 19:46:00 +0000779 tfile->queue_index = tun->numqueues;
Jason Wangaddf8fc2016-05-19 13:36:51 +0800780 tfile->socket.sk->sk_shutdown &= ~RCV_SHUTDOWN;
Jesper Dangaard Brouer8bf5c4e2018-01-03 11:25:59 +0100781
782 if (tfile->detached) {
783 /* Re-attach detached tfile, updating XDP queue_index */
784 WARN_ON(!xdp_rxq_info_is_reg(&tfile->xdp_rxq));
785
786 if (tfile->xdp_rxq.queue_index != tfile->queue_index)
787 tfile->xdp_rxq.queue_index = tfile->queue_index;
788 } else {
789 /* Setup XDP RX-queue info, for new tfile getting attached */
790 err = xdp_rxq_info_reg(&tfile->xdp_rxq,
Björn Töpelb02e5a02020-11-30 19:52:01 +0100791 tun->dev, tfile->queue_index, 0);
Jesper Dangaard Brouer8bf5c4e2018-01-03 11:25:59 +0100792 if (err < 0)
793 goto out;
Jesper Dangaard Brouer8d5d8852018-04-17 16:46:12 +0200794 err = xdp_rxq_info_reg_mem_model(&tfile->xdp_rxq,
795 MEM_TYPE_PAGE_SHARED, NULL);
796 if (err < 0) {
797 xdp_rxq_info_unreg(&tfile->xdp_rxq);
798 goto out;
799 }
Jesper Dangaard Brouer8bf5c4e2018-01-03 11:25:59 +0100800 err = 0;
801 }
802
Petar Penkov94317092017-09-22 13:49:14 -0700803 if (tfile->detached) {
Jason Wang4008e972012-12-13 23:53:30 +0000804 tun_enable_queue(tfile);
Petar Penkov94317092017-09-22 13:49:14 -0700805 } else {
Jason Wang4008e972012-12-13 23:53:30 +0000806 sock_hold(&tfile->sk);
Eric Dumazetaf3fb242018-09-28 14:51:49 -0700807 tun_napi_init(tun, tfile, napi, napi_frags);
Petar Penkov94317092017-09-22 13:49:14 -0700808 }
Jason Wang4008e972012-12-13 23:53:30 +0000809
Jason Wange4a2a302018-09-12 11:16:59 +0800810 if (rtnl_dereference(tun->xdp_prog))
811 sock_set_flag(&tfile->sk, SOCK_XDP);
812
Jason Wangc8d68e62012-10-31 19:46:00 +0000813 /* device is allowed to go away first, so no need to hold extra
814 * refcnt.
815 */
Eric W. Biedermana7385ba2009-01-20 10:57:48 +0000816
Stanislav Fomichev0b7959b2019-01-07 13:38:38 -0800817 /* Publish tfile->tun and tun->tfiles only after we've fully
818 * initialized tfile; otherwise we risk using half-initialized
819 * object.
820 */
Yang Yingliang77f22f92019-09-10 18:56:57 +0800821 if (publish_tun)
822 rcu_assign_pointer(tfile->tun, tun);
Stanislav Fomichev0b7959b2019-01-07 13:38:38 -0800823 rcu_assign_pointer(tun->tfiles[tun->numqueues], tfile);
824 tun->numqueues++;
George Amanakis3a03cb82019-01-29 22:50:13 -0500825 tun_set_real_num_queues(tun);
Eric W. Biederman38231b72009-01-20 11:02:28 +0000826out:
Eric W. Biederman38231b72009-01-20 11:02:28 +0000827 return err;
Eric W. Biedermana7385ba2009-01-20 10:57:48 +0000828}
829
yuan linyu9484dc72017-09-23 22:36:52 +0800830static struct tun_struct *tun_get(struct tun_file *tfile)
Eric W. Biederman631ab462009-01-20 11:00:40 +0000831{
Jason Wang6e914fc2012-10-31 19:45:58 +0000832 struct tun_struct *tun;
Eric W. Biedermanc70f1822009-01-20 11:07:17 +0000833
Jason Wang6e914fc2012-10-31 19:45:58 +0000834 rcu_read_lock();
835 tun = rcu_dereference(tfile->tun);
836 if (tun)
837 dev_hold(tun->dev);
838 rcu_read_unlock();
Eric W. Biedermanc70f1822009-01-20 11:07:17 +0000839
840 return tun;
Eric W. Biederman631ab462009-01-20 11:00:40 +0000841}
842
Eric W. Biederman631ab462009-01-20 11:00:40 +0000843static void tun_put(struct tun_struct *tun)
844{
Jason Wang6e914fc2012-10-31 19:45:58 +0000845 dev_put(tun->dev);
Eric W. Biederman631ab462009-01-20 11:00:40 +0000846}
847
Joe Perches6b8a66e2011-03-02 07:18:10 +0000848/* TAP filtering */
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -0700849static void addr_hash_set(u32 *mask, const u8 *addr)
850{
851 int n = ether_crc(ETH_ALEN, addr) >> 26;
852 mask[n >> 5] |= (1 << (n & 31));
853}
854
855static unsigned int addr_hash_test(const u32 *mask, const u8 *addr)
856{
857 int n = ether_crc(ETH_ALEN, addr) >> 26;
858 return mask[n >> 5] & (1 << (n & 31));
859}
860
861static int update_filter(struct tap_filter *filter, void __user *arg)
862{
863 struct { u8 u[ETH_ALEN]; } *addr;
864 struct tun_filter uf;
865 int err, alen, n, nexact;
866
867 if (copy_from_user(&uf, arg, sizeof(uf)))
868 return -EFAULT;
869
870 if (!uf.count) {
871 /* Disabled */
872 filter->count = 0;
873 return 0;
874 }
875
876 alen = ETH_ALEN * uf.count;
Markus Elfring28e81902016-08-20 08:54:15 +0200877 addr = memdup_user(arg + sizeof(uf), alen);
878 if (IS_ERR(addr))
879 return PTR_ERR(addr);
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -0700880
881 /* The filter is updated without holding any locks. Which is
882 * perfectly safe. We disable it first and in the worst
883 * case we'll accept a few undesired packets. */
884 filter->count = 0;
885 wmb();
886
887 /* Use first set of addresses as an exact filter */
888 for (n = 0; n < uf.count && n < FLT_EXACT_COUNT; n++)
889 memcpy(filter->addr[n], addr[n].u, ETH_ALEN);
890
891 nexact = n;
892
Alex Williamsoncfbf84f2009-02-08 17:49:17 -0800893 /* Remaining multicast addresses are hashed,
894 * unicast will leave the filter disabled. */
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -0700895 memset(filter->mask, 0, sizeof(filter->mask));
Alex Williamsoncfbf84f2009-02-08 17:49:17 -0800896 for (; n < uf.count; n++) {
897 if (!is_multicast_ether_addr(addr[n].u)) {
898 err = 0; /* no filter */
Markus Elfring3b8d2a62016-08-20 09:00:34 +0200899 goto free_addr;
Alex Williamsoncfbf84f2009-02-08 17:49:17 -0800900 }
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -0700901 addr_hash_set(filter->mask, addr[n].u);
Alex Williamsoncfbf84f2009-02-08 17:49:17 -0800902 }
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -0700903
904 /* For ALLMULTI just set the mask to all ones.
905 * This overrides the mask populated above. */
906 if ((uf.flags & TUN_FLT_ALLMULTI))
907 memset(filter->mask, ~0, sizeof(filter->mask));
908
909 /* Now enable the filter */
910 wmb();
911 filter->count = nexact;
912
913 /* Return the number of exact filters */
914 err = nexact;
Markus Elfring3b8d2a62016-08-20 09:00:34 +0200915free_addr:
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -0700916 kfree(addr);
917 return err;
918}
919
920/* Returns: 0 - drop, !=0 - accept */
921static int run_filter(struct tap_filter *filter, const struct sk_buff *skb)
922{
923 /* Cannot use eth_hdr(skb) here because skb_mac_hdr() is incorrect
924 * at this point. */
925 struct ethhdr *eh = (struct ethhdr *) skb->data;
926 int i;
927
928 /* Exact match */
929 for (i = 0; i < filter->count; i++)
Joe Perches2e42e472012-05-09 17:17:46 +0000930 if (ether_addr_equal(eh->h_dest, filter->addr[i]))
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -0700931 return 1;
932
933 /* Inexact match (multicast only) */
934 if (is_multicast_ether_addr(eh->h_dest))
935 return addr_hash_test(filter->mask, eh->h_dest);
936
937 return 0;
938}
939
940/*
941 * Checks whether the packet is accepted or not.
942 * Returns: 0 - drop, !=0 - accept
943 */
944static int check_filter(struct tap_filter *filter, const struct sk_buff *skb)
945{
946 if (!filter->count)
947 return 1;
948
949 return run_filter(filter, skb);
950}
951
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952/* Network device part of the driver */
953
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954static const struct ethtool_ops tun_ethtool_ops;
955
Eric W. Biedermanc70f1822009-01-20 11:07:17 +0000956/* Net device detach from fd. */
957static void tun_net_uninit(struct net_device *dev)
958{
Jason Wangc8d68e62012-10-31 19:46:00 +0000959 tun_detach_all(dev);
Eric W. Biedermanc70f1822009-01-20 11:07:17 +0000960}
961
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962/* Net device open. */
963static int tun_net_open(struct net_device *dev)
964{
Jason Wangc8d68e62012-10-31 19:46:00 +0000965 netif_tx_start_all_queues(dev);
Hannes Frederic Sowab20e2d52017-03-13 00:00:26 +0100966
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967 return 0;
968}
969
970/* Net device close. */
971static int tun_net_close(struct net_device *dev)
972{
Jason Wangc8d68e62012-10-31 19:46:00 +0000973 netif_tx_stop_all_queues(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974 return 0;
975}
976
977/* Net device start xmit */
Jason Wang96f84062017-12-04 17:31:23 +0800978static void tun_automq_xmit(struct tun_struct *tun, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979{
Jason Wang3df97ba2016-04-25 23:13:42 -0400980#ifdef CONFIG_RPS
Eric Dumazetdc053602019-03-22 08:56:38 -0700981 if (tun->numqueues == 1 && static_branch_unlikely(&rps_needed)) {
Tom Herbert9bc88932013-12-22 18:54:32 +0800982 /* Select queue was not called for the skbuff, so we extract the
983 * RPS hash and save it into the flow_table here.
984 */
Wang Li4b035272018-10-09 10:32:04 +0800985 struct tun_flow_entry *e;
Tom Herbert9bc88932013-12-22 18:54:32 +0800986 __u32 rxhash;
987
Jason Wangfeec0842017-06-06 14:09:49 +0800988 rxhash = __skb_get_hash_symmetric(skb);
Wang Li4b035272018-10-09 10:32:04 +0800989 e = tun_flow_find(&tun->flows[tun_hashfn(rxhash)], rxhash);
990 if (e)
991 tun_flow_save_rps_rxhash(e, rxhash);
Tom Herbert9bc88932013-12-22 18:54:32 +0800992 }
Jason Wang3df97ba2016-04-25 23:13:42 -0400993#endif
Jason Wang96f84062017-12-04 17:31:23 +0800994}
995
Jason Wangaff3d702018-01-16 16:31:02 +0800996static unsigned int run_ebpf_filter(struct tun_struct *tun,
997 struct sk_buff *skb,
998 int len)
999{
1000 struct tun_prog *prog = rcu_dereference(tun->filter_prog);
1001
1002 if (prog)
1003 len = bpf_prog_run_clear_cb(prog->prog, skb);
1004
1005 return len;
1006}
1007
Jason Wang96f84062017-12-04 17:31:23 +08001008/* Net device start xmit */
1009static netdev_tx_t tun_net_xmit(struct sk_buff *skb, struct net_device *dev)
1010{
1011 struct tun_struct *tun = netdev_priv(dev);
1012 int txq = skb->queue_mapping;
Nicolas Dichtela31d27f2021-11-12 08:56:03 +01001013 struct netdev_queue *queue;
Jason Wang96f84062017-12-04 17:31:23 +08001014 struct tun_file *tfile;
Jason Wangaff3d702018-01-16 16:31:02 +08001015 int len = skb->len;
Jason Wang96f84062017-12-04 17:31:23 +08001016
1017 rcu_read_lock();
1018 tfile = rcu_dereference(tun->tfiles[txq]);
Jason Wang96f84062017-12-04 17:31:23 +08001019
1020 /* Drop packet if interface is not attached */
Jason Wang9871a9e2019-05-08 23:20:18 -04001021 if (!tfile)
Jason Wang96f84062017-12-04 17:31:23 +08001022 goto drop;
1023
1024 if (!rcu_dereference(tun->steering_prog))
1025 tun_automq_xmit(tun, skb);
Tom Herbert9bc88932013-12-22 18:54:32 +08001026
Michal Kubecek34241702020-03-04 17:24:14 +01001027 netif_info(tun, tx_queued, tun->dev, "%s %d\n", __func__, skb->len);
Jason Wang6e914fc2012-10-31 19:45:58 +00001028
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -07001029 /* Drop if the filter does not like it.
1030 * This is a noop if the filter is disabled.
1031 * Filter can be enabled only for the TAP devices. */
1032 if (!check_filter(&tun->txflt, skb))
1033 goto drop;
1034
Jason Wang54f968d2012-10-31 19:45:57 +00001035 if (tfile->socket.sk->sk_filter &&
1036 sk_filter(tfile->socket.sk, skb))
Michael S. Tsirkin99405162010-02-14 01:01:10 +00001037 goto drop;
1038
Jason Wangaff3d702018-01-16 16:31:02 +08001039 len = run_ebpf_filter(tun, skb, len);
Bjørn Mork81c89502018-04-17 22:46:38 +02001040 if (len == 0 || pskb_trim(skb, len))
Jason Wangaff3d702018-01-16 16:31:02 +08001041 goto drop;
1042
Willem de Bruijn1f8b9772017-08-03 16:29:41 -04001043 if (unlikely(skb_orphan_frags_rx(skb, GFP_ATOMIC)))
Jason Wang7bf66302013-09-05 17:54:00 +08001044 goto drop;
1045
Soheil Hassas Yeganeh7b996242016-08-23 18:22:33 -04001046 skb_tx_timestamp(skb);
Richard Cochraneda29772013-07-19 19:40:10 +02001047
Michael S. Tsirkin0110d6f2010-04-13 04:59:44 +00001048 /* Orphan the skb - required as we might hang on to it
Jason Wang7bf66302013-09-05 17:54:00 +08001049 * for indefinite time.
1050 */
Michael S. Tsirkin0110d6f2010-04-13 04:59:44 +00001051 skb_orphan(skb);
1052
Florian Westphal895b5c92019-09-29 20:54:03 +02001053 nf_reset_ct(skb);
Eric Dumazetf8af75f2013-03-06 11:02:37 +00001054
Jason Wang5990a302018-01-04 11:14:27 +08001055 if (ptr_ring_produce(&tfile->tx_ring, skb))
Jason Wang1576d982016-06-30 14:45:36 +08001056 goto drop;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057
Nicolas Dichtela31d27f2021-11-12 08:56:03 +01001058 /* NETIF_F_LLTX requires to do our own update of trans_start */
1059 queue = netdev_get_tx_queue(dev, txq);
1060 queue->trans_start = jiffies;
1061
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062 /* Notify and wake up reader process */
Jason Wang54f968d2012-10-31 19:45:57 +00001063 if (tfile->flags & TUN_FASYNC)
1064 kill_fasync(&tfile->fasync, SIGIO, POLL_IN);
Xi Wang9e641bd2014-05-16 15:11:48 -07001065 tfile->socket.sk->sk_data_ready(tfile->socket.sk);
Jason Wang6e914fc2012-10-31 19:45:58 +00001066
1067 rcu_read_unlock();
Patrick McHardy6ed10652009-06-23 06:03:08 +00001068 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069
1070drop:
Heiner Kallweit497a5752020-11-07 21:50:56 +01001071 atomic_long_inc(&dev->tx_dropped);
Michael S. Tsirkin149d36f2012-11-01 09:16:32 +00001072 skb_tx_error(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073 kfree_skb(skb);
Jason Wang6e914fc2012-10-31 19:45:58 +00001074 rcu_read_unlock();
Jason Wangbaeabab2014-11-18 13:20:41 +08001075 return NET_XMIT_DROP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076}
1077
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -07001078static void tun_net_mclist(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079{
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -07001080 /*
1081 * This callback is supposed to deal with mc filter in
1082 * _rx_ path and has nothing to do with the _tx_ path.
1083 * In rx path we always accept everything userspace gives us.
1084 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085}
1086
Michał Mirosławc8f44af2011-11-15 15:29:55 +00001087static netdev_features_t tun_net_fix_features(struct net_device *dev,
1088 netdev_features_t features)
Michał Mirosław88255372011-04-19 06:13:10 +00001089{
1090 struct tun_struct *tun = netdev_priv(dev);
1091
1092 return (features & tun->set_features) | (features & ~TUN_USER_FEATURES);
1093}
Paolo Abenieaea34b2016-02-26 10:45:40 +01001094
1095static void tun_set_headroom(struct net_device *dev, int new_hr)
1096{
1097 struct tun_struct *tun = netdev_priv(dev);
1098
1099 if (new_hr < NET_SKB_PAD)
1100 new_hr = NET_SKB_PAD;
1101
1102 tun->align = new_hr;
1103}
1104
stephen hemmingerbc1f4472017-01-06 19:12:52 -08001105static void
Paolo Abeni608b9972016-04-13 10:52:20 +02001106tun_net_get_stats64(struct net_device *dev, struct rtnl_link_stats64 *stats)
1107{
Paolo Abeni608b9972016-04-13 10:52:20 +02001108 struct tun_struct *tun = netdev_priv(dev);
Paolo Abeni608b9972016-04-13 10:52:20 +02001109
Heiner Kallweit497a5752020-11-07 21:50:56 +01001110 dev_get_tstats64(dev, stats);
Paolo Abeni608b9972016-04-13 10:52:20 +02001111
Heiner Kallweit497a5752020-11-07 21:50:56 +01001112 stats->rx_frame_errors +=
1113 (unsigned long)atomic_long_read(&tun->rx_frame_errors);
Paolo Abeni608b9972016-04-13 10:52:20 +02001114}
1115
Jason Wang761876c2017-08-11 19:41:18 +08001116static int tun_xdp_set(struct net_device *dev, struct bpf_prog *prog,
1117 struct netlink_ext_ack *extack)
1118{
1119 struct tun_struct *tun = netdev_priv(dev);
Jason Wange4a2a302018-09-12 11:16:59 +08001120 struct tun_file *tfile;
Jason Wang761876c2017-08-11 19:41:18 +08001121 struct bpf_prog *old_prog;
Jason Wange4a2a302018-09-12 11:16:59 +08001122 int i;
Jason Wang761876c2017-08-11 19:41:18 +08001123
1124 old_prog = rtnl_dereference(tun->xdp_prog);
1125 rcu_assign_pointer(tun->xdp_prog, prog);
1126 if (old_prog)
1127 bpf_prog_put(old_prog);
1128
Jason Wange4a2a302018-09-12 11:16:59 +08001129 for (i = 0; i < tun->numqueues; i++) {
1130 tfile = rtnl_dereference(tun->tfiles[i]);
1131 if (prog)
1132 sock_set_flag(&tfile->sk, SOCK_XDP);
1133 else
1134 sock_reset_flag(&tfile->sk, SOCK_XDP);
1135 }
1136 list_for_each_entry(tfile, &tun->disabled, next) {
1137 if (prog)
1138 sock_set_flag(&tfile->sk, SOCK_XDP);
1139 else
1140 sock_reset_flag(&tfile->sk, SOCK_XDP);
1141 }
1142
Jason Wang761876c2017-08-11 19:41:18 +08001143 return 0;
1144}
1145
Jakub Kicinskif4e63522017-11-03 13:56:16 -07001146static int tun_xdp(struct net_device *dev, struct netdev_bpf *xdp)
Jason Wang761876c2017-08-11 19:41:18 +08001147{
1148 switch (xdp->command) {
1149 case XDP_SETUP_PROG:
1150 return tun_xdp_set(dev, xdp->prog, xdp->extack);
Jason Wang761876c2017-08-11 19:41:18 +08001151 default:
1152 return -EINVAL;
1153 }
1154}
1155
Nicolas Dichtel26d31922018-11-28 19:12:56 +01001156static int tun_net_change_carrier(struct net_device *dev, bool new_carrier)
1157{
1158 if (new_carrier) {
1159 struct tun_struct *tun = netdev_priv(dev);
1160
1161 if (!tun->numqueues)
1162 return -EPERM;
1163
1164 netif_carrier_on(dev);
1165 } else {
1166 netif_carrier_off(dev);
1167 }
1168 return 0;
1169}
1170
Stephen Hemminger758e43b2008-11-19 22:10:37 -08001171static const struct net_device_ops tun_netdev_ops = {
Eric W. Biedermanc70f1822009-01-20 11:07:17 +00001172 .ndo_uninit = tun_net_uninit,
Stephen Hemminger758e43b2008-11-19 22:10:37 -08001173 .ndo_open = tun_net_open,
1174 .ndo_stop = tun_net_close,
Stephen Hemminger00829822008-11-20 20:14:53 -08001175 .ndo_start_xmit = tun_net_xmit,
Michał Mirosław88255372011-04-19 06:13:10 +00001176 .ndo_fix_features = tun_net_fix_features,
Jason Wangc8d68e62012-10-31 19:46:00 +00001177 .ndo_select_queue = tun_select_queue,
Paolo Abenieaea34b2016-02-26 10:45:40 +01001178 .ndo_set_rx_headroom = tun_set_headroom,
Paolo Abeni608b9972016-04-13 10:52:20 +02001179 .ndo_get_stats64 = tun_net_get_stats64,
Nicolas Dichtel26d31922018-11-28 19:12:56 +01001180 .ndo_change_carrier = tun_net_change_carrier,
Stephen Hemminger758e43b2008-11-19 22:10:37 -08001181};
1182
Jesper Dangaard Brouer0c9d9172018-05-31 11:00:03 +02001183static void __tun_xdp_flush_tfile(struct tun_file *tfile)
1184{
1185 /* Notify and wake up reader process */
1186 if (tfile->flags & TUN_FASYNC)
1187 kill_fasync(&tfile->fasync, SIGIO, POLL_IN);
1188 tfile->socket.sk->sk_data_ready(tfile->socket.sk);
1189}
1190
Jesper Dangaard Brouer42b33462018-05-31 10:59:47 +02001191static int tun_xdp_xmit(struct net_device *dev, int n,
1192 struct xdp_frame **frames, u32 flags)
Jason Wangfc72d1d2018-01-04 11:14:28 +08001193{
1194 struct tun_struct *tun = netdev_priv(dev);
Jason Wangfc72d1d2018-01-04 11:14:28 +08001195 struct tun_file *tfile;
1196 u32 numqueues;
Lorenzo Bianconifdc13972021-03-08 12:06:58 +01001197 int nxmit = 0;
Jesper Dangaard Brouer735fc402018-05-24 16:46:12 +02001198 int i;
Jason Wangfc72d1d2018-01-04 11:14:28 +08001199
Jesper Dangaard Brouer0c9d9172018-05-31 11:00:03 +02001200 if (unlikely(flags & ~XDP_XMIT_FLAGS_MASK))
Jesper Dangaard Brouer42b33462018-05-31 10:59:47 +02001201 return -EINVAL;
1202
Jason Wangfc72d1d2018-01-04 11:14:28 +08001203 rcu_read_lock();
1204
Jason Wang9871a9e2019-05-08 23:20:18 -04001205resample:
Jason Wangfc72d1d2018-01-04 11:14:28 +08001206 numqueues = READ_ONCE(tun->numqueues);
1207 if (!numqueues) {
Jesper Dangaard Brouer735fc402018-05-24 16:46:12 +02001208 rcu_read_unlock();
1209 return -ENXIO; /* Caller will free/return all frames */
Jason Wangfc72d1d2018-01-04 11:14:28 +08001210 }
1211
1212 tfile = rcu_dereference(tun->tfiles[smp_processor_id() %
1213 numqueues]);
Jason Wang9871a9e2019-05-08 23:20:18 -04001214 if (unlikely(!tfile))
1215 goto resample;
Jason Wangfc72d1d2018-01-04 11:14:28 +08001216
Jesper Dangaard Brouer735fc402018-05-24 16:46:12 +02001217 spin_lock(&tfile->tx_ring.producer_lock);
1218 for (i = 0; i < n; i++) {
1219 struct xdp_frame *xdp = frames[i];
1220 /* Encode the XDP flag into lowest bit for consumer to differ
1221 * XDP buffer from sk_buff.
1222 */
1223 void *frame = tun_xdp_to_ptr(xdp);
1224
1225 if (__ptr_ring_produce(&tfile->tx_ring, frame)) {
Heiner Kallweit497a5752020-11-07 21:50:56 +01001226 atomic_long_inc(&dev->tx_dropped);
Lorenzo Bianconifdc13972021-03-08 12:06:58 +01001227 break;
Jesper Dangaard Brouer735fc402018-05-24 16:46:12 +02001228 }
Lorenzo Bianconifdc13972021-03-08 12:06:58 +01001229 nxmit++;
Jesper Dangaard Brouer735fc402018-05-24 16:46:12 +02001230 }
1231 spin_unlock(&tfile->tx_ring.producer_lock);
1232
Jesper Dangaard Brouer0c9d9172018-05-31 11:00:03 +02001233 if (flags & XDP_XMIT_FLUSH)
1234 __tun_xdp_flush_tfile(tfile);
1235
Jason Wangfc72d1d2018-01-04 11:14:28 +08001236 rcu_read_unlock();
Lorenzo Bianconifdc13972021-03-08 12:06:58 +01001237 return nxmit;
Jason Wangfc72d1d2018-01-04 11:14:28 +08001238}
1239
Jesper Dangaard Brouer44fa2db2018-04-17 16:46:37 +02001240static int tun_xdp_tx(struct net_device *dev, struct xdp_buff *xdp)
1241{
Lorenzo Bianconi1b698fa2020-05-28 22:47:29 +02001242 struct xdp_frame *frame = xdp_convert_buff_to_frame(xdp);
Lorenzo Bianconifdc13972021-03-08 12:06:58 +01001243 int nxmit;
Jesper Dangaard Brouer44fa2db2018-04-17 16:46:37 +02001244
1245 if (unlikely(!frame))
1246 return -EOVERFLOW;
1247
Lorenzo Bianconifdc13972021-03-08 12:06:58 +01001248 nxmit = tun_xdp_xmit(dev, 1, &frame, XDP_XMIT_FLUSH);
1249 if (!nxmit)
1250 xdp_return_frame_rx_napi(frame);
1251 return nxmit;
Jason Wangfc72d1d2018-01-04 11:14:28 +08001252}
1253
Stephen Hemminger758e43b2008-11-19 22:10:37 -08001254static const struct net_device_ops tap_netdev_ops = {
Eric W. Biedermanc70f1822009-01-20 11:07:17 +00001255 .ndo_uninit = tun_net_uninit,
Stephen Hemminger758e43b2008-11-19 22:10:37 -08001256 .ndo_open = tun_net_open,
1257 .ndo_stop = tun_net_close,
Stephen Hemminger00829822008-11-20 20:14:53 -08001258 .ndo_start_xmit = tun_net_xmit,
Michał Mirosław88255372011-04-19 06:13:10 +00001259 .ndo_fix_features = tun_net_fix_features,
Jiri Pirkoafc4b132011-08-16 06:29:01 +00001260 .ndo_set_rx_mode = tun_net_mclist,
Stephen Hemminger758e43b2008-11-19 22:10:37 -08001261 .ndo_set_mac_address = eth_mac_addr,
1262 .ndo_validate_addr = eth_validate_addr,
Jason Wangc8d68e62012-10-31 19:46:00 +00001263 .ndo_select_queue = tun_select_queue,
Toshiaki Makita5e527962015-07-31 15:03:27 +09001264 .ndo_features_check = passthru_features_check,
Paolo Abenieaea34b2016-02-26 10:45:40 +01001265 .ndo_set_rx_headroom = tun_set_headroom,
Heiner Kallweit497a5752020-11-07 21:50:56 +01001266 .ndo_get_stats64 = dev_get_tstats64,
Jakub Kicinskif4e63522017-11-03 13:56:16 -07001267 .ndo_bpf = tun_xdp,
Jason Wangfc72d1d2018-01-04 11:14:28 +08001268 .ndo_xdp_xmit = tun_xdp_xmit,
Nicolas Dichtel26d31922018-11-28 19:12:56 +01001269 .ndo_change_carrier = tun_net_change_carrier,
Stephen Hemminger758e43b2008-11-19 22:10:37 -08001270};
1271
Pavel Emelyanov944a1372013-06-11 17:01:08 +04001272static void tun_flow_init(struct tun_struct *tun)
Jason Wang96442e422012-10-31 19:46:02 +00001273{
1274 int i;
1275
Jason Wang96442e422012-10-31 19:46:02 +00001276 for (i = 0; i < TUN_NUM_FLOW_ENTRIES; i++)
1277 INIT_HLIST_HEAD(&tun->flows[i]);
1278
1279 tun->ageing_time = TUN_FLOW_EXPIRE;
Kees Cooke99e88a2017-10-16 14:43:17 -07001280 timer_setup(&tun->flow_gc_timer, tun_flow_cleanup, 0);
1281 mod_timer(&tun->flow_gc_timer,
1282 round_jiffies_up(jiffies + tun->ageing_time));
Jason Wang96442e422012-10-31 19:46:02 +00001283}
1284
1285static void tun_flow_uninit(struct tun_struct *tun)
1286{
1287 del_timer_sync(&tun->flow_gc_timer);
1288 tun_flow_flush(tun);
Jason Wang96442e422012-10-31 19:46:02 +00001289}
1290
Jarod Wilson91572082016-10-20 13:55:20 -04001291#define MIN_MTU 68
1292#define MAX_MTU 65535
1293
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294/* Initialize net device. */
1295static void tun_net_init(struct net_device *dev)
1296{
1297 struct tun_struct *tun = netdev_priv(dev);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001298
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299 switch (tun->flags & TUN_TYPE_MASK) {
Michael S. Tsirkin40630b82014-11-19 15:17:31 +02001300 case IFF_TUN:
Stephen Hemminger758e43b2008-11-19 22:10:37 -08001301 dev->netdev_ops = &tun_netdev_ops;
Jason A. Donenfeldb9815eb2020-06-29 19:06:22 -06001302 dev->header_ops = &ip_tunnel_header_ops;
Stephen Hemminger758e43b2008-11-19 22:10:37 -08001303
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304 /* Point-to-Point TUN Device */
1305 dev->hard_header_len = 0;
1306 dev->addr_len = 0;
1307 dev->mtu = 1500;
1308
1309 /* Zero header length */
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001310 dev->type = ARPHRD_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311 dev->flags = IFF_POINTOPOINT | IFF_NOARP | IFF_MULTICAST;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001312 break;
1313
Michael S. Tsirkin40630b82014-11-19 15:17:31 +02001314 case IFF_TAP:
Kusanagi Kouichi7a0a9602008-12-29 18:23:28 -08001315 dev->netdev_ops = &tap_netdev_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316 /* Ethernet TAP Device */
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -07001317 ether_setup(dev);
Neil Horman550fd082011-07-26 06:05:38 +00001318 dev->priv_flags &= ~IFF_TX_SKB_SHARING;
stephen hemmingera6768472012-12-10 15:16:00 +00001319 dev->priv_flags |= IFF_LIVE_ADDR_CHANGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320
Danny Kukawkaf2cedb62012-02-15 06:45:39 +00001321 eth_hw_addr_random(dev);
Brian Braunstein36226a82007-04-26 01:00:55 -07001322
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323 break;
1324 }
Jarod Wilson91572082016-10-20 13:55:20 -04001325
1326 dev->min_mtu = MIN_MTU;
1327 dev->max_mtu = MAX_MTU - dev->hard_header_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328}
1329
Jason Wang2f3ab622018-05-22 14:21:04 +08001330static bool tun_sock_writeable(struct tun_struct *tun, struct tun_file *tfile)
1331{
1332 struct sock *sk = tfile->socket.sk;
1333
1334 return (tun->dev->flags & IFF_UP) && sock_writeable(sk);
1335}
1336
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337/* Character device part */
1338
1339/* Poll */
Al Viroafc9a422017-07-03 06:39:46 -04001340static __poll_t tun_chr_poll(struct file *file, poll_table *wait)
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001341{
Eric W. Biedermanb2430de2009-01-20 11:03:21 +00001342 struct tun_file *tfile = file->private_data;
yuan linyu9484dc72017-09-23 22:36:52 +08001343 struct tun_struct *tun = tun_get(tfile);
Mariusz Kozlowski3c8a9c62009-07-05 19:48:35 +00001344 struct sock *sk;
Al Viroafc9a422017-07-03 06:39:46 -04001345 __poll_t mask = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346
1347 if (!tun)
Linus Torvaldsa9a08842018-02-11 14:34:03 -08001348 return EPOLLERR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001349
Jason Wang54f968d2012-10-31 19:45:57 +00001350 sk = tfile->socket.sk;
Mariusz Kozlowski3c8a9c62009-07-05 19:48:35 +00001351
Xi Wang9e641bd2014-05-16 15:11:48 -07001352 poll_wait(file, sk_sleep(sk), wait);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001353
Jason Wang5990a302018-01-04 11:14:27 +08001354 if (!ptr_ring_empty(&tfile->tx_ring))
Linus Torvaldsa9a08842018-02-11 14:34:03 -08001355 mask |= EPOLLIN | EPOLLRDNORM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356
Jason Wang2f3ab622018-05-22 14:21:04 +08001357 /* Make sure SOCKWQ_ASYNC_NOSPACE is set if not writable to
1358 * guarantee EPOLLOUT to be raised by either here or
1359 * tun_sock_write_space(). Then process could get notification
1360 * after it writes to a down device and meets -EIO.
1361 */
1362 if (tun_sock_writeable(tun, tfile) ||
1363 (!test_and_set_bit(SOCKWQ_ASYNC_NOSPACE, &sk->sk_socket->flags) &&
1364 tun_sock_writeable(tun, tfile)))
Linus Torvaldsa9a08842018-02-11 14:34:03 -08001365 mask |= EPOLLOUT | EPOLLWRNORM;
Herbert Xu33dccbb2009-02-05 21:25:32 -08001366
Eric W. Biedermanc70f1822009-01-20 11:07:17 +00001367 if (tun->dev->reg_state != NETREG_REGISTERED)
Linus Torvaldsa9a08842018-02-11 14:34:03 -08001368 mask = EPOLLERR;
Eric W. Biedermanc70f1822009-01-20 11:07:17 +00001369
Eric W. Biederman631ab462009-01-20 11:00:40 +00001370 tun_put(tun);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371 return mask;
1372}
1373
Petar Penkov90e33d42017-09-22 13:49:15 -07001374static struct sk_buff *tun_napi_alloc_frags(struct tun_file *tfile,
1375 size_t len,
1376 const struct iov_iter *it)
1377{
1378 struct sk_buff *skb;
1379 size_t linear;
1380 int err;
1381 int i;
1382
1383 if (it->nr_segs > MAX_SKB_FRAGS + 1)
Yunjian Wang950271d2020-12-25 10:52:16 +08001384 return ERR_PTR(-EMSGSIZE);
Petar Penkov90e33d42017-09-22 13:49:15 -07001385
1386 local_bh_disable();
1387 skb = napi_get_frags(&tfile->napi);
1388 local_bh_enable();
1389 if (!skb)
1390 return ERR_PTR(-ENOMEM);
1391
1392 linear = iov_iter_single_seg_count(it);
1393 err = __skb_grow(skb, linear);
1394 if (err)
1395 goto free;
1396
1397 skb->len = len;
1398 skb->data_len = len - linear;
1399 skb->truesize += skb->data_len;
1400
1401 for (i = 1; i < it->nr_segs; i++) {
1402 size_t fragsz = it->iov[i].iov_len;
Eric Dumazetaa6daac2018-11-18 07:37:33 -08001403 struct page *page;
1404 void *frag;
Petar Penkov90e33d42017-09-22 13:49:15 -07001405
1406 if (fragsz == 0 || fragsz > PAGE_SIZE) {
1407 err = -EINVAL;
1408 goto free;
1409 }
Eric Dumazetaa6daac2018-11-18 07:37:33 -08001410 frag = netdev_alloc_frag(fragsz);
1411 if (!frag) {
Petar Penkov90e33d42017-09-22 13:49:15 -07001412 err = -ENOMEM;
1413 goto free;
1414 }
Eric Dumazetaa6daac2018-11-18 07:37:33 -08001415 page = virt_to_head_page(frag);
1416 skb_fill_page_desc(skb, i - 1, page,
1417 frag - page_address(page), fragsz);
Petar Penkov90e33d42017-09-22 13:49:15 -07001418 }
1419
1420 return skb;
1421free:
1422 /* frees skb and all frags allocated with napi_alloc_frag() */
1423 napi_free_frags(&tfile->napi);
1424 return ERR_PTR(err);
1425}
1426
Rusty Russellf42157c2008-08-15 15:15:10 -07001427/* prepad is the amount to reserve at front. len is length after that.
1428 * linear is a hint as to how much to copy (usually headers). */
Jason Wang54f968d2012-10-31 19:45:57 +00001429static struct sk_buff *tun_alloc_skb(struct tun_file *tfile,
stephen hemminger6f7c1562011-06-08 14:33:08 +00001430 size_t prepad, size_t len,
1431 size_t linear, int noblock)
Rusty Russellf42157c2008-08-15 15:15:10 -07001432{
Jason Wang54f968d2012-10-31 19:45:57 +00001433 struct sock *sk = tfile->socket.sk;
Rusty Russellf42157c2008-08-15 15:15:10 -07001434 struct sk_buff *skb;
Herbert Xu33dccbb2009-02-05 21:25:32 -08001435 int err;
Rusty Russellf42157c2008-08-15 15:15:10 -07001436
1437 /* Under a page? Don't bother with paged skb. */
Herbert Xu0eca93b2009-04-14 02:09:43 -07001438 if (prepad + len < PAGE_SIZE || !linear)
Herbert Xu33dccbb2009-02-05 21:25:32 -08001439 linear = len;
Rusty Russellf42157c2008-08-15 15:15:10 -07001440
Herbert Xu33dccbb2009-02-05 21:25:32 -08001441 skb = sock_alloc_send_pskb(sk, prepad + linear, len - linear, noblock,
Eric Dumazet28d64272013-08-08 14:38:47 -07001442 &err, 0);
Rusty Russellf42157c2008-08-15 15:15:10 -07001443 if (!skb)
Herbert Xu33dccbb2009-02-05 21:25:32 -08001444 return ERR_PTR(err);
Rusty Russellf42157c2008-08-15 15:15:10 -07001445
1446 skb_reserve(skb, prepad);
1447 skb_put(skb, linear);
Herbert Xu33dccbb2009-02-05 21:25:32 -08001448 skb->data_len = len - linear;
1449 skb->len += len - linear;
Rusty Russellf42157c2008-08-15 15:15:10 -07001450
1451 return skb;
1452}
1453
Jason Wang5503fce2017-01-18 15:02:03 +08001454static void tun_rx_batched(struct tun_struct *tun, struct tun_file *tfile,
1455 struct sk_buff *skb, int more)
1456{
1457 struct sk_buff_head *queue = &tfile->sk.sk_write_queue;
1458 struct sk_buff_head process_queue;
1459 u32 rx_batched = tun->rx_batched;
1460 bool rcv = false;
1461
1462 if (!rx_batched || (!more && skb_queue_empty(queue))) {
1463 local_bh_disable();
Matthew Cover8ebebcb2018-11-18 00:46:00 -07001464 skb_record_rx_queue(skb, tfile->queue_index);
Jason Wang5503fce2017-01-18 15:02:03 +08001465 netif_receive_skb(skb);
1466 local_bh_enable();
1467 return;
1468 }
1469
1470 spin_lock(&queue->lock);
1471 if (!more || skb_queue_len(queue) == rx_batched) {
1472 __skb_queue_head_init(&process_queue);
1473 skb_queue_splice_tail_init(queue, &process_queue);
1474 rcv = true;
1475 } else {
1476 __skb_queue_tail(queue, skb);
1477 }
1478 spin_unlock(&queue->lock);
1479
1480 if (rcv) {
1481 struct sk_buff *nskb;
1482
1483 local_bh_disable();
Matthew Cover8ebebcb2018-11-18 00:46:00 -07001484 while ((nskb = __skb_dequeue(&process_queue))) {
1485 skb_record_rx_queue(nskb, tfile->queue_index);
Jason Wang5503fce2017-01-18 15:02:03 +08001486 netif_receive_skb(nskb);
Matthew Cover8ebebcb2018-11-18 00:46:00 -07001487 }
1488 skb_record_rx_queue(skb, tfile->queue_index);
Jason Wang5503fce2017-01-18 15:02:03 +08001489 netif_receive_skb(skb);
1490 local_bh_enable();
1491 }
1492}
1493
Jason Wang66ccbc92017-08-11 19:41:16 +08001494static bool tun_can_build_skb(struct tun_struct *tun, struct tun_file *tfile,
1495 int len, int noblock, bool zerocopy)
1496{
1497 if ((tun->flags & TUN_TYPE_MASK) != IFF_TAP)
1498 return false;
1499
1500 if (tfile->socket.sk->sk_sndbuf != INT_MAX)
1501 return false;
1502
1503 if (!noblock)
1504 return false;
1505
1506 if (zerocopy)
1507 return false;
1508
1509 if (SKB_DATA_ALIGN(len + TUN_RX_PAD) +
1510 SKB_DATA_ALIGN(sizeof(struct skb_shared_info)) > PAGE_SIZE)
1511 return false;
1512
1513 return true;
1514}
1515
Alexis Bauvin4b663362019-07-23 16:23:01 +02001516static struct sk_buff *__tun_build_skb(struct tun_file *tfile,
1517 struct page_frag *alloc_frag, char *buf,
Jason Wang8ae1aff2018-09-12 11:17:04 +08001518 int buflen, int len, int pad)
Jason Wangac1f1f62018-09-12 11:17:03 +08001519{
1520 struct sk_buff *skb = build_skb(buf, buflen);
1521
1522 if (!skb)
1523 return ERR_PTR(-ENOMEM);
1524
Jason Wang8ae1aff2018-09-12 11:17:04 +08001525 skb_reserve(skb, pad);
Jason Wangac1f1f62018-09-12 11:17:03 +08001526 skb_put(skb, len);
Alexis Bauvin4b663362019-07-23 16:23:01 +02001527 skb_set_owner_w(skb, tfile->socket.sk);
Jason Wangac1f1f62018-09-12 11:17:03 +08001528
1529 get_page(alloc_frag->page);
1530 alloc_frag->offset += buflen;
1531
1532 return skb;
1533}
1534
Jason Wang8ae1aff2018-09-12 11:17:04 +08001535static int tun_xdp_act(struct tun_struct *tun, struct bpf_prog *xdp_prog,
1536 struct xdp_buff *xdp, u32 act)
1537{
1538 int err;
1539
1540 switch (act) {
1541 case XDP_REDIRECT:
1542 err = xdp_do_redirect(tun->dev, xdp, xdp_prog);
Jason Wang8ae1aff2018-09-12 11:17:04 +08001543 if (err)
1544 return err;
1545 break;
1546 case XDP_TX:
1547 err = tun_xdp_tx(tun->dev, xdp);
1548 if (err < 0)
1549 return err;
1550 break;
1551 case XDP_PASS:
1552 break;
1553 default:
1554 bpf_warn_invalid_xdp_action(act);
Gustavo A. R. Silvadf561f662020-08-23 17:36:59 -05001555 fallthrough;
Jason Wang8ae1aff2018-09-12 11:17:04 +08001556 case XDP_ABORTED:
1557 trace_xdp_exception(tun->dev, xdp_prog, act);
Gustavo A. R. Silvadf561f662020-08-23 17:36:59 -05001558 fallthrough;
Jason Wang8ae1aff2018-09-12 11:17:04 +08001559 case XDP_DROP:
Heiner Kallweit497a5752020-11-07 21:50:56 +01001560 atomic_long_inc(&tun->dev->rx_dropped);
Jason Wang8ae1aff2018-09-12 11:17:04 +08001561 break;
1562 }
1563
1564 return act;
1565}
1566
Jason Wang761876c2017-08-11 19:41:18 +08001567static struct sk_buff *tun_build_skb(struct tun_struct *tun,
1568 struct tun_file *tfile,
Jason Wang66ccbc92017-08-11 19:41:16 +08001569 struct iov_iter *from,
Jason Wang761876c2017-08-11 19:41:18 +08001570 struct virtio_net_hdr *hdr,
Jason Wang1cfe6e92017-09-04 11:36:09 +08001571 int len, int *skb_xdp)
Jason Wang66ccbc92017-08-11 19:41:16 +08001572{
Eric Dumazet0bbd7da2017-08-16 22:14:33 +08001573 struct page_frag *alloc_frag = &current->task_frag;
Jason Wang761876c2017-08-11 19:41:18 +08001574 struct bpf_prog *xdp_prog;
Jason Wang7df13212017-09-04 11:36:08 +08001575 int buflen = SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
Jason Wang66ccbc92017-08-11 19:41:16 +08001576 char *buf;
1577 size_t copied;
Jason Wang8ae1aff2018-09-12 11:17:04 +08001578 int pad = TUN_RX_PAD;
1579 int err = 0;
Jason Wang7df13212017-09-04 11:36:08 +08001580
1581 rcu_read_lock();
1582 xdp_prog = rcu_dereference(tun->xdp_prog);
1583 if (xdp_prog)
Jason Wang4f23aff2018-09-12 11:17:00 +08001584 pad += XDP_PACKET_HEADROOM;
Jason Wang7df13212017-09-04 11:36:08 +08001585 buflen += SKB_DATA_ALIGN(len + pad);
1586 rcu_read_unlock();
Jason Wang66ccbc92017-08-11 19:41:16 +08001587
Jason Wang63b9ab62017-10-27 11:05:44 +08001588 alloc_frag->offset = ALIGN((u64)alloc_frag->offset, SMP_CACHE_BYTES);
Jason Wang66ccbc92017-08-11 19:41:16 +08001589 if (unlikely(!skb_page_frag_refill(buflen, alloc_frag, GFP_KERNEL)))
1590 return ERR_PTR(-ENOMEM);
1591
1592 buf = (char *)page_address(alloc_frag->page) + alloc_frag->offset;
1593 copied = copy_page_from_iter(alloc_frag->page,
Jason Wang7df13212017-09-04 11:36:08 +08001594 alloc_frag->offset + pad,
Jason Wang66ccbc92017-08-11 19:41:16 +08001595 len, from);
1596 if (copied != len)
1597 return ERR_PTR(-EFAULT);
1598
Jason Wang7df13212017-09-04 11:36:08 +08001599 /* There's a small window that XDP may be set after the check
1600 * of xdp_prog above, this should be rare and for simplicity
1601 * we do XDP on skb in case the headroom is not enough.
1602 */
Jason Wangac1f1f62018-09-12 11:17:03 +08001603 if (hdr->gso_type || !xdp_prog) {
Jason Wang1cfe6e92017-09-04 11:36:09 +08001604 *skb_xdp = 1;
Alexis Bauvin4b663362019-07-23 16:23:01 +02001605 return __tun_build_skb(tfile, alloc_frag, buf, buflen, len,
1606 pad);
Jason Wangac1f1f62018-09-12 11:17:03 +08001607 }
1608
1609 *skb_xdp = 0;
Jason Wang66ccbc92017-08-11 19:41:16 +08001610
Toshiaki Makita6547e382018-05-28 19:37:49 +09001611 local_bh_disable();
Jason Wang761876c2017-08-11 19:41:18 +08001612 rcu_read_lock();
1613 xdp_prog = rcu_dereference(tun->xdp_prog);
Jason Wang8ae1aff2018-09-12 11:17:04 +08001614 if (xdp_prog) {
Jason Wang761876c2017-08-11 19:41:18 +08001615 struct xdp_buff xdp;
Jason Wang761876c2017-08-11 19:41:18 +08001616 u32 act;
1617
Lorenzo Bianconi43b51692020-12-22 22:09:28 +01001618 xdp_init_buff(&xdp, buflen, &tfile->xdp_rxq);
Lorenzo Bianconibe9df4a2020-12-22 22:09:29 +01001619 xdp_prepare_buff(&xdp, buf, pad, len, false);
Jason Wang761876c2017-08-11 19:41:18 +08001620
Jason Wang8ae1aff2018-09-12 11:17:04 +08001621 act = bpf_prog_run_xdp(xdp_prog, &xdp);
1622 if (act == XDP_REDIRECT || act == XDP_TX) {
Jason Wang761876c2017-08-11 19:41:18 +08001623 get_page(alloc_frag->page);
1624 alloc_frag->offset += buflen;
Jason Wang761876c2017-08-11 19:41:18 +08001625 }
Jason Wang8ae1aff2018-09-12 11:17:04 +08001626 err = tun_xdp_act(tun, xdp_prog, &xdp, act);
Will Deaconbee34892020-04-03 16:13:21 +01001627 if (err < 0) {
1628 if (act == XDP_REDIRECT || act == XDP_TX)
1629 put_page(alloc_frag->page);
1630 goto out;
1631 }
1632
Jason Wang1a097912018-09-12 11:17:05 +08001633 if (err == XDP_REDIRECT)
Toke Høiland-Jørgensen1d233882020-01-16 16:14:45 +01001634 xdp_do_flush();
Jason Wang8ae1aff2018-09-12 11:17:04 +08001635 if (err != XDP_PASS)
1636 goto out;
1637
1638 pad = xdp.data - xdp.data_hard_start;
1639 len = xdp.data_end - xdp.data;
Jason Wang761876c2017-08-11 19:41:18 +08001640 }
Jason Wang291aeb22018-09-12 11:17:01 +08001641 rcu_read_unlock();
1642 local_bh_enable();
Jason Wang761876c2017-08-11 19:41:18 +08001643
Alexis Bauvin4b663362019-07-23 16:23:01 +02001644 return __tun_build_skb(tfile, alloc_frag, buf, buflen, len, pad);
Jason Wang761876c2017-08-11 19:41:18 +08001645
Jason Wangf7053b62018-09-12 11:17:02 +08001646out:
Jason Wang761876c2017-08-11 19:41:18 +08001647 rcu_read_unlock();
Toshiaki Makita6547e382018-05-28 19:37:49 +09001648 local_bh_enable();
Jason Wang761876c2017-08-11 19:41:18 +08001649 return NULL;
Jason Wang66ccbc92017-08-11 19:41:16 +08001650}
1651
Linus Torvalds1da177e2005-04-16 15:20:36 -07001652/* Get packet from user space buffer */
Jason Wang54f968d2012-10-31 19:45:57 +00001653static ssize_t tun_get_user(struct tun_struct *tun, struct tun_file *tfile,
Al Virof5ff53b2014-06-19 15:36:49 -04001654 void *msg_control, struct iov_iter *from,
Jason Wang5503fce2017-01-18 15:02:03 +08001655 int noblock, bool more)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001656{
Harvey Harrison09640e632009-02-01 00:45:17 -08001657 struct tun_pi pi = { 0, cpu_to_be16(ETH_P_IP) };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001658 struct sk_buff *skb;
Al Virof5ff53b2014-06-19 15:36:49 -04001659 size_t total_len = iov_iter_count(from);
Paolo Abenieaea34b2016-02-26 10:45:40 +01001660 size_t len = total_len, align = tun->align, linear;
Rusty Russellf43798c2008-07-03 03:48:02 -07001661 struct virtio_net_hdr gso = { 0 };
Jason Wang96f8d9e2013-11-13 14:00:39 +08001662 int good_linear;
Michael S. Tsirkin06908992012-07-20 09:23:23 +00001663 int copylen;
1664 bool zerocopy = false;
1665 int err;
Jason Wang96f84062017-12-04 17:31:23 +08001666 u32 rxhash = 0;
Jason Wang1cfe6e92017-09-04 11:36:09 +08001667 int skb_xdp = 1;
Eric Dumazetaf3fb242018-09-28 14:51:49 -07001668 bool frags = tun_napi_frags_enabled(tfile);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001669
Michael S. Tsirkin40630b82014-11-19 15:17:31 +02001670 if (!(tun->flags & IFF_NO_PI)) {
Dan Carpenter15718ea2013-08-15 15:52:57 +03001671 if (len < sizeof(pi))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001672 return -EINVAL;
Dan Carpenter15718ea2013-08-15 15:52:57 +03001673 len -= sizeof(pi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001674
Al Virocbbd26b2016-11-01 22:09:04 -04001675 if (!copy_from_iter_full(&pi, sizeof(pi), from))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001676 return -EFAULT;
1677 }
1678
Michael S. Tsirkin40630b82014-11-19 15:17:31 +02001679 if (tun->flags & IFF_VNET_HDR) {
Willem de Bruijne1edab82017-02-03 18:20:48 -05001680 int vnet_hdr_sz = READ_ONCE(tun->vnet_hdr_sz);
1681
1682 if (len < vnet_hdr_sz)
Rusty Russellf43798c2008-07-03 03:48:02 -07001683 return -EINVAL;
Willem de Bruijne1edab82017-02-03 18:20:48 -05001684 len -= vnet_hdr_sz;
Rusty Russellf43798c2008-07-03 03:48:02 -07001685
Al Virocbbd26b2016-11-01 22:09:04 -04001686 if (!copy_from_iter_full(&gso, sizeof(gso), from))
Rusty Russellf43798c2008-07-03 03:48:02 -07001687 return -EFAULT;
1688
Herbert Xu49091222009-06-08 00:20:01 -07001689 if ((gso.flags & VIRTIO_NET_HDR_F_NEEDS_CSUM) &&
Michael S. Tsirkin56f0dcc2014-10-23 22:59:31 +03001690 tun16_to_cpu(tun, gso.csum_start) + tun16_to_cpu(tun, gso.csum_offset) + 2 > tun16_to_cpu(tun, gso.hdr_len))
1691 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 -07001692
Michael S. Tsirkin56f0dcc2014-10-23 22:59:31 +03001693 if (tun16_to_cpu(tun, gso.hdr_len) > len)
Rusty Russellf43798c2008-07-03 03:48:02 -07001694 return -EINVAL;
Willem de Bruijne1edab82017-02-03 18:20:48 -05001695 iov_iter_advance(from, vnet_hdr_sz - sizeof(gso));
Rusty Russellf43798c2008-07-03 03:48:02 -07001696 }
1697
Michael S. Tsirkin40630b82014-11-19 15:17:31 +02001698 if ((tun->flags & TUN_TYPE_MASK) == IFF_TAP) {
stephen hemmingera504b862011-06-08 14:33:07 +00001699 align += NET_IP_ALIGN;
Herbert Xu0eca93b2009-04-14 02:09:43 -07001700 if (unlikely(len < ETH_HLEN ||
Michael S. Tsirkin56f0dcc2014-10-23 22:59:31 +03001701 (gso.hdr_len && tun16_to_cpu(tun, gso.hdr_len) < ETH_HLEN)))
Rusty Russelle01bf1c2008-04-12 18:49:30 -07001702 return -EINVAL;
1703 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001704
Jason Wang96f8d9e2013-11-13 14:00:39 +08001705 good_linear = SKB_MAX_HEAD(align);
1706
Jason Wang88529172013-07-18 10:55:15 +08001707 if (msg_control) {
Al Virof5ff53b2014-06-19 15:36:49 -04001708 struct iov_iter i = *from;
1709
Jason Wang88529172013-07-18 10:55:15 +08001710 /* There are 256 bytes to be copied in skb, so there is
1711 * enough room for skb expand head in case it is used.
Michael S. Tsirkin06908992012-07-20 09:23:23 +00001712 * The rest of the buffer is mapped from userspace.
1713 */
Michael S. Tsirkin56f0dcc2014-10-23 22:59:31 +03001714 copylen = gso.hdr_len ? tun16_to_cpu(tun, gso.hdr_len) : GOODCOPY_LEN;
Jason Wang96f8d9e2013-11-13 14:00:39 +08001715 if (copylen > good_linear)
1716 copylen = good_linear;
Jason Wang3dd5c332013-07-10 13:43:27 +08001717 linear = copylen;
Al Virof5ff53b2014-06-19 15:36:49 -04001718 iov_iter_advance(&i, copylen);
1719 if (iov_iter_npages(&i, INT_MAX) <= MAX_SKB_FRAGS)
Jason Wang88529172013-07-18 10:55:15 +08001720 zerocopy = true;
1721 }
1722
Petar Penkov90e33d42017-09-22 13:49:15 -07001723 if (!frags && tun_can_build_skb(tun, tfile, len, noblock, zerocopy)) {
Jason Wang1cfe6e92017-09-04 11:36:09 +08001724 /* For the packet that is not easy to be processed
1725 * (e.g gso or jumbo packet), we will do it at after
1726 * skb was created with generic XDP routine.
1727 */
1728 skb = tun_build_skb(tun, tfile, from, &gso, len, &skb_xdp);
Jason Wang66ccbc92017-08-11 19:41:16 +08001729 if (IS_ERR(skb)) {
Heiner Kallweit497a5752020-11-07 21:50:56 +01001730 atomic_long_inc(&tun->dev->rx_dropped);
Jason Wang66ccbc92017-08-11 19:41:16 +08001731 return PTR_ERR(skb);
1732 }
Jason Wang761876c2017-08-11 19:41:18 +08001733 if (!skb)
1734 return total_len;
Jason Wang66ccbc92017-08-11 19:41:16 +08001735 } else {
1736 if (!zerocopy) {
1737 copylen = len;
1738 if (tun16_to_cpu(tun, gso.hdr_len) > good_linear)
1739 linear = good_linear;
1740 else
1741 linear = tun16_to_cpu(tun, gso.hdr_len);
1742 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001743
Petar Penkov90e33d42017-09-22 13:49:15 -07001744 if (frags) {
1745 mutex_lock(&tfile->napi_mutex);
1746 skb = tun_napi_alloc_frags(tfile, copylen, from);
1747 /* tun_napi_alloc_frags() enforces a layout for the skb.
1748 * If zerocopy is enabled, then this layout will be
1749 * overwritten by zerocopy_sg_from_iter().
1750 */
1751 zerocopy = false;
1752 } else {
1753 skb = tun_alloc_skb(tfile, align, copylen, linear,
1754 noblock);
1755 }
1756
Jason Wang66ccbc92017-08-11 19:41:16 +08001757 if (IS_ERR(skb)) {
1758 if (PTR_ERR(skb) != -EAGAIN)
Heiner Kallweit497a5752020-11-07 21:50:56 +01001759 atomic_long_inc(&tun->dev->rx_dropped);
Petar Penkov90e33d42017-09-22 13:49:15 -07001760 if (frags)
1761 mutex_unlock(&tfile->napi_mutex);
Jason Wang66ccbc92017-08-11 19:41:16 +08001762 return PTR_ERR(skb);
1763 }
Michael S. Tsirkin06908992012-07-20 09:23:23 +00001764
Jason Wang66ccbc92017-08-11 19:41:16 +08001765 if (zerocopy)
1766 err = zerocopy_sg_from_iter(skb, from);
1767 else
1768 err = skb_copy_datagram_from_iter(skb, 0, from, len);
1769
1770 if (err) {
Eric Dumazet44771382019-03-14 20:19:47 -07001771 err = -EFAULT;
1772drop:
Heiner Kallweit497a5752020-11-07 21:50:56 +01001773 atomic_long_inc(&tun->dev->rx_dropped);
Jason Wang66ccbc92017-08-11 19:41:16 +08001774 kfree_skb(skb);
Petar Penkov90e33d42017-09-22 13:49:15 -07001775 if (frags) {
1776 tfile->napi.skb = NULL;
1777 mutex_unlock(&tfile->napi_mutex);
1778 }
1779
Eric Dumazet44771382019-03-14 20:19:47 -07001780 return err;
Jason Wang66ccbc92017-08-11 19:41:16 +08001781 }
Dave Jones8f227572006-03-11 18:49:13 -08001782 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001783
Jarno Rajahalme3e9e40e2016-11-18 15:40:38 -08001784 if (virtio_net_hdr_to_skb(skb, &gso, tun_is_little_endian(tun))) {
Heiner Kallweit497a5752020-11-07 21:50:56 +01001785 atomic_long_inc(&tun->rx_frame_errors);
Paolo Abenidf10db92016-06-14 00:00:04 +02001786 kfree_skb(skb);
Petar Penkov90e33d42017-09-22 13:49:15 -07001787 if (frags) {
1788 tfile->napi.skb = NULL;
1789 mutex_unlock(&tfile->napi_mutex);
1790 }
1791
Paolo Abenidf10db92016-06-14 00:00:04 +02001792 return -EINVAL;
1793 }
1794
Linus Torvalds1da177e2005-04-16 15:20:36 -07001795 switch (tun->flags & TUN_TYPE_MASK) {
Michael S. Tsirkin40630b82014-11-19 15:17:31 +02001796 case IFF_TUN:
1797 if (tun->flags & IFF_NO_PI) {
Alexander Potapenko2580c4c2017-09-28 11:32:37 +02001798 u8 ip_version = skb->len ? (skb->data[0] >> 4) : 0;
1799
1800 switch (ip_version) {
1801 case 4:
Ang Way Chuangf09f7ee2008-06-17 21:10:33 -07001802 pi.proto = htons(ETH_P_IP);
1803 break;
Alexander Potapenko2580c4c2017-09-28 11:32:37 +02001804 case 6:
Ang Way Chuangf09f7ee2008-06-17 21:10:33 -07001805 pi.proto = htons(ETH_P_IPV6);
1806 break;
1807 default:
Heiner Kallweit497a5752020-11-07 21:50:56 +01001808 atomic_long_inc(&tun->dev->rx_dropped);
Ang Way Chuangf09f7ee2008-06-17 21:10:33 -07001809 kfree_skb(skb);
1810 return -EINVAL;
1811 }
1812 }
1813
Arnaldo Carvalho de Melo459a98e2007-03-19 15:30:44 -07001814 skb_reset_mac_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001815 skb->protocol = pi.proto;
Arnaldo Carvalho de Melo4c13eb62007-04-25 17:40:23 -07001816 skb->dev = tun->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001817 break;
Michael S. Tsirkin40630b82014-11-19 15:17:31 +02001818 case IFF_TAP:
Willem de Bruijn96aa1b22020-05-30 15:41:31 -04001819 if (frags && !pskb_may_pull(skb, ETH_HLEN)) {
1820 err = -ENOMEM;
1821 goto drop;
1822 }
1823 skb->protocol = eth_type_trans(skb, tun->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001824 break;
Joe Perches6403eab2011-06-03 11:51:20 +00001825 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001826
Michael S. Tsirkin06908992012-07-20 09:23:23 +00001827 /* copy skb_ubuf_info for callback when skb has no error */
1828 if (zerocopy) {
Jonathan Lemon9ee5e5a2021-01-06 14:18:40 -08001829 skb_zcopy_init(skb, msg_control);
Jason Wangaf1cc7a2016-11-30 13:17:51 +08001830 } else if (msg_control) {
1831 struct ubuf_info *uarg = msg_control;
Jonathan Lemon36177832021-01-06 14:18:34 -08001832 uarg->callback(NULL, uarg, false);
Michael S. Tsirkin06908992012-07-20 09:23:23 +00001833 }
1834
Vlad Yasevich72f65102015-02-03 16:36:16 -05001835 skb_reset_network_header(skb);
Maxim Mikityanskiyd2aa1252019-02-21 12:39:57 +00001836 skb_probe_transport_header(skb);
Gilberto Bertin3fe260e2020-04-10 18:20:59 +02001837 skb_record_rx_queue(skb, tfile->queue_index);
Jason Wang38502af2013-03-25 20:19:56 +00001838
Jason Wang1cfe6e92017-09-04 11:36:09 +08001839 if (skb_xdp) {
Jason Wang761876c2017-08-11 19:41:18 +08001840 struct bpf_prog *xdp_prog;
1841 int ret;
1842
Toshiaki Makita6547e382018-05-28 19:37:49 +09001843 local_bh_disable();
Jason Wang761876c2017-08-11 19:41:18 +08001844 rcu_read_lock();
1845 xdp_prog = rcu_dereference(tun->xdp_prog);
1846 if (xdp_prog) {
1847 ret = do_xdp_generic(xdp_prog, skb);
1848 if (ret != XDP_PASS) {
1849 rcu_read_unlock();
Toshiaki Makita6547e382018-05-28 19:37:49 +09001850 local_bh_enable();
Eric Dumazet1efba982020-01-22 09:07:35 -08001851 if (frags) {
1852 tfile->napi.skb = NULL;
1853 mutex_unlock(&tfile->napi_mutex);
1854 }
Jason Wang761876c2017-08-11 19:41:18 +08001855 return total_len;
1856 }
1857 }
1858 rcu_read_unlock();
Toshiaki Makita6547e382018-05-28 19:37:49 +09001859 local_bh_enable();
Jason Wang761876c2017-08-11 19:41:18 +08001860 }
1861
Paolo Abenicf1a1e02018-04-20 13:18:16 +02001862 /* Compute the costly rx hash only if needed for flow updates.
1863 * We may get a very small possibility of OOO during switching, not
1864 * worth to optimize.
1865 */
1866 if (!rcu_access_pointer(tun->steering_prog) && tun->numqueues > 1 &&
1867 !tfile->detached)
Jason Wang96f84062017-12-04 17:31:23 +08001868 rxhash = __skb_get_hash_symmetric(skb);
Petar Penkov94317092017-09-22 13:49:14 -07001869
Eric Dumazet44771382019-03-14 20:19:47 -07001870 rcu_read_lock();
1871 if (unlikely(!(tun->dev->flags & IFF_UP))) {
1872 err = -EIO;
Eric Dumazet9180bb42019-03-16 13:09:53 -07001873 rcu_read_unlock();
Eric Dumazet44771382019-03-14 20:19:47 -07001874 goto drop;
1875 }
1876
Petar Penkov90e33d42017-09-22 13:49:15 -07001877 if (frags) {
Willem de Bruijn96aa1b22020-05-30 15:41:31 -04001878 u32 headlen;
1879
Petar Penkov90e33d42017-09-22 13:49:15 -07001880 /* Exercise flow dissector code path. */
Willem de Bruijn96aa1b22020-05-30 15:41:31 -04001881 skb_push(skb, ETH_HLEN);
1882 headlen = eth_get_headlen(tun->dev, skb->data,
1883 skb_headlen(skb));
Petar Penkov90e33d42017-09-22 13:49:15 -07001884
Eric Dumazet010f2452017-10-17 10:07:44 -07001885 if (unlikely(headlen > skb_headlen(skb))) {
Heiner Kallweit497a5752020-11-07 21:50:56 +01001886 atomic_long_inc(&tun->dev->rx_dropped);
Petar Penkov90e33d42017-09-22 13:49:15 -07001887 napi_free_frags(&tfile->napi);
Eric Dumazet44771382019-03-14 20:19:47 -07001888 rcu_read_unlock();
Petar Penkov90e33d42017-09-22 13:49:15 -07001889 mutex_unlock(&tfile->napi_mutex);
1890 WARN_ON(1);
1891 return -ENOMEM;
1892 }
1893
1894 local_bh_disable();
1895 napi_gro_frags(&tfile->napi);
1896 local_bh_enable();
1897 mutex_unlock(&tfile->napi_mutex);
Eric Dumazetaec72f32017-10-18 12:12:09 -07001898 } else if (tfile->napi_enabled) {
Petar Penkov94317092017-09-22 13:49:14 -07001899 struct sk_buff_head *queue = &tfile->sk.sk_write_queue;
1900 int queue_len;
1901
1902 spin_lock_bh(&queue->lock);
1903 __skb_queue_tail(queue, skb);
1904 queue_len = skb_queue_len(queue);
1905 spin_unlock(&queue->lock);
1906
1907 if (!more || queue_len > NAPI_POLL_WEIGHT)
1908 napi_schedule(&tfile->napi);
1909
1910 local_bh_enable();
1911 } else if (!IS_ENABLED(CONFIG_4KSTACKS)) {
1912 tun_rx_batched(tun, tfile, skb, more);
1913 } else {
1914 netif_rx_ni(skb);
1915 }
Eric Dumazet44771382019-03-14 20:19:47 -07001916 rcu_read_unlock();
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001917
Heiner Kallweit497a5752020-11-07 21:50:56 +01001918 preempt_disable();
1919 dev_sw_netstats_rx_add(tun->dev, len);
1920 preempt_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001921
Jason Wang96f84062017-12-04 17:31:23 +08001922 if (rxhash)
1923 tun_flow_update(tun, rxhash, tfile);
1924
Michael S. Tsirkin06908992012-07-20 09:23:23 +00001925 return total_len;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001926}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001927
Al Virof5ff53b2014-06-19 15:36:49 -04001928static ssize_t tun_chr_write_iter(struct kiocb *iocb, struct iov_iter *from)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001929{
Herbert Xu33dccbb2009-02-05 21:25:32 -08001930 struct file *file = iocb->ki_filp;
Jason Wang54f968d2012-10-31 19:45:57 +00001931 struct tun_file *tfile = file->private_data;
yuan linyu9484dc72017-09-23 22:36:52 +08001932 struct tun_struct *tun = tun_get(tfile);
Eric W. Biederman631ab462009-01-20 11:00:40 +00001933 ssize_t result;
Jens Axboe5aac0392020-11-20 07:59:54 -07001934 int noblock = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001935
1936 if (!tun)
1937 return -EBADFD;
1938
Jens Axboe5aac0392020-11-20 07:59:54 -07001939 if ((file->f_flags & O_NONBLOCK) || (iocb->ki_flags & IOCB_NOWAIT))
1940 noblock = 1;
1941
1942 result = tun_get_user(tun, tfile, NULL, from, noblock, false);
Eric W. Biederman631ab462009-01-20 11:00:40 +00001943
1944 tun_put(tun);
1945 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001946}
1947
Jason Wangfc72d1d2018-01-04 11:14:28 +08001948static ssize_t tun_put_user_xdp(struct tun_struct *tun,
1949 struct tun_file *tfile,
Jesper Dangaard Brouer1ffcbc82018-04-17 16:45:47 +02001950 struct xdp_frame *xdp_frame,
Jason Wangfc72d1d2018-01-04 11:14:28 +08001951 struct iov_iter *iter)
1952{
1953 int vnet_hdr_sz = 0;
Jesper Dangaard Brouer1ffcbc82018-04-17 16:45:47 +02001954 size_t size = xdp_frame->len;
Jason Wangfc72d1d2018-01-04 11:14:28 +08001955 size_t ret;
1956
1957 if (tun->flags & IFF_VNET_HDR) {
1958 struct virtio_net_hdr gso = { 0 };
1959
1960 vnet_hdr_sz = READ_ONCE(tun->vnet_hdr_sz);
1961 if (unlikely(iov_iter_count(iter) < vnet_hdr_sz))
1962 return -EINVAL;
1963 if (unlikely(copy_to_iter(&gso, sizeof(gso), iter) !=
1964 sizeof(gso)))
1965 return -EFAULT;
1966 iov_iter_advance(iter, vnet_hdr_sz - sizeof(gso));
1967 }
1968
Jesper Dangaard Brouer1ffcbc82018-04-17 16:45:47 +02001969 ret = copy_to_iter(xdp_frame->data, size, iter) + vnet_hdr_sz;
Jason Wangfc72d1d2018-01-04 11:14:28 +08001970
Heiner Kallweit497a5752020-11-07 21:50:56 +01001971 preempt_disable();
1972 dev_sw_netstats_tx_add(tun->dev, 1, ret);
1973 preempt_enable();
Jason Wangfc72d1d2018-01-04 11:14:28 +08001974
1975 return ret;
1976}
1977
Linus Torvalds1da177e2005-04-16 15:20:36 -07001978/* Put packet to the user space buffer */
stephen hemminger6f7c1562011-06-08 14:33:08 +00001979static ssize_t tun_put_user(struct tun_struct *tun,
Jason Wang54f968d2012-10-31 19:45:57 +00001980 struct tun_file *tfile,
stephen hemminger6f7c1562011-06-08 14:33:08 +00001981 struct sk_buff *skb,
Herbert Xue0b46d02014-11-07 21:22:23 +08001982 struct iov_iter *iter)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001983{
1984 struct tun_pi pi = { 0, skb->protocol };
Herbert Xue0b46d02014-11-07 21:22:23 +08001985 ssize_t total;
Jason Wang8c847d22014-11-13 16:54:14 +08001986 int vlan_offset = 0;
Herbert Xua8f9bfd2014-11-03 04:30:13 +08001987 int vlan_hlen = 0;
Herbert Xu2eb783c2014-11-03 04:30:14 +08001988 int vnet_hdr_sz = 0;
Herbert Xua8f9bfd2014-11-03 04:30:13 +08001989
Jiri Pirkodf8a39d2015-01-13 17:13:44 +01001990 if (skb_vlan_tag_present(skb))
Herbert Xua8f9bfd2014-11-03 04:30:13 +08001991 vlan_hlen = VLAN_HLEN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001992
Michael S. Tsirkin40630b82014-11-19 15:17:31 +02001993 if (tun->flags & IFF_VNET_HDR)
Willem de Bruijne1edab82017-02-03 18:20:48 -05001994 vnet_hdr_sz = READ_ONCE(tun->vnet_hdr_sz);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001995
Herbert Xue0b46d02014-11-07 21:22:23 +08001996 total = skb->len + vlan_hlen + vnet_hdr_sz;
1997
Michael S. Tsirkin40630b82014-11-19 15:17:31 +02001998 if (!(tun->flags & IFF_NO_PI)) {
Herbert Xue0b46d02014-11-07 21:22:23 +08001999 if (iov_iter_count(iter) < sizeof(pi))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002000 return -EINVAL;
2001
Herbert Xue0b46d02014-11-07 21:22:23 +08002002 total += sizeof(pi);
2003 if (iov_iter_count(iter) < total) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002004 /* Packet will be striped */
2005 pi.flags |= TUN_PKT_STRIP;
2006 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002007
Herbert Xue0b46d02014-11-07 21:22:23 +08002008 if (copy_to_iter(&pi, sizeof(pi), iter) != sizeof(pi))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002009 return -EFAULT;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002010 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002011
Herbert Xu2eb783c2014-11-03 04:30:14 +08002012 if (vnet_hdr_sz) {
Jarno Rajahalme9403cd72016-11-18 15:40:40 -08002013 struct virtio_net_hdr gso;
Mike Rapoport34166092016-06-08 16:09:20 +03002014
Herbert Xue0b46d02014-11-07 21:22:23 +08002015 if (iov_iter_count(iter) < vnet_hdr_sz)
Rusty Russellf43798c2008-07-03 03:48:02 -07002016 return -EINVAL;
2017
Jarno Rajahalme3e9e40e2016-11-18 15:40:38 -08002018 if (virtio_net_hdr_from_skb(skb, &gso,
Willem de Bruijnfd3a8862018-06-06 11:23:01 -04002019 tun_is_little_endian(tun), true,
2020 vlan_hlen)) {
Rusty Russellf43798c2008-07-03 03:48:02 -07002021 struct skb_shared_info *sinfo = skb_shinfo(skb);
Mike Rapoport34166092016-06-08 16:09:20 +03002022 pr_err("unexpected GSO type: "
2023 "0x%x, gso_size %d, hdr_len %d\n",
2024 sinfo->gso_type, tun16_to_cpu(tun, gso.gso_size),
2025 tun16_to_cpu(tun, gso.hdr_len));
2026 print_hex_dump(KERN_ERR, "tun: ",
2027 DUMP_PREFIX_NONE,
2028 16, 1, skb->head,
2029 min((int)tun16_to_cpu(tun, gso.hdr_len), 64), true);
2030 WARN_ON_ONCE(1);
2031 return -EINVAL;
2032 }
Rusty Russellf43798c2008-07-03 03:48:02 -07002033
Herbert Xue0b46d02014-11-07 21:22:23 +08002034 if (copy_to_iter(&gso, sizeof(gso), iter) != sizeof(gso))
Rusty Russellf43798c2008-07-03 03:48:02 -07002035 return -EFAULT;
Jason Wang8c847d22014-11-13 16:54:14 +08002036
2037 iov_iter_advance(iter, vnet_hdr_sz - sizeof(gso));
Rusty Russellf43798c2008-07-03 03:48:02 -07002038 }
2039
Herbert Xua8f9bfd2014-11-03 04:30:13 +08002040 if (vlan_hlen) {
Herbert Xue0b46d02014-11-07 21:22:23 +08002041 int ret;
Jason Wangaff3d702018-01-16 16:31:02 +08002042 struct veth veth;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002043
Jason Wang6680ec62013-07-25 13:00:33 +08002044 veth.h_vlan_proto = skb->vlan_proto;
Jiri Pirkodf8a39d2015-01-13 17:13:44 +01002045 veth.h_vlan_TCI = htons(skb_vlan_tag_get(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002046
Jason Wang6680ec62013-07-25 13:00:33 +08002047 vlan_offset = offsetof(struct vlan_ethhdr, h_vlan_proto);
Jason Wang6680ec62013-07-25 13:00:33 +08002048
Herbert Xue0b46d02014-11-07 21:22:23 +08002049 ret = skb_copy_datagram_iter(skb, 0, iter, vlan_offset);
2050 if (ret || !iov_iter_count(iter))
Jason Wang6680ec62013-07-25 13:00:33 +08002051 goto done;
2052
Herbert Xue0b46d02014-11-07 21:22:23 +08002053 ret = copy_to_iter(&veth, sizeof(veth), iter);
2054 if (ret != sizeof(veth) || !iov_iter_count(iter))
Jason Wang6680ec62013-07-25 13:00:33 +08002055 goto done;
2056 }
2057
Herbert Xue0b46d02014-11-07 21:22:23 +08002058 skb_copy_datagram_iter(skb, vlan_offset, iter, skb->len - vlan_offset);
Jason Wang6680ec62013-07-25 13:00:33 +08002059
2060done:
Paolo Abeni608b9972016-04-13 10:52:20 +02002061 /* caller is in process context, */
Heiner Kallweit497a5752020-11-07 21:50:56 +01002062 preempt_disable();
2063 dev_sw_netstats_tx_add(tun->dev, 1, skb->len + vlan_hlen);
2064 preempt_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002065
2066 return total;
2067}
2068
Jason Wangfc72d1d2018-01-04 11:14:28 +08002069static void *tun_ring_recv(struct tun_file *tfile, int noblock, int *err)
Jason Wang1576d982016-06-30 14:45:36 +08002070{
2071 DECLARE_WAITQUEUE(wait, current);
Jason Wangfc72d1d2018-01-04 11:14:28 +08002072 void *ptr = NULL;
Jason Wangf48cc6b2016-07-04 13:53:38 +08002073 int error = 0;
Jason Wang1576d982016-06-30 14:45:36 +08002074
Jason Wangfc72d1d2018-01-04 11:14:28 +08002075 ptr = ptr_ring_consume(&tfile->tx_ring);
2076 if (ptr)
Jason Wang1576d982016-06-30 14:45:36 +08002077 goto out;
2078 if (noblock) {
Jason Wangf48cc6b2016-07-04 13:53:38 +08002079 error = -EAGAIN;
Jason Wang1576d982016-06-30 14:45:36 +08002080 goto out;
2081 }
2082
Al Viro333f7902019-07-05 20:14:16 +01002083 add_wait_queue(&tfile->socket.wq.wait, &wait);
Jason Wang1576d982016-06-30 14:45:36 +08002084
2085 while (1) {
Timur Celik71828b22019-02-23 12:53:13 +01002086 set_current_state(TASK_INTERRUPTIBLE);
Jason Wangfc72d1d2018-01-04 11:14:28 +08002087 ptr = ptr_ring_consume(&tfile->tx_ring);
2088 if (ptr)
Jason Wang1576d982016-06-30 14:45:36 +08002089 break;
2090 if (signal_pending(current)) {
Jason Wangf48cc6b2016-07-04 13:53:38 +08002091 error = -ERESTARTSYS;
Jason Wang1576d982016-06-30 14:45:36 +08002092 break;
2093 }
2094 if (tfile->socket.sk->sk_shutdown & RCV_SHUTDOWN) {
Jason Wangf48cc6b2016-07-04 13:53:38 +08002095 error = -EFAULT;
Jason Wang1576d982016-06-30 14:45:36 +08002096 break;
2097 }
2098
2099 schedule();
2100 }
2101
Timur Celikecef67c2019-02-25 21:13:13 +01002102 __set_current_state(TASK_RUNNING);
Al Viro333f7902019-07-05 20:14:16 +01002103 remove_wait_queue(&tfile->socket.wq.wait, &wait);
Jason Wang1576d982016-06-30 14:45:36 +08002104
2105out:
Jason Wangf48cc6b2016-07-04 13:53:38 +08002106 *err = error;
Jason Wangfc72d1d2018-01-04 11:14:28 +08002107 return ptr;
Jason Wang1576d982016-06-30 14:45:36 +08002108}
2109
Jason Wang54f968d2012-10-31 19:45:57 +00002110static ssize_t tun_do_read(struct tun_struct *tun, struct tun_file *tfile,
Al Viro9b067032014-11-07 13:52:07 -05002111 struct iov_iter *to,
Jason Wangfc72d1d2018-01-04 11:14:28 +08002112 int noblock, void *ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002113{
Al Viro9b067032014-11-07 13:52:07 -05002114 ssize_t ret;
Jason Wang1576d982016-06-30 14:45:36 +08002115 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002116
Wei Xuc33ee152017-12-01 05:10:37 -05002117 if (!iov_iter_count(to)) {
Jason Wangfc72d1d2018-01-04 11:14:28 +08002118 tun_ptr_free(ptr);
Al Viro9b067032014-11-07 13:52:07 -05002119 return 0;
Wei Xuc33ee152017-12-01 05:10:37 -05002120 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002121
Jason Wangfc72d1d2018-01-04 11:14:28 +08002122 if (!ptr) {
Jason Wangac77cfd2017-05-17 12:14:43 +08002123 /* Read frames from ring */
Jason Wangfc72d1d2018-01-04 11:14:28 +08002124 ptr = tun_ring_recv(tfile, noblock, &err);
2125 if (!ptr)
Jason Wangac77cfd2017-05-17 12:14:43 +08002126 return err;
2127 }
Herbert Xue0b46d02014-11-07 21:22:23 +08002128
Jesper Dangaard Brouer1ffcbc82018-04-17 16:45:47 +02002129 if (tun_is_xdp_frame(ptr)) {
2130 struct xdp_frame *xdpf = tun_ptr_to_xdp(ptr);
Jason Wangfc72d1d2018-01-04 11:14:28 +08002131
Jesper Dangaard Brouer1ffcbc82018-04-17 16:45:47 +02002132 ret = tun_put_user_xdp(tun, tfile, xdpf, to);
Jesper Dangaard Brouer03993092018-04-17 16:46:32 +02002133 xdp_return_frame(xdpf);
Jason Wangfc72d1d2018-01-04 11:14:28 +08002134 } else {
2135 struct sk_buff *skb = ptr;
2136
2137 ret = tun_put_user(tun, tfile, skb, to);
2138 if (unlikely(ret < 0))
2139 kfree_skb(skb);
2140 else
2141 consume_skb(skb);
2142 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002143
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00002144 return ret;
2145}
2146
Al Viro9b067032014-11-07 13:52:07 -05002147static ssize_t tun_chr_read_iter(struct kiocb *iocb, struct iov_iter *to)
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00002148{
2149 struct file *file = iocb->ki_filp;
2150 struct tun_file *tfile = file->private_data;
yuan linyu9484dc72017-09-23 22:36:52 +08002151 struct tun_struct *tun = tun_get(tfile);
Al Viro9b067032014-11-07 13:52:07 -05002152 ssize_t len = iov_iter_count(to), ret;
Jens Axboe5aac0392020-11-20 07:59:54 -07002153 int noblock = 0;
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00002154
2155 if (!tun)
2156 return -EBADFD;
Jens Axboe5aac0392020-11-20 07:59:54 -07002157
2158 if ((file->f_flags & O_NONBLOCK) || (iocb->ki_flags & IOCB_NOWAIT))
2159 noblock = 1;
2160
2161 ret = tun_do_read(tun, tfile, to, noblock, NULL);
David S. Miller42404c02013-12-10 22:05:45 -05002162 ret = min_t(ssize_t, ret, len);
Zhi Yong Wud0b7da8a2013-12-06 14:16:51 +08002163 if (ret > 0)
2164 iocb->ki_pos = ret;
Eric W. Biederman631ab462009-01-20 11:00:40 +00002165 tun_put(tun);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002166 return ret;
2167}
2168
Jason Wangcd5681d2018-01-16 16:31:01 +08002169static void tun_prog_free(struct rcu_head *rcu)
Jason Wang96f84062017-12-04 17:31:23 +08002170{
Jason Wangcd5681d2018-01-16 16:31:01 +08002171 struct tun_prog *prog = container_of(rcu, struct tun_prog, rcu);
Jason Wang96f84062017-12-04 17:31:23 +08002172
2173 bpf_prog_destroy(prog->prog);
2174 kfree(prog);
2175}
2176
Jason Wang9d6474e2018-01-22 10:55:38 +08002177static int __tun_set_ebpf(struct tun_struct *tun,
2178 struct tun_prog __rcu **prog_p,
Jason Wangcd5681d2018-01-16 16:31:01 +08002179 struct bpf_prog *prog)
Jason Wang96f84062017-12-04 17:31:23 +08002180{
Jason Wangcd5681d2018-01-16 16:31:01 +08002181 struct tun_prog *old, *new = NULL;
Jason Wang96f84062017-12-04 17:31:23 +08002182
2183 if (prog) {
2184 new = kmalloc(sizeof(*new), GFP_KERNEL);
2185 if (!new)
2186 return -ENOMEM;
2187 new->prog = prog;
2188 }
2189
Jason Wang124da8f2017-12-08 12:02:30 +08002190 spin_lock_bh(&tun->lock);
Jason Wangcd5681d2018-01-16 16:31:01 +08002191 old = rcu_dereference_protected(*prog_p,
Jason Wang124da8f2017-12-08 12:02:30 +08002192 lockdep_is_held(&tun->lock));
Jason Wangcd5681d2018-01-16 16:31:01 +08002193 rcu_assign_pointer(*prog_p, new);
Jason Wang124da8f2017-12-08 12:02:30 +08002194 spin_unlock_bh(&tun->lock);
Jason Wang96f84062017-12-04 17:31:23 +08002195
2196 if (old)
Jason Wangcd5681d2018-01-16 16:31:01 +08002197 call_rcu(&old->rcu, tun_prog_free);
Jason Wang96f84062017-12-04 17:31:23 +08002198
2199 return 0;
2200}
2201
Jason Wang96442e422012-10-31 19:46:02 +00002202static void tun_free_netdev(struct net_device *dev)
2203{
2204 struct tun_struct *tun = netdev_priv(dev);
2205
Jason Wang4008e972012-12-13 23:53:30 +00002206 BUG_ON(!(list_empty(&tun->disabled)));
Eric Dumazet11fc7d52019-10-07 12:21:05 -07002207
Heiner Kallweit497a5752020-11-07 21:50:56 +01002208 free_percpu(dev->tstats);
2209 /* We clear tstats so that tun_set_iff() can tell if
Eric Dumazet11fc7d52019-10-07 12:21:05 -07002210 * tun_free_netdev() has been called from register_netdevice().
2211 */
Heiner Kallweit497a5752020-11-07 21:50:56 +01002212 dev->tstats = NULL;
Eric Dumazet11fc7d52019-10-07 12:21:05 -07002213
Jason Wang96442e422012-10-31 19:46:02 +00002214 tun_flow_uninit(tun);
Paul Moore5dbbaf22013-01-14 07:12:19 +00002215 security_tun_dev_free_security(tun->security);
Jason Wangcd5681d2018-01-16 16:31:01 +08002216 __tun_set_ebpf(tun, &tun->steering_prog, NULL);
Jason Wangaff3d702018-01-16 16:31:02 +08002217 __tun_set_ebpf(tun, &tun->filter_prog, NULL);
Jason Wang96442e422012-10-31 19:46:02 +00002218}
2219
Linus Torvalds1da177e2005-04-16 15:20:36 -07002220static void tun_setup(struct net_device *dev)
2221{
2222 struct tun_struct *tun = netdev_priv(dev);
2223
Eric W. Biederman0625c882012-02-07 16:48:55 -08002224 tun->owner = INVALID_UID;
2225 tun->group = INVALID_GID;
Chas Williams4e24f2d2018-06-02 17:49:53 -04002226 tun_default_link_ksettings(dev, &tun->link_ksettings);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002227
Linus Torvalds1da177e2005-04-16 15:20:36 -07002228 dev->ethtool_ops = &tun_ethtool_ops;
David S. Millercf124db2017-05-08 12:52:56 -04002229 dev->needs_free_netdev = true;
2230 dev->priv_destructor = tun_free_netdev;
Jason Wang016adb72016-04-08 13:26:48 +08002231 /* We prefer our own queue length */
2232 dev->tx_queue_len = TUN_READQ_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002233}
2234
Eric W. Biedermanf019a7a2009-01-21 16:02:16 -08002235/* Trivial set of netlink ops to allow deleting tun or tap
2236 * device with netlink.
2237 */
Matthias Schiffera8b8a8892017-06-25 23:56:01 +02002238static int tun_validate(struct nlattr *tb[], struct nlattr *data[],
2239 struct netlink_ext_ack *extack)
Eric W. Biedermanf019a7a2009-01-21 16:02:16 -08002240{
Nicolas Dichtel35b827b2018-11-29 14:45:39 +01002241 NL_SET_ERR_MSG(extack,
2242 "tun/tap creation via rtnetlink is not supported.");
2243 return -EOPNOTSUPP;
Eric W. Biedermanf019a7a2009-01-21 16:02:16 -08002244}
2245
Sabrina Dubroca1ec010e2018-02-16 11:03:07 +01002246static size_t tun_get_size(const struct net_device *dev)
2247{
2248 BUILD_BUG_ON(sizeof(u32) != sizeof(uid_t));
2249 BUILD_BUG_ON(sizeof(u32) != sizeof(gid_t));
2250
2251 return nla_total_size(sizeof(uid_t)) + /* OWNER */
2252 nla_total_size(sizeof(gid_t)) + /* GROUP */
2253 nla_total_size(sizeof(u8)) + /* TYPE */
2254 nla_total_size(sizeof(u8)) + /* PI */
2255 nla_total_size(sizeof(u8)) + /* VNET_HDR */
2256 nla_total_size(sizeof(u8)) + /* PERSIST */
2257 nla_total_size(sizeof(u8)) + /* MULTI_QUEUE */
2258 nla_total_size(sizeof(u32)) + /* NUM_QUEUES */
2259 nla_total_size(sizeof(u32)) + /* NUM_DISABLED_QUEUES */
2260 0;
2261}
2262
2263static int tun_fill_info(struct sk_buff *skb, const struct net_device *dev)
2264{
2265 struct tun_struct *tun = netdev_priv(dev);
2266
2267 if (nla_put_u8(skb, IFLA_TUN_TYPE, tun->flags & TUN_TYPE_MASK))
2268 goto nla_put_failure;
2269 if (uid_valid(tun->owner) &&
2270 nla_put_u32(skb, IFLA_TUN_OWNER,
2271 from_kuid_munged(current_user_ns(), tun->owner)))
2272 goto nla_put_failure;
2273 if (gid_valid(tun->group) &&
2274 nla_put_u32(skb, IFLA_TUN_GROUP,
2275 from_kgid_munged(current_user_ns(), tun->group)))
2276 goto nla_put_failure;
2277 if (nla_put_u8(skb, IFLA_TUN_PI, !(tun->flags & IFF_NO_PI)))
2278 goto nla_put_failure;
2279 if (nla_put_u8(skb, IFLA_TUN_VNET_HDR, !!(tun->flags & IFF_VNET_HDR)))
2280 goto nla_put_failure;
2281 if (nla_put_u8(skb, IFLA_TUN_PERSIST, !!(tun->flags & IFF_PERSIST)))
2282 goto nla_put_failure;
2283 if (nla_put_u8(skb, IFLA_TUN_MULTI_QUEUE,
2284 !!(tun->flags & IFF_MULTI_QUEUE)))
2285 goto nla_put_failure;
2286 if (tun->flags & IFF_MULTI_QUEUE) {
2287 if (nla_put_u32(skb, IFLA_TUN_NUM_QUEUES, tun->numqueues))
2288 goto nla_put_failure;
2289 if (nla_put_u32(skb, IFLA_TUN_NUM_DISABLED_QUEUES,
2290 tun->numdisabled))
2291 goto nla_put_failure;
2292 }
2293
2294 return 0;
2295
2296nla_put_failure:
2297 return -EMSGSIZE;
2298}
2299
Eric W. Biedermanf019a7a2009-01-21 16:02:16 -08002300static struct rtnl_link_ops tun_link_ops __read_mostly = {
2301 .kind = DRV_NAME,
2302 .priv_size = sizeof(struct tun_struct),
2303 .setup = tun_setup,
2304 .validate = tun_validate,
Sabrina Dubroca1ec010e2018-02-16 11:03:07 +01002305 .get_size = tun_get_size,
2306 .fill_info = tun_fill_info,
Eric W. Biedermanf019a7a2009-01-21 16:02:16 -08002307};
2308
Herbert Xu33dccbb2009-02-05 21:25:32 -08002309static void tun_sock_write_space(struct sock *sk)
2310{
Jason Wang54f968d2012-10-31 19:45:57 +00002311 struct tun_file *tfile;
Eric Dumazet43815482010-04-29 11:01:49 +00002312 wait_queue_head_t *wqueue;
Herbert Xu33dccbb2009-02-05 21:25:32 -08002313
2314 if (!sock_writeable(sk))
2315 return;
2316
Eric Dumazet9cd3e072015-11-29 20:03:10 -08002317 if (!test_and_clear_bit(SOCKWQ_ASYNC_NOSPACE, &sk->sk_socket->flags))
Herbert Xu33dccbb2009-02-05 21:25:32 -08002318 return;
2319
Eric Dumazet43815482010-04-29 11:01:49 +00002320 wqueue = sk_sleep(sk);
2321 if (wqueue && waitqueue_active(wqueue))
Linus Torvaldsa9a08842018-02-11 14:34:03 -08002322 wake_up_interruptible_sync_poll(wqueue, EPOLLOUT |
2323 EPOLLWRNORM | EPOLLWRBAND);
Herbert Xuc722c622009-06-03 21:45:55 -07002324
Jason Wang54f968d2012-10-31 19:45:57 +00002325 tfile = container_of(sk, struct tun_file, sk);
2326 kill_fasync(&tfile->fasync, SIGIO, POLL_OUT);
Herbert Xu33dccbb2009-02-05 21:25:32 -08002327}
2328
Jason Wangf9e06c42018-11-15 17:43:10 +08002329static void tun_put_page(struct tun_page *tpage)
2330{
2331 if (tpage->page)
2332 __page_frag_cache_drain(tpage->page, tpage->count);
2333}
2334
Jason Wang043d2222018-09-12 11:17:07 +08002335static int tun_xdp_one(struct tun_struct *tun,
2336 struct tun_file *tfile,
Jason Wangf9e06c42018-11-15 17:43:10 +08002337 struct xdp_buff *xdp, int *flush,
2338 struct tun_page *tpage)
Jason Wang043d2222018-09-12 11:17:07 +08002339{
Prashant Bhole4e4b08e2018-12-03 18:09:24 +09002340 unsigned int datasize = xdp->data_end - xdp->data;
Jason Wang043d2222018-09-12 11:17:07 +08002341 struct tun_xdp_hdr *hdr = xdp->data_hard_start;
2342 struct virtio_net_hdr *gso = &hdr->gso;
Jason Wang043d2222018-09-12 11:17:07 +08002343 struct bpf_prog *xdp_prog;
2344 struct sk_buff *skb = NULL;
2345 u32 rxhash = 0, act;
2346 int buflen = hdr->buflen;
2347 int err = 0;
2348 bool skb_xdp = false;
Jason Wangf9e06c42018-11-15 17:43:10 +08002349 struct page *page;
Jason Wang043d2222018-09-12 11:17:07 +08002350
2351 xdp_prog = rcu_dereference(tun->xdp_prog);
2352 if (xdp_prog) {
2353 if (gso->gso_type) {
2354 skb_xdp = true;
2355 goto build;
2356 }
Lorenzo Bianconi43b51692020-12-22 22:09:28 +01002357
2358 xdp_init_buff(xdp, buflen, &tfile->xdp_rxq);
Jason Wang043d2222018-09-12 11:17:07 +08002359 xdp_set_data_meta_invalid(xdp);
Jason Wang043d2222018-09-12 11:17:07 +08002360
2361 act = bpf_prog_run_xdp(xdp_prog, xdp);
2362 err = tun_xdp_act(tun, xdp_prog, xdp, act);
2363 if (err < 0) {
2364 put_page(virt_to_head_page(xdp->data));
2365 return err;
2366 }
2367
2368 switch (err) {
2369 case XDP_REDIRECT:
2370 *flush = true;
Gustavo A. R. Silvadf561f662020-08-23 17:36:59 -05002371 fallthrough;
Jason Wang043d2222018-09-12 11:17:07 +08002372 case XDP_TX:
2373 return 0;
2374 case XDP_PASS:
2375 break;
2376 default:
Jason Wangf9e06c42018-11-15 17:43:10 +08002377 page = virt_to_head_page(xdp->data);
2378 if (tpage->page == page) {
2379 ++tpage->count;
2380 } else {
2381 tun_put_page(tpage);
2382 tpage->page = page;
2383 tpage->count = 1;
2384 }
Jason Wang043d2222018-09-12 11:17:07 +08002385 return 0;
2386 }
2387 }
2388
2389build:
2390 skb = build_skb(xdp->data_hard_start, buflen);
2391 if (!skb) {
2392 err = -ENOMEM;
2393 goto out;
2394 }
2395
2396 skb_reserve(skb, xdp->data - xdp->data_hard_start);
2397 skb_put(skb, xdp->data_end - xdp->data);
2398
2399 if (virtio_net_hdr_to_skb(skb, gso, tun_is_little_endian(tun))) {
Heiner Kallweit497a5752020-11-07 21:50:56 +01002400 atomic_long_inc(&tun->rx_frame_errors);
Jason Wang043d2222018-09-12 11:17:07 +08002401 kfree_skb(skb);
2402 err = -EINVAL;
2403 goto out;
2404 }
2405
2406 skb->protocol = eth_type_trans(skb, tun->dev);
2407 skb_reset_network_header(skb);
Maxim Mikityanskiyd2aa1252019-02-21 12:39:57 +00002408 skb_probe_transport_header(skb);
Gilberto Bertin3fe260e2020-04-10 18:20:59 +02002409 skb_record_rx_queue(skb, tfile->queue_index);
Jason Wang043d2222018-09-12 11:17:07 +08002410
2411 if (skb_xdp) {
2412 err = do_xdp_generic(xdp_prog, skb);
2413 if (err != XDP_PASS)
2414 goto out;
2415 }
2416
Paolo Abenif29eb2a2018-11-07 10:34:36 +01002417 if (!rcu_dereference(tun->steering_prog) && tun->numqueues > 1 &&
2418 !tfile->detached)
Jason Wang043d2222018-09-12 11:17:07 +08002419 rxhash = __skb_get_hash_symmetric(skb);
2420
2421 netif_receive_skb(skb);
2422
Heiner Kallweit497a5752020-11-07 21:50:56 +01002423 /* No need to disable preemption here since this function is
Prashant Bhole6342ca62018-12-11 11:43:07 +09002424 * always called with bh disabled
2425 */
Heiner Kallweit497a5752020-11-07 21:50:56 +01002426 dev_sw_netstats_rx_add(tun->dev, datasize);
Jason Wang043d2222018-09-12 11:17:07 +08002427
2428 if (rxhash)
2429 tun_flow_update(tun, rxhash, tfile);
2430
2431out:
2432 return err;
2433}
2434
Ying Xue1b784142015-03-02 15:37:48 +08002435static int tun_sendmsg(struct socket *sock, struct msghdr *m, size_t total_len)
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00002436{
Jason Wang043d2222018-09-12 11:17:07 +08002437 int ret, i;
Jason Wang54f968d2012-10-31 19:45:57 +00002438 struct tun_file *tfile = container_of(sock, struct tun_file, socket);
yuan linyu9484dc72017-09-23 22:36:52 +08002439 struct tun_struct *tun = tun_get(tfile);
Jason Wangfe8dd452018-09-12 11:17:06 +08002440 struct tun_msg_ctl *ctl = m->msg_control;
Jason Wang043d2222018-09-12 11:17:07 +08002441 struct xdp_buff *xdp;
Jason Wang54f968d2012-10-31 19:45:57 +00002442
2443 if (!tun)
2444 return -EBADFD;
Al Virof5ff53b2014-06-19 15:36:49 -04002445
Jason Wang043d2222018-09-12 11:17:07 +08002446 if (ctl && (ctl->type == TUN_MSG_PTR)) {
David S. Miller6f0271d2018-11-17 16:53:46 -08002447 struct tun_page tpage;
Jason Wang043d2222018-09-12 11:17:07 +08002448 int n = ctl->num;
2449 int flush = 0;
2450
David S. Miller6f0271d2018-11-17 16:53:46 -08002451 memset(&tpage, 0, sizeof(tpage));
2452
Jason Wang043d2222018-09-12 11:17:07 +08002453 local_bh_disable();
2454 rcu_read_lock();
2455
2456 for (i = 0; i < n; i++) {
2457 xdp = &((struct xdp_buff *)ctl->ptr)[i];
Jason Wangf9e06c42018-11-15 17:43:10 +08002458 tun_xdp_one(tun, tfile, xdp, &flush, &tpage);
Jason Wang043d2222018-09-12 11:17:07 +08002459 }
2460
2461 if (flush)
Toke Høiland-Jørgensen1d233882020-01-16 16:14:45 +01002462 xdp_do_flush();
Jason Wang043d2222018-09-12 11:17:07 +08002463
2464 rcu_read_unlock();
2465 local_bh_enable();
2466
Jason Wangf9e06c42018-11-15 17:43:10 +08002467 tun_put_page(&tpage);
2468
Jason Wang043d2222018-09-12 11:17:07 +08002469 ret = total_len;
2470 goto out;
2471 }
Jason Wangfe8dd452018-09-12 11:17:06 +08002472
2473 ret = tun_get_user(tun, tfile, ctl ? ctl->ptr : NULL, &m->msg_iter,
Jason Wang5503fce2017-01-18 15:02:03 +08002474 m->msg_flags & MSG_DONTWAIT,
2475 m->msg_flags & MSG_MORE);
Jason Wang043d2222018-09-12 11:17:07 +08002476out:
Jason Wang54f968d2012-10-31 19:45:57 +00002477 tun_put(tun);
2478 return ret;
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00002479}
2480
Ying Xue1b784142015-03-02 15:37:48 +08002481static int tun_recvmsg(struct socket *sock, struct msghdr *m, size_t total_len,
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00002482 int flags)
2483{
Jason Wang54f968d2012-10-31 19:45:57 +00002484 struct tun_file *tfile = container_of(sock, struct tun_file, socket);
yuan linyu9484dc72017-09-23 22:36:52 +08002485 struct tun_struct *tun = tun_get(tfile);
Jason Wangfc72d1d2018-01-04 11:14:28 +08002486 void *ptr = m->msg_control;
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00002487 int ret;
Jason Wang54f968d2012-10-31 19:45:57 +00002488
Wei Xuc33ee152017-12-01 05:10:37 -05002489 if (!tun) {
2490 ret = -EBADFD;
Jason Wangfc72d1d2018-01-04 11:14:28 +08002491 goto out_free;
Wei Xuc33ee152017-12-01 05:10:37 -05002492 }
Jason Wang54f968d2012-10-31 19:45:57 +00002493
Richard Cochraneda29772013-07-19 19:40:10 +02002494 if (flags & ~(MSG_DONTWAIT|MSG_TRUNC|MSG_ERRQUEUE)) {
Gao feng3811ae72013-04-24 21:59:23 +00002495 ret = -EINVAL;
Wei Xuc33ee152017-12-01 05:10:37 -05002496 goto out_put_tun;
Gao feng3811ae72013-04-24 21:59:23 +00002497 }
Richard Cochraneda29772013-07-19 19:40:10 +02002498 if (flags & MSG_ERRQUEUE) {
2499 ret = sock_recv_errqueue(sock->sk, m, total_len,
2500 SOL_PACKET, TUN_TX_TIMESTAMP);
2501 goto out;
2502 }
Jason Wangfc72d1d2018-01-04 11:14:28 +08002503 ret = tun_do_read(tun, tfile, &m->msg_iter, flags & MSG_DONTWAIT, ptr);
Alex Gartrell87897932014-12-25 23:05:03 -08002504 if (ret > (ssize_t)total_len) {
David S. Miller42404c02013-12-10 22:05:45 -05002505 m->msg_flags |= MSG_TRUNC;
2506 ret = flags & MSG_TRUNC ? ret : total_len;
2507 }
Gao feng3811ae72013-04-24 21:59:23 +00002508out:
Jason Wang54f968d2012-10-31 19:45:57 +00002509 tun_put(tun);
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00002510 return ret;
Wei Xuc33ee152017-12-01 05:10:37 -05002511
2512out_put_tun:
2513 tun_put(tun);
Jason Wangfc72d1d2018-01-04 11:14:28 +08002514out_free:
2515 tun_ptr_free(ptr);
Wei Xuc33ee152017-12-01 05:10:37 -05002516 return ret;
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00002517}
2518
Jason Wangfc72d1d2018-01-04 11:14:28 +08002519static int tun_ptr_peek_len(void *ptr)
2520{
2521 if (likely(ptr)) {
Jesper Dangaard Brouer1ffcbc82018-04-17 16:45:47 +02002522 if (tun_is_xdp_frame(ptr)) {
2523 struct xdp_frame *xdpf = tun_ptr_to_xdp(ptr);
Jason Wangfc72d1d2018-01-04 11:14:28 +08002524
Jesper Dangaard Brouer1ffcbc82018-04-17 16:45:47 +02002525 return xdpf->len;
Jason Wangfc72d1d2018-01-04 11:14:28 +08002526 }
2527 return __skb_array_len_with_tag(ptr);
2528 } else {
2529 return 0;
2530 }
2531}
2532
Jason Wang1576d982016-06-30 14:45:36 +08002533static int tun_peek_len(struct socket *sock)
2534{
2535 struct tun_file *tfile = container_of(sock, struct tun_file, socket);
2536 struct tun_struct *tun;
2537 int ret = 0;
2538
yuan linyu9484dc72017-09-23 22:36:52 +08002539 tun = tun_get(tfile);
Jason Wang1576d982016-06-30 14:45:36 +08002540 if (!tun)
2541 return 0;
2542
Jason Wangfc72d1d2018-01-04 11:14:28 +08002543 ret = PTR_RING_PEEK_CALL(&tfile->tx_ring, tun_ptr_peek_len);
Jason Wang1576d982016-06-30 14:45:36 +08002544 tun_put(tun);
2545
2546 return ret;
2547}
2548
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00002549/* Ops structure to mimic raw sockets with tun */
2550static const struct proto_ops tun_socket_ops = {
Jason Wang1576d982016-06-30 14:45:36 +08002551 .peek_len = tun_peek_len,
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00002552 .sendmsg = tun_sendmsg,
2553 .recvmsg = tun_recvmsg,
2554};
2555
Herbert Xu33dccbb2009-02-05 21:25:32 -08002556static struct proto tun_proto = {
2557 .name = "tun",
2558 .owner = THIS_MODULE,
Jason Wang54f968d2012-10-31 19:45:57 +00002559 .obj_size = sizeof(struct tun_file),
Herbert Xu33dccbb2009-02-05 21:25:32 -08002560};
Eric W. Biedermanf019a7a2009-01-21 16:02:16 -08002561
David Woodhouse980c9e82009-05-09 22:54:21 -07002562static int tun_flags(struct tun_struct *tun)
2563{
Michael S. Tsirkin031f5e032014-11-19 14:44:40 +02002564 return tun->flags & (TUN_FEATURES | IFF_PERSIST | IFF_TUN | IFF_TAP);
David Woodhouse980c9e82009-05-09 22:54:21 -07002565}
2566
YueHaibingbc6d0762021-05-19 10:38:50 +08002567static ssize_t tun_flags_show(struct device *dev, struct device_attribute *attr,
David Woodhouse980c9e82009-05-09 22:54:21 -07002568 char *buf)
2569{
2570 struct tun_struct *tun = netdev_priv(to_net_dev(dev));
2571 return sprintf(buf, "0x%x\n", tun_flags(tun));
2572}
2573
YueHaibingbc6d0762021-05-19 10:38:50 +08002574static ssize_t owner_show(struct device *dev, struct device_attribute *attr,
2575 char *buf)
David Woodhouse980c9e82009-05-09 22:54:21 -07002576{
2577 struct tun_struct *tun = netdev_priv(to_net_dev(dev));
Eric W. Biederman0625c882012-02-07 16:48:55 -08002578 return uid_valid(tun->owner)?
2579 sprintf(buf, "%u\n",
2580 from_kuid_munged(current_user_ns(), tun->owner)):
2581 sprintf(buf, "-1\n");
David Woodhouse980c9e82009-05-09 22:54:21 -07002582}
2583
YueHaibingbc6d0762021-05-19 10:38:50 +08002584static ssize_t group_show(struct device *dev, struct device_attribute *attr,
2585 char *buf)
David Woodhouse980c9e82009-05-09 22:54:21 -07002586{
2587 struct tun_struct *tun = netdev_priv(to_net_dev(dev));
Eric W. Biederman0625c882012-02-07 16:48:55 -08002588 return gid_valid(tun->group) ?
2589 sprintf(buf, "%u\n",
2590 from_kgid_munged(current_user_ns(), tun->group)):
2591 sprintf(buf, "-1\n");
David Woodhouse980c9e82009-05-09 22:54:21 -07002592}
2593
YueHaibingbc6d0762021-05-19 10:38:50 +08002594static DEVICE_ATTR_RO(tun_flags);
2595static DEVICE_ATTR_RO(owner);
2596static DEVICE_ATTR_RO(group);
David Woodhouse980c9e82009-05-09 22:54:21 -07002597
Takashi Iwaic4d33e22015-02-04 14:37:34 +01002598static struct attribute *tun_dev_attrs[] = {
2599 &dev_attr_tun_flags.attr,
2600 &dev_attr_owner.attr,
2601 &dev_attr_group.attr,
2602 NULL
2603};
2604
2605static const struct attribute_group tun_attr_group = {
2606 .attrs = tun_dev_attrs
2607};
2608
Pavel Emelyanovd647a592008-04-16 00:41:16 -07002609static int tun_set_iff(struct net *net, struct file *file, struct ifreq *ifr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002610{
2611 struct tun_struct *tun;
Jason Wang54f968d2012-10-31 19:45:57 +00002612 struct tun_file *tfile = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002613 struct net_device *dev;
2614 int err;
2615
Jason Wang7c0c3b12013-01-11 16:59:33 +00002616 if (tfile->detached)
2617 return -EINVAL;
2618
Petar Penkov90e33d42017-09-22 13:49:15 -07002619 if ((ifr->ifr_flags & IFF_NAPI_FRAGS)) {
2620 if (!capable(CAP_NET_ADMIN))
2621 return -EPERM;
2622
2623 if (!(ifr->ifr_flags & IFF_NAPI) ||
2624 (ifr->ifr_flags & TUN_TYPE_MASK) != IFF_TAP)
2625 return -EINVAL;
2626 }
2627
Eric W. Biederman74a3e5a2009-01-20 10:56:20 +00002628 dev = __dev_get_by_name(net, ifr->ifr_name);
2629 if (dev) {
David Woodhousef85ba782009-04-27 03:23:54 -07002630 if (ifr->ifr_flags & IFF_TUN_EXCL)
2631 return -EBUSY;
Eric W. Biederman74a3e5a2009-01-20 10:56:20 +00002632 if ((ifr->ifr_flags & IFF_TUN) && dev->netdev_ops == &tun_netdev_ops)
2633 tun = netdev_priv(dev);
2634 else if ((ifr->ifr_flags & IFF_TAP) && dev->netdev_ops == &tap_netdev_ops)
2635 tun = netdev_priv(dev);
2636 else
2637 return -EINVAL;
2638
Jason Wang8e6d91a2013-05-28 18:32:11 +00002639 if (!!(ifr->ifr_flags & IFF_MULTI_QUEUE) !=
Michael S. Tsirkin40630b82014-11-19 15:17:31 +02002640 !!(tun->flags & IFF_MULTI_QUEUE))
Jason Wang8e6d91a2013-05-28 18:32:11 +00002641 return -EINVAL;
2642
Jason Wangcde8b152012-10-31 19:46:01 +00002643 if (tun_not_capable(tun))
Paul Moore2b980db2009-08-28 18:12:43 -04002644 return -EPERM;
Paul Moore5dbbaf22013-01-14 07:12:19 +00002645 err = security_tun_dev_open(tun->security);
Paul Moore2b980db2009-08-28 18:12:43 -04002646 if (err < 0)
2647 return err;
2648
Petar Penkov94317092017-09-22 13:49:14 -07002649 err = tun_attach(tun, file, ifr->ifr_flags & IFF_NOFILTER,
Eric Dumazetaf3fb242018-09-28 14:51:49 -07002650 ifr->ifr_flags & IFF_NAPI,
Yang Yingliang77f22f92019-09-10 18:56:57 +08002651 ifr->ifr_flags & IFF_NAPI_FRAGS, true);
Eric W. Biedermana7385ba2009-01-20 10:57:48 +00002652 if (err < 0)
2653 return err;
Jason Wang4008e972012-12-13 23:53:30 +00002654
Michael S. Tsirkin40630b82014-11-19 15:17:31 +02002655 if (tun->flags & IFF_MULTI_QUEUE &&
Jason Wange8dbad62013-04-22 20:40:39 +00002656 (tun->numqueues + tun->numdisabled > 1)) {
2657 /* One or more queue has already been attached, no need
2658 * to initialize the device again.
2659 */
Sabrina Dubroca83c1f362018-04-10 16:28:56 +02002660 netdev_state_change(dev);
Jason Wange8dbad62013-04-22 20:40:39 +00002661 return 0;
2662 }
Sabrina Dubroca9fffc5c2018-04-10 16:28:55 +02002663
2664 tun->flags = (tun->flags & ~TUN_FEATURES) |
2665 (ifr->ifr_flags & TUN_FEATURES);
Sabrina Dubroca83c1f362018-04-10 16:28:56 +02002666
2667 netdev_state_change(dev);
2668 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002669 char *name;
2670 unsigned long flags = 0;
Jason Wangedfb6a12013-01-23 03:59:12 +00002671 int queues = ifr->ifr_flags & IFF_MULTI_QUEUE ?
2672 MAX_TAP_QUEUES : 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002673
Eric W. Biedermanc260b772012-11-18 21:34:11 +00002674 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
David Woodhouseca6bb5d2006-06-22 16:07:52 -07002675 return -EPERM;
Paul Moore2b980db2009-08-28 18:12:43 -04002676 err = security_tun_dev_create();
2677 if (err < 0)
2678 return err;
David Woodhouseca6bb5d2006-06-22 16:07:52 -07002679
Linus Torvalds1da177e2005-04-16 15:20:36 -07002680 /* Set dev type */
2681 if (ifr->ifr_flags & IFF_TUN) {
2682 /* TUN device */
Michael S. Tsirkin40630b82014-11-19 15:17:31 +02002683 flags |= IFF_TUN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002684 name = "tun%d";
2685 } else if (ifr->ifr_flags & IFF_TAP) {
2686 /* TAP device */
Michael S. Tsirkin40630b82014-11-19 15:17:31 +02002687 flags |= IFF_TAP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002688 name = "tap%d";
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002689 } else
Kusanagi Kouichi36989b92009-09-16 21:36:13 +00002690 return -EINVAL;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002691
Linus Torvalds1da177e2005-04-16 15:20:36 -07002692 if (*ifr->ifr_name)
2693 name = ifr->ifr_name;
2694
Jason Wangc8d68e62012-10-31 19:46:00 +00002695 dev = alloc_netdev_mqs(sizeof(struct tun_struct), name,
Tom Gundersenc835a672014-07-14 16:37:24 +02002696 NET_NAME_UNKNOWN, tun_setup, queues,
2697 queues);
Jason Wangedfb6a12013-01-23 03:59:12 +00002698
Linus Torvalds1da177e2005-04-16 15:20:36 -07002699 if (!dev)
2700 return -ENOMEM;
2701
Pavel Emelyanovfc54c652008-04-16 00:41:53 -07002702 dev_net_set(dev, net);
Eric W. Biedermanf019a7a2009-01-21 16:02:16 -08002703 dev->rtnl_link_ops = &tun_link_ops;
Pavel Emelyanovfb7589a2013-08-21 14:31:38 +04002704 dev->ifindex = tfile->ifindex;
Takashi Iwaic4d33e22015-02-04 14:37:34 +01002705 dev->sysfs_groups[0] = &tun_attr_group;
Stephen Hemminger758e43b2008-11-19 22:10:37 -08002706
Linus Torvalds1da177e2005-04-16 15:20:36 -07002707 tun = netdev_priv(dev);
2708 tun->dev = dev;
2709 tun->flags = flags;
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -07002710 tun->txflt.count = 0;
Michael S. Tsirkind9d52b52010-03-17 17:45:01 +02002711 tun->vnet_hdr_sz = sizeof(struct virtio_net_hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002712
Paolo Abenieaea34b2016-02-26 10:45:40 +01002713 tun->align = NET_SKB_PAD;
Jason Wang54f968d2012-10-31 19:45:57 +00002714 tun->filter_attached = false;
2715 tun->sndbuf = tfile->socket.sk->sk_sndbuf;
Jason Wang5503fce2017-01-18 15:02:03 +08002716 tun->rx_batched = 0;
Jason Wang96f84062017-12-04 17:31:23 +08002717 RCU_INIT_POINTER(tun->steering_prog, NULL);
Herbert Xu33dccbb2009-02-05 21:25:32 -08002718
Heiner Kallweit497a5752020-11-07 21:50:56 +01002719 dev->tstats = netdev_alloc_pcpu_stats(struct pcpu_sw_netstats);
2720 if (!dev->tstats) {
Paolo Abeni608b9972016-04-13 10:52:20 +02002721 err = -ENOMEM;
2722 goto err_free_dev;
2723 }
2724
Jason Wang96442e422012-10-31 19:46:02 +00002725 spin_lock_init(&tun->lock);
2726
Paul Moore5dbbaf22013-01-14 07:12:19 +00002727 err = security_tun_dev_alloc_security(&tun->security);
2728 if (err < 0)
Paolo Abeni608b9972016-04-13 10:52:20 +02002729 goto err_free_stat;
Paul Moore2b980db2009-08-28 18:12:43 -04002730
Linus Torvalds1da177e2005-04-16 15:20:36 -07002731 tun_net_init(dev);
Pavel Emelyanov944a1372013-06-11 17:01:08 +04002732 tun_flow_init(tun);
Jason Wang96442e422012-10-31 19:46:02 +00002733
Michał Mirosław88255372011-04-19 06:13:10 +00002734 dev->hw_features = NETIF_F_SG | NETIF_F_FRAGLIST |
Jason Wang6680ec62013-07-25 13:00:33 +08002735 TUN_USER_FEATURES | NETIF_F_HW_VLAN_CTAG_TX |
2736 NETIF_F_HW_VLAN_STAG_TX;
Paolo Abeni2a2bbf12016-04-14 18:39:39 +02002737 dev->features = dev->hw_features | NETIF_F_LLTX;
Fernando Luis Vazquez Cao6671b222014-02-18 21:20:09 +09002738 dev->vlan_features = dev->features &
2739 ~(NETIF_F_HW_VLAN_CTAG_TX |
2740 NETIF_F_HW_VLAN_STAG_TX);
Michał Mirosław88255372011-04-19 06:13:10 +00002741
Sabrina Dubroca9fffc5c2018-04-10 16:28:55 +02002742 tun->flags = (tun->flags & ~TUN_FEATURES) |
2743 (ifr->ifr_flags & TUN_FEATURES);
2744
Jason Wang4008e972012-12-13 23:53:30 +00002745 INIT_LIST_HEAD(&tun->disabled);
Eric Dumazetaf3fb242018-09-28 14:51:49 -07002746 err = tun_attach(tun, file, false, ifr->ifr_flags & IFF_NAPI,
Yang Yingliang77f22f92019-09-10 18:56:57 +08002747 ifr->ifr_flags & IFF_NAPI_FRAGS, false);
Jason Wangeb0fb362012-12-02 17:19:45 +00002748 if (err < 0)
Jason Wang662ca432013-09-11 18:09:48 +08002749 goto err_free_flow;
Jason Wangeb0fb362012-12-02 17:19:45 +00002750
Linus Torvalds1da177e2005-04-16 15:20:36 -07002751 err = register_netdevice(tun->dev);
2752 if (err < 0)
Jason Wang662ca432013-09-11 18:09:48 +08002753 goto err_detach;
Menglong Dongc2e315b2021-01-18 03:15:39 -08002754 /* free_netdev() won't check refcnt, to avoid race
Yang Yingliang77f22f92019-09-10 18:56:57 +08002755 * with dev_put() we need publish tun after registration.
2756 */
2757 rcu_assign_pointer(tfile->tun, tun);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002758 }
2759
Michael S. Tsirkinaf668b32013-01-28 00:38:02 +00002760 netif_carrier_on(tun->dev);
2761
Max Krasnyanskye35259a2008-07-10 16:59:11 -07002762 /* Make sure persistent devices do not get stuck in
2763 * xoff state.
2764 */
2765 if (netif_running(tun->dev))
Jason Wangc8d68e62012-10-31 19:46:00 +00002766 netif_tx_wake_all_queues(tun->dev);
Max Krasnyanskye35259a2008-07-10 16:59:11 -07002767
Linus Torvalds1da177e2005-04-16 15:20:36 -07002768 strcpy(ifr->ifr_name, tun->dev->name);
2769 return 0;
2770
Jason Wang662ca432013-09-11 18:09:48 +08002771err_detach:
2772 tun_detach_all(dev);
Eric Dumazet11fc7d52019-10-07 12:21:05 -07002773 /* We are here because register_netdevice() has failed.
2774 * If register_netdevice() already called tun_free_netdev()
Heiner Kallweit497a5752020-11-07 21:50:56 +01002775 * while dealing with the error, dev->stats has been cleared.
Eric Dumazet11fc7d52019-10-07 12:21:05 -07002776 */
Heiner Kallweit497a5752020-11-07 21:50:56 +01002777 if (!dev->tstats)
Eric Dumazet11fc7d52019-10-07 12:21:05 -07002778 goto err_free_dev;
Eric Dumazetff244c62017-08-18 13:39:56 -07002779
Jason Wang662ca432013-09-11 18:09:48 +08002780err_free_flow:
2781 tun_flow_uninit(tun);
2782 security_tun_dev_free_security(tun->security);
Paolo Abeni608b9972016-04-13 10:52:20 +02002783err_free_stat:
Heiner Kallweit497a5752020-11-07 21:50:56 +01002784 free_percpu(dev->tstats);
Jason Wang662ca432013-09-11 18:09:48 +08002785err_free_dev:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002786 free_netdev(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002787 return err;
2788}
2789
Kirill Tkhai12132762019-03-20 12:16:53 +03002790static void tun_get_iff(struct tun_struct *tun, struct ifreq *ifr)
Mark McLoughline3b99552008-08-15 15:09:56 -07002791{
Mark McLoughline3b99552008-08-15 15:09:56 -07002792 strcpy(ifr->ifr_name, tun->dev->name);
2793
David Woodhouse980c9e82009-05-09 22:54:21 -07002794 ifr->ifr_flags = tun_flags(tun);
Mark McLoughline3b99552008-08-15 15:09:56 -07002795
Mark McLoughline3b99552008-08-15 15:09:56 -07002796}
2797
Rusty Russell5228ddc2008-07-03 03:46:16 -07002798/* This is like a cut-down ethtool ops, except done via tun fd so no
2799 * privs required. */
Michał Mirosław88255372011-04-19 06:13:10 +00002800static int set_offload(struct tun_struct *tun, unsigned long arg)
Rusty Russell5228ddc2008-07-03 03:46:16 -07002801{
Michał Mirosławc8f44af2011-11-15 15:29:55 +00002802 netdev_features_t features = 0;
Rusty Russell5228ddc2008-07-03 03:46:16 -07002803
2804 if (arg & TUN_F_CSUM) {
Michał Mirosław88255372011-04-19 06:13:10 +00002805 features |= NETIF_F_HW_CSUM;
Rusty Russell5228ddc2008-07-03 03:46:16 -07002806 arg &= ~TUN_F_CSUM;
2807
2808 if (arg & (TUN_F_TSO4|TUN_F_TSO6)) {
2809 if (arg & TUN_F_TSO_ECN) {
2810 features |= NETIF_F_TSO_ECN;
2811 arg &= ~TUN_F_TSO_ECN;
2812 }
2813 if (arg & TUN_F_TSO4)
2814 features |= NETIF_F_TSO;
2815 if (arg & TUN_F_TSO6)
2816 features |= NETIF_F_TSO6;
2817 arg &= ~(TUN_F_TSO4|TUN_F_TSO6);
2818 }
Willem de Bruijn0c19f8462017-11-21 10:22:25 -05002819
2820 arg &= ~TUN_F_UFO;
Rusty Russell5228ddc2008-07-03 03:46:16 -07002821 }
2822
2823 /* This gives the user a way to test for new features in future by
2824 * trying to set them. */
2825 if (arg)
2826 return -EINVAL;
2827
Michał Mirosław88255372011-04-19 06:13:10 +00002828 tun->set_features = features;
Yaroslav Isakov09050952017-03-16 22:44:10 +03002829 tun->dev->wanted_features &= ~TUN_USER_FEATURES;
2830 tun->dev->wanted_features |= features;
Michał Mirosław88255372011-04-19 06:13:10 +00002831 netdev_update_features(tun->dev);
Rusty Russell5228ddc2008-07-03 03:46:16 -07002832
2833 return 0;
2834}
2835
Jason Wangc8d68e62012-10-31 19:46:00 +00002836static void tun_detach_filter(struct tun_struct *tun, int n)
2837{
2838 int i;
2839 struct tun_file *tfile;
2840
2841 for (i = 0; i < n; i++) {
Jason Wangb8deabd2013-01-11 16:59:32 +00002842 tfile = rtnl_dereference(tun->tfiles[i]);
Hannes Frederic Sowa8ced4252016-04-05 17:10:16 +02002843 lock_sock(tfile->socket.sk);
2844 sk_detach_filter(tfile->socket.sk);
2845 release_sock(tfile->socket.sk);
Jason Wangc8d68e62012-10-31 19:46:00 +00002846 }
2847
2848 tun->filter_attached = false;
2849}
2850
2851static int tun_attach_filter(struct tun_struct *tun)
2852{
2853 int i, ret = 0;
2854 struct tun_file *tfile;
2855
2856 for (i = 0; i < tun->numqueues; i++) {
Jason Wangb8deabd2013-01-11 16:59:32 +00002857 tfile = rtnl_dereference(tun->tfiles[i]);
Hannes Frederic Sowa8ced4252016-04-05 17:10:16 +02002858 lock_sock(tfile->socket.sk);
2859 ret = sk_attach_filter(&tun->fprog, tfile->socket.sk);
2860 release_sock(tfile->socket.sk);
Jason Wangc8d68e62012-10-31 19:46:00 +00002861 if (ret) {
2862 tun_detach_filter(tun, i);
2863 return ret;
2864 }
2865 }
2866
2867 tun->filter_attached = true;
2868 return ret;
2869}
2870
2871static void tun_set_sndbuf(struct tun_struct *tun)
2872{
2873 struct tun_file *tfile;
2874 int i;
2875
2876 for (i = 0; i < tun->numqueues; i++) {
Jason Wangb8deabd2013-01-11 16:59:32 +00002877 tfile = rtnl_dereference(tun->tfiles[i]);
Jason Wangc8d68e62012-10-31 19:46:00 +00002878 tfile->socket.sk->sk_sndbuf = tun->sndbuf;
2879 }
2880}
2881
Jason Wangcde8b152012-10-31 19:46:01 +00002882static int tun_set_queue(struct file *file, struct ifreq *ifr)
2883{
2884 struct tun_file *tfile = file->private_data;
2885 struct tun_struct *tun;
Jason Wangcde8b152012-10-31 19:46:01 +00002886 int ret = 0;
2887
2888 rtnl_lock();
2889
2890 if (ifr->ifr_flags & IFF_ATTACH_QUEUE) {
Jason Wang4008e972012-12-13 23:53:30 +00002891 tun = tfile->detached;
Paul Moore5dbbaf22013-01-14 07:12:19 +00002892 if (!tun) {
Jason Wangcde8b152012-10-31 19:46:01 +00002893 ret = -EINVAL;
Paul Moore5dbbaf22013-01-14 07:12:19 +00002894 goto unlock;
2895 }
2896 ret = security_tun_dev_attach_queue(tun->security);
2897 if (ret < 0)
2898 goto unlock;
Eric Dumazetaf3fb242018-09-28 14:51:49 -07002899 ret = tun_attach(tun, file, false, tun->flags & IFF_NAPI,
Yang Yingliang77f22f92019-09-10 18:56:57 +08002900 tun->flags & IFF_NAPI_FRAGS, true);
Jason Wang4008e972012-12-13 23:53:30 +00002901 } else if (ifr->ifr_flags & IFF_DETACH_QUEUE) {
Jason Wangb8deabd2013-01-11 16:59:32 +00002902 tun = rtnl_dereference(tfile->tun);
Michael S. Tsirkin40630b82014-11-19 15:17:31 +02002903 if (!tun || !(tun->flags & IFF_MULTI_QUEUE) || tfile->detached)
Jason Wang4008e972012-12-13 23:53:30 +00002904 ret = -EINVAL;
2905 else
2906 __tun_detach(tfile, false);
2907 } else
Jason Wangcde8b152012-10-31 19:46:01 +00002908 ret = -EINVAL;
2909
Sabrina Dubroca83c1f362018-04-10 16:28:56 +02002910 if (ret >= 0)
2911 netdev_state_change(tun->dev);
2912
Paul Moore5dbbaf22013-01-14 07:12:19 +00002913unlock:
Jason Wangcde8b152012-10-31 19:46:01 +00002914 rtnl_unlock();
2915 return ret;
2916}
2917
Jason Wang8f3f3302020-07-31 00:17:20 -04002918static int tun_set_ebpf(struct tun_struct *tun, struct tun_prog __rcu **prog_p,
Jason Wangcd5681d2018-01-16 16:31:01 +08002919 void __user *data)
Jason Wang96f84062017-12-04 17:31:23 +08002920{
2921 struct bpf_prog *prog;
2922 int fd;
2923
2924 if (copy_from_user(&fd, data, sizeof(fd)))
2925 return -EFAULT;
2926
2927 if (fd == -1) {
2928 prog = NULL;
2929 } else {
2930 prog = bpf_prog_get_type(fd, BPF_PROG_TYPE_SOCKET_FILTER);
2931 if (IS_ERR(prog))
2932 return PTR_ERR(prog);
2933 }
2934
Jason Wangcd5681d2018-01-16 16:31:01 +08002935 return __tun_set_ebpf(tun, prog_p, prog);
Jason Wang96f84062017-12-04 17:31:23 +08002936}
2937
Phillip Pottercca8ea32021-04-06 18:45:54 +01002938/* Return correct value for tun->dev->addr_len based on tun->dev->type. */
2939static unsigned char tun_get_addr_len(unsigned short type)
2940{
2941 switch (type) {
2942 case ARPHRD_IP6GRE:
2943 case ARPHRD_TUNNEL6:
2944 return sizeof(struct in6_addr);
2945 case ARPHRD_IPGRE:
2946 case ARPHRD_TUNNEL:
2947 case ARPHRD_SIT:
2948 return 4;
2949 case ARPHRD_ETHER:
2950 return ETH_ALEN;
2951 case ARPHRD_IEEE802154:
2952 case ARPHRD_IEEE802154_MONITOR:
2953 return IEEE802154_EXTENDED_ADDR_LEN;
2954 case ARPHRD_PHONET_PIPE:
2955 case ARPHRD_PPP:
2956 case ARPHRD_NONE:
2957 return 0;
2958 case ARPHRD_6LOWPAN:
2959 return EUI64_ADDR_LEN;
2960 case ARPHRD_FDDI:
2961 return FDDI_K_ALEN;
2962 case ARPHRD_HIPPI:
2963 return HIPPI_ALEN;
2964 case ARPHRD_IEEE802:
2965 return FC_ALEN;
2966 case ARPHRD_ROSE:
2967 return ROSE_ADDR_LEN;
2968 case ARPHRD_NETROM:
2969 return AX25_ADDR_LEN;
2970 case ARPHRD_LOCALTLK:
2971 return LTALK_ALEN;
2972 default:
2973 return 0;
2974 }
2975}
2976
Arnd Bergmann50857e22009-11-06 22:52:32 -08002977static long __tun_chr_ioctl(struct file *file, unsigned int cmd,
2978 unsigned long arg, int ifreq_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002979{
Eric W. Biederman36b50ba2009-01-20 11:01:48 +00002980 struct tun_file *tfile = file->private_data;
Kirill Tkhaif6637062018-05-08 19:21:34 +03002981 struct net *net = sock_net(&tfile->sk);
Eric W. Biederman631ab462009-01-20 11:00:40 +00002982 struct tun_struct *tun;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002983 void __user* argp = (void __user*)arg;
Nicolas Dichtel26d31922018-11-28 19:12:56 +01002984 unsigned int ifindex, carrier;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002985 struct ifreq ifr;
Eric W. Biederman0625c882012-02-07 16:48:55 -08002986 kuid_t owner;
2987 kgid_t group;
Herbert Xu33dccbb2009-02-05 21:25:32 -08002988 int sndbuf;
Michael S. Tsirkind9d52b52010-03-17 17:45:01 +02002989 int vnet_hdr_sz;
Michael S. Tsirkin1cf8e412014-12-16 15:05:06 +02002990 int le;
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -07002991 int ret;
Sabrina Dubroca83c1f362018-04-10 16:28:56 +02002992 bool do_notify = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002993
Kirill Tkhaif2780d62018-02-14 16:40:14 +03002994 if (cmd == TUNSETIFF || cmd == TUNSETQUEUE ||
2995 (_IOC_TYPE(cmd) == SOCK_IOC_TYPE && cmd != SIOCGSKNS)) {
Arnd Bergmann50857e22009-11-06 22:52:32 -08002996 if (copy_from_user(&ifr, argp, ifreq_len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002997 return -EFAULT;
David S. Miller8bbb1812012-07-30 14:52:48 -07002998 } else {
Mathias Krausea117dac2012-07-29 19:45:14 +00002999 memset(&ifr, 0, sizeof(ifr));
David S. Miller8bbb1812012-07-30 14:52:48 -07003000 }
Eric W. Biederman631ab462009-01-20 11:00:40 +00003001 if (cmd == TUNGETFEATURES) {
3002 /* Currently this just means: "what IFF flags are valid?".
3003 * This is needed because we never checked for invalid flags on
Michael S. Tsirkin031f5e032014-11-19 14:44:40 +02003004 * TUNSETIFF.
3005 */
3006 return put_user(IFF_TUN | IFF_TAP | TUN_FEATURES,
Eric W. Biederman631ab462009-01-20 11:00:40 +00003007 (unsigned int __user*)argp);
Kirill Tkhaif6637062018-05-08 19:21:34 +03003008 } else if (cmd == TUNSETQUEUE) {
Jason Wangcde8b152012-10-31 19:46:01 +00003009 return tun_set_queue(file, &ifr);
Kirill Tkhaif6637062018-05-08 19:21:34 +03003010 } else if (cmd == SIOCGSKNS) {
3011 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
3012 return -EPERM;
3013 return open_related_ns(&net->ns, get_net_ns);
3014 }
Eric W. Biederman631ab462009-01-20 11:00:40 +00003015
Herbert Xu876bfd42009-08-06 14:22:44 +00003016 rtnl_lock();
3017
yuan linyu9484dc72017-09-23 22:36:52 +08003018 tun = tun_get(tfile);
Gao Feng0f16bc12016-10-25 22:26:09 +08003019 if (cmd == TUNSETIFF) {
3020 ret = -EEXIST;
3021 if (tun)
3022 goto unlock;
3023
Linus Torvalds1da177e2005-04-16 15:20:36 -07003024 ifr.ifr_name[IFNAMSIZ-1] = '\0';
3025
Kirill Tkhaif2780d62018-02-14 16:40:14 +03003026 ret = tun_set_iff(net, file, &ifr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003027
Herbert Xu876bfd42009-08-06 14:22:44 +00003028 if (ret)
3029 goto unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003030
Arnd Bergmann50857e22009-11-06 22:52:32 -08003031 if (copy_to_user(argp, &ifr, ifreq_len))
Herbert Xu876bfd42009-08-06 14:22:44 +00003032 ret = -EFAULT;
3033 goto unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003034 }
Pavel Emelyanovfb7589a2013-08-21 14:31:38 +04003035 if (cmd == TUNSETIFINDEX) {
3036 ret = -EPERM;
3037 if (tun)
3038 goto unlock;
3039
3040 ret = -EFAULT;
3041 if (copy_from_user(&ifindex, argp, sizeof(ifindex)))
3042 goto unlock;
3043
3044 ret = 0;
3045 tfile->ifindex = ifindex;
3046 goto unlock;
3047 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003048
Herbert Xu876bfd42009-08-06 14:22:44 +00003049 ret = -EBADFD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003050 if (!tun)
Herbert Xu876bfd42009-08-06 14:22:44 +00003051 goto unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003052
Michal Kubecek34241702020-03-04 17:24:14 +01003053 netif_info(tun, drv, tun->dev, "tun_chr_ioctl cmd %u\n", cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003054
Kirill Tkhai0c3e0e32019-03-20 12:16:42 +03003055 net = dev_net(tun->dev);
Eric W. Biederman631ab462009-01-20 11:00:40 +00003056 ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003057 switch (cmd) {
Mark McLoughline3b99552008-08-15 15:09:56 -07003058 case TUNGETIFF:
Kirill Tkhai12132762019-03-20 12:16:53 +03003059 tun_get_iff(tun, &ifr);
Mark McLoughline3b99552008-08-15 15:09:56 -07003060
Pavel Emelyanov3d407a82013-08-21 14:32:00 +04003061 if (tfile->detached)
3062 ifr.ifr_flags |= IFF_DETACH_QUEUE;
Pavel Emelyanov849c9b62013-08-21 14:32:21 +04003063 if (!tfile->socket.sk->sk_filter)
3064 ifr.ifr_flags |= IFF_NOFILTER;
Pavel Emelyanov3d407a82013-08-21 14:32:00 +04003065
Arnd Bergmann50857e22009-11-06 22:52:32 -08003066 if (copy_to_user(argp, &ifr, ifreq_len))
Eric W. Biederman631ab462009-01-20 11:00:40 +00003067 ret = -EFAULT;
Mark McLoughline3b99552008-08-15 15:09:56 -07003068 break;
3069
Linus Torvalds1da177e2005-04-16 15:20:36 -07003070 case TUNSETNOCSUM:
3071 /* Disable/Enable checksum */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003072
Michał Mirosław88255372011-04-19 06:13:10 +00003073 /* [unimplemented] */
Michal Kubecek34241702020-03-04 17:24:14 +01003074 netif_info(tun, drv, tun->dev, "ignored: set checksum %s\n",
3075 arg ? "disabled" : "enabled");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003076 break;
3077
3078 case TUNSETPERSIST:
Jason Wang54f968d2012-10-31 19:45:57 +00003079 /* Disable/Enable persist mode. Keep an extra reference to the
3080 * module to prevent the module being unprobed.
3081 */
Michael S. Tsirkin40630b82014-11-19 15:17:31 +02003082 if (arg && !(tun->flags & IFF_PERSIST)) {
3083 tun->flags |= IFF_PERSIST;
Jason Wang54f968d2012-10-31 19:45:57 +00003084 __module_get(THIS_MODULE);
Sabrina Dubroca83c1f362018-04-10 16:28:56 +02003085 do_notify = true;
Jason Wangdd38bd82013-01-11 16:59:34 +00003086 }
Michael S. Tsirkin40630b82014-11-19 15:17:31 +02003087 if (!arg && (tun->flags & IFF_PERSIST)) {
3088 tun->flags &= ~IFF_PERSIST;
Jason Wang54f968d2012-10-31 19:45:57 +00003089 module_put(THIS_MODULE);
Sabrina Dubroca83c1f362018-04-10 16:28:56 +02003090 do_notify = true;
Jason Wang54f968d2012-10-31 19:45:57 +00003091 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003092
Michal Kubecek34241702020-03-04 17:24:14 +01003093 netif_info(tun, drv, tun->dev, "persist %s\n",
3094 arg ? "enabled" : "disabled");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003095 break;
3096
3097 case TUNSETOWNER:
3098 /* Set owner of the device */
Eric W. Biederman0625c882012-02-07 16:48:55 -08003099 owner = make_kuid(current_user_ns(), arg);
3100 if (!uid_valid(owner)) {
3101 ret = -EINVAL;
3102 break;
3103 }
3104 tun->owner = owner;
Sabrina Dubroca83c1f362018-04-10 16:28:56 +02003105 do_notify = true;
Michal Kubecek34241702020-03-04 17:24:14 +01003106 netif_info(tun, drv, tun->dev, "owner set to %u\n",
3107 from_kuid(&init_user_ns, tun->owner));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003108 break;
3109
Guido Guenther8c644622007-07-02 22:50:25 -07003110 case TUNSETGROUP:
3111 /* Set group of the device */
Eric W. Biederman0625c882012-02-07 16:48:55 -08003112 group = make_kgid(current_user_ns(), arg);
3113 if (!gid_valid(group)) {
3114 ret = -EINVAL;
3115 break;
3116 }
3117 tun->group = group;
Sabrina Dubroca83c1f362018-04-10 16:28:56 +02003118 do_notify = true;
Michal Kubecek34241702020-03-04 17:24:14 +01003119 netif_info(tun, drv, tun->dev, "group set to %u\n",
3120 from_kgid(&init_user_ns, tun->group));
Guido Guenther8c644622007-07-02 22:50:25 -07003121 break;
3122
Mike Kershawff4cc3a2005-09-01 17:40:05 -07003123 case TUNSETLINK:
3124 /* Only allow setting the type when the interface is down */
3125 if (tun->dev->flags & IFF_UP) {
Michal Kubecek34241702020-03-04 17:24:14 +01003126 netif_info(tun, drv, tun->dev,
3127 "Linktype set failed because interface is up\n");
David S. Miller48abfe02008-04-23 19:37:58 -07003128 ret = -EBUSY;
Mike Kershawff4cc3a2005-09-01 17:40:05 -07003129 } else {
Martin Schiller8e1e33f2020-11-18 07:39:19 +01003130 ret = call_netdevice_notifiers(NETDEV_PRE_TYPE_CHANGE,
3131 tun->dev);
3132 ret = notifier_to_errno(ret);
3133 if (ret) {
3134 netif_info(tun, drv, tun->dev,
3135 "Refused to change device type\n");
3136 break;
3137 }
Mike Kershawff4cc3a2005-09-01 17:40:05 -07003138 tun->dev->type = (int) arg;
Phillip Pottercca8ea32021-04-06 18:45:54 +01003139 tun->dev->addr_len = tun_get_addr_len(tun->dev->type);
Michal Kubecek34241702020-03-04 17:24:14 +01003140 netif_info(tun, drv, tun->dev, "linktype set to %d\n",
3141 tun->dev->type);
Martin Schiller8e1e33f2020-11-18 07:39:19 +01003142 call_netdevice_notifiers(NETDEV_POST_TYPE_CHANGE,
3143 tun->dev);
Mike Kershawff4cc3a2005-09-01 17:40:05 -07003144 }
Eric W. Biederman631ab462009-01-20 11:00:40 +00003145 break;
Mike Kershawff4cc3a2005-09-01 17:40:05 -07003146
Linus Torvalds1da177e2005-04-16 15:20:36 -07003147 case TUNSETDEBUG:
Michal Kubecek34241702020-03-04 17:24:14 +01003148 tun->msg_enable = (u32)arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003149 break;
Michal Kubecek34241702020-03-04 17:24:14 +01003150
Rusty Russell5228ddc2008-07-03 03:46:16 -07003151 case TUNSETOFFLOAD:
Michał Mirosław88255372011-04-19 06:13:10 +00003152 ret = set_offload(tun, arg);
Eric W. Biederman631ab462009-01-20 11:00:40 +00003153 break;
Rusty Russell5228ddc2008-07-03 03:46:16 -07003154
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -07003155 case TUNSETTXFILTER:
3156 /* Can be set only for TAPs */
Eric W. Biederman631ab462009-01-20 11:00:40 +00003157 ret = -EINVAL;
Michael S. Tsirkin40630b82014-11-19 15:17:31 +02003158 if ((tun->flags & TUN_TYPE_MASK) != IFF_TAP)
Eric W. Biederman631ab462009-01-20 11:00:40 +00003159 break;
Harvey Harrisonc0e5a8c2008-07-16 12:45:34 -07003160 ret = update_filter(&tun->txflt, (void __user *)arg);
Eric W. Biederman631ab462009-01-20 11:00:40 +00003161 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003162
3163 case SIOCGIFHWADDR:
Uwe Kleine-Königb5950762010-11-01 15:38:34 -04003164 /* Get hw address */
Cong Wang3b23a322021-02-11 11:34:10 -08003165 dev_get_mac_address(&ifr.ifr_hwaddr, net, tun->dev->name);
Arnd Bergmann50857e22009-11-06 22:52:32 -08003166 if (copy_to_user(argp, &ifr, ifreq_len))
Eric W. Biederman631ab462009-01-20 11:00:40 +00003167 ret = -EFAULT;
3168 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003169
3170 case SIOCSIFHWADDR:
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -07003171 /* Set hw address */
Cong Wang3b23a322021-02-11 11:34:10 -08003172 ret = dev_set_mac_address_user(tun->dev, &ifr.ifr_hwaddr, NULL);
Eric W. Biederman631ab462009-01-20 11:00:40 +00003173 break;
Herbert Xu33dccbb2009-02-05 21:25:32 -08003174
3175 case TUNGETSNDBUF:
Jason Wang54f968d2012-10-31 19:45:57 +00003176 sndbuf = tfile->socket.sk->sk_sndbuf;
Herbert Xu33dccbb2009-02-05 21:25:32 -08003177 if (copy_to_user(argp, &sndbuf, sizeof(sndbuf)))
3178 ret = -EFAULT;
3179 break;
3180
3181 case TUNSETSNDBUF:
3182 if (copy_from_user(&sndbuf, argp, sizeof(sndbuf))) {
3183 ret = -EFAULT;
3184 break;
3185 }
Craig Gallek931619222017-10-30 18:50:11 -04003186 if (sndbuf <= 0) {
3187 ret = -EINVAL;
3188 break;
3189 }
Herbert Xu33dccbb2009-02-05 21:25:32 -08003190
Jason Wangc8d68e62012-10-31 19:46:00 +00003191 tun->sndbuf = sndbuf;
3192 tun_set_sndbuf(tun);
Herbert Xu33dccbb2009-02-05 21:25:32 -08003193 break;
3194
Michael S. Tsirkind9d52b52010-03-17 17:45:01 +02003195 case TUNGETVNETHDRSZ:
3196 vnet_hdr_sz = tun->vnet_hdr_sz;
3197 if (copy_to_user(argp, &vnet_hdr_sz, sizeof(vnet_hdr_sz)))
3198 ret = -EFAULT;
3199 break;
3200
3201 case TUNSETVNETHDRSZ:
3202 if (copy_from_user(&vnet_hdr_sz, argp, sizeof(vnet_hdr_sz))) {
3203 ret = -EFAULT;
3204 break;
3205 }
3206 if (vnet_hdr_sz < (int)sizeof(struct virtio_net_hdr)) {
3207 ret = -EINVAL;
3208 break;
3209 }
3210
3211 tun->vnet_hdr_sz = vnet_hdr_sz;
3212 break;
3213
Michael S. Tsirkin1cf8e412014-12-16 15:05:06 +02003214 case TUNGETVNETLE:
3215 le = !!(tun->flags & TUN_VNET_LE);
3216 if (put_user(le, (int __user *)argp))
3217 ret = -EFAULT;
3218 break;
3219
3220 case TUNSETVNETLE:
3221 if (get_user(le, (int __user *)argp)) {
3222 ret = -EFAULT;
3223 break;
3224 }
3225 if (le)
3226 tun->flags |= TUN_VNET_LE;
3227 else
3228 tun->flags &= ~TUN_VNET_LE;
3229 break;
3230
Greg Kurz8b8e6582015-04-24 14:50:36 +02003231 case TUNGETVNETBE:
3232 ret = tun_get_vnet_be(tun, argp);
3233 break;
3234
3235 case TUNSETVNETBE:
3236 ret = tun_set_vnet_be(tun, argp);
3237 break;
3238
Michael S. Tsirkin99405162010-02-14 01:01:10 +00003239 case TUNATTACHFILTER:
3240 /* Can be set only for TAPs */
3241 ret = -EINVAL;
Michael S. Tsirkin40630b82014-11-19 15:17:31 +02003242 if ((tun->flags & TUN_TYPE_MASK) != IFF_TAP)
Michael S. Tsirkin99405162010-02-14 01:01:10 +00003243 break;
3244 ret = -EFAULT;
Jason Wang54f968d2012-10-31 19:45:57 +00003245 if (copy_from_user(&tun->fprog, argp, sizeof(tun->fprog)))
Michael S. Tsirkin99405162010-02-14 01:01:10 +00003246 break;
3247
Jason Wangc8d68e62012-10-31 19:46:00 +00003248 ret = tun_attach_filter(tun);
Michael S. Tsirkin99405162010-02-14 01:01:10 +00003249 break;
3250
3251 case TUNDETACHFILTER:
3252 /* Can be set only for TAPs */
3253 ret = -EINVAL;
Michael S. Tsirkin40630b82014-11-19 15:17:31 +02003254 if ((tun->flags & TUN_TYPE_MASK) != IFF_TAP)
Michael S. Tsirkin99405162010-02-14 01:01:10 +00003255 break;
Jason Wangc8d68e62012-10-31 19:46:00 +00003256 ret = 0;
3257 tun_detach_filter(tun, tun->numqueues);
Michael S. Tsirkin99405162010-02-14 01:01:10 +00003258 break;
3259
Pavel Emelyanov76975e92013-08-21 14:32:39 +04003260 case TUNGETFILTER:
3261 ret = -EINVAL;
Michael S. Tsirkin40630b82014-11-19 15:17:31 +02003262 if ((tun->flags & TUN_TYPE_MASK) != IFF_TAP)
Pavel Emelyanov76975e92013-08-21 14:32:39 +04003263 break;
3264 ret = -EFAULT;
3265 if (copy_to_user(argp, &tun->fprog, sizeof(tun->fprog)))
3266 break;
3267 ret = 0;
3268 break;
3269
Jason Wang96f84062017-12-04 17:31:23 +08003270 case TUNSETSTEERINGEBPF:
Jason Wangcd5681d2018-01-16 16:31:01 +08003271 ret = tun_set_ebpf(tun, &tun->steering_prog, argp);
Jason Wang96f84062017-12-04 17:31:23 +08003272 break;
3273
Jason Wangaff3d702018-01-16 16:31:02 +08003274 case TUNSETFILTEREBPF:
3275 ret = tun_set_ebpf(tun, &tun->filter_prog, argp);
3276 break;
3277
Nicolas Dichtel26d31922018-11-28 19:12:56 +01003278 case TUNSETCARRIER:
3279 ret = -EFAULT;
3280 if (copy_from_user(&carrier, argp, sizeof(carrier)))
3281 goto unlock;
3282
3283 ret = tun_net_change_carrier(tun->dev, (bool)carrier);
3284 break;
3285
Kirill Tkhai0c3e0e32019-03-20 12:16:42 +03003286 case TUNGETDEVNETNS:
3287 ret = -EPERM;
3288 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
3289 goto unlock;
3290 ret = open_related_ns(&net->ns, get_net_ns);
3291 break;
3292
Linus Torvalds1da177e2005-04-16 15:20:36 -07003293 default:
Eric W. Biederman631ab462009-01-20 11:00:40 +00003294 ret = -EINVAL;
3295 break;
Joe Perchesee289b62010-05-17 22:47:34 -07003296 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003297
Sabrina Dubroca83c1f362018-04-10 16:28:56 +02003298 if (do_notify)
3299 netdev_state_change(tun->dev);
3300
Herbert Xu876bfd42009-08-06 14:22:44 +00003301unlock:
3302 rtnl_unlock();
3303 if (tun)
3304 tun_put(tun);
Eric W. Biederman631ab462009-01-20 11:00:40 +00003305 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003306}
3307
Arnd Bergmann50857e22009-11-06 22:52:32 -08003308static long tun_chr_ioctl(struct file *file,
3309 unsigned int cmd, unsigned long arg)
3310{
3311 return __tun_chr_ioctl(file, cmd, arg, sizeof (struct ifreq));
3312}
3313
3314#ifdef CONFIG_COMPAT
3315static long tun_chr_compat_ioctl(struct file *file,
3316 unsigned int cmd, unsigned long arg)
3317{
3318 switch (cmd) {
3319 case TUNSETIFF:
3320 case TUNGETIFF:
3321 case TUNSETTXFILTER:
3322 case TUNGETSNDBUF:
3323 case TUNSETSNDBUF:
3324 case SIOCGIFHWADDR:
3325 case SIOCSIFHWADDR:
3326 arg = (unsigned long)compat_ptr(arg);
3327 break;
3328 default:
3329 arg = (compat_ulong_t)arg;
3330 break;
3331 }
3332
3333 /*
3334 * compat_ifreq is shorter than ifreq, so we must not access beyond
3335 * the end of that structure. All fields that are used in this
3336 * driver are compatible though, we don't need to convert the
3337 * contents.
3338 */
3339 return __tun_chr_ioctl(file, cmd, arg, sizeof(struct compat_ifreq));
3340}
3341#endif /* CONFIG_COMPAT */
3342
Linus Torvalds1da177e2005-04-16 15:20:36 -07003343static int tun_chr_fasync(int fd, struct file *file, int on)
3344{
Jason Wang54f968d2012-10-31 19:45:57 +00003345 struct tun_file *tfile = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003346 int ret;
3347
Jason Wang54f968d2012-10-31 19:45:57 +00003348 if ((ret = fasync_helper(fd, file, on, &tfile->fasync)) < 0)
Jonathan Corbet9d319522008-06-19 15:50:37 -06003349 goto out;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04003350
Linus Torvalds1da177e2005-04-16 15:20:36 -07003351 if (on) {
Eric W. Biederman01919132017-07-16 22:05:57 -05003352 __f_setown(file, task_pid(current), PIDTYPE_TGID, 0);
Jason Wang54f968d2012-10-31 19:45:57 +00003353 tfile->flags |= TUN_FASYNC;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04003354 } else
Jason Wang54f968d2012-10-31 19:45:57 +00003355 tfile->flags &= ~TUN_FASYNC;
Jonathan Corbet9d319522008-06-19 15:50:37 -06003356 ret = 0;
3357out:
Jonathan Corbet9d319522008-06-19 15:50:37 -06003358 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003359}
3360
3361static int tun_chr_open(struct inode *inode, struct file * file)
3362{
Eric W. Biederman140e807da2015-05-08 21:07:08 -05003363 struct net *net = current->nsproxy->net_ns;
Eric W. Biederman631ab462009-01-20 11:00:40 +00003364 struct tun_file *tfile;
Thomas Gleixnerdeed49f2009-10-14 01:19:46 -07003365
Eric W. Biederman140e807da2015-05-08 21:07:08 -05003366 tfile = (struct tun_file *)sk_alloc(net, AF_UNSPEC, GFP_KERNEL,
Eric W. Biederman11aa9c22015-05-08 21:09:13 -05003367 &tun_proto, 0);
Eric W. Biederman631ab462009-01-20 11:00:40 +00003368 if (!tfile)
3369 return -ENOMEM;
Jason Wangb196d882018-05-11 10:49:25 +08003370 if (ptr_ring_init(&tfile->tx_ring, 0, GFP_KERNEL)) {
3371 sk_free(&tfile->sk);
3372 return -ENOMEM;
3373 }
3374
Eric Dumazetc7256f52018-09-28 14:51:48 -07003375 mutex_init(&tfile->napi_mutex);
Monam Agarwalc9566742014-03-24 00:02:32 +05303376 RCU_INIT_POINTER(tfile->tun, NULL);
Jason Wang54f968d2012-10-31 19:45:57 +00003377 tfile->flags = 0;
Pavel Emelyanovfb7589a2013-08-21 14:31:38 +04003378 tfile->ifindex = 0;
Jason Wang54f968d2012-10-31 19:45:57 +00003379
Al Viro333f7902019-07-05 20:14:16 +01003380 init_waitqueue_head(&tfile->socket.wq.wait);
Jason Wang54f968d2012-10-31 19:45:57 +00003381
3382 tfile->socket.file = file;
3383 tfile->socket.ops = &tun_socket_ops;
3384
3385 sock_init_data(&tfile->socket, &tfile->sk);
Jason Wang54f968d2012-10-31 19:45:57 +00003386
3387 tfile->sk.sk_write_space = tun_sock_write_space;
3388 tfile->sk.sk_sndbuf = INT_MAX;
3389
Eric W. Biederman631ab462009-01-20 11:00:40 +00003390 file->private_data = tfile;
Jason Wang4008e972012-12-13 23:53:30 +00003391 INIT_LIST_HEAD(&tfile->next);
Jason Wang54f968d2012-10-31 19:45:57 +00003392
Jason Wang19a6afb2013-06-08 14:17:41 +08003393 sock_set_flag(&tfile->sk, SOCK_ZEROCOPY);
3394
Linus Torvalds1da177e2005-04-16 15:20:36 -07003395 return 0;
3396}
3397
3398static int tun_chr_close(struct inode *inode, struct file *file)
3399{
Eric W. Biederman631ab462009-01-20 11:00:40 +00003400 struct tun_file *tfile = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003401
Jason Wangc8d68e62012-10-31 19:46:00 +00003402 tun_detach(tfile, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003403
3404 return 0;
3405}
3406
Masatake YAMATO93e14b62014-01-29 16:43:31 +09003407#ifdef CONFIG_PROC_FS
yuan linyu9484dc72017-09-23 22:36:52 +08003408static void tun_chr_show_fdinfo(struct seq_file *m, struct file *file)
Masatake YAMATO93e14b62014-01-29 16:43:31 +09003409{
yuan linyu9484dc72017-09-23 22:36:52 +08003410 struct tun_file *tfile = file->private_data;
Masatake YAMATO93e14b62014-01-29 16:43:31 +09003411 struct tun_struct *tun;
3412 struct ifreq ifr;
3413
3414 memset(&ifr, 0, sizeof(ifr));
3415
3416 rtnl_lock();
yuan linyu9484dc72017-09-23 22:36:52 +08003417 tun = tun_get(tfile);
Masatake YAMATO93e14b62014-01-29 16:43:31 +09003418 if (tun)
Kirill Tkhai12132762019-03-20 12:16:53 +03003419 tun_get_iff(tun, &ifr);
Masatake YAMATO93e14b62014-01-29 16:43:31 +09003420 rtnl_unlock();
3421
3422 if (tun)
3423 tun_put(tun);
3424
Joe Perchesa3816ab2014-09-29 16:08:25 -07003425 seq_printf(m, "iff:\t%s\n", ifr.ifr_name);
Masatake YAMATO93e14b62014-01-29 16:43:31 +09003426}
3427#endif
3428
Arjan van de Vend54b1fd2007-02-12 00:55:34 -08003429static const struct file_operations tun_fops = {
Jeff Garzik6aa20a22006-09-13 13:24:59 -04003430 .owner = THIS_MODULE,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003431 .llseek = no_llseek,
Al Viro9b067032014-11-07 13:52:07 -05003432 .read_iter = tun_chr_read_iter,
Al Virof5ff53b2014-06-19 15:36:49 -04003433 .write_iter = tun_chr_write_iter,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003434 .poll = tun_chr_poll,
Arnd Bergmann50857e22009-11-06 22:52:32 -08003435 .unlocked_ioctl = tun_chr_ioctl,
3436#ifdef CONFIG_COMPAT
3437 .compat_ioctl = tun_chr_compat_ioctl,
3438#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003439 .open = tun_chr_open,
3440 .release = tun_chr_close,
Masatake YAMATO93e14b62014-01-29 16:43:31 +09003441 .fasync = tun_chr_fasync,
3442#ifdef CONFIG_PROC_FS
3443 .show_fdinfo = tun_chr_show_fdinfo,
3444#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003445};
3446
3447static struct miscdevice tun_miscdev = {
3448 .minor = TUN_MINOR,
3449 .name = "tun",
Kay Sieverse454cea2009-09-18 23:01:12 +02003450 .nodename = "net/tun",
Linus Torvalds1da177e2005-04-16 15:20:36 -07003451 .fops = &tun_fops,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003452};
3453
3454/* ethtool interface */
3455
Chas Williams4e24f2d2018-06-02 17:49:53 -04003456static void tun_default_link_ksettings(struct net_device *dev,
3457 struct ethtool_link_ksettings *cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003458{
Philippe Reynes29ccc492017-03-11 22:03:50 +01003459 ethtool_link_ksettings_zero_link_mode(cmd, supported);
3460 ethtool_link_ksettings_zero_link_mode(cmd, advertising);
3461 cmd->base.speed = SPEED_10;
3462 cmd->base.duplex = DUPLEX_FULL;
3463 cmd->base.port = PORT_TP;
3464 cmd->base.phy_address = 0;
3465 cmd->base.autoneg = AUTONEG_DISABLE;
Chas Williams4e24f2d2018-06-02 17:49:53 -04003466}
3467
3468static int tun_get_link_ksettings(struct net_device *dev,
3469 struct ethtool_link_ksettings *cmd)
3470{
3471 struct tun_struct *tun = netdev_priv(dev);
3472
3473 memcpy(cmd, &tun->link_ksettings, sizeof(*cmd));
3474 return 0;
3475}
3476
3477static int tun_set_link_ksettings(struct net_device *dev,
3478 const struct ethtool_link_ksettings *cmd)
3479{
3480 struct tun_struct *tun = netdev_priv(dev);
3481
3482 memcpy(&tun->link_ksettings, cmd, sizeof(*cmd));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003483 return 0;
3484}
3485
3486static void tun_get_drvinfo(struct net_device *dev, struct ethtool_drvinfo *info)
3487{
3488 struct tun_struct *tun = netdev_priv(dev);
3489
Rick Jones33a5ba12011-11-15 14:59:53 +00003490 strlcpy(info->driver, DRV_NAME, sizeof(info->driver));
3491 strlcpy(info->version, DRV_VERSION, sizeof(info->version));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003492
3493 switch (tun->flags & TUN_TYPE_MASK) {
Michael S. Tsirkin40630b82014-11-19 15:17:31 +02003494 case IFF_TUN:
Rick Jones33a5ba12011-11-15 14:59:53 +00003495 strlcpy(info->bus_info, "tun", sizeof(info->bus_info));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003496 break;
Michael S. Tsirkin40630b82014-11-19 15:17:31 +02003497 case IFF_TAP:
Rick Jones33a5ba12011-11-15 14:59:53 +00003498 strlcpy(info->bus_info, "tap", sizeof(info->bus_info));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003499 break;
3500 }
3501}
3502
3503static u32 tun_get_msglevel(struct net_device *dev)
3504{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003505 struct tun_struct *tun = netdev_priv(dev);
Michal Kubecek34241702020-03-04 17:24:14 +01003506
3507 return tun->msg_enable;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003508}
3509
3510static void tun_set_msglevel(struct net_device *dev, u32 value)
3511{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003512 struct tun_struct *tun = netdev_priv(dev);
Michal Kubecek34241702020-03-04 17:24:14 +01003513
3514 tun->msg_enable = value;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003515}
3516
Jason Wang5503fce2017-01-18 15:02:03 +08003517static int tun_get_coalesce(struct net_device *dev,
Yufeng Mof3ccfda12021-08-20 15:35:18 +08003518 struct ethtool_coalesce *ec,
3519 struct kernel_ethtool_coalesce *kernel_coal,
3520 struct netlink_ext_ack *extack)
Jason Wang5503fce2017-01-18 15:02:03 +08003521{
3522 struct tun_struct *tun = netdev_priv(dev);
3523
3524 ec->rx_max_coalesced_frames = tun->rx_batched;
3525
3526 return 0;
3527}
3528
3529static int tun_set_coalesce(struct net_device *dev,
Yufeng Mof3ccfda12021-08-20 15:35:18 +08003530 struct ethtool_coalesce *ec,
3531 struct kernel_ethtool_coalesce *kernel_coal,
3532 struct netlink_ext_ack *extack)
Jason Wang5503fce2017-01-18 15:02:03 +08003533{
3534 struct tun_struct *tun = netdev_priv(dev);
3535
3536 if (ec->rx_max_coalesced_frames > NAPI_POLL_WEIGHT)
3537 tun->rx_batched = NAPI_POLL_WEIGHT;
3538 else
3539 tun->rx_batched = ec->rx_max_coalesced_frames;
3540
3541 return 0;
3542}
3543
Jeff Garzik7282d492006-09-13 14:30:00 -04003544static const struct ethtool_ops tun_ethtool_ops = {
Jakub Kicinskie5ad00b2020-03-05 17:05:58 -08003545 .supported_coalesce_params = ETHTOOL_COALESCE_RX_MAX_FRAMES,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003546 .get_drvinfo = tun_get_drvinfo,
3547 .get_msglevel = tun_get_msglevel,
3548 .set_msglevel = tun_set_msglevel,
Nolan Leakebee31362010-07-27 13:53:43 +00003549 .get_link = ethtool_op_get_link,
Richard Cochraneda29772013-07-19 19:40:10 +02003550 .get_ts_info = ethtool_op_get_ts_info,
Jason Wang5503fce2017-01-18 15:02:03 +08003551 .get_coalesce = tun_get_coalesce,
3552 .set_coalesce = tun_set_coalesce,
Philippe Reynes29ccc492017-03-11 22:03:50 +01003553 .get_link_ksettings = tun_get_link_ksettings,
Chas Williams4e24f2d2018-06-02 17:49:53 -04003554 .set_link_ksettings = tun_set_link_ksettings,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003555};
3556
Jason Wang1576d982016-06-30 14:45:36 +08003557static int tun_queue_resize(struct tun_struct *tun)
3558{
3559 struct net_device *dev = tun->dev;
3560 struct tun_file *tfile;
Jason Wang5990a302018-01-04 11:14:27 +08003561 struct ptr_ring **rings;
Jason Wang1576d982016-06-30 14:45:36 +08003562 int n = tun->numqueues + tun->numdisabled;
3563 int ret, i;
3564
Jason Wang5990a302018-01-04 11:14:27 +08003565 rings = kmalloc_array(n, sizeof(*rings), GFP_KERNEL);
3566 if (!rings)
Jason Wang1576d982016-06-30 14:45:36 +08003567 return -ENOMEM;
3568
3569 for (i = 0; i < tun->numqueues; i++) {
3570 tfile = rtnl_dereference(tun->tfiles[i]);
Jason Wang5990a302018-01-04 11:14:27 +08003571 rings[i] = &tfile->tx_ring;
Jason Wang1576d982016-06-30 14:45:36 +08003572 }
3573 list_for_each_entry(tfile, &tun->disabled, next)
Jason Wang5990a302018-01-04 11:14:27 +08003574 rings[i++] = &tfile->tx_ring;
Jason Wang1576d982016-06-30 14:45:36 +08003575
Jason Wang5990a302018-01-04 11:14:27 +08003576 ret = ptr_ring_resize_multiple(rings, n,
3577 dev->tx_queue_len, GFP_KERNEL,
Jason Wangfc72d1d2018-01-04 11:14:28 +08003578 tun_ptr_free);
Jason Wang1576d982016-06-30 14:45:36 +08003579
Jason Wang5990a302018-01-04 11:14:27 +08003580 kfree(rings);
Jason Wang1576d982016-06-30 14:45:36 +08003581 return ret;
3582}
3583
3584static int tun_device_event(struct notifier_block *unused,
3585 unsigned long event, void *ptr)
3586{
3587 struct net_device *dev = netdev_notifier_info_to_dev(ptr);
3588 struct tun_struct *tun = netdev_priv(dev);
Fei Li72b319d2019-06-17 21:26:36 +08003589 int i;
Jason Wang1576d982016-06-30 14:45:36 +08003590
Craig Gallek86dfb4ac2016-07-06 18:44:20 -04003591 if (dev->rtnl_link_ops != &tun_link_ops)
3592 return NOTIFY_DONE;
3593
Jason Wang1576d982016-06-30 14:45:36 +08003594 switch (event) {
3595 case NETDEV_CHANGE_TX_QUEUE_LEN:
3596 if (tun_queue_resize(tun))
3597 return NOTIFY_BAD;
3598 break;
Fei Li72b319d2019-06-17 21:26:36 +08003599 case NETDEV_UP:
3600 for (i = 0; i < tun->numqueues; i++) {
3601 struct tun_file *tfile;
3602
3603 tfile = rtnl_dereference(tun->tfiles[i]);
3604 tfile->socket.sk->sk_write_space(tfile->socket.sk);
3605 }
3606 break;
Jason Wang1576d982016-06-30 14:45:36 +08003607 default:
3608 break;
3609 }
3610
3611 return NOTIFY_DONE;
3612}
3613
3614static struct notifier_block tun_notifier_block __read_mostly = {
3615 .notifier_call = tun_device_event,
3616};
Pavel Emelyanov79d17602008-04-16 00:40:46 -07003617
Linus Torvalds1da177e2005-04-16 15:20:36 -07003618static int __init tun_init(void)
3619{
3620 int ret = 0;
3621
Joe Perches6b8a66e2011-03-02 07:18:10 +00003622 pr_info("%s, %s\n", DRV_DESCRIPTION, DRV_VERSION);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003623
Eric W. Biedermanf019a7a2009-01-21 16:02:16 -08003624 ret = rtnl_link_register(&tun_link_ops);
Pavel Emelyanov79d17602008-04-16 00:40:46 -07003625 if (ret) {
Joe Perches6b8a66e2011-03-02 07:18:10 +00003626 pr_err("Can't register link_ops\n");
Eric W. Biedermanf019a7a2009-01-21 16:02:16 -08003627 goto err_linkops;
Pavel Emelyanov79d17602008-04-16 00:40:46 -07003628 }
3629
Linus Torvalds1da177e2005-04-16 15:20:36 -07003630 ret = misc_register(&tun_miscdev);
Pavel Emelyanov79d17602008-04-16 00:40:46 -07003631 if (ret) {
Joe Perches6b8a66e2011-03-02 07:18:10 +00003632 pr_err("Can't register misc device %d\n", TUN_MINOR);
Pavel Emelyanov79d17602008-04-16 00:40:46 -07003633 goto err_misc;
3634 }
Jason Wang1576d982016-06-30 14:45:36 +08003635
Tonghao Zhang5edfbd32017-07-20 02:41:34 -07003636 ret = register_netdevice_notifier(&tun_notifier_block);
3637 if (ret) {
3638 pr_err("Can't register netdevice notifier\n");
3639 goto err_notifier;
3640 }
3641
Eric W. Biedermanf019a7a2009-01-21 16:02:16 -08003642 return 0;
Tonghao Zhang5edfbd32017-07-20 02:41:34 -07003643
3644err_notifier:
3645 misc_deregister(&tun_miscdev);
Pavel Emelyanov79d17602008-04-16 00:40:46 -07003646err_misc:
Eric W. Biedermanf019a7a2009-01-21 16:02:16 -08003647 rtnl_link_unregister(&tun_link_ops);
3648err_linkops:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003649 return ret;
3650}
3651
3652static void tun_cleanup(void)
3653{
Jeff Garzik6aa20a22006-09-13 13:24:59 -04003654 misc_deregister(&tun_miscdev);
Eric W. Biedermanf019a7a2009-01-21 16:02:16 -08003655 rtnl_link_unregister(&tun_link_ops);
Jason Wang1576d982016-06-30 14:45:36 +08003656 unregister_netdevice_notifier(&tun_notifier_block);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003657}
3658
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00003659/* Get an underlying socket object from tun file. Returns error unless file is
3660 * attached to a device. The returned object works like a packet socket, it
3661 * can be used for sock_sendmsg/sock_recvmsg. The caller is responsible for
3662 * holding a reference to the file for as long as the socket is in use. */
3663struct socket *tun_get_socket(struct file *file)
3664{
Jason Wang6e914fc2012-10-31 19:45:58 +00003665 struct tun_file *tfile;
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00003666 if (file->f_op != &tun_fops)
3667 return ERR_PTR(-EINVAL);
Jason Wang6e914fc2012-10-31 19:45:58 +00003668 tfile = file->private_data;
3669 if (!tfile)
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00003670 return ERR_PTR(-EBADFD);
Jason Wang54f968d2012-10-31 19:45:57 +00003671 return &tfile->socket;
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00003672}
3673EXPORT_SYMBOL_GPL(tun_get_socket);
3674
Jason Wang5990a302018-01-04 11:14:27 +08003675struct ptr_ring *tun_get_tx_ring(struct file *file)
Jason Wang83339c62017-05-17 12:14:41 +08003676{
3677 struct tun_file *tfile;
3678
3679 if (file->f_op != &tun_fops)
3680 return ERR_PTR(-EINVAL);
3681 tfile = file->private_data;
3682 if (!tfile)
3683 return ERR_PTR(-EBADFD);
Jason Wang5990a302018-01-04 11:14:27 +08003684 return &tfile->tx_ring;
Jason Wang83339c62017-05-17 12:14:41 +08003685}
Jason Wang5990a302018-01-04 11:14:27 +08003686EXPORT_SYMBOL_GPL(tun_get_tx_ring);
Jason Wang83339c62017-05-17 12:14:41 +08003687
Linus Torvalds1da177e2005-04-16 15:20:36 -07003688module_init(tun_init);
3689module_exit(tun_cleanup);
3690MODULE_DESCRIPTION(DRV_DESCRIPTION);
3691MODULE_AUTHOR(DRV_COPYRIGHT);
3692MODULE_LICENSE("GPL");
3693MODULE_ALIAS_MISCDEV(TUN_MINOR);
Kay Sievers578454f2010-05-20 18:07:20 +02003694MODULE_ALIAS("devname:net/tun");