blob: d7c55e0fa8f4fa58bf723a066c81fab684973b7e [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;
163 struct socket_wq wq;
Jason Wang6e914fc2012-10-31 19:45:58 +0000164 struct tun_struct __rcu *tun;
Jason Wang54f968d2012-10-31 19:45:57 +0000165 struct fasync_struct *fasync;
166 /* only used for fasnyc */
167 unsigned int flags;
Pavel Emelyanovfb7589a2013-08-21 14:31:38 +0400168 union {
169 u16 queue_index;
170 unsigned int ifindex;
171 };
Petar Penkov94317092017-09-22 13:49:14 -0700172 struct napi_struct napi;
Eric Dumazetaec72f32017-10-18 12:12:09 -0700173 bool napi_enabled;
Eric Dumazetaf3fb242018-09-28 14:51:49 -0700174 bool napi_frags_enabled;
Petar Penkov90e33d42017-09-22 13:49:15 -0700175 struct mutex napi_mutex; /* Protects access to the above napi */
Jason Wang4008e972012-12-13 23:53:30 +0000176 struct list_head next;
177 struct tun_struct *detached;
Jason Wang5990a302018-01-04 11:14:27 +0800178 struct ptr_ring tx_ring;
Jesper Dangaard Brouer8bf5c4e2018-01-03 11:25:59 +0100179 struct xdp_rxq_info xdp_rxq;
Eric W. Biederman631ab462009-01-20 11:00:40 +0000180};
181
Jason Wangf9e06c42018-11-15 17:43:10 +0800182struct tun_page {
183 struct page *page;
184 int count;
185};
186
Jason Wang96442e422012-10-31 19:46:02 +0000187struct tun_flow_entry {
188 struct hlist_node hash_link;
189 struct rcu_head rcu;
190 struct tun_struct *tun;
191
192 u32 rxhash;
Tom Herbert9bc88932013-12-22 18:54:32 +0800193 u32 rps_rxhash;
Jason Wang96442e422012-10-31 19:46:02 +0000194 int queue_index;
Li RongQing83b1bc12018-12-06 16:08:17 +0800195 unsigned long updated ____cacheline_aligned_in_smp;
Jason Wang96442e422012-10-31 19:46:02 +0000196};
197
198#define TUN_NUM_FLOW_ENTRIES 1024
Li RongQingf13b5462018-08-03 15:50:02 +0800199#define TUN_MASK_FLOW_ENTRIES (TUN_NUM_FLOW_ENTRIES - 1)
Jason Wang96442e422012-10-31 19:46:02 +0000200
Jason Wangcd5681d2018-01-16 16:31:01 +0800201struct tun_prog {
Jason Wang96f84062017-12-04 17:31:23 +0800202 struct rcu_head rcu;
203 struct bpf_prog *prog;
204};
205
Jason Wang54f968d2012-10-31 19:45:57 +0000206/* Since the socket were moved to tun_file, to preserve the behavior of persist
Rami Rosen36fe8c092012-11-25 22:07:40 +0000207 * device, socket filter, sndbuf and vnet header size were restore when the
Jason Wang54f968d2012-10-31 19:45:57 +0000208 * file were attached to a persist device.
209 */
Rusty Russell14daa022008-04-12 18:48:58 -0700210struct tun_struct {
Jason Wangc8d68e62012-10-31 19:46:00 +0000211 struct tun_file __rcu *tfiles[MAX_TAP_QUEUES];
212 unsigned int numqueues;
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -0700213 unsigned int flags;
Eric W. Biederman0625c882012-02-07 16:48:55 -0800214 kuid_t owner;
215 kgid_t group;
Rusty Russell14daa022008-04-12 18:48:58 -0700216
Rusty Russell14daa022008-04-12 18:48:58 -0700217 struct net_device *dev;
Michał Mirosławc8f44af2011-11-15 15:29:55 +0000218 netdev_features_t set_features;
Michał Mirosław88255372011-04-19 06:13:10 +0000219#define TUN_USER_FEATURES (NETIF_F_HW_CSUM|NETIF_F_TSO_ECN|NETIF_F_TSO| \
David S. Millerd591a1f2017-07-03 06:35:32 -0700220 NETIF_F_TSO6)
Michael S. Tsirkind9d52b52010-03-17 17:45:01 +0200221
Paolo Abenieaea34b2016-02-26 10:45:40 +0100222 int align;
Michael S. Tsirkind9d52b52010-03-17 17:45:01 +0200223 int vnet_hdr_sz;
Jason Wang54f968d2012-10-31 19:45:57 +0000224 int sndbuf;
225 struct tap_filter txflt;
226 struct sock_fprog fprog;
227 /* protected by rtnl lock */
228 bool filter_attached;
Rusty Russell14daa022008-04-12 18:48:58 -0700229#ifdef TUN_DEBUG
230 int debug;
231#endif
Jason Wang96442e422012-10-31 19:46:02 +0000232 spinlock_t lock;
Jason Wang96442e422012-10-31 19:46:02 +0000233 struct hlist_head flows[TUN_NUM_FLOW_ENTRIES];
234 struct timer_list flow_gc_timer;
235 unsigned long ageing_time;
Jason Wang4008e972012-12-13 23:53:30 +0000236 unsigned int numdisabled;
237 struct list_head disabled;
Paul Moore5dbbaf22013-01-14 07:12:19 +0000238 void *security;
Jason Wangb8732fb2013-01-23 03:59:13 +0000239 u32 flow_count;
Jason Wang5503fce2017-01-18 15:02:03 +0800240 u32 rx_batched;
Paolo Abeni608b9972016-04-13 10:52:20 +0200241 struct tun_pcpu_stats __percpu *pcpu_stats;
Jason Wang761876c2017-08-11 19:41:18 +0800242 struct bpf_prog __rcu *xdp_prog;
Jason Wangcd5681d2018-01-16 16:31:01 +0800243 struct tun_prog __rcu *steering_prog;
Jason Wangaff3d702018-01-16 16:31:02 +0800244 struct tun_prog __rcu *filter_prog;
Chas Williams4e24f2d2018-06-02 17:49:53 -0400245 struct ethtool_link_ksettings link_ksettings;
Rusty Russell14daa022008-04-12 18:48:58 -0700246};
247
Jason Wangaff3d702018-01-16 16:31:02 +0800248struct veth {
249 __be16 h_vlan_proto;
250 __be16 h_vlan_TCI;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251};
252
Jesper Dangaard Brouer1ffcbc82018-04-17 16:45:47 +0200253bool tun_is_xdp_frame(void *ptr)
Jason Wangfc72d1d2018-01-04 11:14:28 +0800254{
255 return (unsigned long)ptr & TUN_XDP_FLAG;
256}
Jesper Dangaard Brouer1ffcbc82018-04-17 16:45:47 +0200257EXPORT_SYMBOL(tun_is_xdp_frame);
Jason Wangfc72d1d2018-01-04 11:14:28 +0800258
259void *tun_xdp_to_ptr(void *ptr)
260{
261 return (void *)((unsigned long)ptr | TUN_XDP_FLAG);
262}
263EXPORT_SYMBOL(tun_xdp_to_ptr);
264
265void *tun_ptr_to_xdp(void *ptr)
266{
267 return (void *)((unsigned long)ptr & ~TUN_XDP_FLAG);
268}
269EXPORT_SYMBOL(tun_ptr_to_xdp);
270
Petar Penkov94317092017-09-22 13:49:14 -0700271static int tun_napi_receive(struct napi_struct *napi, int budget)
272{
273 struct tun_file *tfile = container_of(napi, struct tun_file, napi);
274 struct sk_buff_head *queue = &tfile->sk.sk_write_queue;
275 struct sk_buff_head process_queue;
276 struct sk_buff *skb;
277 int received = 0;
278
279 __skb_queue_head_init(&process_queue);
280
281 spin_lock(&queue->lock);
282 skb_queue_splice_tail_init(queue, &process_queue);
283 spin_unlock(&queue->lock);
284
285 while (received < budget && (skb = __skb_dequeue(&process_queue))) {
286 napi_gro_receive(napi, skb);
287 ++received;
288 }
289
290 if (!skb_queue_empty(&process_queue)) {
291 spin_lock(&queue->lock);
292 skb_queue_splice(&process_queue, queue);
293 spin_unlock(&queue->lock);
294 }
295
296 return received;
297}
298
299static int tun_napi_poll(struct napi_struct *napi, int budget)
300{
301 unsigned int received;
302
303 received = tun_napi_receive(napi, budget);
304
305 if (received < budget)
306 napi_complete_done(napi, received);
307
308 return received;
309}
310
311static void tun_napi_init(struct tun_struct *tun, struct tun_file *tfile,
Eric Dumazetaf3fb242018-09-28 14:51:49 -0700312 bool napi_en, bool napi_frags)
Petar Penkov94317092017-09-22 13:49:14 -0700313{
Eric Dumazetaec72f32017-10-18 12:12:09 -0700314 tfile->napi_enabled = napi_en;
Eric Dumazetaf3fb242018-09-28 14:51:49 -0700315 tfile->napi_frags_enabled = napi_en && napi_frags;
Petar Penkov94317092017-09-22 13:49:14 -0700316 if (napi_en) {
317 netif_napi_add(tun->dev, &tfile->napi, tun_napi_poll,
318 NAPI_POLL_WEIGHT);
319 napi_enable(&tfile->napi);
320 }
321}
322
Eric Dumazet06e55ad2018-09-28 14:51:47 -0700323static void tun_napi_disable(struct tun_file *tfile)
Petar Penkov94317092017-09-22 13:49:14 -0700324{
Eric Dumazetaec72f32017-10-18 12:12:09 -0700325 if (tfile->napi_enabled)
Petar Penkov94317092017-09-22 13:49:14 -0700326 napi_disable(&tfile->napi);
327}
328
Eric Dumazet06e55ad2018-09-28 14:51:47 -0700329static void tun_napi_del(struct tun_file *tfile)
Petar Penkov94317092017-09-22 13:49:14 -0700330{
Eric Dumazetaec72f32017-10-18 12:12:09 -0700331 if (tfile->napi_enabled)
Petar Penkov94317092017-09-22 13:49:14 -0700332 netif_napi_del(&tfile->napi);
333}
334
Eric Dumazetaf3fb242018-09-28 14:51:49 -0700335static bool tun_napi_frags_enabled(const struct tun_file *tfile)
Petar Penkov90e33d42017-09-22 13:49:15 -0700336{
Eric Dumazetaf3fb242018-09-28 14:51:49 -0700337 return tfile->napi_frags_enabled;
Petar Penkov90e33d42017-09-22 13:49:15 -0700338}
339
Greg Kurz8b8e6582015-04-24 14:50:36 +0200340#ifdef CONFIG_TUN_VNET_CROSS_LE
341static inline bool tun_legacy_is_little_endian(struct tun_struct *tun)
342{
343 return tun->flags & TUN_VNET_BE ? false :
344 virtio_legacy_is_little_endian();
345}
346
347static long tun_get_vnet_be(struct tun_struct *tun, int __user *argp)
348{
349 int be = !!(tun->flags & TUN_VNET_BE);
350
351 if (put_user(be, argp))
352 return -EFAULT;
353
354 return 0;
355}
356
357static long tun_set_vnet_be(struct tun_struct *tun, int __user *argp)
358{
359 int be;
360
361 if (get_user(be, argp))
362 return -EFAULT;
363
364 if (be)
365 tun->flags |= TUN_VNET_BE;
366 else
367 tun->flags &= ~TUN_VNET_BE;
368
369 return 0;
370}
371#else
372static inline bool tun_legacy_is_little_endian(struct tun_struct *tun)
373{
374 return virtio_legacy_is_little_endian();
375}
376
377static long tun_get_vnet_be(struct tun_struct *tun, int __user *argp)
378{
379 return -EINVAL;
380}
381
382static long tun_set_vnet_be(struct tun_struct *tun, int __user *argp)
383{
384 return -EINVAL;
385}
386#endif /* CONFIG_TUN_VNET_CROSS_LE */
387
Greg Kurz25bd55bb2015-04-24 14:24:38 +0200388static inline bool tun_is_little_endian(struct tun_struct *tun)
389{
Greg Kurz7d824102015-04-24 14:26:24 +0200390 return tun->flags & TUN_VNET_LE ||
Greg Kurz8b8e6582015-04-24 14:50:36 +0200391 tun_legacy_is_little_endian(tun);
Greg Kurz25bd55bb2015-04-24 14:24:38 +0200392}
393
Michael S. Tsirkin56f0dcc2014-10-23 22:59:31 +0300394static inline u16 tun16_to_cpu(struct tun_struct *tun, __virtio16 val)
395{
Greg Kurz25bd55bb2015-04-24 14:24:38 +0200396 return __virtio16_to_cpu(tun_is_little_endian(tun), val);
Michael S. Tsirkin56f0dcc2014-10-23 22:59:31 +0300397}
398
399static inline __virtio16 cpu_to_tun16(struct tun_struct *tun, u16 val)
400{
Greg Kurz25bd55bb2015-04-24 14:24:38 +0200401 return __cpu_to_virtio16(tun_is_little_endian(tun), val);
Michael S. Tsirkin56f0dcc2014-10-23 22:59:31 +0300402}
403
Jason Wang96442e422012-10-31 19:46:02 +0000404static inline u32 tun_hashfn(u32 rxhash)
405{
Li RongQingf13b5462018-08-03 15:50:02 +0800406 return rxhash & TUN_MASK_FLOW_ENTRIES;
Jason Wang96442e422012-10-31 19:46:02 +0000407}
408
409static struct tun_flow_entry *tun_flow_find(struct hlist_head *head, u32 rxhash)
410{
411 struct tun_flow_entry *e;
Jason Wang96442e422012-10-31 19:46:02 +0000412
Sasha Levinb67bfe02013-02-27 17:06:00 -0800413 hlist_for_each_entry_rcu(e, head, hash_link) {
Jason Wang96442e422012-10-31 19:46:02 +0000414 if (e->rxhash == rxhash)
415 return e;
416 }
417 return NULL;
418}
419
420static struct tun_flow_entry *tun_flow_create(struct tun_struct *tun,
421 struct hlist_head *head,
422 u32 rxhash, u16 queue_index)
423{
Eric Dumazet9fdc6be2012-12-21 07:17:21 +0000424 struct tun_flow_entry *e = kmalloc(sizeof(*e), GFP_ATOMIC);
425
Jason Wang96442e422012-10-31 19:46:02 +0000426 if (e) {
427 tun_debug(KERN_INFO, tun, "create flow: hash %u index %u\n",
428 rxhash, queue_index);
429 e->updated = jiffies;
430 e->rxhash = rxhash;
Tom Herbert9bc88932013-12-22 18:54:32 +0800431 e->rps_rxhash = 0;
Jason Wang96442e422012-10-31 19:46:02 +0000432 e->queue_index = queue_index;
433 e->tun = tun;
434 hlist_add_head_rcu(&e->hash_link, head);
Jason Wangb8732fb2013-01-23 03:59:13 +0000435 ++tun->flow_count;
Jason Wang96442e422012-10-31 19:46:02 +0000436 }
437 return e;
438}
439
Jason Wang96442e422012-10-31 19:46:02 +0000440static void tun_flow_delete(struct tun_struct *tun, struct tun_flow_entry *e)
441{
442 tun_debug(KERN_INFO, tun, "delete flow: hash %u index %u\n",
443 e->rxhash, e->queue_index);
444 hlist_del_rcu(&e->hash_link);
Eric Dumazet9fdc6be2012-12-21 07:17:21 +0000445 kfree_rcu(e, rcu);
Jason Wangb8732fb2013-01-23 03:59:13 +0000446 --tun->flow_count;
Jason Wang96442e422012-10-31 19:46:02 +0000447}
448
449static void tun_flow_flush(struct tun_struct *tun)
450{
451 int i;
452
453 spin_lock_bh(&tun->lock);
454 for (i = 0; i < TUN_NUM_FLOW_ENTRIES; i++) {
455 struct tun_flow_entry *e;
Sasha Levinb67bfe02013-02-27 17:06:00 -0800456 struct hlist_node *n;
Jason Wang96442e422012-10-31 19:46:02 +0000457
Sasha Levinb67bfe02013-02-27 17:06:00 -0800458 hlist_for_each_entry_safe(e, n, &tun->flows[i], hash_link)
Jason Wang96442e422012-10-31 19:46:02 +0000459 tun_flow_delete(tun, e);
460 }
461 spin_unlock_bh(&tun->lock);
462}
463
464static void tun_flow_delete_by_queue(struct tun_struct *tun, u16 queue_index)
465{
466 int i;
467
468 spin_lock_bh(&tun->lock);
469 for (i = 0; i < TUN_NUM_FLOW_ENTRIES; i++) {
470 struct tun_flow_entry *e;
Sasha Levinb67bfe02013-02-27 17:06:00 -0800471 struct hlist_node *n;
Jason Wang96442e422012-10-31 19:46:02 +0000472
Sasha Levinb67bfe02013-02-27 17:06:00 -0800473 hlist_for_each_entry_safe(e, n, &tun->flows[i], hash_link) {
Jason Wang96442e422012-10-31 19:46:02 +0000474 if (e->queue_index == queue_index)
475 tun_flow_delete(tun, e);
476 }
477 }
478 spin_unlock_bh(&tun->lock);
479}
480
Kees Cooke99e88a2017-10-16 14:43:17 -0700481static void tun_flow_cleanup(struct timer_list *t)
Jason Wang96442e422012-10-31 19:46:02 +0000482{
Kees Cooke99e88a2017-10-16 14:43:17 -0700483 struct tun_struct *tun = from_timer(tun, t, flow_gc_timer);
Jason Wang96442e422012-10-31 19:46:02 +0000484 unsigned long delay = tun->ageing_time;
485 unsigned long next_timer = jiffies + delay;
486 unsigned long count = 0;
487 int i;
488
489 tun_debug(KERN_INFO, tun, "tun_flow_cleanup\n");
490
Eric Dumazet7dbfb4e2017-10-20 11:29:55 -0700491 spin_lock(&tun->lock);
Jason Wang96442e422012-10-31 19:46:02 +0000492 for (i = 0; i < TUN_NUM_FLOW_ENTRIES; i++) {
493 struct tun_flow_entry *e;
Sasha Levinb67bfe02013-02-27 17:06:00 -0800494 struct hlist_node *n;
Jason Wang96442e422012-10-31 19:46:02 +0000495
Sasha Levinb67bfe02013-02-27 17:06:00 -0800496 hlist_for_each_entry_safe(e, n, &tun->flows[i], hash_link) {
Jason Wang96442e422012-10-31 19:46:02 +0000497 unsigned long this_timer;
Eric Dumazet81d98fa2017-10-20 11:29:56 -0700498
Jason Wang96442e422012-10-31 19:46:02 +0000499 this_timer = e->updated + delay;
Eric Dumazet81d98fa2017-10-20 11:29:56 -0700500 if (time_before_eq(this_timer, jiffies)) {
Jason Wang96442e422012-10-31 19:46:02 +0000501 tun_flow_delete(tun, e);
Eric Dumazet81d98fa2017-10-20 11:29:56 -0700502 continue;
503 }
504 count++;
505 if (time_before(this_timer, next_timer))
Jason Wang96442e422012-10-31 19:46:02 +0000506 next_timer = this_timer;
507 }
508 }
509
510 if (count)
511 mod_timer(&tun->flow_gc_timer, round_jiffies_up(next_timer));
Eric Dumazet7dbfb4e2017-10-20 11:29:55 -0700512 spin_unlock(&tun->lock);
Jason Wang96442e422012-10-31 19:46:02 +0000513}
514
Eric Dumazet49974422012-12-12 19:22:57 +0000515static void tun_flow_update(struct tun_struct *tun, u32 rxhash,
Jason Wang9e857222013-01-28 01:05:19 +0000516 struct tun_file *tfile)
Jason Wang96442e422012-10-31 19:46:02 +0000517{
518 struct hlist_head *head;
519 struct tun_flow_entry *e;
520 unsigned long delay = tun->ageing_time;
Jason Wang9e857222013-01-28 01:05:19 +0000521 u16 queue_index = tfile->queue_index;
Jason Wang96442e422012-10-31 19:46:02 +0000522
Li RongQing5c327f62018-12-06 16:28:11 +0800523 head = &tun->flows[tun_hashfn(rxhash)];
Jason Wang96442e422012-10-31 19:46:02 +0000524
525 rcu_read_lock();
526
Jason Wang96442e422012-10-31 19:46:02 +0000527 e = tun_flow_find(head, rxhash);
528 if (likely(e)) {
529 /* TODO: keep queueing to old queue until it's empty? */
Li RongQing83b1bc12018-12-06 16:08:17 +0800530 if (e->queue_index != queue_index)
531 e->queue_index = queue_index;
532 if (e->updated != jiffies)
533 e->updated = jiffies;
Tom Herbert9bc88932013-12-22 18:54:32 +0800534 sock_rps_record_flow_hash(e->rps_rxhash);
Jason Wang96442e422012-10-31 19:46:02 +0000535 } else {
536 spin_lock_bh(&tun->lock);
Jason Wangb8732fb2013-01-23 03:59:13 +0000537 if (!tun_flow_find(head, rxhash) &&
538 tun->flow_count < MAX_TAP_FLOWS)
Jason Wang96442e422012-10-31 19:46:02 +0000539 tun_flow_create(tun, head, rxhash, queue_index);
540
541 if (!timer_pending(&tun->flow_gc_timer))
542 mod_timer(&tun->flow_gc_timer,
543 round_jiffies_up(jiffies + delay));
544 spin_unlock_bh(&tun->lock);
545 }
546
Jason Wang96442e422012-10-31 19:46:02 +0000547 rcu_read_unlock();
548}
549
Tom Herbert9bc88932013-12-22 18:54:32 +0800550/**
551 * Save the hash received in the stack receive path and update the
552 * flow_hash table accordingly.
553 */
554static inline void tun_flow_save_rps_rxhash(struct tun_flow_entry *e, u32 hash)
555{
Eric Dumazet567e4b72015-02-06 12:59:01 -0800556 if (unlikely(e->rps_rxhash != hash))
Tom Herbert9bc88932013-12-22 18:54:32 +0800557 e->rps_rxhash = hash;
Tom Herbert9bc88932013-12-22 18:54:32 +0800558}
559
Wang Li4b035272018-10-09 10:32:04 +0800560/* We try to identify a flow through its rxhash. The reason that
stephen hemminger92d4ea62013-12-05 20:42:58 -0800561 * we do not check rxq no. is because some cards(e.g 82599), chooses
Jason Wangc8d68e62012-10-31 19:46:00 +0000562 * the rxq based on the txq where the last packet of the flow comes. As
563 * the userspace application move between processors, we may get a
Wang Li4b035272018-10-09 10:32:04 +0800564 * different rxq no. here.
Jason Wangc8d68e62012-10-31 19:46:00 +0000565 */
Jason Wang96f84062017-12-04 17:31:23 +0800566static u16 tun_automq_select_queue(struct tun_struct *tun, struct sk_buff *skb)
Jason Wangc8d68e62012-10-31 19:46:00 +0000567{
Jason Wang96442e422012-10-31 19:46:02 +0000568 struct tun_flow_entry *e;
Jason Wangc8d68e62012-10-31 19:46:00 +0000569 u32 txq = 0;
570 u32 numqueues = 0;
571
Mark Rutland6aa7de02017-10-23 14:07:29 -0700572 numqueues = READ_ONCE(tun->numqueues);
Jason Wangc8d68e62012-10-31 19:46:00 +0000573
Jason Wangfeec0842017-06-06 14:09:49 +0800574 txq = __skb_get_hash_symmetric(skb);
Wang Li4b035272018-10-09 10:32:04 +0800575 e = tun_flow_find(&tun->flows[tun_hashfn(txq)], txq);
576 if (e) {
577 tun_flow_save_rps_rxhash(e, txq);
578 txq = e->queue_index;
579 } else {
580 /* use multiply and shift instead of expensive divide */
581 txq = ((u64)txq * numqueues) >> 32;
Jason Wangc8d68e62012-10-31 19:46:00 +0000582 }
583
Jason Wangc8d68e62012-10-31 19:46:00 +0000584 return txq;
585}
586
Jason Wang96f84062017-12-04 17:31:23 +0800587static u16 tun_ebpf_select_queue(struct tun_struct *tun, struct sk_buff *skb)
588{
Jason Wangcd5681d2018-01-16 16:31:01 +0800589 struct tun_prog *prog;
Jason Wanga35d3102019-05-08 23:20:17 -0400590 u32 numqueues;
Jason Wang96f84062017-12-04 17:31:23 +0800591 u16 ret = 0;
592
Jason Wanga35d3102019-05-08 23:20:17 -0400593 numqueues = READ_ONCE(tun->numqueues);
594 if (!numqueues)
595 return 0;
596
Jason Wang96f84062017-12-04 17:31:23 +0800597 prog = rcu_dereference(tun->steering_prog);
598 if (prog)
599 ret = bpf_prog_run_clear_cb(prog->prog, skb);
600
Jason Wanga35d3102019-05-08 23:20:17 -0400601 return ret % numqueues;
Jason Wang96f84062017-12-04 17:31:23 +0800602}
603
604static u16 tun_select_queue(struct net_device *dev, struct sk_buff *skb,
Paolo Abenia350ecc2019-03-20 11:02:06 +0100605 struct net_device *sb_dev)
Jason Wang96f84062017-12-04 17:31:23 +0800606{
607 struct tun_struct *tun = netdev_priv(dev);
608 u16 ret;
609
610 rcu_read_lock();
611 if (rcu_dereference(tun->steering_prog))
612 ret = tun_ebpf_select_queue(tun, skb);
613 else
614 ret = tun_automq_select_queue(tun, skb);
615 rcu_read_unlock();
616
617 return ret;
618}
619
Jason Wangcde8b152012-10-31 19:46:01 +0000620static inline bool tun_not_capable(struct tun_struct *tun)
621{
622 const struct cred *cred = current_cred();
Eric W. Biedermanc260b772012-11-18 21:34:11 +0000623 struct net *net = dev_net(tun->dev);
Jason Wangcde8b152012-10-31 19:46:01 +0000624
625 return ((uid_valid(tun->owner) && !uid_eq(cred->euid, tun->owner)) ||
626 (gid_valid(tun->group) && !in_egroup_p(tun->group))) &&
Eric W. Biedermanc260b772012-11-18 21:34:11 +0000627 !ns_capable(net->user_ns, CAP_NET_ADMIN);
Jason Wangcde8b152012-10-31 19:46:01 +0000628}
629
Jason Wangc8d68e62012-10-31 19:46:00 +0000630static void tun_set_real_num_queues(struct tun_struct *tun)
631{
632 netif_set_real_num_tx_queues(tun->dev, tun->numqueues);
633 netif_set_real_num_rx_queues(tun->dev, tun->numqueues);
634}
635
Jason Wang4008e972012-12-13 23:53:30 +0000636static void tun_disable_queue(struct tun_struct *tun, struct tun_file *tfile)
637{
638 tfile->detached = tun;
639 list_add_tail(&tfile->next, &tun->disabled);
640 ++tun->numdisabled;
641}
642
Jason Wangd32649d2012-12-18 11:00:27 +0800643static struct tun_struct *tun_enable_queue(struct tun_file *tfile)
Jason Wang4008e972012-12-13 23:53:30 +0000644{
645 struct tun_struct *tun = tfile->detached;
646
647 tfile->detached = NULL;
648 list_del_init(&tfile->next);
649 --tun->numdisabled;
650 return tun;
651}
652
Jason Wang3a403072018-03-09 14:50:34 +0800653void tun_ptr_free(void *ptr)
Jason Wangfc72d1d2018-01-04 11:14:28 +0800654{
655 if (!ptr)
656 return;
Jesper Dangaard Brouer1ffcbc82018-04-17 16:45:47 +0200657 if (tun_is_xdp_frame(ptr)) {
658 struct xdp_frame *xdpf = tun_ptr_to_xdp(ptr);
Jason Wangfc72d1d2018-01-04 11:14:28 +0800659
Jesper Dangaard Brouer03993092018-04-17 16:46:32 +0200660 xdp_return_frame(xdpf);
Jason Wangfc72d1d2018-01-04 11:14:28 +0800661 } else {
662 __skb_array_destroy_skb(ptr);
663 }
664}
Jason Wang3a403072018-03-09 14:50:34 +0800665EXPORT_SYMBOL_GPL(tun_ptr_free);
Jason Wangfc72d1d2018-01-04 11:14:28 +0800666
Jason Wang4bfb0512013-09-05 17:53:59 +0800667static void tun_queue_purge(struct tun_file *tfile)
668{
Jason Wangfc72d1d2018-01-04 11:14:28 +0800669 void *ptr;
Jason Wang1576d982016-06-30 14:45:36 +0800670
Jason Wangfc72d1d2018-01-04 11:14:28 +0800671 while ((ptr = ptr_ring_consume(&tfile->tx_ring)) != NULL)
672 tun_ptr_free(ptr);
Jason Wang1576d982016-06-30 14:45:36 +0800673
Jason Wang5503fce2017-01-18 15:02:03 +0800674 skb_queue_purge(&tfile->sk.sk_write_queue);
Jason Wang4bfb0512013-09-05 17:53:59 +0800675 skb_queue_purge(&tfile->sk.sk_error_queue);
676}
677
Jason Wangc8d68e62012-10-31 19:46:00 +0000678static void __tun_detach(struct tun_file *tfile, bool clean)
679{
680 struct tun_file *ntfile;
681 struct tun_struct *tun;
Jason Wangc8d68e62012-10-31 19:46:00 +0000682
Jason Wangb8deabd2013-01-11 16:59:32 +0000683 tun = rtnl_dereference(tfile->tun);
684
Petar Penkov94317092017-09-22 13:49:14 -0700685 if (tun && clean) {
Eric Dumazet06e55ad2018-09-28 14:51:47 -0700686 tun_napi_disable(tfile);
687 tun_napi_del(tfile);
Petar Penkov94317092017-09-22 13:49:14 -0700688 }
689
Jason Wang9e857222013-01-28 01:05:19 +0000690 if (tun && !tfile->detached) {
Jason Wangc8d68e62012-10-31 19:46:00 +0000691 u16 index = tfile->queue_index;
692 BUG_ON(index >= tun->numqueues);
Jason Wangc8d68e62012-10-31 19:46:00 +0000693
694 rcu_assign_pointer(tun->tfiles[index],
695 tun->tfiles[tun->numqueues - 1]);
Jason Wangb8deabd2013-01-11 16:59:32 +0000696 ntfile = rtnl_dereference(tun->tfiles[index]);
Jason Wangc8d68e62012-10-31 19:46:00 +0000697 ntfile->queue_index = index;
Jason Wang9871a9e2019-05-08 23:20:18 -0400698 rcu_assign_pointer(tun->tfiles[tun->numqueues - 1],
699 NULL);
Jason Wangc8d68e62012-10-31 19:46:00 +0000700
701 --tun->numqueues;
Jason Wang9e857222013-01-28 01:05:19 +0000702 if (clean) {
Monam Agarwalc9566742014-03-24 00:02:32 +0530703 RCU_INIT_POINTER(tfile->tun, NULL);
Jason Wang4008e972012-12-13 23:53:30 +0000704 sock_put(&tfile->sk);
Jason Wang9e857222013-01-28 01:05:19 +0000705 } else
Jason Wang4008e972012-12-13 23:53:30 +0000706 tun_disable_queue(tun, tfile);
Jason Wangc8d68e62012-10-31 19:46:00 +0000707
708 synchronize_net();
Jason Wang96442e422012-10-31 19:46:02 +0000709 tun_flow_delete_by_queue(tun, tun->numqueues + 1);
Jason Wangc8d68e62012-10-31 19:46:00 +0000710 /* Drop read queue */
Jason Wang4bfb0512013-09-05 17:53:59 +0800711 tun_queue_purge(tfile);
Jason Wangc8d68e62012-10-31 19:46:00 +0000712 tun_set_real_num_queues(tun);
Jason Wangdd38bd82013-01-11 16:59:34 +0000713 } else if (tfile->detached && clean) {
Jason Wang4008e972012-12-13 23:53:30 +0000714 tun = tun_enable_queue(tfile);
Jason Wangdd38bd82013-01-11 16:59:34 +0000715 sock_put(&tfile->sk);
716 }
Jason Wangc8d68e62012-10-31 19:46:00 +0000717
718 if (clean) {
Michael S. Tsirkinaf668b32013-01-28 00:38:02 +0000719 if (tun && tun->numqueues == 0 && tun->numdisabled == 0) {
720 netif_carrier_off(tun->dev);
721
Michael S. Tsirkin40630b82014-11-19 15:17:31 +0200722 if (!(tun->flags & IFF_PERSIST) &&
Michael S. Tsirkinaf668b32013-01-28 00:38:02 +0000723 tun->dev->reg_state == NETREG_REGISTERED)
Jason Wang4008e972012-12-13 23:53:30 +0000724 unregister_netdevice(tun->dev);
Michael S. Tsirkinaf668b32013-01-28 00:38:02 +0000725 }
Jason Wangb196d882018-05-11 10:49:25 +0800726 if (tun)
727 xdp_rxq_info_unreg(&tfile->xdp_rxq);
Jason Wang7063efd2018-05-16 20:39:33 +0800728 ptr_ring_cleanup(&tfile->tx_ring, tun_ptr_free);
Eric W. Biederman140e807da2015-05-08 21:07:08 -0500729 sock_put(&tfile->sk);
Jason Wangc8d68e62012-10-31 19:46:00 +0000730 }
731}
732
733static void tun_detach(struct tun_file *tfile, bool clean)
734{
Sabrina Dubroca83c1f362018-04-10 16:28:56 +0200735 struct tun_struct *tun;
736 struct net_device *dev;
737
Jason Wangc8d68e62012-10-31 19:46:00 +0000738 rtnl_lock();
Sabrina Dubroca83c1f362018-04-10 16:28:56 +0200739 tun = rtnl_dereference(tfile->tun);
740 dev = tun ? tun->dev : NULL;
Jason Wangc8d68e62012-10-31 19:46:00 +0000741 __tun_detach(tfile, clean);
Sabrina Dubroca83c1f362018-04-10 16:28:56 +0200742 if (dev)
743 netdev_state_change(dev);
Jason Wangc8d68e62012-10-31 19:46:00 +0000744 rtnl_unlock();
745}
746
747static void tun_detach_all(struct net_device *dev)
748{
749 struct tun_struct *tun = netdev_priv(dev);
Jason Wang4008e972012-12-13 23:53:30 +0000750 struct tun_file *tfile, *tmp;
Jason Wangc8d68e62012-10-31 19:46:00 +0000751 int i, n = tun->numqueues;
752
753 for (i = 0; i < n; i++) {
Jason Wangb8deabd2013-01-11 16:59:32 +0000754 tfile = rtnl_dereference(tun->tfiles[i]);
Jason Wangc8d68e62012-10-31 19:46:00 +0000755 BUG_ON(!tfile);
Eric Dumazet06e55ad2018-09-28 14:51:47 -0700756 tun_napi_disable(tfile);
Jason Wangaddf8fc2016-05-19 13:36:51 +0800757 tfile->socket.sk->sk_shutdown = RCV_SHUTDOWN;
Xi Wang9e641bd2014-05-16 15:11:48 -0700758 tfile->socket.sk->sk_data_ready(tfile->socket.sk);
Monam Agarwalc9566742014-03-24 00:02:32 +0530759 RCU_INIT_POINTER(tfile->tun, NULL);
Jason Wangc8d68e62012-10-31 19:46:00 +0000760 --tun->numqueues;
761 }
Jason Wang9e857222013-01-28 01:05:19 +0000762 list_for_each_entry(tfile, &tun->disabled, next) {
Jason Wangaddf8fc2016-05-19 13:36:51 +0800763 tfile->socket.sk->sk_shutdown = RCV_SHUTDOWN;
Xi Wang9e641bd2014-05-16 15:11:48 -0700764 tfile->socket.sk->sk_data_ready(tfile->socket.sk);
Monam Agarwalc9566742014-03-24 00:02:32 +0530765 RCU_INIT_POINTER(tfile->tun, NULL);
Jason Wang9e857222013-01-28 01:05:19 +0000766 }
Jason Wangc8d68e62012-10-31 19:46:00 +0000767 BUG_ON(tun->numqueues != 0);
768
769 synchronize_net();
770 for (i = 0; i < n; i++) {
Jason Wangb8deabd2013-01-11 16:59:32 +0000771 tfile = rtnl_dereference(tun->tfiles[i]);
Eric Dumazet06e55ad2018-09-28 14:51:47 -0700772 tun_napi_del(tfile);
Jason Wangc8d68e62012-10-31 19:46:00 +0000773 /* Drop read queue */
Jason Wang4bfb0512013-09-05 17:53:59 +0800774 tun_queue_purge(tfile);
Jason Wangb196d882018-05-11 10:49:25 +0800775 xdp_rxq_info_unreg(&tfile->xdp_rxq);
Jason Wangc8d68e62012-10-31 19:46:00 +0000776 sock_put(&tfile->sk);
777 }
Jason Wang4008e972012-12-13 23:53:30 +0000778 list_for_each_entry_safe(tfile, tmp, &tun->disabled, next) {
779 tun_enable_queue(tfile);
Jason Wang4bfb0512013-09-05 17:53:59 +0800780 tun_queue_purge(tfile);
Jason Wangb196d882018-05-11 10:49:25 +0800781 xdp_rxq_info_unreg(&tfile->xdp_rxq);
Jason Wang4008e972012-12-13 23:53:30 +0000782 sock_put(&tfile->sk);
783 }
784 BUG_ON(tun->numdisabled != 0);
Jason Wangdd38bd82013-01-11 16:59:34 +0000785
Michael S. Tsirkin40630b82014-11-19 15:17:31 +0200786 if (tun->flags & IFF_PERSIST)
Jason Wangdd38bd82013-01-11 16:59:34 +0000787 module_put(THIS_MODULE);
Jason Wangc8d68e62012-10-31 19:46:00 +0000788}
789
Petar Penkov94317092017-09-22 13:49:14 -0700790static int tun_attach(struct tun_struct *tun, struct file *file,
Eric Dumazetaf3fb242018-09-28 14:51:49 -0700791 bool skip_filter, bool napi, bool napi_frags)
Eric W. Biedermana7385ba2009-01-20 10:57:48 +0000792{
Eric W. Biederman631ab462009-01-20 11:00:40 +0000793 struct tun_file *tfile = file->private_data;
Jason Wang1576d982016-06-30 14:45:36 +0800794 struct net_device *dev = tun->dev;
Eric W. Biederman38231b72009-01-20 11:02:28 +0000795 int err;
Eric W. Biedermana7385ba2009-01-20 10:57:48 +0000796
Paul Moore5dbbaf22013-01-14 07:12:19 +0000797 err = security_tun_dev_attach(tfile->socket.sk, tun->security);
798 if (err < 0)
799 goto out;
800
Eric W. Biederman38231b72009-01-20 11:02:28 +0000801 err = -EINVAL;
Jason Wang9e857222013-01-28 01:05:19 +0000802 if (rtnl_dereference(tfile->tun) && !tfile->detached)
Eric W. Biederman38231b72009-01-20 11:02:28 +0000803 goto out;
804
805 err = -EBUSY;
Michael S. Tsirkin40630b82014-11-19 15:17:31 +0200806 if (!(tun->flags & IFF_MULTI_QUEUE) && tun->numqueues == 1)
Jason Wangc8d68e62012-10-31 19:46:00 +0000807 goto out;
808
809 err = -E2BIG;
Jason Wang4008e972012-12-13 23:53:30 +0000810 if (!tfile->detached &&
811 tun->numqueues + tun->numdisabled == MAX_TAP_QUEUES)
Eric W. Biederman38231b72009-01-20 11:02:28 +0000812 goto out;
813
814 err = 0;
Jason Wang54f968d2012-10-31 19:45:57 +0000815
stephen hemminger92d4ea62013-12-05 20:42:58 -0800816 /* Re-attach the filter to persist device */
Pavel Emelyanov849c9b62013-08-21 14:32:21 +0400817 if (!skip_filter && (tun->filter_attached == true)) {
Hannes Frederic Sowa8ced4252016-04-05 17:10:16 +0200818 lock_sock(tfile->socket.sk);
819 err = sk_attach_filter(&tun->fprog, tfile->socket.sk);
820 release_sock(tfile->socket.sk);
Jason Wang54f968d2012-10-31 19:45:57 +0000821 if (!err)
822 goto out;
823 }
Jason Wang1576d982016-06-30 14:45:36 +0800824
825 if (!tfile->detached &&
Jason Wangb196d882018-05-11 10:49:25 +0800826 ptr_ring_resize(&tfile->tx_ring, dev->tx_queue_len,
827 GFP_KERNEL, tun_ptr_free)) {
Jason Wang1576d982016-06-30 14:45:36 +0800828 err = -ENOMEM;
829 goto out;
830 }
831
Jason Wangc8d68e62012-10-31 19:46:00 +0000832 tfile->queue_index = tun->numqueues;
Jason Wangaddf8fc2016-05-19 13:36:51 +0800833 tfile->socket.sk->sk_shutdown &= ~RCV_SHUTDOWN;
Jesper Dangaard Brouer8bf5c4e2018-01-03 11:25:59 +0100834
835 if (tfile->detached) {
836 /* Re-attach detached tfile, updating XDP queue_index */
837 WARN_ON(!xdp_rxq_info_is_reg(&tfile->xdp_rxq));
838
839 if (tfile->xdp_rxq.queue_index != tfile->queue_index)
840 tfile->xdp_rxq.queue_index = tfile->queue_index;
841 } else {
842 /* Setup XDP RX-queue info, for new tfile getting attached */
843 err = xdp_rxq_info_reg(&tfile->xdp_rxq,
844 tun->dev, tfile->queue_index);
845 if (err < 0)
846 goto out;
Jesper Dangaard Brouer8d5d8852018-04-17 16:46:12 +0200847 err = xdp_rxq_info_reg_mem_model(&tfile->xdp_rxq,
848 MEM_TYPE_PAGE_SHARED, NULL);
849 if (err < 0) {
850 xdp_rxq_info_unreg(&tfile->xdp_rxq);
851 goto out;
852 }
Jesper Dangaard Brouer8bf5c4e2018-01-03 11:25:59 +0100853 err = 0;
854 }
855
Petar Penkov94317092017-09-22 13:49:14 -0700856 if (tfile->detached) {
Jason Wang4008e972012-12-13 23:53:30 +0000857 tun_enable_queue(tfile);
Petar Penkov94317092017-09-22 13:49:14 -0700858 } else {
Jason Wang4008e972012-12-13 23:53:30 +0000859 sock_hold(&tfile->sk);
Eric Dumazetaf3fb242018-09-28 14:51:49 -0700860 tun_napi_init(tun, tfile, napi, napi_frags);
Petar Penkov94317092017-09-22 13:49:14 -0700861 }
Jason Wang4008e972012-12-13 23:53:30 +0000862
Jason Wange4a2a302018-09-12 11:16:59 +0800863 if (rtnl_dereference(tun->xdp_prog))
864 sock_set_flag(&tfile->sk, SOCK_XDP);
865
Jason Wangc8d68e62012-10-31 19:46:00 +0000866 /* device is allowed to go away first, so no need to hold extra
867 * refcnt.
868 */
Eric W. Biedermana7385ba2009-01-20 10:57:48 +0000869
Stanislav Fomichev0b7959b2019-01-07 13:38:38 -0800870 /* Publish tfile->tun and tun->tfiles only after we've fully
871 * initialized tfile; otherwise we risk using half-initialized
872 * object.
873 */
874 rcu_assign_pointer(tfile->tun, tun);
875 rcu_assign_pointer(tun->tfiles[tun->numqueues], tfile);
876 tun->numqueues++;
George Amanakis3a03cb82019-01-29 22:50:13 -0500877 tun_set_real_num_queues(tun);
Eric W. Biederman38231b72009-01-20 11:02:28 +0000878out:
Eric W. Biederman38231b72009-01-20 11:02:28 +0000879 return err;
Eric W. Biedermana7385ba2009-01-20 10:57:48 +0000880}
881
yuan linyu9484dc72017-09-23 22:36:52 +0800882static struct tun_struct *tun_get(struct tun_file *tfile)
Eric W. Biederman631ab462009-01-20 11:00:40 +0000883{
Jason Wang6e914fc2012-10-31 19:45:58 +0000884 struct tun_struct *tun;
Eric W. Biedermanc70f1822009-01-20 11:07:17 +0000885
Jason Wang6e914fc2012-10-31 19:45:58 +0000886 rcu_read_lock();
887 tun = rcu_dereference(tfile->tun);
888 if (tun)
889 dev_hold(tun->dev);
890 rcu_read_unlock();
Eric W. Biedermanc70f1822009-01-20 11:07:17 +0000891
892 return tun;
Eric W. Biederman631ab462009-01-20 11:00:40 +0000893}
894
Eric W. Biederman631ab462009-01-20 11:00:40 +0000895static void tun_put(struct tun_struct *tun)
896{
Jason Wang6e914fc2012-10-31 19:45:58 +0000897 dev_put(tun->dev);
Eric W. Biederman631ab462009-01-20 11:00:40 +0000898}
899
Joe Perches6b8a66e2011-03-02 07:18:10 +0000900/* TAP filtering */
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -0700901static void addr_hash_set(u32 *mask, const u8 *addr)
902{
903 int n = ether_crc(ETH_ALEN, addr) >> 26;
904 mask[n >> 5] |= (1 << (n & 31));
905}
906
907static unsigned int addr_hash_test(const u32 *mask, const u8 *addr)
908{
909 int n = ether_crc(ETH_ALEN, addr) >> 26;
910 return mask[n >> 5] & (1 << (n & 31));
911}
912
913static int update_filter(struct tap_filter *filter, void __user *arg)
914{
915 struct { u8 u[ETH_ALEN]; } *addr;
916 struct tun_filter uf;
917 int err, alen, n, nexact;
918
919 if (copy_from_user(&uf, arg, sizeof(uf)))
920 return -EFAULT;
921
922 if (!uf.count) {
923 /* Disabled */
924 filter->count = 0;
925 return 0;
926 }
927
928 alen = ETH_ALEN * uf.count;
Markus Elfring28e81902016-08-20 08:54:15 +0200929 addr = memdup_user(arg + sizeof(uf), alen);
930 if (IS_ERR(addr))
931 return PTR_ERR(addr);
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -0700932
933 /* The filter is updated without holding any locks. Which is
934 * perfectly safe. We disable it first and in the worst
935 * case we'll accept a few undesired packets. */
936 filter->count = 0;
937 wmb();
938
939 /* Use first set of addresses as an exact filter */
940 for (n = 0; n < uf.count && n < FLT_EXACT_COUNT; n++)
941 memcpy(filter->addr[n], addr[n].u, ETH_ALEN);
942
943 nexact = n;
944
Alex Williamsoncfbf84f2009-02-08 17:49:17 -0800945 /* Remaining multicast addresses are hashed,
946 * unicast will leave the filter disabled. */
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -0700947 memset(filter->mask, 0, sizeof(filter->mask));
Alex Williamsoncfbf84f2009-02-08 17:49:17 -0800948 for (; n < uf.count; n++) {
949 if (!is_multicast_ether_addr(addr[n].u)) {
950 err = 0; /* no filter */
Markus Elfring3b8d2a62016-08-20 09:00:34 +0200951 goto free_addr;
Alex Williamsoncfbf84f2009-02-08 17:49:17 -0800952 }
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -0700953 addr_hash_set(filter->mask, addr[n].u);
Alex Williamsoncfbf84f2009-02-08 17:49:17 -0800954 }
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -0700955
956 /* For ALLMULTI just set the mask to all ones.
957 * This overrides the mask populated above. */
958 if ((uf.flags & TUN_FLT_ALLMULTI))
959 memset(filter->mask, ~0, sizeof(filter->mask));
960
961 /* Now enable the filter */
962 wmb();
963 filter->count = nexact;
964
965 /* Return the number of exact filters */
966 err = nexact;
Markus Elfring3b8d2a62016-08-20 09:00:34 +0200967free_addr:
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -0700968 kfree(addr);
969 return err;
970}
971
972/* Returns: 0 - drop, !=0 - accept */
973static int run_filter(struct tap_filter *filter, const struct sk_buff *skb)
974{
975 /* Cannot use eth_hdr(skb) here because skb_mac_hdr() is incorrect
976 * at this point. */
977 struct ethhdr *eh = (struct ethhdr *) skb->data;
978 int i;
979
980 /* Exact match */
981 for (i = 0; i < filter->count; i++)
Joe Perches2e42e472012-05-09 17:17:46 +0000982 if (ether_addr_equal(eh->h_dest, filter->addr[i]))
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -0700983 return 1;
984
985 /* Inexact match (multicast only) */
986 if (is_multicast_ether_addr(eh->h_dest))
987 return addr_hash_test(filter->mask, eh->h_dest);
988
989 return 0;
990}
991
992/*
993 * Checks whether the packet is accepted or not.
994 * Returns: 0 - drop, !=0 - accept
995 */
996static int check_filter(struct tap_filter *filter, const struct sk_buff *skb)
997{
998 if (!filter->count)
999 return 1;
1000
1001 return run_filter(filter, skb);
1002}
1003
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004/* Network device part of the driver */
1005
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006static const struct ethtool_ops tun_ethtool_ops;
1007
Eric W. Biedermanc70f1822009-01-20 11:07:17 +00001008/* Net device detach from fd. */
1009static void tun_net_uninit(struct net_device *dev)
1010{
Jason Wangc8d68e62012-10-31 19:46:00 +00001011 tun_detach_all(dev);
Eric W. Biedermanc70f1822009-01-20 11:07:17 +00001012}
1013
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014/* Net device open. */
1015static int tun_net_open(struct net_device *dev)
1016{
Jason Wangc8d68e62012-10-31 19:46:00 +00001017 netif_tx_start_all_queues(dev);
Hannes Frederic Sowab20e2d52017-03-13 00:00:26 +01001018
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019 return 0;
1020}
1021
1022/* Net device close. */
1023static int tun_net_close(struct net_device *dev)
1024{
Jason Wangc8d68e62012-10-31 19:46:00 +00001025 netif_tx_stop_all_queues(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026 return 0;
1027}
1028
1029/* Net device start xmit */
Jason Wang96f84062017-12-04 17:31:23 +08001030static void tun_automq_xmit(struct tun_struct *tun, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031{
Jason Wang3df97ba2016-04-25 23:13:42 -04001032#ifdef CONFIG_RPS
Eric Dumazetdc053602019-03-22 08:56:38 -07001033 if (tun->numqueues == 1 && static_branch_unlikely(&rps_needed)) {
Tom Herbert9bc88932013-12-22 18:54:32 +08001034 /* Select queue was not called for the skbuff, so we extract the
1035 * RPS hash and save it into the flow_table here.
1036 */
Wang Li4b035272018-10-09 10:32:04 +08001037 struct tun_flow_entry *e;
Tom Herbert9bc88932013-12-22 18:54:32 +08001038 __u32 rxhash;
1039
Jason Wangfeec0842017-06-06 14:09:49 +08001040 rxhash = __skb_get_hash_symmetric(skb);
Wang Li4b035272018-10-09 10:32:04 +08001041 e = tun_flow_find(&tun->flows[tun_hashfn(rxhash)], rxhash);
1042 if (e)
1043 tun_flow_save_rps_rxhash(e, rxhash);
Tom Herbert9bc88932013-12-22 18:54:32 +08001044 }
Jason Wang3df97ba2016-04-25 23:13:42 -04001045#endif
Jason Wang96f84062017-12-04 17:31:23 +08001046}
1047
Jason Wangaff3d702018-01-16 16:31:02 +08001048static unsigned int run_ebpf_filter(struct tun_struct *tun,
1049 struct sk_buff *skb,
1050 int len)
1051{
1052 struct tun_prog *prog = rcu_dereference(tun->filter_prog);
1053
1054 if (prog)
1055 len = bpf_prog_run_clear_cb(prog->prog, skb);
1056
1057 return len;
1058}
1059
Jason Wang96f84062017-12-04 17:31:23 +08001060/* Net device start xmit */
1061static netdev_tx_t tun_net_xmit(struct sk_buff *skb, struct net_device *dev)
1062{
1063 struct tun_struct *tun = netdev_priv(dev);
1064 int txq = skb->queue_mapping;
1065 struct tun_file *tfile;
Jason Wangaff3d702018-01-16 16:31:02 +08001066 int len = skb->len;
Jason Wang96f84062017-12-04 17:31:23 +08001067
1068 rcu_read_lock();
1069 tfile = rcu_dereference(tun->tfiles[txq]);
Jason Wang96f84062017-12-04 17:31:23 +08001070
1071 /* Drop packet if interface is not attached */
Jason Wang9871a9e2019-05-08 23:20:18 -04001072 if (!tfile)
Jason Wang96f84062017-12-04 17:31:23 +08001073 goto drop;
1074
1075 if (!rcu_dereference(tun->steering_prog))
1076 tun_automq_xmit(tun, skb);
Tom Herbert9bc88932013-12-22 18:54:32 +08001077
Jason Wang6e914fc2012-10-31 19:45:58 +00001078 tun_debug(KERN_INFO, tun, "tun_net_xmit %d\n", skb->len);
1079
Jason Wangc8d68e62012-10-31 19:46:00 +00001080 BUG_ON(!tfile);
1081
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -07001082 /* Drop if the filter does not like it.
1083 * This is a noop if the filter is disabled.
1084 * Filter can be enabled only for the TAP devices. */
1085 if (!check_filter(&tun->txflt, skb))
1086 goto drop;
1087
Jason Wang54f968d2012-10-31 19:45:57 +00001088 if (tfile->socket.sk->sk_filter &&
1089 sk_filter(tfile->socket.sk, skb))
Michael S. Tsirkin99405162010-02-14 01:01:10 +00001090 goto drop;
1091
Jason Wangaff3d702018-01-16 16:31:02 +08001092 len = run_ebpf_filter(tun, skb, len);
Bjørn Mork81c89502018-04-17 22:46:38 +02001093 if (len == 0 || pskb_trim(skb, len))
Jason Wangaff3d702018-01-16 16:31:02 +08001094 goto drop;
1095
Willem de Bruijn1f8b9772017-08-03 16:29:41 -04001096 if (unlikely(skb_orphan_frags_rx(skb, GFP_ATOMIC)))
Jason Wang7bf66302013-09-05 17:54:00 +08001097 goto drop;
1098
Soheil Hassas Yeganeh7b996242016-08-23 18:22:33 -04001099 skb_tx_timestamp(skb);
Richard Cochraneda29772013-07-19 19:40:10 +02001100
Michael S. Tsirkin0110d6f2010-04-13 04:59:44 +00001101 /* Orphan the skb - required as we might hang on to it
Jason Wang7bf66302013-09-05 17:54:00 +08001102 * for indefinite time.
1103 */
Michael S. Tsirkin0110d6f2010-04-13 04:59:44 +00001104 skb_orphan(skb);
1105
Eric Dumazetf8af75f2013-03-06 11:02:37 +00001106 nf_reset(skb);
1107
Jason Wang5990a302018-01-04 11:14:27 +08001108 if (ptr_ring_produce(&tfile->tx_ring, skb))
Jason Wang1576d982016-06-30 14:45:36 +08001109 goto drop;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110
1111 /* Notify and wake up reader process */
Jason Wang54f968d2012-10-31 19:45:57 +00001112 if (tfile->flags & TUN_FASYNC)
1113 kill_fasync(&tfile->fasync, SIGIO, POLL_IN);
Xi Wang9e641bd2014-05-16 15:11:48 -07001114 tfile->socket.sk->sk_data_ready(tfile->socket.sk);
Jason Wang6e914fc2012-10-31 19:45:58 +00001115
1116 rcu_read_unlock();
Patrick McHardy6ed10652009-06-23 06:03:08 +00001117 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118
1119drop:
Paolo Abeni608b9972016-04-13 10:52:20 +02001120 this_cpu_inc(tun->pcpu_stats->tx_dropped);
Michael S. Tsirkin149d36f2012-11-01 09:16:32 +00001121 skb_tx_error(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122 kfree_skb(skb);
Jason Wang6e914fc2012-10-31 19:45:58 +00001123 rcu_read_unlock();
Jason Wangbaeabab2014-11-18 13:20:41 +08001124 return NET_XMIT_DROP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125}
1126
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -07001127static void tun_net_mclist(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128{
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -07001129 /*
1130 * This callback is supposed to deal with mc filter in
1131 * _rx_ path and has nothing to do with the _tx_ path.
1132 * In rx path we always accept everything userspace gives us.
1133 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134}
1135
Michał Mirosławc8f44af2011-11-15 15:29:55 +00001136static netdev_features_t tun_net_fix_features(struct net_device *dev,
1137 netdev_features_t features)
Michał Mirosław88255372011-04-19 06:13:10 +00001138{
1139 struct tun_struct *tun = netdev_priv(dev);
1140
1141 return (features & tun->set_features) | (features & ~TUN_USER_FEATURES);
1142}
Paolo Abenieaea34b2016-02-26 10:45:40 +01001143
1144static void tun_set_headroom(struct net_device *dev, int new_hr)
1145{
1146 struct tun_struct *tun = netdev_priv(dev);
1147
1148 if (new_hr < NET_SKB_PAD)
1149 new_hr = NET_SKB_PAD;
1150
1151 tun->align = new_hr;
1152}
1153
stephen hemmingerbc1f4472017-01-06 19:12:52 -08001154static void
Paolo Abeni608b9972016-04-13 10:52:20 +02001155tun_net_get_stats64(struct net_device *dev, struct rtnl_link_stats64 *stats)
1156{
1157 u32 rx_dropped = 0, tx_dropped = 0, rx_frame_errors = 0;
1158 struct tun_struct *tun = netdev_priv(dev);
1159 struct tun_pcpu_stats *p;
1160 int i;
1161
1162 for_each_possible_cpu(i) {
1163 u64 rxpackets, rxbytes, txpackets, txbytes;
1164 unsigned int start;
1165
1166 p = per_cpu_ptr(tun->pcpu_stats, i);
1167 do {
1168 start = u64_stats_fetch_begin(&p->syncp);
1169 rxpackets = p->rx_packets;
1170 rxbytes = p->rx_bytes;
1171 txpackets = p->tx_packets;
1172 txbytes = p->tx_bytes;
1173 } while (u64_stats_fetch_retry(&p->syncp, start));
1174
1175 stats->rx_packets += rxpackets;
1176 stats->rx_bytes += rxbytes;
1177 stats->tx_packets += txpackets;
1178 stats->tx_bytes += txbytes;
1179
1180 /* u32 counters */
1181 rx_dropped += p->rx_dropped;
1182 rx_frame_errors += p->rx_frame_errors;
1183 tx_dropped += p->tx_dropped;
1184 }
1185 stats->rx_dropped = rx_dropped;
1186 stats->rx_frame_errors = rx_frame_errors;
1187 stats->tx_dropped = tx_dropped;
Paolo Abeni608b9972016-04-13 10:52:20 +02001188}
1189
Jason Wang761876c2017-08-11 19:41:18 +08001190static int tun_xdp_set(struct net_device *dev, struct bpf_prog *prog,
1191 struct netlink_ext_ack *extack)
1192{
1193 struct tun_struct *tun = netdev_priv(dev);
Jason Wange4a2a302018-09-12 11:16:59 +08001194 struct tun_file *tfile;
Jason Wang761876c2017-08-11 19:41:18 +08001195 struct bpf_prog *old_prog;
Jason Wange4a2a302018-09-12 11:16:59 +08001196 int i;
Jason Wang761876c2017-08-11 19:41:18 +08001197
1198 old_prog = rtnl_dereference(tun->xdp_prog);
1199 rcu_assign_pointer(tun->xdp_prog, prog);
1200 if (old_prog)
1201 bpf_prog_put(old_prog);
1202
Jason Wange4a2a302018-09-12 11:16:59 +08001203 for (i = 0; i < tun->numqueues; i++) {
1204 tfile = rtnl_dereference(tun->tfiles[i]);
1205 if (prog)
1206 sock_set_flag(&tfile->sk, SOCK_XDP);
1207 else
1208 sock_reset_flag(&tfile->sk, SOCK_XDP);
1209 }
1210 list_for_each_entry(tfile, &tun->disabled, next) {
1211 if (prog)
1212 sock_set_flag(&tfile->sk, SOCK_XDP);
1213 else
1214 sock_reset_flag(&tfile->sk, SOCK_XDP);
1215 }
1216
Jason Wang761876c2017-08-11 19:41:18 +08001217 return 0;
1218}
1219
1220static u32 tun_xdp_query(struct net_device *dev)
1221{
1222 struct tun_struct *tun = netdev_priv(dev);
1223 const struct bpf_prog *xdp_prog;
1224
1225 xdp_prog = rtnl_dereference(tun->xdp_prog);
1226 if (xdp_prog)
1227 return xdp_prog->aux->id;
1228
1229 return 0;
1230}
1231
Jakub Kicinskif4e63522017-11-03 13:56:16 -07001232static int tun_xdp(struct net_device *dev, struct netdev_bpf *xdp)
Jason Wang761876c2017-08-11 19:41:18 +08001233{
1234 switch (xdp->command) {
1235 case XDP_SETUP_PROG:
1236 return tun_xdp_set(dev, xdp->prog, xdp->extack);
1237 case XDP_QUERY_PROG:
1238 xdp->prog_id = tun_xdp_query(dev);
Jason Wang761876c2017-08-11 19:41:18 +08001239 return 0;
1240 default:
1241 return -EINVAL;
1242 }
1243}
1244
Nicolas Dichtel26d31922018-11-28 19:12:56 +01001245static int tun_net_change_carrier(struct net_device *dev, bool new_carrier)
1246{
1247 if (new_carrier) {
1248 struct tun_struct *tun = netdev_priv(dev);
1249
1250 if (!tun->numqueues)
1251 return -EPERM;
1252
1253 netif_carrier_on(dev);
1254 } else {
1255 netif_carrier_off(dev);
1256 }
1257 return 0;
1258}
1259
Stephen Hemminger758e43b2008-11-19 22:10:37 -08001260static const struct net_device_ops tun_netdev_ops = {
Eric W. Biedermanc70f1822009-01-20 11:07:17 +00001261 .ndo_uninit = tun_net_uninit,
Stephen Hemminger758e43b2008-11-19 22:10:37 -08001262 .ndo_open = tun_net_open,
1263 .ndo_stop = tun_net_close,
Stephen Hemminger00829822008-11-20 20:14:53 -08001264 .ndo_start_xmit = tun_net_xmit,
Michał Mirosław88255372011-04-19 06:13:10 +00001265 .ndo_fix_features = tun_net_fix_features,
Jason Wangc8d68e62012-10-31 19:46:00 +00001266 .ndo_select_queue = tun_select_queue,
Paolo Abenieaea34b2016-02-26 10:45:40 +01001267 .ndo_set_rx_headroom = tun_set_headroom,
Paolo Abeni608b9972016-04-13 10:52:20 +02001268 .ndo_get_stats64 = tun_net_get_stats64,
Nicolas Dichtel26d31922018-11-28 19:12:56 +01001269 .ndo_change_carrier = tun_net_change_carrier,
Stephen Hemminger758e43b2008-11-19 22:10:37 -08001270};
1271
Jesper Dangaard Brouer0c9d9172018-05-31 11:00:03 +02001272static void __tun_xdp_flush_tfile(struct tun_file *tfile)
1273{
1274 /* Notify and wake up reader process */
1275 if (tfile->flags & TUN_FASYNC)
1276 kill_fasync(&tfile->fasync, SIGIO, POLL_IN);
1277 tfile->socket.sk->sk_data_ready(tfile->socket.sk);
1278}
1279
Jesper Dangaard Brouer42b33462018-05-31 10:59:47 +02001280static int tun_xdp_xmit(struct net_device *dev, int n,
1281 struct xdp_frame **frames, u32 flags)
Jason Wangfc72d1d2018-01-04 11:14:28 +08001282{
1283 struct tun_struct *tun = netdev_priv(dev);
Jason Wangfc72d1d2018-01-04 11:14:28 +08001284 struct tun_file *tfile;
1285 u32 numqueues;
Jesper Dangaard Brouer735fc402018-05-24 16:46:12 +02001286 int drops = 0;
1287 int cnt = n;
1288 int i;
Jason Wangfc72d1d2018-01-04 11:14:28 +08001289
Jesper Dangaard Brouer0c9d9172018-05-31 11:00:03 +02001290 if (unlikely(flags & ~XDP_XMIT_FLAGS_MASK))
Jesper Dangaard Brouer42b33462018-05-31 10:59:47 +02001291 return -EINVAL;
1292
Jason Wangfc72d1d2018-01-04 11:14:28 +08001293 rcu_read_lock();
1294
Jason Wang9871a9e2019-05-08 23:20:18 -04001295resample:
Jason Wangfc72d1d2018-01-04 11:14:28 +08001296 numqueues = READ_ONCE(tun->numqueues);
1297 if (!numqueues) {
Jesper Dangaard Brouer735fc402018-05-24 16:46:12 +02001298 rcu_read_unlock();
1299 return -ENXIO; /* Caller will free/return all frames */
Jason Wangfc72d1d2018-01-04 11:14:28 +08001300 }
1301
1302 tfile = rcu_dereference(tun->tfiles[smp_processor_id() %
1303 numqueues]);
Jason Wang9871a9e2019-05-08 23:20:18 -04001304 if (unlikely(!tfile))
1305 goto resample;
Jason Wangfc72d1d2018-01-04 11:14:28 +08001306
Jesper Dangaard Brouer735fc402018-05-24 16:46:12 +02001307 spin_lock(&tfile->tx_ring.producer_lock);
1308 for (i = 0; i < n; i++) {
1309 struct xdp_frame *xdp = frames[i];
1310 /* Encode the XDP flag into lowest bit for consumer to differ
1311 * XDP buffer from sk_buff.
1312 */
1313 void *frame = tun_xdp_to_ptr(xdp);
1314
1315 if (__ptr_ring_produce(&tfile->tx_ring, frame)) {
1316 this_cpu_inc(tun->pcpu_stats->tx_dropped);
1317 xdp_return_frame_rx_napi(xdp);
1318 drops++;
1319 }
1320 }
1321 spin_unlock(&tfile->tx_ring.producer_lock);
1322
Jesper Dangaard Brouer0c9d9172018-05-31 11:00:03 +02001323 if (flags & XDP_XMIT_FLUSH)
1324 __tun_xdp_flush_tfile(tfile);
1325
Jason Wangfc72d1d2018-01-04 11:14:28 +08001326 rcu_read_unlock();
Jesper Dangaard Brouer735fc402018-05-24 16:46:12 +02001327 return cnt - drops;
Jason Wangfc72d1d2018-01-04 11:14:28 +08001328}
1329
Jesper Dangaard Brouer44fa2db2018-04-17 16:46:37 +02001330static int tun_xdp_tx(struct net_device *dev, struct xdp_buff *xdp)
1331{
1332 struct xdp_frame *frame = convert_to_xdp_frame(xdp);
1333
1334 if (unlikely(!frame))
1335 return -EOVERFLOW;
1336
Jesper Dangaard Brouer42421a52018-06-05 13:55:45 +02001337 return tun_xdp_xmit(dev, 1, &frame, XDP_XMIT_FLUSH);
Jason Wangfc72d1d2018-01-04 11:14:28 +08001338}
1339
Stephen Hemminger758e43b2008-11-19 22:10:37 -08001340static const struct net_device_ops tap_netdev_ops = {
Eric W. Biedermanc70f1822009-01-20 11:07:17 +00001341 .ndo_uninit = tun_net_uninit,
Stephen Hemminger758e43b2008-11-19 22:10:37 -08001342 .ndo_open = tun_net_open,
1343 .ndo_stop = tun_net_close,
Stephen Hemminger00829822008-11-20 20:14:53 -08001344 .ndo_start_xmit = tun_net_xmit,
Michał Mirosław88255372011-04-19 06:13:10 +00001345 .ndo_fix_features = tun_net_fix_features,
Jiri Pirkoafc4b132011-08-16 06:29:01 +00001346 .ndo_set_rx_mode = tun_net_mclist,
Stephen Hemminger758e43b2008-11-19 22:10:37 -08001347 .ndo_set_mac_address = eth_mac_addr,
1348 .ndo_validate_addr = eth_validate_addr,
Jason Wangc8d68e62012-10-31 19:46:00 +00001349 .ndo_select_queue = tun_select_queue,
Toshiaki Makita5e527962015-07-31 15:03:27 +09001350 .ndo_features_check = passthru_features_check,
Paolo Abenieaea34b2016-02-26 10:45:40 +01001351 .ndo_set_rx_headroom = tun_set_headroom,
Paolo Abeni608b9972016-04-13 10:52:20 +02001352 .ndo_get_stats64 = tun_net_get_stats64,
Jakub Kicinskif4e63522017-11-03 13:56:16 -07001353 .ndo_bpf = tun_xdp,
Jason Wangfc72d1d2018-01-04 11:14:28 +08001354 .ndo_xdp_xmit = tun_xdp_xmit,
Nicolas Dichtel26d31922018-11-28 19:12:56 +01001355 .ndo_change_carrier = tun_net_change_carrier,
Stephen Hemminger758e43b2008-11-19 22:10:37 -08001356};
1357
Pavel Emelyanov944a1372013-06-11 17:01:08 +04001358static void tun_flow_init(struct tun_struct *tun)
Jason Wang96442e422012-10-31 19:46:02 +00001359{
1360 int i;
1361
Jason Wang96442e422012-10-31 19:46:02 +00001362 for (i = 0; i < TUN_NUM_FLOW_ENTRIES; i++)
1363 INIT_HLIST_HEAD(&tun->flows[i]);
1364
1365 tun->ageing_time = TUN_FLOW_EXPIRE;
Kees Cooke99e88a2017-10-16 14:43:17 -07001366 timer_setup(&tun->flow_gc_timer, tun_flow_cleanup, 0);
1367 mod_timer(&tun->flow_gc_timer,
1368 round_jiffies_up(jiffies + tun->ageing_time));
Jason Wang96442e422012-10-31 19:46:02 +00001369}
1370
1371static void tun_flow_uninit(struct tun_struct *tun)
1372{
1373 del_timer_sync(&tun->flow_gc_timer);
1374 tun_flow_flush(tun);
Jason Wang96442e422012-10-31 19:46:02 +00001375}
1376
Jarod Wilson91572082016-10-20 13:55:20 -04001377#define MIN_MTU 68
1378#define MAX_MTU 65535
1379
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380/* Initialize net device. */
1381static void tun_net_init(struct net_device *dev)
1382{
1383 struct tun_struct *tun = netdev_priv(dev);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001384
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385 switch (tun->flags & TUN_TYPE_MASK) {
Michael S. Tsirkin40630b82014-11-19 15:17:31 +02001386 case IFF_TUN:
Stephen Hemminger758e43b2008-11-19 22:10:37 -08001387 dev->netdev_ops = &tun_netdev_ops;
1388
Linus Torvalds1da177e2005-04-16 15:20:36 -07001389 /* Point-to-Point TUN Device */
1390 dev->hard_header_len = 0;
1391 dev->addr_len = 0;
1392 dev->mtu = 1500;
1393
1394 /* Zero header length */
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001395 dev->type = ARPHRD_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001396 dev->flags = IFF_POINTOPOINT | IFF_NOARP | IFF_MULTICAST;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001397 break;
1398
Michael S. Tsirkin40630b82014-11-19 15:17:31 +02001399 case IFF_TAP:
Kusanagi Kouichi7a0a9602008-12-29 18:23:28 -08001400 dev->netdev_ops = &tap_netdev_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401 /* Ethernet TAP Device */
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -07001402 ether_setup(dev);
Neil Horman550fd082011-07-26 06:05:38 +00001403 dev->priv_flags &= ~IFF_TX_SKB_SHARING;
stephen hemmingera6768472012-12-10 15:16:00 +00001404 dev->priv_flags |= IFF_LIVE_ADDR_CHANGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001405
Danny Kukawkaf2cedb62012-02-15 06:45:39 +00001406 eth_hw_addr_random(dev);
Brian Braunstein36226a82007-04-26 01:00:55 -07001407
Linus Torvalds1da177e2005-04-16 15:20:36 -07001408 break;
1409 }
Jarod Wilson91572082016-10-20 13:55:20 -04001410
1411 dev->min_mtu = MIN_MTU;
1412 dev->max_mtu = MAX_MTU - dev->hard_header_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001413}
1414
Jason Wang2f3ab622018-05-22 14:21:04 +08001415static bool tun_sock_writeable(struct tun_struct *tun, struct tun_file *tfile)
1416{
1417 struct sock *sk = tfile->socket.sk;
1418
1419 return (tun->dev->flags & IFF_UP) && sock_writeable(sk);
1420}
1421
Linus Torvalds1da177e2005-04-16 15:20:36 -07001422/* Character device part */
1423
1424/* Poll */
Al Viroafc9a422017-07-03 06:39:46 -04001425static __poll_t tun_chr_poll(struct file *file, poll_table *wait)
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001426{
Eric W. Biedermanb2430de2009-01-20 11:03:21 +00001427 struct tun_file *tfile = file->private_data;
yuan linyu9484dc72017-09-23 22:36:52 +08001428 struct tun_struct *tun = tun_get(tfile);
Mariusz Kozlowski3c8a9c62009-07-05 19:48:35 +00001429 struct sock *sk;
Al Viroafc9a422017-07-03 06:39:46 -04001430 __poll_t mask = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431
1432 if (!tun)
Linus Torvaldsa9a08842018-02-11 14:34:03 -08001433 return EPOLLERR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001434
Jason Wang54f968d2012-10-31 19:45:57 +00001435 sk = tfile->socket.sk;
Mariusz Kozlowski3c8a9c62009-07-05 19:48:35 +00001436
Joe Perches6b8a66e2011-03-02 07:18:10 +00001437 tun_debug(KERN_INFO, tun, "tun_chr_poll\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001438
Xi Wang9e641bd2014-05-16 15:11:48 -07001439 poll_wait(file, sk_sleep(sk), wait);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001440
Jason Wang5990a302018-01-04 11:14:27 +08001441 if (!ptr_ring_empty(&tfile->tx_ring))
Linus Torvaldsa9a08842018-02-11 14:34:03 -08001442 mask |= EPOLLIN | EPOLLRDNORM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001443
Jason Wang2f3ab622018-05-22 14:21:04 +08001444 /* Make sure SOCKWQ_ASYNC_NOSPACE is set if not writable to
1445 * guarantee EPOLLOUT to be raised by either here or
1446 * tun_sock_write_space(). Then process could get notification
1447 * after it writes to a down device and meets -EIO.
1448 */
1449 if (tun_sock_writeable(tun, tfile) ||
1450 (!test_and_set_bit(SOCKWQ_ASYNC_NOSPACE, &sk->sk_socket->flags) &&
1451 tun_sock_writeable(tun, tfile)))
Linus Torvaldsa9a08842018-02-11 14:34:03 -08001452 mask |= EPOLLOUT | EPOLLWRNORM;
Herbert Xu33dccbb2009-02-05 21:25:32 -08001453
Eric W. Biedermanc70f1822009-01-20 11:07:17 +00001454 if (tun->dev->reg_state != NETREG_REGISTERED)
Linus Torvaldsa9a08842018-02-11 14:34:03 -08001455 mask = EPOLLERR;
Eric W. Biedermanc70f1822009-01-20 11:07:17 +00001456
Eric W. Biederman631ab462009-01-20 11:00:40 +00001457 tun_put(tun);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001458 return mask;
1459}
1460
Petar Penkov90e33d42017-09-22 13:49:15 -07001461static struct sk_buff *tun_napi_alloc_frags(struct tun_file *tfile,
1462 size_t len,
1463 const struct iov_iter *it)
1464{
1465 struct sk_buff *skb;
1466 size_t linear;
1467 int err;
1468 int i;
1469
1470 if (it->nr_segs > MAX_SKB_FRAGS + 1)
1471 return ERR_PTR(-ENOMEM);
1472
1473 local_bh_disable();
1474 skb = napi_get_frags(&tfile->napi);
1475 local_bh_enable();
1476 if (!skb)
1477 return ERR_PTR(-ENOMEM);
1478
1479 linear = iov_iter_single_seg_count(it);
1480 err = __skb_grow(skb, linear);
1481 if (err)
1482 goto free;
1483
1484 skb->len = len;
1485 skb->data_len = len - linear;
1486 skb->truesize += skb->data_len;
1487
1488 for (i = 1; i < it->nr_segs; i++) {
1489 size_t fragsz = it->iov[i].iov_len;
Eric Dumazetaa6daac2018-11-18 07:37:33 -08001490 struct page *page;
1491 void *frag;
Petar Penkov90e33d42017-09-22 13:49:15 -07001492
1493 if (fragsz == 0 || fragsz > PAGE_SIZE) {
1494 err = -EINVAL;
1495 goto free;
1496 }
Eric Dumazetaa6daac2018-11-18 07:37:33 -08001497 frag = netdev_alloc_frag(fragsz);
1498 if (!frag) {
Petar Penkov90e33d42017-09-22 13:49:15 -07001499 err = -ENOMEM;
1500 goto free;
1501 }
Eric Dumazetaa6daac2018-11-18 07:37:33 -08001502 page = virt_to_head_page(frag);
1503 skb_fill_page_desc(skb, i - 1, page,
1504 frag - page_address(page), fragsz);
Petar Penkov90e33d42017-09-22 13:49:15 -07001505 }
1506
1507 return skb;
1508free:
1509 /* frees skb and all frags allocated with napi_alloc_frag() */
1510 napi_free_frags(&tfile->napi);
1511 return ERR_PTR(err);
1512}
1513
Rusty Russellf42157c2008-08-15 15:15:10 -07001514/* prepad is the amount to reserve at front. len is length after that.
1515 * linear is a hint as to how much to copy (usually headers). */
Jason Wang54f968d2012-10-31 19:45:57 +00001516static struct sk_buff *tun_alloc_skb(struct tun_file *tfile,
stephen hemminger6f7c1562011-06-08 14:33:08 +00001517 size_t prepad, size_t len,
1518 size_t linear, int noblock)
Rusty Russellf42157c2008-08-15 15:15:10 -07001519{
Jason Wang54f968d2012-10-31 19:45:57 +00001520 struct sock *sk = tfile->socket.sk;
Rusty Russellf42157c2008-08-15 15:15:10 -07001521 struct sk_buff *skb;
Herbert Xu33dccbb2009-02-05 21:25:32 -08001522 int err;
Rusty Russellf42157c2008-08-15 15:15:10 -07001523
1524 /* Under a page? Don't bother with paged skb. */
Herbert Xu0eca93b2009-04-14 02:09:43 -07001525 if (prepad + len < PAGE_SIZE || !linear)
Herbert Xu33dccbb2009-02-05 21:25:32 -08001526 linear = len;
Rusty Russellf42157c2008-08-15 15:15:10 -07001527
Herbert Xu33dccbb2009-02-05 21:25:32 -08001528 skb = sock_alloc_send_pskb(sk, prepad + linear, len - linear, noblock,
Eric Dumazet28d64272013-08-08 14:38:47 -07001529 &err, 0);
Rusty Russellf42157c2008-08-15 15:15:10 -07001530 if (!skb)
Herbert Xu33dccbb2009-02-05 21:25:32 -08001531 return ERR_PTR(err);
Rusty Russellf42157c2008-08-15 15:15:10 -07001532
1533 skb_reserve(skb, prepad);
1534 skb_put(skb, linear);
Herbert Xu33dccbb2009-02-05 21:25:32 -08001535 skb->data_len = len - linear;
1536 skb->len += len - linear;
Rusty Russellf42157c2008-08-15 15:15:10 -07001537
1538 return skb;
1539}
1540
Jason Wang5503fce2017-01-18 15:02:03 +08001541static void tun_rx_batched(struct tun_struct *tun, struct tun_file *tfile,
1542 struct sk_buff *skb, int more)
1543{
1544 struct sk_buff_head *queue = &tfile->sk.sk_write_queue;
1545 struct sk_buff_head process_queue;
1546 u32 rx_batched = tun->rx_batched;
1547 bool rcv = false;
1548
1549 if (!rx_batched || (!more && skb_queue_empty(queue))) {
1550 local_bh_disable();
Matthew Cover8ebebcb2018-11-18 00:46:00 -07001551 skb_record_rx_queue(skb, tfile->queue_index);
Jason Wang5503fce2017-01-18 15:02:03 +08001552 netif_receive_skb(skb);
1553 local_bh_enable();
1554 return;
1555 }
1556
1557 spin_lock(&queue->lock);
1558 if (!more || skb_queue_len(queue) == rx_batched) {
1559 __skb_queue_head_init(&process_queue);
1560 skb_queue_splice_tail_init(queue, &process_queue);
1561 rcv = true;
1562 } else {
1563 __skb_queue_tail(queue, skb);
1564 }
1565 spin_unlock(&queue->lock);
1566
1567 if (rcv) {
1568 struct sk_buff *nskb;
1569
1570 local_bh_disable();
Matthew Cover8ebebcb2018-11-18 00:46:00 -07001571 while ((nskb = __skb_dequeue(&process_queue))) {
1572 skb_record_rx_queue(nskb, tfile->queue_index);
Jason Wang5503fce2017-01-18 15:02:03 +08001573 netif_receive_skb(nskb);
Matthew Cover8ebebcb2018-11-18 00:46:00 -07001574 }
1575 skb_record_rx_queue(skb, tfile->queue_index);
Jason Wang5503fce2017-01-18 15:02:03 +08001576 netif_receive_skb(skb);
1577 local_bh_enable();
1578 }
1579}
1580
Jason Wang66ccbc92017-08-11 19:41:16 +08001581static bool tun_can_build_skb(struct tun_struct *tun, struct tun_file *tfile,
1582 int len, int noblock, bool zerocopy)
1583{
1584 if ((tun->flags & TUN_TYPE_MASK) != IFF_TAP)
1585 return false;
1586
1587 if (tfile->socket.sk->sk_sndbuf != INT_MAX)
1588 return false;
1589
1590 if (!noblock)
1591 return false;
1592
1593 if (zerocopy)
1594 return false;
1595
1596 if (SKB_DATA_ALIGN(len + TUN_RX_PAD) +
1597 SKB_DATA_ALIGN(sizeof(struct skb_shared_info)) > PAGE_SIZE)
1598 return false;
1599
1600 return true;
1601}
1602
Jason Wangac1f1f62018-09-12 11:17:03 +08001603static struct sk_buff *__tun_build_skb(struct page_frag *alloc_frag, char *buf,
Jason Wang8ae1aff2018-09-12 11:17:04 +08001604 int buflen, int len, int pad)
Jason Wangac1f1f62018-09-12 11:17:03 +08001605{
1606 struct sk_buff *skb = build_skb(buf, buflen);
1607
1608 if (!skb)
1609 return ERR_PTR(-ENOMEM);
1610
Jason Wang8ae1aff2018-09-12 11:17:04 +08001611 skb_reserve(skb, pad);
Jason Wangac1f1f62018-09-12 11:17:03 +08001612 skb_put(skb, len);
1613
1614 get_page(alloc_frag->page);
1615 alloc_frag->offset += buflen;
1616
1617 return skb;
1618}
1619
Jason Wang8ae1aff2018-09-12 11:17:04 +08001620static int tun_xdp_act(struct tun_struct *tun, struct bpf_prog *xdp_prog,
1621 struct xdp_buff *xdp, u32 act)
1622{
1623 int err;
1624
1625 switch (act) {
1626 case XDP_REDIRECT:
1627 err = xdp_do_redirect(tun->dev, xdp, xdp_prog);
Jason Wang8ae1aff2018-09-12 11:17:04 +08001628 if (err)
1629 return err;
1630 break;
1631 case XDP_TX:
1632 err = tun_xdp_tx(tun->dev, xdp);
1633 if (err < 0)
1634 return err;
1635 break;
1636 case XDP_PASS:
1637 break;
1638 default:
1639 bpf_warn_invalid_xdp_action(act);
1640 /* fall through */
1641 case XDP_ABORTED:
1642 trace_xdp_exception(tun->dev, xdp_prog, act);
1643 /* fall through */
1644 case XDP_DROP:
1645 this_cpu_inc(tun->pcpu_stats->rx_dropped);
1646 break;
1647 }
1648
1649 return act;
1650}
1651
Jason Wang761876c2017-08-11 19:41:18 +08001652static struct sk_buff *tun_build_skb(struct tun_struct *tun,
1653 struct tun_file *tfile,
Jason Wang66ccbc92017-08-11 19:41:16 +08001654 struct iov_iter *from,
Jason Wang761876c2017-08-11 19:41:18 +08001655 struct virtio_net_hdr *hdr,
Jason Wang1cfe6e92017-09-04 11:36:09 +08001656 int len, int *skb_xdp)
Jason Wang66ccbc92017-08-11 19:41:16 +08001657{
Eric Dumazet0bbd7da2017-08-16 22:14:33 +08001658 struct page_frag *alloc_frag = &current->task_frag;
Jason Wang761876c2017-08-11 19:41:18 +08001659 struct bpf_prog *xdp_prog;
Jason Wang7df13212017-09-04 11:36:08 +08001660 int buflen = SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
Jason Wang66ccbc92017-08-11 19:41:16 +08001661 char *buf;
1662 size_t copied;
Jason Wang8ae1aff2018-09-12 11:17:04 +08001663 int pad = TUN_RX_PAD;
1664 int err = 0;
Jason Wang7df13212017-09-04 11:36:08 +08001665
1666 rcu_read_lock();
1667 xdp_prog = rcu_dereference(tun->xdp_prog);
1668 if (xdp_prog)
Jason Wang4f23aff2018-09-12 11:17:00 +08001669 pad += XDP_PACKET_HEADROOM;
Jason Wang7df13212017-09-04 11:36:08 +08001670 buflen += SKB_DATA_ALIGN(len + pad);
1671 rcu_read_unlock();
Jason Wang66ccbc92017-08-11 19:41:16 +08001672
Jason Wang63b9ab62017-10-27 11:05:44 +08001673 alloc_frag->offset = ALIGN((u64)alloc_frag->offset, SMP_CACHE_BYTES);
Jason Wang66ccbc92017-08-11 19:41:16 +08001674 if (unlikely(!skb_page_frag_refill(buflen, alloc_frag, GFP_KERNEL)))
1675 return ERR_PTR(-ENOMEM);
1676
1677 buf = (char *)page_address(alloc_frag->page) + alloc_frag->offset;
1678 copied = copy_page_from_iter(alloc_frag->page,
Jason Wang7df13212017-09-04 11:36:08 +08001679 alloc_frag->offset + pad,
Jason Wang66ccbc92017-08-11 19:41:16 +08001680 len, from);
1681 if (copied != len)
1682 return ERR_PTR(-EFAULT);
1683
Jason Wang7df13212017-09-04 11:36:08 +08001684 /* There's a small window that XDP may be set after the check
1685 * of xdp_prog above, this should be rare and for simplicity
1686 * we do XDP on skb in case the headroom is not enough.
1687 */
Jason Wangac1f1f62018-09-12 11:17:03 +08001688 if (hdr->gso_type || !xdp_prog) {
Jason Wang1cfe6e92017-09-04 11:36:09 +08001689 *skb_xdp = 1;
Jason Wang8ae1aff2018-09-12 11:17:04 +08001690 return __tun_build_skb(alloc_frag, buf, buflen, len, pad);
Jason Wangac1f1f62018-09-12 11:17:03 +08001691 }
1692
1693 *skb_xdp = 0;
Jason Wang66ccbc92017-08-11 19:41:16 +08001694
Toshiaki Makita6547e382018-05-28 19:37:49 +09001695 local_bh_disable();
Jason Wang761876c2017-08-11 19:41:18 +08001696 rcu_read_lock();
1697 xdp_prog = rcu_dereference(tun->xdp_prog);
Jason Wang8ae1aff2018-09-12 11:17:04 +08001698 if (xdp_prog) {
Jason Wang761876c2017-08-11 19:41:18 +08001699 struct xdp_buff xdp;
Jason Wang761876c2017-08-11 19:41:18 +08001700 u32 act;
1701
1702 xdp.data_hard_start = buf;
Jason Wang7df13212017-09-04 11:36:08 +08001703 xdp.data = buf + pad;
Daniel Borkmannde8f3a82017-09-25 02:25:51 +02001704 xdp_set_data_meta_invalid(&xdp);
Jason Wang761876c2017-08-11 19:41:18 +08001705 xdp.data_end = xdp.data + len;
Jesper Dangaard Brouer8bf5c4e2018-01-03 11:25:59 +01001706 xdp.rxq = &tfile->xdp_rxq;
Jason Wang761876c2017-08-11 19:41:18 +08001707
Jason Wang8ae1aff2018-09-12 11:17:04 +08001708 act = bpf_prog_run_xdp(xdp_prog, &xdp);
1709 if (act == XDP_REDIRECT || act == XDP_TX) {
Jason Wang761876c2017-08-11 19:41:18 +08001710 get_page(alloc_frag->page);
1711 alloc_frag->offset += buflen;
Jason Wang761876c2017-08-11 19:41:18 +08001712 }
Jason Wang8ae1aff2018-09-12 11:17:04 +08001713 err = tun_xdp_act(tun, xdp_prog, &xdp, act);
1714 if (err < 0)
1715 goto err_xdp;
Jason Wang1a097912018-09-12 11:17:05 +08001716 if (err == XDP_REDIRECT)
1717 xdp_do_flush_map();
Jason Wang8ae1aff2018-09-12 11:17:04 +08001718 if (err != XDP_PASS)
1719 goto out;
1720
1721 pad = xdp.data - xdp.data_hard_start;
1722 len = xdp.data_end - xdp.data;
Jason Wang761876c2017-08-11 19:41:18 +08001723 }
Jason Wang291aeb22018-09-12 11:17:01 +08001724 rcu_read_unlock();
1725 local_bh_enable();
Jason Wang761876c2017-08-11 19:41:18 +08001726
Jason Wang8ae1aff2018-09-12 11:17:04 +08001727 return __tun_build_skb(alloc_frag, buf, buflen, len, pad);
Jason Wang761876c2017-08-11 19:41:18 +08001728
Jason Wang8ae1aff2018-09-12 11:17:04 +08001729err_xdp:
Jason Wang761876c2017-08-11 19:41:18 +08001730 put_page(alloc_frag->page);
Jason Wangf7053b62018-09-12 11:17:02 +08001731out:
Jason Wang761876c2017-08-11 19:41:18 +08001732 rcu_read_unlock();
Toshiaki Makita6547e382018-05-28 19:37:49 +09001733 local_bh_enable();
Jason Wang761876c2017-08-11 19:41:18 +08001734 return NULL;
Jason Wang66ccbc92017-08-11 19:41:16 +08001735}
1736
Linus Torvalds1da177e2005-04-16 15:20:36 -07001737/* Get packet from user space buffer */
Jason Wang54f968d2012-10-31 19:45:57 +00001738static ssize_t tun_get_user(struct tun_struct *tun, struct tun_file *tfile,
Al Virof5ff53b2014-06-19 15:36:49 -04001739 void *msg_control, struct iov_iter *from,
Jason Wang5503fce2017-01-18 15:02:03 +08001740 int noblock, bool more)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001741{
Harvey Harrison09640e632009-02-01 00:45:17 -08001742 struct tun_pi pi = { 0, cpu_to_be16(ETH_P_IP) };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001743 struct sk_buff *skb;
Al Virof5ff53b2014-06-19 15:36:49 -04001744 size_t total_len = iov_iter_count(from);
Paolo Abenieaea34b2016-02-26 10:45:40 +01001745 size_t len = total_len, align = tun->align, linear;
Rusty Russellf43798c2008-07-03 03:48:02 -07001746 struct virtio_net_hdr gso = { 0 };
Paolo Abeni608b9972016-04-13 10:52:20 +02001747 struct tun_pcpu_stats *stats;
Jason Wang96f8d9e2013-11-13 14:00:39 +08001748 int good_linear;
Michael S. Tsirkin06908992012-07-20 09:23:23 +00001749 int copylen;
1750 bool zerocopy = false;
1751 int err;
Jason Wang96f84062017-12-04 17:31:23 +08001752 u32 rxhash = 0;
Jason Wang1cfe6e92017-09-04 11:36:09 +08001753 int skb_xdp = 1;
Eric Dumazetaf3fb242018-09-28 14:51:49 -07001754 bool frags = tun_napi_frags_enabled(tfile);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001755
Michael S. Tsirkin40630b82014-11-19 15:17:31 +02001756 if (!(tun->flags & IFF_NO_PI)) {
Dan Carpenter15718ea2013-08-15 15:52:57 +03001757 if (len < sizeof(pi))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001758 return -EINVAL;
Dan Carpenter15718ea2013-08-15 15:52:57 +03001759 len -= sizeof(pi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001760
Al Virocbbd26b2016-11-01 22:09:04 -04001761 if (!copy_from_iter_full(&pi, sizeof(pi), from))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001762 return -EFAULT;
1763 }
1764
Michael S. Tsirkin40630b82014-11-19 15:17:31 +02001765 if (tun->flags & IFF_VNET_HDR) {
Willem de Bruijne1edab82017-02-03 18:20:48 -05001766 int vnet_hdr_sz = READ_ONCE(tun->vnet_hdr_sz);
1767
1768 if (len < vnet_hdr_sz)
Rusty Russellf43798c2008-07-03 03:48:02 -07001769 return -EINVAL;
Willem de Bruijne1edab82017-02-03 18:20:48 -05001770 len -= vnet_hdr_sz;
Rusty Russellf43798c2008-07-03 03:48:02 -07001771
Al Virocbbd26b2016-11-01 22:09:04 -04001772 if (!copy_from_iter_full(&gso, sizeof(gso), from))
Rusty Russellf43798c2008-07-03 03:48:02 -07001773 return -EFAULT;
1774
Herbert Xu49091222009-06-08 00:20:01 -07001775 if ((gso.flags & VIRTIO_NET_HDR_F_NEEDS_CSUM) &&
Michael S. Tsirkin56f0dcc2014-10-23 22:59:31 +03001776 tun16_to_cpu(tun, gso.csum_start) + tun16_to_cpu(tun, gso.csum_offset) + 2 > tun16_to_cpu(tun, gso.hdr_len))
1777 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 -07001778
Michael S. Tsirkin56f0dcc2014-10-23 22:59:31 +03001779 if (tun16_to_cpu(tun, gso.hdr_len) > len)
Rusty Russellf43798c2008-07-03 03:48:02 -07001780 return -EINVAL;
Willem de Bruijne1edab82017-02-03 18:20:48 -05001781 iov_iter_advance(from, vnet_hdr_sz - sizeof(gso));
Rusty Russellf43798c2008-07-03 03:48:02 -07001782 }
1783
Michael S. Tsirkin40630b82014-11-19 15:17:31 +02001784 if ((tun->flags & TUN_TYPE_MASK) == IFF_TAP) {
stephen hemmingera504b862011-06-08 14:33:07 +00001785 align += NET_IP_ALIGN;
Herbert Xu0eca93b2009-04-14 02:09:43 -07001786 if (unlikely(len < ETH_HLEN ||
Michael S. Tsirkin56f0dcc2014-10-23 22:59:31 +03001787 (gso.hdr_len && tun16_to_cpu(tun, gso.hdr_len) < ETH_HLEN)))
Rusty Russelle01bf1c2008-04-12 18:49:30 -07001788 return -EINVAL;
1789 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001790
Jason Wang96f8d9e2013-11-13 14:00:39 +08001791 good_linear = SKB_MAX_HEAD(align);
1792
Jason Wang88529172013-07-18 10:55:15 +08001793 if (msg_control) {
Al Virof5ff53b2014-06-19 15:36:49 -04001794 struct iov_iter i = *from;
1795
Jason Wang88529172013-07-18 10:55:15 +08001796 /* There are 256 bytes to be copied in skb, so there is
1797 * enough room for skb expand head in case it is used.
Michael S. Tsirkin06908992012-07-20 09:23:23 +00001798 * The rest of the buffer is mapped from userspace.
1799 */
Michael S. Tsirkin56f0dcc2014-10-23 22:59:31 +03001800 copylen = gso.hdr_len ? tun16_to_cpu(tun, gso.hdr_len) : GOODCOPY_LEN;
Jason Wang96f8d9e2013-11-13 14:00:39 +08001801 if (copylen > good_linear)
1802 copylen = good_linear;
Jason Wang3dd5c332013-07-10 13:43:27 +08001803 linear = copylen;
Al Virof5ff53b2014-06-19 15:36:49 -04001804 iov_iter_advance(&i, copylen);
1805 if (iov_iter_npages(&i, INT_MAX) <= MAX_SKB_FRAGS)
Jason Wang88529172013-07-18 10:55:15 +08001806 zerocopy = true;
1807 }
1808
Petar Penkov90e33d42017-09-22 13:49:15 -07001809 if (!frags && tun_can_build_skb(tun, tfile, len, noblock, zerocopy)) {
Jason Wang1cfe6e92017-09-04 11:36:09 +08001810 /* For the packet that is not easy to be processed
1811 * (e.g gso or jumbo packet), we will do it at after
1812 * skb was created with generic XDP routine.
1813 */
1814 skb = tun_build_skb(tun, tfile, from, &gso, len, &skb_xdp);
Jason Wang66ccbc92017-08-11 19:41:16 +08001815 if (IS_ERR(skb)) {
Paolo Abeni608b9972016-04-13 10:52:20 +02001816 this_cpu_inc(tun->pcpu_stats->rx_dropped);
Jason Wang66ccbc92017-08-11 19:41:16 +08001817 return PTR_ERR(skb);
1818 }
Jason Wang761876c2017-08-11 19:41:18 +08001819 if (!skb)
1820 return total_len;
Jason Wang66ccbc92017-08-11 19:41:16 +08001821 } else {
1822 if (!zerocopy) {
1823 copylen = len;
1824 if (tun16_to_cpu(tun, gso.hdr_len) > good_linear)
1825 linear = good_linear;
1826 else
1827 linear = tun16_to_cpu(tun, gso.hdr_len);
1828 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001829
Petar Penkov90e33d42017-09-22 13:49:15 -07001830 if (frags) {
1831 mutex_lock(&tfile->napi_mutex);
1832 skb = tun_napi_alloc_frags(tfile, copylen, from);
1833 /* tun_napi_alloc_frags() enforces a layout for the skb.
1834 * If zerocopy is enabled, then this layout will be
1835 * overwritten by zerocopy_sg_from_iter().
1836 */
1837 zerocopy = false;
1838 } else {
1839 skb = tun_alloc_skb(tfile, align, copylen, linear,
1840 noblock);
1841 }
1842
Jason Wang66ccbc92017-08-11 19:41:16 +08001843 if (IS_ERR(skb)) {
1844 if (PTR_ERR(skb) != -EAGAIN)
1845 this_cpu_inc(tun->pcpu_stats->rx_dropped);
Petar Penkov90e33d42017-09-22 13:49:15 -07001846 if (frags)
1847 mutex_unlock(&tfile->napi_mutex);
Jason Wang66ccbc92017-08-11 19:41:16 +08001848 return PTR_ERR(skb);
1849 }
Michael S. Tsirkin06908992012-07-20 09:23:23 +00001850
Jason Wang66ccbc92017-08-11 19:41:16 +08001851 if (zerocopy)
1852 err = zerocopy_sg_from_iter(skb, from);
1853 else
1854 err = skb_copy_datagram_from_iter(skb, 0, from, len);
1855
1856 if (err) {
Eric Dumazet44771382019-03-14 20:19:47 -07001857 err = -EFAULT;
1858drop:
Jason Wang66ccbc92017-08-11 19:41:16 +08001859 this_cpu_inc(tun->pcpu_stats->rx_dropped);
1860 kfree_skb(skb);
Petar Penkov90e33d42017-09-22 13:49:15 -07001861 if (frags) {
1862 tfile->napi.skb = NULL;
1863 mutex_unlock(&tfile->napi_mutex);
1864 }
1865
Eric Dumazet44771382019-03-14 20:19:47 -07001866 return err;
Jason Wang66ccbc92017-08-11 19:41:16 +08001867 }
Dave Jones8f227572006-03-11 18:49:13 -08001868 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001869
Jarno Rajahalme3e9e40e2016-11-18 15:40:38 -08001870 if (virtio_net_hdr_to_skb(skb, &gso, tun_is_little_endian(tun))) {
Paolo Abenidf10db92016-06-14 00:00:04 +02001871 this_cpu_inc(tun->pcpu_stats->rx_frame_errors);
1872 kfree_skb(skb);
Petar Penkov90e33d42017-09-22 13:49:15 -07001873 if (frags) {
1874 tfile->napi.skb = NULL;
1875 mutex_unlock(&tfile->napi_mutex);
1876 }
1877
Paolo Abenidf10db92016-06-14 00:00:04 +02001878 return -EINVAL;
1879 }
1880
Linus Torvalds1da177e2005-04-16 15:20:36 -07001881 switch (tun->flags & TUN_TYPE_MASK) {
Michael S. Tsirkin40630b82014-11-19 15:17:31 +02001882 case IFF_TUN:
1883 if (tun->flags & IFF_NO_PI) {
Alexander Potapenko2580c4c2017-09-28 11:32:37 +02001884 u8 ip_version = skb->len ? (skb->data[0] >> 4) : 0;
1885
1886 switch (ip_version) {
1887 case 4:
Ang Way Chuangf09f7ee2008-06-17 21:10:33 -07001888 pi.proto = htons(ETH_P_IP);
1889 break;
Alexander Potapenko2580c4c2017-09-28 11:32:37 +02001890 case 6:
Ang Way Chuangf09f7ee2008-06-17 21:10:33 -07001891 pi.proto = htons(ETH_P_IPV6);
1892 break;
1893 default:
Paolo Abeni608b9972016-04-13 10:52:20 +02001894 this_cpu_inc(tun->pcpu_stats->rx_dropped);
Ang Way Chuangf09f7ee2008-06-17 21:10:33 -07001895 kfree_skb(skb);
1896 return -EINVAL;
1897 }
1898 }
1899
Arnaldo Carvalho de Melo459a98e2007-03-19 15:30:44 -07001900 skb_reset_mac_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001901 skb->protocol = pi.proto;
Arnaldo Carvalho de Melo4c13eb62007-04-25 17:40:23 -07001902 skb->dev = tun->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001903 break;
Michael S. Tsirkin40630b82014-11-19 15:17:31 +02001904 case IFF_TAP:
Petar Penkov90e33d42017-09-22 13:49:15 -07001905 if (!frags)
1906 skb->protocol = eth_type_trans(skb, tun->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001907 break;
Joe Perches6403eab2011-06-03 11:51:20 +00001908 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001909
Michael S. Tsirkin06908992012-07-20 09:23:23 +00001910 /* copy skb_ubuf_info for callback when skb has no error */
1911 if (zerocopy) {
1912 skb_shinfo(skb)->destructor_arg = msg_control;
1913 skb_shinfo(skb)->tx_flags |= SKBTX_DEV_ZEROCOPY;
Pravin B Shelarc9af6db2013-02-11 09:27:41 +00001914 skb_shinfo(skb)->tx_flags |= SKBTX_SHARED_FRAG;
Jason Wangaf1cc7a2016-11-30 13:17:51 +08001915 } else if (msg_control) {
1916 struct ubuf_info *uarg = msg_control;
1917 uarg->callback(uarg, false);
Michael S. Tsirkin06908992012-07-20 09:23:23 +00001918 }
1919
Vlad Yasevich72f65102015-02-03 16:36:16 -05001920 skb_reset_network_header(skb);
Maxim Mikityanskiyd2aa1252019-02-21 12:39:57 +00001921 skb_probe_transport_header(skb);
Jason Wang38502af2013-03-25 20:19:56 +00001922
Jason Wang1cfe6e92017-09-04 11:36:09 +08001923 if (skb_xdp) {
Jason Wang761876c2017-08-11 19:41:18 +08001924 struct bpf_prog *xdp_prog;
1925 int ret;
1926
Toshiaki Makita6547e382018-05-28 19:37:49 +09001927 local_bh_disable();
Jason Wang761876c2017-08-11 19:41:18 +08001928 rcu_read_lock();
1929 xdp_prog = rcu_dereference(tun->xdp_prog);
1930 if (xdp_prog) {
1931 ret = do_xdp_generic(xdp_prog, skb);
1932 if (ret != XDP_PASS) {
1933 rcu_read_unlock();
Toshiaki Makita6547e382018-05-28 19:37:49 +09001934 local_bh_enable();
Jason Wang761876c2017-08-11 19:41:18 +08001935 return total_len;
1936 }
1937 }
1938 rcu_read_unlock();
Toshiaki Makita6547e382018-05-28 19:37:49 +09001939 local_bh_enable();
Jason Wang761876c2017-08-11 19:41:18 +08001940 }
1941
Paolo Abenicf1a1e02018-04-20 13:18:16 +02001942 /* Compute the costly rx hash only if needed for flow updates.
1943 * We may get a very small possibility of OOO during switching, not
1944 * worth to optimize.
1945 */
1946 if (!rcu_access_pointer(tun->steering_prog) && tun->numqueues > 1 &&
1947 !tfile->detached)
Jason Wang96f84062017-12-04 17:31:23 +08001948 rxhash = __skb_get_hash_symmetric(skb);
Petar Penkov94317092017-09-22 13:49:14 -07001949
Eric Dumazet44771382019-03-14 20:19:47 -07001950 rcu_read_lock();
1951 if (unlikely(!(tun->dev->flags & IFF_UP))) {
1952 err = -EIO;
Eric Dumazet9180bb42019-03-16 13:09:53 -07001953 rcu_read_unlock();
Eric Dumazet44771382019-03-14 20:19:47 -07001954 goto drop;
1955 }
1956
Petar Penkov90e33d42017-09-22 13:49:15 -07001957 if (frags) {
1958 /* Exercise flow dissector code path. */
Stanislav Fomichevc43f1252019-04-22 08:55:48 -07001959 u32 headlen = eth_get_headlen(tun->dev, skb->data,
1960 skb_headlen(skb));
Petar Penkov90e33d42017-09-22 13:49:15 -07001961
Eric Dumazet010f2452017-10-17 10:07:44 -07001962 if (unlikely(headlen > skb_headlen(skb))) {
Petar Penkov90e33d42017-09-22 13:49:15 -07001963 this_cpu_inc(tun->pcpu_stats->rx_dropped);
1964 napi_free_frags(&tfile->napi);
Eric Dumazet44771382019-03-14 20:19:47 -07001965 rcu_read_unlock();
Petar Penkov90e33d42017-09-22 13:49:15 -07001966 mutex_unlock(&tfile->napi_mutex);
1967 WARN_ON(1);
1968 return -ENOMEM;
1969 }
1970
1971 local_bh_disable();
1972 napi_gro_frags(&tfile->napi);
1973 local_bh_enable();
1974 mutex_unlock(&tfile->napi_mutex);
Eric Dumazetaec72f32017-10-18 12:12:09 -07001975 } else if (tfile->napi_enabled) {
Petar Penkov94317092017-09-22 13:49:14 -07001976 struct sk_buff_head *queue = &tfile->sk.sk_write_queue;
1977 int queue_len;
1978
1979 spin_lock_bh(&queue->lock);
1980 __skb_queue_tail(queue, skb);
1981 queue_len = skb_queue_len(queue);
1982 spin_unlock(&queue->lock);
1983
1984 if (!more || queue_len > NAPI_POLL_WEIGHT)
1985 napi_schedule(&tfile->napi);
1986
1987 local_bh_enable();
1988 } else if (!IS_ENABLED(CONFIG_4KSTACKS)) {
1989 tun_rx_batched(tun, tfile, skb, more);
1990 } else {
1991 netif_rx_ni(skb);
1992 }
Eric Dumazet44771382019-03-14 20:19:47 -07001993 rcu_read_unlock();
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001994
Paolo Abeni608b9972016-04-13 10:52:20 +02001995 stats = get_cpu_ptr(tun->pcpu_stats);
1996 u64_stats_update_begin(&stats->syncp);
1997 stats->rx_packets++;
1998 stats->rx_bytes += len;
1999 u64_stats_update_end(&stats->syncp);
2000 put_cpu_ptr(stats);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002001
Jason Wang96f84062017-12-04 17:31:23 +08002002 if (rxhash)
2003 tun_flow_update(tun, rxhash, tfile);
2004
Michael S. Tsirkin06908992012-07-20 09:23:23 +00002005 return total_len;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002006}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002007
Al Virof5ff53b2014-06-19 15:36:49 -04002008static ssize_t tun_chr_write_iter(struct kiocb *iocb, struct iov_iter *from)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002009{
Herbert Xu33dccbb2009-02-05 21:25:32 -08002010 struct file *file = iocb->ki_filp;
Jason Wang54f968d2012-10-31 19:45:57 +00002011 struct tun_file *tfile = file->private_data;
yuan linyu9484dc72017-09-23 22:36:52 +08002012 struct tun_struct *tun = tun_get(tfile);
Eric W. Biederman631ab462009-01-20 11:00:40 +00002013 ssize_t result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002014
2015 if (!tun)
2016 return -EBADFD;
2017
Jason Wang5503fce2017-01-18 15:02:03 +08002018 result = tun_get_user(tun, tfile, NULL, from,
2019 file->f_flags & O_NONBLOCK, false);
Eric W. Biederman631ab462009-01-20 11:00:40 +00002020
2021 tun_put(tun);
2022 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002023}
2024
Jason Wangfc72d1d2018-01-04 11:14:28 +08002025static ssize_t tun_put_user_xdp(struct tun_struct *tun,
2026 struct tun_file *tfile,
Jesper Dangaard Brouer1ffcbc82018-04-17 16:45:47 +02002027 struct xdp_frame *xdp_frame,
Jason Wangfc72d1d2018-01-04 11:14:28 +08002028 struct iov_iter *iter)
2029{
2030 int vnet_hdr_sz = 0;
Jesper Dangaard Brouer1ffcbc82018-04-17 16:45:47 +02002031 size_t size = xdp_frame->len;
Jason Wangfc72d1d2018-01-04 11:14:28 +08002032 struct tun_pcpu_stats *stats;
2033 size_t ret;
2034
2035 if (tun->flags & IFF_VNET_HDR) {
2036 struct virtio_net_hdr gso = { 0 };
2037
2038 vnet_hdr_sz = READ_ONCE(tun->vnet_hdr_sz);
2039 if (unlikely(iov_iter_count(iter) < vnet_hdr_sz))
2040 return -EINVAL;
2041 if (unlikely(copy_to_iter(&gso, sizeof(gso), iter) !=
2042 sizeof(gso)))
2043 return -EFAULT;
2044 iov_iter_advance(iter, vnet_hdr_sz - sizeof(gso));
2045 }
2046
Jesper Dangaard Brouer1ffcbc82018-04-17 16:45:47 +02002047 ret = copy_to_iter(xdp_frame->data, size, iter) + vnet_hdr_sz;
Jason Wangfc72d1d2018-01-04 11:14:28 +08002048
2049 stats = get_cpu_ptr(tun->pcpu_stats);
2050 u64_stats_update_begin(&stats->syncp);
2051 stats->tx_packets++;
2052 stats->tx_bytes += ret;
2053 u64_stats_update_end(&stats->syncp);
2054 put_cpu_ptr(tun->pcpu_stats);
2055
2056 return ret;
2057}
2058
Linus Torvalds1da177e2005-04-16 15:20:36 -07002059/* Put packet to the user space buffer */
stephen hemminger6f7c1562011-06-08 14:33:08 +00002060static ssize_t tun_put_user(struct tun_struct *tun,
Jason Wang54f968d2012-10-31 19:45:57 +00002061 struct tun_file *tfile,
stephen hemminger6f7c1562011-06-08 14:33:08 +00002062 struct sk_buff *skb,
Herbert Xue0b46d02014-11-07 21:22:23 +08002063 struct iov_iter *iter)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002064{
2065 struct tun_pi pi = { 0, skb->protocol };
Paolo Abeni608b9972016-04-13 10:52:20 +02002066 struct tun_pcpu_stats *stats;
Herbert Xue0b46d02014-11-07 21:22:23 +08002067 ssize_t total;
Jason Wang8c847d22014-11-13 16:54:14 +08002068 int vlan_offset = 0;
Herbert Xua8f9bfd2014-11-03 04:30:13 +08002069 int vlan_hlen = 0;
Herbert Xu2eb783c2014-11-03 04:30:14 +08002070 int vnet_hdr_sz = 0;
Herbert Xua8f9bfd2014-11-03 04:30:13 +08002071
Jiri Pirkodf8a39d2015-01-13 17:13:44 +01002072 if (skb_vlan_tag_present(skb))
Herbert Xua8f9bfd2014-11-03 04:30:13 +08002073 vlan_hlen = VLAN_HLEN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002074
Michael S. Tsirkin40630b82014-11-19 15:17:31 +02002075 if (tun->flags & IFF_VNET_HDR)
Willem de Bruijne1edab82017-02-03 18:20:48 -05002076 vnet_hdr_sz = READ_ONCE(tun->vnet_hdr_sz);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002077
Herbert Xue0b46d02014-11-07 21:22:23 +08002078 total = skb->len + vlan_hlen + vnet_hdr_sz;
2079
Michael S. Tsirkin40630b82014-11-19 15:17:31 +02002080 if (!(tun->flags & IFF_NO_PI)) {
Herbert Xue0b46d02014-11-07 21:22:23 +08002081 if (iov_iter_count(iter) < sizeof(pi))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002082 return -EINVAL;
2083
Herbert Xue0b46d02014-11-07 21:22:23 +08002084 total += sizeof(pi);
2085 if (iov_iter_count(iter) < total) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002086 /* Packet will be striped */
2087 pi.flags |= TUN_PKT_STRIP;
2088 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002089
Herbert Xue0b46d02014-11-07 21:22:23 +08002090 if (copy_to_iter(&pi, sizeof(pi), iter) != sizeof(pi))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002091 return -EFAULT;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002092 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002093
Herbert Xu2eb783c2014-11-03 04:30:14 +08002094 if (vnet_hdr_sz) {
Jarno Rajahalme9403cd72016-11-18 15:40:40 -08002095 struct virtio_net_hdr gso;
Mike Rapoport34166092016-06-08 16:09:20 +03002096
Herbert Xue0b46d02014-11-07 21:22:23 +08002097 if (iov_iter_count(iter) < vnet_hdr_sz)
Rusty Russellf43798c2008-07-03 03:48:02 -07002098 return -EINVAL;
2099
Jarno Rajahalme3e9e40e2016-11-18 15:40:38 -08002100 if (virtio_net_hdr_from_skb(skb, &gso,
Willem de Bruijnfd3a8862018-06-06 11:23:01 -04002101 tun_is_little_endian(tun), true,
2102 vlan_hlen)) {
Rusty Russellf43798c2008-07-03 03:48:02 -07002103 struct skb_shared_info *sinfo = skb_shinfo(skb);
Mike Rapoport34166092016-06-08 16:09:20 +03002104 pr_err("unexpected GSO type: "
2105 "0x%x, gso_size %d, hdr_len %d\n",
2106 sinfo->gso_type, tun16_to_cpu(tun, gso.gso_size),
2107 tun16_to_cpu(tun, gso.hdr_len));
2108 print_hex_dump(KERN_ERR, "tun: ",
2109 DUMP_PREFIX_NONE,
2110 16, 1, skb->head,
2111 min((int)tun16_to_cpu(tun, gso.hdr_len), 64), true);
2112 WARN_ON_ONCE(1);
2113 return -EINVAL;
2114 }
Rusty Russellf43798c2008-07-03 03:48:02 -07002115
Herbert Xue0b46d02014-11-07 21:22:23 +08002116 if (copy_to_iter(&gso, sizeof(gso), iter) != sizeof(gso))
Rusty Russellf43798c2008-07-03 03:48:02 -07002117 return -EFAULT;
Jason Wang8c847d22014-11-13 16:54:14 +08002118
2119 iov_iter_advance(iter, vnet_hdr_sz - sizeof(gso));
Rusty Russellf43798c2008-07-03 03:48:02 -07002120 }
2121
Herbert Xua8f9bfd2014-11-03 04:30:13 +08002122 if (vlan_hlen) {
Herbert Xue0b46d02014-11-07 21:22:23 +08002123 int ret;
Jason Wangaff3d702018-01-16 16:31:02 +08002124 struct veth veth;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002125
Jason Wang6680ec62013-07-25 13:00:33 +08002126 veth.h_vlan_proto = skb->vlan_proto;
Jiri Pirkodf8a39d2015-01-13 17:13:44 +01002127 veth.h_vlan_TCI = htons(skb_vlan_tag_get(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002128
Jason Wang6680ec62013-07-25 13:00:33 +08002129 vlan_offset = offsetof(struct vlan_ethhdr, h_vlan_proto);
Jason Wang6680ec62013-07-25 13:00:33 +08002130
Herbert Xue0b46d02014-11-07 21:22:23 +08002131 ret = skb_copy_datagram_iter(skb, 0, iter, vlan_offset);
2132 if (ret || !iov_iter_count(iter))
Jason Wang6680ec62013-07-25 13:00:33 +08002133 goto done;
2134
Herbert Xue0b46d02014-11-07 21:22:23 +08002135 ret = copy_to_iter(&veth, sizeof(veth), iter);
2136 if (ret != sizeof(veth) || !iov_iter_count(iter))
Jason Wang6680ec62013-07-25 13:00:33 +08002137 goto done;
2138 }
2139
Herbert Xue0b46d02014-11-07 21:22:23 +08002140 skb_copy_datagram_iter(skb, vlan_offset, iter, skb->len - vlan_offset);
Jason Wang6680ec62013-07-25 13:00:33 +08002141
2142done:
Paolo Abeni608b9972016-04-13 10:52:20 +02002143 /* caller is in process context, */
2144 stats = get_cpu_ptr(tun->pcpu_stats);
2145 u64_stats_update_begin(&stats->syncp);
2146 stats->tx_packets++;
2147 stats->tx_bytes += skb->len + vlan_hlen;
2148 u64_stats_update_end(&stats->syncp);
2149 put_cpu_ptr(tun->pcpu_stats);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002150
2151 return total;
2152}
2153
Jason Wangfc72d1d2018-01-04 11:14:28 +08002154static void *tun_ring_recv(struct tun_file *tfile, int noblock, int *err)
Jason Wang1576d982016-06-30 14:45:36 +08002155{
2156 DECLARE_WAITQUEUE(wait, current);
Jason Wangfc72d1d2018-01-04 11:14:28 +08002157 void *ptr = NULL;
Jason Wangf48cc6b2016-07-04 13:53:38 +08002158 int error = 0;
Jason Wang1576d982016-06-30 14:45:36 +08002159
Jason Wangfc72d1d2018-01-04 11:14:28 +08002160 ptr = ptr_ring_consume(&tfile->tx_ring);
2161 if (ptr)
Jason Wang1576d982016-06-30 14:45:36 +08002162 goto out;
2163 if (noblock) {
Jason Wangf48cc6b2016-07-04 13:53:38 +08002164 error = -EAGAIN;
Jason Wang1576d982016-06-30 14:45:36 +08002165 goto out;
2166 }
2167
2168 add_wait_queue(&tfile->wq.wait, &wait);
Jason Wang1576d982016-06-30 14:45:36 +08002169
2170 while (1) {
Timur Celik71828b22019-02-23 12:53:13 +01002171 set_current_state(TASK_INTERRUPTIBLE);
Jason Wangfc72d1d2018-01-04 11:14:28 +08002172 ptr = ptr_ring_consume(&tfile->tx_ring);
2173 if (ptr)
Jason Wang1576d982016-06-30 14:45:36 +08002174 break;
2175 if (signal_pending(current)) {
Jason Wangf48cc6b2016-07-04 13:53:38 +08002176 error = -ERESTARTSYS;
Jason Wang1576d982016-06-30 14:45:36 +08002177 break;
2178 }
2179 if (tfile->socket.sk->sk_shutdown & RCV_SHUTDOWN) {
Jason Wangf48cc6b2016-07-04 13:53:38 +08002180 error = -EFAULT;
Jason Wang1576d982016-06-30 14:45:36 +08002181 break;
2182 }
2183
2184 schedule();
2185 }
2186
Timur Celikecef67c2019-02-25 21:13:13 +01002187 __set_current_state(TASK_RUNNING);
Jason Wang1576d982016-06-30 14:45:36 +08002188 remove_wait_queue(&tfile->wq.wait, &wait);
2189
2190out:
Jason Wangf48cc6b2016-07-04 13:53:38 +08002191 *err = error;
Jason Wangfc72d1d2018-01-04 11:14:28 +08002192 return ptr;
Jason Wang1576d982016-06-30 14:45:36 +08002193}
2194
Jason Wang54f968d2012-10-31 19:45:57 +00002195static ssize_t tun_do_read(struct tun_struct *tun, struct tun_file *tfile,
Al Viro9b067032014-11-07 13:52:07 -05002196 struct iov_iter *to,
Jason Wangfc72d1d2018-01-04 11:14:28 +08002197 int noblock, void *ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002198{
Al Viro9b067032014-11-07 13:52:07 -05002199 ssize_t ret;
Jason Wang1576d982016-06-30 14:45:36 +08002200 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002201
Rami Rosen3872baf2012-11-25 22:07:41 +00002202 tun_debug(KERN_INFO, tun, "tun_do_read\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002203
Wei Xuc33ee152017-12-01 05:10:37 -05002204 if (!iov_iter_count(to)) {
Jason Wangfc72d1d2018-01-04 11:14:28 +08002205 tun_ptr_free(ptr);
Al Viro9b067032014-11-07 13:52:07 -05002206 return 0;
Wei Xuc33ee152017-12-01 05:10:37 -05002207 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002208
Jason Wangfc72d1d2018-01-04 11:14:28 +08002209 if (!ptr) {
Jason Wangac77cfd2017-05-17 12:14:43 +08002210 /* Read frames from ring */
Jason Wangfc72d1d2018-01-04 11:14:28 +08002211 ptr = tun_ring_recv(tfile, noblock, &err);
2212 if (!ptr)
Jason Wangac77cfd2017-05-17 12:14:43 +08002213 return err;
2214 }
Herbert Xue0b46d02014-11-07 21:22:23 +08002215
Jesper Dangaard Brouer1ffcbc82018-04-17 16:45:47 +02002216 if (tun_is_xdp_frame(ptr)) {
2217 struct xdp_frame *xdpf = tun_ptr_to_xdp(ptr);
Jason Wangfc72d1d2018-01-04 11:14:28 +08002218
Jesper Dangaard Brouer1ffcbc82018-04-17 16:45:47 +02002219 ret = tun_put_user_xdp(tun, tfile, xdpf, to);
Jesper Dangaard Brouer03993092018-04-17 16:46:32 +02002220 xdp_return_frame(xdpf);
Jason Wangfc72d1d2018-01-04 11:14:28 +08002221 } else {
2222 struct sk_buff *skb = ptr;
2223
2224 ret = tun_put_user(tun, tfile, skb, to);
2225 if (unlikely(ret < 0))
2226 kfree_skb(skb);
2227 else
2228 consume_skb(skb);
2229 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002230
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00002231 return ret;
2232}
2233
Al Viro9b067032014-11-07 13:52:07 -05002234static ssize_t tun_chr_read_iter(struct kiocb *iocb, struct iov_iter *to)
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00002235{
2236 struct file *file = iocb->ki_filp;
2237 struct tun_file *tfile = file->private_data;
yuan linyu9484dc72017-09-23 22:36:52 +08002238 struct tun_struct *tun = tun_get(tfile);
Al Viro9b067032014-11-07 13:52:07 -05002239 ssize_t len = iov_iter_count(to), ret;
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00002240
2241 if (!tun)
2242 return -EBADFD;
Jason Wangac77cfd2017-05-17 12:14:43 +08002243 ret = tun_do_read(tun, tfile, to, file->f_flags & O_NONBLOCK, NULL);
David S. Miller42404c02013-12-10 22:05:45 -05002244 ret = min_t(ssize_t, ret, len);
Zhi Yong Wud0b7da8a2013-12-06 14:16:51 +08002245 if (ret > 0)
2246 iocb->ki_pos = ret;
Eric W. Biederman631ab462009-01-20 11:00:40 +00002247 tun_put(tun);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002248 return ret;
2249}
2250
Jason Wangcd5681d2018-01-16 16:31:01 +08002251static void tun_prog_free(struct rcu_head *rcu)
Jason Wang96f84062017-12-04 17:31:23 +08002252{
Jason Wangcd5681d2018-01-16 16:31:01 +08002253 struct tun_prog *prog = container_of(rcu, struct tun_prog, rcu);
Jason Wang96f84062017-12-04 17:31:23 +08002254
2255 bpf_prog_destroy(prog->prog);
2256 kfree(prog);
2257}
2258
Jason Wang9d6474e2018-01-22 10:55:38 +08002259static int __tun_set_ebpf(struct tun_struct *tun,
2260 struct tun_prog __rcu **prog_p,
Jason Wangcd5681d2018-01-16 16:31:01 +08002261 struct bpf_prog *prog)
Jason Wang96f84062017-12-04 17:31:23 +08002262{
Jason Wangcd5681d2018-01-16 16:31:01 +08002263 struct tun_prog *old, *new = NULL;
Jason Wang96f84062017-12-04 17:31:23 +08002264
2265 if (prog) {
2266 new = kmalloc(sizeof(*new), GFP_KERNEL);
2267 if (!new)
2268 return -ENOMEM;
2269 new->prog = prog;
2270 }
2271
Jason Wang124da8f2017-12-08 12:02:30 +08002272 spin_lock_bh(&tun->lock);
Jason Wangcd5681d2018-01-16 16:31:01 +08002273 old = rcu_dereference_protected(*prog_p,
Jason Wang124da8f2017-12-08 12:02:30 +08002274 lockdep_is_held(&tun->lock));
Jason Wangcd5681d2018-01-16 16:31:01 +08002275 rcu_assign_pointer(*prog_p, new);
Jason Wang124da8f2017-12-08 12:02:30 +08002276 spin_unlock_bh(&tun->lock);
Jason Wang96f84062017-12-04 17:31:23 +08002277
2278 if (old)
Jason Wangcd5681d2018-01-16 16:31:01 +08002279 call_rcu(&old->rcu, tun_prog_free);
Jason Wang96f84062017-12-04 17:31:23 +08002280
2281 return 0;
2282}
2283
Jason Wang96442e422012-10-31 19:46:02 +00002284static void tun_free_netdev(struct net_device *dev)
2285{
2286 struct tun_struct *tun = netdev_priv(dev);
2287
Jason Wang4008e972012-12-13 23:53:30 +00002288 BUG_ON(!(list_empty(&tun->disabled)));
Paolo Abeni608b9972016-04-13 10:52:20 +02002289 free_percpu(tun->pcpu_stats);
Jason Wang96442e422012-10-31 19:46:02 +00002290 tun_flow_uninit(tun);
Paul Moore5dbbaf22013-01-14 07:12:19 +00002291 security_tun_dev_free_security(tun->security);
Jason Wangcd5681d2018-01-16 16:31:01 +08002292 __tun_set_ebpf(tun, &tun->steering_prog, NULL);
Jason Wangaff3d702018-01-16 16:31:02 +08002293 __tun_set_ebpf(tun, &tun->filter_prog, NULL);
Jason Wang96442e422012-10-31 19:46:02 +00002294}
2295
Linus Torvalds1da177e2005-04-16 15:20:36 -07002296static void tun_setup(struct net_device *dev)
2297{
2298 struct tun_struct *tun = netdev_priv(dev);
2299
Eric W. Biederman0625c882012-02-07 16:48:55 -08002300 tun->owner = INVALID_UID;
2301 tun->group = INVALID_GID;
Chas Williams4e24f2d2018-06-02 17:49:53 -04002302 tun_default_link_ksettings(dev, &tun->link_ksettings);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002303
Linus Torvalds1da177e2005-04-16 15:20:36 -07002304 dev->ethtool_ops = &tun_ethtool_ops;
David S. Millercf124db2017-05-08 12:52:56 -04002305 dev->needs_free_netdev = true;
2306 dev->priv_destructor = tun_free_netdev;
Jason Wang016adb72016-04-08 13:26:48 +08002307 /* We prefer our own queue length */
2308 dev->tx_queue_len = TUN_READQ_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002309}
2310
Eric W. Biedermanf019a7a2009-01-21 16:02:16 -08002311/* Trivial set of netlink ops to allow deleting tun or tap
2312 * device with netlink.
2313 */
Matthias Schiffera8b8a8892017-06-25 23:56:01 +02002314static int tun_validate(struct nlattr *tb[], struct nlattr *data[],
2315 struct netlink_ext_ack *extack)
Eric W. Biedermanf019a7a2009-01-21 16:02:16 -08002316{
Nicolas Dichtel35b827b2018-11-29 14:45:39 +01002317 NL_SET_ERR_MSG(extack,
2318 "tun/tap creation via rtnetlink is not supported.");
2319 return -EOPNOTSUPP;
Eric W. Biedermanf019a7a2009-01-21 16:02:16 -08002320}
2321
Sabrina Dubroca1ec010e2018-02-16 11:03:07 +01002322static size_t tun_get_size(const struct net_device *dev)
2323{
2324 BUILD_BUG_ON(sizeof(u32) != sizeof(uid_t));
2325 BUILD_BUG_ON(sizeof(u32) != sizeof(gid_t));
2326
2327 return nla_total_size(sizeof(uid_t)) + /* OWNER */
2328 nla_total_size(sizeof(gid_t)) + /* GROUP */
2329 nla_total_size(sizeof(u8)) + /* TYPE */
2330 nla_total_size(sizeof(u8)) + /* PI */
2331 nla_total_size(sizeof(u8)) + /* VNET_HDR */
2332 nla_total_size(sizeof(u8)) + /* PERSIST */
2333 nla_total_size(sizeof(u8)) + /* MULTI_QUEUE */
2334 nla_total_size(sizeof(u32)) + /* NUM_QUEUES */
2335 nla_total_size(sizeof(u32)) + /* NUM_DISABLED_QUEUES */
2336 0;
2337}
2338
2339static int tun_fill_info(struct sk_buff *skb, const struct net_device *dev)
2340{
2341 struct tun_struct *tun = netdev_priv(dev);
2342
2343 if (nla_put_u8(skb, IFLA_TUN_TYPE, tun->flags & TUN_TYPE_MASK))
2344 goto nla_put_failure;
2345 if (uid_valid(tun->owner) &&
2346 nla_put_u32(skb, IFLA_TUN_OWNER,
2347 from_kuid_munged(current_user_ns(), tun->owner)))
2348 goto nla_put_failure;
2349 if (gid_valid(tun->group) &&
2350 nla_put_u32(skb, IFLA_TUN_GROUP,
2351 from_kgid_munged(current_user_ns(), tun->group)))
2352 goto nla_put_failure;
2353 if (nla_put_u8(skb, IFLA_TUN_PI, !(tun->flags & IFF_NO_PI)))
2354 goto nla_put_failure;
2355 if (nla_put_u8(skb, IFLA_TUN_VNET_HDR, !!(tun->flags & IFF_VNET_HDR)))
2356 goto nla_put_failure;
2357 if (nla_put_u8(skb, IFLA_TUN_PERSIST, !!(tun->flags & IFF_PERSIST)))
2358 goto nla_put_failure;
2359 if (nla_put_u8(skb, IFLA_TUN_MULTI_QUEUE,
2360 !!(tun->flags & IFF_MULTI_QUEUE)))
2361 goto nla_put_failure;
2362 if (tun->flags & IFF_MULTI_QUEUE) {
2363 if (nla_put_u32(skb, IFLA_TUN_NUM_QUEUES, tun->numqueues))
2364 goto nla_put_failure;
2365 if (nla_put_u32(skb, IFLA_TUN_NUM_DISABLED_QUEUES,
2366 tun->numdisabled))
2367 goto nla_put_failure;
2368 }
2369
2370 return 0;
2371
2372nla_put_failure:
2373 return -EMSGSIZE;
2374}
2375
Eric W. Biedermanf019a7a2009-01-21 16:02:16 -08002376static struct rtnl_link_ops tun_link_ops __read_mostly = {
2377 .kind = DRV_NAME,
2378 .priv_size = sizeof(struct tun_struct),
2379 .setup = tun_setup,
2380 .validate = tun_validate,
Sabrina Dubroca1ec010e2018-02-16 11:03:07 +01002381 .get_size = tun_get_size,
2382 .fill_info = tun_fill_info,
Eric W. Biedermanf019a7a2009-01-21 16:02:16 -08002383};
2384
Herbert Xu33dccbb2009-02-05 21:25:32 -08002385static void tun_sock_write_space(struct sock *sk)
2386{
Jason Wang54f968d2012-10-31 19:45:57 +00002387 struct tun_file *tfile;
Eric Dumazet43815482010-04-29 11:01:49 +00002388 wait_queue_head_t *wqueue;
Herbert Xu33dccbb2009-02-05 21:25:32 -08002389
2390 if (!sock_writeable(sk))
2391 return;
2392
Eric Dumazet9cd3e072015-11-29 20:03:10 -08002393 if (!test_and_clear_bit(SOCKWQ_ASYNC_NOSPACE, &sk->sk_socket->flags))
Herbert Xu33dccbb2009-02-05 21:25:32 -08002394 return;
2395
Eric Dumazet43815482010-04-29 11:01:49 +00002396 wqueue = sk_sleep(sk);
2397 if (wqueue && waitqueue_active(wqueue))
Linus Torvaldsa9a08842018-02-11 14:34:03 -08002398 wake_up_interruptible_sync_poll(wqueue, EPOLLOUT |
2399 EPOLLWRNORM | EPOLLWRBAND);
Herbert Xuc722c622009-06-03 21:45:55 -07002400
Jason Wang54f968d2012-10-31 19:45:57 +00002401 tfile = container_of(sk, struct tun_file, sk);
2402 kill_fasync(&tfile->fasync, SIGIO, POLL_OUT);
Herbert Xu33dccbb2009-02-05 21:25:32 -08002403}
2404
Jason Wangf9e06c42018-11-15 17:43:10 +08002405static void tun_put_page(struct tun_page *tpage)
2406{
2407 if (tpage->page)
2408 __page_frag_cache_drain(tpage->page, tpage->count);
2409}
2410
Jason Wang043d2222018-09-12 11:17:07 +08002411static int tun_xdp_one(struct tun_struct *tun,
2412 struct tun_file *tfile,
Jason Wangf9e06c42018-11-15 17:43:10 +08002413 struct xdp_buff *xdp, int *flush,
2414 struct tun_page *tpage)
Jason Wang043d2222018-09-12 11:17:07 +08002415{
Prashant Bhole4e4b08e2018-12-03 18:09:24 +09002416 unsigned int datasize = xdp->data_end - xdp->data;
Jason Wang043d2222018-09-12 11:17:07 +08002417 struct tun_xdp_hdr *hdr = xdp->data_hard_start;
2418 struct virtio_net_hdr *gso = &hdr->gso;
2419 struct tun_pcpu_stats *stats;
2420 struct bpf_prog *xdp_prog;
2421 struct sk_buff *skb = NULL;
2422 u32 rxhash = 0, act;
2423 int buflen = hdr->buflen;
2424 int err = 0;
2425 bool skb_xdp = false;
Jason Wangf9e06c42018-11-15 17:43:10 +08002426 struct page *page;
Jason Wang043d2222018-09-12 11:17:07 +08002427
2428 xdp_prog = rcu_dereference(tun->xdp_prog);
2429 if (xdp_prog) {
2430 if (gso->gso_type) {
2431 skb_xdp = true;
2432 goto build;
2433 }
2434 xdp_set_data_meta_invalid(xdp);
2435 xdp->rxq = &tfile->xdp_rxq;
2436
2437 act = bpf_prog_run_xdp(xdp_prog, xdp);
2438 err = tun_xdp_act(tun, xdp_prog, xdp, act);
2439 if (err < 0) {
2440 put_page(virt_to_head_page(xdp->data));
2441 return err;
2442 }
2443
2444 switch (err) {
2445 case XDP_REDIRECT:
2446 *flush = true;
2447 /* fall through */
2448 case XDP_TX:
2449 return 0;
2450 case XDP_PASS:
2451 break;
2452 default:
Jason Wangf9e06c42018-11-15 17:43:10 +08002453 page = virt_to_head_page(xdp->data);
2454 if (tpage->page == page) {
2455 ++tpage->count;
2456 } else {
2457 tun_put_page(tpage);
2458 tpage->page = page;
2459 tpage->count = 1;
2460 }
Jason Wang043d2222018-09-12 11:17:07 +08002461 return 0;
2462 }
2463 }
2464
2465build:
2466 skb = build_skb(xdp->data_hard_start, buflen);
2467 if (!skb) {
2468 err = -ENOMEM;
2469 goto out;
2470 }
2471
2472 skb_reserve(skb, xdp->data - xdp->data_hard_start);
2473 skb_put(skb, xdp->data_end - xdp->data);
2474
2475 if (virtio_net_hdr_to_skb(skb, gso, tun_is_little_endian(tun))) {
2476 this_cpu_inc(tun->pcpu_stats->rx_frame_errors);
2477 kfree_skb(skb);
2478 err = -EINVAL;
2479 goto out;
2480 }
2481
2482 skb->protocol = eth_type_trans(skb, tun->dev);
2483 skb_reset_network_header(skb);
Maxim Mikityanskiyd2aa1252019-02-21 12:39:57 +00002484 skb_probe_transport_header(skb);
Jason Wang043d2222018-09-12 11:17:07 +08002485
2486 if (skb_xdp) {
2487 err = do_xdp_generic(xdp_prog, skb);
2488 if (err != XDP_PASS)
2489 goto out;
2490 }
2491
Paolo Abenif29eb2a2018-11-07 10:34:36 +01002492 if (!rcu_dereference(tun->steering_prog) && tun->numqueues > 1 &&
2493 !tfile->detached)
Jason Wang043d2222018-09-12 11:17:07 +08002494 rxhash = __skb_get_hash_symmetric(skb);
2495
Matthew Cover8ebebcb2018-11-18 00:46:00 -07002496 skb_record_rx_queue(skb, tfile->queue_index);
Jason Wang043d2222018-09-12 11:17:07 +08002497 netif_receive_skb(skb);
2498
Prashant Bhole6342ca62018-12-11 11:43:07 +09002499 /* No need for get_cpu_ptr() here since this function is
2500 * always called with bh disabled
2501 */
2502 stats = this_cpu_ptr(tun->pcpu_stats);
Jason Wang043d2222018-09-12 11:17:07 +08002503 u64_stats_update_begin(&stats->syncp);
2504 stats->rx_packets++;
Prashant Bhole4e4b08e2018-12-03 18:09:24 +09002505 stats->rx_bytes += datasize;
Jason Wang043d2222018-09-12 11:17:07 +08002506 u64_stats_update_end(&stats->syncp);
Jason Wang043d2222018-09-12 11:17:07 +08002507
2508 if (rxhash)
2509 tun_flow_update(tun, rxhash, tfile);
2510
2511out:
2512 return err;
2513}
2514
Ying Xue1b784142015-03-02 15:37:48 +08002515static int tun_sendmsg(struct socket *sock, struct msghdr *m, size_t total_len)
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00002516{
Jason Wang043d2222018-09-12 11:17:07 +08002517 int ret, i;
Jason Wang54f968d2012-10-31 19:45:57 +00002518 struct tun_file *tfile = container_of(sock, struct tun_file, socket);
yuan linyu9484dc72017-09-23 22:36:52 +08002519 struct tun_struct *tun = tun_get(tfile);
Jason Wangfe8dd452018-09-12 11:17:06 +08002520 struct tun_msg_ctl *ctl = m->msg_control;
Jason Wang043d2222018-09-12 11:17:07 +08002521 struct xdp_buff *xdp;
Jason Wang54f968d2012-10-31 19:45:57 +00002522
2523 if (!tun)
2524 return -EBADFD;
Al Virof5ff53b2014-06-19 15:36:49 -04002525
Jason Wang043d2222018-09-12 11:17:07 +08002526 if (ctl && (ctl->type == TUN_MSG_PTR)) {
David S. Miller6f0271d2018-11-17 16:53:46 -08002527 struct tun_page tpage;
Jason Wang043d2222018-09-12 11:17:07 +08002528 int n = ctl->num;
2529 int flush = 0;
2530
David S. Miller6f0271d2018-11-17 16:53:46 -08002531 memset(&tpage, 0, sizeof(tpage));
2532
Jason Wang043d2222018-09-12 11:17:07 +08002533 local_bh_disable();
2534 rcu_read_lock();
2535
2536 for (i = 0; i < n; i++) {
2537 xdp = &((struct xdp_buff *)ctl->ptr)[i];
Jason Wangf9e06c42018-11-15 17:43:10 +08002538 tun_xdp_one(tun, tfile, xdp, &flush, &tpage);
Jason Wang043d2222018-09-12 11:17:07 +08002539 }
2540
2541 if (flush)
2542 xdp_do_flush_map();
2543
2544 rcu_read_unlock();
2545 local_bh_enable();
2546
Jason Wangf9e06c42018-11-15 17:43:10 +08002547 tun_put_page(&tpage);
2548
Jason Wang043d2222018-09-12 11:17:07 +08002549 ret = total_len;
2550 goto out;
2551 }
Jason Wangfe8dd452018-09-12 11:17:06 +08002552
2553 ret = tun_get_user(tun, tfile, ctl ? ctl->ptr : NULL, &m->msg_iter,
Jason Wang5503fce2017-01-18 15:02:03 +08002554 m->msg_flags & MSG_DONTWAIT,
2555 m->msg_flags & MSG_MORE);
Jason Wang043d2222018-09-12 11:17:07 +08002556out:
Jason Wang54f968d2012-10-31 19:45:57 +00002557 tun_put(tun);
2558 return ret;
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00002559}
2560
Ying Xue1b784142015-03-02 15:37:48 +08002561static int tun_recvmsg(struct socket *sock, struct msghdr *m, size_t total_len,
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00002562 int flags)
2563{
Jason Wang54f968d2012-10-31 19:45:57 +00002564 struct tun_file *tfile = container_of(sock, struct tun_file, socket);
yuan linyu9484dc72017-09-23 22:36:52 +08002565 struct tun_struct *tun = tun_get(tfile);
Jason Wangfc72d1d2018-01-04 11:14:28 +08002566 void *ptr = m->msg_control;
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00002567 int ret;
Jason Wang54f968d2012-10-31 19:45:57 +00002568
Wei Xuc33ee152017-12-01 05:10:37 -05002569 if (!tun) {
2570 ret = -EBADFD;
Jason Wangfc72d1d2018-01-04 11:14:28 +08002571 goto out_free;
Wei Xuc33ee152017-12-01 05:10:37 -05002572 }
Jason Wang54f968d2012-10-31 19:45:57 +00002573
Richard Cochraneda29772013-07-19 19:40:10 +02002574 if (flags & ~(MSG_DONTWAIT|MSG_TRUNC|MSG_ERRQUEUE)) {
Gao feng3811ae72013-04-24 21:59:23 +00002575 ret = -EINVAL;
Wei Xuc33ee152017-12-01 05:10:37 -05002576 goto out_put_tun;
Gao feng3811ae72013-04-24 21:59:23 +00002577 }
Richard Cochraneda29772013-07-19 19:40:10 +02002578 if (flags & MSG_ERRQUEUE) {
2579 ret = sock_recv_errqueue(sock->sk, m, total_len,
2580 SOL_PACKET, TUN_TX_TIMESTAMP);
2581 goto out;
2582 }
Jason Wangfc72d1d2018-01-04 11:14:28 +08002583 ret = tun_do_read(tun, tfile, &m->msg_iter, flags & MSG_DONTWAIT, ptr);
Alex Gartrell87897932014-12-25 23:05:03 -08002584 if (ret > (ssize_t)total_len) {
David S. Miller42404c02013-12-10 22:05:45 -05002585 m->msg_flags |= MSG_TRUNC;
2586 ret = flags & MSG_TRUNC ? ret : total_len;
2587 }
Gao feng3811ae72013-04-24 21:59:23 +00002588out:
Jason Wang54f968d2012-10-31 19:45:57 +00002589 tun_put(tun);
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00002590 return ret;
Wei Xuc33ee152017-12-01 05:10:37 -05002591
2592out_put_tun:
2593 tun_put(tun);
Jason Wangfc72d1d2018-01-04 11:14:28 +08002594out_free:
2595 tun_ptr_free(ptr);
Wei Xuc33ee152017-12-01 05:10:37 -05002596 return ret;
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00002597}
2598
Jason Wangfc72d1d2018-01-04 11:14:28 +08002599static int tun_ptr_peek_len(void *ptr)
2600{
2601 if (likely(ptr)) {
Jesper Dangaard Brouer1ffcbc82018-04-17 16:45:47 +02002602 if (tun_is_xdp_frame(ptr)) {
2603 struct xdp_frame *xdpf = tun_ptr_to_xdp(ptr);
Jason Wangfc72d1d2018-01-04 11:14:28 +08002604
Jesper Dangaard Brouer1ffcbc82018-04-17 16:45:47 +02002605 return xdpf->len;
Jason Wangfc72d1d2018-01-04 11:14:28 +08002606 }
2607 return __skb_array_len_with_tag(ptr);
2608 } else {
2609 return 0;
2610 }
2611}
2612
Jason Wang1576d982016-06-30 14:45:36 +08002613static int tun_peek_len(struct socket *sock)
2614{
2615 struct tun_file *tfile = container_of(sock, struct tun_file, socket);
2616 struct tun_struct *tun;
2617 int ret = 0;
2618
yuan linyu9484dc72017-09-23 22:36:52 +08002619 tun = tun_get(tfile);
Jason Wang1576d982016-06-30 14:45:36 +08002620 if (!tun)
2621 return 0;
2622
Jason Wangfc72d1d2018-01-04 11:14:28 +08002623 ret = PTR_RING_PEEK_CALL(&tfile->tx_ring, tun_ptr_peek_len);
Jason Wang1576d982016-06-30 14:45:36 +08002624 tun_put(tun);
2625
2626 return ret;
2627}
2628
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00002629/* Ops structure to mimic raw sockets with tun */
2630static const struct proto_ops tun_socket_ops = {
Jason Wang1576d982016-06-30 14:45:36 +08002631 .peek_len = tun_peek_len,
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00002632 .sendmsg = tun_sendmsg,
2633 .recvmsg = tun_recvmsg,
2634};
2635
Herbert Xu33dccbb2009-02-05 21:25:32 -08002636static struct proto tun_proto = {
2637 .name = "tun",
2638 .owner = THIS_MODULE,
Jason Wang54f968d2012-10-31 19:45:57 +00002639 .obj_size = sizeof(struct tun_file),
Herbert Xu33dccbb2009-02-05 21:25:32 -08002640};
Eric W. Biedermanf019a7a2009-01-21 16:02:16 -08002641
David Woodhouse980c9e82009-05-09 22:54:21 -07002642static int tun_flags(struct tun_struct *tun)
2643{
Michael S. Tsirkin031f5e032014-11-19 14:44:40 +02002644 return tun->flags & (TUN_FEATURES | IFF_PERSIST | IFF_TUN | IFF_TAP);
David Woodhouse980c9e82009-05-09 22:54:21 -07002645}
2646
2647static ssize_t tun_show_flags(struct device *dev, struct device_attribute *attr,
2648 char *buf)
2649{
2650 struct tun_struct *tun = netdev_priv(to_net_dev(dev));
2651 return sprintf(buf, "0x%x\n", tun_flags(tun));
2652}
2653
2654static ssize_t tun_show_owner(struct device *dev, struct device_attribute *attr,
2655 char *buf)
2656{
2657 struct tun_struct *tun = netdev_priv(to_net_dev(dev));
Eric W. Biederman0625c882012-02-07 16:48:55 -08002658 return uid_valid(tun->owner)?
2659 sprintf(buf, "%u\n",
2660 from_kuid_munged(current_user_ns(), tun->owner)):
2661 sprintf(buf, "-1\n");
David Woodhouse980c9e82009-05-09 22:54:21 -07002662}
2663
2664static ssize_t tun_show_group(struct device *dev, struct device_attribute *attr,
2665 char *buf)
2666{
2667 struct tun_struct *tun = netdev_priv(to_net_dev(dev));
Eric W. Biederman0625c882012-02-07 16:48:55 -08002668 return gid_valid(tun->group) ?
2669 sprintf(buf, "%u\n",
2670 from_kgid_munged(current_user_ns(), tun->group)):
2671 sprintf(buf, "-1\n");
David Woodhouse980c9e82009-05-09 22:54:21 -07002672}
2673
2674static DEVICE_ATTR(tun_flags, 0444, tun_show_flags, NULL);
2675static DEVICE_ATTR(owner, 0444, tun_show_owner, NULL);
2676static DEVICE_ATTR(group, 0444, tun_show_group, NULL);
2677
Takashi Iwaic4d33e22015-02-04 14:37:34 +01002678static struct attribute *tun_dev_attrs[] = {
2679 &dev_attr_tun_flags.attr,
2680 &dev_attr_owner.attr,
2681 &dev_attr_group.attr,
2682 NULL
2683};
2684
2685static const struct attribute_group tun_attr_group = {
2686 .attrs = tun_dev_attrs
2687};
2688
Pavel Emelyanovd647a592008-04-16 00:41:16 -07002689static int tun_set_iff(struct net *net, struct file *file, struct ifreq *ifr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002690{
2691 struct tun_struct *tun;
Jason Wang54f968d2012-10-31 19:45:57 +00002692 struct tun_file *tfile = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002693 struct net_device *dev;
2694 int err;
2695
Jason Wang7c0c3b12013-01-11 16:59:33 +00002696 if (tfile->detached)
2697 return -EINVAL;
2698
Petar Penkov90e33d42017-09-22 13:49:15 -07002699 if ((ifr->ifr_flags & IFF_NAPI_FRAGS)) {
2700 if (!capable(CAP_NET_ADMIN))
2701 return -EPERM;
2702
2703 if (!(ifr->ifr_flags & IFF_NAPI) ||
2704 (ifr->ifr_flags & TUN_TYPE_MASK) != IFF_TAP)
2705 return -EINVAL;
2706 }
2707
Eric W. Biederman74a3e5a2009-01-20 10:56:20 +00002708 dev = __dev_get_by_name(net, ifr->ifr_name);
2709 if (dev) {
David Woodhousef85ba782009-04-27 03:23:54 -07002710 if (ifr->ifr_flags & IFF_TUN_EXCL)
2711 return -EBUSY;
Eric W. Biederman74a3e5a2009-01-20 10:56:20 +00002712 if ((ifr->ifr_flags & IFF_TUN) && dev->netdev_ops == &tun_netdev_ops)
2713 tun = netdev_priv(dev);
2714 else if ((ifr->ifr_flags & IFF_TAP) && dev->netdev_ops == &tap_netdev_ops)
2715 tun = netdev_priv(dev);
2716 else
2717 return -EINVAL;
2718
Jason Wang8e6d91a2013-05-28 18:32:11 +00002719 if (!!(ifr->ifr_flags & IFF_MULTI_QUEUE) !=
Michael S. Tsirkin40630b82014-11-19 15:17:31 +02002720 !!(tun->flags & IFF_MULTI_QUEUE))
Jason Wang8e6d91a2013-05-28 18:32:11 +00002721 return -EINVAL;
2722
Jason Wangcde8b152012-10-31 19:46:01 +00002723 if (tun_not_capable(tun))
Paul Moore2b980db2009-08-28 18:12:43 -04002724 return -EPERM;
Paul Moore5dbbaf22013-01-14 07:12:19 +00002725 err = security_tun_dev_open(tun->security);
Paul Moore2b980db2009-08-28 18:12:43 -04002726 if (err < 0)
2727 return err;
2728
Petar Penkov94317092017-09-22 13:49:14 -07002729 err = tun_attach(tun, file, ifr->ifr_flags & IFF_NOFILTER,
Eric Dumazetaf3fb242018-09-28 14:51:49 -07002730 ifr->ifr_flags & IFF_NAPI,
2731 ifr->ifr_flags & IFF_NAPI_FRAGS);
Eric W. Biedermana7385ba2009-01-20 10:57:48 +00002732 if (err < 0)
2733 return err;
Jason Wang4008e972012-12-13 23:53:30 +00002734
Michael S. Tsirkin40630b82014-11-19 15:17:31 +02002735 if (tun->flags & IFF_MULTI_QUEUE &&
Jason Wange8dbad62013-04-22 20:40:39 +00002736 (tun->numqueues + tun->numdisabled > 1)) {
2737 /* One or more queue has already been attached, no need
2738 * to initialize the device again.
2739 */
Sabrina Dubroca83c1f362018-04-10 16:28:56 +02002740 netdev_state_change(dev);
Jason Wange8dbad62013-04-22 20:40:39 +00002741 return 0;
2742 }
Sabrina Dubroca9fffc5c2018-04-10 16:28:55 +02002743
2744 tun->flags = (tun->flags & ~TUN_FEATURES) |
2745 (ifr->ifr_flags & TUN_FEATURES);
Sabrina Dubroca83c1f362018-04-10 16:28:56 +02002746
2747 netdev_state_change(dev);
2748 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002749 char *name;
2750 unsigned long flags = 0;
Jason Wangedfb6a12013-01-23 03:59:12 +00002751 int queues = ifr->ifr_flags & IFF_MULTI_QUEUE ?
2752 MAX_TAP_QUEUES : 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002753
Eric W. Biedermanc260b772012-11-18 21:34:11 +00002754 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
David Woodhouseca6bb5d2006-06-22 16:07:52 -07002755 return -EPERM;
Paul Moore2b980db2009-08-28 18:12:43 -04002756 err = security_tun_dev_create();
2757 if (err < 0)
2758 return err;
David Woodhouseca6bb5d2006-06-22 16:07:52 -07002759
Linus Torvalds1da177e2005-04-16 15:20:36 -07002760 /* Set dev type */
2761 if (ifr->ifr_flags & IFF_TUN) {
2762 /* TUN device */
Michael S. Tsirkin40630b82014-11-19 15:17:31 +02002763 flags |= IFF_TUN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002764 name = "tun%d";
2765 } else if (ifr->ifr_flags & IFF_TAP) {
2766 /* TAP device */
Michael S. Tsirkin40630b82014-11-19 15:17:31 +02002767 flags |= IFF_TAP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002768 name = "tap%d";
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002769 } else
Kusanagi Kouichi36989b92009-09-16 21:36:13 +00002770 return -EINVAL;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002771
Linus Torvalds1da177e2005-04-16 15:20:36 -07002772 if (*ifr->ifr_name)
2773 name = ifr->ifr_name;
2774
Jason Wangc8d68e62012-10-31 19:46:00 +00002775 dev = alloc_netdev_mqs(sizeof(struct tun_struct), name,
Tom Gundersenc835a672014-07-14 16:37:24 +02002776 NET_NAME_UNKNOWN, tun_setup, queues,
2777 queues);
Jason Wangedfb6a12013-01-23 03:59:12 +00002778
Linus Torvalds1da177e2005-04-16 15:20:36 -07002779 if (!dev)
2780 return -ENOMEM;
Cong Wang0ad646c2017-10-13 11:58:53 -07002781 err = dev_get_valid_name(net, dev, name);
Julien Gomes5c25f652017-10-25 11:50:50 -07002782 if (err < 0)
Cong Wang0ad646c2017-10-13 11:58:53 -07002783 goto err_free_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002784
Pavel Emelyanovfc54c652008-04-16 00:41:53 -07002785 dev_net_set(dev, net);
Eric W. Biedermanf019a7a2009-01-21 16:02:16 -08002786 dev->rtnl_link_ops = &tun_link_ops;
Pavel Emelyanovfb7589a2013-08-21 14:31:38 +04002787 dev->ifindex = tfile->ifindex;
Takashi Iwaic4d33e22015-02-04 14:37:34 +01002788 dev->sysfs_groups[0] = &tun_attr_group;
Stephen Hemminger758e43b2008-11-19 22:10:37 -08002789
Linus Torvalds1da177e2005-04-16 15:20:36 -07002790 tun = netdev_priv(dev);
2791 tun->dev = dev;
2792 tun->flags = flags;
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -07002793 tun->txflt.count = 0;
Michael S. Tsirkind9d52b52010-03-17 17:45:01 +02002794 tun->vnet_hdr_sz = sizeof(struct virtio_net_hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002795
Paolo Abenieaea34b2016-02-26 10:45:40 +01002796 tun->align = NET_SKB_PAD;
Jason Wang54f968d2012-10-31 19:45:57 +00002797 tun->filter_attached = false;
2798 tun->sndbuf = tfile->socket.sk->sk_sndbuf;
Jason Wang5503fce2017-01-18 15:02:03 +08002799 tun->rx_batched = 0;
Jason Wang96f84062017-12-04 17:31:23 +08002800 RCU_INIT_POINTER(tun->steering_prog, NULL);
Herbert Xu33dccbb2009-02-05 21:25:32 -08002801
Paolo Abeni608b9972016-04-13 10:52:20 +02002802 tun->pcpu_stats = netdev_alloc_pcpu_stats(struct tun_pcpu_stats);
2803 if (!tun->pcpu_stats) {
2804 err = -ENOMEM;
2805 goto err_free_dev;
2806 }
2807
Jason Wang96442e422012-10-31 19:46:02 +00002808 spin_lock_init(&tun->lock);
2809
Paul Moore5dbbaf22013-01-14 07:12:19 +00002810 err = security_tun_dev_alloc_security(&tun->security);
2811 if (err < 0)
Paolo Abeni608b9972016-04-13 10:52:20 +02002812 goto err_free_stat;
Paul Moore2b980db2009-08-28 18:12:43 -04002813
Linus Torvalds1da177e2005-04-16 15:20:36 -07002814 tun_net_init(dev);
Pavel Emelyanov944a1372013-06-11 17:01:08 +04002815 tun_flow_init(tun);
Jason Wang96442e422012-10-31 19:46:02 +00002816
Michał Mirosław88255372011-04-19 06:13:10 +00002817 dev->hw_features = NETIF_F_SG | NETIF_F_FRAGLIST |
Jason Wang6680ec62013-07-25 13:00:33 +08002818 TUN_USER_FEATURES | NETIF_F_HW_VLAN_CTAG_TX |
2819 NETIF_F_HW_VLAN_STAG_TX;
Paolo Abeni2a2bbf12016-04-14 18:39:39 +02002820 dev->features = dev->hw_features | NETIF_F_LLTX;
Fernando Luis Vazquez Cao6671b222014-02-18 21:20:09 +09002821 dev->vlan_features = dev->features &
2822 ~(NETIF_F_HW_VLAN_CTAG_TX |
2823 NETIF_F_HW_VLAN_STAG_TX);
Michał Mirosław88255372011-04-19 06:13:10 +00002824
Sabrina Dubroca9fffc5c2018-04-10 16:28:55 +02002825 tun->flags = (tun->flags & ~TUN_FEATURES) |
2826 (ifr->ifr_flags & TUN_FEATURES);
2827
Jason Wang4008e972012-12-13 23:53:30 +00002828 INIT_LIST_HEAD(&tun->disabled);
Eric Dumazetaf3fb242018-09-28 14:51:49 -07002829 err = tun_attach(tun, file, false, ifr->ifr_flags & IFF_NAPI,
2830 ifr->ifr_flags & IFF_NAPI_FRAGS);
Jason Wangeb0fb362012-12-02 17:19:45 +00002831 if (err < 0)
Jason Wang662ca432013-09-11 18:09:48 +08002832 goto err_free_flow;
Jason Wangeb0fb362012-12-02 17:19:45 +00002833
Linus Torvalds1da177e2005-04-16 15:20:36 -07002834 err = register_netdevice(tun->dev);
2835 if (err < 0)
Jason Wang662ca432013-09-11 18:09:48 +08002836 goto err_detach;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002837 }
2838
Michael S. Tsirkinaf668b32013-01-28 00:38:02 +00002839 netif_carrier_on(tun->dev);
2840
Joe Perches6b8a66e2011-03-02 07:18:10 +00002841 tun_debug(KERN_INFO, tun, "tun_set_iff\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002842
Max Krasnyanskye35259a2008-07-10 16:59:11 -07002843 /* Make sure persistent devices do not get stuck in
2844 * xoff state.
2845 */
2846 if (netif_running(tun->dev))
Jason Wangc8d68e62012-10-31 19:46:00 +00002847 netif_tx_wake_all_queues(tun->dev);
Max Krasnyanskye35259a2008-07-10 16:59:11 -07002848
Linus Torvalds1da177e2005-04-16 15:20:36 -07002849 strcpy(ifr->ifr_name, tun->dev->name);
2850 return 0;
2851
Jason Wang662ca432013-09-11 18:09:48 +08002852err_detach:
2853 tun_detach_all(dev);
Eric Dumazetff244c62017-08-18 13:39:56 -07002854 /* register_netdevice() already called tun_free_netdev() */
2855 goto err_free_dev;
2856
Jason Wang662ca432013-09-11 18:09:48 +08002857err_free_flow:
2858 tun_flow_uninit(tun);
2859 security_tun_dev_free_security(tun->security);
Paolo Abeni608b9972016-04-13 10:52:20 +02002860err_free_stat:
2861 free_percpu(tun->pcpu_stats);
Jason Wang662ca432013-09-11 18:09:48 +08002862err_free_dev:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002863 free_netdev(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002864 return err;
2865}
2866
Kirill Tkhai12132762019-03-20 12:16:53 +03002867static void tun_get_iff(struct tun_struct *tun, struct ifreq *ifr)
Mark McLoughline3b99552008-08-15 15:09:56 -07002868{
Joe Perches6b8a66e2011-03-02 07:18:10 +00002869 tun_debug(KERN_INFO, tun, "tun_get_iff\n");
Mark McLoughline3b99552008-08-15 15:09:56 -07002870
2871 strcpy(ifr->ifr_name, tun->dev->name);
2872
David Woodhouse980c9e82009-05-09 22:54:21 -07002873 ifr->ifr_flags = tun_flags(tun);
Mark McLoughline3b99552008-08-15 15:09:56 -07002874
Mark McLoughline3b99552008-08-15 15:09:56 -07002875}
2876
Rusty Russell5228ddc2008-07-03 03:46:16 -07002877/* This is like a cut-down ethtool ops, except done via tun fd so no
2878 * privs required. */
Michał Mirosław88255372011-04-19 06:13:10 +00002879static int set_offload(struct tun_struct *tun, unsigned long arg)
Rusty Russell5228ddc2008-07-03 03:46:16 -07002880{
Michał Mirosławc8f44af2011-11-15 15:29:55 +00002881 netdev_features_t features = 0;
Rusty Russell5228ddc2008-07-03 03:46:16 -07002882
2883 if (arg & TUN_F_CSUM) {
Michał Mirosław88255372011-04-19 06:13:10 +00002884 features |= NETIF_F_HW_CSUM;
Rusty Russell5228ddc2008-07-03 03:46:16 -07002885 arg &= ~TUN_F_CSUM;
2886
2887 if (arg & (TUN_F_TSO4|TUN_F_TSO6)) {
2888 if (arg & TUN_F_TSO_ECN) {
2889 features |= NETIF_F_TSO_ECN;
2890 arg &= ~TUN_F_TSO_ECN;
2891 }
2892 if (arg & TUN_F_TSO4)
2893 features |= NETIF_F_TSO;
2894 if (arg & TUN_F_TSO6)
2895 features |= NETIF_F_TSO6;
2896 arg &= ~(TUN_F_TSO4|TUN_F_TSO6);
2897 }
Willem de Bruijn0c19f8462017-11-21 10:22:25 -05002898
2899 arg &= ~TUN_F_UFO;
Rusty Russell5228ddc2008-07-03 03:46:16 -07002900 }
2901
2902 /* This gives the user a way to test for new features in future by
2903 * trying to set them. */
2904 if (arg)
2905 return -EINVAL;
2906
Michał Mirosław88255372011-04-19 06:13:10 +00002907 tun->set_features = features;
Yaroslav Isakov09050952017-03-16 22:44:10 +03002908 tun->dev->wanted_features &= ~TUN_USER_FEATURES;
2909 tun->dev->wanted_features |= features;
Michał Mirosław88255372011-04-19 06:13:10 +00002910 netdev_update_features(tun->dev);
Rusty Russell5228ddc2008-07-03 03:46:16 -07002911
2912 return 0;
2913}
2914
Jason Wangc8d68e62012-10-31 19:46:00 +00002915static void tun_detach_filter(struct tun_struct *tun, int n)
2916{
2917 int i;
2918 struct tun_file *tfile;
2919
2920 for (i = 0; i < n; i++) {
Jason Wangb8deabd2013-01-11 16:59:32 +00002921 tfile = rtnl_dereference(tun->tfiles[i]);
Hannes Frederic Sowa8ced4252016-04-05 17:10:16 +02002922 lock_sock(tfile->socket.sk);
2923 sk_detach_filter(tfile->socket.sk);
2924 release_sock(tfile->socket.sk);
Jason Wangc8d68e62012-10-31 19:46:00 +00002925 }
2926
2927 tun->filter_attached = false;
2928}
2929
2930static int tun_attach_filter(struct tun_struct *tun)
2931{
2932 int i, ret = 0;
2933 struct tun_file *tfile;
2934
2935 for (i = 0; i < tun->numqueues; i++) {
Jason Wangb8deabd2013-01-11 16:59:32 +00002936 tfile = rtnl_dereference(tun->tfiles[i]);
Hannes Frederic Sowa8ced4252016-04-05 17:10:16 +02002937 lock_sock(tfile->socket.sk);
2938 ret = sk_attach_filter(&tun->fprog, tfile->socket.sk);
2939 release_sock(tfile->socket.sk);
Jason Wangc8d68e62012-10-31 19:46:00 +00002940 if (ret) {
2941 tun_detach_filter(tun, i);
2942 return ret;
2943 }
2944 }
2945
2946 tun->filter_attached = true;
2947 return ret;
2948}
2949
2950static void tun_set_sndbuf(struct tun_struct *tun)
2951{
2952 struct tun_file *tfile;
2953 int i;
2954
2955 for (i = 0; i < tun->numqueues; i++) {
Jason Wangb8deabd2013-01-11 16:59:32 +00002956 tfile = rtnl_dereference(tun->tfiles[i]);
Jason Wangc8d68e62012-10-31 19:46:00 +00002957 tfile->socket.sk->sk_sndbuf = tun->sndbuf;
2958 }
2959}
2960
Jason Wangcde8b152012-10-31 19:46:01 +00002961static int tun_set_queue(struct file *file, struct ifreq *ifr)
2962{
2963 struct tun_file *tfile = file->private_data;
2964 struct tun_struct *tun;
Jason Wangcde8b152012-10-31 19:46:01 +00002965 int ret = 0;
2966
2967 rtnl_lock();
2968
2969 if (ifr->ifr_flags & IFF_ATTACH_QUEUE) {
Jason Wang4008e972012-12-13 23:53:30 +00002970 tun = tfile->detached;
Paul Moore5dbbaf22013-01-14 07:12:19 +00002971 if (!tun) {
Jason Wangcde8b152012-10-31 19:46:01 +00002972 ret = -EINVAL;
Paul Moore5dbbaf22013-01-14 07:12:19 +00002973 goto unlock;
2974 }
2975 ret = security_tun_dev_attach_queue(tun->security);
2976 if (ret < 0)
2977 goto unlock;
Eric Dumazetaf3fb242018-09-28 14:51:49 -07002978 ret = tun_attach(tun, file, false, tun->flags & IFF_NAPI,
2979 tun->flags & IFF_NAPI_FRAGS);
Jason Wang4008e972012-12-13 23:53:30 +00002980 } else if (ifr->ifr_flags & IFF_DETACH_QUEUE) {
Jason Wangb8deabd2013-01-11 16:59:32 +00002981 tun = rtnl_dereference(tfile->tun);
Michael S. Tsirkin40630b82014-11-19 15:17:31 +02002982 if (!tun || !(tun->flags & IFF_MULTI_QUEUE) || tfile->detached)
Jason Wang4008e972012-12-13 23:53:30 +00002983 ret = -EINVAL;
2984 else
2985 __tun_detach(tfile, false);
2986 } else
Jason Wangcde8b152012-10-31 19:46:01 +00002987 ret = -EINVAL;
2988
Sabrina Dubroca83c1f362018-04-10 16:28:56 +02002989 if (ret >= 0)
2990 netdev_state_change(tun->dev);
2991
Paul Moore5dbbaf22013-01-14 07:12:19 +00002992unlock:
Jason Wangcde8b152012-10-31 19:46:01 +00002993 rtnl_unlock();
2994 return ret;
2995}
2996
Jason Wangcd5681d2018-01-16 16:31:01 +08002997static int tun_set_ebpf(struct tun_struct *tun, struct tun_prog **prog_p,
2998 void __user *data)
Jason Wang96f84062017-12-04 17:31:23 +08002999{
3000 struct bpf_prog *prog;
3001 int fd;
3002
3003 if (copy_from_user(&fd, data, sizeof(fd)))
3004 return -EFAULT;
3005
3006 if (fd == -1) {
3007 prog = NULL;
3008 } else {
3009 prog = bpf_prog_get_type(fd, BPF_PROG_TYPE_SOCKET_FILTER);
3010 if (IS_ERR(prog))
3011 return PTR_ERR(prog);
3012 }
3013
Jason Wangcd5681d2018-01-16 16:31:01 +08003014 return __tun_set_ebpf(tun, prog_p, prog);
Jason Wang96f84062017-12-04 17:31:23 +08003015}
3016
Arnd Bergmann50857e22009-11-06 22:52:32 -08003017static long __tun_chr_ioctl(struct file *file, unsigned int cmd,
3018 unsigned long arg, int ifreq_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003019{
Eric W. Biederman36b50ba2009-01-20 11:01:48 +00003020 struct tun_file *tfile = file->private_data;
Kirill Tkhaif6637062018-05-08 19:21:34 +03003021 struct net *net = sock_net(&tfile->sk);
Eric W. Biederman631ab462009-01-20 11:00:40 +00003022 struct tun_struct *tun;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003023 void __user* argp = (void __user*)arg;
Nicolas Dichtel26d31922018-11-28 19:12:56 +01003024 unsigned int ifindex, carrier;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003025 struct ifreq ifr;
Eric W. Biederman0625c882012-02-07 16:48:55 -08003026 kuid_t owner;
3027 kgid_t group;
Herbert Xu33dccbb2009-02-05 21:25:32 -08003028 int sndbuf;
Michael S. Tsirkind9d52b52010-03-17 17:45:01 +02003029 int vnet_hdr_sz;
Michael S. Tsirkin1cf8e412014-12-16 15:05:06 +02003030 int le;
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -07003031 int ret;
Sabrina Dubroca83c1f362018-04-10 16:28:56 +02003032 bool do_notify = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003033
Kirill Tkhaif2780d62018-02-14 16:40:14 +03003034 if (cmd == TUNSETIFF || cmd == TUNSETQUEUE ||
3035 (_IOC_TYPE(cmd) == SOCK_IOC_TYPE && cmd != SIOCGSKNS)) {
Arnd Bergmann50857e22009-11-06 22:52:32 -08003036 if (copy_from_user(&ifr, argp, ifreq_len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003037 return -EFAULT;
David S. Miller8bbb1812012-07-30 14:52:48 -07003038 } else {
Mathias Krausea117dac2012-07-29 19:45:14 +00003039 memset(&ifr, 0, sizeof(ifr));
David S. Miller8bbb1812012-07-30 14:52:48 -07003040 }
Eric W. Biederman631ab462009-01-20 11:00:40 +00003041 if (cmd == TUNGETFEATURES) {
3042 /* Currently this just means: "what IFF flags are valid?".
3043 * This is needed because we never checked for invalid flags on
Michael S. Tsirkin031f5e032014-11-19 14:44:40 +02003044 * TUNSETIFF.
3045 */
3046 return put_user(IFF_TUN | IFF_TAP | TUN_FEATURES,
Eric W. Biederman631ab462009-01-20 11:00:40 +00003047 (unsigned int __user*)argp);
Kirill Tkhaif6637062018-05-08 19:21:34 +03003048 } else if (cmd == TUNSETQUEUE) {
Jason Wangcde8b152012-10-31 19:46:01 +00003049 return tun_set_queue(file, &ifr);
Kirill Tkhaif6637062018-05-08 19:21:34 +03003050 } else if (cmd == SIOCGSKNS) {
3051 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
3052 return -EPERM;
3053 return open_related_ns(&net->ns, get_net_ns);
3054 }
Eric W. Biederman631ab462009-01-20 11:00:40 +00003055
Jason Wangc8d68e62012-10-31 19:46:00 +00003056 ret = 0;
Herbert Xu876bfd42009-08-06 14:22:44 +00003057 rtnl_lock();
3058
yuan linyu9484dc72017-09-23 22:36:52 +08003059 tun = tun_get(tfile);
Gao Feng0f16bc12016-10-25 22:26:09 +08003060 if (cmd == TUNSETIFF) {
3061 ret = -EEXIST;
3062 if (tun)
3063 goto unlock;
3064
Linus Torvalds1da177e2005-04-16 15:20:36 -07003065 ifr.ifr_name[IFNAMSIZ-1] = '\0';
3066
Kirill Tkhaif2780d62018-02-14 16:40:14 +03003067 ret = tun_set_iff(net, file, &ifr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003068
Herbert Xu876bfd42009-08-06 14:22:44 +00003069 if (ret)
3070 goto unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003071
Arnd Bergmann50857e22009-11-06 22:52:32 -08003072 if (copy_to_user(argp, &ifr, ifreq_len))
Herbert Xu876bfd42009-08-06 14:22:44 +00003073 ret = -EFAULT;
3074 goto unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003075 }
Pavel Emelyanovfb7589a2013-08-21 14:31:38 +04003076 if (cmd == TUNSETIFINDEX) {
3077 ret = -EPERM;
3078 if (tun)
3079 goto unlock;
3080
3081 ret = -EFAULT;
3082 if (copy_from_user(&ifindex, argp, sizeof(ifindex)))
3083 goto unlock;
3084
3085 ret = 0;
3086 tfile->ifindex = ifindex;
3087 goto unlock;
3088 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003089
Herbert Xu876bfd42009-08-06 14:22:44 +00003090 ret = -EBADFD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003091 if (!tun)
Herbert Xu876bfd42009-08-06 14:22:44 +00003092 goto unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003093
Jason Wang1e588332012-10-31 19:45:56 +00003094 tun_debug(KERN_INFO, tun, "tun_chr_ioctl cmd %u\n", cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003095
Kirill Tkhai0c3e0e32019-03-20 12:16:42 +03003096 net = dev_net(tun->dev);
Eric W. Biederman631ab462009-01-20 11:00:40 +00003097 ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003098 switch (cmd) {
Mark McLoughline3b99552008-08-15 15:09:56 -07003099 case TUNGETIFF:
Kirill Tkhai12132762019-03-20 12:16:53 +03003100 tun_get_iff(tun, &ifr);
Mark McLoughline3b99552008-08-15 15:09:56 -07003101
Pavel Emelyanov3d407a82013-08-21 14:32:00 +04003102 if (tfile->detached)
3103 ifr.ifr_flags |= IFF_DETACH_QUEUE;
Pavel Emelyanov849c9b62013-08-21 14:32:21 +04003104 if (!tfile->socket.sk->sk_filter)
3105 ifr.ifr_flags |= IFF_NOFILTER;
Pavel Emelyanov3d407a82013-08-21 14:32:00 +04003106
Arnd Bergmann50857e22009-11-06 22:52:32 -08003107 if (copy_to_user(argp, &ifr, ifreq_len))
Eric W. Biederman631ab462009-01-20 11:00:40 +00003108 ret = -EFAULT;
Mark McLoughline3b99552008-08-15 15:09:56 -07003109 break;
3110
Linus Torvalds1da177e2005-04-16 15:20:36 -07003111 case TUNSETNOCSUM:
3112 /* Disable/Enable checksum */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003113
Michał Mirosław88255372011-04-19 06:13:10 +00003114 /* [unimplemented] */
3115 tun_debug(KERN_INFO, tun, "ignored: set checksum %s\n",
Joe Perches6b8a66e2011-03-02 07:18:10 +00003116 arg ? "disabled" : "enabled");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003117 break;
3118
3119 case TUNSETPERSIST:
Jason Wang54f968d2012-10-31 19:45:57 +00003120 /* Disable/Enable persist mode. Keep an extra reference to the
3121 * module to prevent the module being unprobed.
3122 */
Michael S. Tsirkin40630b82014-11-19 15:17:31 +02003123 if (arg && !(tun->flags & IFF_PERSIST)) {
3124 tun->flags |= IFF_PERSIST;
Jason Wang54f968d2012-10-31 19:45:57 +00003125 __module_get(THIS_MODULE);
Sabrina Dubroca83c1f362018-04-10 16:28:56 +02003126 do_notify = true;
Jason Wangdd38bd82013-01-11 16:59:34 +00003127 }
Michael S. Tsirkin40630b82014-11-19 15:17:31 +02003128 if (!arg && (tun->flags & IFF_PERSIST)) {
3129 tun->flags &= ~IFF_PERSIST;
Jason Wang54f968d2012-10-31 19:45:57 +00003130 module_put(THIS_MODULE);
Sabrina Dubroca83c1f362018-04-10 16:28:56 +02003131 do_notify = true;
Jason Wang54f968d2012-10-31 19:45:57 +00003132 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003133
Joe Perches6b8a66e2011-03-02 07:18:10 +00003134 tun_debug(KERN_INFO, tun, "persist %s\n",
3135 arg ? "enabled" : "disabled");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003136 break;
3137
3138 case TUNSETOWNER:
3139 /* Set owner of the device */
Eric W. Biederman0625c882012-02-07 16:48:55 -08003140 owner = make_kuid(current_user_ns(), arg);
3141 if (!uid_valid(owner)) {
3142 ret = -EINVAL;
3143 break;
3144 }
3145 tun->owner = owner;
Sabrina Dubroca83c1f362018-04-10 16:28:56 +02003146 do_notify = true;
Jason Wang1e588332012-10-31 19:45:56 +00003147 tun_debug(KERN_INFO, tun, "owner set to %u\n",
Eric W. Biederman0625c882012-02-07 16:48:55 -08003148 from_kuid(&init_user_ns, tun->owner));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003149 break;
3150
Guido Guenther8c644622007-07-02 22:50:25 -07003151 case TUNSETGROUP:
3152 /* Set group of the device */
Eric W. Biederman0625c882012-02-07 16:48:55 -08003153 group = make_kgid(current_user_ns(), arg);
3154 if (!gid_valid(group)) {
3155 ret = -EINVAL;
3156 break;
3157 }
3158 tun->group = group;
Sabrina Dubroca83c1f362018-04-10 16:28:56 +02003159 do_notify = true;
Jason Wang1e588332012-10-31 19:45:56 +00003160 tun_debug(KERN_INFO, tun, "group set to %u\n",
Eric W. Biederman0625c882012-02-07 16:48:55 -08003161 from_kgid(&init_user_ns, tun->group));
Guido Guenther8c644622007-07-02 22:50:25 -07003162 break;
3163
Mike Kershawff4cc3a2005-09-01 17:40:05 -07003164 case TUNSETLINK:
3165 /* Only allow setting the type when the interface is down */
3166 if (tun->dev->flags & IFF_UP) {
Joe Perches6b8a66e2011-03-02 07:18:10 +00003167 tun_debug(KERN_INFO, tun,
3168 "Linktype set failed because interface is up\n");
David S. Miller48abfe02008-04-23 19:37:58 -07003169 ret = -EBUSY;
Mike Kershawff4cc3a2005-09-01 17:40:05 -07003170 } else {
3171 tun->dev->type = (int) arg;
Joe Perches6b8a66e2011-03-02 07:18:10 +00003172 tun_debug(KERN_INFO, tun, "linktype set to %d\n",
3173 tun->dev->type);
David S. Miller48abfe02008-04-23 19:37:58 -07003174 ret = 0;
Mike Kershawff4cc3a2005-09-01 17:40:05 -07003175 }
Eric W. Biederman631ab462009-01-20 11:00:40 +00003176 break;
Mike Kershawff4cc3a2005-09-01 17:40:05 -07003177
Linus Torvalds1da177e2005-04-16 15:20:36 -07003178#ifdef TUN_DEBUG
3179 case TUNSETDEBUG:
3180 tun->debug = arg;
3181 break;
3182#endif
Rusty Russell5228ddc2008-07-03 03:46:16 -07003183 case TUNSETOFFLOAD:
Michał Mirosław88255372011-04-19 06:13:10 +00003184 ret = set_offload(tun, arg);
Eric W. Biederman631ab462009-01-20 11:00:40 +00003185 break;
Rusty Russell5228ddc2008-07-03 03:46:16 -07003186
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -07003187 case TUNSETTXFILTER:
3188 /* Can be set only for TAPs */
Eric W. Biederman631ab462009-01-20 11:00:40 +00003189 ret = -EINVAL;
Michael S. Tsirkin40630b82014-11-19 15:17:31 +02003190 if ((tun->flags & TUN_TYPE_MASK) != IFF_TAP)
Eric W. Biederman631ab462009-01-20 11:00:40 +00003191 break;
Harvey Harrisonc0e5a8c2008-07-16 12:45:34 -07003192 ret = update_filter(&tun->txflt, (void __user *)arg);
Eric W. Biederman631ab462009-01-20 11:00:40 +00003193 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003194
3195 case SIOCGIFHWADDR:
Uwe Kleine-Königb5950762010-11-01 15:38:34 -04003196 /* Get hw address */
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -07003197 memcpy(ifr.ifr_hwaddr.sa_data, tun->dev->dev_addr, ETH_ALEN);
3198 ifr.ifr_hwaddr.sa_family = tun->dev->type;
Arnd Bergmann50857e22009-11-06 22:52:32 -08003199 if (copy_to_user(argp, &ifr, ifreq_len))
Eric W. Biederman631ab462009-01-20 11:00:40 +00003200 ret = -EFAULT;
3201 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003202
3203 case SIOCSIFHWADDR:
Max Krasnyanskyf271b2cc2008-07-14 22:18:19 -07003204 /* Set hw address */
Joe Perches6b8a66e2011-03-02 07:18:10 +00003205 tun_debug(KERN_DEBUG, tun, "set hw address: %pM\n",
3206 ifr.ifr_hwaddr.sa_data);
Kim B. Heino40102372008-02-29 12:26:21 -08003207
Petr Machata3a37a962018-12-13 11:54:30 +00003208 ret = dev_set_mac_address(tun->dev, &ifr.ifr_hwaddr, NULL);
Eric W. Biederman631ab462009-01-20 11:00:40 +00003209 break;
Herbert Xu33dccbb2009-02-05 21:25:32 -08003210
3211 case TUNGETSNDBUF:
Jason Wang54f968d2012-10-31 19:45:57 +00003212 sndbuf = tfile->socket.sk->sk_sndbuf;
Herbert Xu33dccbb2009-02-05 21:25:32 -08003213 if (copy_to_user(argp, &sndbuf, sizeof(sndbuf)))
3214 ret = -EFAULT;
3215 break;
3216
3217 case TUNSETSNDBUF:
3218 if (copy_from_user(&sndbuf, argp, sizeof(sndbuf))) {
3219 ret = -EFAULT;
3220 break;
3221 }
Craig Gallek931619222017-10-30 18:50:11 -04003222 if (sndbuf <= 0) {
3223 ret = -EINVAL;
3224 break;
3225 }
Herbert Xu33dccbb2009-02-05 21:25:32 -08003226
Jason Wangc8d68e62012-10-31 19:46:00 +00003227 tun->sndbuf = sndbuf;
3228 tun_set_sndbuf(tun);
Herbert Xu33dccbb2009-02-05 21:25:32 -08003229 break;
3230
Michael S. Tsirkind9d52b52010-03-17 17:45:01 +02003231 case TUNGETVNETHDRSZ:
3232 vnet_hdr_sz = tun->vnet_hdr_sz;
3233 if (copy_to_user(argp, &vnet_hdr_sz, sizeof(vnet_hdr_sz)))
3234 ret = -EFAULT;
3235 break;
3236
3237 case TUNSETVNETHDRSZ:
3238 if (copy_from_user(&vnet_hdr_sz, argp, sizeof(vnet_hdr_sz))) {
3239 ret = -EFAULT;
3240 break;
3241 }
3242 if (vnet_hdr_sz < (int)sizeof(struct virtio_net_hdr)) {
3243 ret = -EINVAL;
3244 break;
3245 }
3246
3247 tun->vnet_hdr_sz = vnet_hdr_sz;
3248 break;
3249
Michael S. Tsirkin1cf8e412014-12-16 15:05:06 +02003250 case TUNGETVNETLE:
3251 le = !!(tun->flags & TUN_VNET_LE);
3252 if (put_user(le, (int __user *)argp))
3253 ret = -EFAULT;
3254 break;
3255
3256 case TUNSETVNETLE:
3257 if (get_user(le, (int __user *)argp)) {
3258 ret = -EFAULT;
3259 break;
3260 }
3261 if (le)
3262 tun->flags |= TUN_VNET_LE;
3263 else
3264 tun->flags &= ~TUN_VNET_LE;
3265 break;
3266
Greg Kurz8b8e6582015-04-24 14:50:36 +02003267 case TUNGETVNETBE:
3268 ret = tun_get_vnet_be(tun, argp);
3269 break;
3270
3271 case TUNSETVNETBE:
3272 ret = tun_set_vnet_be(tun, argp);
3273 break;
3274
Michael S. Tsirkin99405162010-02-14 01:01:10 +00003275 case TUNATTACHFILTER:
3276 /* Can be set only for TAPs */
3277 ret = -EINVAL;
Michael S. Tsirkin40630b82014-11-19 15:17:31 +02003278 if ((tun->flags & TUN_TYPE_MASK) != IFF_TAP)
Michael S. Tsirkin99405162010-02-14 01:01:10 +00003279 break;
3280 ret = -EFAULT;
Jason Wang54f968d2012-10-31 19:45:57 +00003281 if (copy_from_user(&tun->fprog, argp, sizeof(tun->fprog)))
Michael S. Tsirkin99405162010-02-14 01:01:10 +00003282 break;
3283
Jason Wangc8d68e62012-10-31 19:46:00 +00003284 ret = tun_attach_filter(tun);
Michael S. Tsirkin99405162010-02-14 01:01:10 +00003285 break;
3286
3287 case TUNDETACHFILTER:
3288 /* Can be set only for TAPs */
3289 ret = -EINVAL;
Michael S. Tsirkin40630b82014-11-19 15:17:31 +02003290 if ((tun->flags & TUN_TYPE_MASK) != IFF_TAP)
Michael S. Tsirkin99405162010-02-14 01:01:10 +00003291 break;
Jason Wangc8d68e62012-10-31 19:46:00 +00003292 ret = 0;
3293 tun_detach_filter(tun, tun->numqueues);
Michael S. Tsirkin99405162010-02-14 01:01:10 +00003294 break;
3295
Pavel Emelyanov76975e92013-08-21 14:32:39 +04003296 case TUNGETFILTER:
3297 ret = -EINVAL;
Michael S. Tsirkin40630b82014-11-19 15:17:31 +02003298 if ((tun->flags & TUN_TYPE_MASK) != IFF_TAP)
Pavel Emelyanov76975e92013-08-21 14:32:39 +04003299 break;
3300 ret = -EFAULT;
3301 if (copy_to_user(argp, &tun->fprog, sizeof(tun->fprog)))
3302 break;
3303 ret = 0;
3304 break;
3305
Jason Wang96f84062017-12-04 17:31:23 +08003306 case TUNSETSTEERINGEBPF:
Jason Wangcd5681d2018-01-16 16:31:01 +08003307 ret = tun_set_ebpf(tun, &tun->steering_prog, argp);
Jason Wang96f84062017-12-04 17:31:23 +08003308 break;
3309
Jason Wangaff3d702018-01-16 16:31:02 +08003310 case TUNSETFILTEREBPF:
3311 ret = tun_set_ebpf(tun, &tun->filter_prog, argp);
3312 break;
3313
Nicolas Dichtel26d31922018-11-28 19:12:56 +01003314 case TUNSETCARRIER:
3315 ret = -EFAULT;
3316 if (copy_from_user(&carrier, argp, sizeof(carrier)))
3317 goto unlock;
3318
3319 ret = tun_net_change_carrier(tun->dev, (bool)carrier);
3320 break;
3321
Kirill Tkhai0c3e0e32019-03-20 12:16:42 +03003322 case TUNGETDEVNETNS:
3323 ret = -EPERM;
3324 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
3325 goto unlock;
3326 ret = open_related_ns(&net->ns, get_net_ns);
3327 break;
3328
Linus Torvalds1da177e2005-04-16 15:20:36 -07003329 default:
Eric W. Biederman631ab462009-01-20 11:00:40 +00003330 ret = -EINVAL;
3331 break;
Joe Perchesee289b62010-05-17 22:47:34 -07003332 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003333
Sabrina Dubroca83c1f362018-04-10 16:28:56 +02003334 if (do_notify)
3335 netdev_state_change(tun->dev);
3336
Herbert Xu876bfd42009-08-06 14:22:44 +00003337unlock:
3338 rtnl_unlock();
3339 if (tun)
3340 tun_put(tun);
Eric W. Biederman631ab462009-01-20 11:00:40 +00003341 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003342}
3343
Arnd Bergmann50857e22009-11-06 22:52:32 -08003344static long tun_chr_ioctl(struct file *file,
3345 unsigned int cmd, unsigned long arg)
3346{
3347 return __tun_chr_ioctl(file, cmd, arg, sizeof (struct ifreq));
3348}
3349
3350#ifdef CONFIG_COMPAT
3351static long tun_chr_compat_ioctl(struct file *file,
3352 unsigned int cmd, unsigned long arg)
3353{
3354 switch (cmd) {
3355 case TUNSETIFF:
3356 case TUNGETIFF:
3357 case TUNSETTXFILTER:
3358 case TUNGETSNDBUF:
3359 case TUNSETSNDBUF:
3360 case SIOCGIFHWADDR:
3361 case SIOCSIFHWADDR:
3362 arg = (unsigned long)compat_ptr(arg);
3363 break;
3364 default:
3365 arg = (compat_ulong_t)arg;
3366 break;
3367 }
3368
3369 /*
3370 * compat_ifreq is shorter than ifreq, so we must not access beyond
3371 * the end of that structure. All fields that are used in this
3372 * driver are compatible though, we don't need to convert the
3373 * contents.
3374 */
3375 return __tun_chr_ioctl(file, cmd, arg, sizeof(struct compat_ifreq));
3376}
3377#endif /* CONFIG_COMPAT */
3378
Linus Torvalds1da177e2005-04-16 15:20:36 -07003379static int tun_chr_fasync(int fd, struct file *file, int on)
3380{
Jason Wang54f968d2012-10-31 19:45:57 +00003381 struct tun_file *tfile = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003382 int ret;
3383
Jason Wang54f968d2012-10-31 19:45:57 +00003384 if ((ret = fasync_helper(fd, file, on, &tfile->fasync)) < 0)
Jonathan Corbet9d319522008-06-19 15:50:37 -06003385 goto out;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04003386
Linus Torvalds1da177e2005-04-16 15:20:36 -07003387 if (on) {
Eric W. Biederman01919132017-07-16 22:05:57 -05003388 __f_setown(file, task_pid(current), PIDTYPE_TGID, 0);
Jason Wang54f968d2012-10-31 19:45:57 +00003389 tfile->flags |= TUN_FASYNC;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04003390 } else
Jason Wang54f968d2012-10-31 19:45:57 +00003391 tfile->flags &= ~TUN_FASYNC;
Jonathan Corbet9d319522008-06-19 15:50:37 -06003392 ret = 0;
3393out:
Jonathan Corbet9d319522008-06-19 15:50:37 -06003394 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003395}
3396
3397static int tun_chr_open(struct inode *inode, struct file * file)
3398{
Eric W. Biederman140e807da2015-05-08 21:07:08 -05003399 struct net *net = current->nsproxy->net_ns;
Eric W. Biederman631ab462009-01-20 11:00:40 +00003400 struct tun_file *tfile;
Thomas Gleixnerdeed49f2009-10-14 01:19:46 -07003401
Joe Perches6b8a66e2011-03-02 07:18:10 +00003402 DBG1(KERN_INFO, "tunX: tun_chr_open\n");
Eric W. Biederman631ab462009-01-20 11:00:40 +00003403
Eric W. Biederman140e807da2015-05-08 21:07:08 -05003404 tfile = (struct tun_file *)sk_alloc(net, AF_UNSPEC, GFP_KERNEL,
Eric W. Biederman11aa9c22015-05-08 21:09:13 -05003405 &tun_proto, 0);
Eric W. Biederman631ab462009-01-20 11:00:40 +00003406 if (!tfile)
3407 return -ENOMEM;
Jason Wangb196d882018-05-11 10:49:25 +08003408 if (ptr_ring_init(&tfile->tx_ring, 0, GFP_KERNEL)) {
3409 sk_free(&tfile->sk);
3410 return -ENOMEM;
3411 }
3412
Eric Dumazetc7256f52018-09-28 14:51:48 -07003413 mutex_init(&tfile->napi_mutex);
Monam Agarwalc9566742014-03-24 00:02:32 +05303414 RCU_INIT_POINTER(tfile->tun, NULL);
Jason Wang54f968d2012-10-31 19:45:57 +00003415 tfile->flags = 0;
Pavel Emelyanovfb7589a2013-08-21 14:31:38 +04003416 tfile->ifindex = 0;
Jason Wang54f968d2012-10-31 19:45:57 +00003417
Jason Wang54f968d2012-10-31 19:45:57 +00003418 init_waitqueue_head(&tfile->wq.wait);
Xi Wang9e641bd2014-05-16 15:11:48 -07003419 RCU_INIT_POINTER(tfile->socket.wq, &tfile->wq);
Jason Wang54f968d2012-10-31 19:45:57 +00003420
3421 tfile->socket.file = file;
3422 tfile->socket.ops = &tun_socket_ops;
3423
3424 sock_init_data(&tfile->socket, &tfile->sk);
Jason Wang54f968d2012-10-31 19:45:57 +00003425
3426 tfile->sk.sk_write_space = tun_sock_write_space;
3427 tfile->sk.sk_sndbuf = INT_MAX;
3428
Eric W. Biederman631ab462009-01-20 11:00:40 +00003429 file->private_data = tfile;
Jason Wang4008e972012-12-13 23:53:30 +00003430 INIT_LIST_HEAD(&tfile->next);
Jason Wang54f968d2012-10-31 19:45:57 +00003431
Jason Wang19a6afb2013-06-08 14:17:41 +08003432 sock_set_flag(&tfile->sk, SOCK_ZEROCOPY);
3433
Linus Torvalds1da177e2005-04-16 15:20:36 -07003434 return 0;
3435}
3436
3437static int tun_chr_close(struct inode *inode, struct file *file)
3438{
Eric W. Biederman631ab462009-01-20 11:00:40 +00003439 struct tun_file *tfile = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003440
Jason Wangc8d68e62012-10-31 19:46:00 +00003441 tun_detach(tfile, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003442
3443 return 0;
3444}
3445
Masatake YAMATO93e14b62014-01-29 16:43:31 +09003446#ifdef CONFIG_PROC_FS
yuan linyu9484dc72017-09-23 22:36:52 +08003447static void tun_chr_show_fdinfo(struct seq_file *m, struct file *file)
Masatake YAMATO93e14b62014-01-29 16:43:31 +09003448{
yuan linyu9484dc72017-09-23 22:36:52 +08003449 struct tun_file *tfile = file->private_data;
Masatake YAMATO93e14b62014-01-29 16:43:31 +09003450 struct tun_struct *tun;
3451 struct ifreq ifr;
3452
3453 memset(&ifr, 0, sizeof(ifr));
3454
3455 rtnl_lock();
yuan linyu9484dc72017-09-23 22:36:52 +08003456 tun = tun_get(tfile);
Masatake YAMATO93e14b62014-01-29 16:43:31 +09003457 if (tun)
Kirill Tkhai12132762019-03-20 12:16:53 +03003458 tun_get_iff(tun, &ifr);
Masatake YAMATO93e14b62014-01-29 16:43:31 +09003459 rtnl_unlock();
3460
3461 if (tun)
3462 tun_put(tun);
3463
Joe Perchesa3816ab2014-09-29 16:08:25 -07003464 seq_printf(m, "iff:\t%s\n", ifr.ifr_name);
Masatake YAMATO93e14b62014-01-29 16:43:31 +09003465}
3466#endif
3467
Arjan van de Vend54b1fd2007-02-12 00:55:34 -08003468static const struct file_operations tun_fops = {
Jeff Garzik6aa20a22006-09-13 13:24:59 -04003469 .owner = THIS_MODULE,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003470 .llseek = no_llseek,
Al Viro9b067032014-11-07 13:52:07 -05003471 .read_iter = tun_chr_read_iter,
Al Virof5ff53b2014-06-19 15:36:49 -04003472 .write_iter = tun_chr_write_iter,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003473 .poll = tun_chr_poll,
Arnd Bergmann50857e22009-11-06 22:52:32 -08003474 .unlocked_ioctl = tun_chr_ioctl,
3475#ifdef CONFIG_COMPAT
3476 .compat_ioctl = tun_chr_compat_ioctl,
3477#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003478 .open = tun_chr_open,
3479 .release = tun_chr_close,
Masatake YAMATO93e14b62014-01-29 16:43:31 +09003480 .fasync = tun_chr_fasync,
3481#ifdef CONFIG_PROC_FS
3482 .show_fdinfo = tun_chr_show_fdinfo,
3483#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003484};
3485
3486static struct miscdevice tun_miscdev = {
3487 .minor = TUN_MINOR,
3488 .name = "tun",
Kay Sieverse454cea2009-09-18 23:01:12 +02003489 .nodename = "net/tun",
Linus Torvalds1da177e2005-04-16 15:20:36 -07003490 .fops = &tun_fops,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003491};
3492
3493/* ethtool interface */
3494
Chas Williams4e24f2d2018-06-02 17:49:53 -04003495static void tun_default_link_ksettings(struct net_device *dev,
3496 struct ethtool_link_ksettings *cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003497{
Philippe Reynes29ccc492017-03-11 22:03:50 +01003498 ethtool_link_ksettings_zero_link_mode(cmd, supported);
3499 ethtool_link_ksettings_zero_link_mode(cmd, advertising);
3500 cmd->base.speed = SPEED_10;
3501 cmd->base.duplex = DUPLEX_FULL;
3502 cmd->base.port = PORT_TP;
3503 cmd->base.phy_address = 0;
3504 cmd->base.autoneg = AUTONEG_DISABLE;
Chas Williams4e24f2d2018-06-02 17:49:53 -04003505}
3506
3507static int tun_get_link_ksettings(struct net_device *dev,
3508 struct ethtool_link_ksettings *cmd)
3509{
3510 struct tun_struct *tun = netdev_priv(dev);
3511
3512 memcpy(cmd, &tun->link_ksettings, sizeof(*cmd));
3513 return 0;
3514}
3515
3516static int tun_set_link_ksettings(struct net_device *dev,
3517 const struct ethtool_link_ksettings *cmd)
3518{
3519 struct tun_struct *tun = netdev_priv(dev);
3520
3521 memcpy(&tun->link_ksettings, cmd, sizeof(*cmd));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003522 return 0;
3523}
3524
3525static void tun_get_drvinfo(struct net_device *dev, struct ethtool_drvinfo *info)
3526{
3527 struct tun_struct *tun = netdev_priv(dev);
3528
Rick Jones33a5ba12011-11-15 14:59:53 +00003529 strlcpy(info->driver, DRV_NAME, sizeof(info->driver));
3530 strlcpy(info->version, DRV_VERSION, sizeof(info->version));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003531
3532 switch (tun->flags & TUN_TYPE_MASK) {
Michael S. Tsirkin40630b82014-11-19 15:17:31 +02003533 case IFF_TUN:
Rick Jones33a5ba12011-11-15 14:59:53 +00003534 strlcpy(info->bus_info, "tun", sizeof(info->bus_info));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003535 break;
Michael S. Tsirkin40630b82014-11-19 15:17:31 +02003536 case IFF_TAP:
Rick Jones33a5ba12011-11-15 14:59:53 +00003537 strlcpy(info->bus_info, "tap", sizeof(info->bus_info));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003538 break;
3539 }
3540}
3541
3542static u32 tun_get_msglevel(struct net_device *dev)
3543{
3544#ifdef TUN_DEBUG
3545 struct tun_struct *tun = netdev_priv(dev);
3546 return tun->debug;
3547#else
3548 return -EOPNOTSUPP;
3549#endif
3550}
3551
3552static void tun_set_msglevel(struct net_device *dev, u32 value)
3553{
3554#ifdef TUN_DEBUG
3555 struct tun_struct *tun = netdev_priv(dev);
3556 tun->debug = value;
3557#endif
3558}
3559
Jason Wang5503fce2017-01-18 15:02:03 +08003560static int tun_get_coalesce(struct net_device *dev,
3561 struct ethtool_coalesce *ec)
3562{
3563 struct tun_struct *tun = netdev_priv(dev);
3564
3565 ec->rx_max_coalesced_frames = tun->rx_batched;
3566
3567 return 0;
3568}
3569
3570static int tun_set_coalesce(struct net_device *dev,
3571 struct ethtool_coalesce *ec)
3572{
3573 struct tun_struct *tun = netdev_priv(dev);
3574
3575 if (ec->rx_max_coalesced_frames > NAPI_POLL_WEIGHT)
3576 tun->rx_batched = NAPI_POLL_WEIGHT;
3577 else
3578 tun->rx_batched = ec->rx_max_coalesced_frames;
3579
3580 return 0;
3581}
3582
Jeff Garzik7282d492006-09-13 14:30:00 -04003583static const struct ethtool_ops tun_ethtool_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003584 .get_drvinfo = tun_get_drvinfo,
3585 .get_msglevel = tun_get_msglevel,
3586 .set_msglevel = tun_set_msglevel,
Nolan Leakebee31362010-07-27 13:53:43 +00003587 .get_link = ethtool_op_get_link,
Richard Cochraneda29772013-07-19 19:40:10 +02003588 .get_ts_info = ethtool_op_get_ts_info,
Jason Wang5503fce2017-01-18 15:02:03 +08003589 .get_coalesce = tun_get_coalesce,
3590 .set_coalesce = tun_set_coalesce,
Philippe Reynes29ccc492017-03-11 22:03:50 +01003591 .get_link_ksettings = tun_get_link_ksettings,
Chas Williams4e24f2d2018-06-02 17:49:53 -04003592 .set_link_ksettings = tun_set_link_ksettings,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003593};
3594
Jason Wang1576d982016-06-30 14:45:36 +08003595static int tun_queue_resize(struct tun_struct *tun)
3596{
3597 struct net_device *dev = tun->dev;
3598 struct tun_file *tfile;
Jason Wang5990a302018-01-04 11:14:27 +08003599 struct ptr_ring **rings;
Jason Wang1576d982016-06-30 14:45:36 +08003600 int n = tun->numqueues + tun->numdisabled;
3601 int ret, i;
3602
Jason Wang5990a302018-01-04 11:14:27 +08003603 rings = kmalloc_array(n, sizeof(*rings), GFP_KERNEL);
3604 if (!rings)
Jason Wang1576d982016-06-30 14:45:36 +08003605 return -ENOMEM;
3606
3607 for (i = 0; i < tun->numqueues; i++) {
3608 tfile = rtnl_dereference(tun->tfiles[i]);
Jason Wang5990a302018-01-04 11:14:27 +08003609 rings[i] = &tfile->tx_ring;
Jason Wang1576d982016-06-30 14:45:36 +08003610 }
3611 list_for_each_entry(tfile, &tun->disabled, next)
Jason Wang5990a302018-01-04 11:14:27 +08003612 rings[i++] = &tfile->tx_ring;
Jason Wang1576d982016-06-30 14:45:36 +08003613
Jason Wang5990a302018-01-04 11:14:27 +08003614 ret = ptr_ring_resize_multiple(rings, n,
3615 dev->tx_queue_len, GFP_KERNEL,
Jason Wangfc72d1d2018-01-04 11:14:28 +08003616 tun_ptr_free);
Jason Wang1576d982016-06-30 14:45:36 +08003617
Jason Wang5990a302018-01-04 11:14:27 +08003618 kfree(rings);
Jason Wang1576d982016-06-30 14:45:36 +08003619 return ret;
3620}
3621
3622static int tun_device_event(struct notifier_block *unused,
3623 unsigned long event, void *ptr)
3624{
3625 struct net_device *dev = netdev_notifier_info_to_dev(ptr);
3626 struct tun_struct *tun = netdev_priv(dev);
Fei Li72b319d2019-06-17 21:26:36 +08003627 int i;
Jason Wang1576d982016-06-30 14:45:36 +08003628
Craig Gallek86dfb4ac2016-07-06 18:44:20 -04003629 if (dev->rtnl_link_ops != &tun_link_ops)
3630 return NOTIFY_DONE;
3631
Jason Wang1576d982016-06-30 14:45:36 +08003632 switch (event) {
3633 case NETDEV_CHANGE_TX_QUEUE_LEN:
3634 if (tun_queue_resize(tun))
3635 return NOTIFY_BAD;
3636 break;
Fei Li72b319d2019-06-17 21:26:36 +08003637 case NETDEV_UP:
3638 for (i = 0; i < tun->numqueues; i++) {
3639 struct tun_file *tfile;
3640
3641 tfile = rtnl_dereference(tun->tfiles[i]);
3642 tfile->socket.sk->sk_write_space(tfile->socket.sk);
3643 }
3644 break;
Jason Wang1576d982016-06-30 14:45:36 +08003645 default:
3646 break;
3647 }
3648
3649 return NOTIFY_DONE;
3650}
3651
3652static struct notifier_block tun_notifier_block __read_mostly = {
3653 .notifier_call = tun_device_event,
3654};
Pavel Emelyanov79d17602008-04-16 00:40:46 -07003655
Linus Torvalds1da177e2005-04-16 15:20:36 -07003656static int __init tun_init(void)
3657{
3658 int ret = 0;
3659
Joe Perches6b8a66e2011-03-02 07:18:10 +00003660 pr_info("%s, %s\n", DRV_DESCRIPTION, DRV_VERSION);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003661
Eric W. Biedermanf019a7a2009-01-21 16:02:16 -08003662 ret = rtnl_link_register(&tun_link_ops);
Pavel Emelyanov79d17602008-04-16 00:40:46 -07003663 if (ret) {
Joe Perches6b8a66e2011-03-02 07:18:10 +00003664 pr_err("Can't register link_ops\n");
Eric W. Biedermanf019a7a2009-01-21 16:02:16 -08003665 goto err_linkops;
Pavel Emelyanov79d17602008-04-16 00:40:46 -07003666 }
3667
Linus Torvalds1da177e2005-04-16 15:20:36 -07003668 ret = misc_register(&tun_miscdev);
Pavel Emelyanov79d17602008-04-16 00:40:46 -07003669 if (ret) {
Joe Perches6b8a66e2011-03-02 07:18:10 +00003670 pr_err("Can't register misc device %d\n", TUN_MINOR);
Pavel Emelyanov79d17602008-04-16 00:40:46 -07003671 goto err_misc;
3672 }
Jason Wang1576d982016-06-30 14:45:36 +08003673
Tonghao Zhang5edfbd32017-07-20 02:41:34 -07003674 ret = register_netdevice_notifier(&tun_notifier_block);
3675 if (ret) {
3676 pr_err("Can't register netdevice notifier\n");
3677 goto err_notifier;
3678 }
3679
Eric W. Biedermanf019a7a2009-01-21 16:02:16 -08003680 return 0;
Tonghao Zhang5edfbd32017-07-20 02:41:34 -07003681
3682err_notifier:
3683 misc_deregister(&tun_miscdev);
Pavel Emelyanov79d17602008-04-16 00:40:46 -07003684err_misc:
Eric W. Biedermanf019a7a2009-01-21 16:02:16 -08003685 rtnl_link_unregister(&tun_link_ops);
3686err_linkops:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003687 return ret;
3688}
3689
3690static void tun_cleanup(void)
3691{
Jeff Garzik6aa20a22006-09-13 13:24:59 -04003692 misc_deregister(&tun_miscdev);
Eric W. Biedermanf019a7a2009-01-21 16:02:16 -08003693 rtnl_link_unregister(&tun_link_ops);
Jason Wang1576d982016-06-30 14:45:36 +08003694 unregister_netdevice_notifier(&tun_notifier_block);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003695}
3696
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00003697/* Get an underlying socket object from tun file. Returns error unless file is
3698 * attached to a device. The returned object works like a packet socket, it
3699 * can be used for sock_sendmsg/sock_recvmsg. The caller is responsible for
3700 * holding a reference to the file for as long as the socket is in use. */
3701struct socket *tun_get_socket(struct file *file)
3702{
Jason Wang6e914fc2012-10-31 19:45:58 +00003703 struct tun_file *tfile;
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00003704 if (file->f_op != &tun_fops)
3705 return ERR_PTR(-EINVAL);
Jason Wang6e914fc2012-10-31 19:45:58 +00003706 tfile = file->private_data;
3707 if (!tfile)
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00003708 return ERR_PTR(-EBADFD);
Jason Wang54f968d2012-10-31 19:45:57 +00003709 return &tfile->socket;
Michael S. Tsirkin05c28282010-01-14 06:17:09 +00003710}
3711EXPORT_SYMBOL_GPL(tun_get_socket);
3712
Jason Wang5990a302018-01-04 11:14:27 +08003713struct ptr_ring *tun_get_tx_ring(struct file *file)
Jason Wang83339c62017-05-17 12:14:41 +08003714{
3715 struct tun_file *tfile;
3716
3717 if (file->f_op != &tun_fops)
3718 return ERR_PTR(-EINVAL);
3719 tfile = file->private_data;
3720 if (!tfile)
3721 return ERR_PTR(-EBADFD);
Jason Wang5990a302018-01-04 11:14:27 +08003722 return &tfile->tx_ring;
Jason Wang83339c62017-05-17 12:14:41 +08003723}
Jason Wang5990a302018-01-04 11:14:27 +08003724EXPORT_SYMBOL_GPL(tun_get_tx_ring);
Jason Wang83339c62017-05-17 12:14:41 +08003725
Linus Torvalds1da177e2005-04-16 15:20:36 -07003726module_init(tun_init);
3727module_exit(tun_cleanup);
3728MODULE_DESCRIPTION(DRV_DESCRIPTION);
3729MODULE_AUTHOR(DRV_COPYRIGHT);
3730MODULE_LICENSE("GPL");
3731MODULE_ALIAS_MISCDEV(TUN_MINOR);
Kay Sievers578454f2010-05-20 18:07:20 +02003732MODULE_ALIAS("devname:net/tun");