blob: 3d443597bd0496fc99e181f1df29a7ca70191125 [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>
Masatake YAMATO93e14b62014-01-29 16:43:31 +090065#include <linux/seq_file.h>
Herbert Xue0b46d02014-11-07 21:22:23 +080066#include <linux/uio.h>
Jason Wang1576d982016-06-30 14:45:36 +080067#include <linux/skb_array.h>
Jason Wang761876c2017-08-11 19:41:18 +080068#include <linux/bpf.h>
69#include <linux/bpf_trace.h>
Petar Penkov90e33d42017-09-22 13:49:15 -070070#include <linux/mutex.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070071
Linus Torvalds7c0f6ba2016-12-24 11:46:01 -080072#include <linux/uaccess.h>
Kirill Tkhaif2780d62018-02-14 16:40:14 +030073#include <linux/proc_fs.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070074
Chas Williams4e24f2d2018-06-02 17:49:53 -040075static void tun_default_link_ksettings(struct net_device *dev,
76 struct ethtool_link_ksettings *cmd);
77
Rusty Russell14daa022008-04-12 18:48:58 -070078/* Uncomment to enable debugging */
79/* #define TUN_DEBUG 1 */
80
Linus Torvalds1da177e2005-04-16 15:20:36 -070081#ifdef TUN_DEBUG
82static int debug;
Rusty Russell14daa022008-04-12 18:48:58 -070083
Joe Perches6b8a66e2011-03-02 07:18:10 +000084#define tun_debug(level, tun, fmt, args...) \
85do { \
86 if (tun->debug) \
87 netdev_printk(level, tun->dev, fmt, ##args); \
88} while (0)
89#define DBG1(level, fmt, args...) \
90do { \
91 if (debug == 2) \
92 printk(level fmt, ##args); \
93} while (0)
Rusty Russell14daa022008-04-12 18:48:58 -070094#else
Joe Perches6b8a66e2011-03-02 07:18:10 +000095#define tun_debug(level, tun, fmt, args...) \
96do { \
97 if (0) \
98 netdev_printk(level, tun->dev, fmt, ##args); \
99} while (0)
100#define DBG1(level, fmt, args...) \
101do { \
102 if (0) \
103 printk(level fmt, ##args); \
104} while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105#endif
106
Jason Wang7df13212017-09-04 11:36:08 +0800107#define TUN_RX_PAD (NET_IP_ALIGN + NET_SKB_PAD)
Jason Wang66ccbc92017-08-11 19:41:16 +0800108
Michael S. Tsirkin031f5e032014-11-19 14:44:40 +0200109/* TUN device flags */
110
111/* IFF_ATTACH_QUEUE is never stored in device flags,
112 * overload it to mean fasync when stored there.
113 */
114#define TUN_FASYNC IFF_ATTACH_QUEUE
Michael S. Tsirkin1cf8e412014-12-16 15:05:06 +0200115/* High bits in flags field are unused. */
116#define TUN_VNET_LE 0x80000000
Greg Kurz8b8e6582015-04-24 14:50:36 +0200117#define TUN_VNET_BE 0x40000000
Michael S. Tsirkin031f5e032014-11-19 14:44:40 +0200118
119#define TUN_FEATURES (IFF_NO_PI | IFF_ONE_QUEUE | IFF_VNET_HDR | \
Petar Penkov90e33d42017-09-22 13:49:15 -0700120 IFF_MULTI_QUEUE | IFF_NAPI | IFF_NAPI_FRAGS)
121
Michael S. Tsirkin06908992012-07-20 09:23:23 +0000122#define GOODCOPY_LEN 128
123
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -0700124#define FLT_EXACT_COUNT 8
125struct tap_filter {
126 unsigned int count; /* Number of addrs. Zero means disabled */
127 u32 mask[2]; /* Mask of the hashed addrs */
128 unsigned char addr[FLT_EXACT_COUNT][ETH_ALEN];
129};
130
Pankaj Guptabaf71c52015-01-12 11:41:29 +0530131/* MAX_TAP_QUEUES 256 is chosen to allow rx/tx queues to be equal
132 * to max number of VCPUs in guest. */
133#define MAX_TAP_QUEUES 256
Jason Wangb8732fb2013-01-23 03:59:13 +0000134#define MAX_TAP_FLOWS 4096
Jason Wangc8d68e62012-10-31 19:46:00 +0000135
Jason Wang96442e422012-10-31 19:46:02 +0000136#define TUN_FLOW_EXPIRE (3 * HZ)
137
Paolo Abeni608b9972016-04-13 10:52:20 +0200138struct tun_pcpu_stats {
139 u64 rx_packets;
140 u64 rx_bytes;
141 u64 tx_packets;
142 u64 tx_bytes;
143 struct u64_stats_sync syncp;
144 u32 rx_dropped;
145 u32 tx_dropped;
146 u32 rx_frame_errors;
147};
148
Jason Wang54f968d2012-10-31 19:45:57 +0000149/* A tun_file connects an open character device to a tuntap netdevice. It
stephen hemminger92d4ea62013-12-05 20:42:58 -0800150 * also contains all socket related structures (except sock_fprog and tap_filter)
Jason Wang54f968d2012-10-31 19:45:57 +0000151 * to serve as one transmit queue for tuntap device. The sock_fprog and
152 * tap_filter were kept in tun_struct since they were used for filtering for the
Rami Rosen36fe8c092012-11-25 22:07:40 +0000153 * netdevice not for a specific queue (at least I didn't see the requirement for
Jason Wang54f968d2012-10-31 19:45:57 +0000154 * this).
Jason Wang6e914fc2012-10-31 19:45:58 +0000155 *
156 * RCU usage:
Rami Rosen36fe8c092012-11-25 22:07:40 +0000157 * The tun_file and tun_struct are loosely coupled, the pointer from one to the
Jason Wang6e914fc2012-10-31 19:45:58 +0000158 * other can only be read while rcu_read_lock or rtnl_lock is held.
Jason Wang54f968d2012-10-31 19:45:57 +0000159 */
Eric W. Biederman631ab462009-01-20 11:00:40 +0000160struct tun_file {
Jason Wang54f968d2012-10-31 19:45:57 +0000161 struct sock sk;
162 struct socket socket;
Jason Wang6e914fc2012-10-31 19:45:58 +0000163 struct tun_struct __rcu *tun;
Jason Wang54f968d2012-10-31 19:45:57 +0000164 struct fasync_struct *fasync;
165 /* only used for fasnyc */
166 unsigned int flags;
Pavel Emelyanovfb7589a2013-08-21 14:31:38 +0400167 union {
168 u16 queue_index;
169 unsigned int ifindex;
170 };
Petar Penkov94317092017-09-22 13:49:14 -0700171 struct napi_struct napi;
Eric Dumazetaec72f32017-10-18 12:12:09 -0700172 bool napi_enabled;
Eric Dumazetaf3fb242018-09-28 14:51:49 -0700173 bool napi_frags_enabled;
Petar Penkov90e33d42017-09-22 13:49:15 -0700174 struct mutex napi_mutex; /* Protects access to the above napi */
Jason Wang4008e972012-12-13 23:53:30 +0000175 struct list_head next;
176 struct tun_struct *detached;
Jason Wang5990a302018-01-04 11:14:27 +0800177 struct ptr_ring tx_ring;
Jesper Dangaard Brouer8bf5c4e2018-01-03 11:25:59 +0100178 struct xdp_rxq_info xdp_rxq;
Eric W. Biederman631ab462009-01-20 11:00:40 +0000179};
180
Jason Wangf9e06c42018-11-15 17:43:10 +0800181struct tun_page {
182 struct page *page;
183 int count;
184};
185
Jason Wang96442e422012-10-31 19:46:02 +0000186struct tun_flow_entry {
187 struct hlist_node hash_link;
188 struct rcu_head rcu;
189 struct tun_struct *tun;
190
191 u32 rxhash;
Tom Herbert9bc88932013-12-22 18:54:32 +0800192 u32 rps_rxhash;
Jason Wang96442e422012-10-31 19:46:02 +0000193 int queue_index;
Li RongQing83b1bc12018-12-06 16:08:17 +0800194 unsigned long updated ____cacheline_aligned_in_smp;
Jason Wang96442e422012-10-31 19:46:02 +0000195};
196
197#define TUN_NUM_FLOW_ENTRIES 1024
Li RongQingf13b5462018-08-03 15:50:02 +0800198#define TUN_MASK_FLOW_ENTRIES (TUN_NUM_FLOW_ENTRIES - 1)
Jason Wang96442e422012-10-31 19:46:02 +0000199
Jason Wangcd5681d2018-01-16 16:31:01 +0800200struct tun_prog {
Jason Wang96f84062017-12-04 17:31:23 +0800201 struct rcu_head rcu;
202 struct bpf_prog *prog;
203};
204
Jason Wang54f968d2012-10-31 19:45:57 +0000205/* Since the socket were moved to tun_file, to preserve the behavior of persist
Rami Rosen36fe8c092012-11-25 22:07:40 +0000206 * device, socket filter, sndbuf and vnet header size were restore when the
Jason Wang54f968d2012-10-31 19:45:57 +0000207 * file were attached to a persist device.
208 */
Rusty Russell14daa022008-04-12 18:48:58 -0700209struct tun_struct {
Jason Wangc8d68e62012-10-31 19:46:00 +0000210 struct tun_file __rcu *tfiles[MAX_TAP_QUEUES];
211 unsigned int numqueues;
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -0700212 unsigned int flags;
Eric W. Biederman0625c882012-02-07 16:48:55 -0800213 kuid_t owner;
214 kgid_t group;
Rusty Russell14daa022008-04-12 18:48:58 -0700215
Rusty Russell14daa022008-04-12 18:48:58 -0700216 struct net_device *dev;
Michał Mirosławc8f44af2011-11-15 15:29:55 +0000217 netdev_features_t set_features;
Michał Mirosław88255372011-04-19 06:13:10 +0000218#define TUN_USER_FEATURES (NETIF_F_HW_CSUM|NETIF_F_TSO_ECN|NETIF_F_TSO| \
David S. Millerd591a1f2017-07-03 06:35:32 -0700219 NETIF_F_TSO6)
Michael S. Tsirkind9d52b52010-03-17 17:45:01 +0200220
Paolo Abenieaea34b2016-02-26 10:45:40 +0100221 int align;
Michael S. Tsirkind9d52b52010-03-17 17:45:01 +0200222 int vnet_hdr_sz;
Jason Wang54f968d2012-10-31 19:45:57 +0000223 int sndbuf;
224 struct tap_filter txflt;
225 struct sock_fprog fprog;
226 /* protected by rtnl lock */
227 bool filter_attached;
Rusty Russell14daa022008-04-12 18:48:58 -0700228#ifdef TUN_DEBUG
229 int debug;
230#endif
Jason Wang96442e422012-10-31 19:46:02 +0000231 spinlock_t lock;
Jason Wang96442e422012-10-31 19:46:02 +0000232 struct hlist_head flows[TUN_NUM_FLOW_ENTRIES];
233 struct timer_list flow_gc_timer;
234 unsigned long ageing_time;
Jason Wang4008e972012-12-13 23:53:30 +0000235 unsigned int numdisabled;
236 struct list_head disabled;
Paul Moore5dbbaf22013-01-14 07:12:19 +0000237 void *security;
Jason Wangb8732fb2013-01-23 03:59:13 +0000238 u32 flow_count;
Jason Wang5503fce2017-01-18 15:02:03 +0800239 u32 rx_batched;
Paolo Abeni608b9972016-04-13 10:52:20 +0200240 struct tun_pcpu_stats __percpu *pcpu_stats;
Jason Wang761876c2017-08-11 19:41:18 +0800241 struct bpf_prog __rcu *xdp_prog;
Jason Wangcd5681d2018-01-16 16:31:01 +0800242 struct tun_prog __rcu *steering_prog;
Jason Wangaff3d702018-01-16 16:31:02 +0800243 struct tun_prog __rcu *filter_prog;
Chas Williams4e24f2d2018-06-02 17:49:53 -0400244 struct ethtool_link_ksettings link_ksettings;
Rusty Russell14daa022008-04-12 18:48:58 -0700245};
246
Jason Wangaff3d702018-01-16 16:31:02 +0800247struct veth {
248 __be16 h_vlan_proto;
249 __be16 h_vlan_TCI;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250};
251
Jesper Dangaard Brouer1ffcbc82018-04-17 16:45:47 +0200252bool tun_is_xdp_frame(void *ptr)
Jason Wangfc72d1d2018-01-04 11:14:28 +0800253{
254 return (unsigned long)ptr & TUN_XDP_FLAG;
255}
Jesper Dangaard Brouer1ffcbc82018-04-17 16:45:47 +0200256EXPORT_SYMBOL(tun_is_xdp_frame);
Jason Wangfc72d1d2018-01-04 11:14:28 +0800257
258void *tun_xdp_to_ptr(void *ptr)
259{
260 return (void *)((unsigned long)ptr | TUN_XDP_FLAG);
261}
262EXPORT_SYMBOL(tun_xdp_to_ptr);
263
264void *tun_ptr_to_xdp(void *ptr)
265{
266 return (void *)((unsigned long)ptr & ~TUN_XDP_FLAG);
267}
268EXPORT_SYMBOL(tun_ptr_to_xdp);
269
Petar Penkov94317092017-09-22 13:49:14 -0700270static int tun_napi_receive(struct napi_struct *napi, int budget)
271{
272 struct tun_file *tfile = container_of(napi, struct tun_file, napi);
273 struct sk_buff_head *queue = &tfile->sk.sk_write_queue;
274 struct sk_buff_head process_queue;
275 struct sk_buff *skb;
276 int received = 0;
277
278 __skb_queue_head_init(&process_queue);
279
280 spin_lock(&queue->lock);
281 skb_queue_splice_tail_init(queue, &process_queue);
282 spin_unlock(&queue->lock);
283
284 while (received < budget && (skb = __skb_dequeue(&process_queue))) {
285 napi_gro_receive(napi, skb);
286 ++received;
287 }
288
289 if (!skb_queue_empty(&process_queue)) {
290 spin_lock(&queue->lock);
291 skb_queue_splice(&process_queue, queue);
292 spin_unlock(&queue->lock);
293 }
294
295 return received;
296}
297
298static int tun_napi_poll(struct napi_struct *napi, int budget)
299{
300 unsigned int received;
301
302 received = tun_napi_receive(napi, budget);
303
304 if (received < budget)
305 napi_complete_done(napi, received);
306
307 return received;
308}
309
310static void tun_napi_init(struct tun_struct *tun, struct tun_file *tfile,
Eric Dumazetaf3fb242018-09-28 14:51:49 -0700311 bool napi_en, bool napi_frags)
Petar Penkov94317092017-09-22 13:49:14 -0700312{
Eric Dumazetaec72f32017-10-18 12:12:09 -0700313 tfile->napi_enabled = napi_en;
Eric Dumazetaf3fb242018-09-28 14:51:49 -0700314 tfile->napi_frags_enabled = napi_en && napi_frags;
Petar Penkov94317092017-09-22 13:49:14 -0700315 if (napi_en) {
316 netif_napi_add(tun->dev, &tfile->napi, tun_napi_poll,
317 NAPI_POLL_WEIGHT);
318 napi_enable(&tfile->napi);
319 }
320}
321
Eric Dumazet06e55ad2018-09-28 14:51:47 -0700322static void tun_napi_disable(struct tun_file *tfile)
Petar Penkov94317092017-09-22 13:49:14 -0700323{
Eric Dumazetaec72f32017-10-18 12:12:09 -0700324 if (tfile->napi_enabled)
Petar Penkov94317092017-09-22 13:49:14 -0700325 napi_disable(&tfile->napi);
326}
327
Eric Dumazet06e55ad2018-09-28 14:51:47 -0700328static void tun_napi_del(struct tun_file *tfile)
Petar Penkov94317092017-09-22 13:49:14 -0700329{
Eric Dumazetaec72f32017-10-18 12:12:09 -0700330 if (tfile->napi_enabled)
Petar Penkov94317092017-09-22 13:49:14 -0700331 netif_napi_del(&tfile->napi);
332}
333
Eric Dumazetaf3fb242018-09-28 14:51:49 -0700334static bool tun_napi_frags_enabled(const struct tun_file *tfile)
Petar Penkov90e33d42017-09-22 13:49:15 -0700335{
Eric Dumazetaf3fb242018-09-28 14:51:49 -0700336 return tfile->napi_frags_enabled;
Petar Penkov90e33d42017-09-22 13:49:15 -0700337}
338
Greg Kurz8b8e6582015-04-24 14:50:36 +0200339#ifdef CONFIG_TUN_VNET_CROSS_LE
340static inline bool tun_legacy_is_little_endian(struct tun_struct *tun)
341{
342 return tun->flags & TUN_VNET_BE ? false :
343 virtio_legacy_is_little_endian();
344}
345
346static long tun_get_vnet_be(struct tun_struct *tun, int __user *argp)
347{
348 int be = !!(tun->flags & TUN_VNET_BE);
349
350 if (put_user(be, argp))
351 return -EFAULT;
352
353 return 0;
354}
355
356static long tun_set_vnet_be(struct tun_struct *tun, int __user *argp)
357{
358 int be;
359
360 if (get_user(be, argp))
361 return -EFAULT;
362
363 if (be)
364 tun->flags |= TUN_VNET_BE;
365 else
366 tun->flags &= ~TUN_VNET_BE;
367
368 return 0;
369}
370#else
371static inline bool tun_legacy_is_little_endian(struct tun_struct *tun)
372{
373 return virtio_legacy_is_little_endian();
374}
375
376static long tun_get_vnet_be(struct tun_struct *tun, int __user *argp)
377{
378 return -EINVAL;
379}
380
381static long tun_set_vnet_be(struct tun_struct *tun, int __user *argp)
382{
383 return -EINVAL;
384}
385#endif /* CONFIG_TUN_VNET_CROSS_LE */
386
Greg Kurz25bd55bb2015-04-24 14:24:38 +0200387static inline bool tun_is_little_endian(struct tun_struct *tun)
388{
Greg Kurz7d824102015-04-24 14:26:24 +0200389 return tun->flags & TUN_VNET_LE ||
Greg Kurz8b8e6582015-04-24 14:50:36 +0200390 tun_legacy_is_little_endian(tun);
Greg Kurz25bd55bb2015-04-24 14:24:38 +0200391}
392
Michael S. Tsirkin56f0dcc2014-10-23 22:59:31 +0300393static inline u16 tun16_to_cpu(struct tun_struct *tun, __virtio16 val)
394{
Greg Kurz25bd55bb2015-04-24 14:24:38 +0200395 return __virtio16_to_cpu(tun_is_little_endian(tun), val);
Michael S. Tsirkin56f0dcc2014-10-23 22:59:31 +0300396}
397
398static inline __virtio16 cpu_to_tun16(struct tun_struct *tun, u16 val)
399{
Greg Kurz25bd55bb2015-04-24 14:24:38 +0200400 return __cpu_to_virtio16(tun_is_little_endian(tun), val);
Michael S. Tsirkin56f0dcc2014-10-23 22:59:31 +0300401}
402
Jason Wang96442e422012-10-31 19:46:02 +0000403static inline u32 tun_hashfn(u32 rxhash)
404{
Li RongQingf13b5462018-08-03 15:50:02 +0800405 return rxhash & TUN_MASK_FLOW_ENTRIES;
Jason Wang96442e422012-10-31 19:46:02 +0000406}
407
408static struct tun_flow_entry *tun_flow_find(struct hlist_head *head, u32 rxhash)
409{
410 struct tun_flow_entry *e;
Jason Wang96442e422012-10-31 19:46:02 +0000411
Sasha Levinb67bfe02013-02-27 17:06:00 -0800412 hlist_for_each_entry_rcu(e, head, hash_link) {
Jason Wang96442e422012-10-31 19:46:02 +0000413 if (e->rxhash == rxhash)
414 return e;
415 }
416 return NULL;
417}
418
419static struct tun_flow_entry *tun_flow_create(struct tun_struct *tun,
420 struct hlist_head *head,
421 u32 rxhash, u16 queue_index)
422{
Eric Dumazet9fdc6be2012-12-21 07:17:21 +0000423 struct tun_flow_entry *e = kmalloc(sizeof(*e), GFP_ATOMIC);
424
Jason Wang96442e422012-10-31 19:46:02 +0000425 if (e) {
426 tun_debug(KERN_INFO, tun, "create flow: hash %u index %u\n",
427 rxhash, queue_index);
428 e->updated = jiffies;
429 e->rxhash = rxhash;
Tom Herbert9bc88932013-12-22 18:54:32 +0800430 e->rps_rxhash = 0;
Jason Wang96442e422012-10-31 19:46:02 +0000431 e->queue_index = queue_index;
432 e->tun = tun;
433 hlist_add_head_rcu(&e->hash_link, head);
Jason Wangb8732fb2013-01-23 03:59:13 +0000434 ++tun->flow_count;
Jason Wang96442e422012-10-31 19:46:02 +0000435 }
436 return e;
437}
438
Jason Wang96442e422012-10-31 19:46:02 +0000439static void tun_flow_delete(struct tun_struct *tun, struct tun_flow_entry *e)
440{
441 tun_debug(KERN_INFO, tun, "delete flow: hash %u index %u\n",
442 e->rxhash, e->queue_index);
443 hlist_del_rcu(&e->hash_link);
Eric Dumazet9fdc6be2012-12-21 07:17:21 +0000444 kfree_rcu(e, rcu);
Jason Wangb8732fb2013-01-23 03:59:13 +0000445 --tun->flow_count;
Jason Wang96442e422012-10-31 19:46:02 +0000446}
447
448static void tun_flow_flush(struct tun_struct *tun)
449{
450 int i;
451
452 spin_lock_bh(&tun->lock);
453 for (i = 0; i < TUN_NUM_FLOW_ENTRIES; i++) {
454 struct tun_flow_entry *e;
Sasha Levinb67bfe02013-02-27 17:06:00 -0800455 struct hlist_node *n;
Jason Wang96442e422012-10-31 19:46:02 +0000456
Sasha Levinb67bfe02013-02-27 17:06:00 -0800457 hlist_for_each_entry_safe(e, n, &tun->flows[i], hash_link)
Jason Wang96442e422012-10-31 19:46:02 +0000458 tun_flow_delete(tun, e);
459 }
460 spin_unlock_bh(&tun->lock);
461}
462
463static void tun_flow_delete_by_queue(struct tun_struct *tun, u16 queue_index)
464{
465 int i;
466
467 spin_lock_bh(&tun->lock);
468 for (i = 0; i < TUN_NUM_FLOW_ENTRIES; i++) {
469 struct tun_flow_entry *e;
Sasha Levinb67bfe02013-02-27 17:06:00 -0800470 struct hlist_node *n;
Jason Wang96442e422012-10-31 19:46:02 +0000471
Sasha Levinb67bfe02013-02-27 17:06:00 -0800472 hlist_for_each_entry_safe(e, n, &tun->flows[i], hash_link) {
Jason Wang96442e422012-10-31 19:46:02 +0000473 if (e->queue_index == queue_index)
474 tun_flow_delete(tun, e);
475 }
476 }
477 spin_unlock_bh(&tun->lock);
478}
479
Kees Cooke99e88a2017-10-16 14:43:17 -0700480static void tun_flow_cleanup(struct timer_list *t)
Jason Wang96442e422012-10-31 19:46:02 +0000481{
Kees Cooke99e88a2017-10-16 14:43:17 -0700482 struct tun_struct *tun = from_timer(tun, t, flow_gc_timer);
Jason Wang96442e422012-10-31 19:46:02 +0000483 unsigned long delay = tun->ageing_time;
484 unsigned long next_timer = jiffies + delay;
485 unsigned long count = 0;
486 int i;
487
488 tun_debug(KERN_INFO, tun, "tun_flow_cleanup\n");
489
Eric Dumazet7dbfb4e2017-10-20 11:29:55 -0700490 spin_lock(&tun->lock);
Jason Wang96442e422012-10-31 19:46:02 +0000491 for (i = 0; i < TUN_NUM_FLOW_ENTRIES; i++) {
492 struct tun_flow_entry *e;
Sasha Levinb67bfe02013-02-27 17:06:00 -0800493 struct hlist_node *n;
Jason Wang96442e422012-10-31 19:46:02 +0000494
Sasha Levinb67bfe02013-02-27 17:06:00 -0800495 hlist_for_each_entry_safe(e, n, &tun->flows[i], hash_link) {
Jason Wang96442e422012-10-31 19:46:02 +0000496 unsigned long this_timer;
Eric Dumazet81d98fa2017-10-20 11:29:56 -0700497
Jason Wang96442e422012-10-31 19:46:02 +0000498 this_timer = e->updated + delay;
Eric Dumazet81d98fa2017-10-20 11:29:56 -0700499 if (time_before_eq(this_timer, jiffies)) {
Jason Wang96442e422012-10-31 19:46:02 +0000500 tun_flow_delete(tun, e);
Eric Dumazet81d98fa2017-10-20 11:29:56 -0700501 continue;
502 }
503 count++;
504 if (time_before(this_timer, next_timer))
Jason Wang96442e422012-10-31 19:46:02 +0000505 next_timer = this_timer;
506 }
507 }
508
509 if (count)
510 mod_timer(&tun->flow_gc_timer, round_jiffies_up(next_timer));
Eric Dumazet7dbfb4e2017-10-20 11:29:55 -0700511 spin_unlock(&tun->lock);
Jason Wang96442e422012-10-31 19:46:02 +0000512}
513
Eric Dumazet49974422012-12-12 19:22:57 +0000514static void tun_flow_update(struct tun_struct *tun, u32 rxhash,
Jason Wang9e857222013-01-28 01:05:19 +0000515 struct tun_file *tfile)
Jason Wang96442e422012-10-31 19:46:02 +0000516{
517 struct hlist_head *head;
518 struct tun_flow_entry *e;
519 unsigned long delay = tun->ageing_time;
Jason Wang9e857222013-01-28 01:05:19 +0000520 u16 queue_index = tfile->queue_index;
Jason Wang96442e422012-10-31 19:46:02 +0000521
Li RongQing5c327f62018-12-06 16:28:11 +0800522 head = &tun->flows[tun_hashfn(rxhash)];
Jason Wang96442e422012-10-31 19:46:02 +0000523
524 rcu_read_lock();
525
Jason Wang96442e422012-10-31 19:46:02 +0000526 e = tun_flow_find(head, rxhash);
527 if (likely(e)) {
528 /* TODO: keep queueing to old queue until it's empty? */
Li RongQing83b1bc12018-12-06 16:08:17 +0800529 if (e->queue_index != queue_index)
530 e->queue_index = queue_index;
531 if (e->updated != jiffies)
532 e->updated = jiffies;
Tom Herbert9bc88932013-12-22 18:54:32 +0800533 sock_rps_record_flow_hash(e->rps_rxhash);
Jason Wang96442e422012-10-31 19:46:02 +0000534 } else {
535 spin_lock_bh(&tun->lock);
Jason Wangb8732fb2013-01-23 03:59:13 +0000536 if (!tun_flow_find(head, rxhash) &&
537 tun->flow_count < MAX_TAP_FLOWS)
Jason Wang96442e422012-10-31 19:46:02 +0000538 tun_flow_create(tun, head, rxhash, queue_index);
539
540 if (!timer_pending(&tun->flow_gc_timer))
541 mod_timer(&tun->flow_gc_timer,
542 round_jiffies_up(jiffies + delay));
543 spin_unlock_bh(&tun->lock);
544 }
545
Jason Wang96442e422012-10-31 19:46:02 +0000546 rcu_read_unlock();
547}
548
Tom Herbert9bc88932013-12-22 18:54:32 +0800549/**
550 * Save the hash received in the stack receive path and update the
551 * flow_hash table accordingly.
552 */
553static inline void tun_flow_save_rps_rxhash(struct tun_flow_entry *e, u32 hash)
554{
Eric Dumazet567e4b72015-02-06 12:59:01 -0800555 if (unlikely(e->rps_rxhash != hash))
Tom Herbert9bc88932013-12-22 18:54:32 +0800556 e->rps_rxhash = hash;
Tom Herbert9bc88932013-12-22 18:54:32 +0800557}
558
Wang Li4b035272018-10-09 10:32:04 +0800559/* We try to identify a flow through its rxhash. The reason that
stephen hemminger92d4ea62013-12-05 20:42:58 -0800560 * we do not check rxq no. is because some cards(e.g 82599), chooses
Jason Wangc8d68e62012-10-31 19:46:00 +0000561 * the rxq based on the txq where the last packet of the flow comes. As
562 * the userspace application move between processors, we may get a
Wang Li4b035272018-10-09 10:32:04 +0800563 * different rxq no. here.
Jason Wangc8d68e62012-10-31 19:46:00 +0000564 */
Jason Wang96f84062017-12-04 17:31:23 +0800565static u16 tun_automq_select_queue(struct tun_struct *tun, struct sk_buff *skb)
Jason Wangc8d68e62012-10-31 19:46:00 +0000566{
Jason Wang96442e422012-10-31 19:46:02 +0000567 struct tun_flow_entry *e;
Jason Wangc8d68e62012-10-31 19:46:00 +0000568 u32 txq = 0;
569 u32 numqueues = 0;
570
Mark Rutland6aa7de02017-10-23 14:07:29 -0700571 numqueues = READ_ONCE(tun->numqueues);
Jason Wangc8d68e62012-10-31 19:46:00 +0000572
Jason Wangfeec0842017-06-06 14:09:49 +0800573 txq = __skb_get_hash_symmetric(skb);
Wang Li4b035272018-10-09 10:32:04 +0800574 e = tun_flow_find(&tun->flows[tun_hashfn(txq)], txq);
575 if (e) {
576 tun_flow_save_rps_rxhash(e, txq);
577 txq = e->queue_index;
578 } else {
579 /* use multiply and shift instead of expensive divide */
580 txq = ((u64)txq * numqueues) >> 32;
Jason Wangc8d68e62012-10-31 19:46:00 +0000581 }
582
Jason Wangc8d68e62012-10-31 19:46:00 +0000583 return txq;
584}
585
Jason Wang96f84062017-12-04 17:31:23 +0800586static u16 tun_ebpf_select_queue(struct tun_struct *tun, struct sk_buff *skb)
587{
Jason Wangcd5681d2018-01-16 16:31:01 +0800588 struct tun_prog *prog;
Jason Wanga35d3102019-05-08 23:20:17 -0400589 u32 numqueues;
Jason Wang96f84062017-12-04 17:31:23 +0800590 u16 ret = 0;
591
Jason Wanga35d3102019-05-08 23:20:17 -0400592 numqueues = READ_ONCE(tun->numqueues);
593 if (!numqueues)
594 return 0;
595
Jason Wang96f84062017-12-04 17:31:23 +0800596 prog = rcu_dereference(tun->steering_prog);
597 if (prog)
598 ret = bpf_prog_run_clear_cb(prog->prog, skb);
599
Jason Wanga35d3102019-05-08 23:20:17 -0400600 return ret % numqueues;
Jason Wang96f84062017-12-04 17:31:23 +0800601}
602
603static u16 tun_select_queue(struct net_device *dev, struct sk_buff *skb,
Paolo Abenia350ecc2019-03-20 11:02:06 +0100604 struct net_device *sb_dev)
Jason Wang96f84062017-12-04 17:31:23 +0800605{
606 struct tun_struct *tun = netdev_priv(dev);
607 u16 ret;
608
609 rcu_read_lock();
610 if (rcu_dereference(tun->steering_prog))
611 ret = tun_ebpf_select_queue(tun, skb);
612 else
613 ret = tun_automq_select_queue(tun, skb);
614 rcu_read_unlock();
615
616 return ret;
617}
618
Jason Wangcde8b152012-10-31 19:46:01 +0000619static inline bool tun_not_capable(struct tun_struct *tun)
620{
621 const struct cred *cred = current_cred();
Eric W. Biedermanc260b772012-11-18 21:34:11 +0000622 struct net *net = dev_net(tun->dev);
Jason Wangcde8b152012-10-31 19:46:01 +0000623
624 return ((uid_valid(tun->owner) && !uid_eq(cred->euid, tun->owner)) ||
625 (gid_valid(tun->group) && !in_egroup_p(tun->group))) &&
Eric W. Biedermanc260b772012-11-18 21:34:11 +0000626 !ns_capable(net->user_ns, CAP_NET_ADMIN);
Jason Wangcde8b152012-10-31 19:46:01 +0000627}
628
Jason Wangc8d68e62012-10-31 19:46:00 +0000629static void tun_set_real_num_queues(struct tun_struct *tun)
630{
631 netif_set_real_num_tx_queues(tun->dev, tun->numqueues);
632 netif_set_real_num_rx_queues(tun->dev, tun->numqueues);
633}
634
Jason Wang4008e972012-12-13 23:53:30 +0000635static void tun_disable_queue(struct tun_struct *tun, struct tun_file *tfile)
636{
637 tfile->detached = tun;
638 list_add_tail(&tfile->next, &tun->disabled);
639 ++tun->numdisabled;
640}
641
Jason Wangd32649d2012-12-18 11:00:27 +0800642static struct tun_struct *tun_enable_queue(struct tun_file *tfile)
Jason Wang4008e972012-12-13 23:53:30 +0000643{
644 struct tun_struct *tun = tfile->detached;
645
646 tfile->detached = NULL;
647 list_del_init(&tfile->next);
648 --tun->numdisabled;
649 return tun;
650}
651
Jason Wang3a403072018-03-09 14:50:34 +0800652void tun_ptr_free(void *ptr)
Jason Wangfc72d1d2018-01-04 11:14:28 +0800653{
654 if (!ptr)
655 return;
Jesper Dangaard Brouer1ffcbc82018-04-17 16:45:47 +0200656 if (tun_is_xdp_frame(ptr)) {
657 struct xdp_frame *xdpf = tun_ptr_to_xdp(ptr);
Jason Wangfc72d1d2018-01-04 11:14:28 +0800658
Jesper Dangaard Brouer03993092018-04-17 16:46:32 +0200659 xdp_return_frame(xdpf);
Jason Wangfc72d1d2018-01-04 11:14:28 +0800660 } else {
661 __skb_array_destroy_skb(ptr);
662 }
663}
Jason Wang3a403072018-03-09 14:50:34 +0800664EXPORT_SYMBOL_GPL(tun_ptr_free);
Jason Wangfc72d1d2018-01-04 11:14:28 +0800665
Jason Wang4bfb0512013-09-05 17:53:59 +0800666static void tun_queue_purge(struct tun_file *tfile)
667{
Jason Wangfc72d1d2018-01-04 11:14:28 +0800668 void *ptr;
Jason Wang1576d982016-06-30 14:45:36 +0800669
Jason Wangfc72d1d2018-01-04 11:14:28 +0800670 while ((ptr = ptr_ring_consume(&tfile->tx_ring)) != NULL)
671 tun_ptr_free(ptr);
Jason Wang1576d982016-06-30 14:45:36 +0800672
Jason Wang5503fce2017-01-18 15:02:03 +0800673 skb_queue_purge(&tfile->sk.sk_write_queue);
Jason Wang4bfb0512013-09-05 17:53:59 +0800674 skb_queue_purge(&tfile->sk.sk_error_queue);
675}
676
Jason Wangc8d68e62012-10-31 19:46:00 +0000677static void __tun_detach(struct tun_file *tfile, bool clean)
678{
679 struct tun_file *ntfile;
680 struct tun_struct *tun;
Jason Wangc8d68e62012-10-31 19:46:00 +0000681
Jason Wangb8deabd2013-01-11 16:59:32 +0000682 tun = rtnl_dereference(tfile->tun);
683
Petar Penkov94317092017-09-22 13:49:14 -0700684 if (tun && clean) {
Eric Dumazet06e55ad2018-09-28 14:51:47 -0700685 tun_napi_disable(tfile);
686 tun_napi_del(tfile);
Petar Penkov94317092017-09-22 13:49:14 -0700687 }
688
Jason Wang9e857222013-01-28 01:05:19 +0000689 if (tun && !tfile->detached) {
Jason Wangc8d68e62012-10-31 19:46:00 +0000690 u16 index = tfile->queue_index;
691 BUG_ON(index >= tun->numqueues);
Jason Wangc8d68e62012-10-31 19:46:00 +0000692
693 rcu_assign_pointer(tun->tfiles[index],
694 tun->tfiles[tun->numqueues - 1]);
Jason Wangb8deabd2013-01-11 16:59:32 +0000695 ntfile = rtnl_dereference(tun->tfiles[index]);
Jason Wangc8d68e62012-10-31 19:46:00 +0000696 ntfile->queue_index = index;
Jason Wang9871a9e2019-05-08 23:20:18 -0400697 rcu_assign_pointer(tun->tfiles[tun->numqueues - 1],
698 NULL);
Jason Wangc8d68e62012-10-31 19:46:00 +0000699
700 --tun->numqueues;
Jason Wang9e857222013-01-28 01:05:19 +0000701 if (clean) {
Monam Agarwalc9566742014-03-24 00:02:32 +0530702 RCU_INIT_POINTER(tfile->tun, NULL);
Jason Wang4008e972012-12-13 23:53:30 +0000703 sock_put(&tfile->sk);
Jason Wang9e857222013-01-28 01:05:19 +0000704 } else
Jason Wang4008e972012-12-13 23:53:30 +0000705 tun_disable_queue(tun, tfile);
Jason Wangc8d68e62012-10-31 19:46:00 +0000706
707 synchronize_net();
Jason Wang96442e422012-10-31 19:46:02 +0000708 tun_flow_delete_by_queue(tun, tun->numqueues + 1);
Jason Wangc8d68e62012-10-31 19:46:00 +0000709 /* Drop read queue */
Jason Wang4bfb0512013-09-05 17:53:59 +0800710 tun_queue_purge(tfile);
Jason Wangc8d68e62012-10-31 19:46:00 +0000711 tun_set_real_num_queues(tun);
Jason Wangdd38bd82013-01-11 16:59:34 +0000712 } else if (tfile->detached && clean) {
Jason Wang4008e972012-12-13 23:53:30 +0000713 tun = tun_enable_queue(tfile);
Jason Wangdd38bd82013-01-11 16:59:34 +0000714 sock_put(&tfile->sk);
715 }
Jason Wangc8d68e62012-10-31 19:46:00 +0000716
717 if (clean) {
Michael S. Tsirkinaf668b32013-01-28 00:38:02 +0000718 if (tun && tun->numqueues == 0 && tun->numdisabled == 0) {
719 netif_carrier_off(tun->dev);
720
Michael S. Tsirkin40630b82014-11-19 15:17:31 +0200721 if (!(tun->flags & IFF_PERSIST) &&
Michael S. Tsirkinaf668b32013-01-28 00:38:02 +0000722 tun->dev->reg_state == NETREG_REGISTERED)
Jason Wang4008e972012-12-13 23:53:30 +0000723 unregister_netdevice(tun->dev);
Michael S. Tsirkinaf668b32013-01-28 00:38:02 +0000724 }
Jason Wangb196d882018-05-11 10:49:25 +0800725 if (tun)
726 xdp_rxq_info_unreg(&tfile->xdp_rxq);
Jason Wang7063efd2018-05-16 20:39:33 +0800727 ptr_ring_cleanup(&tfile->tx_ring, tun_ptr_free);
Eric W. Biederman140e807da2015-05-08 21:07:08 -0500728 sock_put(&tfile->sk);
Jason Wangc8d68e62012-10-31 19:46:00 +0000729 }
730}
731
732static void tun_detach(struct tun_file *tfile, bool clean)
733{
Sabrina Dubroca83c1f362018-04-10 16:28:56 +0200734 struct tun_struct *tun;
735 struct net_device *dev;
736
Jason Wangc8d68e62012-10-31 19:46:00 +0000737 rtnl_lock();
Sabrina Dubroca83c1f362018-04-10 16:28:56 +0200738 tun = rtnl_dereference(tfile->tun);
739 dev = tun ? tun->dev : NULL;
Jason Wangc8d68e62012-10-31 19:46:00 +0000740 __tun_detach(tfile, clean);
Sabrina Dubroca83c1f362018-04-10 16:28:56 +0200741 if (dev)
742 netdev_state_change(dev);
Jason Wangc8d68e62012-10-31 19:46:00 +0000743 rtnl_unlock();
744}
745
746static void tun_detach_all(struct net_device *dev)
747{
748 struct tun_struct *tun = netdev_priv(dev);
Jason Wang4008e972012-12-13 23:53:30 +0000749 struct tun_file *tfile, *tmp;
Jason Wangc8d68e62012-10-31 19:46:00 +0000750 int i, n = tun->numqueues;
751
752 for (i = 0; i < n; i++) {
Jason Wangb8deabd2013-01-11 16:59:32 +0000753 tfile = rtnl_dereference(tun->tfiles[i]);
Jason Wangc8d68e62012-10-31 19:46:00 +0000754 BUG_ON(!tfile);
Eric Dumazet06e55ad2018-09-28 14:51:47 -0700755 tun_napi_disable(tfile);
Jason Wangaddf8fc2016-05-19 13:36:51 +0800756 tfile->socket.sk->sk_shutdown = RCV_SHUTDOWN;
Xi Wang9e641bd2014-05-16 15:11:48 -0700757 tfile->socket.sk->sk_data_ready(tfile->socket.sk);
Monam Agarwalc9566742014-03-24 00:02:32 +0530758 RCU_INIT_POINTER(tfile->tun, NULL);
Jason Wangc8d68e62012-10-31 19:46:00 +0000759 --tun->numqueues;
760 }
Jason Wang9e857222013-01-28 01:05:19 +0000761 list_for_each_entry(tfile, &tun->disabled, next) {
Jason Wangaddf8fc2016-05-19 13:36:51 +0800762 tfile->socket.sk->sk_shutdown = RCV_SHUTDOWN;
Xi Wang9e641bd2014-05-16 15:11:48 -0700763 tfile->socket.sk->sk_data_ready(tfile->socket.sk);
Monam Agarwalc9566742014-03-24 00:02:32 +0530764 RCU_INIT_POINTER(tfile->tun, NULL);
Jason Wang9e857222013-01-28 01:05:19 +0000765 }
Jason Wangc8d68e62012-10-31 19:46:00 +0000766 BUG_ON(tun->numqueues != 0);
767
768 synchronize_net();
769 for (i = 0; i < n; i++) {
Jason Wangb8deabd2013-01-11 16:59:32 +0000770 tfile = rtnl_dereference(tun->tfiles[i]);
Eric Dumazet06e55ad2018-09-28 14:51:47 -0700771 tun_napi_del(tfile);
Jason Wangc8d68e62012-10-31 19:46:00 +0000772 /* Drop read queue */
Jason Wang4bfb0512013-09-05 17:53:59 +0800773 tun_queue_purge(tfile);
Jason Wangb196d882018-05-11 10:49:25 +0800774 xdp_rxq_info_unreg(&tfile->xdp_rxq);
Jason Wangc8d68e62012-10-31 19:46:00 +0000775 sock_put(&tfile->sk);
776 }
Jason Wang4008e972012-12-13 23:53:30 +0000777 list_for_each_entry_safe(tfile, tmp, &tun->disabled, next) {
778 tun_enable_queue(tfile);
Jason Wang4bfb0512013-09-05 17:53:59 +0800779 tun_queue_purge(tfile);
Jason Wangb196d882018-05-11 10:49:25 +0800780 xdp_rxq_info_unreg(&tfile->xdp_rxq);
Jason Wang4008e972012-12-13 23:53:30 +0000781 sock_put(&tfile->sk);
782 }
783 BUG_ON(tun->numdisabled != 0);
Jason Wangdd38bd82013-01-11 16:59:34 +0000784
Michael S. Tsirkin40630b82014-11-19 15:17:31 +0200785 if (tun->flags & IFF_PERSIST)
Jason Wangdd38bd82013-01-11 16:59:34 +0000786 module_put(THIS_MODULE);
Jason Wangc8d68e62012-10-31 19:46:00 +0000787}
788
Petar Penkov94317092017-09-22 13:49:14 -0700789static int tun_attach(struct tun_struct *tun, struct file *file,
Eric Dumazetaf3fb242018-09-28 14:51:49 -0700790 bool skip_filter, bool napi, bool napi_frags)
Eric W. Biedermana7385ba2009-01-20 10:57:48 +0000791{
Eric W. Biederman631ab462009-01-20 11:00:40 +0000792 struct tun_file *tfile = file->private_data;
Jason Wang1576d982016-06-30 14:45:36 +0800793 struct net_device *dev = tun->dev;
Eric W. Biederman38231b72009-01-20 11:02:28 +0000794 int err;
Eric W. Biedermana7385ba2009-01-20 10:57:48 +0000795
Paul Moore5dbbaf22013-01-14 07:12:19 +0000796 err = security_tun_dev_attach(tfile->socket.sk, tun->security);
797 if (err < 0)
798 goto out;
799
Eric W. Biederman38231b72009-01-20 11:02:28 +0000800 err = -EINVAL;
Jason Wang9e857222013-01-28 01:05:19 +0000801 if (rtnl_dereference(tfile->tun) && !tfile->detached)
Eric W. Biederman38231b72009-01-20 11:02:28 +0000802 goto out;
803
804 err = -EBUSY;
Michael S. Tsirkin40630b82014-11-19 15:17:31 +0200805 if (!(tun->flags & IFF_MULTI_QUEUE) && tun->numqueues == 1)
Jason Wangc8d68e62012-10-31 19:46:00 +0000806 goto out;
807
808 err = -E2BIG;
Jason Wang4008e972012-12-13 23:53:30 +0000809 if (!tfile->detached &&
810 tun->numqueues + tun->numdisabled == MAX_TAP_QUEUES)
Eric W. Biederman38231b72009-01-20 11:02:28 +0000811 goto out;
812
813 err = 0;
Jason Wang54f968d2012-10-31 19:45:57 +0000814
stephen hemminger92d4ea62013-12-05 20:42:58 -0800815 /* Re-attach the filter to persist device */
Pavel Emelyanov849c9b62013-08-21 14:32:21 +0400816 if (!skip_filter && (tun->filter_attached == true)) {
Hannes Frederic Sowa8ced4252016-04-05 17:10:16 +0200817 lock_sock(tfile->socket.sk);
818 err = sk_attach_filter(&tun->fprog, tfile->socket.sk);
819 release_sock(tfile->socket.sk);
Jason Wang54f968d2012-10-31 19:45:57 +0000820 if (!err)
821 goto out;
822 }
Jason Wang1576d982016-06-30 14:45:36 +0800823
824 if (!tfile->detached &&
Jason Wangb196d882018-05-11 10:49:25 +0800825 ptr_ring_resize(&tfile->tx_ring, dev->tx_queue_len,
826 GFP_KERNEL, tun_ptr_free)) {
Jason Wang1576d982016-06-30 14:45:36 +0800827 err = -ENOMEM;
828 goto out;
829 }
830
Jason Wangc8d68e62012-10-31 19:46:00 +0000831 tfile->queue_index = tun->numqueues;
Jason Wangaddf8fc2016-05-19 13:36:51 +0800832 tfile->socket.sk->sk_shutdown &= ~RCV_SHUTDOWN;
Jesper Dangaard Brouer8bf5c4e2018-01-03 11:25:59 +0100833
834 if (tfile->detached) {
835 /* Re-attach detached tfile, updating XDP queue_index */
836 WARN_ON(!xdp_rxq_info_is_reg(&tfile->xdp_rxq));
837
838 if (tfile->xdp_rxq.queue_index != tfile->queue_index)
839 tfile->xdp_rxq.queue_index = tfile->queue_index;
840 } else {
841 /* Setup XDP RX-queue info, for new tfile getting attached */
842 err = xdp_rxq_info_reg(&tfile->xdp_rxq,
843 tun->dev, tfile->queue_index);
844 if (err < 0)
845 goto out;
Jesper Dangaard Brouer8d5d8852018-04-17 16:46:12 +0200846 err = xdp_rxq_info_reg_mem_model(&tfile->xdp_rxq,
847 MEM_TYPE_PAGE_SHARED, NULL);
848 if (err < 0) {
849 xdp_rxq_info_unreg(&tfile->xdp_rxq);
850 goto out;
851 }
Jesper Dangaard Brouer8bf5c4e2018-01-03 11:25:59 +0100852 err = 0;
853 }
854
Petar Penkov94317092017-09-22 13:49:14 -0700855 if (tfile->detached) {
Jason Wang4008e972012-12-13 23:53:30 +0000856 tun_enable_queue(tfile);
Petar Penkov94317092017-09-22 13:49:14 -0700857 } else {
Jason Wang4008e972012-12-13 23:53:30 +0000858 sock_hold(&tfile->sk);
Eric Dumazetaf3fb242018-09-28 14:51:49 -0700859 tun_napi_init(tun, tfile, napi, napi_frags);
Petar Penkov94317092017-09-22 13:49:14 -0700860 }
Jason Wang4008e972012-12-13 23:53:30 +0000861
Jason Wange4a2a302018-09-12 11:16:59 +0800862 if (rtnl_dereference(tun->xdp_prog))
863 sock_set_flag(&tfile->sk, SOCK_XDP);
864
Jason Wangc8d68e62012-10-31 19:46:00 +0000865 /* device is allowed to go away first, so no need to hold extra
866 * refcnt.
867 */
Eric W. Biedermana7385ba2009-01-20 10:57:48 +0000868
Stanislav Fomichev0b7959b2019-01-07 13:38:38 -0800869 /* Publish tfile->tun and tun->tfiles only after we've fully
870 * initialized tfile; otherwise we risk using half-initialized
871 * object.
872 */
873 rcu_assign_pointer(tfile->tun, tun);
874 rcu_assign_pointer(tun->tfiles[tun->numqueues], tfile);
875 tun->numqueues++;
George Amanakis3a03cb82019-01-29 22:50:13 -0500876 tun_set_real_num_queues(tun);
Eric W. Biederman38231b72009-01-20 11:02:28 +0000877out:
Eric W. Biederman38231b72009-01-20 11:02:28 +0000878 return err;
Eric W. Biedermana7385ba2009-01-20 10:57:48 +0000879}
880
yuan linyu9484dc72017-09-23 22:36:52 +0800881static struct tun_struct *tun_get(struct tun_file *tfile)
Eric W. Biederman631ab462009-01-20 11:00:40 +0000882{
Jason Wang6e914fc2012-10-31 19:45:58 +0000883 struct tun_struct *tun;
Eric W. Biedermanc70f1822009-01-20 11:07:17 +0000884
Jason Wang6e914fc2012-10-31 19:45:58 +0000885 rcu_read_lock();
886 tun = rcu_dereference(tfile->tun);
887 if (tun)
888 dev_hold(tun->dev);
889 rcu_read_unlock();
Eric W. Biedermanc70f1822009-01-20 11:07:17 +0000890
891 return tun;
Eric W. Biederman631ab462009-01-20 11:00:40 +0000892}
893
Eric W. Biederman631ab462009-01-20 11:00:40 +0000894static void tun_put(struct tun_struct *tun)
895{
Jason Wang6e914fc2012-10-31 19:45:58 +0000896 dev_put(tun->dev);
Eric W. Biederman631ab462009-01-20 11:00:40 +0000897}
898
Joe Perches6b8a66e2011-03-02 07:18:10 +0000899/* TAP filtering */
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -0700900static void addr_hash_set(u32 *mask, const u8 *addr)
901{
902 int n = ether_crc(ETH_ALEN, addr) >> 26;
903 mask[n >> 5] |= (1 << (n & 31));
904}
905
906static unsigned int addr_hash_test(const u32 *mask, const u8 *addr)
907{
908 int n = ether_crc(ETH_ALEN, addr) >> 26;
909 return mask[n >> 5] & (1 << (n & 31));
910}
911
912static int update_filter(struct tap_filter *filter, void __user *arg)
913{
914 struct { u8 u[ETH_ALEN]; } *addr;
915 struct tun_filter uf;
916 int err, alen, n, nexact;
917
918 if (copy_from_user(&uf, arg, sizeof(uf)))
919 return -EFAULT;
920
921 if (!uf.count) {
922 /* Disabled */
923 filter->count = 0;
924 return 0;
925 }
926
927 alen = ETH_ALEN * uf.count;
Markus Elfring28e81902016-08-20 08:54:15 +0200928 addr = memdup_user(arg + sizeof(uf), alen);
929 if (IS_ERR(addr))
930 return PTR_ERR(addr);
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -0700931
932 /* The filter is updated without holding any locks. Which is
933 * perfectly safe. We disable it first and in the worst
934 * case we'll accept a few undesired packets. */
935 filter->count = 0;
936 wmb();
937
938 /* Use first set of addresses as an exact filter */
939 for (n = 0; n < uf.count && n < FLT_EXACT_COUNT; n++)
940 memcpy(filter->addr[n], addr[n].u, ETH_ALEN);
941
942 nexact = n;
943
Alex Williamsoncfbf84f2009-02-08 17:49:17 -0800944 /* Remaining multicast addresses are hashed,
945 * unicast will leave the filter disabled. */
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -0700946 memset(filter->mask, 0, sizeof(filter->mask));
Alex Williamsoncfbf84f2009-02-08 17:49:17 -0800947 for (; n < uf.count; n++) {
948 if (!is_multicast_ether_addr(addr[n].u)) {
949 err = 0; /* no filter */
Markus Elfring3b8d2a62016-08-20 09:00:34 +0200950 goto free_addr;
Alex Williamsoncfbf84f2009-02-08 17:49:17 -0800951 }
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -0700952 addr_hash_set(filter->mask, addr[n].u);
Alex Williamsoncfbf84f2009-02-08 17:49:17 -0800953 }
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -0700954
955 /* For ALLMULTI just set the mask to all ones.
956 * This overrides the mask populated above. */
957 if ((uf.flags & TUN_FLT_ALLMULTI))
958 memset(filter->mask, ~0, sizeof(filter->mask));
959
960 /* Now enable the filter */
961 wmb();
962 filter->count = nexact;
963
964 /* Return the number of exact filters */
965 err = nexact;
Markus Elfring3b8d2a62016-08-20 09:00:34 +0200966free_addr:
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -0700967 kfree(addr);
968 return err;
969}
970
971/* Returns: 0 - drop, !=0 - accept */
972static int run_filter(struct tap_filter *filter, const struct sk_buff *skb)
973{
974 /* Cannot use eth_hdr(skb) here because skb_mac_hdr() is incorrect
975 * at this point. */
976 struct ethhdr *eh = (struct ethhdr *) skb->data;
977 int i;
978
979 /* Exact match */
980 for (i = 0; i < filter->count; i++)
Joe Perches2e42e472012-05-09 17:17:46 +0000981 if (ether_addr_equal(eh->h_dest, filter->addr[i]))
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -0700982 return 1;
983
984 /* Inexact match (multicast only) */
985 if (is_multicast_ether_addr(eh->h_dest))
986 return addr_hash_test(filter->mask, eh->h_dest);
987
988 return 0;
989}
990
991/*
992 * Checks whether the packet is accepted or not.
993 * Returns: 0 - drop, !=0 - accept
994 */
995static int check_filter(struct tap_filter *filter, const struct sk_buff *skb)
996{
997 if (!filter->count)
998 return 1;
999
1000 return run_filter(filter, skb);
1001}
1002
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003/* Network device part of the driver */
1004
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005static const struct ethtool_ops tun_ethtool_ops;
1006
Eric W. Biedermanc70f1822009-01-20 11:07:17 +00001007/* Net device detach from fd. */
1008static void tun_net_uninit(struct net_device *dev)
1009{
Jason Wangc8d68e62012-10-31 19:46:00 +00001010 tun_detach_all(dev);
Eric W. Biedermanc70f1822009-01-20 11:07:17 +00001011}
1012
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013/* Net device open. */
1014static int tun_net_open(struct net_device *dev)
1015{
Jason Wangc8d68e62012-10-31 19:46:00 +00001016 netif_tx_start_all_queues(dev);
Hannes Frederic Sowab20e2d52017-03-13 00:00:26 +01001017
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018 return 0;
1019}
1020
1021/* Net device close. */
1022static int tun_net_close(struct net_device *dev)
1023{
Jason Wangc8d68e62012-10-31 19:46:00 +00001024 netif_tx_stop_all_queues(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025 return 0;
1026}
1027
1028/* Net device start xmit */
Jason Wang96f84062017-12-04 17:31:23 +08001029static void tun_automq_xmit(struct tun_struct *tun, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030{
Jason Wang3df97ba2016-04-25 23:13:42 -04001031#ifdef CONFIG_RPS
Eric Dumazetdc053602019-03-22 08:56:38 -07001032 if (tun->numqueues == 1 && static_branch_unlikely(&rps_needed)) {
Tom Herbert9bc88932013-12-22 18:54:32 +08001033 /* Select queue was not called for the skbuff, so we extract the
1034 * RPS hash and save it into the flow_table here.
1035 */
Wang Li4b035272018-10-09 10:32:04 +08001036 struct tun_flow_entry *e;
Tom Herbert9bc88932013-12-22 18:54:32 +08001037 __u32 rxhash;
1038
Jason Wangfeec0842017-06-06 14:09:49 +08001039 rxhash = __skb_get_hash_symmetric(skb);
Wang Li4b035272018-10-09 10:32:04 +08001040 e = tun_flow_find(&tun->flows[tun_hashfn(rxhash)], rxhash);
1041 if (e)
1042 tun_flow_save_rps_rxhash(e, rxhash);
Tom Herbert9bc88932013-12-22 18:54:32 +08001043 }
Jason Wang3df97ba2016-04-25 23:13:42 -04001044#endif
Jason Wang96f84062017-12-04 17:31:23 +08001045}
1046
Jason Wangaff3d702018-01-16 16:31:02 +08001047static unsigned int run_ebpf_filter(struct tun_struct *tun,
1048 struct sk_buff *skb,
1049 int len)
1050{
1051 struct tun_prog *prog = rcu_dereference(tun->filter_prog);
1052
1053 if (prog)
1054 len = bpf_prog_run_clear_cb(prog->prog, skb);
1055
1056 return len;
1057}
1058
Jason Wang96f84062017-12-04 17:31:23 +08001059/* Net device start xmit */
1060static netdev_tx_t tun_net_xmit(struct sk_buff *skb, struct net_device *dev)
1061{
1062 struct tun_struct *tun = netdev_priv(dev);
1063 int txq = skb->queue_mapping;
1064 struct tun_file *tfile;
Jason Wangaff3d702018-01-16 16:31:02 +08001065 int len = skb->len;
Jason Wang96f84062017-12-04 17:31:23 +08001066
1067 rcu_read_lock();
1068 tfile = rcu_dereference(tun->tfiles[txq]);
Jason Wang96f84062017-12-04 17:31:23 +08001069
1070 /* Drop packet if interface is not attached */
Jason Wang9871a9e2019-05-08 23:20:18 -04001071 if (!tfile)
Jason Wang96f84062017-12-04 17:31:23 +08001072 goto drop;
1073
1074 if (!rcu_dereference(tun->steering_prog))
1075 tun_automq_xmit(tun, skb);
Tom Herbert9bc88932013-12-22 18:54:32 +08001076
Jason Wang6e914fc2012-10-31 19:45:58 +00001077 tun_debug(KERN_INFO, tun, "tun_net_xmit %d\n", skb->len);
1078
Jason Wangc8d68e62012-10-31 19:46:00 +00001079 BUG_ON(!tfile);
1080
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -07001081 /* Drop if the filter does not like it.
1082 * This is a noop if the filter is disabled.
1083 * Filter can be enabled only for the TAP devices. */
1084 if (!check_filter(&tun->txflt, skb))
1085 goto drop;
1086
Jason Wang54f968d2012-10-31 19:45:57 +00001087 if (tfile->socket.sk->sk_filter &&
1088 sk_filter(tfile->socket.sk, skb))
Michael S. Tsirkin99405162010-02-14 01:01:10 +00001089 goto drop;
1090
Jason Wangaff3d702018-01-16 16:31:02 +08001091 len = run_ebpf_filter(tun, skb, len);
Bjørn Mork81c89502018-04-17 22:46:38 +02001092 if (len == 0 || pskb_trim(skb, len))
Jason Wangaff3d702018-01-16 16:31:02 +08001093 goto drop;
1094
Willem de Bruijn1f8b9772017-08-03 16:29:41 -04001095 if (unlikely(skb_orphan_frags_rx(skb, GFP_ATOMIC)))
Jason Wang7bf66302013-09-05 17:54:00 +08001096 goto drop;
1097
Soheil Hassas Yeganeh7b996242016-08-23 18:22:33 -04001098 skb_tx_timestamp(skb);
Richard Cochraneda29772013-07-19 19:40:10 +02001099
Michael S. Tsirkin0110d6f2010-04-13 04:59:44 +00001100 /* Orphan the skb - required as we might hang on to it
Jason Wang7bf66302013-09-05 17:54:00 +08001101 * for indefinite time.
1102 */
Michael S. Tsirkin0110d6f2010-04-13 04:59:44 +00001103 skb_orphan(skb);
1104
Eric Dumazetf8af75f2013-03-06 11:02:37 +00001105 nf_reset(skb);
1106
Jason Wang5990a302018-01-04 11:14:27 +08001107 if (ptr_ring_produce(&tfile->tx_ring, skb))
Jason Wang1576d982016-06-30 14:45:36 +08001108 goto drop;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109
1110 /* Notify and wake up reader process */
Jason Wang54f968d2012-10-31 19:45:57 +00001111 if (tfile->flags & TUN_FASYNC)
1112 kill_fasync(&tfile->fasync, SIGIO, POLL_IN);
Xi Wang9e641bd2014-05-16 15:11:48 -07001113 tfile->socket.sk->sk_data_ready(tfile->socket.sk);
Jason Wang6e914fc2012-10-31 19:45:58 +00001114
1115 rcu_read_unlock();
Patrick McHardy6ed10652009-06-23 06:03:08 +00001116 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117
1118drop:
Paolo Abeni608b9972016-04-13 10:52:20 +02001119 this_cpu_inc(tun->pcpu_stats->tx_dropped);
Michael S. Tsirkin149d36f2012-11-01 09:16:32 +00001120 skb_tx_error(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121 kfree_skb(skb);
Jason Wang6e914fc2012-10-31 19:45:58 +00001122 rcu_read_unlock();
Jason Wangbaeabab2014-11-18 13:20:41 +08001123 return NET_XMIT_DROP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124}
1125
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -07001126static void tun_net_mclist(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127{
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -07001128 /*
1129 * This callback is supposed to deal with mc filter in
1130 * _rx_ path and has nothing to do with the _tx_ path.
1131 * In rx path we always accept everything userspace gives us.
1132 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133}
1134
Michał Mirosławc8f44af2011-11-15 15:29:55 +00001135static netdev_features_t tun_net_fix_features(struct net_device *dev,
1136 netdev_features_t features)
Michał Mirosław88255372011-04-19 06:13:10 +00001137{
1138 struct tun_struct *tun = netdev_priv(dev);
1139
1140 return (features & tun->set_features) | (features & ~TUN_USER_FEATURES);
1141}
Paolo Abenieaea34b2016-02-26 10:45:40 +01001142
1143static void tun_set_headroom(struct net_device *dev, int new_hr)
1144{
1145 struct tun_struct *tun = netdev_priv(dev);
1146
1147 if (new_hr < NET_SKB_PAD)
1148 new_hr = NET_SKB_PAD;
1149
1150 tun->align = new_hr;
1151}
1152
stephen hemmingerbc1f4472017-01-06 19:12:52 -08001153static void
Paolo Abeni608b9972016-04-13 10:52:20 +02001154tun_net_get_stats64(struct net_device *dev, struct rtnl_link_stats64 *stats)
1155{
1156 u32 rx_dropped = 0, tx_dropped = 0, rx_frame_errors = 0;
1157 struct tun_struct *tun = netdev_priv(dev);
1158 struct tun_pcpu_stats *p;
1159 int i;
1160
1161 for_each_possible_cpu(i) {
1162 u64 rxpackets, rxbytes, txpackets, txbytes;
1163 unsigned int start;
1164
1165 p = per_cpu_ptr(tun->pcpu_stats, i);
1166 do {
1167 start = u64_stats_fetch_begin(&p->syncp);
1168 rxpackets = p->rx_packets;
1169 rxbytes = p->rx_bytes;
1170 txpackets = p->tx_packets;
1171 txbytes = p->tx_bytes;
1172 } while (u64_stats_fetch_retry(&p->syncp, start));
1173
1174 stats->rx_packets += rxpackets;
1175 stats->rx_bytes += rxbytes;
1176 stats->tx_packets += txpackets;
1177 stats->tx_bytes += txbytes;
1178
1179 /* u32 counters */
1180 rx_dropped += p->rx_dropped;
1181 rx_frame_errors += p->rx_frame_errors;
1182 tx_dropped += p->tx_dropped;
1183 }
1184 stats->rx_dropped = rx_dropped;
1185 stats->rx_frame_errors = rx_frame_errors;
1186 stats->tx_dropped = tx_dropped;
Paolo Abeni608b9972016-04-13 10:52:20 +02001187}
1188
Jason Wang761876c2017-08-11 19:41:18 +08001189static int tun_xdp_set(struct net_device *dev, struct bpf_prog *prog,
1190 struct netlink_ext_ack *extack)
1191{
1192 struct tun_struct *tun = netdev_priv(dev);
Jason Wange4a2a302018-09-12 11:16:59 +08001193 struct tun_file *tfile;
Jason Wang761876c2017-08-11 19:41:18 +08001194 struct bpf_prog *old_prog;
Jason Wange4a2a302018-09-12 11:16:59 +08001195 int i;
Jason Wang761876c2017-08-11 19:41:18 +08001196
1197 old_prog = rtnl_dereference(tun->xdp_prog);
1198 rcu_assign_pointer(tun->xdp_prog, prog);
1199 if (old_prog)
1200 bpf_prog_put(old_prog);
1201
Jason Wange4a2a302018-09-12 11:16:59 +08001202 for (i = 0; i < tun->numqueues; i++) {
1203 tfile = rtnl_dereference(tun->tfiles[i]);
1204 if (prog)
1205 sock_set_flag(&tfile->sk, SOCK_XDP);
1206 else
1207 sock_reset_flag(&tfile->sk, SOCK_XDP);
1208 }
1209 list_for_each_entry(tfile, &tun->disabled, next) {
1210 if (prog)
1211 sock_set_flag(&tfile->sk, SOCK_XDP);
1212 else
1213 sock_reset_flag(&tfile->sk, SOCK_XDP);
1214 }
1215
Jason Wang761876c2017-08-11 19:41:18 +08001216 return 0;
1217}
1218
1219static u32 tun_xdp_query(struct net_device *dev)
1220{
1221 struct tun_struct *tun = netdev_priv(dev);
1222 const struct bpf_prog *xdp_prog;
1223
1224 xdp_prog = rtnl_dereference(tun->xdp_prog);
1225 if (xdp_prog)
1226 return xdp_prog->aux->id;
1227
1228 return 0;
1229}
1230
Jakub Kicinskif4e63522017-11-03 13:56:16 -07001231static int tun_xdp(struct net_device *dev, struct netdev_bpf *xdp)
Jason Wang761876c2017-08-11 19:41:18 +08001232{
1233 switch (xdp->command) {
1234 case XDP_SETUP_PROG:
1235 return tun_xdp_set(dev, xdp->prog, xdp->extack);
1236 case XDP_QUERY_PROG:
1237 xdp->prog_id = tun_xdp_query(dev);
Jason Wang761876c2017-08-11 19:41:18 +08001238 return 0;
1239 default:
1240 return -EINVAL;
1241 }
1242}
1243
Nicolas Dichtel26d31922018-11-28 19:12:56 +01001244static int tun_net_change_carrier(struct net_device *dev, bool new_carrier)
1245{
1246 if (new_carrier) {
1247 struct tun_struct *tun = netdev_priv(dev);
1248
1249 if (!tun->numqueues)
1250 return -EPERM;
1251
1252 netif_carrier_on(dev);
1253 } else {
1254 netif_carrier_off(dev);
1255 }
1256 return 0;
1257}
1258
Stephen Hemminger758e43b2008-11-19 22:10:37 -08001259static const struct net_device_ops tun_netdev_ops = {
Eric W. Biedermanc70f1822009-01-20 11:07:17 +00001260 .ndo_uninit = tun_net_uninit,
Stephen Hemminger758e43b2008-11-19 22:10:37 -08001261 .ndo_open = tun_net_open,
1262 .ndo_stop = tun_net_close,
Stephen Hemminger00829822008-11-20 20:14:53 -08001263 .ndo_start_xmit = tun_net_xmit,
Michał Mirosław88255372011-04-19 06:13:10 +00001264 .ndo_fix_features = tun_net_fix_features,
Jason Wangc8d68e62012-10-31 19:46:00 +00001265 .ndo_select_queue = tun_select_queue,
Paolo Abenieaea34b2016-02-26 10:45:40 +01001266 .ndo_set_rx_headroom = tun_set_headroom,
Paolo Abeni608b9972016-04-13 10:52:20 +02001267 .ndo_get_stats64 = tun_net_get_stats64,
Nicolas Dichtel26d31922018-11-28 19:12:56 +01001268 .ndo_change_carrier = tun_net_change_carrier,
Stephen Hemminger758e43b2008-11-19 22:10:37 -08001269};
1270
Jesper Dangaard Brouer0c9d9172018-05-31 11:00:03 +02001271static void __tun_xdp_flush_tfile(struct tun_file *tfile)
1272{
1273 /* Notify and wake up reader process */
1274 if (tfile->flags & TUN_FASYNC)
1275 kill_fasync(&tfile->fasync, SIGIO, POLL_IN);
1276 tfile->socket.sk->sk_data_ready(tfile->socket.sk);
1277}
1278
Jesper Dangaard Brouer42b33462018-05-31 10:59:47 +02001279static int tun_xdp_xmit(struct net_device *dev, int n,
1280 struct xdp_frame **frames, u32 flags)
Jason Wangfc72d1d2018-01-04 11:14:28 +08001281{
1282 struct tun_struct *tun = netdev_priv(dev);
Jason Wangfc72d1d2018-01-04 11:14:28 +08001283 struct tun_file *tfile;
1284 u32 numqueues;
Jesper Dangaard Brouer735fc402018-05-24 16:46:12 +02001285 int drops = 0;
1286 int cnt = n;
1287 int i;
Jason Wangfc72d1d2018-01-04 11:14:28 +08001288
Jesper Dangaard Brouer0c9d9172018-05-31 11:00:03 +02001289 if (unlikely(flags & ~XDP_XMIT_FLAGS_MASK))
Jesper Dangaard Brouer42b33462018-05-31 10:59:47 +02001290 return -EINVAL;
1291
Jason Wangfc72d1d2018-01-04 11:14:28 +08001292 rcu_read_lock();
1293
Jason Wang9871a9e2019-05-08 23:20:18 -04001294resample:
Jason Wangfc72d1d2018-01-04 11:14:28 +08001295 numqueues = READ_ONCE(tun->numqueues);
1296 if (!numqueues) {
Jesper Dangaard Brouer735fc402018-05-24 16:46:12 +02001297 rcu_read_unlock();
1298 return -ENXIO; /* Caller will free/return all frames */
Jason Wangfc72d1d2018-01-04 11:14:28 +08001299 }
1300
1301 tfile = rcu_dereference(tun->tfiles[smp_processor_id() %
1302 numqueues]);
Jason Wang9871a9e2019-05-08 23:20:18 -04001303 if (unlikely(!tfile))
1304 goto resample;
Jason Wangfc72d1d2018-01-04 11:14:28 +08001305
Jesper Dangaard Brouer735fc402018-05-24 16:46:12 +02001306 spin_lock(&tfile->tx_ring.producer_lock);
1307 for (i = 0; i < n; i++) {
1308 struct xdp_frame *xdp = frames[i];
1309 /* Encode the XDP flag into lowest bit for consumer to differ
1310 * XDP buffer from sk_buff.
1311 */
1312 void *frame = tun_xdp_to_ptr(xdp);
1313
1314 if (__ptr_ring_produce(&tfile->tx_ring, frame)) {
1315 this_cpu_inc(tun->pcpu_stats->tx_dropped);
1316 xdp_return_frame_rx_napi(xdp);
1317 drops++;
1318 }
1319 }
1320 spin_unlock(&tfile->tx_ring.producer_lock);
1321
Jesper Dangaard Brouer0c9d9172018-05-31 11:00:03 +02001322 if (flags & XDP_XMIT_FLUSH)
1323 __tun_xdp_flush_tfile(tfile);
1324
Jason Wangfc72d1d2018-01-04 11:14:28 +08001325 rcu_read_unlock();
Jesper Dangaard Brouer735fc402018-05-24 16:46:12 +02001326 return cnt - drops;
Jason Wangfc72d1d2018-01-04 11:14:28 +08001327}
1328
Jesper Dangaard Brouer44fa2db2018-04-17 16:46:37 +02001329static int tun_xdp_tx(struct net_device *dev, struct xdp_buff *xdp)
1330{
1331 struct xdp_frame *frame = convert_to_xdp_frame(xdp);
1332
1333 if (unlikely(!frame))
1334 return -EOVERFLOW;
1335
Jesper Dangaard Brouer42421a52018-06-05 13:55:45 +02001336 return tun_xdp_xmit(dev, 1, &frame, XDP_XMIT_FLUSH);
Jason Wangfc72d1d2018-01-04 11:14:28 +08001337}
1338
Stephen Hemminger758e43b2008-11-19 22:10:37 -08001339static const struct net_device_ops tap_netdev_ops = {
Eric W. Biedermanc70f1822009-01-20 11:07:17 +00001340 .ndo_uninit = tun_net_uninit,
Stephen Hemminger758e43b2008-11-19 22:10:37 -08001341 .ndo_open = tun_net_open,
1342 .ndo_stop = tun_net_close,
Stephen Hemminger00829822008-11-20 20:14:53 -08001343 .ndo_start_xmit = tun_net_xmit,
Michał Mirosław88255372011-04-19 06:13:10 +00001344 .ndo_fix_features = tun_net_fix_features,
Jiri Pirkoafc4b132011-08-16 06:29:01 +00001345 .ndo_set_rx_mode = tun_net_mclist,
Stephen Hemminger758e43b2008-11-19 22:10:37 -08001346 .ndo_set_mac_address = eth_mac_addr,
1347 .ndo_validate_addr = eth_validate_addr,
Jason Wangc8d68e62012-10-31 19:46:00 +00001348 .ndo_select_queue = tun_select_queue,
Toshiaki Makita5e527962015-07-31 15:03:27 +09001349 .ndo_features_check = passthru_features_check,
Paolo Abenieaea34b2016-02-26 10:45:40 +01001350 .ndo_set_rx_headroom = tun_set_headroom,
Paolo Abeni608b9972016-04-13 10:52:20 +02001351 .ndo_get_stats64 = tun_net_get_stats64,
Jakub Kicinskif4e63522017-11-03 13:56:16 -07001352 .ndo_bpf = tun_xdp,
Jason Wangfc72d1d2018-01-04 11:14:28 +08001353 .ndo_xdp_xmit = tun_xdp_xmit,
Nicolas Dichtel26d31922018-11-28 19:12:56 +01001354 .ndo_change_carrier = tun_net_change_carrier,
Stephen Hemminger758e43b2008-11-19 22:10:37 -08001355};
1356
Pavel Emelyanov944a1372013-06-11 17:01:08 +04001357static void tun_flow_init(struct tun_struct *tun)
Jason Wang96442e422012-10-31 19:46:02 +00001358{
1359 int i;
1360
Jason Wang96442e422012-10-31 19:46:02 +00001361 for (i = 0; i < TUN_NUM_FLOW_ENTRIES; i++)
1362 INIT_HLIST_HEAD(&tun->flows[i]);
1363
1364 tun->ageing_time = TUN_FLOW_EXPIRE;
Kees Cooke99e88a2017-10-16 14:43:17 -07001365 timer_setup(&tun->flow_gc_timer, tun_flow_cleanup, 0);
1366 mod_timer(&tun->flow_gc_timer,
1367 round_jiffies_up(jiffies + tun->ageing_time));
Jason Wang96442e422012-10-31 19:46:02 +00001368}
1369
1370static void tun_flow_uninit(struct tun_struct *tun)
1371{
1372 del_timer_sync(&tun->flow_gc_timer);
1373 tun_flow_flush(tun);
Jason Wang96442e422012-10-31 19:46:02 +00001374}
1375
Jarod Wilson91572082016-10-20 13:55:20 -04001376#define MIN_MTU 68
1377#define MAX_MTU 65535
1378
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379/* Initialize net device. */
1380static void tun_net_init(struct net_device *dev)
1381{
1382 struct tun_struct *tun = netdev_priv(dev);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001383
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384 switch (tun->flags & TUN_TYPE_MASK) {
Michael S. Tsirkin40630b82014-11-19 15:17:31 +02001385 case IFF_TUN:
Stephen Hemminger758e43b2008-11-19 22:10:37 -08001386 dev->netdev_ops = &tun_netdev_ops;
1387
Linus Torvalds1da177e2005-04-16 15:20:36 -07001388 /* Point-to-Point TUN Device */
1389 dev->hard_header_len = 0;
1390 dev->addr_len = 0;
1391 dev->mtu = 1500;
1392
1393 /* Zero header length */
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001394 dev->type = ARPHRD_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001395 dev->flags = IFF_POINTOPOINT | IFF_NOARP | IFF_MULTICAST;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001396 break;
1397
Michael S. Tsirkin40630b82014-11-19 15:17:31 +02001398 case IFF_TAP:
Kusanagi Kouichi7a0a9602008-12-29 18:23:28 -08001399 dev->netdev_ops = &tap_netdev_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400 /* Ethernet TAP Device */
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -07001401 ether_setup(dev);
Neil Horman550fd082011-07-26 06:05:38 +00001402 dev->priv_flags &= ~IFF_TX_SKB_SHARING;
stephen hemmingera6768472012-12-10 15:16:00 +00001403 dev->priv_flags |= IFF_LIVE_ADDR_CHANGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404
Danny Kukawkaf2cedb62012-02-15 06:45:39 +00001405 eth_hw_addr_random(dev);
Brian Braunstein36226a82007-04-26 01:00:55 -07001406
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407 break;
1408 }
Jarod Wilson91572082016-10-20 13:55:20 -04001409
1410 dev->min_mtu = MIN_MTU;
1411 dev->max_mtu = MAX_MTU - dev->hard_header_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001412}
1413
Jason Wang2f3ab622018-05-22 14:21:04 +08001414static bool tun_sock_writeable(struct tun_struct *tun, struct tun_file *tfile)
1415{
1416 struct sock *sk = tfile->socket.sk;
1417
1418 return (tun->dev->flags & IFF_UP) && sock_writeable(sk);
1419}
1420
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421/* Character device part */
1422
1423/* Poll */
Al Viroafc9a422017-07-03 06:39:46 -04001424static __poll_t tun_chr_poll(struct file *file, poll_table *wait)
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001425{
Eric W. Biedermanb2430de2009-01-20 11:03:21 +00001426 struct tun_file *tfile = file->private_data;
yuan linyu9484dc72017-09-23 22:36:52 +08001427 struct tun_struct *tun = tun_get(tfile);
Mariusz Kozlowski3c8a9c62009-07-05 19:48:35 +00001428 struct sock *sk;
Al Viroafc9a422017-07-03 06:39:46 -04001429 __poll_t mask = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001430
1431 if (!tun)
Linus Torvaldsa9a08842018-02-11 14:34:03 -08001432 return EPOLLERR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001433
Jason Wang54f968d2012-10-31 19:45:57 +00001434 sk = tfile->socket.sk;
Mariusz Kozlowski3c8a9c62009-07-05 19:48:35 +00001435
Joe Perches6b8a66e2011-03-02 07:18:10 +00001436 tun_debug(KERN_INFO, tun, "tun_chr_poll\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001437
Xi Wang9e641bd2014-05-16 15:11:48 -07001438 poll_wait(file, sk_sleep(sk), wait);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001439
Jason Wang5990a302018-01-04 11:14:27 +08001440 if (!ptr_ring_empty(&tfile->tx_ring))
Linus Torvaldsa9a08842018-02-11 14:34:03 -08001441 mask |= EPOLLIN | EPOLLRDNORM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001442
Jason Wang2f3ab622018-05-22 14:21:04 +08001443 /* Make sure SOCKWQ_ASYNC_NOSPACE is set if not writable to
1444 * guarantee EPOLLOUT to be raised by either here or
1445 * tun_sock_write_space(). Then process could get notification
1446 * after it writes to a down device and meets -EIO.
1447 */
1448 if (tun_sock_writeable(tun, tfile) ||
1449 (!test_and_set_bit(SOCKWQ_ASYNC_NOSPACE, &sk->sk_socket->flags) &&
1450 tun_sock_writeable(tun, tfile)))
Linus Torvaldsa9a08842018-02-11 14:34:03 -08001451 mask |= EPOLLOUT | EPOLLWRNORM;
Herbert Xu33dccbb2009-02-05 21:25:32 -08001452
Eric W. Biedermanc70f1822009-01-20 11:07:17 +00001453 if (tun->dev->reg_state != NETREG_REGISTERED)
Linus Torvaldsa9a08842018-02-11 14:34:03 -08001454 mask = EPOLLERR;
Eric W. Biedermanc70f1822009-01-20 11:07:17 +00001455
Eric W. Biederman631ab462009-01-20 11:00:40 +00001456 tun_put(tun);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001457 return mask;
1458}
1459
Petar Penkov90e33d42017-09-22 13:49:15 -07001460static struct sk_buff *tun_napi_alloc_frags(struct tun_file *tfile,
1461 size_t len,
1462 const struct iov_iter *it)
1463{
1464 struct sk_buff *skb;
1465 size_t linear;
1466 int err;
1467 int i;
1468
1469 if (it->nr_segs > MAX_SKB_FRAGS + 1)
1470 return ERR_PTR(-ENOMEM);
1471
1472 local_bh_disable();
1473 skb = napi_get_frags(&tfile->napi);
1474 local_bh_enable();
1475 if (!skb)
1476 return ERR_PTR(-ENOMEM);
1477
1478 linear = iov_iter_single_seg_count(it);
1479 err = __skb_grow(skb, linear);
1480 if (err)
1481 goto free;
1482
1483 skb->len = len;
1484 skb->data_len = len - linear;
1485 skb->truesize += skb->data_len;
1486
1487 for (i = 1; i < it->nr_segs; i++) {
1488 size_t fragsz = it->iov[i].iov_len;
Eric Dumazetaa6daac2018-11-18 07:37:33 -08001489 struct page *page;
1490 void *frag;
Petar Penkov90e33d42017-09-22 13:49:15 -07001491
1492 if (fragsz == 0 || fragsz > PAGE_SIZE) {
1493 err = -EINVAL;
1494 goto free;
1495 }
Eric Dumazetaa6daac2018-11-18 07:37:33 -08001496 frag = netdev_alloc_frag(fragsz);
1497 if (!frag) {
Petar Penkov90e33d42017-09-22 13:49:15 -07001498 err = -ENOMEM;
1499 goto free;
1500 }
Eric Dumazetaa6daac2018-11-18 07:37:33 -08001501 page = virt_to_head_page(frag);
1502 skb_fill_page_desc(skb, i - 1, page,
1503 frag - page_address(page), fragsz);
Petar Penkov90e33d42017-09-22 13:49:15 -07001504 }
1505
1506 return skb;
1507free:
1508 /* frees skb and all frags allocated with napi_alloc_frag() */
1509 napi_free_frags(&tfile->napi);
1510 return ERR_PTR(err);
1511}
1512
Rusty Russellf42157c2008-08-15 15:15:10 -07001513/* prepad is the amount to reserve at front. len is length after that.
1514 * linear is a hint as to how much to copy (usually headers). */
Jason Wang54f968d2012-10-31 19:45:57 +00001515static struct sk_buff *tun_alloc_skb(struct tun_file *tfile,
stephen hemminger6f7c1562011-06-08 14:33:08 +00001516 size_t prepad, size_t len,
1517 size_t linear, int noblock)
Rusty Russellf42157c2008-08-15 15:15:10 -07001518{
Jason Wang54f968d2012-10-31 19:45:57 +00001519 struct sock *sk = tfile->socket.sk;
Rusty Russellf42157c2008-08-15 15:15:10 -07001520 struct sk_buff *skb;
Herbert Xu33dccbb2009-02-05 21:25:32 -08001521 int err;
Rusty Russellf42157c2008-08-15 15:15:10 -07001522
1523 /* Under a page? Don't bother with paged skb. */
Herbert Xu0eca93b2009-04-14 02:09:43 -07001524 if (prepad + len < PAGE_SIZE || !linear)
Herbert Xu33dccbb2009-02-05 21:25:32 -08001525 linear = len;
Rusty Russellf42157c2008-08-15 15:15:10 -07001526
Herbert Xu33dccbb2009-02-05 21:25:32 -08001527 skb = sock_alloc_send_pskb(sk, prepad + linear, len - linear, noblock,
Eric Dumazet28d64272013-08-08 14:38:47 -07001528 &err, 0);
Rusty Russellf42157c2008-08-15 15:15:10 -07001529 if (!skb)
Herbert Xu33dccbb2009-02-05 21:25:32 -08001530 return ERR_PTR(err);
Rusty Russellf42157c2008-08-15 15:15:10 -07001531
1532 skb_reserve(skb, prepad);
1533 skb_put(skb, linear);
Herbert Xu33dccbb2009-02-05 21:25:32 -08001534 skb->data_len = len - linear;
1535 skb->len += len - linear;
Rusty Russellf42157c2008-08-15 15:15:10 -07001536
1537 return skb;
1538}
1539
Jason Wang5503fce2017-01-18 15:02:03 +08001540static void tun_rx_batched(struct tun_struct *tun, struct tun_file *tfile,
1541 struct sk_buff *skb, int more)
1542{
1543 struct sk_buff_head *queue = &tfile->sk.sk_write_queue;
1544 struct sk_buff_head process_queue;
1545 u32 rx_batched = tun->rx_batched;
1546 bool rcv = false;
1547
1548 if (!rx_batched || (!more && skb_queue_empty(queue))) {
1549 local_bh_disable();
Matthew Cover8ebebcb2018-11-18 00:46:00 -07001550 skb_record_rx_queue(skb, tfile->queue_index);
Jason Wang5503fce2017-01-18 15:02:03 +08001551 netif_receive_skb(skb);
1552 local_bh_enable();
1553 return;
1554 }
1555
1556 spin_lock(&queue->lock);
1557 if (!more || skb_queue_len(queue) == rx_batched) {
1558 __skb_queue_head_init(&process_queue);
1559 skb_queue_splice_tail_init(queue, &process_queue);
1560 rcv = true;
1561 } else {
1562 __skb_queue_tail(queue, skb);
1563 }
1564 spin_unlock(&queue->lock);
1565
1566 if (rcv) {
1567 struct sk_buff *nskb;
1568
1569 local_bh_disable();
Matthew Cover8ebebcb2018-11-18 00:46:00 -07001570 while ((nskb = __skb_dequeue(&process_queue))) {
1571 skb_record_rx_queue(nskb, tfile->queue_index);
Jason Wang5503fce2017-01-18 15:02:03 +08001572 netif_receive_skb(nskb);
Matthew Cover8ebebcb2018-11-18 00:46:00 -07001573 }
1574 skb_record_rx_queue(skb, tfile->queue_index);
Jason Wang5503fce2017-01-18 15:02:03 +08001575 netif_receive_skb(skb);
1576 local_bh_enable();
1577 }
1578}
1579
Jason Wang66ccbc92017-08-11 19:41:16 +08001580static bool tun_can_build_skb(struct tun_struct *tun, struct tun_file *tfile,
1581 int len, int noblock, bool zerocopy)
1582{
1583 if ((tun->flags & TUN_TYPE_MASK) != IFF_TAP)
1584 return false;
1585
1586 if (tfile->socket.sk->sk_sndbuf != INT_MAX)
1587 return false;
1588
1589 if (!noblock)
1590 return false;
1591
1592 if (zerocopy)
1593 return false;
1594
1595 if (SKB_DATA_ALIGN(len + TUN_RX_PAD) +
1596 SKB_DATA_ALIGN(sizeof(struct skb_shared_info)) > PAGE_SIZE)
1597 return false;
1598
1599 return true;
1600}
1601
Jason Wangac1f1f62018-09-12 11:17:03 +08001602static struct sk_buff *__tun_build_skb(struct page_frag *alloc_frag, char *buf,
Jason Wang8ae1aff2018-09-12 11:17:04 +08001603 int buflen, int len, int pad)
Jason Wangac1f1f62018-09-12 11:17:03 +08001604{
1605 struct sk_buff *skb = build_skb(buf, buflen);
1606
1607 if (!skb)
1608 return ERR_PTR(-ENOMEM);
1609
Jason Wang8ae1aff2018-09-12 11:17:04 +08001610 skb_reserve(skb, pad);
Jason Wangac1f1f62018-09-12 11:17:03 +08001611 skb_put(skb, len);
1612
1613 get_page(alloc_frag->page);
1614 alloc_frag->offset += buflen;
1615
1616 return skb;
1617}
1618
Jason Wang8ae1aff2018-09-12 11:17:04 +08001619static int tun_xdp_act(struct tun_struct *tun, struct bpf_prog *xdp_prog,
1620 struct xdp_buff *xdp, u32 act)
1621{
1622 int err;
1623
1624 switch (act) {
1625 case XDP_REDIRECT:
1626 err = xdp_do_redirect(tun->dev, xdp, xdp_prog);
Jason Wang8ae1aff2018-09-12 11:17:04 +08001627 if (err)
1628 return err;
1629 break;
1630 case XDP_TX:
1631 err = tun_xdp_tx(tun->dev, xdp);
1632 if (err < 0)
1633 return err;
1634 break;
1635 case XDP_PASS:
1636 break;
1637 default:
1638 bpf_warn_invalid_xdp_action(act);
1639 /* fall through */
1640 case XDP_ABORTED:
1641 trace_xdp_exception(tun->dev, xdp_prog, act);
1642 /* fall through */
1643 case XDP_DROP:
1644 this_cpu_inc(tun->pcpu_stats->rx_dropped);
1645 break;
1646 }
1647
1648 return act;
1649}
1650
Jason Wang761876c2017-08-11 19:41:18 +08001651static struct sk_buff *tun_build_skb(struct tun_struct *tun,
1652 struct tun_file *tfile,
Jason Wang66ccbc92017-08-11 19:41:16 +08001653 struct iov_iter *from,
Jason Wang761876c2017-08-11 19:41:18 +08001654 struct virtio_net_hdr *hdr,
Jason Wang1cfe6e92017-09-04 11:36:09 +08001655 int len, int *skb_xdp)
Jason Wang66ccbc92017-08-11 19:41:16 +08001656{
Eric Dumazet0bbd7da2017-08-16 22:14:33 +08001657 struct page_frag *alloc_frag = &current->task_frag;
Jason Wang761876c2017-08-11 19:41:18 +08001658 struct bpf_prog *xdp_prog;
Jason Wang7df13212017-09-04 11:36:08 +08001659 int buflen = SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
Jason Wang66ccbc92017-08-11 19:41:16 +08001660 char *buf;
1661 size_t copied;
Jason Wang8ae1aff2018-09-12 11:17:04 +08001662 int pad = TUN_RX_PAD;
1663 int err = 0;
Jason Wang7df13212017-09-04 11:36:08 +08001664
1665 rcu_read_lock();
1666 xdp_prog = rcu_dereference(tun->xdp_prog);
1667 if (xdp_prog)
Jason Wang4f23aff2018-09-12 11:17:00 +08001668 pad += XDP_PACKET_HEADROOM;
Jason Wang7df13212017-09-04 11:36:08 +08001669 buflen += SKB_DATA_ALIGN(len + pad);
1670 rcu_read_unlock();
Jason Wang66ccbc92017-08-11 19:41:16 +08001671
Jason Wang63b9ab62017-10-27 11:05:44 +08001672 alloc_frag->offset = ALIGN((u64)alloc_frag->offset, SMP_CACHE_BYTES);
Jason Wang66ccbc92017-08-11 19:41:16 +08001673 if (unlikely(!skb_page_frag_refill(buflen, alloc_frag, GFP_KERNEL)))
1674 return ERR_PTR(-ENOMEM);
1675
1676 buf = (char *)page_address(alloc_frag->page) + alloc_frag->offset;
1677 copied = copy_page_from_iter(alloc_frag->page,
Jason Wang7df13212017-09-04 11:36:08 +08001678 alloc_frag->offset + pad,
Jason Wang66ccbc92017-08-11 19:41:16 +08001679 len, from);
1680 if (copied != len)
1681 return ERR_PTR(-EFAULT);
1682
Jason Wang7df13212017-09-04 11:36:08 +08001683 /* There's a small window that XDP may be set after the check
1684 * of xdp_prog above, this should be rare and for simplicity
1685 * we do XDP on skb in case the headroom is not enough.
1686 */
Jason Wangac1f1f62018-09-12 11:17:03 +08001687 if (hdr->gso_type || !xdp_prog) {
Jason Wang1cfe6e92017-09-04 11:36:09 +08001688 *skb_xdp = 1;
Jason Wang8ae1aff2018-09-12 11:17:04 +08001689 return __tun_build_skb(alloc_frag, buf, buflen, len, pad);
Jason Wangac1f1f62018-09-12 11:17:03 +08001690 }
1691
1692 *skb_xdp = 0;
Jason Wang66ccbc92017-08-11 19:41:16 +08001693
Toshiaki Makita6547e382018-05-28 19:37:49 +09001694 local_bh_disable();
Jason Wang761876c2017-08-11 19:41:18 +08001695 rcu_read_lock();
1696 xdp_prog = rcu_dereference(tun->xdp_prog);
Jason Wang8ae1aff2018-09-12 11:17:04 +08001697 if (xdp_prog) {
Jason Wang761876c2017-08-11 19:41:18 +08001698 struct xdp_buff xdp;
Jason Wang761876c2017-08-11 19:41:18 +08001699 u32 act;
1700
1701 xdp.data_hard_start = buf;
Jason Wang7df13212017-09-04 11:36:08 +08001702 xdp.data = buf + pad;
Daniel Borkmannde8f3a82017-09-25 02:25:51 +02001703 xdp_set_data_meta_invalid(&xdp);
Jason Wang761876c2017-08-11 19:41:18 +08001704 xdp.data_end = xdp.data + len;
Jesper Dangaard Brouer8bf5c4e2018-01-03 11:25:59 +01001705 xdp.rxq = &tfile->xdp_rxq;
Jason Wang761876c2017-08-11 19:41:18 +08001706
Jason Wang8ae1aff2018-09-12 11:17:04 +08001707 act = bpf_prog_run_xdp(xdp_prog, &xdp);
1708 if (act == XDP_REDIRECT || act == XDP_TX) {
Jason Wang761876c2017-08-11 19:41:18 +08001709 get_page(alloc_frag->page);
1710 alloc_frag->offset += buflen;
Jason Wang761876c2017-08-11 19:41:18 +08001711 }
Jason Wang8ae1aff2018-09-12 11:17:04 +08001712 err = tun_xdp_act(tun, xdp_prog, &xdp, act);
1713 if (err < 0)
1714 goto err_xdp;
Jason Wang1a097912018-09-12 11:17:05 +08001715 if (err == XDP_REDIRECT)
1716 xdp_do_flush_map();
Jason Wang8ae1aff2018-09-12 11:17:04 +08001717 if (err != XDP_PASS)
1718 goto out;
1719
1720 pad = xdp.data - xdp.data_hard_start;
1721 len = xdp.data_end - xdp.data;
Jason Wang761876c2017-08-11 19:41:18 +08001722 }
Jason Wang291aeb22018-09-12 11:17:01 +08001723 rcu_read_unlock();
1724 local_bh_enable();
Jason Wang761876c2017-08-11 19:41:18 +08001725
Jason Wang8ae1aff2018-09-12 11:17:04 +08001726 return __tun_build_skb(alloc_frag, buf, buflen, len, pad);
Jason Wang761876c2017-08-11 19:41:18 +08001727
Jason Wang8ae1aff2018-09-12 11:17:04 +08001728err_xdp:
Jason Wang761876c2017-08-11 19:41:18 +08001729 put_page(alloc_frag->page);
Jason Wangf7053b62018-09-12 11:17:02 +08001730out:
Jason Wang761876c2017-08-11 19:41:18 +08001731 rcu_read_unlock();
Toshiaki Makita6547e382018-05-28 19:37:49 +09001732 local_bh_enable();
Jason Wang761876c2017-08-11 19:41:18 +08001733 return NULL;
Jason Wang66ccbc92017-08-11 19:41:16 +08001734}
1735
Linus Torvalds1da177e2005-04-16 15:20:36 -07001736/* Get packet from user space buffer */
Jason Wang54f968d2012-10-31 19:45:57 +00001737static ssize_t tun_get_user(struct tun_struct *tun, struct tun_file *tfile,
Al Virof5ff53b2014-06-19 15:36:49 -04001738 void *msg_control, struct iov_iter *from,
Jason Wang5503fce2017-01-18 15:02:03 +08001739 int noblock, bool more)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001740{
Harvey Harrison09640e632009-02-01 00:45:17 -08001741 struct tun_pi pi = { 0, cpu_to_be16(ETH_P_IP) };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001742 struct sk_buff *skb;
Al Virof5ff53b2014-06-19 15:36:49 -04001743 size_t total_len = iov_iter_count(from);
Paolo Abenieaea34b2016-02-26 10:45:40 +01001744 size_t len = total_len, align = tun->align, linear;
Rusty Russellf43798c2008-07-03 03:48:02 -07001745 struct virtio_net_hdr gso = { 0 };
Paolo Abeni608b9972016-04-13 10:52:20 +02001746 struct tun_pcpu_stats *stats;
Jason Wang96f8d9e2013-11-13 14:00:39 +08001747 int good_linear;
Michael S. Tsirkin06908992012-07-20 09:23:23 +00001748 int copylen;
1749 bool zerocopy = false;
1750 int err;
Jason Wang96f84062017-12-04 17:31:23 +08001751 u32 rxhash = 0;
Jason Wang1cfe6e92017-09-04 11:36:09 +08001752 int skb_xdp = 1;
Eric Dumazetaf3fb242018-09-28 14:51:49 -07001753 bool frags = tun_napi_frags_enabled(tfile);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001754
Michael S. Tsirkin40630b82014-11-19 15:17:31 +02001755 if (!(tun->flags & IFF_NO_PI)) {
Dan Carpenter15718ea2013-08-15 15:52:57 +03001756 if (len < sizeof(pi))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001757 return -EINVAL;
Dan Carpenter15718ea2013-08-15 15:52:57 +03001758 len -= sizeof(pi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001759
Al Virocbbd26b2016-11-01 22:09:04 -04001760 if (!copy_from_iter_full(&pi, sizeof(pi), from))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001761 return -EFAULT;
1762 }
1763
Michael S. Tsirkin40630b82014-11-19 15:17:31 +02001764 if (tun->flags & IFF_VNET_HDR) {
Willem de Bruijne1edab82017-02-03 18:20:48 -05001765 int vnet_hdr_sz = READ_ONCE(tun->vnet_hdr_sz);
1766
1767 if (len < vnet_hdr_sz)
Rusty Russellf43798c2008-07-03 03:48:02 -07001768 return -EINVAL;
Willem de Bruijne1edab82017-02-03 18:20:48 -05001769 len -= vnet_hdr_sz;
Rusty Russellf43798c2008-07-03 03:48:02 -07001770
Al Virocbbd26b2016-11-01 22:09:04 -04001771 if (!copy_from_iter_full(&gso, sizeof(gso), from))
Rusty Russellf43798c2008-07-03 03:48:02 -07001772 return -EFAULT;
1773
Herbert Xu49091222009-06-08 00:20:01 -07001774 if ((gso.flags & VIRTIO_NET_HDR_F_NEEDS_CSUM) &&
Michael S. Tsirkin56f0dcc2014-10-23 22:59:31 +03001775 tun16_to_cpu(tun, gso.csum_start) + tun16_to_cpu(tun, gso.csum_offset) + 2 > tun16_to_cpu(tun, gso.hdr_len))
1776 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 -07001777
Michael S. Tsirkin56f0dcc2014-10-23 22:59:31 +03001778 if (tun16_to_cpu(tun, gso.hdr_len) > len)
Rusty Russellf43798c2008-07-03 03:48:02 -07001779 return -EINVAL;
Willem de Bruijne1edab82017-02-03 18:20:48 -05001780 iov_iter_advance(from, vnet_hdr_sz - sizeof(gso));
Rusty Russellf43798c2008-07-03 03:48:02 -07001781 }
1782
Michael S. Tsirkin40630b82014-11-19 15:17:31 +02001783 if ((tun->flags & TUN_TYPE_MASK) == IFF_TAP) {
stephen hemmingera504b862011-06-08 14:33:07 +00001784 align += NET_IP_ALIGN;
Herbert Xu0eca93b2009-04-14 02:09:43 -07001785 if (unlikely(len < ETH_HLEN ||
Michael S. Tsirkin56f0dcc2014-10-23 22:59:31 +03001786 (gso.hdr_len && tun16_to_cpu(tun, gso.hdr_len) < ETH_HLEN)))
Rusty Russelle01bf1c2008-04-12 18:49:30 -07001787 return -EINVAL;
1788 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001789
Jason Wang96f8d9e2013-11-13 14:00:39 +08001790 good_linear = SKB_MAX_HEAD(align);
1791
Jason Wang88529172013-07-18 10:55:15 +08001792 if (msg_control) {
Al Virof5ff53b2014-06-19 15:36:49 -04001793 struct iov_iter i = *from;
1794
Jason Wang88529172013-07-18 10:55:15 +08001795 /* There are 256 bytes to be copied in skb, so there is
1796 * enough room for skb expand head in case it is used.
Michael S. Tsirkin06908992012-07-20 09:23:23 +00001797 * The rest of the buffer is mapped from userspace.
1798 */
Michael S. Tsirkin56f0dcc2014-10-23 22:59:31 +03001799 copylen = gso.hdr_len ? tun16_to_cpu(tun, gso.hdr_len) : GOODCOPY_LEN;
Jason Wang96f8d9e2013-11-13 14:00:39 +08001800 if (copylen > good_linear)
1801 copylen = good_linear;
Jason Wang3dd5c332013-07-10 13:43:27 +08001802 linear = copylen;
Al Virof5ff53b2014-06-19 15:36:49 -04001803 iov_iter_advance(&i, copylen);
1804 if (iov_iter_npages(&i, INT_MAX) <= MAX_SKB_FRAGS)
Jason Wang88529172013-07-18 10:55:15 +08001805 zerocopy = true;
1806 }
1807
Petar Penkov90e33d42017-09-22 13:49:15 -07001808 if (!frags && tun_can_build_skb(tun, tfile, len, noblock, zerocopy)) {
Jason Wang1cfe6e92017-09-04 11:36:09 +08001809 /* For the packet that is not easy to be processed
1810 * (e.g gso or jumbo packet), we will do it at after
1811 * skb was created with generic XDP routine.
1812 */
1813 skb = tun_build_skb(tun, tfile, from, &gso, len, &skb_xdp);
Jason Wang66ccbc92017-08-11 19:41:16 +08001814 if (IS_ERR(skb)) {
Paolo Abeni608b9972016-04-13 10:52:20 +02001815 this_cpu_inc(tun->pcpu_stats->rx_dropped);
Jason Wang66ccbc92017-08-11 19:41:16 +08001816 return PTR_ERR(skb);
1817 }
Jason Wang761876c2017-08-11 19:41:18 +08001818 if (!skb)
1819 return total_len;
Jason Wang66ccbc92017-08-11 19:41:16 +08001820 } else {
1821 if (!zerocopy) {
1822 copylen = len;
1823 if (tun16_to_cpu(tun, gso.hdr_len) > good_linear)
1824 linear = good_linear;
1825 else
1826 linear = tun16_to_cpu(tun, gso.hdr_len);
1827 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001828
Petar Penkov90e33d42017-09-22 13:49:15 -07001829 if (frags) {
1830 mutex_lock(&tfile->napi_mutex);
1831 skb = tun_napi_alloc_frags(tfile, copylen, from);
1832 /* tun_napi_alloc_frags() enforces a layout for the skb.
1833 * If zerocopy is enabled, then this layout will be
1834 * overwritten by zerocopy_sg_from_iter().
1835 */
1836 zerocopy = false;
1837 } else {
1838 skb = tun_alloc_skb(tfile, align, copylen, linear,
1839 noblock);
1840 }
1841
Jason Wang66ccbc92017-08-11 19:41:16 +08001842 if (IS_ERR(skb)) {
1843 if (PTR_ERR(skb) != -EAGAIN)
1844 this_cpu_inc(tun->pcpu_stats->rx_dropped);
Petar Penkov90e33d42017-09-22 13:49:15 -07001845 if (frags)
1846 mutex_unlock(&tfile->napi_mutex);
Jason Wang66ccbc92017-08-11 19:41:16 +08001847 return PTR_ERR(skb);
1848 }
Michael S. Tsirkin06908992012-07-20 09:23:23 +00001849
Jason Wang66ccbc92017-08-11 19:41:16 +08001850 if (zerocopy)
1851 err = zerocopy_sg_from_iter(skb, from);
1852 else
1853 err = skb_copy_datagram_from_iter(skb, 0, from, len);
1854
1855 if (err) {
Eric Dumazet44771382019-03-14 20:19:47 -07001856 err = -EFAULT;
1857drop:
Jason Wang66ccbc92017-08-11 19:41:16 +08001858 this_cpu_inc(tun->pcpu_stats->rx_dropped);
1859 kfree_skb(skb);
Petar Penkov90e33d42017-09-22 13:49:15 -07001860 if (frags) {
1861 tfile->napi.skb = NULL;
1862 mutex_unlock(&tfile->napi_mutex);
1863 }
1864
Eric Dumazet44771382019-03-14 20:19:47 -07001865 return err;
Jason Wang66ccbc92017-08-11 19:41:16 +08001866 }
Dave Jones8f227572006-03-11 18:49:13 -08001867 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001868
Jarno Rajahalme3e9e40e2016-11-18 15:40:38 -08001869 if (virtio_net_hdr_to_skb(skb, &gso, tun_is_little_endian(tun))) {
Paolo Abenidf10db92016-06-14 00:00:04 +02001870 this_cpu_inc(tun->pcpu_stats->rx_frame_errors);
1871 kfree_skb(skb);
Petar Penkov90e33d42017-09-22 13:49:15 -07001872 if (frags) {
1873 tfile->napi.skb = NULL;
1874 mutex_unlock(&tfile->napi_mutex);
1875 }
1876
Paolo Abenidf10db92016-06-14 00:00:04 +02001877 return -EINVAL;
1878 }
1879
Linus Torvalds1da177e2005-04-16 15:20:36 -07001880 switch (tun->flags & TUN_TYPE_MASK) {
Michael S. Tsirkin40630b82014-11-19 15:17:31 +02001881 case IFF_TUN:
1882 if (tun->flags & IFF_NO_PI) {
Alexander Potapenko2580c4c2017-09-28 11:32:37 +02001883 u8 ip_version = skb->len ? (skb->data[0] >> 4) : 0;
1884
1885 switch (ip_version) {
1886 case 4:
Ang Way Chuangf09f7ee2008-06-17 21:10:33 -07001887 pi.proto = htons(ETH_P_IP);
1888 break;
Alexander Potapenko2580c4c2017-09-28 11:32:37 +02001889 case 6:
Ang Way Chuangf09f7ee2008-06-17 21:10:33 -07001890 pi.proto = htons(ETH_P_IPV6);
1891 break;
1892 default:
Paolo Abeni608b9972016-04-13 10:52:20 +02001893 this_cpu_inc(tun->pcpu_stats->rx_dropped);
Ang Way Chuangf09f7ee2008-06-17 21:10:33 -07001894 kfree_skb(skb);
1895 return -EINVAL;
1896 }
1897 }
1898
Arnaldo Carvalho de Melo459a98e2007-03-19 15:30:44 -07001899 skb_reset_mac_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001900 skb->protocol = pi.proto;
Arnaldo Carvalho de Melo4c13eb62007-04-25 17:40:23 -07001901 skb->dev = tun->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001902 break;
Michael S. Tsirkin40630b82014-11-19 15:17:31 +02001903 case IFF_TAP:
Petar Penkov90e33d42017-09-22 13:49:15 -07001904 if (!frags)
1905 skb->protocol = eth_type_trans(skb, tun->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001906 break;
Joe Perches6403eab2011-06-03 11:51:20 +00001907 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001908
Michael S. Tsirkin06908992012-07-20 09:23:23 +00001909 /* copy skb_ubuf_info for callback when skb has no error */
1910 if (zerocopy) {
1911 skb_shinfo(skb)->destructor_arg = msg_control;
1912 skb_shinfo(skb)->tx_flags |= SKBTX_DEV_ZEROCOPY;
Pravin B Shelarc9af6db2013-02-11 09:27:41 +00001913 skb_shinfo(skb)->tx_flags |= SKBTX_SHARED_FRAG;
Jason Wangaf1cc7a2016-11-30 13:17:51 +08001914 } else if (msg_control) {
1915 struct ubuf_info *uarg = msg_control;
1916 uarg->callback(uarg, false);
Michael S. Tsirkin06908992012-07-20 09:23:23 +00001917 }
1918
Vlad Yasevich72f65102015-02-03 16:36:16 -05001919 skb_reset_network_header(skb);
Maxim Mikityanskiyd2aa1252019-02-21 12:39:57 +00001920 skb_probe_transport_header(skb);
Jason Wang38502af2013-03-25 20:19:56 +00001921
Jason Wang1cfe6e92017-09-04 11:36:09 +08001922 if (skb_xdp) {
Jason Wang761876c2017-08-11 19:41:18 +08001923 struct bpf_prog *xdp_prog;
1924 int ret;
1925
Toshiaki Makita6547e382018-05-28 19:37:49 +09001926 local_bh_disable();
Jason Wang761876c2017-08-11 19:41:18 +08001927 rcu_read_lock();
1928 xdp_prog = rcu_dereference(tun->xdp_prog);
1929 if (xdp_prog) {
1930 ret = do_xdp_generic(xdp_prog, skb);
1931 if (ret != XDP_PASS) {
1932 rcu_read_unlock();
Toshiaki Makita6547e382018-05-28 19:37:49 +09001933 local_bh_enable();
Jason Wang761876c2017-08-11 19:41:18 +08001934 return total_len;
1935 }
1936 }
1937 rcu_read_unlock();
Toshiaki Makita6547e382018-05-28 19:37:49 +09001938 local_bh_enable();
Jason Wang761876c2017-08-11 19:41:18 +08001939 }
1940
Paolo Abenicf1a1e02018-04-20 13:18:16 +02001941 /* Compute the costly rx hash only if needed for flow updates.
1942 * We may get a very small possibility of OOO during switching, not
1943 * worth to optimize.
1944 */
1945 if (!rcu_access_pointer(tun->steering_prog) && tun->numqueues > 1 &&
1946 !tfile->detached)
Jason Wang96f84062017-12-04 17:31:23 +08001947 rxhash = __skb_get_hash_symmetric(skb);
Petar Penkov94317092017-09-22 13:49:14 -07001948
Eric Dumazet44771382019-03-14 20:19:47 -07001949 rcu_read_lock();
1950 if (unlikely(!(tun->dev->flags & IFF_UP))) {
1951 err = -EIO;
Eric Dumazet9180bb42019-03-16 13:09:53 -07001952 rcu_read_unlock();
Eric Dumazet44771382019-03-14 20:19:47 -07001953 goto drop;
1954 }
1955
Petar Penkov90e33d42017-09-22 13:49:15 -07001956 if (frags) {
1957 /* Exercise flow dissector code path. */
Stanislav Fomichevc43f1252019-04-22 08:55:48 -07001958 u32 headlen = eth_get_headlen(tun->dev, skb->data,
1959 skb_headlen(skb));
Petar Penkov90e33d42017-09-22 13:49:15 -07001960
Eric Dumazet010f2452017-10-17 10:07:44 -07001961 if (unlikely(headlen > skb_headlen(skb))) {
Petar Penkov90e33d42017-09-22 13:49:15 -07001962 this_cpu_inc(tun->pcpu_stats->rx_dropped);
1963 napi_free_frags(&tfile->napi);
Eric Dumazet44771382019-03-14 20:19:47 -07001964 rcu_read_unlock();
Petar Penkov90e33d42017-09-22 13:49:15 -07001965 mutex_unlock(&tfile->napi_mutex);
1966 WARN_ON(1);
1967 return -ENOMEM;
1968 }
1969
1970 local_bh_disable();
1971 napi_gro_frags(&tfile->napi);
1972 local_bh_enable();
1973 mutex_unlock(&tfile->napi_mutex);
Eric Dumazetaec72f32017-10-18 12:12:09 -07001974 } else if (tfile->napi_enabled) {
Petar Penkov94317092017-09-22 13:49:14 -07001975 struct sk_buff_head *queue = &tfile->sk.sk_write_queue;
1976 int queue_len;
1977
1978 spin_lock_bh(&queue->lock);
1979 __skb_queue_tail(queue, skb);
1980 queue_len = skb_queue_len(queue);
1981 spin_unlock(&queue->lock);
1982
1983 if (!more || queue_len > NAPI_POLL_WEIGHT)
1984 napi_schedule(&tfile->napi);
1985
1986 local_bh_enable();
1987 } else if (!IS_ENABLED(CONFIG_4KSTACKS)) {
1988 tun_rx_batched(tun, tfile, skb, more);
1989 } else {
1990 netif_rx_ni(skb);
1991 }
Eric Dumazet44771382019-03-14 20:19:47 -07001992 rcu_read_unlock();
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001993
Paolo Abeni608b9972016-04-13 10:52:20 +02001994 stats = get_cpu_ptr(tun->pcpu_stats);
1995 u64_stats_update_begin(&stats->syncp);
1996 stats->rx_packets++;
1997 stats->rx_bytes += len;
1998 u64_stats_update_end(&stats->syncp);
1999 put_cpu_ptr(stats);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002000
Jason Wang96f84062017-12-04 17:31:23 +08002001 if (rxhash)
2002 tun_flow_update(tun, rxhash, tfile);
2003
Michael S. Tsirkin06908992012-07-20 09:23:23 +00002004 return total_len;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002005}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002006
Al Virof5ff53b2014-06-19 15:36:49 -04002007static ssize_t tun_chr_write_iter(struct kiocb *iocb, struct iov_iter *from)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002008{
Herbert Xu33dccbb2009-02-05 21:25:32 -08002009 struct file *file = iocb->ki_filp;
Jason Wang54f968d2012-10-31 19:45:57 +00002010 struct tun_file *tfile = file->private_data;
yuan linyu9484dc72017-09-23 22:36:52 +08002011 struct tun_struct *tun = tun_get(tfile);
Eric W. Biederman631ab462009-01-20 11:00:40 +00002012 ssize_t result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002013
2014 if (!tun)
2015 return -EBADFD;
2016
Jason Wang5503fce2017-01-18 15:02:03 +08002017 result = tun_get_user(tun, tfile, NULL, from,
2018 file->f_flags & O_NONBLOCK, false);
Eric W. Biederman631ab462009-01-20 11:00:40 +00002019
2020 tun_put(tun);
2021 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002022}
2023
Jason Wangfc72d1d2018-01-04 11:14:28 +08002024static ssize_t tun_put_user_xdp(struct tun_struct *tun,
2025 struct tun_file *tfile,
Jesper Dangaard Brouer1ffcbc82018-04-17 16:45:47 +02002026 struct xdp_frame *xdp_frame,
Jason Wangfc72d1d2018-01-04 11:14:28 +08002027 struct iov_iter *iter)
2028{
2029 int vnet_hdr_sz = 0;
Jesper Dangaard Brouer1ffcbc82018-04-17 16:45:47 +02002030 size_t size = xdp_frame->len;
Jason Wangfc72d1d2018-01-04 11:14:28 +08002031 struct tun_pcpu_stats *stats;
2032 size_t ret;
2033
2034 if (tun->flags & IFF_VNET_HDR) {
2035 struct virtio_net_hdr gso = { 0 };
2036
2037 vnet_hdr_sz = READ_ONCE(tun->vnet_hdr_sz);
2038 if (unlikely(iov_iter_count(iter) < vnet_hdr_sz))
2039 return -EINVAL;
2040 if (unlikely(copy_to_iter(&gso, sizeof(gso), iter) !=
2041 sizeof(gso)))
2042 return -EFAULT;
2043 iov_iter_advance(iter, vnet_hdr_sz - sizeof(gso));
2044 }
2045
Jesper Dangaard Brouer1ffcbc82018-04-17 16:45:47 +02002046 ret = copy_to_iter(xdp_frame->data, size, iter) + vnet_hdr_sz;
Jason Wangfc72d1d2018-01-04 11:14:28 +08002047
2048 stats = get_cpu_ptr(tun->pcpu_stats);
2049 u64_stats_update_begin(&stats->syncp);
2050 stats->tx_packets++;
2051 stats->tx_bytes += ret;
2052 u64_stats_update_end(&stats->syncp);
2053 put_cpu_ptr(tun->pcpu_stats);
2054
2055 return ret;
2056}
2057
Linus Torvalds1da177e2005-04-16 15:20:36 -07002058/* Put packet to the user space buffer */
stephen hemminger6f7c1562011-06-08 14:33:08 +00002059static ssize_t tun_put_user(struct tun_struct *tun,
Jason Wang54f968d2012-10-31 19:45:57 +00002060 struct tun_file *tfile,
stephen hemminger6f7c1562011-06-08 14:33:08 +00002061 struct sk_buff *skb,
Herbert Xue0b46d02014-11-07 21:22:23 +08002062 struct iov_iter *iter)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002063{
2064 struct tun_pi pi = { 0, skb->protocol };
Paolo Abeni608b9972016-04-13 10:52:20 +02002065 struct tun_pcpu_stats *stats;
Herbert Xue0b46d02014-11-07 21:22:23 +08002066 ssize_t total;
Jason Wang8c847d22014-11-13 16:54:14 +08002067 int vlan_offset = 0;
Herbert Xua8f9bfd2014-11-03 04:30:13 +08002068 int vlan_hlen = 0;
Herbert Xu2eb783c2014-11-03 04:30:14 +08002069 int vnet_hdr_sz = 0;
Herbert Xua8f9bfd2014-11-03 04:30:13 +08002070
Jiri Pirkodf8a39d2015-01-13 17:13:44 +01002071 if (skb_vlan_tag_present(skb))
Herbert Xua8f9bfd2014-11-03 04:30:13 +08002072 vlan_hlen = VLAN_HLEN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002073
Michael S. Tsirkin40630b82014-11-19 15:17:31 +02002074 if (tun->flags & IFF_VNET_HDR)
Willem de Bruijne1edab82017-02-03 18:20:48 -05002075 vnet_hdr_sz = READ_ONCE(tun->vnet_hdr_sz);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002076
Herbert Xue0b46d02014-11-07 21:22:23 +08002077 total = skb->len + vlan_hlen + vnet_hdr_sz;
2078
Michael S. Tsirkin40630b82014-11-19 15:17:31 +02002079 if (!(tun->flags & IFF_NO_PI)) {
Herbert Xue0b46d02014-11-07 21:22:23 +08002080 if (iov_iter_count(iter) < sizeof(pi))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002081 return -EINVAL;
2082
Herbert Xue0b46d02014-11-07 21:22:23 +08002083 total += sizeof(pi);
2084 if (iov_iter_count(iter) < total) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002085 /* Packet will be striped */
2086 pi.flags |= TUN_PKT_STRIP;
2087 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002088
Herbert Xue0b46d02014-11-07 21:22:23 +08002089 if (copy_to_iter(&pi, sizeof(pi), iter) != sizeof(pi))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002090 return -EFAULT;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002091 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002092
Herbert Xu2eb783c2014-11-03 04:30:14 +08002093 if (vnet_hdr_sz) {
Jarno Rajahalme9403cd72016-11-18 15:40:40 -08002094 struct virtio_net_hdr gso;
Mike Rapoport34166092016-06-08 16:09:20 +03002095
Herbert Xue0b46d02014-11-07 21:22:23 +08002096 if (iov_iter_count(iter) < vnet_hdr_sz)
Rusty Russellf43798c2008-07-03 03:48:02 -07002097 return -EINVAL;
2098
Jarno Rajahalme3e9e40e2016-11-18 15:40:38 -08002099 if (virtio_net_hdr_from_skb(skb, &gso,
Willem de Bruijnfd3a8862018-06-06 11:23:01 -04002100 tun_is_little_endian(tun), true,
2101 vlan_hlen)) {
Rusty Russellf43798c2008-07-03 03:48:02 -07002102 struct skb_shared_info *sinfo = skb_shinfo(skb);
Mike Rapoport34166092016-06-08 16:09:20 +03002103 pr_err("unexpected GSO type: "
2104 "0x%x, gso_size %d, hdr_len %d\n",
2105 sinfo->gso_type, tun16_to_cpu(tun, gso.gso_size),
2106 tun16_to_cpu(tun, gso.hdr_len));
2107 print_hex_dump(KERN_ERR, "tun: ",
2108 DUMP_PREFIX_NONE,
2109 16, 1, skb->head,
2110 min((int)tun16_to_cpu(tun, gso.hdr_len), 64), true);
2111 WARN_ON_ONCE(1);
2112 return -EINVAL;
2113 }
Rusty Russellf43798c2008-07-03 03:48:02 -07002114
Herbert Xue0b46d02014-11-07 21:22:23 +08002115 if (copy_to_iter(&gso, sizeof(gso), iter) != sizeof(gso))
Rusty Russellf43798c2008-07-03 03:48:02 -07002116 return -EFAULT;
Jason Wang8c847d22014-11-13 16:54:14 +08002117
2118 iov_iter_advance(iter, vnet_hdr_sz - sizeof(gso));
Rusty Russellf43798c2008-07-03 03:48:02 -07002119 }
2120
Herbert Xua8f9bfd2014-11-03 04:30:13 +08002121 if (vlan_hlen) {
Herbert Xue0b46d02014-11-07 21:22:23 +08002122 int ret;
Jason Wangaff3d702018-01-16 16:31:02 +08002123 struct veth veth;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002124
Jason Wang6680ec62013-07-25 13:00:33 +08002125 veth.h_vlan_proto = skb->vlan_proto;
Jiri Pirkodf8a39d2015-01-13 17:13:44 +01002126 veth.h_vlan_TCI = htons(skb_vlan_tag_get(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002127
Jason Wang6680ec62013-07-25 13:00:33 +08002128 vlan_offset = offsetof(struct vlan_ethhdr, h_vlan_proto);
Jason Wang6680ec62013-07-25 13:00:33 +08002129
Herbert Xue0b46d02014-11-07 21:22:23 +08002130 ret = skb_copy_datagram_iter(skb, 0, iter, vlan_offset);
2131 if (ret || !iov_iter_count(iter))
Jason Wang6680ec62013-07-25 13:00:33 +08002132 goto done;
2133
Herbert Xue0b46d02014-11-07 21:22:23 +08002134 ret = copy_to_iter(&veth, sizeof(veth), iter);
2135 if (ret != sizeof(veth) || !iov_iter_count(iter))
Jason Wang6680ec62013-07-25 13:00:33 +08002136 goto done;
2137 }
2138
Herbert Xue0b46d02014-11-07 21:22:23 +08002139 skb_copy_datagram_iter(skb, vlan_offset, iter, skb->len - vlan_offset);
Jason Wang6680ec62013-07-25 13:00:33 +08002140
2141done:
Paolo Abeni608b9972016-04-13 10:52:20 +02002142 /* caller is in process context, */
2143 stats = get_cpu_ptr(tun->pcpu_stats);
2144 u64_stats_update_begin(&stats->syncp);
2145 stats->tx_packets++;
2146 stats->tx_bytes += skb->len + vlan_hlen;
2147 u64_stats_update_end(&stats->syncp);
2148 put_cpu_ptr(tun->pcpu_stats);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002149
2150 return total;
2151}
2152
Jason Wangfc72d1d2018-01-04 11:14:28 +08002153static void *tun_ring_recv(struct tun_file *tfile, int noblock, int *err)
Jason Wang1576d982016-06-30 14:45:36 +08002154{
2155 DECLARE_WAITQUEUE(wait, current);
Jason Wangfc72d1d2018-01-04 11:14:28 +08002156 void *ptr = NULL;
Jason Wangf48cc6b2016-07-04 13:53:38 +08002157 int error = 0;
Jason Wang1576d982016-06-30 14:45:36 +08002158
Jason Wangfc72d1d2018-01-04 11:14:28 +08002159 ptr = ptr_ring_consume(&tfile->tx_ring);
2160 if (ptr)
Jason Wang1576d982016-06-30 14:45:36 +08002161 goto out;
2162 if (noblock) {
Jason Wangf48cc6b2016-07-04 13:53:38 +08002163 error = -EAGAIN;
Jason Wang1576d982016-06-30 14:45:36 +08002164 goto out;
2165 }
2166
Al Viro333f7902019-07-05 20:14:16 +01002167 add_wait_queue(&tfile->socket.wq.wait, &wait);
Jason Wang1576d982016-06-30 14:45:36 +08002168
2169 while (1) {
Timur Celik71828b22019-02-23 12:53:13 +01002170 set_current_state(TASK_INTERRUPTIBLE);
Jason Wangfc72d1d2018-01-04 11:14:28 +08002171 ptr = ptr_ring_consume(&tfile->tx_ring);
2172 if (ptr)
Jason Wang1576d982016-06-30 14:45:36 +08002173 break;
2174 if (signal_pending(current)) {
Jason Wangf48cc6b2016-07-04 13:53:38 +08002175 error = -ERESTARTSYS;
Jason Wang1576d982016-06-30 14:45:36 +08002176 break;
2177 }
2178 if (tfile->socket.sk->sk_shutdown & RCV_SHUTDOWN) {
Jason Wangf48cc6b2016-07-04 13:53:38 +08002179 error = -EFAULT;
Jason Wang1576d982016-06-30 14:45:36 +08002180 break;
2181 }
2182
2183 schedule();
2184 }
2185
Timur Celikecef67c2019-02-25 21:13:13 +01002186 __set_current_state(TASK_RUNNING);
Al Viro333f7902019-07-05 20:14:16 +01002187 remove_wait_queue(&tfile->socket.wq.wait, &wait);
Jason Wang1576d982016-06-30 14:45:36 +08002188
2189out:
Jason Wangf48cc6b2016-07-04 13:53:38 +08002190 *err = error;
Jason Wangfc72d1d2018-01-04 11:14:28 +08002191 return ptr;
Jason Wang1576d982016-06-30 14:45:36 +08002192}
2193
Jason Wang54f968d2012-10-31 19:45:57 +00002194static ssize_t tun_do_read(struct tun_struct *tun, struct tun_file *tfile,
Al Viro9b067032014-11-07 13:52:07 -05002195 struct iov_iter *to,
Jason Wangfc72d1d2018-01-04 11:14:28 +08002196 int noblock, void *ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002197{
Al Viro9b067032014-11-07 13:52:07 -05002198 ssize_t ret;
Jason Wang1576d982016-06-30 14:45:36 +08002199 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002200
Rami Rosen3872baf2012-11-25 22:07:41 +00002201 tun_debug(KERN_INFO, tun, "tun_do_read\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002202
Wei Xuc33ee152017-12-01 05:10:37 -05002203 if (!iov_iter_count(to)) {
Jason Wangfc72d1d2018-01-04 11:14:28 +08002204 tun_ptr_free(ptr);
Al Viro9b067032014-11-07 13:52:07 -05002205 return 0;
Wei Xuc33ee152017-12-01 05:10:37 -05002206 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002207
Jason Wangfc72d1d2018-01-04 11:14:28 +08002208 if (!ptr) {
Jason Wangac77cfd2017-05-17 12:14:43 +08002209 /* Read frames from ring */
Jason Wangfc72d1d2018-01-04 11:14:28 +08002210 ptr = tun_ring_recv(tfile, noblock, &err);
2211 if (!ptr)
Jason Wangac77cfd2017-05-17 12:14:43 +08002212 return err;
2213 }
Herbert Xue0b46d02014-11-07 21:22:23 +08002214
Jesper Dangaard Brouer1ffcbc82018-04-17 16:45:47 +02002215 if (tun_is_xdp_frame(ptr)) {
2216 struct xdp_frame *xdpf = tun_ptr_to_xdp(ptr);
Jason Wangfc72d1d2018-01-04 11:14:28 +08002217
Jesper Dangaard Brouer1ffcbc82018-04-17 16:45:47 +02002218 ret = tun_put_user_xdp(tun, tfile, xdpf, to);
Jesper Dangaard Brouer03993092018-04-17 16:46:32 +02002219 xdp_return_frame(xdpf);
Jason Wangfc72d1d2018-01-04 11:14:28 +08002220 } else {
2221 struct sk_buff *skb = ptr;
2222
2223 ret = tun_put_user(tun, tfile, skb, to);
2224 if (unlikely(ret < 0))
2225 kfree_skb(skb);
2226 else
2227 consume_skb(skb);
2228 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002229
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00002230 return ret;
2231}
2232
Al Viro9b067032014-11-07 13:52:07 -05002233static ssize_t tun_chr_read_iter(struct kiocb *iocb, struct iov_iter *to)
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00002234{
2235 struct file *file = iocb->ki_filp;
2236 struct tun_file *tfile = file->private_data;
yuan linyu9484dc72017-09-23 22:36:52 +08002237 struct tun_struct *tun = tun_get(tfile);
Al Viro9b067032014-11-07 13:52:07 -05002238 ssize_t len = iov_iter_count(to), ret;
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00002239
2240 if (!tun)
2241 return -EBADFD;
Jason Wangac77cfd2017-05-17 12:14:43 +08002242 ret = tun_do_read(tun, tfile, to, file->f_flags & O_NONBLOCK, NULL);
David S. Miller42404c02013-12-10 22:05:45 -05002243 ret = min_t(ssize_t, ret, len);
Zhi Yong Wud0b7da8a2013-12-06 14:16:51 +08002244 if (ret > 0)
2245 iocb->ki_pos = ret;
Eric W. Biederman631ab462009-01-20 11:00:40 +00002246 tun_put(tun);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002247 return ret;
2248}
2249
Jason Wangcd5681d2018-01-16 16:31:01 +08002250static void tun_prog_free(struct rcu_head *rcu)
Jason Wang96f84062017-12-04 17:31:23 +08002251{
Jason Wangcd5681d2018-01-16 16:31:01 +08002252 struct tun_prog *prog = container_of(rcu, struct tun_prog, rcu);
Jason Wang96f84062017-12-04 17:31:23 +08002253
2254 bpf_prog_destroy(prog->prog);
2255 kfree(prog);
2256}
2257
Jason Wang9d6474e2018-01-22 10:55:38 +08002258static int __tun_set_ebpf(struct tun_struct *tun,
2259 struct tun_prog __rcu **prog_p,
Jason Wangcd5681d2018-01-16 16:31:01 +08002260 struct bpf_prog *prog)
Jason Wang96f84062017-12-04 17:31:23 +08002261{
Jason Wangcd5681d2018-01-16 16:31:01 +08002262 struct tun_prog *old, *new = NULL;
Jason Wang96f84062017-12-04 17:31:23 +08002263
2264 if (prog) {
2265 new = kmalloc(sizeof(*new), GFP_KERNEL);
2266 if (!new)
2267 return -ENOMEM;
2268 new->prog = prog;
2269 }
2270
Jason Wang124da8f2017-12-08 12:02:30 +08002271 spin_lock_bh(&tun->lock);
Jason Wangcd5681d2018-01-16 16:31:01 +08002272 old = rcu_dereference_protected(*prog_p,
Jason Wang124da8f2017-12-08 12:02:30 +08002273 lockdep_is_held(&tun->lock));
Jason Wangcd5681d2018-01-16 16:31:01 +08002274 rcu_assign_pointer(*prog_p, new);
Jason Wang124da8f2017-12-08 12:02:30 +08002275 spin_unlock_bh(&tun->lock);
Jason Wang96f84062017-12-04 17:31:23 +08002276
2277 if (old)
Jason Wangcd5681d2018-01-16 16:31:01 +08002278 call_rcu(&old->rcu, tun_prog_free);
Jason Wang96f84062017-12-04 17:31:23 +08002279
2280 return 0;
2281}
2282
Jason Wang96442e422012-10-31 19:46:02 +00002283static void tun_free_netdev(struct net_device *dev)
2284{
2285 struct tun_struct *tun = netdev_priv(dev);
2286
Jason Wang4008e972012-12-13 23:53:30 +00002287 BUG_ON(!(list_empty(&tun->disabled)));
Paolo Abeni608b9972016-04-13 10:52:20 +02002288 free_percpu(tun->pcpu_stats);
Jason Wang96442e422012-10-31 19:46:02 +00002289 tun_flow_uninit(tun);
Paul Moore5dbbaf22013-01-14 07:12:19 +00002290 security_tun_dev_free_security(tun->security);
Jason Wangcd5681d2018-01-16 16:31:01 +08002291 __tun_set_ebpf(tun, &tun->steering_prog, NULL);
Jason Wangaff3d702018-01-16 16:31:02 +08002292 __tun_set_ebpf(tun, &tun->filter_prog, NULL);
Jason Wang96442e422012-10-31 19:46:02 +00002293}
2294
Linus Torvalds1da177e2005-04-16 15:20:36 -07002295static void tun_setup(struct net_device *dev)
2296{
2297 struct tun_struct *tun = netdev_priv(dev);
2298
Eric W. Biederman0625c882012-02-07 16:48:55 -08002299 tun->owner = INVALID_UID;
2300 tun->group = INVALID_GID;
Chas Williams4e24f2d2018-06-02 17:49:53 -04002301 tun_default_link_ksettings(dev, &tun->link_ksettings);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002302
Linus Torvalds1da177e2005-04-16 15:20:36 -07002303 dev->ethtool_ops = &tun_ethtool_ops;
David S. Millercf124db2017-05-08 12:52:56 -04002304 dev->needs_free_netdev = true;
2305 dev->priv_destructor = tun_free_netdev;
Jason Wang016adb72016-04-08 13:26:48 +08002306 /* We prefer our own queue length */
2307 dev->tx_queue_len = TUN_READQ_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002308}
2309
Eric W. Biedermanf019a7a2009-01-21 16:02:16 -08002310/* Trivial set of netlink ops to allow deleting tun or tap
2311 * device with netlink.
2312 */
Matthias Schiffera8b8a8892017-06-25 23:56:01 +02002313static int tun_validate(struct nlattr *tb[], struct nlattr *data[],
2314 struct netlink_ext_ack *extack)
Eric W. Biedermanf019a7a2009-01-21 16:02:16 -08002315{
Nicolas Dichtel35b827b2018-11-29 14:45:39 +01002316 NL_SET_ERR_MSG(extack,
2317 "tun/tap creation via rtnetlink is not supported.");
2318 return -EOPNOTSUPP;
Eric W. Biedermanf019a7a2009-01-21 16:02:16 -08002319}
2320
Sabrina Dubroca1ec010e2018-02-16 11:03:07 +01002321static size_t tun_get_size(const struct net_device *dev)
2322{
2323 BUILD_BUG_ON(sizeof(u32) != sizeof(uid_t));
2324 BUILD_BUG_ON(sizeof(u32) != sizeof(gid_t));
2325
2326 return nla_total_size(sizeof(uid_t)) + /* OWNER */
2327 nla_total_size(sizeof(gid_t)) + /* GROUP */
2328 nla_total_size(sizeof(u8)) + /* TYPE */
2329 nla_total_size(sizeof(u8)) + /* PI */
2330 nla_total_size(sizeof(u8)) + /* VNET_HDR */
2331 nla_total_size(sizeof(u8)) + /* PERSIST */
2332 nla_total_size(sizeof(u8)) + /* MULTI_QUEUE */
2333 nla_total_size(sizeof(u32)) + /* NUM_QUEUES */
2334 nla_total_size(sizeof(u32)) + /* NUM_DISABLED_QUEUES */
2335 0;
2336}
2337
2338static int tun_fill_info(struct sk_buff *skb, const struct net_device *dev)
2339{
2340 struct tun_struct *tun = netdev_priv(dev);
2341
2342 if (nla_put_u8(skb, IFLA_TUN_TYPE, tun->flags & TUN_TYPE_MASK))
2343 goto nla_put_failure;
2344 if (uid_valid(tun->owner) &&
2345 nla_put_u32(skb, IFLA_TUN_OWNER,
2346 from_kuid_munged(current_user_ns(), tun->owner)))
2347 goto nla_put_failure;
2348 if (gid_valid(tun->group) &&
2349 nla_put_u32(skb, IFLA_TUN_GROUP,
2350 from_kgid_munged(current_user_ns(), tun->group)))
2351 goto nla_put_failure;
2352 if (nla_put_u8(skb, IFLA_TUN_PI, !(tun->flags & IFF_NO_PI)))
2353 goto nla_put_failure;
2354 if (nla_put_u8(skb, IFLA_TUN_VNET_HDR, !!(tun->flags & IFF_VNET_HDR)))
2355 goto nla_put_failure;
2356 if (nla_put_u8(skb, IFLA_TUN_PERSIST, !!(tun->flags & IFF_PERSIST)))
2357 goto nla_put_failure;
2358 if (nla_put_u8(skb, IFLA_TUN_MULTI_QUEUE,
2359 !!(tun->flags & IFF_MULTI_QUEUE)))
2360 goto nla_put_failure;
2361 if (tun->flags & IFF_MULTI_QUEUE) {
2362 if (nla_put_u32(skb, IFLA_TUN_NUM_QUEUES, tun->numqueues))
2363 goto nla_put_failure;
2364 if (nla_put_u32(skb, IFLA_TUN_NUM_DISABLED_QUEUES,
2365 tun->numdisabled))
2366 goto nla_put_failure;
2367 }
2368
2369 return 0;
2370
2371nla_put_failure:
2372 return -EMSGSIZE;
2373}
2374
Eric W. Biedermanf019a7a2009-01-21 16:02:16 -08002375static struct rtnl_link_ops tun_link_ops __read_mostly = {
2376 .kind = DRV_NAME,
2377 .priv_size = sizeof(struct tun_struct),
2378 .setup = tun_setup,
2379 .validate = tun_validate,
Sabrina Dubroca1ec010e2018-02-16 11:03:07 +01002380 .get_size = tun_get_size,
2381 .fill_info = tun_fill_info,
Eric W. Biedermanf019a7a2009-01-21 16:02:16 -08002382};
2383
Herbert Xu33dccbb2009-02-05 21:25:32 -08002384static void tun_sock_write_space(struct sock *sk)
2385{
Jason Wang54f968d2012-10-31 19:45:57 +00002386 struct tun_file *tfile;
Eric Dumazet43815482010-04-29 11:01:49 +00002387 wait_queue_head_t *wqueue;
Herbert Xu33dccbb2009-02-05 21:25:32 -08002388
2389 if (!sock_writeable(sk))
2390 return;
2391
Eric Dumazet9cd3e072015-11-29 20:03:10 -08002392 if (!test_and_clear_bit(SOCKWQ_ASYNC_NOSPACE, &sk->sk_socket->flags))
Herbert Xu33dccbb2009-02-05 21:25:32 -08002393 return;
2394
Eric Dumazet43815482010-04-29 11:01:49 +00002395 wqueue = sk_sleep(sk);
2396 if (wqueue && waitqueue_active(wqueue))
Linus Torvaldsa9a08842018-02-11 14:34:03 -08002397 wake_up_interruptible_sync_poll(wqueue, EPOLLOUT |
2398 EPOLLWRNORM | EPOLLWRBAND);
Herbert Xuc722c622009-06-03 21:45:55 -07002399
Jason Wang54f968d2012-10-31 19:45:57 +00002400 tfile = container_of(sk, struct tun_file, sk);
2401 kill_fasync(&tfile->fasync, SIGIO, POLL_OUT);
Herbert Xu33dccbb2009-02-05 21:25:32 -08002402}
2403
Jason Wangf9e06c42018-11-15 17:43:10 +08002404static void tun_put_page(struct tun_page *tpage)
2405{
2406 if (tpage->page)
2407 __page_frag_cache_drain(tpage->page, tpage->count);
2408}
2409
Jason Wang043d2222018-09-12 11:17:07 +08002410static int tun_xdp_one(struct tun_struct *tun,
2411 struct tun_file *tfile,
Jason Wangf9e06c42018-11-15 17:43:10 +08002412 struct xdp_buff *xdp, int *flush,
2413 struct tun_page *tpage)
Jason Wang043d2222018-09-12 11:17:07 +08002414{
Prashant Bhole4e4b08e2018-12-03 18:09:24 +09002415 unsigned int datasize = xdp->data_end - xdp->data;
Jason Wang043d2222018-09-12 11:17:07 +08002416 struct tun_xdp_hdr *hdr = xdp->data_hard_start;
2417 struct virtio_net_hdr *gso = &hdr->gso;
2418 struct tun_pcpu_stats *stats;
2419 struct bpf_prog *xdp_prog;
2420 struct sk_buff *skb = NULL;
2421 u32 rxhash = 0, act;
2422 int buflen = hdr->buflen;
2423 int err = 0;
2424 bool skb_xdp = false;
Jason Wangf9e06c42018-11-15 17:43:10 +08002425 struct page *page;
Jason Wang043d2222018-09-12 11:17:07 +08002426
2427 xdp_prog = rcu_dereference(tun->xdp_prog);
2428 if (xdp_prog) {
2429 if (gso->gso_type) {
2430 skb_xdp = true;
2431 goto build;
2432 }
2433 xdp_set_data_meta_invalid(xdp);
2434 xdp->rxq = &tfile->xdp_rxq;
2435
2436 act = bpf_prog_run_xdp(xdp_prog, xdp);
2437 err = tun_xdp_act(tun, xdp_prog, xdp, act);
2438 if (err < 0) {
2439 put_page(virt_to_head_page(xdp->data));
2440 return err;
2441 }
2442
2443 switch (err) {
2444 case XDP_REDIRECT:
2445 *flush = true;
2446 /* fall through */
2447 case XDP_TX:
2448 return 0;
2449 case XDP_PASS:
2450 break;
2451 default:
Jason Wangf9e06c42018-11-15 17:43:10 +08002452 page = virt_to_head_page(xdp->data);
2453 if (tpage->page == page) {
2454 ++tpage->count;
2455 } else {
2456 tun_put_page(tpage);
2457 tpage->page = page;
2458 tpage->count = 1;
2459 }
Jason Wang043d2222018-09-12 11:17:07 +08002460 return 0;
2461 }
2462 }
2463
2464build:
2465 skb = build_skb(xdp->data_hard_start, buflen);
2466 if (!skb) {
2467 err = -ENOMEM;
2468 goto out;
2469 }
2470
2471 skb_reserve(skb, xdp->data - xdp->data_hard_start);
2472 skb_put(skb, xdp->data_end - xdp->data);
2473
2474 if (virtio_net_hdr_to_skb(skb, gso, tun_is_little_endian(tun))) {
2475 this_cpu_inc(tun->pcpu_stats->rx_frame_errors);
2476 kfree_skb(skb);
2477 err = -EINVAL;
2478 goto out;
2479 }
2480
2481 skb->protocol = eth_type_trans(skb, tun->dev);
2482 skb_reset_network_header(skb);
Maxim Mikityanskiyd2aa1252019-02-21 12:39:57 +00002483 skb_probe_transport_header(skb);
Jason Wang043d2222018-09-12 11:17:07 +08002484
2485 if (skb_xdp) {
2486 err = do_xdp_generic(xdp_prog, skb);
2487 if (err != XDP_PASS)
2488 goto out;
2489 }
2490
Paolo Abenif29eb2a2018-11-07 10:34:36 +01002491 if (!rcu_dereference(tun->steering_prog) && tun->numqueues > 1 &&
2492 !tfile->detached)
Jason Wang043d2222018-09-12 11:17:07 +08002493 rxhash = __skb_get_hash_symmetric(skb);
2494
Matthew Cover8ebebcb2018-11-18 00:46:00 -07002495 skb_record_rx_queue(skb, tfile->queue_index);
Jason Wang043d2222018-09-12 11:17:07 +08002496 netif_receive_skb(skb);
2497
Prashant Bhole6342ca62018-12-11 11:43:07 +09002498 /* No need for get_cpu_ptr() here since this function is
2499 * always called with bh disabled
2500 */
2501 stats = this_cpu_ptr(tun->pcpu_stats);
Jason Wang043d2222018-09-12 11:17:07 +08002502 u64_stats_update_begin(&stats->syncp);
2503 stats->rx_packets++;
Prashant Bhole4e4b08e2018-12-03 18:09:24 +09002504 stats->rx_bytes += datasize;
Jason Wang043d2222018-09-12 11:17:07 +08002505 u64_stats_update_end(&stats->syncp);
Jason Wang043d2222018-09-12 11:17:07 +08002506
2507 if (rxhash)
2508 tun_flow_update(tun, rxhash, tfile);
2509
2510out:
2511 return err;
2512}
2513
Ying Xue1b784142015-03-02 15:37:48 +08002514static int tun_sendmsg(struct socket *sock, struct msghdr *m, size_t total_len)
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00002515{
Jason Wang043d2222018-09-12 11:17:07 +08002516 int ret, i;
Jason Wang54f968d2012-10-31 19:45:57 +00002517 struct tun_file *tfile = container_of(sock, struct tun_file, socket);
yuan linyu9484dc72017-09-23 22:36:52 +08002518 struct tun_struct *tun = tun_get(tfile);
Jason Wangfe8dd452018-09-12 11:17:06 +08002519 struct tun_msg_ctl *ctl = m->msg_control;
Jason Wang043d2222018-09-12 11:17:07 +08002520 struct xdp_buff *xdp;
Jason Wang54f968d2012-10-31 19:45:57 +00002521
2522 if (!tun)
2523 return -EBADFD;
Al Virof5ff53b2014-06-19 15:36:49 -04002524
Jason Wang043d2222018-09-12 11:17:07 +08002525 if (ctl && (ctl->type == TUN_MSG_PTR)) {
David S. Miller6f0271d2018-11-17 16:53:46 -08002526 struct tun_page tpage;
Jason Wang043d2222018-09-12 11:17:07 +08002527 int n = ctl->num;
2528 int flush = 0;
2529
David S. Miller6f0271d2018-11-17 16:53:46 -08002530 memset(&tpage, 0, sizeof(tpage));
2531
Jason Wang043d2222018-09-12 11:17:07 +08002532 local_bh_disable();
2533 rcu_read_lock();
2534
2535 for (i = 0; i < n; i++) {
2536 xdp = &((struct xdp_buff *)ctl->ptr)[i];
Jason Wangf9e06c42018-11-15 17:43:10 +08002537 tun_xdp_one(tun, tfile, xdp, &flush, &tpage);
Jason Wang043d2222018-09-12 11:17:07 +08002538 }
2539
2540 if (flush)
2541 xdp_do_flush_map();
2542
2543 rcu_read_unlock();
2544 local_bh_enable();
2545
Jason Wangf9e06c42018-11-15 17:43:10 +08002546 tun_put_page(&tpage);
2547
Jason Wang043d2222018-09-12 11:17:07 +08002548 ret = total_len;
2549 goto out;
2550 }
Jason Wangfe8dd452018-09-12 11:17:06 +08002551
2552 ret = tun_get_user(tun, tfile, ctl ? ctl->ptr : NULL, &m->msg_iter,
Jason Wang5503fce2017-01-18 15:02:03 +08002553 m->msg_flags & MSG_DONTWAIT,
2554 m->msg_flags & MSG_MORE);
Jason Wang043d2222018-09-12 11:17:07 +08002555out:
Jason Wang54f968d2012-10-31 19:45:57 +00002556 tun_put(tun);
2557 return ret;
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00002558}
2559
Ying Xue1b784142015-03-02 15:37:48 +08002560static int tun_recvmsg(struct socket *sock, struct msghdr *m, size_t total_len,
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00002561 int flags)
2562{
Jason Wang54f968d2012-10-31 19:45:57 +00002563 struct tun_file *tfile = container_of(sock, struct tun_file, socket);
yuan linyu9484dc72017-09-23 22:36:52 +08002564 struct tun_struct *tun = tun_get(tfile);
Jason Wangfc72d1d2018-01-04 11:14:28 +08002565 void *ptr = m->msg_control;
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00002566 int ret;
Jason Wang54f968d2012-10-31 19:45:57 +00002567
Wei Xuc33ee152017-12-01 05:10:37 -05002568 if (!tun) {
2569 ret = -EBADFD;
Jason Wangfc72d1d2018-01-04 11:14:28 +08002570 goto out_free;
Wei Xuc33ee152017-12-01 05:10:37 -05002571 }
Jason Wang54f968d2012-10-31 19:45:57 +00002572
Richard Cochraneda29772013-07-19 19:40:10 +02002573 if (flags & ~(MSG_DONTWAIT|MSG_TRUNC|MSG_ERRQUEUE)) {
Gao feng3811ae72013-04-24 21:59:23 +00002574 ret = -EINVAL;
Wei Xuc33ee152017-12-01 05:10:37 -05002575 goto out_put_tun;
Gao feng3811ae72013-04-24 21:59:23 +00002576 }
Richard Cochraneda29772013-07-19 19:40:10 +02002577 if (flags & MSG_ERRQUEUE) {
2578 ret = sock_recv_errqueue(sock->sk, m, total_len,
2579 SOL_PACKET, TUN_TX_TIMESTAMP);
2580 goto out;
2581 }
Jason Wangfc72d1d2018-01-04 11:14:28 +08002582 ret = tun_do_read(tun, tfile, &m->msg_iter, flags & MSG_DONTWAIT, ptr);
Alex Gartrell87897932014-12-25 23:05:03 -08002583 if (ret > (ssize_t)total_len) {
David S. Miller42404c02013-12-10 22:05:45 -05002584 m->msg_flags |= MSG_TRUNC;
2585 ret = flags & MSG_TRUNC ? ret : total_len;
2586 }
Gao feng3811ae72013-04-24 21:59:23 +00002587out:
Jason Wang54f968d2012-10-31 19:45:57 +00002588 tun_put(tun);
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00002589 return ret;
Wei Xuc33ee152017-12-01 05:10:37 -05002590
2591out_put_tun:
2592 tun_put(tun);
Jason Wangfc72d1d2018-01-04 11:14:28 +08002593out_free:
2594 tun_ptr_free(ptr);
Wei Xuc33ee152017-12-01 05:10:37 -05002595 return ret;
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00002596}
2597
Jason Wangfc72d1d2018-01-04 11:14:28 +08002598static int tun_ptr_peek_len(void *ptr)
2599{
2600 if (likely(ptr)) {
Jesper Dangaard Brouer1ffcbc82018-04-17 16:45:47 +02002601 if (tun_is_xdp_frame(ptr)) {
2602 struct xdp_frame *xdpf = tun_ptr_to_xdp(ptr);
Jason Wangfc72d1d2018-01-04 11:14:28 +08002603
Jesper Dangaard Brouer1ffcbc82018-04-17 16:45:47 +02002604 return xdpf->len;
Jason Wangfc72d1d2018-01-04 11:14:28 +08002605 }
2606 return __skb_array_len_with_tag(ptr);
2607 } else {
2608 return 0;
2609 }
2610}
2611
Jason Wang1576d982016-06-30 14:45:36 +08002612static int tun_peek_len(struct socket *sock)
2613{
2614 struct tun_file *tfile = container_of(sock, struct tun_file, socket);
2615 struct tun_struct *tun;
2616 int ret = 0;
2617
yuan linyu9484dc72017-09-23 22:36:52 +08002618 tun = tun_get(tfile);
Jason Wang1576d982016-06-30 14:45:36 +08002619 if (!tun)
2620 return 0;
2621
Jason Wangfc72d1d2018-01-04 11:14:28 +08002622 ret = PTR_RING_PEEK_CALL(&tfile->tx_ring, tun_ptr_peek_len);
Jason Wang1576d982016-06-30 14:45:36 +08002623 tun_put(tun);
2624
2625 return ret;
2626}
2627
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00002628/* Ops structure to mimic raw sockets with tun */
2629static const struct proto_ops tun_socket_ops = {
Jason Wang1576d982016-06-30 14:45:36 +08002630 .peek_len = tun_peek_len,
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00002631 .sendmsg = tun_sendmsg,
2632 .recvmsg = tun_recvmsg,
2633};
2634
Herbert Xu33dccbb2009-02-05 21:25:32 -08002635static struct proto tun_proto = {
2636 .name = "tun",
2637 .owner = THIS_MODULE,
Jason Wang54f968d2012-10-31 19:45:57 +00002638 .obj_size = sizeof(struct tun_file),
Herbert Xu33dccbb2009-02-05 21:25:32 -08002639};
Eric W. Biedermanf019a7a2009-01-21 16:02:16 -08002640
David Woodhouse980c9e82009-05-09 22:54:21 -07002641static int tun_flags(struct tun_struct *tun)
2642{
Michael S. Tsirkin031f5e032014-11-19 14:44:40 +02002643 return tun->flags & (TUN_FEATURES | IFF_PERSIST | IFF_TUN | IFF_TAP);
David Woodhouse980c9e82009-05-09 22:54:21 -07002644}
2645
2646static ssize_t tun_show_flags(struct device *dev, struct device_attribute *attr,
2647 char *buf)
2648{
2649 struct tun_struct *tun = netdev_priv(to_net_dev(dev));
2650 return sprintf(buf, "0x%x\n", tun_flags(tun));
2651}
2652
2653static ssize_t tun_show_owner(struct device *dev, struct device_attribute *attr,
2654 char *buf)
2655{
2656 struct tun_struct *tun = netdev_priv(to_net_dev(dev));
Eric W. Biederman0625c882012-02-07 16:48:55 -08002657 return uid_valid(tun->owner)?
2658 sprintf(buf, "%u\n",
2659 from_kuid_munged(current_user_ns(), tun->owner)):
2660 sprintf(buf, "-1\n");
David Woodhouse980c9e82009-05-09 22:54:21 -07002661}
2662
2663static ssize_t tun_show_group(struct device *dev, struct device_attribute *attr,
2664 char *buf)
2665{
2666 struct tun_struct *tun = netdev_priv(to_net_dev(dev));
Eric W. Biederman0625c882012-02-07 16:48:55 -08002667 return gid_valid(tun->group) ?
2668 sprintf(buf, "%u\n",
2669 from_kgid_munged(current_user_ns(), tun->group)):
2670 sprintf(buf, "-1\n");
David Woodhouse980c9e82009-05-09 22:54:21 -07002671}
2672
2673static DEVICE_ATTR(tun_flags, 0444, tun_show_flags, NULL);
2674static DEVICE_ATTR(owner, 0444, tun_show_owner, NULL);
2675static DEVICE_ATTR(group, 0444, tun_show_group, NULL);
2676
Takashi Iwaic4d33e22015-02-04 14:37:34 +01002677static struct attribute *tun_dev_attrs[] = {
2678 &dev_attr_tun_flags.attr,
2679 &dev_attr_owner.attr,
2680 &dev_attr_group.attr,
2681 NULL
2682};
2683
2684static const struct attribute_group tun_attr_group = {
2685 .attrs = tun_dev_attrs
2686};
2687
Pavel Emelyanovd647a592008-04-16 00:41:16 -07002688static int tun_set_iff(struct net *net, struct file *file, struct ifreq *ifr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002689{
2690 struct tun_struct *tun;
Jason Wang54f968d2012-10-31 19:45:57 +00002691 struct tun_file *tfile = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002692 struct net_device *dev;
2693 int err;
2694
Jason Wang7c0c3b12013-01-11 16:59:33 +00002695 if (tfile->detached)
2696 return -EINVAL;
2697
Petar Penkov90e33d42017-09-22 13:49:15 -07002698 if ((ifr->ifr_flags & IFF_NAPI_FRAGS)) {
2699 if (!capable(CAP_NET_ADMIN))
2700 return -EPERM;
2701
2702 if (!(ifr->ifr_flags & IFF_NAPI) ||
2703 (ifr->ifr_flags & TUN_TYPE_MASK) != IFF_TAP)
2704 return -EINVAL;
2705 }
2706
Eric W. Biederman74a3e5a2009-01-20 10:56:20 +00002707 dev = __dev_get_by_name(net, ifr->ifr_name);
2708 if (dev) {
David Woodhousef85ba782009-04-27 03:23:54 -07002709 if (ifr->ifr_flags & IFF_TUN_EXCL)
2710 return -EBUSY;
Eric W. Biederman74a3e5a2009-01-20 10:56:20 +00002711 if ((ifr->ifr_flags & IFF_TUN) && dev->netdev_ops == &tun_netdev_ops)
2712 tun = netdev_priv(dev);
2713 else if ((ifr->ifr_flags & IFF_TAP) && dev->netdev_ops == &tap_netdev_ops)
2714 tun = netdev_priv(dev);
2715 else
2716 return -EINVAL;
2717
Jason Wang8e6d91a2013-05-28 18:32:11 +00002718 if (!!(ifr->ifr_flags & IFF_MULTI_QUEUE) !=
Michael S. Tsirkin40630b82014-11-19 15:17:31 +02002719 !!(tun->flags & IFF_MULTI_QUEUE))
Jason Wang8e6d91a2013-05-28 18:32:11 +00002720 return -EINVAL;
2721
Jason Wangcde8b152012-10-31 19:46:01 +00002722 if (tun_not_capable(tun))
Paul Moore2b980db2009-08-28 18:12:43 -04002723 return -EPERM;
Paul Moore5dbbaf22013-01-14 07:12:19 +00002724 err = security_tun_dev_open(tun->security);
Paul Moore2b980db2009-08-28 18:12:43 -04002725 if (err < 0)
2726 return err;
2727
Petar Penkov94317092017-09-22 13:49:14 -07002728 err = tun_attach(tun, file, ifr->ifr_flags & IFF_NOFILTER,
Eric Dumazetaf3fb242018-09-28 14:51:49 -07002729 ifr->ifr_flags & IFF_NAPI,
2730 ifr->ifr_flags & IFF_NAPI_FRAGS);
Eric W. Biedermana7385ba2009-01-20 10:57:48 +00002731 if (err < 0)
2732 return err;
Jason Wang4008e972012-12-13 23:53:30 +00002733
Michael S. Tsirkin40630b82014-11-19 15:17:31 +02002734 if (tun->flags & IFF_MULTI_QUEUE &&
Jason Wange8dbad62013-04-22 20:40:39 +00002735 (tun->numqueues + tun->numdisabled > 1)) {
2736 /* One or more queue has already been attached, no need
2737 * to initialize the device again.
2738 */
Sabrina Dubroca83c1f362018-04-10 16:28:56 +02002739 netdev_state_change(dev);
Jason Wange8dbad62013-04-22 20:40:39 +00002740 return 0;
2741 }
Sabrina Dubroca9fffc5c2018-04-10 16:28:55 +02002742
2743 tun->flags = (tun->flags & ~TUN_FEATURES) |
2744 (ifr->ifr_flags & TUN_FEATURES);
Sabrina Dubroca83c1f362018-04-10 16:28:56 +02002745
2746 netdev_state_change(dev);
2747 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002748 char *name;
2749 unsigned long flags = 0;
Jason Wangedfb6a12013-01-23 03:59:12 +00002750 int queues = ifr->ifr_flags & IFF_MULTI_QUEUE ?
2751 MAX_TAP_QUEUES : 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002752
Eric W. Biedermanc260b772012-11-18 21:34:11 +00002753 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
David Woodhouseca6bb5d2006-06-22 16:07:52 -07002754 return -EPERM;
Paul Moore2b980db2009-08-28 18:12:43 -04002755 err = security_tun_dev_create();
2756 if (err < 0)
2757 return err;
David Woodhouseca6bb5d2006-06-22 16:07:52 -07002758
Linus Torvalds1da177e2005-04-16 15:20:36 -07002759 /* Set dev type */
2760 if (ifr->ifr_flags & IFF_TUN) {
2761 /* TUN device */
Michael S. Tsirkin40630b82014-11-19 15:17:31 +02002762 flags |= IFF_TUN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002763 name = "tun%d";
2764 } else if (ifr->ifr_flags & IFF_TAP) {
2765 /* TAP device */
Michael S. Tsirkin40630b82014-11-19 15:17:31 +02002766 flags |= IFF_TAP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002767 name = "tap%d";
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002768 } else
Kusanagi Kouichi36989b92009-09-16 21:36:13 +00002769 return -EINVAL;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002770
Linus Torvalds1da177e2005-04-16 15:20:36 -07002771 if (*ifr->ifr_name)
2772 name = ifr->ifr_name;
2773
Jason Wangc8d68e62012-10-31 19:46:00 +00002774 dev = alloc_netdev_mqs(sizeof(struct tun_struct), name,
Tom Gundersenc835a672014-07-14 16:37:24 +02002775 NET_NAME_UNKNOWN, tun_setup, queues,
2776 queues);
Jason Wangedfb6a12013-01-23 03:59:12 +00002777
Linus Torvalds1da177e2005-04-16 15:20:36 -07002778 if (!dev)
2779 return -ENOMEM;
Cong Wang0ad646c2017-10-13 11:58:53 -07002780 err = dev_get_valid_name(net, dev, name);
Julien Gomes5c25f652017-10-25 11:50:50 -07002781 if (err < 0)
Cong Wang0ad646c2017-10-13 11:58:53 -07002782 goto err_free_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002783
Pavel Emelyanovfc54c652008-04-16 00:41:53 -07002784 dev_net_set(dev, net);
Eric W. Biedermanf019a7a2009-01-21 16:02:16 -08002785 dev->rtnl_link_ops = &tun_link_ops;
Pavel Emelyanovfb7589a2013-08-21 14:31:38 +04002786 dev->ifindex = tfile->ifindex;
Takashi Iwaic4d33e22015-02-04 14:37:34 +01002787 dev->sysfs_groups[0] = &tun_attr_group;
Stephen Hemminger758e43b2008-11-19 22:10:37 -08002788
Linus Torvalds1da177e2005-04-16 15:20:36 -07002789 tun = netdev_priv(dev);
2790 tun->dev = dev;
2791 tun->flags = flags;
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -07002792 tun->txflt.count = 0;
Michael S. Tsirkind9d52b52010-03-17 17:45:01 +02002793 tun->vnet_hdr_sz = sizeof(struct virtio_net_hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002794
Paolo Abenieaea34b2016-02-26 10:45:40 +01002795 tun->align = NET_SKB_PAD;
Jason Wang54f968d2012-10-31 19:45:57 +00002796 tun->filter_attached = false;
2797 tun->sndbuf = tfile->socket.sk->sk_sndbuf;
Jason Wang5503fce2017-01-18 15:02:03 +08002798 tun->rx_batched = 0;
Jason Wang96f84062017-12-04 17:31:23 +08002799 RCU_INIT_POINTER(tun->steering_prog, NULL);
Herbert Xu33dccbb2009-02-05 21:25:32 -08002800
Paolo Abeni608b9972016-04-13 10:52:20 +02002801 tun->pcpu_stats = netdev_alloc_pcpu_stats(struct tun_pcpu_stats);
2802 if (!tun->pcpu_stats) {
2803 err = -ENOMEM;
2804 goto err_free_dev;
2805 }
2806
Jason Wang96442e422012-10-31 19:46:02 +00002807 spin_lock_init(&tun->lock);
2808
Paul Moore5dbbaf22013-01-14 07:12:19 +00002809 err = security_tun_dev_alloc_security(&tun->security);
2810 if (err < 0)
Paolo Abeni608b9972016-04-13 10:52:20 +02002811 goto err_free_stat;
Paul Moore2b980db2009-08-28 18:12:43 -04002812
Linus Torvalds1da177e2005-04-16 15:20:36 -07002813 tun_net_init(dev);
Pavel Emelyanov944a1372013-06-11 17:01:08 +04002814 tun_flow_init(tun);
Jason Wang96442e422012-10-31 19:46:02 +00002815
Michał Mirosław88255372011-04-19 06:13:10 +00002816 dev->hw_features = NETIF_F_SG | NETIF_F_FRAGLIST |
Jason Wang6680ec62013-07-25 13:00:33 +08002817 TUN_USER_FEATURES | NETIF_F_HW_VLAN_CTAG_TX |
2818 NETIF_F_HW_VLAN_STAG_TX;
Paolo Abeni2a2bbf12016-04-14 18:39:39 +02002819 dev->features = dev->hw_features | NETIF_F_LLTX;
Fernando Luis Vazquez Cao6671b222014-02-18 21:20:09 +09002820 dev->vlan_features = dev->features &
2821 ~(NETIF_F_HW_VLAN_CTAG_TX |
2822 NETIF_F_HW_VLAN_STAG_TX);
Michał Mirosław88255372011-04-19 06:13:10 +00002823
Sabrina Dubroca9fffc5c2018-04-10 16:28:55 +02002824 tun->flags = (tun->flags & ~TUN_FEATURES) |
2825 (ifr->ifr_flags & TUN_FEATURES);
2826
Jason Wang4008e972012-12-13 23:53:30 +00002827 INIT_LIST_HEAD(&tun->disabled);
Eric Dumazetaf3fb242018-09-28 14:51:49 -07002828 err = tun_attach(tun, file, false, ifr->ifr_flags & IFF_NAPI,
2829 ifr->ifr_flags & IFF_NAPI_FRAGS);
Jason Wangeb0fb362012-12-02 17:19:45 +00002830 if (err < 0)
Jason Wang662ca432013-09-11 18:09:48 +08002831 goto err_free_flow;
Jason Wangeb0fb362012-12-02 17:19:45 +00002832
Linus Torvalds1da177e2005-04-16 15:20:36 -07002833 err = register_netdevice(tun->dev);
2834 if (err < 0)
Jason Wang662ca432013-09-11 18:09:48 +08002835 goto err_detach;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002836 }
2837
Michael S. Tsirkinaf668b32013-01-28 00:38:02 +00002838 netif_carrier_on(tun->dev);
2839
Joe Perches6b8a66e2011-03-02 07:18:10 +00002840 tun_debug(KERN_INFO, tun, "tun_set_iff\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002841
Max Krasnyanskye35259a2008-07-10 16:59:11 -07002842 /* Make sure persistent devices do not get stuck in
2843 * xoff state.
2844 */
2845 if (netif_running(tun->dev))
Jason Wangc8d68e62012-10-31 19:46:00 +00002846 netif_tx_wake_all_queues(tun->dev);
Max Krasnyanskye35259a2008-07-10 16:59:11 -07002847
Linus Torvalds1da177e2005-04-16 15:20:36 -07002848 strcpy(ifr->ifr_name, tun->dev->name);
2849 return 0;
2850
Jason Wang662ca432013-09-11 18:09:48 +08002851err_detach:
2852 tun_detach_all(dev);
Eric Dumazetff244c62017-08-18 13:39:56 -07002853 /* register_netdevice() already called tun_free_netdev() */
2854 goto err_free_dev;
2855
Jason Wang662ca432013-09-11 18:09:48 +08002856err_free_flow:
2857 tun_flow_uninit(tun);
2858 security_tun_dev_free_security(tun->security);
Paolo Abeni608b9972016-04-13 10:52:20 +02002859err_free_stat:
2860 free_percpu(tun->pcpu_stats);
Jason Wang662ca432013-09-11 18:09:48 +08002861err_free_dev:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002862 free_netdev(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002863 return err;
2864}
2865
Kirill Tkhai12132762019-03-20 12:16:53 +03002866static void tun_get_iff(struct tun_struct *tun, struct ifreq *ifr)
Mark McLoughline3b99552008-08-15 15:09:56 -07002867{
Joe Perches6b8a66e2011-03-02 07:18:10 +00002868 tun_debug(KERN_INFO, tun, "tun_get_iff\n");
Mark McLoughline3b99552008-08-15 15:09:56 -07002869
2870 strcpy(ifr->ifr_name, tun->dev->name);
2871
David Woodhouse980c9e82009-05-09 22:54:21 -07002872 ifr->ifr_flags = tun_flags(tun);
Mark McLoughline3b99552008-08-15 15:09:56 -07002873
Mark McLoughline3b99552008-08-15 15:09:56 -07002874}
2875
Rusty Russell5228ddc2008-07-03 03:46:16 -07002876/* This is like a cut-down ethtool ops, except done via tun fd so no
2877 * privs required. */
Michał Mirosław88255372011-04-19 06:13:10 +00002878static int set_offload(struct tun_struct *tun, unsigned long arg)
Rusty Russell5228ddc2008-07-03 03:46:16 -07002879{
Michał Mirosławc8f44af2011-11-15 15:29:55 +00002880 netdev_features_t features = 0;
Rusty Russell5228ddc2008-07-03 03:46:16 -07002881
2882 if (arg & TUN_F_CSUM) {
Michał Mirosław88255372011-04-19 06:13:10 +00002883 features |= NETIF_F_HW_CSUM;
Rusty Russell5228ddc2008-07-03 03:46:16 -07002884 arg &= ~TUN_F_CSUM;
2885
2886 if (arg & (TUN_F_TSO4|TUN_F_TSO6)) {
2887 if (arg & TUN_F_TSO_ECN) {
2888 features |= NETIF_F_TSO_ECN;
2889 arg &= ~TUN_F_TSO_ECN;
2890 }
2891 if (arg & TUN_F_TSO4)
2892 features |= NETIF_F_TSO;
2893 if (arg & TUN_F_TSO6)
2894 features |= NETIF_F_TSO6;
2895 arg &= ~(TUN_F_TSO4|TUN_F_TSO6);
2896 }
Willem de Bruijn0c19f8462017-11-21 10:22:25 -05002897
2898 arg &= ~TUN_F_UFO;
Rusty Russell5228ddc2008-07-03 03:46:16 -07002899 }
2900
2901 /* This gives the user a way to test for new features in future by
2902 * trying to set them. */
2903 if (arg)
2904 return -EINVAL;
2905
Michał Mirosław88255372011-04-19 06:13:10 +00002906 tun->set_features = features;
Yaroslav Isakov09050952017-03-16 22:44:10 +03002907 tun->dev->wanted_features &= ~TUN_USER_FEATURES;
2908 tun->dev->wanted_features |= features;
Michał Mirosław88255372011-04-19 06:13:10 +00002909 netdev_update_features(tun->dev);
Rusty Russell5228ddc2008-07-03 03:46:16 -07002910
2911 return 0;
2912}
2913
Jason Wangc8d68e62012-10-31 19:46:00 +00002914static void tun_detach_filter(struct tun_struct *tun, int n)
2915{
2916 int i;
2917 struct tun_file *tfile;
2918
2919 for (i = 0; i < n; i++) {
Jason Wangb8deabd2013-01-11 16:59:32 +00002920 tfile = rtnl_dereference(tun->tfiles[i]);
Hannes Frederic Sowa8ced4252016-04-05 17:10:16 +02002921 lock_sock(tfile->socket.sk);
2922 sk_detach_filter(tfile->socket.sk);
2923 release_sock(tfile->socket.sk);
Jason Wangc8d68e62012-10-31 19:46:00 +00002924 }
2925
2926 tun->filter_attached = false;
2927}
2928
2929static int tun_attach_filter(struct tun_struct *tun)
2930{
2931 int i, ret = 0;
2932 struct tun_file *tfile;
2933
2934 for (i = 0; i < tun->numqueues; i++) {
Jason Wangb8deabd2013-01-11 16:59:32 +00002935 tfile = rtnl_dereference(tun->tfiles[i]);
Hannes Frederic Sowa8ced4252016-04-05 17:10:16 +02002936 lock_sock(tfile->socket.sk);
2937 ret = sk_attach_filter(&tun->fprog, tfile->socket.sk);
2938 release_sock(tfile->socket.sk);
Jason Wangc8d68e62012-10-31 19:46:00 +00002939 if (ret) {
2940 tun_detach_filter(tun, i);
2941 return ret;
2942 }
2943 }
2944
2945 tun->filter_attached = true;
2946 return ret;
2947}
2948
2949static void tun_set_sndbuf(struct tun_struct *tun)
2950{
2951 struct tun_file *tfile;
2952 int i;
2953
2954 for (i = 0; i < tun->numqueues; i++) {
Jason Wangb8deabd2013-01-11 16:59:32 +00002955 tfile = rtnl_dereference(tun->tfiles[i]);
Jason Wangc8d68e62012-10-31 19:46:00 +00002956 tfile->socket.sk->sk_sndbuf = tun->sndbuf;
2957 }
2958}
2959
Jason Wangcde8b152012-10-31 19:46:01 +00002960static int tun_set_queue(struct file *file, struct ifreq *ifr)
2961{
2962 struct tun_file *tfile = file->private_data;
2963 struct tun_struct *tun;
Jason Wangcde8b152012-10-31 19:46:01 +00002964 int ret = 0;
2965
2966 rtnl_lock();
2967
2968 if (ifr->ifr_flags & IFF_ATTACH_QUEUE) {
Jason Wang4008e972012-12-13 23:53:30 +00002969 tun = tfile->detached;
Paul Moore5dbbaf22013-01-14 07:12:19 +00002970 if (!tun) {
Jason Wangcde8b152012-10-31 19:46:01 +00002971 ret = -EINVAL;
Paul Moore5dbbaf22013-01-14 07:12:19 +00002972 goto unlock;
2973 }
2974 ret = security_tun_dev_attach_queue(tun->security);
2975 if (ret < 0)
2976 goto unlock;
Eric Dumazetaf3fb242018-09-28 14:51:49 -07002977 ret = tun_attach(tun, file, false, tun->flags & IFF_NAPI,
2978 tun->flags & IFF_NAPI_FRAGS);
Jason Wang4008e972012-12-13 23:53:30 +00002979 } else if (ifr->ifr_flags & IFF_DETACH_QUEUE) {
Jason Wangb8deabd2013-01-11 16:59:32 +00002980 tun = rtnl_dereference(tfile->tun);
Michael S. Tsirkin40630b82014-11-19 15:17:31 +02002981 if (!tun || !(tun->flags & IFF_MULTI_QUEUE) || tfile->detached)
Jason Wang4008e972012-12-13 23:53:30 +00002982 ret = -EINVAL;
2983 else
2984 __tun_detach(tfile, false);
2985 } else
Jason Wangcde8b152012-10-31 19:46:01 +00002986 ret = -EINVAL;
2987
Sabrina Dubroca83c1f362018-04-10 16:28:56 +02002988 if (ret >= 0)
2989 netdev_state_change(tun->dev);
2990
Paul Moore5dbbaf22013-01-14 07:12:19 +00002991unlock:
Jason Wangcde8b152012-10-31 19:46:01 +00002992 rtnl_unlock();
2993 return ret;
2994}
2995
Jason Wangcd5681d2018-01-16 16:31:01 +08002996static int tun_set_ebpf(struct tun_struct *tun, struct tun_prog **prog_p,
2997 void __user *data)
Jason Wang96f84062017-12-04 17:31:23 +08002998{
2999 struct bpf_prog *prog;
3000 int fd;
3001
3002 if (copy_from_user(&fd, data, sizeof(fd)))
3003 return -EFAULT;
3004
3005 if (fd == -1) {
3006 prog = NULL;
3007 } else {
3008 prog = bpf_prog_get_type(fd, BPF_PROG_TYPE_SOCKET_FILTER);
3009 if (IS_ERR(prog))
3010 return PTR_ERR(prog);
3011 }
3012
Jason Wangcd5681d2018-01-16 16:31:01 +08003013 return __tun_set_ebpf(tun, prog_p, prog);
Jason Wang96f84062017-12-04 17:31:23 +08003014}
3015
Arnd Bergmann50857e22009-11-06 22:52:32 -08003016static long __tun_chr_ioctl(struct file *file, unsigned int cmd,
3017 unsigned long arg, int ifreq_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003018{
Eric W. Biederman36b50ba2009-01-20 11:01:48 +00003019 struct tun_file *tfile = file->private_data;
Kirill Tkhaif6637062018-05-08 19:21:34 +03003020 struct net *net = sock_net(&tfile->sk);
Eric W. Biederman631ab462009-01-20 11:00:40 +00003021 struct tun_struct *tun;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003022 void __user* argp = (void __user*)arg;
Nicolas Dichtel26d31922018-11-28 19:12:56 +01003023 unsigned int ifindex, carrier;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003024 struct ifreq ifr;
Eric W. Biederman0625c882012-02-07 16:48:55 -08003025 kuid_t owner;
3026 kgid_t group;
Herbert Xu33dccbb2009-02-05 21:25:32 -08003027 int sndbuf;
Michael S. Tsirkind9d52b52010-03-17 17:45:01 +02003028 int vnet_hdr_sz;
Michael S. Tsirkin1cf8e412014-12-16 15:05:06 +02003029 int le;
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -07003030 int ret;
Sabrina Dubroca83c1f362018-04-10 16:28:56 +02003031 bool do_notify = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003032
Kirill Tkhaif2780d62018-02-14 16:40:14 +03003033 if (cmd == TUNSETIFF || cmd == TUNSETQUEUE ||
3034 (_IOC_TYPE(cmd) == SOCK_IOC_TYPE && cmd != SIOCGSKNS)) {
Arnd Bergmann50857e22009-11-06 22:52:32 -08003035 if (copy_from_user(&ifr, argp, ifreq_len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003036 return -EFAULT;
David S. Miller8bbb1812012-07-30 14:52:48 -07003037 } else {
Mathias Krausea117dac2012-07-29 19:45:14 +00003038 memset(&ifr, 0, sizeof(ifr));
David S. Miller8bbb1812012-07-30 14:52:48 -07003039 }
Eric W. Biederman631ab462009-01-20 11:00:40 +00003040 if (cmd == TUNGETFEATURES) {
3041 /* Currently this just means: "what IFF flags are valid?".
3042 * This is needed because we never checked for invalid flags on
Michael S. Tsirkin031f5e032014-11-19 14:44:40 +02003043 * TUNSETIFF.
3044 */
3045 return put_user(IFF_TUN | IFF_TAP | TUN_FEATURES,
Eric W. Biederman631ab462009-01-20 11:00:40 +00003046 (unsigned int __user*)argp);
Kirill Tkhaif6637062018-05-08 19:21:34 +03003047 } else if (cmd == TUNSETQUEUE) {
Jason Wangcde8b152012-10-31 19:46:01 +00003048 return tun_set_queue(file, &ifr);
Kirill Tkhaif6637062018-05-08 19:21:34 +03003049 } else if (cmd == SIOCGSKNS) {
3050 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
3051 return -EPERM;
3052 return open_related_ns(&net->ns, get_net_ns);
3053 }
Eric W. Biederman631ab462009-01-20 11:00:40 +00003054
Jason Wangc8d68e62012-10-31 19:46:00 +00003055 ret = 0;
Herbert Xu876bfd42009-08-06 14:22:44 +00003056 rtnl_lock();
3057
yuan linyu9484dc72017-09-23 22:36:52 +08003058 tun = tun_get(tfile);
Gao Feng0f16bc12016-10-25 22:26:09 +08003059 if (cmd == TUNSETIFF) {
3060 ret = -EEXIST;
3061 if (tun)
3062 goto unlock;
3063
Linus Torvalds1da177e2005-04-16 15:20:36 -07003064 ifr.ifr_name[IFNAMSIZ-1] = '\0';
3065
Kirill Tkhaif2780d62018-02-14 16:40:14 +03003066 ret = tun_set_iff(net, file, &ifr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003067
Herbert Xu876bfd42009-08-06 14:22:44 +00003068 if (ret)
3069 goto unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003070
Arnd Bergmann50857e22009-11-06 22:52:32 -08003071 if (copy_to_user(argp, &ifr, ifreq_len))
Herbert Xu876bfd42009-08-06 14:22:44 +00003072 ret = -EFAULT;
3073 goto unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003074 }
Pavel Emelyanovfb7589a2013-08-21 14:31:38 +04003075 if (cmd == TUNSETIFINDEX) {
3076 ret = -EPERM;
3077 if (tun)
3078 goto unlock;
3079
3080 ret = -EFAULT;
3081 if (copy_from_user(&ifindex, argp, sizeof(ifindex)))
3082 goto unlock;
3083
3084 ret = 0;
3085 tfile->ifindex = ifindex;
3086 goto unlock;
3087 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003088
Herbert Xu876bfd42009-08-06 14:22:44 +00003089 ret = -EBADFD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003090 if (!tun)
Herbert Xu876bfd42009-08-06 14:22:44 +00003091 goto unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003092
Jason Wang1e588332012-10-31 19:45:56 +00003093 tun_debug(KERN_INFO, tun, "tun_chr_ioctl cmd %u\n", cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003094
Kirill Tkhai0c3e0e32019-03-20 12:16:42 +03003095 net = dev_net(tun->dev);
Eric W. Biederman631ab462009-01-20 11:00:40 +00003096 ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003097 switch (cmd) {
Mark McLoughline3b99552008-08-15 15:09:56 -07003098 case TUNGETIFF:
Kirill Tkhai12132762019-03-20 12:16:53 +03003099 tun_get_iff(tun, &ifr);
Mark McLoughline3b99552008-08-15 15:09:56 -07003100
Pavel Emelyanov3d407a82013-08-21 14:32:00 +04003101 if (tfile->detached)
3102 ifr.ifr_flags |= IFF_DETACH_QUEUE;
Pavel Emelyanov849c9b62013-08-21 14:32:21 +04003103 if (!tfile->socket.sk->sk_filter)
3104 ifr.ifr_flags |= IFF_NOFILTER;
Pavel Emelyanov3d407a82013-08-21 14:32:00 +04003105
Arnd Bergmann50857e22009-11-06 22:52:32 -08003106 if (copy_to_user(argp, &ifr, ifreq_len))
Eric W. Biederman631ab462009-01-20 11:00:40 +00003107 ret = -EFAULT;
Mark McLoughline3b99552008-08-15 15:09:56 -07003108 break;
3109
Linus Torvalds1da177e2005-04-16 15:20:36 -07003110 case TUNSETNOCSUM:
3111 /* Disable/Enable checksum */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003112
Michał Mirosław88255372011-04-19 06:13:10 +00003113 /* [unimplemented] */
3114 tun_debug(KERN_INFO, tun, "ignored: set checksum %s\n",
Joe Perches6b8a66e2011-03-02 07:18:10 +00003115 arg ? "disabled" : "enabled");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003116 break;
3117
3118 case TUNSETPERSIST:
Jason Wang54f968d2012-10-31 19:45:57 +00003119 /* Disable/Enable persist mode. Keep an extra reference to the
3120 * module to prevent the module being unprobed.
3121 */
Michael S. Tsirkin40630b82014-11-19 15:17:31 +02003122 if (arg && !(tun->flags & IFF_PERSIST)) {
3123 tun->flags |= IFF_PERSIST;
Jason Wang54f968d2012-10-31 19:45:57 +00003124 __module_get(THIS_MODULE);
Sabrina Dubroca83c1f362018-04-10 16:28:56 +02003125 do_notify = true;
Jason Wangdd38bd82013-01-11 16:59:34 +00003126 }
Michael S. Tsirkin40630b82014-11-19 15:17:31 +02003127 if (!arg && (tun->flags & IFF_PERSIST)) {
3128 tun->flags &= ~IFF_PERSIST;
Jason Wang54f968d2012-10-31 19:45:57 +00003129 module_put(THIS_MODULE);
Sabrina Dubroca83c1f362018-04-10 16:28:56 +02003130 do_notify = true;
Jason Wang54f968d2012-10-31 19:45:57 +00003131 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003132
Joe Perches6b8a66e2011-03-02 07:18:10 +00003133 tun_debug(KERN_INFO, tun, "persist %s\n",
3134 arg ? "enabled" : "disabled");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003135 break;
3136
3137 case TUNSETOWNER:
3138 /* Set owner of the device */
Eric W. Biederman0625c882012-02-07 16:48:55 -08003139 owner = make_kuid(current_user_ns(), arg);
3140 if (!uid_valid(owner)) {
3141 ret = -EINVAL;
3142 break;
3143 }
3144 tun->owner = owner;
Sabrina Dubroca83c1f362018-04-10 16:28:56 +02003145 do_notify = true;
Jason Wang1e588332012-10-31 19:45:56 +00003146 tun_debug(KERN_INFO, tun, "owner set to %u\n",
Eric W. Biederman0625c882012-02-07 16:48:55 -08003147 from_kuid(&init_user_ns, tun->owner));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003148 break;
3149
Guido Guenther8c644622007-07-02 22:50:25 -07003150 case TUNSETGROUP:
3151 /* Set group of the device */
Eric W. Biederman0625c882012-02-07 16:48:55 -08003152 group = make_kgid(current_user_ns(), arg);
3153 if (!gid_valid(group)) {
3154 ret = -EINVAL;
3155 break;
3156 }
3157 tun->group = group;
Sabrina Dubroca83c1f362018-04-10 16:28:56 +02003158 do_notify = true;
Jason Wang1e588332012-10-31 19:45:56 +00003159 tun_debug(KERN_INFO, tun, "group set to %u\n",
Eric W. Biederman0625c882012-02-07 16:48:55 -08003160 from_kgid(&init_user_ns, tun->group));
Guido Guenther8c644622007-07-02 22:50:25 -07003161 break;
3162
Mike Kershawff4cc3a2005-09-01 17:40:05 -07003163 case TUNSETLINK:
3164 /* Only allow setting the type when the interface is down */
3165 if (tun->dev->flags & IFF_UP) {
Joe Perches6b8a66e2011-03-02 07:18:10 +00003166 tun_debug(KERN_INFO, tun,
3167 "Linktype set failed because interface is up\n");
David S. Miller48abfe02008-04-23 19:37:58 -07003168 ret = -EBUSY;
Mike Kershawff4cc3a2005-09-01 17:40:05 -07003169 } else {
3170 tun->dev->type = (int) arg;
Joe Perches6b8a66e2011-03-02 07:18:10 +00003171 tun_debug(KERN_INFO, tun, "linktype set to %d\n",
3172 tun->dev->type);
David S. Miller48abfe02008-04-23 19:37:58 -07003173 ret = 0;
Mike Kershawff4cc3a2005-09-01 17:40:05 -07003174 }
Eric W. Biederman631ab462009-01-20 11:00:40 +00003175 break;
Mike Kershawff4cc3a2005-09-01 17:40:05 -07003176
Linus Torvalds1da177e2005-04-16 15:20:36 -07003177#ifdef TUN_DEBUG
3178 case TUNSETDEBUG:
3179 tun->debug = arg;
3180 break;
3181#endif
Rusty Russell5228ddc2008-07-03 03:46:16 -07003182 case TUNSETOFFLOAD:
Michał Mirosław88255372011-04-19 06:13:10 +00003183 ret = set_offload(tun, arg);
Eric W. Biederman631ab462009-01-20 11:00:40 +00003184 break;
Rusty Russell5228ddc2008-07-03 03:46:16 -07003185
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -07003186 case TUNSETTXFILTER:
3187 /* Can be set only for TAPs */
Eric W. Biederman631ab462009-01-20 11:00:40 +00003188 ret = -EINVAL;
Michael S. Tsirkin40630b82014-11-19 15:17:31 +02003189 if ((tun->flags & TUN_TYPE_MASK) != IFF_TAP)
Eric W. Biederman631ab462009-01-20 11:00:40 +00003190 break;
Harvey Harrisonc0e5a8c2008-07-16 12:45:34 -07003191 ret = update_filter(&tun->txflt, (void __user *)arg);
Eric W. Biederman631ab462009-01-20 11:00:40 +00003192 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003193
3194 case SIOCGIFHWADDR:
Uwe Kleine-Königb5950762010-11-01 15:38:34 -04003195 /* Get hw address */
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -07003196 memcpy(ifr.ifr_hwaddr.sa_data, tun->dev->dev_addr, ETH_ALEN);
3197 ifr.ifr_hwaddr.sa_family = tun->dev->type;
Arnd Bergmann50857e22009-11-06 22:52:32 -08003198 if (copy_to_user(argp, &ifr, ifreq_len))
Eric W. Biederman631ab462009-01-20 11:00:40 +00003199 ret = -EFAULT;
3200 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003201
3202 case SIOCSIFHWADDR:
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -07003203 /* Set hw address */
Joe Perches6b8a66e2011-03-02 07:18:10 +00003204 tun_debug(KERN_DEBUG, tun, "set hw address: %pM\n",
3205 ifr.ifr_hwaddr.sa_data);
Kim B. Heino40102372008-02-29 12:26:21 -08003206
Petr Machata3a37a962018-12-13 11:54:30 +00003207 ret = dev_set_mac_address(tun->dev, &ifr.ifr_hwaddr, NULL);
Eric W. Biederman631ab462009-01-20 11:00:40 +00003208 break;
Herbert Xu33dccbb2009-02-05 21:25:32 -08003209
3210 case TUNGETSNDBUF:
Jason Wang54f968d2012-10-31 19:45:57 +00003211 sndbuf = tfile->socket.sk->sk_sndbuf;
Herbert Xu33dccbb2009-02-05 21:25:32 -08003212 if (copy_to_user(argp, &sndbuf, sizeof(sndbuf)))
3213 ret = -EFAULT;
3214 break;
3215
3216 case TUNSETSNDBUF:
3217 if (copy_from_user(&sndbuf, argp, sizeof(sndbuf))) {
3218 ret = -EFAULT;
3219 break;
3220 }
Craig Gallek931619222017-10-30 18:50:11 -04003221 if (sndbuf <= 0) {
3222 ret = -EINVAL;
3223 break;
3224 }
Herbert Xu33dccbb2009-02-05 21:25:32 -08003225
Jason Wangc8d68e62012-10-31 19:46:00 +00003226 tun->sndbuf = sndbuf;
3227 tun_set_sndbuf(tun);
Herbert Xu33dccbb2009-02-05 21:25:32 -08003228 break;
3229
Michael S. Tsirkind9d52b52010-03-17 17:45:01 +02003230 case TUNGETVNETHDRSZ:
3231 vnet_hdr_sz = tun->vnet_hdr_sz;
3232 if (copy_to_user(argp, &vnet_hdr_sz, sizeof(vnet_hdr_sz)))
3233 ret = -EFAULT;
3234 break;
3235
3236 case TUNSETVNETHDRSZ:
3237 if (copy_from_user(&vnet_hdr_sz, argp, sizeof(vnet_hdr_sz))) {
3238 ret = -EFAULT;
3239 break;
3240 }
3241 if (vnet_hdr_sz < (int)sizeof(struct virtio_net_hdr)) {
3242 ret = -EINVAL;
3243 break;
3244 }
3245
3246 tun->vnet_hdr_sz = vnet_hdr_sz;
3247 break;
3248
Michael S. Tsirkin1cf8e412014-12-16 15:05:06 +02003249 case TUNGETVNETLE:
3250 le = !!(tun->flags & TUN_VNET_LE);
3251 if (put_user(le, (int __user *)argp))
3252 ret = -EFAULT;
3253 break;
3254
3255 case TUNSETVNETLE:
3256 if (get_user(le, (int __user *)argp)) {
3257 ret = -EFAULT;
3258 break;
3259 }
3260 if (le)
3261 tun->flags |= TUN_VNET_LE;
3262 else
3263 tun->flags &= ~TUN_VNET_LE;
3264 break;
3265
Greg Kurz8b8e6582015-04-24 14:50:36 +02003266 case TUNGETVNETBE:
3267 ret = tun_get_vnet_be(tun, argp);
3268 break;
3269
3270 case TUNSETVNETBE:
3271 ret = tun_set_vnet_be(tun, argp);
3272 break;
3273
Michael S. Tsirkin99405162010-02-14 01:01:10 +00003274 case TUNATTACHFILTER:
3275 /* Can be set only for TAPs */
3276 ret = -EINVAL;
Michael S. Tsirkin40630b82014-11-19 15:17:31 +02003277 if ((tun->flags & TUN_TYPE_MASK) != IFF_TAP)
Michael S. Tsirkin99405162010-02-14 01:01:10 +00003278 break;
3279 ret = -EFAULT;
Jason Wang54f968d2012-10-31 19:45:57 +00003280 if (copy_from_user(&tun->fprog, argp, sizeof(tun->fprog)))
Michael S. Tsirkin99405162010-02-14 01:01:10 +00003281 break;
3282
Jason Wangc8d68e62012-10-31 19:46:00 +00003283 ret = tun_attach_filter(tun);
Michael S. Tsirkin99405162010-02-14 01:01:10 +00003284 break;
3285
3286 case TUNDETACHFILTER:
3287 /* Can be set only for TAPs */
3288 ret = -EINVAL;
Michael S. Tsirkin40630b82014-11-19 15:17:31 +02003289 if ((tun->flags & TUN_TYPE_MASK) != IFF_TAP)
Michael S. Tsirkin99405162010-02-14 01:01:10 +00003290 break;
Jason Wangc8d68e62012-10-31 19:46:00 +00003291 ret = 0;
3292 tun_detach_filter(tun, tun->numqueues);
Michael S. Tsirkin99405162010-02-14 01:01:10 +00003293 break;
3294
Pavel Emelyanov76975e92013-08-21 14:32:39 +04003295 case TUNGETFILTER:
3296 ret = -EINVAL;
Michael S. Tsirkin40630b82014-11-19 15:17:31 +02003297 if ((tun->flags & TUN_TYPE_MASK) != IFF_TAP)
Pavel Emelyanov76975e92013-08-21 14:32:39 +04003298 break;
3299 ret = -EFAULT;
3300 if (copy_to_user(argp, &tun->fprog, sizeof(tun->fprog)))
3301 break;
3302 ret = 0;
3303 break;
3304
Jason Wang96f84062017-12-04 17:31:23 +08003305 case TUNSETSTEERINGEBPF:
Jason Wangcd5681d2018-01-16 16:31:01 +08003306 ret = tun_set_ebpf(tun, &tun->steering_prog, argp);
Jason Wang96f84062017-12-04 17:31:23 +08003307 break;
3308
Jason Wangaff3d702018-01-16 16:31:02 +08003309 case TUNSETFILTEREBPF:
3310 ret = tun_set_ebpf(tun, &tun->filter_prog, argp);
3311 break;
3312
Nicolas Dichtel26d31922018-11-28 19:12:56 +01003313 case TUNSETCARRIER:
3314 ret = -EFAULT;
3315 if (copy_from_user(&carrier, argp, sizeof(carrier)))
3316 goto unlock;
3317
3318 ret = tun_net_change_carrier(tun->dev, (bool)carrier);
3319 break;
3320
Kirill Tkhai0c3e0e32019-03-20 12:16:42 +03003321 case TUNGETDEVNETNS:
3322 ret = -EPERM;
3323 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
3324 goto unlock;
3325 ret = open_related_ns(&net->ns, get_net_ns);
3326 break;
3327
Linus Torvalds1da177e2005-04-16 15:20:36 -07003328 default:
Eric W. Biederman631ab462009-01-20 11:00:40 +00003329 ret = -EINVAL;
3330 break;
Joe Perchesee289b62010-05-17 22:47:34 -07003331 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003332
Sabrina Dubroca83c1f362018-04-10 16:28:56 +02003333 if (do_notify)
3334 netdev_state_change(tun->dev);
3335
Herbert Xu876bfd42009-08-06 14:22:44 +00003336unlock:
3337 rtnl_unlock();
3338 if (tun)
3339 tun_put(tun);
Eric W. Biederman631ab462009-01-20 11:00:40 +00003340 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003341}
3342
Arnd Bergmann50857e22009-11-06 22:52:32 -08003343static long tun_chr_ioctl(struct file *file,
3344 unsigned int cmd, unsigned long arg)
3345{
3346 return __tun_chr_ioctl(file, cmd, arg, sizeof (struct ifreq));
3347}
3348
3349#ifdef CONFIG_COMPAT
3350static long tun_chr_compat_ioctl(struct file *file,
3351 unsigned int cmd, unsigned long arg)
3352{
3353 switch (cmd) {
3354 case TUNSETIFF:
3355 case TUNGETIFF:
3356 case TUNSETTXFILTER:
3357 case TUNGETSNDBUF:
3358 case TUNSETSNDBUF:
3359 case SIOCGIFHWADDR:
3360 case SIOCSIFHWADDR:
3361 arg = (unsigned long)compat_ptr(arg);
3362 break;
3363 default:
3364 arg = (compat_ulong_t)arg;
3365 break;
3366 }
3367
3368 /*
3369 * compat_ifreq is shorter than ifreq, so we must not access beyond
3370 * the end of that structure. All fields that are used in this
3371 * driver are compatible though, we don't need to convert the
3372 * contents.
3373 */
3374 return __tun_chr_ioctl(file, cmd, arg, sizeof(struct compat_ifreq));
3375}
3376#endif /* CONFIG_COMPAT */
3377
Linus Torvalds1da177e2005-04-16 15:20:36 -07003378static int tun_chr_fasync(int fd, struct file *file, int on)
3379{
Jason Wang54f968d2012-10-31 19:45:57 +00003380 struct tun_file *tfile = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003381 int ret;
3382
Jason Wang54f968d2012-10-31 19:45:57 +00003383 if ((ret = fasync_helper(fd, file, on, &tfile->fasync)) < 0)
Jonathan Corbet9d319522008-06-19 15:50:37 -06003384 goto out;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04003385
Linus Torvalds1da177e2005-04-16 15:20:36 -07003386 if (on) {
Eric W. Biederman01919132017-07-16 22:05:57 -05003387 __f_setown(file, task_pid(current), PIDTYPE_TGID, 0);
Jason Wang54f968d2012-10-31 19:45:57 +00003388 tfile->flags |= TUN_FASYNC;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04003389 } else
Jason Wang54f968d2012-10-31 19:45:57 +00003390 tfile->flags &= ~TUN_FASYNC;
Jonathan Corbet9d319522008-06-19 15:50:37 -06003391 ret = 0;
3392out:
Jonathan Corbet9d319522008-06-19 15:50:37 -06003393 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003394}
3395
3396static int tun_chr_open(struct inode *inode, struct file * file)
3397{
Eric W. Biederman140e807da2015-05-08 21:07:08 -05003398 struct net *net = current->nsproxy->net_ns;
Eric W. Biederman631ab462009-01-20 11:00:40 +00003399 struct tun_file *tfile;
Thomas Gleixnerdeed49f2009-10-14 01:19:46 -07003400
Joe Perches6b8a66e2011-03-02 07:18:10 +00003401 DBG1(KERN_INFO, "tunX: tun_chr_open\n");
Eric W. Biederman631ab462009-01-20 11:00:40 +00003402
Eric W. Biederman140e807da2015-05-08 21:07:08 -05003403 tfile = (struct tun_file *)sk_alloc(net, AF_UNSPEC, GFP_KERNEL,
Eric W. Biederman11aa9c22015-05-08 21:09:13 -05003404 &tun_proto, 0);
Eric W. Biederman631ab462009-01-20 11:00:40 +00003405 if (!tfile)
3406 return -ENOMEM;
Jason Wangb196d882018-05-11 10:49:25 +08003407 if (ptr_ring_init(&tfile->tx_ring, 0, GFP_KERNEL)) {
3408 sk_free(&tfile->sk);
3409 return -ENOMEM;
3410 }
3411
Eric Dumazetc7256f52018-09-28 14:51:48 -07003412 mutex_init(&tfile->napi_mutex);
Monam Agarwalc9566742014-03-24 00:02:32 +05303413 RCU_INIT_POINTER(tfile->tun, NULL);
Jason Wang54f968d2012-10-31 19:45:57 +00003414 tfile->flags = 0;
Pavel Emelyanovfb7589a2013-08-21 14:31:38 +04003415 tfile->ifindex = 0;
Jason Wang54f968d2012-10-31 19:45:57 +00003416
Al Viro333f7902019-07-05 20:14:16 +01003417 init_waitqueue_head(&tfile->socket.wq.wait);
Jason Wang54f968d2012-10-31 19:45:57 +00003418
3419 tfile->socket.file = file;
3420 tfile->socket.ops = &tun_socket_ops;
3421
3422 sock_init_data(&tfile->socket, &tfile->sk);
Jason Wang54f968d2012-10-31 19:45:57 +00003423
3424 tfile->sk.sk_write_space = tun_sock_write_space;
3425 tfile->sk.sk_sndbuf = INT_MAX;
3426
Eric W. Biederman631ab462009-01-20 11:00:40 +00003427 file->private_data = tfile;
Jason Wang4008e972012-12-13 23:53:30 +00003428 INIT_LIST_HEAD(&tfile->next);
Jason Wang54f968d2012-10-31 19:45:57 +00003429
Jason Wang19a6afb2013-06-08 14:17:41 +08003430 sock_set_flag(&tfile->sk, SOCK_ZEROCOPY);
3431
Linus Torvalds1da177e2005-04-16 15:20:36 -07003432 return 0;
3433}
3434
3435static int tun_chr_close(struct inode *inode, struct file *file)
3436{
Eric W. Biederman631ab462009-01-20 11:00:40 +00003437 struct tun_file *tfile = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003438
Jason Wangc8d68e62012-10-31 19:46:00 +00003439 tun_detach(tfile, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003440
3441 return 0;
3442}
3443
Masatake YAMATO93e14b62014-01-29 16:43:31 +09003444#ifdef CONFIG_PROC_FS
yuan linyu9484dc72017-09-23 22:36:52 +08003445static void tun_chr_show_fdinfo(struct seq_file *m, struct file *file)
Masatake YAMATO93e14b62014-01-29 16:43:31 +09003446{
yuan linyu9484dc72017-09-23 22:36:52 +08003447 struct tun_file *tfile = file->private_data;
Masatake YAMATO93e14b62014-01-29 16:43:31 +09003448 struct tun_struct *tun;
3449 struct ifreq ifr;
3450
3451 memset(&ifr, 0, sizeof(ifr));
3452
3453 rtnl_lock();
yuan linyu9484dc72017-09-23 22:36:52 +08003454 tun = tun_get(tfile);
Masatake YAMATO93e14b62014-01-29 16:43:31 +09003455 if (tun)
Kirill Tkhai12132762019-03-20 12:16:53 +03003456 tun_get_iff(tun, &ifr);
Masatake YAMATO93e14b62014-01-29 16:43:31 +09003457 rtnl_unlock();
3458
3459 if (tun)
3460 tun_put(tun);
3461
Joe Perchesa3816ab2014-09-29 16:08:25 -07003462 seq_printf(m, "iff:\t%s\n", ifr.ifr_name);
Masatake YAMATO93e14b62014-01-29 16:43:31 +09003463}
3464#endif
3465
Arjan van de Vend54b1fd2007-02-12 00:55:34 -08003466static const struct file_operations tun_fops = {
Jeff Garzik6aa20a22006-09-13 13:24:59 -04003467 .owner = THIS_MODULE,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003468 .llseek = no_llseek,
Al Viro9b067032014-11-07 13:52:07 -05003469 .read_iter = tun_chr_read_iter,
Al Virof5ff53b2014-06-19 15:36:49 -04003470 .write_iter = tun_chr_write_iter,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003471 .poll = tun_chr_poll,
Arnd Bergmann50857e22009-11-06 22:52:32 -08003472 .unlocked_ioctl = tun_chr_ioctl,
3473#ifdef CONFIG_COMPAT
3474 .compat_ioctl = tun_chr_compat_ioctl,
3475#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003476 .open = tun_chr_open,
3477 .release = tun_chr_close,
Masatake YAMATO93e14b62014-01-29 16:43:31 +09003478 .fasync = tun_chr_fasync,
3479#ifdef CONFIG_PROC_FS
3480 .show_fdinfo = tun_chr_show_fdinfo,
3481#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003482};
3483
3484static struct miscdevice tun_miscdev = {
3485 .minor = TUN_MINOR,
3486 .name = "tun",
Kay Sieverse454cea2009-09-18 23:01:12 +02003487 .nodename = "net/tun",
Linus Torvalds1da177e2005-04-16 15:20:36 -07003488 .fops = &tun_fops,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003489};
3490
3491/* ethtool interface */
3492
Chas Williams4e24f2d2018-06-02 17:49:53 -04003493static void tun_default_link_ksettings(struct net_device *dev,
3494 struct ethtool_link_ksettings *cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003495{
Philippe Reynes29ccc492017-03-11 22:03:50 +01003496 ethtool_link_ksettings_zero_link_mode(cmd, supported);
3497 ethtool_link_ksettings_zero_link_mode(cmd, advertising);
3498 cmd->base.speed = SPEED_10;
3499 cmd->base.duplex = DUPLEX_FULL;
3500 cmd->base.port = PORT_TP;
3501 cmd->base.phy_address = 0;
3502 cmd->base.autoneg = AUTONEG_DISABLE;
Chas Williams4e24f2d2018-06-02 17:49:53 -04003503}
3504
3505static int tun_get_link_ksettings(struct net_device *dev,
3506 struct ethtool_link_ksettings *cmd)
3507{
3508 struct tun_struct *tun = netdev_priv(dev);
3509
3510 memcpy(cmd, &tun->link_ksettings, sizeof(*cmd));
3511 return 0;
3512}
3513
3514static int tun_set_link_ksettings(struct net_device *dev,
3515 const struct ethtool_link_ksettings *cmd)
3516{
3517 struct tun_struct *tun = netdev_priv(dev);
3518
3519 memcpy(&tun->link_ksettings, cmd, sizeof(*cmd));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003520 return 0;
3521}
3522
3523static void tun_get_drvinfo(struct net_device *dev, struct ethtool_drvinfo *info)
3524{
3525 struct tun_struct *tun = netdev_priv(dev);
3526
Rick Jones33a5ba12011-11-15 14:59:53 +00003527 strlcpy(info->driver, DRV_NAME, sizeof(info->driver));
3528 strlcpy(info->version, DRV_VERSION, sizeof(info->version));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003529
3530 switch (tun->flags & TUN_TYPE_MASK) {
Michael S. Tsirkin40630b82014-11-19 15:17:31 +02003531 case IFF_TUN:
Rick Jones33a5ba12011-11-15 14:59:53 +00003532 strlcpy(info->bus_info, "tun", sizeof(info->bus_info));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003533 break;
Michael S. Tsirkin40630b82014-11-19 15:17:31 +02003534 case IFF_TAP:
Rick Jones33a5ba12011-11-15 14:59:53 +00003535 strlcpy(info->bus_info, "tap", sizeof(info->bus_info));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003536 break;
3537 }
3538}
3539
3540static u32 tun_get_msglevel(struct net_device *dev)
3541{
3542#ifdef TUN_DEBUG
3543 struct tun_struct *tun = netdev_priv(dev);
3544 return tun->debug;
3545#else
3546 return -EOPNOTSUPP;
3547#endif
3548}
3549
3550static void tun_set_msglevel(struct net_device *dev, u32 value)
3551{
3552#ifdef TUN_DEBUG
3553 struct tun_struct *tun = netdev_priv(dev);
3554 tun->debug = value;
3555#endif
3556}
3557
Jason Wang5503fce2017-01-18 15:02:03 +08003558static int tun_get_coalesce(struct net_device *dev,
3559 struct ethtool_coalesce *ec)
3560{
3561 struct tun_struct *tun = netdev_priv(dev);
3562
3563 ec->rx_max_coalesced_frames = tun->rx_batched;
3564
3565 return 0;
3566}
3567
3568static int tun_set_coalesce(struct net_device *dev,
3569 struct ethtool_coalesce *ec)
3570{
3571 struct tun_struct *tun = netdev_priv(dev);
3572
3573 if (ec->rx_max_coalesced_frames > NAPI_POLL_WEIGHT)
3574 tun->rx_batched = NAPI_POLL_WEIGHT;
3575 else
3576 tun->rx_batched = ec->rx_max_coalesced_frames;
3577
3578 return 0;
3579}
3580
Jeff Garzik7282d492006-09-13 14:30:00 -04003581static const struct ethtool_ops tun_ethtool_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003582 .get_drvinfo = tun_get_drvinfo,
3583 .get_msglevel = tun_get_msglevel,
3584 .set_msglevel = tun_set_msglevel,
Nolan Leakebee31362010-07-27 13:53:43 +00003585 .get_link = ethtool_op_get_link,
Richard Cochraneda29772013-07-19 19:40:10 +02003586 .get_ts_info = ethtool_op_get_ts_info,
Jason Wang5503fce2017-01-18 15:02:03 +08003587 .get_coalesce = tun_get_coalesce,
3588 .set_coalesce = tun_set_coalesce,
Philippe Reynes29ccc492017-03-11 22:03:50 +01003589 .get_link_ksettings = tun_get_link_ksettings,
Chas Williams4e24f2d2018-06-02 17:49:53 -04003590 .set_link_ksettings = tun_set_link_ksettings,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003591};
3592
Jason Wang1576d982016-06-30 14:45:36 +08003593static int tun_queue_resize(struct tun_struct *tun)
3594{
3595 struct net_device *dev = tun->dev;
3596 struct tun_file *tfile;
Jason Wang5990a302018-01-04 11:14:27 +08003597 struct ptr_ring **rings;
Jason Wang1576d982016-06-30 14:45:36 +08003598 int n = tun->numqueues + tun->numdisabled;
3599 int ret, i;
3600
Jason Wang5990a302018-01-04 11:14:27 +08003601 rings = kmalloc_array(n, sizeof(*rings), GFP_KERNEL);
3602 if (!rings)
Jason Wang1576d982016-06-30 14:45:36 +08003603 return -ENOMEM;
3604
3605 for (i = 0; i < tun->numqueues; i++) {
3606 tfile = rtnl_dereference(tun->tfiles[i]);
Jason Wang5990a302018-01-04 11:14:27 +08003607 rings[i] = &tfile->tx_ring;
Jason Wang1576d982016-06-30 14:45:36 +08003608 }
3609 list_for_each_entry(tfile, &tun->disabled, next)
Jason Wang5990a302018-01-04 11:14:27 +08003610 rings[i++] = &tfile->tx_ring;
Jason Wang1576d982016-06-30 14:45:36 +08003611
Jason Wang5990a302018-01-04 11:14:27 +08003612 ret = ptr_ring_resize_multiple(rings, n,
3613 dev->tx_queue_len, GFP_KERNEL,
Jason Wangfc72d1d2018-01-04 11:14:28 +08003614 tun_ptr_free);
Jason Wang1576d982016-06-30 14:45:36 +08003615
Jason Wang5990a302018-01-04 11:14:27 +08003616 kfree(rings);
Jason Wang1576d982016-06-30 14:45:36 +08003617 return ret;
3618}
3619
3620static int tun_device_event(struct notifier_block *unused,
3621 unsigned long event, void *ptr)
3622{
3623 struct net_device *dev = netdev_notifier_info_to_dev(ptr);
3624 struct tun_struct *tun = netdev_priv(dev);
Fei Li72b319d2019-06-17 21:26:36 +08003625 int i;
Jason Wang1576d982016-06-30 14:45:36 +08003626
Craig Gallek86dfb4ac2016-07-06 18:44:20 -04003627 if (dev->rtnl_link_ops != &tun_link_ops)
3628 return NOTIFY_DONE;
3629
Jason Wang1576d982016-06-30 14:45:36 +08003630 switch (event) {
3631 case NETDEV_CHANGE_TX_QUEUE_LEN:
3632 if (tun_queue_resize(tun))
3633 return NOTIFY_BAD;
3634 break;
Fei Li72b319d2019-06-17 21:26:36 +08003635 case NETDEV_UP:
3636 for (i = 0; i < tun->numqueues; i++) {
3637 struct tun_file *tfile;
3638
3639 tfile = rtnl_dereference(tun->tfiles[i]);
3640 tfile->socket.sk->sk_write_space(tfile->socket.sk);
3641 }
3642 break;
Jason Wang1576d982016-06-30 14:45:36 +08003643 default:
3644 break;
3645 }
3646
3647 return NOTIFY_DONE;
3648}
3649
3650static struct notifier_block tun_notifier_block __read_mostly = {
3651 .notifier_call = tun_device_event,
3652};
Pavel Emelyanov79d17602008-04-16 00:40:46 -07003653
Linus Torvalds1da177e2005-04-16 15:20:36 -07003654static int __init tun_init(void)
3655{
3656 int ret = 0;
3657
Joe Perches6b8a66e2011-03-02 07:18:10 +00003658 pr_info("%s, %s\n", DRV_DESCRIPTION, DRV_VERSION);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003659
Eric W. Biedermanf019a7a2009-01-21 16:02:16 -08003660 ret = rtnl_link_register(&tun_link_ops);
Pavel Emelyanov79d17602008-04-16 00:40:46 -07003661 if (ret) {
Joe Perches6b8a66e2011-03-02 07:18:10 +00003662 pr_err("Can't register link_ops\n");
Eric W. Biedermanf019a7a2009-01-21 16:02:16 -08003663 goto err_linkops;
Pavel Emelyanov79d17602008-04-16 00:40:46 -07003664 }
3665
Linus Torvalds1da177e2005-04-16 15:20:36 -07003666 ret = misc_register(&tun_miscdev);
Pavel Emelyanov79d17602008-04-16 00:40:46 -07003667 if (ret) {
Joe Perches6b8a66e2011-03-02 07:18:10 +00003668 pr_err("Can't register misc device %d\n", TUN_MINOR);
Pavel Emelyanov79d17602008-04-16 00:40:46 -07003669 goto err_misc;
3670 }
Jason Wang1576d982016-06-30 14:45:36 +08003671
Tonghao Zhang5edfbd32017-07-20 02:41:34 -07003672 ret = register_netdevice_notifier(&tun_notifier_block);
3673 if (ret) {
3674 pr_err("Can't register netdevice notifier\n");
3675 goto err_notifier;
3676 }
3677
Eric W. Biedermanf019a7a2009-01-21 16:02:16 -08003678 return 0;
Tonghao Zhang5edfbd32017-07-20 02:41:34 -07003679
3680err_notifier:
3681 misc_deregister(&tun_miscdev);
Pavel Emelyanov79d17602008-04-16 00:40:46 -07003682err_misc:
Eric W. Biedermanf019a7a2009-01-21 16:02:16 -08003683 rtnl_link_unregister(&tun_link_ops);
3684err_linkops:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003685 return ret;
3686}
3687
3688static void tun_cleanup(void)
3689{
Jeff Garzik6aa20a22006-09-13 13:24:59 -04003690 misc_deregister(&tun_miscdev);
Eric W. Biedermanf019a7a2009-01-21 16:02:16 -08003691 rtnl_link_unregister(&tun_link_ops);
Jason Wang1576d982016-06-30 14:45:36 +08003692 unregister_netdevice_notifier(&tun_notifier_block);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003693}
3694
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00003695/* Get an underlying socket object from tun file. Returns error unless file is
3696 * attached to a device. The returned object works like a packet socket, it
3697 * can be used for sock_sendmsg/sock_recvmsg. The caller is responsible for
3698 * holding a reference to the file for as long as the socket is in use. */
3699struct socket *tun_get_socket(struct file *file)
3700{
Jason Wang6e914fc2012-10-31 19:45:58 +00003701 struct tun_file *tfile;
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00003702 if (file->f_op != &tun_fops)
3703 return ERR_PTR(-EINVAL);
Jason Wang6e914fc2012-10-31 19:45:58 +00003704 tfile = file->private_data;
3705 if (!tfile)
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00003706 return ERR_PTR(-EBADFD);
Jason Wang54f968d2012-10-31 19:45:57 +00003707 return &tfile->socket;
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00003708}
3709EXPORT_SYMBOL_GPL(tun_get_socket);
3710
Jason Wang5990a302018-01-04 11:14:27 +08003711struct ptr_ring *tun_get_tx_ring(struct file *file)
Jason Wang83339c62017-05-17 12:14:41 +08003712{
3713 struct tun_file *tfile;
3714
3715 if (file->f_op != &tun_fops)
3716 return ERR_PTR(-EINVAL);
3717 tfile = file->private_data;
3718 if (!tfile)
3719 return ERR_PTR(-EBADFD);
Jason Wang5990a302018-01-04 11:14:27 +08003720 return &tfile->tx_ring;
Jason Wang83339c62017-05-17 12:14:41 +08003721}
Jason Wang5990a302018-01-04 11:14:27 +08003722EXPORT_SYMBOL_GPL(tun_get_tx_ring);
Jason Wang83339c62017-05-17 12:14:41 +08003723
Linus Torvalds1da177e2005-04-16 15:20:36 -07003724module_init(tun_init);
3725module_exit(tun_cleanup);
3726MODULE_DESCRIPTION(DRV_DESCRIPTION);
3727MODULE_AUTHOR(DRV_COPYRIGHT);
3728MODULE_LICENSE("GPL");
3729MODULE_ALIAS_MISCDEV(TUN_MINOR);
Kay Sievers578454f2010-05-20 18:07:20 +02003730MODULE_ALIAS("devname:net/tun");