]> git.ipfire.org Git - thirdparty/linux.git/blame - drivers/net/tun.c
Merge branch 'qed-LL2-fixes'
[thirdparty/linux.git] / drivers / net / tun.c
CommitLineData
1da177e4
LT
1/*
2 * TUN - Universal TUN/TAP device driver.
3 * Copyright (C) 1999-2002 Maxim Krasnyansky <maxk@qualcomm.com>
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * $Id: tun.c,v 1.15 2002/03/01 02:44:24 maxk Exp $
16 */
17
18/*
19 * Changes:
20 *
ff4cc3ac
MK
21 * Mike Kershaw <dragorn@kismetwireless.net> 2005/08/14
22 * Add TUNSETLINK ioctl to set the link encapsulation
23 *
1da177e4 24 * Mark Smith <markzzzsmith@yahoo.com.au>
344dc8ed 25 * Use eth_random_addr() for tap MAC address.
1da177e4
LT
26 *
27 * Harald Roelle <harald.roelle@ifi.lmu.de> 2004/04/20
28 * Fixes in packet dropping, queue length setting and queue wakeup.
29 * Increased default tx queue length.
30 * Added ethtool API.
31 * Minor cleanups
32 *
33 * Daniel Podlejski <underley@underley.eu.org>
34 * Modifications for 2.3.99-pre5 kernel.
35 */
36
6b8a66ee
JP
37#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
38
1da177e4
LT
39#define DRV_NAME "tun"
40#define DRV_VERSION "1.6"
41#define DRV_DESCRIPTION "Universal TUN/TAP device driver"
42#define DRV_COPYRIGHT "(C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>"
43
1da177e4
LT
44#include <linux/module.h>
45#include <linux/errno.h>
46#include <linux/kernel.h>
174cd4b1 47#include <linux/sched/signal.h>
1da177e4
LT
48#include <linux/major.h>
49#include <linux/slab.h>
50#include <linux/poll.h>
51#include <linux/fcntl.h>
52#include <linux/init.h>
53#include <linux/skbuff.h>
54#include <linux/netdevice.h>
55#include <linux/etherdevice.h>
56#include <linux/miscdevice.h>
57#include <linux/ethtool.h>
58#include <linux/rtnetlink.h>
50857e2a 59#include <linux/compat.h>
1da177e4
LT
60#include <linux/if.h>
61#include <linux/if_arp.h>
62#include <linux/if_ether.h>
63#include <linux/if_tun.h>
6680ec68 64#include <linux/if_vlan.h>
1da177e4 65#include <linux/crc32.h>
d647a591 66#include <linux/nsproxy.h>
f43798c2 67#include <linux/virtio_net.h>
99405162 68#include <linux/rcupdate.h>
881d966b 69#include <net/net_namespace.h>
79d17604 70#include <net/netns/generic.h>
f019a7a5 71#include <net/rtnetlink.h>
33dccbb0 72#include <net/sock.h>
93e14b6d 73#include <linux/seq_file.h>
e0b46d0e 74#include <linux/uio.h>
1576d986 75#include <linux/skb_array.h>
761876c8
JW
76#include <linux/bpf.h>
77#include <linux/bpf_trace.h>
90e33d45 78#include <linux/mutex.h>
1da177e4 79
7c0f6ba6 80#include <linux/uaccess.h>
f2780d6d 81#include <linux/proc_fs.h>
1da177e4 82
14daa021
RR
83/* Uncomment to enable debugging */
84/* #define TUN_DEBUG 1 */
85
1da177e4
LT
86#ifdef TUN_DEBUG
87static int debug;
14daa021 88
6b8a66ee
JP
89#define tun_debug(level, tun, fmt, args...) \
90do { \
91 if (tun->debug) \
92 netdev_printk(level, tun->dev, fmt, ##args); \
93} while (0)
94#define DBG1(level, fmt, args...) \
95do { \
96 if (debug == 2) \
97 printk(level fmt, ##args); \
98} while (0)
14daa021 99#else
6b8a66ee
JP
100#define tun_debug(level, tun, fmt, args...) \
101do { \
102 if (0) \
103 netdev_printk(level, tun->dev, fmt, ##args); \
104} while (0)
105#define DBG1(level, fmt, args...) \
106do { \
107 if (0) \
108 printk(level fmt, ##args); \
109} while (0)
14daa021
RR
110#endif
111
761876c8 112#define TUN_HEADROOM 256
7df13219 113#define TUN_RX_PAD (NET_IP_ALIGN + NET_SKB_PAD)
66ccbc9c 114
031f5e03
MT
115/* TUN device flags */
116
117/* IFF_ATTACH_QUEUE is never stored in device flags,
118 * overload it to mean fasync when stored there.
119 */
120#define TUN_FASYNC IFF_ATTACH_QUEUE
1cf8e410
MT
121/* High bits in flags field are unused. */
122#define TUN_VNET_LE 0x80000000
8b8e658b 123#define TUN_VNET_BE 0x40000000
031f5e03
MT
124
125#define TUN_FEATURES (IFF_NO_PI | IFF_ONE_QUEUE | IFF_VNET_HDR | \
90e33d45
PP
126 IFF_MULTI_QUEUE | IFF_NAPI | IFF_NAPI_FRAGS)
127
0690899b
MT
128#define GOODCOPY_LEN 128
129
f271b2cc
MK
130#define FLT_EXACT_COUNT 8
131struct tap_filter {
132 unsigned int count; /* Number of addrs. Zero means disabled */
133 u32 mask[2]; /* Mask of the hashed addrs */
134 unsigned char addr[FLT_EXACT_COUNT][ETH_ALEN];
135};
136
baf71c5c
PG
137/* MAX_TAP_QUEUES 256 is chosen to allow rx/tx queues to be equal
138 * to max number of VCPUs in guest. */
139#define MAX_TAP_QUEUES 256
b8732fb7 140#define MAX_TAP_FLOWS 4096
c8d68e6b 141
96442e42
JW
142#define TUN_FLOW_EXPIRE (3 * HZ)
143
608b9977
PA
144struct tun_pcpu_stats {
145 u64 rx_packets;
146 u64 rx_bytes;
147 u64 tx_packets;
148 u64 tx_bytes;
149 struct u64_stats_sync syncp;
150 u32 rx_dropped;
151 u32 tx_dropped;
152 u32 rx_frame_errors;
153};
154
54f968d6 155/* A tun_file connects an open character device to a tuntap netdevice. It
92d4ea6e 156 * also contains all socket related structures (except sock_fprog and tap_filter)
54f968d6
JW
157 * to serve as one transmit queue for tuntap device. The sock_fprog and
158 * tap_filter were kept in tun_struct since they were used for filtering for the
36fe8c09 159 * netdevice not for a specific queue (at least I didn't see the requirement for
54f968d6 160 * this).
6e914fc7
JW
161 *
162 * RCU usage:
36fe8c09 163 * The tun_file and tun_struct are loosely coupled, the pointer from one to the
6e914fc7 164 * other can only be read while rcu_read_lock or rtnl_lock is held.
54f968d6 165 */
631ab46b 166struct tun_file {
54f968d6
JW
167 struct sock sk;
168 struct socket socket;
169 struct socket_wq wq;
6e914fc7 170 struct tun_struct __rcu *tun;
54f968d6
JW
171 struct fasync_struct *fasync;
172 /* only used for fasnyc */
173 unsigned int flags;
fb7589a1
PE
174 union {
175 u16 queue_index;
176 unsigned int ifindex;
177 };
94317099 178 struct napi_struct napi;
aec72f33 179 bool napi_enabled;
90e33d45 180 struct mutex napi_mutex; /* Protects access to the above napi */
4008e97f
JW
181 struct list_head next;
182 struct tun_struct *detached;
5990a305 183 struct ptr_ring tx_ring;
8bf5c4ee 184 struct xdp_rxq_info xdp_rxq;
631ab46b
EB
185};
186
96442e42
JW
187struct tun_flow_entry {
188 struct hlist_node hash_link;
189 struct rcu_head rcu;
190 struct tun_struct *tun;
191
192 u32 rxhash;
9bc88939 193 u32 rps_rxhash;
96442e42
JW
194 int queue_index;
195 unsigned long updated;
196};
197
198#define TUN_NUM_FLOW_ENTRIES 1024
199
cd5681d7 200struct tun_prog {
96f84061
JW
201 struct rcu_head rcu;
202 struct bpf_prog *prog;
203};
204
54f968d6 205/* Since the socket were moved to tun_file, to preserve the behavior of persist
36fe8c09 206 * device, socket filter, sndbuf and vnet header size were restore when the
54f968d6
JW
207 * file were attached to a persist device.
208 */
14daa021 209struct tun_struct {
c8d68e6b
JW
210 struct tun_file __rcu *tfiles[MAX_TAP_QUEUES];
211 unsigned int numqueues;
f271b2cc 212 unsigned int flags;
0625c883
EB
213 kuid_t owner;
214 kgid_t group;
14daa021 215
14daa021 216 struct net_device *dev;
c8f44aff 217 netdev_features_t set_features;
88255375 218#define TUN_USER_FEATURES (NETIF_F_HW_CSUM|NETIF_F_TSO_ECN|NETIF_F_TSO| \
d591a1f3 219 NETIF_F_TSO6)
d9d52b51 220
eaea34b2 221 int align;
d9d52b51 222 int vnet_hdr_sz;
54f968d6
JW
223 int sndbuf;
224 struct tap_filter txflt;
225 struct sock_fprog fprog;
226 /* protected by rtnl lock */
227 bool filter_attached;
14daa021
RR
228#ifdef TUN_DEBUG
229 int debug;
1da177e4 230#endif
96442e42 231 spinlock_t lock;
96442e42
JW
232 struct hlist_head flows[TUN_NUM_FLOW_ENTRIES];
233 struct timer_list flow_gc_timer;
234 unsigned long ageing_time;
4008e97f
JW
235 unsigned int numdisabled;
236 struct list_head disabled;
5dbbaf2d 237 void *security;
b8732fb7 238 u32 flow_count;
5503fcec 239 u32 rx_batched;
608b9977 240 struct tun_pcpu_stats __percpu *pcpu_stats;
761876c8 241 struct bpf_prog __rcu *xdp_prog;
cd5681d7 242 struct tun_prog __rcu *steering_prog;
aff3d70a 243 struct tun_prog __rcu *filter_prog;
14daa021 244};
1da177e4 245
aff3d70a
JW
246struct veth {
247 __be16 h_vlan_proto;
248 __be16 h_vlan_TCI;
14daa021 249};
1da177e4 250
fc72d1d5
JW
251bool tun_is_xdp_buff(void *ptr)
252{
253 return (unsigned long)ptr & TUN_XDP_FLAG;
254}
255EXPORT_SYMBOL(tun_is_xdp_buff);
256
257void *tun_xdp_to_ptr(void *ptr)
258{
259 return (void *)((unsigned long)ptr | TUN_XDP_FLAG);
260}
261EXPORT_SYMBOL(tun_xdp_to_ptr);
262
263void *tun_ptr_to_xdp(void *ptr)
264{
265 return (void *)((unsigned long)ptr & ~TUN_XDP_FLAG);
266}
267EXPORT_SYMBOL(tun_ptr_to_xdp);
268
94317099
PP
269static int tun_napi_receive(struct napi_struct *napi, int budget)
270{
271 struct tun_file *tfile = container_of(napi, struct tun_file, napi);
272 struct sk_buff_head *queue = &tfile->sk.sk_write_queue;
273 struct sk_buff_head process_queue;
274 struct sk_buff *skb;
275 int received = 0;
276
277 __skb_queue_head_init(&process_queue);
278
279 spin_lock(&queue->lock);
280 skb_queue_splice_tail_init(queue, &process_queue);
281 spin_unlock(&queue->lock);
282
283 while (received < budget && (skb = __skb_dequeue(&process_queue))) {
284 napi_gro_receive(napi, skb);
285 ++received;
286 }
287
288 if (!skb_queue_empty(&process_queue)) {
289 spin_lock(&queue->lock);
290 skb_queue_splice(&process_queue, queue);
291 spin_unlock(&queue->lock);
292 }
293
294 return received;
295}
296
297static int tun_napi_poll(struct napi_struct *napi, int budget)
298{
299 unsigned int received;
300
301 received = tun_napi_receive(napi, budget);
302
303 if (received < budget)
304 napi_complete_done(napi, received);
305
306 return received;
307}
308
309static void tun_napi_init(struct tun_struct *tun, struct tun_file *tfile,
310 bool napi_en)
311{
aec72f33 312 tfile->napi_enabled = napi_en;
94317099
PP
313 if (napi_en) {
314 netif_napi_add(tun->dev, &tfile->napi, tun_napi_poll,
315 NAPI_POLL_WEIGHT);
316 napi_enable(&tfile->napi);
90e33d45 317 mutex_init(&tfile->napi_mutex);
94317099
PP
318 }
319}
320
321static void tun_napi_disable(struct tun_struct *tun, struct tun_file *tfile)
322{
aec72f33 323 if (tfile->napi_enabled)
94317099
PP
324 napi_disable(&tfile->napi);
325}
326
327static void tun_napi_del(struct tun_struct *tun, struct tun_file *tfile)
328{
aec72f33 329 if (tfile->napi_enabled)
94317099
PP
330 netif_napi_del(&tfile->napi);
331}
332
90e33d45
PP
333static bool tun_napi_frags_enabled(const struct tun_struct *tun)
334{
335 return READ_ONCE(tun->flags) & IFF_NAPI_FRAGS;
336}
337
8b8e658b
GK
338#ifdef CONFIG_TUN_VNET_CROSS_LE
339static inline bool tun_legacy_is_little_endian(struct tun_struct *tun)
340{
341 return tun->flags & TUN_VNET_BE ? false :
342 virtio_legacy_is_little_endian();
343}
344
345static long tun_get_vnet_be(struct tun_struct *tun, int __user *argp)
346{
347 int be = !!(tun->flags & TUN_VNET_BE);
348
349 if (put_user(be, argp))
350 return -EFAULT;
351
352 return 0;
353}
354
355static long tun_set_vnet_be(struct tun_struct *tun, int __user *argp)
356{
357 int be;
358
359 if (get_user(be, argp))
360 return -EFAULT;
361
362 if (be)
363 tun->flags |= TUN_VNET_BE;
364 else
365 tun->flags &= ~TUN_VNET_BE;
366
367 return 0;
368}
369#else
370static inline bool tun_legacy_is_little_endian(struct tun_struct *tun)
371{
372 return virtio_legacy_is_little_endian();
373}
374
375static long tun_get_vnet_be(struct tun_struct *tun, int __user *argp)
376{
377 return -EINVAL;
378}
379
380static long tun_set_vnet_be(struct tun_struct *tun, int __user *argp)
381{
382 return -EINVAL;
383}
384#endif /* CONFIG_TUN_VNET_CROSS_LE */
385
25bd55bb
GK
386static inline bool tun_is_little_endian(struct tun_struct *tun)
387{
7d824109 388 return tun->flags & TUN_VNET_LE ||
8b8e658b 389 tun_legacy_is_little_endian(tun);
25bd55bb
GK
390}
391
56f0dcc5
MT
392static inline u16 tun16_to_cpu(struct tun_struct *tun, __virtio16 val)
393{
25bd55bb 394 return __virtio16_to_cpu(tun_is_little_endian(tun), val);
56f0dcc5
MT
395}
396
397static inline __virtio16 cpu_to_tun16(struct tun_struct *tun, u16 val)
398{
25bd55bb 399 return __cpu_to_virtio16(tun_is_little_endian(tun), val);
56f0dcc5
MT
400}
401
96442e42
JW
402static inline u32 tun_hashfn(u32 rxhash)
403{
404 return rxhash & 0x3ff;
405}
406
407static struct tun_flow_entry *tun_flow_find(struct hlist_head *head, u32 rxhash)
408{
409 struct tun_flow_entry *e;
96442e42 410
b67bfe0d 411 hlist_for_each_entry_rcu(e, head, hash_link) {
96442e42
JW
412 if (e->rxhash == rxhash)
413 return e;
414 }
415 return NULL;
416}
417
418static struct tun_flow_entry *tun_flow_create(struct tun_struct *tun,
419 struct hlist_head *head,
420 u32 rxhash, u16 queue_index)
421{
9fdc6bef
ED
422 struct tun_flow_entry *e = kmalloc(sizeof(*e), GFP_ATOMIC);
423
96442e42
JW
424 if (e) {
425 tun_debug(KERN_INFO, tun, "create flow: hash %u index %u\n",
426 rxhash, queue_index);
427 e->updated = jiffies;
428 e->rxhash = rxhash;
9bc88939 429 e->rps_rxhash = 0;
96442e42
JW
430 e->queue_index = queue_index;
431 e->tun = tun;
432 hlist_add_head_rcu(&e->hash_link, head);
b8732fb7 433 ++tun->flow_count;
96442e42
JW
434 }
435 return e;
436}
437
96442e42
JW
438static void tun_flow_delete(struct tun_struct *tun, struct tun_flow_entry *e)
439{
440 tun_debug(KERN_INFO, tun, "delete flow: hash %u index %u\n",
441 e->rxhash, e->queue_index);
442 hlist_del_rcu(&e->hash_link);
9fdc6bef 443 kfree_rcu(e, rcu);
b8732fb7 444 --tun->flow_count;
96442e42
JW
445}
446
447static void tun_flow_flush(struct tun_struct *tun)
448{
449 int i;
450
451 spin_lock_bh(&tun->lock);
452 for (i = 0; i < TUN_NUM_FLOW_ENTRIES; i++) {
453 struct tun_flow_entry *e;
b67bfe0d 454 struct hlist_node *n;
96442e42 455
b67bfe0d 456 hlist_for_each_entry_safe(e, n, &tun->flows[i], hash_link)
96442e42
JW
457 tun_flow_delete(tun, e);
458 }
459 spin_unlock_bh(&tun->lock);
460}
461
462static void tun_flow_delete_by_queue(struct tun_struct *tun, u16 queue_index)
463{
464 int i;
465
466 spin_lock_bh(&tun->lock);
467 for (i = 0; i < TUN_NUM_FLOW_ENTRIES; i++) {
468 struct tun_flow_entry *e;
b67bfe0d 469 struct hlist_node *n;
96442e42 470
b67bfe0d 471 hlist_for_each_entry_safe(e, n, &tun->flows[i], hash_link) {
96442e42
JW
472 if (e->queue_index == queue_index)
473 tun_flow_delete(tun, e);
474 }
475 }
476 spin_unlock_bh(&tun->lock);
477}
478
e99e88a9 479static void tun_flow_cleanup(struct timer_list *t)
96442e42 480{
e99e88a9 481 struct tun_struct *tun = from_timer(tun, t, flow_gc_timer);
96442e42
JW
482 unsigned long delay = tun->ageing_time;
483 unsigned long next_timer = jiffies + delay;
484 unsigned long count = 0;
485 int i;
486
487 tun_debug(KERN_INFO, tun, "tun_flow_cleanup\n");
488
7dbfb4ef 489 spin_lock(&tun->lock);
96442e42
JW
490 for (i = 0; i < TUN_NUM_FLOW_ENTRIES; i++) {
491 struct tun_flow_entry *e;
b67bfe0d 492 struct hlist_node *n;
96442e42 493
b67bfe0d 494 hlist_for_each_entry_safe(e, n, &tun->flows[i], hash_link) {
96442e42 495 unsigned long this_timer;
81d98fa4 496
96442e42 497 this_timer = e->updated + delay;
81d98fa4 498 if (time_before_eq(this_timer, jiffies)) {
96442e42 499 tun_flow_delete(tun, e);
81d98fa4
ED
500 continue;
501 }
502 count++;
503 if (time_before(this_timer, next_timer))
96442e42
JW
504 next_timer = this_timer;
505 }
506 }
507
508 if (count)
509 mod_timer(&tun->flow_gc_timer, round_jiffies_up(next_timer));
7dbfb4ef 510 spin_unlock(&tun->lock);
96442e42
JW
511}
512
49974420 513static void tun_flow_update(struct tun_struct *tun, u32 rxhash,
9e85722d 514 struct tun_file *tfile)
96442e42
JW
515{
516 struct hlist_head *head;
517 struct tun_flow_entry *e;
518 unsigned long delay = tun->ageing_time;
9e85722d 519 u16 queue_index = tfile->queue_index;
96442e42
JW
520
521 if (!rxhash)
522 return;
523 else
524 head = &tun->flows[tun_hashfn(rxhash)];
525
526 rcu_read_lock();
527
9e85722d
JW
528 /* We may get a very small possibility of OOO during switching, not
529 * worth to optimize.*/
530 if (tun->numqueues == 1 || tfile->detached)
96442e42
JW
531 goto unlock;
532
533 e = tun_flow_find(head, rxhash);
534 if (likely(e)) {
535 /* TODO: keep queueing to old queue until it's empty? */
536 e->queue_index = queue_index;
537 e->updated = jiffies;
9bc88939 538 sock_rps_record_flow_hash(e->rps_rxhash);
96442e42
JW
539 } else {
540 spin_lock_bh(&tun->lock);
b8732fb7
JW
541 if (!tun_flow_find(head, rxhash) &&
542 tun->flow_count < MAX_TAP_FLOWS)
96442e42
JW
543 tun_flow_create(tun, head, rxhash, queue_index);
544
545 if (!timer_pending(&tun->flow_gc_timer))
546 mod_timer(&tun->flow_gc_timer,
547 round_jiffies_up(jiffies + delay));
548 spin_unlock_bh(&tun->lock);
549 }
550
551unlock:
552 rcu_read_unlock();
553}
554
9bc88939
TH
555/**
556 * Save the hash received in the stack receive path and update the
557 * flow_hash table accordingly.
558 */
559static inline void tun_flow_save_rps_rxhash(struct tun_flow_entry *e, u32 hash)
560{
567e4b79 561 if (unlikely(e->rps_rxhash != hash))
9bc88939 562 e->rps_rxhash = hash;
9bc88939
TH
563}
564
c8d68e6b 565/* We try to identify a flow through its rxhash first. The reason that
92d4ea6e 566 * we do not check rxq no. is because some cards(e.g 82599), chooses
c8d68e6b
JW
567 * the rxq based on the txq where the last packet of the flow comes. As
568 * the userspace application move between processors, we may get a
569 * different rxq no. here. If we could not get rxhash, then we would
570 * hope the rxq no. may help here.
571 */
96f84061 572static u16 tun_automq_select_queue(struct tun_struct *tun, struct sk_buff *skb)
c8d68e6b 573{
96442e42 574 struct tun_flow_entry *e;
c8d68e6b
JW
575 u32 txq = 0;
576 u32 numqueues = 0;
577
6aa7de05 578 numqueues = READ_ONCE(tun->numqueues);
c8d68e6b 579
feec084a 580 txq = __skb_get_hash_symmetric(skb);
c8d68e6b 581 if (txq) {
96442e42 582 e = tun_flow_find(&tun->flows[tun_hashfn(txq)], txq);
9bc88939 583 if (e) {
9bc88939 584 tun_flow_save_rps_rxhash(e, txq);
fbe4d456 585 txq = e->queue_index;
9bc88939 586 } else
96442e42
JW
587 /* use multiply and shift instead of expensive divide */
588 txq = ((u64)txq * numqueues) >> 32;
c8d68e6b
JW
589 } else if (likely(skb_rx_queue_recorded(skb))) {
590 txq = skb_get_rx_queue(skb);
591 while (unlikely(txq >= numqueues))
592 txq -= numqueues;
593 }
594
c8d68e6b
JW
595 return txq;
596}
597
96f84061
JW
598static u16 tun_ebpf_select_queue(struct tun_struct *tun, struct sk_buff *skb)
599{
cd5681d7 600 struct tun_prog *prog;
96f84061
JW
601 u16 ret = 0;
602
603 prog = rcu_dereference(tun->steering_prog);
604 if (prog)
605 ret = bpf_prog_run_clear_cb(prog->prog, skb);
606
607 return ret % tun->numqueues;
608}
609
610static u16 tun_select_queue(struct net_device *dev, struct sk_buff *skb,
611 void *accel_priv, select_queue_fallback_t fallback)
612{
613 struct tun_struct *tun = netdev_priv(dev);
614 u16 ret;
615
616 rcu_read_lock();
617 if (rcu_dereference(tun->steering_prog))
618 ret = tun_ebpf_select_queue(tun, skb);
619 else
620 ret = tun_automq_select_queue(tun, skb);
621 rcu_read_unlock();
622
623 return ret;
624}
625
cde8b15f
JW
626static inline bool tun_not_capable(struct tun_struct *tun)
627{
628 const struct cred *cred = current_cred();
c260b772 629 struct net *net = dev_net(tun->dev);
cde8b15f
JW
630
631 return ((uid_valid(tun->owner) && !uid_eq(cred->euid, tun->owner)) ||
632 (gid_valid(tun->group) && !in_egroup_p(tun->group))) &&
c260b772 633 !ns_capable(net->user_ns, CAP_NET_ADMIN);
cde8b15f
JW
634}
635
c8d68e6b
JW
636static void tun_set_real_num_queues(struct tun_struct *tun)
637{
638 netif_set_real_num_tx_queues(tun->dev, tun->numqueues);
639 netif_set_real_num_rx_queues(tun->dev, tun->numqueues);
640}
641
4008e97f
JW
642static void tun_disable_queue(struct tun_struct *tun, struct tun_file *tfile)
643{
644 tfile->detached = tun;
645 list_add_tail(&tfile->next, &tun->disabled);
646 ++tun->numdisabled;
647}
648
d32649d1 649static struct tun_struct *tun_enable_queue(struct tun_file *tfile)
4008e97f
JW
650{
651 struct tun_struct *tun = tfile->detached;
652
653 tfile->detached = NULL;
654 list_del_init(&tfile->next);
655 --tun->numdisabled;
656 return tun;
657}
658
3a403076 659void tun_ptr_free(void *ptr)
fc72d1d5
JW
660{
661 if (!ptr)
662 return;
663 if (tun_is_xdp_buff(ptr)) {
664 struct xdp_buff *xdp = tun_ptr_to_xdp(ptr);
665
666 put_page(virt_to_head_page(xdp->data));
667 } else {
668 __skb_array_destroy_skb(ptr);
669 }
670}
3a403076 671EXPORT_SYMBOL_GPL(tun_ptr_free);
fc72d1d5 672
4bfb0513
JW
673static void tun_queue_purge(struct tun_file *tfile)
674{
fc72d1d5 675 void *ptr;
1576d986 676
fc72d1d5
JW
677 while ((ptr = ptr_ring_consume(&tfile->tx_ring)) != NULL)
678 tun_ptr_free(ptr);
1576d986 679
5503fcec 680 skb_queue_purge(&tfile->sk.sk_write_queue);
4bfb0513
JW
681 skb_queue_purge(&tfile->sk.sk_error_queue);
682}
683
c8d68e6b
JW
684static void __tun_detach(struct tun_file *tfile, bool clean)
685{
686 struct tun_file *ntfile;
687 struct tun_struct *tun;
c8d68e6b 688
b8deabd3
JW
689 tun = rtnl_dereference(tfile->tun);
690
94317099
PP
691 if (tun && clean) {
692 tun_napi_disable(tun, tfile);
693 tun_napi_del(tun, tfile);
694 }
695
9e85722d 696 if (tun && !tfile->detached) {
c8d68e6b
JW
697 u16 index = tfile->queue_index;
698 BUG_ON(index >= tun->numqueues);
c8d68e6b
JW
699
700 rcu_assign_pointer(tun->tfiles[index],
701 tun->tfiles[tun->numqueues - 1]);
b8deabd3 702 ntfile = rtnl_dereference(tun->tfiles[index]);
c8d68e6b
JW
703 ntfile->queue_index = index;
704
705 --tun->numqueues;
9e85722d 706 if (clean) {
c956674b 707 RCU_INIT_POINTER(tfile->tun, NULL);
4008e97f 708 sock_put(&tfile->sk);
9e85722d 709 } else
4008e97f 710 tun_disable_queue(tun, tfile);
c8d68e6b
JW
711
712 synchronize_net();
96442e42 713 tun_flow_delete_by_queue(tun, tun->numqueues + 1);
c8d68e6b 714 /* Drop read queue */
4bfb0513 715 tun_queue_purge(tfile);
c8d68e6b 716 tun_set_real_num_queues(tun);
dd38bd85 717 } else if (tfile->detached && clean) {
4008e97f 718 tun = tun_enable_queue(tfile);
dd38bd85
JW
719 sock_put(&tfile->sk);
720 }
c8d68e6b
JW
721
722 if (clean) {
af668b3c
MT
723 if (tun && tun->numqueues == 0 && tun->numdisabled == 0) {
724 netif_carrier_off(tun->dev);
725
40630b82 726 if (!(tun->flags & IFF_PERSIST) &&
af668b3c 727 tun->dev->reg_state == NETREG_REGISTERED)
4008e97f 728 unregister_netdevice(tun->dev);
af668b3c 729 }
b196d88a
JW
730 if (tun)
731 xdp_rxq_info_unreg(&tfile->xdp_rxq);
140e807d 732 sock_put(&tfile->sk);
c8d68e6b
JW
733 }
734}
735
736static void tun_detach(struct tun_file *tfile, bool clean)
737{
83c1f36f
SD
738 struct tun_struct *tun;
739 struct net_device *dev;
740
c8d68e6b 741 rtnl_lock();
83c1f36f
SD
742 tun = rtnl_dereference(tfile->tun);
743 dev = tun ? tun->dev : NULL;
c8d68e6b 744 __tun_detach(tfile, clean);
83c1f36f
SD
745 if (dev)
746 netdev_state_change(dev);
c8d68e6b
JW
747 rtnl_unlock();
748}
749
750static void tun_detach_all(struct net_device *dev)
751{
752 struct tun_struct *tun = netdev_priv(dev);
4008e97f 753 struct tun_file *tfile, *tmp;
c8d68e6b
JW
754 int i, n = tun->numqueues;
755
756 for (i = 0; i < n; i++) {
b8deabd3 757 tfile = rtnl_dereference(tun->tfiles[i]);
c8d68e6b 758 BUG_ON(!tfile);
94317099 759 tun_napi_disable(tun, tfile);
addf8fc4 760 tfile->socket.sk->sk_shutdown = RCV_SHUTDOWN;
9e641bdc 761 tfile->socket.sk->sk_data_ready(tfile->socket.sk);
c956674b 762 RCU_INIT_POINTER(tfile->tun, NULL);
c8d68e6b
JW
763 --tun->numqueues;
764 }
9e85722d 765 list_for_each_entry(tfile, &tun->disabled, next) {
addf8fc4 766 tfile->socket.sk->sk_shutdown = RCV_SHUTDOWN;
9e641bdc 767 tfile->socket.sk->sk_data_ready(tfile->socket.sk);
c956674b 768 RCU_INIT_POINTER(tfile->tun, NULL);
9e85722d 769 }
c8d68e6b
JW
770 BUG_ON(tun->numqueues != 0);
771
772 synchronize_net();
773 for (i = 0; i < n; i++) {
b8deabd3 774 tfile = rtnl_dereference(tun->tfiles[i]);
94317099 775 tun_napi_del(tun, tfile);
c8d68e6b 776 /* Drop read queue */
4bfb0513 777 tun_queue_purge(tfile);
b196d88a 778 xdp_rxq_info_unreg(&tfile->xdp_rxq);
c8d68e6b
JW
779 sock_put(&tfile->sk);
780 }
4008e97f
JW
781 list_for_each_entry_safe(tfile, tmp, &tun->disabled, next) {
782 tun_enable_queue(tfile);
4bfb0513 783 tun_queue_purge(tfile);
b196d88a 784 xdp_rxq_info_unreg(&tfile->xdp_rxq);
4008e97f
JW
785 sock_put(&tfile->sk);
786 }
787 BUG_ON(tun->numdisabled != 0);
dd38bd85 788
40630b82 789 if (tun->flags & IFF_PERSIST)
dd38bd85 790 module_put(THIS_MODULE);
c8d68e6b
JW
791}
792
94317099
PP
793static int tun_attach(struct tun_struct *tun, struct file *file,
794 bool skip_filter, bool napi)
a7385ba2 795{
631ab46b 796 struct tun_file *tfile = file->private_data;
1576d986 797 struct net_device *dev = tun->dev;
38231b7a 798 int err;
a7385ba2 799
5dbbaf2d
PM
800 err = security_tun_dev_attach(tfile->socket.sk, tun->security);
801 if (err < 0)
802 goto out;
803
38231b7a 804 err = -EINVAL;
9e85722d 805 if (rtnl_dereference(tfile->tun) && !tfile->detached)
38231b7a
EB
806 goto out;
807
808 err = -EBUSY;
40630b82 809 if (!(tun->flags & IFF_MULTI_QUEUE) && tun->numqueues == 1)
c8d68e6b
JW
810 goto out;
811
812 err = -E2BIG;
4008e97f
JW
813 if (!tfile->detached &&
814 tun->numqueues + tun->numdisabled == MAX_TAP_QUEUES)
38231b7a
EB
815 goto out;
816
817 err = 0;
54f968d6 818
92d4ea6e 819 /* Re-attach the filter to persist device */
849c9b6f 820 if (!skip_filter && (tun->filter_attached == true)) {
8ced425e
HFS
821 lock_sock(tfile->socket.sk);
822 err = sk_attach_filter(&tun->fprog, tfile->socket.sk);
823 release_sock(tfile->socket.sk);
54f968d6
JW
824 if (!err)
825 goto out;
826 }
1576d986
JW
827
828 if (!tfile->detached &&
b196d88a
JW
829 ptr_ring_resize(&tfile->tx_ring, dev->tx_queue_len,
830 GFP_KERNEL, tun_ptr_free)) {
1576d986
JW
831 err = -ENOMEM;
832 goto out;
833 }
834
c8d68e6b 835 tfile->queue_index = tun->numqueues;
addf8fc4 836 tfile->socket.sk->sk_shutdown &= ~RCV_SHUTDOWN;
8bf5c4ee
JDB
837
838 if (tfile->detached) {
839 /* Re-attach detached tfile, updating XDP queue_index */
840 WARN_ON(!xdp_rxq_info_is_reg(&tfile->xdp_rxq));
841
842 if (tfile->xdp_rxq.queue_index != tfile->queue_index)
843 tfile->xdp_rxq.queue_index = tfile->queue_index;
844 } else {
845 /* Setup XDP RX-queue info, for new tfile getting attached */
846 err = xdp_rxq_info_reg(&tfile->xdp_rxq,
847 tun->dev, tfile->queue_index);
848 if (err < 0)
849 goto out;
850 err = 0;
851 }
852
6e914fc7 853 rcu_assign_pointer(tfile->tun, tun);
c8d68e6b 854 rcu_assign_pointer(tun->tfiles[tun->numqueues], tfile);
c8d68e6b 855 tun->numqueues++;
a7385ba2 856
94317099 857 if (tfile->detached) {
4008e97f 858 tun_enable_queue(tfile);
94317099 859 } else {
4008e97f 860 sock_hold(&tfile->sk);
94317099
PP
861 tun_napi_init(tun, tfile, napi);
862 }
4008e97f 863
c8d68e6b 864 tun_set_real_num_queues(tun);
a7385ba2 865
c8d68e6b
JW
866 /* device is allowed to go away first, so no need to hold extra
867 * refcnt.
868 */
869
870out:
871 return err;
631ab46b
EB
872}
873
9484dc74 874static struct tun_struct *tun_get(struct tun_file *tfile)
631ab46b 875{
6e914fc7 876 struct tun_struct *tun;
c70f1829 877
6e914fc7
JW
878 rcu_read_lock();
879 tun = rcu_dereference(tfile->tun);
880 if (tun)
881 dev_hold(tun->dev);
882 rcu_read_unlock();
c70f1829
EB
883
884 return tun;
631ab46b
EB
885}
886
631ab46b
EB
887static void tun_put(struct tun_struct *tun)
888{
6e914fc7 889 dev_put(tun->dev);
631ab46b
EB
890}
891
6b8a66ee 892/* TAP filtering */
f271b2cc
MK
893static void addr_hash_set(u32 *mask, const u8 *addr)
894{
895 int n = ether_crc(ETH_ALEN, addr) >> 26;
896 mask[n >> 5] |= (1 << (n & 31));
897}
898
899static unsigned int addr_hash_test(const u32 *mask, const u8 *addr)
900{
901 int n = ether_crc(ETH_ALEN, addr) >> 26;
902 return mask[n >> 5] & (1 << (n & 31));
903}
904
905static int update_filter(struct tap_filter *filter, void __user *arg)
906{
907 struct { u8 u[ETH_ALEN]; } *addr;
908 struct tun_filter uf;
909 int err, alen, n, nexact;
910
911 if (copy_from_user(&uf, arg, sizeof(uf)))
912 return -EFAULT;
913
914 if (!uf.count) {
915 /* Disabled */
916 filter->count = 0;
917 return 0;
918 }
919
920 alen = ETH_ALEN * uf.count;
28e8190d
ME
921 addr = memdup_user(arg + sizeof(uf), alen);
922 if (IS_ERR(addr))
923 return PTR_ERR(addr);
f271b2cc
MK
924
925 /* The filter is updated without holding any locks. Which is
926 * perfectly safe. We disable it first and in the worst
927 * case we'll accept a few undesired packets. */
928 filter->count = 0;
929 wmb();
930
931 /* Use first set of addresses as an exact filter */
932 for (n = 0; n < uf.count && n < FLT_EXACT_COUNT; n++)
933 memcpy(filter->addr[n], addr[n].u, ETH_ALEN);
934
935 nexact = n;
936
cfbf84fc
AW
937 /* Remaining multicast addresses are hashed,
938 * unicast will leave the filter disabled. */
f271b2cc 939 memset(filter->mask, 0, sizeof(filter->mask));
cfbf84fc
AW
940 for (; n < uf.count; n++) {
941 if (!is_multicast_ether_addr(addr[n].u)) {
942 err = 0; /* no filter */
3b8d2a69 943 goto free_addr;
cfbf84fc 944 }
f271b2cc 945 addr_hash_set(filter->mask, addr[n].u);
cfbf84fc 946 }
f271b2cc
MK
947
948 /* For ALLMULTI just set the mask to all ones.
949 * This overrides the mask populated above. */
950 if ((uf.flags & TUN_FLT_ALLMULTI))
951 memset(filter->mask, ~0, sizeof(filter->mask));
952
953 /* Now enable the filter */
954 wmb();
955 filter->count = nexact;
956
957 /* Return the number of exact filters */
958 err = nexact;
3b8d2a69 959free_addr:
f271b2cc
MK
960 kfree(addr);
961 return err;
962}
963
964/* Returns: 0 - drop, !=0 - accept */
965static int run_filter(struct tap_filter *filter, const struct sk_buff *skb)
966{
967 /* Cannot use eth_hdr(skb) here because skb_mac_hdr() is incorrect
968 * at this point. */
969 struct ethhdr *eh = (struct ethhdr *) skb->data;
970 int i;
971
972 /* Exact match */
973 for (i = 0; i < filter->count; i++)
2e42e474 974 if (ether_addr_equal(eh->h_dest, filter->addr[i]))
f271b2cc
MK
975 return 1;
976
977 /* Inexact match (multicast only) */
978 if (is_multicast_ether_addr(eh->h_dest))
979 return addr_hash_test(filter->mask, eh->h_dest);
980
981 return 0;
982}
983
984/*
985 * Checks whether the packet is accepted or not.
986 * Returns: 0 - drop, !=0 - accept
987 */
988static int check_filter(struct tap_filter *filter, const struct sk_buff *skb)
989{
990 if (!filter->count)
991 return 1;
992
993 return run_filter(filter, skb);
994}
995
1da177e4
LT
996/* Network device part of the driver */
997
7282d491 998static const struct ethtool_ops tun_ethtool_ops;
1da177e4 999
c70f1829
EB
1000/* Net device detach from fd. */
1001static void tun_net_uninit(struct net_device *dev)
1002{
c8d68e6b 1003 tun_detach_all(dev);
c70f1829
EB
1004}
1005
1da177e4
LT
1006/* Net device open. */
1007static int tun_net_open(struct net_device *dev)
1008{
b20e2d54
HFS
1009 struct tun_struct *tun = netdev_priv(dev);
1010 int i;
1011
c8d68e6b 1012 netif_tx_start_all_queues(dev);
b20e2d54
HFS
1013
1014 for (i = 0; i < tun->numqueues; i++) {
1015 struct tun_file *tfile;
1016
1017 tfile = rtnl_dereference(tun->tfiles[i]);
1018 tfile->socket.sk->sk_write_space(tfile->socket.sk);
1019 }
1020
1da177e4
LT
1021 return 0;
1022}
1023
1024/* Net device close. */
1025static int tun_net_close(struct net_device *dev)
1026{
c8d68e6b 1027 netif_tx_stop_all_queues(dev);
1da177e4
LT
1028 return 0;
1029}
1030
1031/* Net device start xmit */
96f84061 1032static void tun_automq_xmit(struct tun_struct *tun, struct sk_buff *skb)
1da177e4 1033{
3df97ba8 1034#ifdef CONFIG_RPS
96f84061 1035 if (tun->numqueues == 1 && static_key_false(&rps_needed)) {
9bc88939
TH
1036 /* Select queue was not called for the skbuff, so we extract the
1037 * RPS hash and save it into the flow_table here.
1038 */
1039 __u32 rxhash;
1040
feec084a 1041 rxhash = __skb_get_hash_symmetric(skb);
9bc88939
TH
1042 if (rxhash) {
1043 struct tun_flow_entry *e;
1044 e = tun_flow_find(&tun->flows[tun_hashfn(rxhash)],
1045 rxhash);
1046 if (e)
1047 tun_flow_save_rps_rxhash(e, rxhash);
1048 }
1049 }
3df97ba8 1050#endif
96f84061
JW
1051}
1052
aff3d70a
JW
1053static unsigned int run_ebpf_filter(struct tun_struct *tun,
1054 struct sk_buff *skb,
1055 int len)
1056{
1057 struct tun_prog *prog = rcu_dereference(tun->filter_prog);
1058
1059 if (prog)
1060 len = bpf_prog_run_clear_cb(prog->prog, skb);
1061
1062 return len;
1063}
1064
96f84061
JW
1065/* Net device start xmit */
1066static netdev_tx_t tun_net_xmit(struct sk_buff *skb, struct net_device *dev)
1067{
1068 struct tun_struct *tun = netdev_priv(dev);
1069 int txq = skb->queue_mapping;
1070 struct tun_file *tfile;
aff3d70a 1071 int len = skb->len;
96f84061
JW
1072
1073 rcu_read_lock();
1074 tfile = rcu_dereference(tun->tfiles[txq]);
96f84061
JW
1075
1076 /* Drop packet if interface is not attached */
cc166427 1077 if (txq >= tun->numqueues)
96f84061
JW
1078 goto drop;
1079
1080 if (!rcu_dereference(tun->steering_prog))
1081 tun_automq_xmit(tun, skb);
9bc88939 1082
6e914fc7
JW
1083 tun_debug(KERN_INFO, tun, "tun_net_xmit %d\n", skb->len);
1084
c8d68e6b
JW
1085 BUG_ON(!tfile);
1086
f271b2cc
MK
1087 /* Drop if the filter does not like it.
1088 * This is a noop if the filter is disabled.
1089 * Filter can be enabled only for the TAP devices. */
1090 if (!check_filter(&tun->txflt, skb))
1091 goto drop;
1092
54f968d6
JW
1093 if (tfile->socket.sk->sk_filter &&
1094 sk_filter(tfile->socket.sk, skb))
99405162
MT
1095 goto drop;
1096
aff3d70a 1097 len = run_ebpf_filter(tun, skb, len);
81c89507 1098 if (len == 0 || pskb_trim(skb, len))
aff3d70a
JW
1099 goto drop;
1100
1f8b977a 1101 if (unlikely(skb_orphan_frags_rx(skb, GFP_ATOMIC)))
7bf66305
JW
1102 goto drop;
1103
7b996243 1104 skb_tx_timestamp(skb);
eda29772 1105
0110d6f2 1106 /* Orphan the skb - required as we might hang on to it
7bf66305
JW
1107 * for indefinite time.
1108 */
0110d6f2
MT
1109 skb_orphan(skb);
1110
f8af75f3
ED
1111 nf_reset(skb);
1112
5990a305 1113 if (ptr_ring_produce(&tfile->tx_ring, skb))
1576d986 1114 goto drop;
1da177e4
LT
1115
1116 /* Notify and wake up reader process */
54f968d6
JW
1117 if (tfile->flags & TUN_FASYNC)
1118 kill_fasync(&tfile->fasync, SIGIO, POLL_IN);
9e641bdc 1119 tfile->socket.sk->sk_data_ready(tfile->socket.sk);
6e914fc7
JW
1120
1121 rcu_read_unlock();
6ed10654 1122 return NETDEV_TX_OK;
1da177e4
LT
1123
1124drop:
608b9977 1125 this_cpu_inc(tun->pcpu_stats->tx_dropped);
149d36f7 1126 skb_tx_error(skb);
1da177e4 1127 kfree_skb(skb);
6e914fc7 1128 rcu_read_unlock();
baeababb 1129 return NET_XMIT_DROP;
1da177e4
LT
1130}
1131
f271b2cc 1132static void tun_net_mclist(struct net_device *dev)
1da177e4 1133{
f271b2cc
MK
1134 /*
1135 * This callback is supposed to deal with mc filter in
1136 * _rx_ path and has nothing to do with the _tx_ path.
1137 * In rx path we always accept everything userspace gives us.
1138 */
1da177e4
LT
1139}
1140
c8f44aff
MM
1141static netdev_features_t tun_net_fix_features(struct net_device *dev,
1142 netdev_features_t features)
88255375
MM
1143{
1144 struct tun_struct *tun = netdev_priv(dev);
1145
1146 return (features & tun->set_features) | (features & ~TUN_USER_FEATURES);
1147}
bebd097a
NH
1148#ifdef CONFIG_NET_POLL_CONTROLLER
1149static void tun_poll_controller(struct net_device *dev)
1150{
1151 /*
1152 * Tun only receives frames when:
1153 * 1) the char device endpoint gets data from user space
1154 * 2) the tun socket gets a sendmsg call from user space
94317099
PP
1155 * If NAPI is not enabled, since both of those are synchronous
1156 * operations, we are guaranteed never to have pending data when we poll
1157 * for it so there is nothing to do here but return.
bebd097a
NH
1158 * We need this though so netpoll recognizes us as an interface that
1159 * supports polling, which enables bridge devices in virt setups to
1160 * still use netconsole
94317099 1161 * If NAPI is enabled, however, we need to schedule polling for all
90e33d45
PP
1162 * queues unless we are using napi_gro_frags(), which we call in
1163 * process context and not in NAPI context.
bebd097a 1164 */
94317099
PP
1165 struct tun_struct *tun = netdev_priv(dev);
1166
1167 if (tun->flags & IFF_NAPI) {
1168 struct tun_file *tfile;
1169 int i;
1170
90e33d45
PP
1171 if (tun_napi_frags_enabled(tun))
1172 return;
1173
94317099
PP
1174 rcu_read_lock();
1175 for (i = 0; i < tun->numqueues; i++) {
1176 tfile = rcu_dereference(tun->tfiles[i]);
aec72f33
ED
1177 if (tfile->napi_enabled)
1178 napi_schedule(&tfile->napi);
94317099
PP
1179 }
1180 rcu_read_unlock();
1181 }
bebd097a
NH
1182 return;
1183}
1184#endif
eaea34b2
PA
1185
1186static void tun_set_headroom(struct net_device *dev, int new_hr)
1187{
1188 struct tun_struct *tun = netdev_priv(dev);
1189
1190 if (new_hr < NET_SKB_PAD)
1191 new_hr = NET_SKB_PAD;
1192
1193 tun->align = new_hr;
1194}
1195
bc1f4470 1196static void
608b9977
PA
1197tun_net_get_stats64(struct net_device *dev, struct rtnl_link_stats64 *stats)
1198{
1199 u32 rx_dropped = 0, tx_dropped = 0, rx_frame_errors = 0;
1200 struct tun_struct *tun = netdev_priv(dev);
1201 struct tun_pcpu_stats *p;
1202 int i;
1203
1204 for_each_possible_cpu(i) {
1205 u64 rxpackets, rxbytes, txpackets, txbytes;
1206 unsigned int start;
1207
1208 p = per_cpu_ptr(tun->pcpu_stats, i);
1209 do {
1210 start = u64_stats_fetch_begin(&p->syncp);
1211 rxpackets = p->rx_packets;
1212 rxbytes = p->rx_bytes;
1213 txpackets = p->tx_packets;
1214 txbytes = p->tx_bytes;
1215 } while (u64_stats_fetch_retry(&p->syncp, start));
1216
1217 stats->rx_packets += rxpackets;
1218 stats->rx_bytes += rxbytes;
1219 stats->tx_packets += txpackets;
1220 stats->tx_bytes += txbytes;
1221
1222 /* u32 counters */
1223 rx_dropped += p->rx_dropped;
1224 rx_frame_errors += p->rx_frame_errors;
1225 tx_dropped += p->tx_dropped;
1226 }
1227 stats->rx_dropped = rx_dropped;
1228 stats->rx_frame_errors = rx_frame_errors;
1229 stats->tx_dropped = tx_dropped;
608b9977
PA
1230}
1231
761876c8
JW
1232static int tun_xdp_set(struct net_device *dev, struct bpf_prog *prog,
1233 struct netlink_ext_ack *extack)
1234{
1235 struct tun_struct *tun = netdev_priv(dev);
1236 struct bpf_prog *old_prog;
1237
1238 old_prog = rtnl_dereference(tun->xdp_prog);
1239 rcu_assign_pointer(tun->xdp_prog, prog);
1240 if (old_prog)
1241 bpf_prog_put(old_prog);
1242
1243 return 0;
1244}
1245
1246static u32 tun_xdp_query(struct net_device *dev)
1247{
1248 struct tun_struct *tun = netdev_priv(dev);
1249 const struct bpf_prog *xdp_prog;
1250
1251 xdp_prog = rtnl_dereference(tun->xdp_prog);
1252 if (xdp_prog)
1253 return xdp_prog->aux->id;
1254
1255 return 0;
1256}
1257
f4e63525 1258static int tun_xdp(struct net_device *dev, struct netdev_bpf *xdp)
761876c8
JW
1259{
1260 switch (xdp->command) {
1261 case XDP_SETUP_PROG:
1262 return tun_xdp_set(dev, xdp->prog, xdp->extack);
1263 case XDP_QUERY_PROG:
1264 xdp->prog_id = tun_xdp_query(dev);
1265 xdp->prog_attached = !!xdp->prog_id;
1266 return 0;
1267 default:
1268 return -EINVAL;
1269 }
1270}
1271
758e43b7 1272static const struct net_device_ops tun_netdev_ops = {
c70f1829 1273 .ndo_uninit = tun_net_uninit,
758e43b7
SH
1274 .ndo_open = tun_net_open,
1275 .ndo_stop = tun_net_close,
00829823 1276 .ndo_start_xmit = tun_net_xmit,
88255375 1277 .ndo_fix_features = tun_net_fix_features,
c8d68e6b 1278 .ndo_select_queue = tun_select_queue,
bebd097a
NH
1279#ifdef CONFIG_NET_POLL_CONTROLLER
1280 .ndo_poll_controller = tun_poll_controller,
1281#endif
eaea34b2 1282 .ndo_set_rx_headroom = tun_set_headroom,
608b9977 1283 .ndo_get_stats64 = tun_net_get_stats64,
758e43b7
SH
1284};
1285
fc72d1d5
JW
1286static int tun_xdp_xmit(struct net_device *dev, struct xdp_buff *xdp)
1287{
1288 struct tun_struct *tun = netdev_priv(dev);
1289 struct xdp_buff *buff = xdp->data_hard_start;
1290 int headroom = xdp->data - xdp->data_hard_start;
1291 struct tun_file *tfile;
1292 u32 numqueues;
1293 int ret = 0;
1294
1295 /* Assure headroom is available and buff is properly aligned */
1296 if (unlikely(headroom < sizeof(*xdp) || tun_is_xdp_buff(xdp)))
1297 return -ENOSPC;
1298
1299 *buff = *xdp;
1300
1301 rcu_read_lock();
1302
1303 numqueues = READ_ONCE(tun->numqueues);
1304 if (!numqueues) {
1305 ret = -ENOSPC;
1306 goto out;
1307 }
1308
1309 tfile = rcu_dereference(tun->tfiles[smp_processor_id() %
1310 numqueues]);
1311 /* Encode the XDP flag into lowest bit for consumer to differ
1312 * XDP buffer from sk_buff.
1313 */
1314 if (ptr_ring_produce(&tfile->tx_ring, tun_xdp_to_ptr(buff))) {
1315 this_cpu_inc(tun->pcpu_stats->tx_dropped);
1316 ret = -ENOSPC;
1317 }
1318
1319out:
1320 rcu_read_unlock();
1321 return ret;
1322}
1323
1324static void tun_xdp_flush(struct net_device *dev)
1325{
1326 struct tun_struct *tun = netdev_priv(dev);
1327 struct tun_file *tfile;
1328 u32 numqueues;
1329
1330 rcu_read_lock();
1331
1332 numqueues = READ_ONCE(tun->numqueues);
1333 if (!numqueues)
1334 goto out;
1335
1336 tfile = rcu_dereference(tun->tfiles[smp_processor_id() %
1337 numqueues]);
1338 /* Notify and wake up reader process */
1339 if (tfile->flags & TUN_FASYNC)
1340 kill_fasync(&tfile->fasync, SIGIO, POLL_IN);
1341 tfile->socket.sk->sk_data_ready(tfile->socket.sk);
1342
1343out:
1344 rcu_read_unlock();
1345}
1346
758e43b7 1347static const struct net_device_ops tap_netdev_ops = {
c70f1829 1348 .ndo_uninit = tun_net_uninit,
758e43b7
SH
1349 .ndo_open = tun_net_open,
1350 .ndo_stop = tun_net_close,
00829823 1351 .ndo_start_xmit = tun_net_xmit,
88255375 1352 .ndo_fix_features = tun_net_fix_features,
afc4b13d 1353 .ndo_set_rx_mode = tun_net_mclist,
758e43b7
SH
1354 .ndo_set_mac_address = eth_mac_addr,
1355 .ndo_validate_addr = eth_validate_addr,
c8d68e6b 1356 .ndo_select_queue = tun_select_queue,
bebd097a
NH
1357#ifdef CONFIG_NET_POLL_CONTROLLER
1358 .ndo_poll_controller = tun_poll_controller,
1359#endif
5e52796a 1360 .ndo_features_check = passthru_features_check,
eaea34b2 1361 .ndo_set_rx_headroom = tun_set_headroom,
608b9977 1362 .ndo_get_stats64 = tun_net_get_stats64,
f4e63525 1363 .ndo_bpf = tun_xdp,
fc72d1d5
JW
1364 .ndo_xdp_xmit = tun_xdp_xmit,
1365 .ndo_xdp_flush = tun_xdp_flush,
758e43b7
SH
1366};
1367
944a1376 1368static void tun_flow_init(struct tun_struct *tun)
96442e42
JW
1369{
1370 int i;
1371
96442e42
JW
1372 for (i = 0; i < TUN_NUM_FLOW_ENTRIES; i++)
1373 INIT_HLIST_HEAD(&tun->flows[i]);
1374
1375 tun->ageing_time = TUN_FLOW_EXPIRE;
e99e88a9
KC
1376 timer_setup(&tun->flow_gc_timer, tun_flow_cleanup, 0);
1377 mod_timer(&tun->flow_gc_timer,
1378 round_jiffies_up(jiffies + tun->ageing_time));
96442e42
JW
1379}
1380
1381static void tun_flow_uninit(struct tun_struct *tun)
1382{
1383 del_timer_sync(&tun->flow_gc_timer);
1384 tun_flow_flush(tun);
96442e42
JW
1385}
1386
91572088
JW
1387#define MIN_MTU 68
1388#define MAX_MTU 65535
1389
1da177e4
LT
1390/* Initialize net device. */
1391static void tun_net_init(struct net_device *dev)
1392{
1393 struct tun_struct *tun = netdev_priv(dev);
6aa20a22 1394
1da177e4 1395 switch (tun->flags & TUN_TYPE_MASK) {
40630b82 1396 case IFF_TUN:
758e43b7
SH
1397 dev->netdev_ops = &tun_netdev_ops;
1398
1da177e4
LT
1399 /* Point-to-Point TUN Device */
1400 dev->hard_header_len = 0;
1401 dev->addr_len = 0;
1402 dev->mtu = 1500;
1403
1404 /* Zero header length */
6aa20a22 1405 dev->type = ARPHRD_NONE;
1da177e4 1406 dev->flags = IFF_POINTOPOINT | IFF_NOARP | IFF_MULTICAST;
1da177e4
LT
1407 break;
1408
40630b82 1409 case IFF_TAP:
7a0a9608 1410 dev->netdev_ops = &tap_netdev_ops;
1da177e4 1411 /* Ethernet TAP Device */
1da177e4 1412 ether_setup(dev);
550fd08c 1413 dev->priv_flags &= ~IFF_TX_SKB_SHARING;
a676847b 1414 dev->priv_flags |= IFF_LIVE_ADDR_CHANGE;
36226a8d 1415
f2cedb63 1416 eth_hw_addr_random(dev);
36226a8d 1417
1da177e4
LT
1418 break;
1419 }
91572088
JW
1420
1421 dev->min_mtu = MIN_MTU;
1422 dev->max_mtu = MAX_MTU - dev->hard_header_len;
1da177e4
LT
1423}
1424
1425/* Character device part */
1426
1427/* Poll */
afc9a42b 1428static __poll_t tun_chr_poll(struct file *file, poll_table *wait)
6aa20a22 1429{
b2430de3 1430 struct tun_file *tfile = file->private_data;
9484dc74 1431 struct tun_struct *tun = tun_get(tfile);
3c8a9c63 1432 struct sock *sk;
afc9a42b 1433 __poll_t mask = 0;
1da177e4
LT
1434
1435 if (!tun)
a9a08845 1436 return EPOLLERR;
1da177e4 1437
54f968d6 1438 sk = tfile->socket.sk;
3c8a9c63 1439
6b8a66ee 1440 tun_debug(KERN_INFO, tun, "tun_chr_poll\n");
1da177e4 1441
9e641bdc 1442 poll_wait(file, sk_sleep(sk), wait);
6aa20a22 1443
5990a305 1444 if (!ptr_ring_empty(&tfile->tx_ring))
a9a08845 1445 mask |= EPOLLIN | EPOLLRDNORM;
1da177e4 1446
b20e2d54
HFS
1447 if (tun->dev->flags & IFF_UP &&
1448 (sock_writeable(sk) ||
1449 (!test_and_set_bit(SOCKWQ_ASYNC_NOSPACE, &sk->sk_socket->flags) &&
1450 sock_writeable(sk))))
a9a08845 1451 mask |= EPOLLOUT | EPOLLWRNORM;
33dccbb0 1452
c70f1829 1453 if (tun->dev->reg_state != NETREG_REGISTERED)
a9a08845 1454 mask = EPOLLERR;
c70f1829 1455
631ab46b 1456 tun_put(tun);
1da177e4
LT
1457 return mask;
1458}
1459
90e33d45
PP
1460static struct sk_buff *tun_napi_alloc_frags(struct tun_file *tfile,
1461 size_t len,
1462 const struct iov_iter *it)
1463{
1464 struct sk_buff *skb;
1465 size_t linear;
1466 int err;
1467 int i;
1468
1469 if (it->nr_segs > MAX_SKB_FRAGS + 1)
1470 return ERR_PTR(-ENOMEM);
1471
1472 local_bh_disable();
1473 skb = napi_get_frags(&tfile->napi);
1474 local_bh_enable();
1475 if (!skb)
1476 return ERR_PTR(-ENOMEM);
1477
1478 linear = iov_iter_single_seg_count(it);
1479 err = __skb_grow(skb, linear);
1480 if (err)
1481 goto free;
1482
1483 skb->len = len;
1484 skb->data_len = len - linear;
1485 skb->truesize += skb->data_len;
1486
1487 for (i = 1; i < it->nr_segs; i++) {
43a08e0f 1488 struct page_frag *pfrag = &current->task_frag;
90e33d45 1489 size_t fragsz = it->iov[i].iov_len;
90e33d45
PP
1490
1491 if (fragsz == 0 || fragsz > PAGE_SIZE) {
1492 err = -EINVAL;
1493 goto free;
1494 }
1495
43a08e0f 1496 if (!skb_page_frag_refill(fragsz, pfrag, GFP_KERNEL)) {
90e33d45
PP
1497 err = -ENOMEM;
1498 goto free;
1499 }
1500
43a08e0f
ED
1501 skb_fill_page_desc(skb, i - 1, pfrag->page,
1502 pfrag->offset, fragsz);
1503 page_ref_inc(pfrag->page);
1504 pfrag->offset += fragsz;
90e33d45
PP
1505 }
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
f42157cb
RR
1514/* 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). */
54f968d6 1516static struct sk_buff *tun_alloc_skb(struct tun_file *tfile,
6f7c156c 1517 size_t prepad, size_t len,
1518 size_t linear, int noblock)
f42157cb 1519{
54f968d6 1520 struct sock *sk = tfile->socket.sk;
f42157cb 1521 struct sk_buff *skb;
33dccbb0 1522 int err;
f42157cb
RR
1523
1524 /* Under a page? Don't bother with paged skb. */
0eca93bc 1525 if (prepad + len < PAGE_SIZE || !linear)
33dccbb0 1526 linear = len;
f42157cb 1527
33dccbb0 1528 skb = sock_alloc_send_pskb(sk, prepad + linear, len - linear, noblock,
28d64271 1529 &err, 0);
f42157cb 1530 if (!skb)
33dccbb0 1531 return ERR_PTR(err);
f42157cb
RR
1532
1533 skb_reserve(skb, prepad);
1534 skb_put(skb, linear);
33dccbb0
HX
1535 skb->data_len = len - linear;
1536 skb->len += len - linear;
f42157cb
RR
1537
1538 return skb;
1539}
1540
5503fcec
JW
1541static 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();
1551 netif_receive_skb(skb);
1552 local_bh_enable();
1553 return;
1554 }
1555
1556 spin_lock(&queue->lock);
1557 if (!more || skb_queue_len(queue) == rx_batched) {
1558 __skb_queue_head_init(&process_queue);
1559 skb_queue_splice_tail_init(queue, &process_queue);
1560 rcv = true;
1561 } else {
1562 __skb_queue_tail(queue, skb);
1563 }
1564 spin_unlock(&queue->lock);
1565
1566 if (rcv) {
1567 struct sk_buff *nskb;
1568
1569 local_bh_disable();
1570 while ((nskb = __skb_dequeue(&process_queue)))
1571 netif_receive_skb(nskb);
1572 netif_receive_skb(skb);
1573 local_bh_enable();
1574 }
1575}
1576
66ccbc9c
JW
1577static bool tun_can_build_skb(struct tun_struct *tun, struct tun_file *tfile,
1578 int len, int noblock, bool zerocopy)
1579{
1580 if ((tun->flags & TUN_TYPE_MASK) != IFF_TAP)
1581 return false;
1582
1583 if (tfile->socket.sk->sk_sndbuf != INT_MAX)
1584 return false;
1585
1586 if (!noblock)
1587 return false;
1588
1589 if (zerocopy)
1590 return false;
1591
1592 if (SKB_DATA_ALIGN(len + TUN_RX_PAD) +
1593 SKB_DATA_ALIGN(sizeof(struct skb_shared_info)) > PAGE_SIZE)
1594 return false;
1595
1596 return true;
1597}
1598
761876c8
JW
1599static struct sk_buff *tun_build_skb(struct tun_struct *tun,
1600 struct tun_file *tfile,
66ccbc9c 1601 struct iov_iter *from,
761876c8 1602 struct virtio_net_hdr *hdr,
1cfe6e93 1603 int len, int *skb_xdp)
66ccbc9c 1604{
0bbd7dad 1605 struct page_frag *alloc_frag = &current->task_frag;
66ccbc9c 1606 struct sk_buff *skb;
761876c8 1607 struct bpf_prog *xdp_prog;
7df13219 1608 int buflen = SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
761876c8 1609 unsigned int delta = 0;
66ccbc9c
JW
1610 char *buf;
1611 size_t copied;
7df13219
JW
1612 int err, pad = TUN_RX_PAD;
1613
1614 rcu_read_lock();
1615 xdp_prog = rcu_dereference(tun->xdp_prog);
1616 if (xdp_prog)
1617 pad += TUN_HEADROOM;
1618 buflen += SKB_DATA_ALIGN(len + pad);
1619 rcu_read_unlock();
66ccbc9c 1620
63b9ab65 1621 alloc_frag->offset = ALIGN((u64)alloc_frag->offset, SMP_CACHE_BYTES);
66ccbc9c
JW
1622 if (unlikely(!skb_page_frag_refill(buflen, alloc_frag, GFP_KERNEL)))
1623 return ERR_PTR(-ENOMEM);
1624
1625 buf = (char *)page_address(alloc_frag->page) + alloc_frag->offset;
1626 copied = copy_page_from_iter(alloc_frag->page,
7df13219 1627 alloc_frag->offset + pad,
66ccbc9c
JW
1628 len, from);
1629 if (copied != len)
1630 return ERR_PTR(-EFAULT);
1631
7df13219
JW
1632 /* There's a small window that XDP may be set after the check
1633 * of xdp_prog above, this should be rare and for simplicity
1634 * we do XDP on skb in case the headroom is not enough.
1635 */
1636 if (hdr->gso_type || !xdp_prog)
1cfe6e93 1637 *skb_xdp = 1;
761876c8 1638 else
1cfe6e93 1639 *skb_xdp = 0;
761876c8 1640
23e43f07 1641 preempt_disable();
761876c8
JW
1642 rcu_read_lock();
1643 xdp_prog = rcu_dereference(tun->xdp_prog);
1cfe6e93 1644 if (xdp_prog && !*skb_xdp) {
761876c8
JW
1645 struct xdp_buff xdp;
1646 void *orig_data;
1647 u32 act;
1648
1649 xdp.data_hard_start = buf;
7df13219 1650 xdp.data = buf + pad;
de8f3a83 1651 xdp_set_data_meta_invalid(&xdp);
761876c8 1652 xdp.data_end = xdp.data + len;
8bf5c4ee 1653 xdp.rxq = &tfile->xdp_rxq;
761876c8
JW
1654 orig_data = xdp.data;
1655 act = bpf_prog_run_xdp(xdp_prog, &xdp);
1656
1657 switch (act) {
1658 case XDP_REDIRECT:
1659 get_page(alloc_frag->page);
1660 alloc_frag->offset += buflen;
1661 err = xdp_do_redirect(tun->dev, &xdp, xdp_prog);
1bb4f2e8 1662 xdp_do_flush_map();
761876c8
JW
1663 if (err)
1664 goto err_redirect;
654d5738 1665 rcu_read_unlock();
23e43f07 1666 preempt_enable();
761876c8
JW
1667 return NULL;
1668 case XDP_TX:
59655a5b
JW
1669 get_page(alloc_frag->page);
1670 alloc_frag->offset += buflen;
1671 if (tun_xdp_xmit(tun->dev, &xdp))
1672 goto err_redirect;
1673 tun_xdp_flush(tun->dev);
1674 rcu_read_unlock();
1675 preempt_enable();
1676 return NULL;
761876c8
JW
1677 case XDP_PASS:
1678 delta = orig_data - xdp.data;
1679 break;
1680 default:
1681 bpf_warn_invalid_xdp_action(act);
1682 /* fall through */
1683 case XDP_ABORTED:
1684 trace_xdp_exception(tun->dev, xdp_prog, act);
1685 /* fall through */
1686 case XDP_DROP:
1687 goto err_xdp;
1688 }
1689 }
1690
66ccbc9c 1691 skb = build_skb(buf, buflen);
761876c8
JW
1692 if (!skb) {
1693 rcu_read_unlock();
23e43f07 1694 preempt_enable();
66ccbc9c 1695 return ERR_PTR(-ENOMEM);
761876c8 1696 }
66ccbc9c 1697
7df13219 1698 skb_reserve(skb, pad - delta);
761876c8 1699 skb_put(skb, len + delta);
66ccbc9c
JW
1700 get_page(alloc_frag->page);
1701 alloc_frag->offset += buflen;
1702
761876c8 1703 rcu_read_unlock();
23e43f07 1704 preempt_enable();
761876c8 1705
66ccbc9c 1706 return skb;
761876c8
JW
1707
1708err_redirect:
1709 put_page(alloc_frag->page);
1710err_xdp:
1711 rcu_read_unlock();
23e43f07 1712 preempt_enable();
761876c8
JW
1713 this_cpu_inc(tun->pcpu_stats->rx_dropped);
1714 return NULL;
66ccbc9c
JW
1715}
1716
1da177e4 1717/* Get packet from user space buffer */
54f968d6 1718static ssize_t tun_get_user(struct tun_struct *tun, struct tun_file *tfile,
f5ff53b4 1719 void *msg_control, struct iov_iter *from,
5503fcec 1720 int noblock, bool more)
1da177e4 1721{
09640e63 1722 struct tun_pi pi = { 0, cpu_to_be16(ETH_P_IP) };
1da177e4 1723 struct sk_buff *skb;
f5ff53b4 1724 size_t total_len = iov_iter_count(from);
eaea34b2 1725 size_t len = total_len, align = tun->align, linear;
f43798c2 1726 struct virtio_net_hdr gso = { 0 };
608b9977 1727 struct tun_pcpu_stats *stats;
96f8d9ec 1728 int good_linear;
0690899b
MT
1729 int copylen;
1730 bool zerocopy = false;
1731 int err;
96f84061 1732 u32 rxhash = 0;
1cfe6e93 1733 int skb_xdp = 1;
90e33d45 1734 bool frags = tun_napi_frags_enabled(tun);
1da177e4 1735
1bd4978a
ED
1736 if (!(tun->dev->flags & IFF_UP))
1737 return -EIO;
1738
40630b82 1739 if (!(tun->flags & IFF_NO_PI)) {
15718ea0 1740 if (len < sizeof(pi))
1da177e4 1741 return -EINVAL;
15718ea0 1742 len -= sizeof(pi);
1da177e4 1743
cbbd26b8 1744 if (!copy_from_iter_full(&pi, sizeof(pi), from))
1da177e4
LT
1745 return -EFAULT;
1746 }
1747
40630b82 1748 if (tun->flags & IFF_VNET_HDR) {
e1edab87
WB
1749 int vnet_hdr_sz = READ_ONCE(tun->vnet_hdr_sz);
1750
1751 if (len < vnet_hdr_sz)
f43798c2 1752 return -EINVAL;
e1edab87 1753 len -= vnet_hdr_sz;
f43798c2 1754
cbbd26b8 1755 if (!copy_from_iter_full(&gso, sizeof(gso), from))
f43798c2
RR
1756 return -EFAULT;
1757
4909122f 1758 if ((gso.flags & VIRTIO_NET_HDR_F_NEEDS_CSUM) &&
56f0dcc5
MT
1759 tun16_to_cpu(tun, gso.csum_start) + tun16_to_cpu(tun, gso.csum_offset) + 2 > tun16_to_cpu(tun, gso.hdr_len))
1760 gso.hdr_len = cpu_to_tun16(tun, tun16_to_cpu(tun, gso.csum_start) + tun16_to_cpu(tun, gso.csum_offset) + 2);
4909122f 1761
56f0dcc5 1762 if (tun16_to_cpu(tun, gso.hdr_len) > len)
f43798c2 1763 return -EINVAL;
e1edab87 1764 iov_iter_advance(from, vnet_hdr_sz - sizeof(gso));
f43798c2
RR
1765 }
1766
40630b82 1767 if ((tun->flags & TUN_TYPE_MASK) == IFF_TAP) {
a504b86e 1768 align += NET_IP_ALIGN;
0eca93bc 1769 if (unlikely(len < ETH_HLEN ||
56f0dcc5 1770 (gso.hdr_len && tun16_to_cpu(tun, gso.hdr_len) < ETH_HLEN)))
e01bf1c8
RR
1771 return -EINVAL;
1772 }
6aa20a22 1773
96f8d9ec
JW
1774 good_linear = SKB_MAX_HEAD(align);
1775
88529176 1776 if (msg_control) {
f5ff53b4
AV
1777 struct iov_iter i = *from;
1778
88529176
JW
1779 /* There are 256 bytes to be copied in skb, so there is
1780 * enough room for skb expand head in case it is used.
0690899b
MT
1781 * The rest of the buffer is mapped from userspace.
1782 */
56f0dcc5 1783 copylen = gso.hdr_len ? tun16_to_cpu(tun, gso.hdr_len) : GOODCOPY_LEN;
96f8d9ec
JW
1784 if (copylen > good_linear)
1785 copylen = good_linear;
3dd5c330 1786 linear = copylen;
f5ff53b4
AV
1787 iov_iter_advance(&i, copylen);
1788 if (iov_iter_npages(&i, INT_MAX) <= MAX_SKB_FRAGS)
88529176
JW
1789 zerocopy = true;
1790 }
1791
90e33d45 1792 if (!frags && tun_can_build_skb(tun, tfile, len, noblock, zerocopy)) {
1cfe6e93
JW
1793 /* For the packet that is not easy to be processed
1794 * (e.g gso or jumbo packet), we will do it at after
1795 * skb was created with generic XDP routine.
1796 */
1797 skb = tun_build_skb(tun, tfile, from, &gso, len, &skb_xdp);
66ccbc9c 1798 if (IS_ERR(skb)) {
608b9977 1799 this_cpu_inc(tun->pcpu_stats->rx_dropped);
66ccbc9c
JW
1800 return PTR_ERR(skb);
1801 }
761876c8
JW
1802 if (!skb)
1803 return total_len;
66ccbc9c
JW
1804 } else {
1805 if (!zerocopy) {
1806 copylen = len;
1807 if (tun16_to_cpu(tun, gso.hdr_len) > good_linear)
1808 linear = good_linear;
1809 else
1810 linear = tun16_to_cpu(tun, gso.hdr_len);
1811 }
1da177e4 1812
90e33d45
PP
1813 if (frags) {
1814 mutex_lock(&tfile->napi_mutex);
1815 skb = tun_napi_alloc_frags(tfile, copylen, from);
1816 /* tun_napi_alloc_frags() enforces a layout for the skb.
1817 * If zerocopy is enabled, then this layout will be
1818 * overwritten by zerocopy_sg_from_iter().
1819 */
1820 zerocopy = false;
1821 } else {
1822 skb = tun_alloc_skb(tfile, align, copylen, linear,
1823 noblock);
1824 }
1825
66ccbc9c
JW
1826 if (IS_ERR(skb)) {
1827 if (PTR_ERR(skb) != -EAGAIN)
1828 this_cpu_inc(tun->pcpu_stats->rx_dropped);
90e33d45
PP
1829 if (frags)
1830 mutex_unlock(&tfile->napi_mutex);
66ccbc9c
JW
1831 return PTR_ERR(skb);
1832 }
0690899b 1833
66ccbc9c
JW
1834 if (zerocopy)
1835 err = zerocopy_sg_from_iter(skb, from);
1836 else
1837 err = skb_copy_datagram_from_iter(skb, 0, from, len);
1838
1839 if (err) {
1840 this_cpu_inc(tun->pcpu_stats->rx_dropped);
1841 kfree_skb(skb);
90e33d45
PP
1842 if (frags) {
1843 tfile->napi.skb = NULL;
1844 mutex_unlock(&tfile->napi_mutex);
1845 }
1846
66ccbc9c
JW
1847 return -EFAULT;
1848 }
8f22757e 1849 }
1da177e4 1850
3e9e40e7 1851 if (virtio_net_hdr_to_skb(skb, &gso, tun_is_little_endian(tun))) {
df10db98
PA
1852 this_cpu_inc(tun->pcpu_stats->rx_frame_errors);
1853 kfree_skb(skb);
90e33d45
PP
1854 if (frags) {
1855 tfile->napi.skb = NULL;
1856 mutex_unlock(&tfile->napi_mutex);
1857 }
1858
df10db98
PA
1859 return -EINVAL;
1860 }
1861
1da177e4 1862 switch (tun->flags & TUN_TYPE_MASK) {
40630b82
MT
1863 case IFF_TUN:
1864 if (tun->flags & IFF_NO_PI) {
2580c4c1
AP
1865 u8 ip_version = skb->len ? (skb->data[0] >> 4) : 0;
1866
1867 switch (ip_version) {
1868 case 4:
f09f7ee2
AWC
1869 pi.proto = htons(ETH_P_IP);
1870 break;
2580c4c1 1871 case 6:
f09f7ee2
AWC
1872 pi.proto = htons(ETH_P_IPV6);
1873 break;
1874 default:
608b9977 1875 this_cpu_inc(tun->pcpu_stats->rx_dropped);
f09f7ee2
AWC
1876 kfree_skb(skb);
1877 return -EINVAL;
1878 }
1879 }
1880
459a98ed 1881 skb_reset_mac_header(skb);
1da177e4 1882 skb->protocol = pi.proto;
4c13eb66 1883 skb->dev = tun->dev;
1da177e4 1884 break;
40630b82 1885 case IFF_TAP:
90e33d45
PP
1886 if (!frags)
1887 skb->protocol = eth_type_trans(skb, tun->dev);
1da177e4 1888 break;
6403eab1 1889 }
1da177e4 1890
0690899b
MT
1891 /* copy skb_ubuf_info for callback when skb has no error */
1892 if (zerocopy) {
1893 skb_shinfo(skb)->destructor_arg = msg_control;
1894 skb_shinfo(skb)->tx_flags |= SKBTX_DEV_ZEROCOPY;
c9af6db4 1895 skb_shinfo(skb)->tx_flags |= SKBTX_SHARED_FRAG;
af1cc7a2
JW
1896 } else if (msg_control) {
1897 struct ubuf_info *uarg = msg_control;
1898 uarg->callback(uarg, false);
0690899b
MT
1899 }
1900
72f65107 1901 skb_reset_network_header(skb);
40893fd0 1902 skb_probe_transport_header(skb, 0);
38502af7 1903
1cfe6e93 1904 if (skb_xdp) {
761876c8
JW
1905 struct bpf_prog *xdp_prog;
1906 int ret;
1907
1908 rcu_read_lock();
1909 xdp_prog = rcu_dereference(tun->xdp_prog);
1910 if (xdp_prog) {
1911 ret = do_xdp_generic(xdp_prog, skb);
1912 if (ret != XDP_PASS) {
1913 rcu_read_unlock();
1914 return total_len;
1915 }
1916 }
1917 rcu_read_unlock();
1918 }
1919
96f84061
JW
1920 rcu_read_lock();
1921 if (!rcu_dereference(tun->steering_prog))
1922 rxhash = __skb_get_hash_symmetric(skb);
1923 rcu_read_unlock();
94317099 1924
90e33d45
PP
1925 if (frags) {
1926 /* Exercise flow dissector code path. */
1927 u32 headlen = eth_get_headlen(skb->data, skb_headlen(skb));
1928
010f245b 1929 if (unlikely(headlen > skb_headlen(skb))) {
90e33d45
PP
1930 this_cpu_inc(tun->pcpu_stats->rx_dropped);
1931 napi_free_frags(&tfile->napi);
1932 mutex_unlock(&tfile->napi_mutex);
1933 WARN_ON(1);
1934 return -ENOMEM;
1935 }
1936
1937 local_bh_disable();
1938 napi_gro_frags(&tfile->napi);
1939 local_bh_enable();
1940 mutex_unlock(&tfile->napi_mutex);
aec72f33 1941 } else if (tfile->napi_enabled) {
94317099
PP
1942 struct sk_buff_head *queue = &tfile->sk.sk_write_queue;
1943 int queue_len;
1944
1945 spin_lock_bh(&queue->lock);
1946 __skb_queue_tail(queue, skb);
1947 queue_len = skb_queue_len(queue);
1948 spin_unlock(&queue->lock);
1949
1950 if (!more || queue_len > NAPI_POLL_WEIGHT)
1951 napi_schedule(&tfile->napi);
1952
1953 local_bh_enable();
1954 } else if (!IS_ENABLED(CONFIG_4KSTACKS)) {
1955 tun_rx_batched(tun, tfile, skb, more);
1956 } else {
1957 netif_rx_ni(skb);
1958 }
6aa20a22 1959
608b9977
PA
1960 stats = get_cpu_ptr(tun->pcpu_stats);
1961 u64_stats_update_begin(&stats->syncp);
1962 stats->rx_packets++;
1963 stats->rx_bytes += len;
1964 u64_stats_update_end(&stats->syncp);
1965 put_cpu_ptr(stats);
1da177e4 1966
96f84061
JW
1967 if (rxhash)
1968 tun_flow_update(tun, rxhash, tfile);
1969
0690899b 1970 return total_len;
6aa20a22 1971}
1da177e4 1972
f5ff53b4 1973static ssize_t tun_chr_write_iter(struct kiocb *iocb, struct iov_iter *from)
1da177e4 1974{
33dccbb0 1975 struct file *file = iocb->ki_filp;
54f968d6 1976 struct tun_file *tfile = file->private_data;
9484dc74 1977 struct tun_struct *tun = tun_get(tfile);
631ab46b 1978 ssize_t result;
1da177e4
LT
1979
1980 if (!tun)
1981 return -EBADFD;
1982
5503fcec
JW
1983 result = tun_get_user(tun, tfile, NULL, from,
1984 file->f_flags & O_NONBLOCK, false);
631ab46b
EB
1985
1986 tun_put(tun);
1987 return result;
1da177e4
LT
1988}
1989
fc72d1d5
JW
1990static ssize_t tun_put_user_xdp(struct tun_struct *tun,
1991 struct tun_file *tfile,
1992 struct xdp_buff *xdp,
1993 struct iov_iter *iter)
1994{
1995 int vnet_hdr_sz = 0;
1996 size_t size = xdp->data_end - xdp->data;
1997 struct tun_pcpu_stats *stats;
1998 size_t ret;
1999
2000 if (tun->flags & IFF_VNET_HDR) {
2001 struct virtio_net_hdr gso = { 0 };
2002
2003 vnet_hdr_sz = READ_ONCE(tun->vnet_hdr_sz);
2004 if (unlikely(iov_iter_count(iter) < vnet_hdr_sz))
2005 return -EINVAL;
2006 if (unlikely(copy_to_iter(&gso, sizeof(gso), iter) !=
2007 sizeof(gso)))
2008 return -EFAULT;
2009 iov_iter_advance(iter, vnet_hdr_sz - sizeof(gso));
2010 }
2011
2012 ret = copy_to_iter(xdp->data, size, iter) + vnet_hdr_sz;
2013
2014 stats = get_cpu_ptr(tun->pcpu_stats);
2015 u64_stats_update_begin(&stats->syncp);
2016 stats->tx_packets++;
2017 stats->tx_bytes += ret;
2018 u64_stats_update_end(&stats->syncp);
2019 put_cpu_ptr(tun->pcpu_stats);
2020
2021 return ret;
2022}
2023
1da177e4 2024/* Put packet to the user space buffer */
6f7c156c 2025static ssize_t tun_put_user(struct tun_struct *tun,
54f968d6 2026 struct tun_file *tfile,
6f7c156c 2027 struct sk_buff *skb,
e0b46d0e 2028 struct iov_iter *iter)
1da177e4
LT
2029{
2030 struct tun_pi pi = { 0, skb->protocol };
608b9977 2031 struct tun_pcpu_stats *stats;
e0b46d0e 2032 ssize_t total;
8c847d25 2033 int vlan_offset = 0;
a8f9bfdf 2034 int vlan_hlen = 0;
2eb783c4 2035 int vnet_hdr_sz = 0;
a8f9bfdf 2036
df8a39de 2037 if (skb_vlan_tag_present(skb))
a8f9bfdf 2038 vlan_hlen = VLAN_HLEN;
1da177e4 2039
40630b82 2040 if (tun->flags & IFF_VNET_HDR)
e1edab87 2041 vnet_hdr_sz = READ_ONCE(tun->vnet_hdr_sz);
1da177e4 2042
e0b46d0e
HX
2043 total = skb->len + vlan_hlen + vnet_hdr_sz;
2044
40630b82 2045 if (!(tun->flags & IFF_NO_PI)) {
e0b46d0e 2046 if (iov_iter_count(iter) < sizeof(pi))
1da177e4
LT
2047 return -EINVAL;
2048
e0b46d0e
HX
2049 total += sizeof(pi);
2050 if (iov_iter_count(iter) < total) {
1da177e4
LT
2051 /* Packet will be striped */
2052 pi.flags |= TUN_PKT_STRIP;
2053 }
6aa20a22 2054
e0b46d0e 2055 if (copy_to_iter(&pi, sizeof(pi), iter) != sizeof(pi))
1da177e4 2056 return -EFAULT;
6aa20a22 2057 }
1da177e4 2058
2eb783c4 2059 if (vnet_hdr_sz) {
9403cd7c 2060 struct virtio_net_hdr gso;
34166093 2061
e0b46d0e 2062 if (iov_iter_count(iter) < vnet_hdr_sz)
f43798c2
RR
2063 return -EINVAL;
2064
3e9e40e7 2065 if (virtio_net_hdr_from_skb(skb, &gso,
6391a448 2066 tun_is_little_endian(tun), true)) {
f43798c2 2067 struct skb_shared_info *sinfo = skb_shinfo(skb);
34166093
MR
2068 pr_err("unexpected GSO type: "
2069 "0x%x, gso_size %d, hdr_len %d\n",
2070 sinfo->gso_type, tun16_to_cpu(tun, gso.gso_size),
2071 tun16_to_cpu(tun, gso.hdr_len));
2072 print_hex_dump(KERN_ERR, "tun: ",
2073 DUMP_PREFIX_NONE,
2074 16, 1, skb->head,
2075 min((int)tun16_to_cpu(tun, gso.hdr_len), 64), true);
2076 WARN_ON_ONCE(1);
2077 return -EINVAL;
2078 }
f43798c2 2079
e0b46d0e 2080 if (copy_to_iter(&gso, sizeof(gso), iter) != sizeof(gso))
f43798c2 2081 return -EFAULT;
8c847d25
JW
2082
2083 iov_iter_advance(iter, vnet_hdr_sz - sizeof(gso));
f43798c2
RR
2084 }
2085
a8f9bfdf 2086 if (vlan_hlen) {
e0b46d0e 2087 int ret;
aff3d70a 2088 struct veth veth;
6680ec68
JW
2089
2090 veth.h_vlan_proto = skb->vlan_proto;
df8a39de 2091 veth.h_vlan_TCI = htons(skb_vlan_tag_get(skb));
6680ec68
JW
2092
2093 vlan_offset = offsetof(struct vlan_ethhdr, h_vlan_proto);
6680ec68 2094
e0b46d0e
HX
2095 ret = skb_copy_datagram_iter(skb, 0, iter, vlan_offset);
2096 if (ret || !iov_iter_count(iter))
6680ec68
JW
2097 goto done;
2098
e0b46d0e
HX
2099 ret = copy_to_iter(&veth, sizeof(veth), iter);
2100 if (ret != sizeof(veth) || !iov_iter_count(iter))
6680ec68
JW
2101 goto done;
2102 }
1da177e4 2103
e0b46d0e 2104 skb_copy_datagram_iter(skb, vlan_offset, iter, skb->len - vlan_offset);
1da177e4 2105
6680ec68 2106done:
608b9977
PA
2107 /* caller is in process context, */
2108 stats = get_cpu_ptr(tun->pcpu_stats);
2109 u64_stats_update_begin(&stats->syncp);
2110 stats->tx_packets++;
2111 stats->tx_bytes += skb->len + vlan_hlen;
2112 u64_stats_update_end(&stats->syncp);
2113 put_cpu_ptr(tun->pcpu_stats);
1da177e4
LT
2114
2115 return total;
2116}
2117
fc72d1d5 2118static void *tun_ring_recv(struct tun_file *tfile, int noblock, int *err)
1576d986
JW
2119{
2120 DECLARE_WAITQUEUE(wait, current);
fc72d1d5 2121 void *ptr = NULL;
f48cc6b2 2122 int error = 0;
1576d986 2123
fc72d1d5
JW
2124 ptr = ptr_ring_consume(&tfile->tx_ring);
2125 if (ptr)
1576d986
JW
2126 goto out;
2127 if (noblock) {
f48cc6b2 2128 error = -EAGAIN;
1576d986
JW
2129 goto out;
2130 }
2131
2132 add_wait_queue(&tfile->wq.wait, &wait);
2133 current->state = TASK_INTERRUPTIBLE;
2134
2135 while (1) {
fc72d1d5
JW
2136 ptr = ptr_ring_consume(&tfile->tx_ring);
2137 if (ptr)
1576d986
JW
2138 break;
2139 if (signal_pending(current)) {
f48cc6b2 2140 error = -ERESTARTSYS;
1576d986
JW
2141 break;
2142 }
2143 if (tfile->socket.sk->sk_shutdown & RCV_SHUTDOWN) {
f48cc6b2 2144 error = -EFAULT;
1576d986
JW
2145 break;
2146 }
2147
2148 schedule();
2149 }
2150
2151 current->state = TASK_RUNNING;
2152 remove_wait_queue(&tfile->wq.wait, &wait);
2153
2154out:
f48cc6b2 2155 *err = error;
fc72d1d5 2156 return ptr;
1576d986
JW
2157}
2158
54f968d6 2159static ssize_t tun_do_read(struct tun_struct *tun, struct tun_file *tfile,
9b067034 2160 struct iov_iter *to,
fc72d1d5 2161 int noblock, void *ptr)
1da177e4 2162{
9b067034 2163 ssize_t ret;
1576d986 2164 int err;
1da177e4 2165
3872baf6 2166 tun_debug(KERN_INFO, tun, "tun_do_read\n");
1da177e4 2167
c33ee15b 2168 if (!iov_iter_count(to)) {
fc72d1d5 2169 tun_ptr_free(ptr);
9b067034 2170 return 0;
c33ee15b 2171 }
1da177e4 2172
fc72d1d5 2173 if (!ptr) {
ac77cfd4 2174 /* Read frames from ring */
fc72d1d5
JW
2175 ptr = tun_ring_recv(tfile, noblock, &err);
2176 if (!ptr)
ac77cfd4
JW
2177 return err;
2178 }
e0b46d0e 2179
fc72d1d5
JW
2180 if (tun_is_xdp_buff(ptr)) {
2181 struct xdp_buff *xdp = tun_ptr_to_xdp(ptr);
2182
2183 ret = tun_put_user_xdp(tun, tfile, xdp, to);
2184 put_page(virt_to_head_page(xdp->data));
2185 } else {
2186 struct sk_buff *skb = ptr;
2187
2188 ret = tun_put_user(tun, tfile, skb, to);
2189 if (unlikely(ret < 0))
2190 kfree_skb(skb);
2191 else
2192 consume_skb(skb);
2193 }
1da177e4 2194
05c2828c
MT
2195 return ret;
2196}
2197
9b067034 2198static ssize_t tun_chr_read_iter(struct kiocb *iocb, struct iov_iter *to)
05c2828c
MT
2199{
2200 struct file *file = iocb->ki_filp;
2201 struct tun_file *tfile = file->private_data;
9484dc74 2202 struct tun_struct *tun = tun_get(tfile);
9b067034 2203 ssize_t len = iov_iter_count(to), ret;
05c2828c
MT
2204
2205 if (!tun)
2206 return -EBADFD;
ac77cfd4 2207 ret = tun_do_read(tun, tfile, to, file->f_flags & O_NONBLOCK, NULL);
42404c09 2208 ret = min_t(ssize_t, ret, len);
d0b7da8a
ZYW
2209 if (ret > 0)
2210 iocb->ki_pos = ret;
631ab46b 2211 tun_put(tun);
1da177e4
LT
2212 return ret;
2213}
2214
cd5681d7 2215static void tun_prog_free(struct rcu_head *rcu)
96f84061 2216{
cd5681d7 2217 struct tun_prog *prog = container_of(rcu, struct tun_prog, rcu);
96f84061
JW
2218
2219 bpf_prog_destroy(prog->prog);
2220 kfree(prog);
2221}
2222
9d6474e4
JW
2223static int __tun_set_ebpf(struct tun_struct *tun,
2224 struct tun_prog __rcu **prog_p,
cd5681d7 2225 struct bpf_prog *prog)
96f84061 2226{
cd5681d7 2227 struct tun_prog *old, *new = NULL;
96f84061
JW
2228
2229 if (prog) {
2230 new = kmalloc(sizeof(*new), GFP_KERNEL);
2231 if (!new)
2232 return -ENOMEM;
2233 new->prog = prog;
2234 }
2235
124da8f6 2236 spin_lock_bh(&tun->lock);
cd5681d7 2237 old = rcu_dereference_protected(*prog_p,
124da8f6 2238 lockdep_is_held(&tun->lock));
cd5681d7 2239 rcu_assign_pointer(*prog_p, new);
124da8f6 2240 spin_unlock_bh(&tun->lock);
96f84061
JW
2241
2242 if (old)
cd5681d7 2243 call_rcu(&old->rcu, tun_prog_free);
96f84061
JW
2244
2245 return 0;
2246}
2247
96442e42
JW
2248static void tun_free_netdev(struct net_device *dev)
2249{
2250 struct tun_struct *tun = netdev_priv(dev);
2251
4008e97f 2252 BUG_ON(!(list_empty(&tun->disabled)));
608b9977 2253 free_percpu(tun->pcpu_stats);
96442e42 2254 tun_flow_uninit(tun);
5dbbaf2d 2255 security_tun_dev_free_security(tun->security);
cd5681d7 2256 __tun_set_ebpf(tun, &tun->steering_prog, NULL);
aff3d70a 2257 __tun_set_ebpf(tun, &tun->filter_prog, NULL);
96442e42
JW
2258}
2259
1da177e4
LT
2260static void tun_setup(struct net_device *dev)
2261{
2262 struct tun_struct *tun = netdev_priv(dev);
2263
0625c883
EB
2264 tun->owner = INVALID_UID;
2265 tun->group = INVALID_GID;
1da177e4 2266
1da177e4 2267 dev->ethtool_ops = &tun_ethtool_ops;
cf124db5
DM
2268 dev->needs_free_netdev = true;
2269 dev->priv_destructor = tun_free_netdev;
016adb72
JW
2270 /* We prefer our own queue length */
2271 dev->tx_queue_len = TUN_READQ_SIZE;
1da177e4
LT
2272}
2273
f019a7a5
EB
2274/* Trivial set of netlink ops to allow deleting tun or tap
2275 * device with netlink.
2276 */
a8b8a889
MS
2277static int tun_validate(struct nlattr *tb[], struct nlattr *data[],
2278 struct netlink_ext_ack *extack)
f019a7a5
EB
2279{
2280 return -EINVAL;
2281}
2282
1ec010e7
SD
2283static size_t tun_get_size(const struct net_device *dev)
2284{
2285 BUILD_BUG_ON(sizeof(u32) != sizeof(uid_t));
2286 BUILD_BUG_ON(sizeof(u32) != sizeof(gid_t));
2287
2288 return nla_total_size(sizeof(uid_t)) + /* OWNER */
2289 nla_total_size(sizeof(gid_t)) + /* GROUP */
2290 nla_total_size(sizeof(u8)) + /* TYPE */
2291 nla_total_size(sizeof(u8)) + /* PI */
2292 nla_total_size(sizeof(u8)) + /* VNET_HDR */
2293 nla_total_size(sizeof(u8)) + /* PERSIST */
2294 nla_total_size(sizeof(u8)) + /* MULTI_QUEUE */
2295 nla_total_size(sizeof(u32)) + /* NUM_QUEUES */
2296 nla_total_size(sizeof(u32)) + /* NUM_DISABLED_QUEUES */
2297 0;
2298}
2299
2300static int tun_fill_info(struct sk_buff *skb, const struct net_device *dev)
2301{
2302 struct tun_struct *tun = netdev_priv(dev);
2303
2304 if (nla_put_u8(skb, IFLA_TUN_TYPE, tun->flags & TUN_TYPE_MASK))
2305 goto nla_put_failure;
2306 if (uid_valid(tun->owner) &&
2307 nla_put_u32(skb, IFLA_TUN_OWNER,
2308 from_kuid_munged(current_user_ns(), tun->owner)))
2309 goto nla_put_failure;
2310 if (gid_valid(tun->group) &&
2311 nla_put_u32(skb, IFLA_TUN_GROUP,
2312 from_kgid_munged(current_user_ns(), tun->group)))
2313 goto nla_put_failure;
2314 if (nla_put_u8(skb, IFLA_TUN_PI, !(tun->flags & IFF_NO_PI)))
2315 goto nla_put_failure;
2316 if (nla_put_u8(skb, IFLA_TUN_VNET_HDR, !!(tun->flags & IFF_VNET_HDR)))
2317 goto nla_put_failure;
2318 if (nla_put_u8(skb, IFLA_TUN_PERSIST, !!(tun->flags & IFF_PERSIST)))
2319 goto nla_put_failure;
2320 if (nla_put_u8(skb, IFLA_TUN_MULTI_QUEUE,
2321 !!(tun->flags & IFF_MULTI_QUEUE)))
2322 goto nla_put_failure;
2323 if (tun->flags & IFF_MULTI_QUEUE) {
2324 if (nla_put_u32(skb, IFLA_TUN_NUM_QUEUES, tun->numqueues))
2325 goto nla_put_failure;
2326 if (nla_put_u32(skb, IFLA_TUN_NUM_DISABLED_QUEUES,
2327 tun->numdisabled))
2328 goto nla_put_failure;
2329 }
2330
2331 return 0;
2332
2333nla_put_failure:
2334 return -EMSGSIZE;
2335}
2336
f019a7a5
EB
2337static struct rtnl_link_ops tun_link_ops __read_mostly = {
2338 .kind = DRV_NAME,
2339 .priv_size = sizeof(struct tun_struct),
2340 .setup = tun_setup,
2341 .validate = tun_validate,
1ec010e7
SD
2342 .get_size = tun_get_size,
2343 .fill_info = tun_fill_info,
f019a7a5
EB
2344};
2345
33dccbb0
HX
2346static void tun_sock_write_space(struct sock *sk)
2347{
54f968d6 2348 struct tun_file *tfile;
43815482 2349 wait_queue_head_t *wqueue;
33dccbb0
HX
2350
2351 if (!sock_writeable(sk))
2352 return;
2353
9cd3e072 2354 if (!test_and_clear_bit(SOCKWQ_ASYNC_NOSPACE, &sk->sk_socket->flags))
33dccbb0
HX
2355 return;
2356
43815482
ED
2357 wqueue = sk_sleep(sk);
2358 if (wqueue && waitqueue_active(wqueue))
a9a08845
LT
2359 wake_up_interruptible_sync_poll(wqueue, EPOLLOUT |
2360 EPOLLWRNORM | EPOLLWRBAND);
c722c625 2361
54f968d6
JW
2362 tfile = container_of(sk, struct tun_file, sk);
2363 kill_fasync(&tfile->fasync, SIGIO, POLL_OUT);
33dccbb0
HX
2364}
2365
1b784140 2366static int tun_sendmsg(struct socket *sock, struct msghdr *m, size_t total_len)
05c2828c 2367{
54f968d6
JW
2368 int ret;
2369 struct tun_file *tfile = container_of(sock, struct tun_file, socket);
9484dc74 2370 struct tun_struct *tun = tun_get(tfile);
54f968d6
JW
2371
2372 if (!tun)
2373 return -EBADFD;
f5ff53b4 2374
c0371da6 2375 ret = tun_get_user(tun, tfile, m->msg_control, &m->msg_iter,
5503fcec
JW
2376 m->msg_flags & MSG_DONTWAIT,
2377 m->msg_flags & MSG_MORE);
54f968d6
JW
2378 tun_put(tun);
2379 return ret;
05c2828c
MT
2380}
2381
1b784140 2382static int tun_recvmsg(struct socket *sock, struct msghdr *m, size_t total_len,
05c2828c
MT
2383 int flags)
2384{
54f968d6 2385 struct tun_file *tfile = container_of(sock, struct tun_file, socket);
9484dc74 2386 struct tun_struct *tun = tun_get(tfile);
fc72d1d5 2387 void *ptr = m->msg_control;
05c2828c 2388 int ret;
54f968d6 2389
c33ee15b
WX
2390 if (!tun) {
2391 ret = -EBADFD;
fc72d1d5 2392 goto out_free;
c33ee15b 2393 }
54f968d6 2394
eda29772 2395 if (flags & ~(MSG_DONTWAIT|MSG_TRUNC|MSG_ERRQUEUE)) {
3811ae76 2396 ret = -EINVAL;
c33ee15b 2397 goto out_put_tun;
3811ae76 2398 }
eda29772
RC
2399 if (flags & MSG_ERRQUEUE) {
2400 ret = sock_recv_errqueue(sock->sk, m, total_len,
2401 SOL_PACKET, TUN_TX_TIMESTAMP);
2402 goto out;
2403 }
fc72d1d5 2404 ret = tun_do_read(tun, tfile, &m->msg_iter, flags & MSG_DONTWAIT, ptr);
87897931 2405 if (ret > (ssize_t)total_len) {
42404c09
DM
2406 m->msg_flags |= MSG_TRUNC;
2407 ret = flags & MSG_TRUNC ? ret : total_len;
2408 }
3811ae76 2409out:
54f968d6 2410 tun_put(tun);
05c2828c 2411 return ret;
c33ee15b
WX
2412
2413out_put_tun:
2414 tun_put(tun);
fc72d1d5
JW
2415out_free:
2416 tun_ptr_free(ptr);
c33ee15b 2417 return ret;
05c2828c
MT
2418}
2419
fc72d1d5
JW
2420static int tun_ptr_peek_len(void *ptr)
2421{
2422 if (likely(ptr)) {
2423 if (tun_is_xdp_buff(ptr)) {
2424 struct xdp_buff *xdp = tun_ptr_to_xdp(ptr);
2425
2426 return xdp->data_end - xdp->data;
2427 }
2428 return __skb_array_len_with_tag(ptr);
2429 } else {
2430 return 0;
2431 }
2432}
2433
1576d986
JW
2434static int tun_peek_len(struct socket *sock)
2435{
2436 struct tun_file *tfile = container_of(sock, struct tun_file, socket);
2437 struct tun_struct *tun;
2438 int ret = 0;
2439
9484dc74 2440 tun = tun_get(tfile);
1576d986
JW
2441 if (!tun)
2442 return 0;
2443
fc72d1d5 2444 ret = PTR_RING_PEEK_CALL(&tfile->tx_ring, tun_ptr_peek_len);
1576d986
JW
2445 tun_put(tun);
2446
2447 return ret;
2448}
2449
05c2828c
MT
2450/* Ops structure to mimic raw sockets with tun */
2451static const struct proto_ops tun_socket_ops = {
1576d986 2452 .peek_len = tun_peek_len,
05c2828c
MT
2453 .sendmsg = tun_sendmsg,
2454 .recvmsg = tun_recvmsg,
2455};
2456
33dccbb0
HX
2457static struct proto tun_proto = {
2458 .name = "tun",
2459 .owner = THIS_MODULE,
54f968d6 2460 .obj_size = sizeof(struct tun_file),
33dccbb0 2461};
f019a7a5 2462
980c9e8c
DW
2463static int tun_flags(struct tun_struct *tun)
2464{
031f5e03 2465 return tun->flags & (TUN_FEATURES | IFF_PERSIST | IFF_TUN | IFF_TAP);
980c9e8c
DW
2466}
2467
2468static ssize_t tun_show_flags(struct device *dev, struct device_attribute *attr,
2469 char *buf)
2470{
2471 struct tun_struct *tun = netdev_priv(to_net_dev(dev));
2472 return sprintf(buf, "0x%x\n", tun_flags(tun));
2473}
2474
2475static ssize_t tun_show_owner(struct device *dev, struct device_attribute *attr,
2476 char *buf)
2477{
2478 struct tun_struct *tun = netdev_priv(to_net_dev(dev));
0625c883
EB
2479 return uid_valid(tun->owner)?
2480 sprintf(buf, "%u\n",
2481 from_kuid_munged(current_user_ns(), tun->owner)):
2482 sprintf(buf, "-1\n");
980c9e8c
DW
2483}
2484
2485static ssize_t tun_show_group(struct device *dev, struct device_attribute *attr,
2486 char *buf)
2487{
2488 struct tun_struct *tun = netdev_priv(to_net_dev(dev));
0625c883
EB
2489 return gid_valid(tun->group) ?
2490 sprintf(buf, "%u\n",
2491 from_kgid_munged(current_user_ns(), tun->group)):
2492 sprintf(buf, "-1\n");
980c9e8c
DW
2493}
2494
2495static DEVICE_ATTR(tun_flags, 0444, tun_show_flags, NULL);
2496static DEVICE_ATTR(owner, 0444, tun_show_owner, NULL);
2497static DEVICE_ATTR(group, 0444, tun_show_group, NULL);
2498
c4d33e24
TI
2499static struct attribute *tun_dev_attrs[] = {
2500 &dev_attr_tun_flags.attr,
2501 &dev_attr_owner.attr,
2502 &dev_attr_group.attr,
2503 NULL
2504};
2505
2506static const struct attribute_group tun_attr_group = {
2507 .attrs = tun_dev_attrs
2508};
2509
d647a591 2510static int tun_set_iff(struct net *net, struct file *file, struct ifreq *ifr)
1da177e4
LT
2511{
2512 struct tun_struct *tun;
54f968d6 2513 struct tun_file *tfile = file->private_data;
1da177e4
LT
2514 struct net_device *dev;
2515 int err;
2516
7c0c3b1a
JW
2517 if (tfile->detached)
2518 return -EINVAL;
2519
90e33d45
PP
2520 if ((ifr->ifr_flags & IFF_NAPI_FRAGS)) {
2521 if (!capable(CAP_NET_ADMIN))
2522 return -EPERM;
2523
2524 if (!(ifr->ifr_flags & IFF_NAPI) ||
2525 (ifr->ifr_flags & TUN_TYPE_MASK) != IFF_TAP)
2526 return -EINVAL;
2527 }
2528
74a3e5a7
EB
2529 dev = __dev_get_by_name(net, ifr->ifr_name);
2530 if (dev) {
f85ba780
DW
2531 if (ifr->ifr_flags & IFF_TUN_EXCL)
2532 return -EBUSY;
74a3e5a7
EB
2533 if ((ifr->ifr_flags & IFF_TUN) && dev->netdev_ops == &tun_netdev_ops)
2534 tun = netdev_priv(dev);
2535 else if ((ifr->ifr_flags & IFF_TAP) && dev->netdev_ops == &tap_netdev_ops)
2536 tun = netdev_priv(dev);
2537 else
2538 return -EINVAL;
2539
8e6d91ae 2540 if (!!(ifr->ifr_flags & IFF_MULTI_QUEUE) !=
40630b82 2541 !!(tun->flags & IFF_MULTI_QUEUE))
8e6d91ae
JW
2542 return -EINVAL;
2543
cde8b15f 2544 if (tun_not_capable(tun))
2b980dbd 2545 return -EPERM;
5dbbaf2d 2546 err = security_tun_dev_open(tun->security);
2b980dbd
PM
2547 if (err < 0)
2548 return err;
2549
94317099
PP
2550 err = tun_attach(tun, file, ifr->ifr_flags & IFF_NOFILTER,
2551 ifr->ifr_flags & IFF_NAPI);
a7385ba2
EB
2552 if (err < 0)
2553 return err;
4008e97f 2554
40630b82 2555 if (tun->flags & IFF_MULTI_QUEUE &&
e8dbad66
JW
2556 (tun->numqueues + tun->numdisabled > 1)) {
2557 /* One or more queue has already been attached, no need
2558 * to initialize the device again.
2559 */
83c1f36f 2560 netdev_state_change(dev);
e8dbad66
JW
2561 return 0;
2562 }
9fffc5c6
SD
2563
2564 tun->flags = (tun->flags & ~TUN_FEATURES) |
2565 (ifr->ifr_flags & TUN_FEATURES);
83c1f36f
SD
2566
2567 netdev_state_change(dev);
2568 } else {
1da177e4
LT
2569 char *name;
2570 unsigned long flags = 0;
edfb6a14
JW
2571 int queues = ifr->ifr_flags & IFF_MULTI_QUEUE ?
2572 MAX_TAP_QUEUES : 1;
1da177e4 2573
c260b772 2574 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
ca6bb5d7 2575 return -EPERM;
2b980dbd
PM
2576 err = security_tun_dev_create();
2577 if (err < 0)
2578 return err;
ca6bb5d7 2579
1da177e4
LT
2580 /* Set dev type */
2581 if (ifr->ifr_flags & IFF_TUN) {
2582 /* TUN device */
40630b82 2583 flags |= IFF_TUN;
1da177e4
LT
2584 name = "tun%d";
2585 } else if (ifr->ifr_flags & IFF_TAP) {
2586 /* TAP device */
40630b82 2587 flags |= IFF_TAP;
1da177e4 2588 name = "tap%d";
6aa20a22 2589 } else
36989b90 2590 return -EINVAL;
6aa20a22 2591
1da177e4
LT
2592 if (*ifr->ifr_name)
2593 name = ifr->ifr_name;
2594
c8d68e6b 2595 dev = alloc_netdev_mqs(sizeof(struct tun_struct), name,
c835a677
TG
2596 NET_NAME_UNKNOWN, tun_setup, queues,
2597 queues);
edfb6a14 2598
1da177e4
LT
2599 if (!dev)
2600 return -ENOMEM;
0ad646c8 2601 err = dev_get_valid_name(net, dev, name);
5c25f65f 2602 if (err < 0)
0ad646c8 2603 goto err_free_dev;
1da177e4 2604
fc54c658 2605 dev_net_set(dev, net);
f019a7a5 2606 dev->rtnl_link_ops = &tun_link_ops;
fb7589a1 2607 dev->ifindex = tfile->ifindex;
c4d33e24 2608 dev->sysfs_groups[0] = &tun_attr_group;
758e43b7 2609
1da177e4
LT
2610 tun = netdev_priv(dev);
2611 tun->dev = dev;
2612 tun->flags = flags;
f271b2cc 2613 tun->txflt.count = 0;
d9d52b51 2614 tun->vnet_hdr_sz = sizeof(struct virtio_net_hdr);
33dccbb0 2615
eaea34b2 2616 tun->align = NET_SKB_PAD;
54f968d6
JW
2617 tun->filter_attached = false;
2618 tun->sndbuf = tfile->socket.sk->sk_sndbuf;
5503fcec 2619 tun->rx_batched = 0;
96f84061 2620 RCU_INIT_POINTER(tun->steering_prog, NULL);
33dccbb0 2621
608b9977
PA
2622 tun->pcpu_stats = netdev_alloc_pcpu_stats(struct tun_pcpu_stats);
2623 if (!tun->pcpu_stats) {
2624 err = -ENOMEM;
2625 goto err_free_dev;
2626 }
2627
96442e42
JW
2628 spin_lock_init(&tun->lock);
2629
5dbbaf2d
PM
2630 err = security_tun_dev_alloc_security(&tun->security);
2631 if (err < 0)
608b9977 2632 goto err_free_stat;
2b980dbd 2633
1da177e4 2634 tun_net_init(dev);
944a1376 2635 tun_flow_init(tun);
96442e42 2636
88255375 2637 dev->hw_features = NETIF_F_SG | NETIF_F_FRAGLIST |
6680ec68
JW
2638 TUN_USER_FEATURES | NETIF_F_HW_VLAN_CTAG_TX |
2639 NETIF_F_HW_VLAN_STAG_TX;
2a2bbf17 2640 dev->features = dev->hw_features | NETIF_F_LLTX;
6671b224
FLVC
2641 dev->vlan_features = dev->features &
2642 ~(NETIF_F_HW_VLAN_CTAG_TX |
2643 NETIF_F_HW_VLAN_STAG_TX);
88255375 2644
9fffc5c6
SD
2645 tun->flags = (tun->flags & ~TUN_FEATURES) |
2646 (ifr->ifr_flags & TUN_FEATURES);
2647
4008e97f 2648 INIT_LIST_HEAD(&tun->disabled);
94317099 2649 err = tun_attach(tun, file, false, ifr->ifr_flags & IFF_NAPI);
eb0fb363 2650 if (err < 0)
662ca437 2651 goto err_free_flow;
eb0fb363 2652
1da177e4
LT
2653 err = register_netdevice(tun->dev);
2654 if (err < 0)
662ca437 2655 goto err_detach;
1da177e4
LT
2656 }
2657
af668b3c
MT
2658 netif_carrier_on(tun->dev);
2659
6b8a66ee 2660 tun_debug(KERN_INFO, tun, "tun_set_iff\n");
1da177e4 2661
e35259a9
MK
2662 /* Make sure persistent devices do not get stuck in
2663 * xoff state.
2664 */
2665 if (netif_running(tun->dev))
c8d68e6b 2666 netif_tx_wake_all_queues(tun->dev);
e35259a9 2667
1da177e4
LT
2668 strcpy(ifr->ifr_name, tun->dev->name);
2669 return 0;
2670
662ca437
JW
2671err_detach:
2672 tun_detach_all(dev);
ff244c6b
ED
2673 /* register_netdevice() already called tun_free_netdev() */
2674 goto err_free_dev;
2675
662ca437
JW
2676err_free_flow:
2677 tun_flow_uninit(tun);
2678 security_tun_dev_free_security(tun->security);
608b9977
PA
2679err_free_stat:
2680 free_percpu(tun->pcpu_stats);
662ca437 2681err_free_dev:
1da177e4 2682 free_netdev(dev);
1da177e4
LT
2683 return err;
2684}
2685
9ce99cf6 2686static void tun_get_iff(struct net *net, struct tun_struct *tun,
876bfd4d 2687 struct ifreq *ifr)
e3b99556 2688{
6b8a66ee 2689 tun_debug(KERN_INFO, tun, "tun_get_iff\n");
e3b99556
MM
2690
2691 strcpy(ifr->ifr_name, tun->dev->name);
2692
980c9e8c 2693 ifr->ifr_flags = tun_flags(tun);
e3b99556 2694
e3b99556
MM
2695}
2696
5228ddc9
RR
2697/* This is like a cut-down ethtool ops, except done via tun fd so no
2698 * privs required. */
88255375 2699static int set_offload(struct tun_struct *tun, unsigned long arg)
5228ddc9 2700{
c8f44aff 2701 netdev_features_t features = 0;
5228ddc9
RR
2702
2703 if (arg & TUN_F_CSUM) {
88255375 2704 features |= NETIF_F_HW_CSUM;
5228ddc9
RR
2705 arg &= ~TUN_F_CSUM;
2706
2707 if (arg & (TUN_F_TSO4|TUN_F_TSO6)) {
2708 if (arg & TUN_F_TSO_ECN) {
2709 features |= NETIF_F_TSO_ECN;
2710 arg &= ~TUN_F_TSO_ECN;
2711 }
2712 if (arg & TUN_F_TSO4)
2713 features |= NETIF_F_TSO;
2714 if (arg & TUN_F_TSO6)
2715 features |= NETIF_F_TSO6;
2716 arg &= ~(TUN_F_TSO4|TUN_F_TSO6);
2717 }
0c19f846
WB
2718
2719 arg &= ~TUN_F_UFO;
5228ddc9
RR
2720 }
2721
2722 /* This gives the user a way to test for new features in future by
2723 * trying to set them. */
2724 if (arg)
2725 return -EINVAL;
2726
88255375 2727 tun->set_features = features;
09050957
YI
2728 tun->dev->wanted_features &= ~TUN_USER_FEATURES;
2729 tun->dev->wanted_features |= features;
88255375 2730 netdev_update_features(tun->dev);
5228ddc9
RR
2731
2732 return 0;
2733}
2734
c8d68e6b
JW
2735static void tun_detach_filter(struct tun_struct *tun, int n)
2736{
2737 int i;
2738 struct tun_file *tfile;
2739
2740 for (i = 0; i < n; i++) {
b8deabd3 2741 tfile = rtnl_dereference(tun->tfiles[i]);
8ced425e
HFS
2742 lock_sock(tfile->socket.sk);
2743 sk_detach_filter(tfile->socket.sk);
2744 release_sock(tfile->socket.sk);
c8d68e6b
JW
2745 }
2746
2747 tun->filter_attached = false;
2748}
2749
2750static int tun_attach_filter(struct tun_struct *tun)
2751{
2752 int i, ret = 0;
2753 struct tun_file *tfile;
2754
2755 for (i = 0; i < tun->numqueues; i++) {
b8deabd3 2756 tfile = rtnl_dereference(tun->tfiles[i]);
8ced425e
HFS
2757 lock_sock(tfile->socket.sk);
2758 ret = sk_attach_filter(&tun->fprog, tfile->socket.sk);
2759 release_sock(tfile->socket.sk);
c8d68e6b
JW
2760 if (ret) {
2761 tun_detach_filter(tun, i);
2762 return ret;
2763 }
2764 }
2765
2766 tun->filter_attached = true;
2767 return ret;
2768}
2769
2770static void tun_set_sndbuf(struct tun_struct *tun)
2771{
2772 struct tun_file *tfile;
2773 int i;
2774
2775 for (i = 0; i < tun->numqueues; i++) {
b8deabd3 2776 tfile = rtnl_dereference(tun->tfiles[i]);
c8d68e6b
JW
2777 tfile->socket.sk->sk_sndbuf = tun->sndbuf;
2778 }
2779}
2780
cde8b15f
JW
2781static int tun_set_queue(struct file *file, struct ifreq *ifr)
2782{
2783 struct tun_file *tfile = file->private_data;
2784 struct tun_struct *tun;
cde8b15f
JW
2785 int ret = 0;
2786
2787 rtnl_lock();
2788
2789 if (ifr->ifr_flags & IFF_ATTACH_QUEUE) {
4008e97f 2790 tun = tfile->detached;
5dbbaf2d 2791 if (!tun) {
cde8b15f 2792 ret = -EINVAL;
5dbbaf2d
PM
2793 goto unlock;
2794 }
2795 ret = security_tun_dev_attach_queue(tun->security);
2796 if (ret < 0)
2797 goto unlock;
94317099 2798 ret = tun_attach(tun, file, false, tun->flags & IFF_NAPI);
4008e97f 2799 } else if (ifr->ifr_flags & IFF_DETACH_QUEUE) {
b8deabd3 2800 tun = rtnl_dereference(tfile->tun);
40630b82 2801 if (!tun || !(tun->flags & IFF_MULTI_QUEUE) || tfile->detached)
4008e97f
JW
2802 ret = -EINVAL;
2803 else
2804 __tun_detach(tfile, false);
2805 } else
cde8b15f
JW
2806 ret = -EINVAL;
2807
83c1f36f
SD
2808 if (ret >= 0)
2809 netdev_state_change(tun->dev);
2810
5dbbaf2d 2811unlock:
cde8b15f
JW
2812 rtnl_unlock();
2813 return ret;
2814}
2815
cd5681d7
JW
2816static int tun_set_ebpf(struct tun_struct *tun, struct tun_prog **prog_p,
2817 void __user *data)
96f84061
JW
2818{
2819 struct bpf_prog *prog;
2820 int fd;
2821
2822 if (copy_from_user(&fd, data, sizeof(fd)))
2823 return -EFAULT;
2824
2825 if (fd == -1) {
2826 prog = NULL;
2827 } else {
2828 prog = bpf_prog_get_type(fd, BPF_PROG_TYPE_SOCKET_FILTER);
2829 if (IS_ERR(prog))
2830 return PTR_ERR(prog);
2831 }
2832
cd5681d7 2833 return __tun_set_ebpf(tun, prog_p, prog);
96f84061
JW
2834}
2835
50857e2a
AB
2836static long __tun_chr_ioctl(struct file *file, unsigned int cmd,
2837 unsigned long arg, int ifreq_len)
1da177e4 2838{
36b50bab 2839 struct tun_file *tfile = file->private_data;
631ab46b 2840 struct tun_struct *tun;
1da177e4
LT
2841 void __user* argp = (void __user*)arg;
2842 struct ifreq ifr;
f2780d6d 2843 struct net *net;
0625c883
EB
2844 kuid_t owner;
2845 kgid_t group;
33dccbb0 2846 int sndbuf;
d9d52b51 2847 int vnet_hdr_sz;
fb7589a1 2848 unsigned int ifindex;
1cf8e410 2849 int le;
f271b2cc 2850 int ret;
83c1f36f 2851 bool do_notify = false;
1da177e4 2852
f2780d6d
KT
2853 if (cmd == TUNSETIFF || cmd == TUNSETQUEUE ||
2854 (_IOC_TYPE(cmd) == SOCK_IOC_TYPE && cmd != SIOCGSKNS)) {
50857e2a 2855 if (copy_from_user(&ifr, argp, ifreq_len))
1da177e4 2856 return -EFAULT;
8bbb1813 2857 } else {
a117dacd 2858 memset(&ifr, 0, sizeof(ifr));
8bbb1813 2859 }
631ab46b
EB
2860 if (cmd == TUNGETFEATURES) {
2861 /* Currently this just means: "what IFF flags are valid?".
2862 * This is needed because we never checked for invalid flags on
031f5e03
MT
2863 * TUNSETIFF.
2864 */
2865 return put_user(IFF_TUN | IFF_TAP | TUN_FEATURES,
631ab46b 2866 (unsigned int __user*)argp);
cde8b15f
JW
2867 } else if (cmd == TUNSETQUEUE)
2868 return tun_set_queue(file, &ifr);
631ab46b 2869
c8d68e6b 2870 ret = 0;
876bfd4d
HX
2871 rtnl_lock();
2872
9484dc74 2873 tun = tun_get(tfile);
f2780d6d 2874 net = sock_net(&tfile->sk);
0f16bc13
GF
2875 if (cmd == TUNSETIFF) {
2876 ret = -EEXIST;
2877 if (tun)
2878 goto unlock;
2879
1da177e4
LT
2880 ifr.ifr_name[IFNAMSIZ-1] = '\0';
2881
f2780d6d 2882 ret = tun_set_iff(net, file, &ifr);
1da177e4 2883
876bfd4d
HX
2884 if (ret)
2885 goto unlock;
1da177e4 2886
50857e2a 2887 if (copy_to_user(argp, &ifr, ifreq_len))
876bfd4d
HX
2888 ret = -EFAULT;
2889 goto unlock;
1da177e4 2890 }
fb7589a1
PE
2891 if (cmd == TUNSETIFINDEX) {
2892 ret = -EPERM;
2893 if (tun)
2894 goto unlock;
2895
2896 ret = -EFAULT;
2897 if (copy_from_user(&ifindex, argp, sizeof(ifindex)))
2898 goto unlock;
2899
2900 ret = 0;
2901 tfile->ifindex = ifindex;
2902 goto unlock;
2903 }
f2780d6d
KT
2904 if (cmd == SIOCGSKNS) {
2905 ret = -EPERM;
2906 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
2907 goto unlock;
2908
2909 ret = open_related_ns(&net->ns, get_net_ns);
2910 goto unlock;
2911 }
1da177e4 2912
876bfd4d 2913 ret = -EBADFD;
1da177e4 2914 if (!tun)
876bfd4d 2915 goto unlock;
1da177e4 2916
1e588338 2917 tun_debug(KERN_INFO, tun, "tun_chr_ioctl cmd %u\n", cmd);
1da177e4 2918
631ab46b 2919 ret = 0;
1da177e4 2920 switch (cmd) {
e3b99556 2921 case TUNGETIFF:
9ce99cf6 2922 tun_get_iff(current->nsproxy->net_ns, tun, &ifr);
e3b99556 2923
3d407a80
PE
2924 if (tfile->detached)
2925 ifr.ifr_flags |= IFF_DETACH_QUEUE;
849c9b6f
PE
2926 if (!tfile->socket.sk->sk_filter)
2927 ifr.ifr_flags |= IFF_NOFILTER;
3d407a80 2928
50857e2a 2929 if (copy_to_user(argp, &ifr, ifreq_len))
631ab46b 2930 ret = -EFAULT;
e3b99556
MM
2931 break;
2932
1da177e4
LT
2933 case TUNSETNOCSUM:
2934 /* Disable/Enable checksum */
1da177e4 2935
88255375
MM
2936 /* [unimplemented] */
2937 tun_debug(KERN_INFO, tun, "ignored: set checksum %s\n",
6b8a66ee 2938 arg ? "disabled" : "enabled");
1da177e4
LT
2939 break;
2940
2941 case TUNSETPERSIST:
54f968d6
JW
2942 /* Disable/Enable persist mode. Keep an extra reference to the
2943 * module to prevent the module being unprobed.
2944 */
40630b82
MT
2945 if (arg && !(tun->flags & IFF_PERSIST)) {
2946 tun->flags |= IFF_PERSIST;
54f968d6 2947 __module_get(THIS_MODULE);
83c1f36f 2948 do_notify = true;
dd38bd85 2949 }
40630b82
MT
2950 if (!arg && (tun->flags & IFF_PERSIST)) {
2951 tun->flags &= ~IFF_PERSIST;
54f968d6 2952 module_put(THIS_MODULE);
83c1f36f 2953 do_notify = true;
54f968d6 2954 }
1da177e4 2955
6b8a66ee
JP
2956 tun_debug(KERN_INFO, tun, "persist %s\n",
2957 arg ? "enabled" : "disabled");
1da177e4
LT
2958 break;
2959
2960 case TUNSETOWNER:
2961 /* Set owner of the device */
0625c883
EB
2962 owner = make_kuid(current_user_ns(), arg);
2963 if (!uid_valid(owner)) {
2964 ret = -EINVAL;
2965 break;
2966 }
2967 tun->owner = owner;
83c1f36f 2968 do_notify = true;
1e588338 2969 tun_debug(KERN_INFO, tun, "owner set to %u\n",
0625c883 2970 from_kuid(&init_user_ns, tun->owner));
1da177e4
LT
2971 break;
2972
8c644623
GG
2973 case TUNSETGROUP:
2974 /* Set group of the device */
0625c883
EB
2975 group = make_kgid(current_user_ns(), arg);
2976 if (!gid_valid(group)) {
2977 ret = -EINVAL;
2978 break;
2979 }
2980 tun->group = group;
83c1f36f 2981 do_notify = true;
1e588338 2982 tun_debug(KERN_INFO, tun, "group set to %u\n",
0625c883 2983 from_kgid(&init_user_ns, tun->group));
8c644623
GG
2984 break;
2985
ff4cc3ac
MK
2986 case TUNSETLINK:
2987 /* Only allow setting the type when the interface is down */
2988 if (tun->dev->flags & IFF_UP) {
6b8a66ee
JP
2989 tun_debug(KERN_INFO, tun,
2990 "Linktype set failed because interface is up\n");
48abfe05 2991 ret = -EBUSY;
ff4cc3ac
MK
2992 } else {
2993 tun->dev->type = (int) arg;
6b8a66ee
JP
2994 tun_debug(KERN_INFO, tun, "linktype set to %d\n",
2995 tun->dev->type);
48abfe05 2996 ret = 0;
ff4cc3ac 2997 }
631ab46b 2998 break;
ff4cc3ac 2999
1da177e4
LT
3000#ifdef TUN_DEBUG
3001 case TUNSETDEBUG:
3002 tun->debug = arg;
3003 break;
3004#endif
5228ddc9 3005 case TUNSETOFFLOAD:
88255375 3006 ret = set_offload(tun, arg);
631ab46b 3007 break;
5228ddc9 3008
f271b2cc
MK
3009 case TUNSETTXFILTER:
3010 /* Can be set only for TAPs */
631ab46b 3011 ret = -EINVAL;
40630b82 3012 if ((tun->flags & TUN_TYPE_MASK) != IFF_TAP)
631ab46b 3013 break;
c0e5a8c2 3014 ret = update_filter(&tun->txflt, (void __user *)arg);
631ab46b 3015 break;
1da177e4
LT
3016
3017 case SIOCGIFHWADDR:
b595076a 3018 /* Get hw address */
f271b2cc
MK
3019 memcpy(ifr.ifr_hwaddr.sa_data, tun->dev->dev_addr, ETH_ALEN);
3020 ifr.ifr_hwaddr.sa_family = tun->dev->type;
50857e2a 3021 if (copy_to_user(argp, &ifr, ifreq_len))
631ab46b
EB
3022 ret = -EFAULT;
3023 break;
1da177e4
LT
3024
3025 case SIOCSIFHWADDR:
f271b2cc 3026 /* Set hw address */
6b8a66ee
JP
3027 tun_debug(KERN_DEBUG, tun, "set hw address: %pM\n",
3028 ifr.ifr_hwaddr.sa_data);
40102371 3029
40102371 3030 ret = dev_set_mac_address(tun->dev, &ifr.ifr_hwaddr);
631ab46b 3031 break;
33dccbb0
HX
3032
3033 case TUNGETSNDBUF:
54f968d6 3034 sndbuf = tfile->socket.sk->sk_sndbuf;
33dccbb0
HX
3035 if (copy_to_user(argp, &sndbuf, sizeof(sndbuf)))
3036 ret = -EFAULT;
3037 break;
3038
3039 case TUNSETSNDBUF:
3040 if (copy_from_user(&sndbuf, argp, sizeof(sndbuf))) {
3041 ret = -EFAULT;
3042 break;
3043 }
93161922
CG
3044 if (sndbuf <= 0) {
3045 ret = -EINVAL;
3046 break;
3047 }
33dccbb0 3048
c8d68e6b
JW
3049 tun->sndbuf = sndbuf;
3050 tun_set_sndbuf(tun);
33dccbb0
HX
3051 break;
3052
d9d52b51
MT
3053 case TUNGETVNETHDRSZ:
3054 vnet_hdr_sz = tun->vnet_hdr_sz;
3055 if (copy_to_user(argp, &vnet_hdr_sz, sizeof(vnet_hdr_sz)))
3056 ret = -EFAULT;
3057 break;
3058
3059 case TUNSETVNETHDRSZ:
3060 if (copy_from_user(&vnet_hdr_sz, argp, sizeof(vnet_hdr_sz))) {
3061 ret = -EFAULT;
3062 break;
3063 }
3064 if (vnet_hdr_sz < (int)sizeof(struct virtio_net_hdr)) {
3065 ret = -EINVAL;
3066 break;
3067 }
3068
3069 tun->vnet_hdr_sz = vnet_hdr_sz;
3070 break;
3071
1cf8e410
MT
3072 case TUNGETVNETLE:
3073 le = !!(tun->flags & TUN_VNET_LE);
3074 if (put_user(le, (int __user *)argp))
3075 ret = -EFAULT;
3076 break;
3077
3078 case TUNSETVNETLE:
3079 if (get_user(le, (int __user *)argp)) {
3080 ret = -EFAULT;
3081 break;
3082 }
3083 if (le)
3084 tun->flags |= TUN_VNET_LE;
3085 else
3086 tun->flags &= ~TUN_VNET_LE;
3087 break;
3088
8b8e658b
GK
3089 case TUNGETVNETBE:
3090 ret = tun_get_vnet_be(tun, argp);
3091 break;
3092
3093 case TUNSETVNETBE:
3094 ret = tun_set_vnet_be(tun, argp);
3095 break;
3096
99405162
MT
3097 case TUNATTACHFILTER:
3098 /* Can be set only for TAPs */
3099 ret = -EINVAL;
40630b82 3100 if ((tun->flags & TUN_TYPE_MASK) != IFF_TAP)
99405162
MT
3101 break;
3102 ret = -EFAULT;
54f968d6 3103 if (copy_from_user(&tun->fprog, argp, sizeof(tun->fprog)))
99405162
MT
3104 break;
3105
c8d68e6b 3106 ret = tun_attach_filter(tun);
99405162
MT
3107 break;
3108
3109 case TUNDETACHFILTER:
3110 /* Can be set only for TAPs */
3111 ret = -EINVAL;
40630b82 3112 if ((tun->flags & TUN_TYPE_MASK) != IFF_TAP)
99405162 3113 break;
c8d68e6b
JW
3114 ret = 0;
3115 tun_detach_filter(tun, tun->numqueues);
99405162
MT
3116 break;
3117
76975e9c
PE
3118 case TUNGETFILTER:
3119 ret = -EINVAL;
40630b82 3120 if ((tun->flags & TUN_TYPE_MASK) != IFF_TAP)
76975e9c
PE
3121 break;
3122 ret = -EFAULT;
3123 if (copy_to_user(argp, &tun->fprog, sizeof(tun->fprog)))
3124 break;
3125 ret = 0;
3126 break;
3127
96f84061 3128 case TUNSETSTEERINGEBPF:
cd5681d7 3129 ret = tun_set_ebpf(tun, &tun->steering_prog, argp);
96f84061
JW
3130 break;
3131
aff3d70a
JW
3132 case TUNSETFILTEREBPF:
3133 ret = tun_set_ebpf(tun, &tun->filter_prog, argp);
3134 break;
3135
1da177e4 3136 default:
631ab46b
EB
3137 ret = -EINVAL;
3138 break;
ee289b64 3139 }
1da177e4 3140
83c1f36f
SD
3141 if (do_notify)
3142 netdev_state_change(tun->dev);
3143
876bfd4d
HX
3144unlock:
3145 rtnl_unlock();
3146 if (tun)
3147 tun_put(tun);
631ab46b 3148 return ret;
1da177e4
LT
3149}
3150
50857e2a
AB
3151static long tun_chr_ioctl(struct file *file,
3152 unsigned int cmd, unsigned long arg)
3153{
3154 return __tun_chr_ioctl(file, cmd, arg, sizeof (struct ifreq));
3155}
3156
3157#ifdef CONFIG_COMPAT
3158static long tun_chr_compat_ioctl(struct file *file,
3159 unsigned int cmd, unsigned long arg)
3160{
3161 switch (cmd) {
3162 case TUNSETIFF:
3163 case TUNGETIFF:
3164 case TUNSETTXFILTER:
3165 case TUNGETSNDBUF:
3166 case TUNSETSNDBUF:
3167 case SIOCGIFHWADDR:
3168 case SIOCSIFHWADDR:
3169 arg = (unsigned long)compat_ptr(arg);
3170 break;
3171 default:
3172 arg = (compat_ulong_t)arg;
3173 break;
3174 }
3175
3176 /*
3177 * compat_ifreq is shorter than ifreq, so we must not access beyond
3178 * the end of that structure. All fields that are used in this
3179 * driver are compatible though, we don't need to convert the
3180 * contents.
3181 */
3182 return __tun_chr_ioctl(file, cmd, arg, sizeof(struct compat_ifreq));
3183}
3184#endif /* CONFIG_COMPAT */
3185
1da177e4
LT
3186static int tun_chr_fasync(int fd, struct file *file, int on)
3187{
54f968d6 3188 struct tun_file *tfile = file->private_data;
1da177e4
LT
3189 int ret;
3190
54f968d6 3191 if ((ret = fasync_helper(fd, file, on, &tfile->fasync)) < 0)
9d319522 3192 goto out;
6aa20a22 3193
1da177e4 3194 if (on) {
e0b93edd 3195 __f_setown(file, task_pid(current), PIDTYPE_PID, 0);
54f968d6 3196 tfile->flags |= TUN_FASYNC;
6aa20a22 3197 } else
54f968d6 3198 tfile->flags &= ~TUN_FASYNC;
9d319522
JC
3199 ret = 0;
3200out:
9d319522 3201 return ret;
1da177e4
LT
3202}
3203
3204static int tun_chr_open(struct inode *inode, struct file * file)
3205{
140e807d 3206 struct net *net = current->nsproxy->net_ns;
631ab46b 3207 struct tun_file *tfile;
deed49fb 3208
6b8a66ee 3209 DBG1(KERN_INFO, "tunX: tun_chr_open\n");
631ab46b 3210
140e807d 3211 tfile = (struct tun_file *)sk_alloc(net, AF_UNSPEC, GFP_KERNEL,
11aa9c28 3212 &tun_proto, 0);
631ab46b
EB
3213 if (!tfile)
3214 return -ENOMEM;
b196d88a
JW
3215 if (ptr_ring_init(&tfile->tx_ring, 0, GFP_KERNEL)) {
3216 sk_free(&tfile->sk);
3217 return -ENOMEM;
3218 }
3219
c956674b 3220 RCU_INIT_POINTER(tfile->tun, NULL);
54f968d6 3221 tfile->flags = 0;
fb7589a1 3222 tfile->ifindex = 0;
54f968d6 3223
54f968d6 3224 init_waitqueue_head(&tfile->wq.wait);
9e641bdc 3225 RCU_INIT_POINTER(tfile->socket.wq, &tfile->wq);
54f968d6
JW
3226
3227 tfile->socket.file = file;
3228 tfile->socket.ops = &tun_socket_ops;
3229
3230 sock_init_data(&tfile->socket, &tfile->sk);
54f968d6
JW
3231
3232 tfile->sk.sk_write_space = tun_sock_write_space;
3233 tfile->sk.sk_sndbuf = INT_MAX;
3234
631ab46b 3235 file->private_data = tfile;
4008e97f 3236 INIT_LIST_HEAD(&tfile->next);
54f968d6 3237
19a6afb2
JW
3238 sock_set_flag(&tfile->sk, SOCK_ZEROCOPY);
3239
1da177e4
LT
3240 return 0;
3241}
3242
3243static int tun_chr_close(struct inode *inode, struct file *file)
3244{
631ab46b 3245 struct tun_file *tfile = file->private_data;
1da177e4 3246
c8d68e6b 3247 tun_detach(tfile, true);
b196d88a 3248 ptr_ring_cleanup(&tfile->tx_ring, tun_ptr_free);
1da177e4
LT
3249
3250 return 0;
3251}
3252
93e14b6d 3253#ifdef CONFIG_PROC_FS
9484dc74 3254static void tun_chr_show_fdinfo(struct seq_file *m, struct file *file)
93e14b6d 3255{
9484dc74 3256 struct tun_file *tfile = file->private_data;
93e14b6d
MY
3257 struct tun_struct *tun;
3258 struct ifreq ifr;
3259
3260 memset(&ifr, 0, sizeof(ifr));
3261
3262 rtnl_lock();
9484dc74 3263 tun = tun_get(tfile);
93e14b6d
MY
3264 if (tun)
3265 tun_get_iff(current->nsproxy->net_ns, tun, &ifr);
3266 rtnl_unlock();
3267
3268 if (tun)
3269 tun_put(tun);
3270
a3816ab0 3271 seq_printf(m, "iff:\t%s\n", ifr.ifr_name);
93e14b6d
MY
3272}
3273#endif
3274
d54b1fdb 3275static const struct file_operations tun_fops = {
6aa20a22 3276 .owner = THIS_MODULE,
1da177e4 3277 .llseek = no_llseek,
9b067034 3278 .read_iter = tun_chr_read_iter,
f5ff53b4 3279 .write_iter = tun_chr_write_iter,
1da177e4 3280 .poll = tun_chr_poll,
50857e2a
AB
3281 .unlocked_ioctl = tun_chr_ioctl,
3282#ifdef CONFIG_COMPAT
3283 .compat_ioctl = tun_chr_compat_ioctl,
3284#endif
1da177e4
LT
3285 .open = tun_chr_open,
3286 .release = tun_chr_close,
93e14b6d
MY
3287 .fasync = tun_chr_fasync,
3288#ifdef CONFIG_PROC_FS
3289 .show_fdinfo = tun_chr_show_fdinfo,
3290#endif
1da177e4
LT
3291};
3292
3293static struct miscdevice tun_miscdev = {
3294 .minor = TUN_MINOR,
3295 .name = "tun",
e454cea2 3296 .nodename = "net/tun",
1da177e4 3297 .fops = &tun_fops,
1da177e4
LT
3298};
3299
3300/* ethtool interface */
3301
29ccc49d
PR
3302static int tun_get_link_ksettings(struct net_device *dev,
3303 struct ethtool_link_ksettings *cmd)
3304{
3305 ethtool_link_ksettings_zero_link_mode(cmd, supported);
3306 ethtool_link_ksettings_zero_link_mode(cmd, advertising);
3307 cmd->base.speed = SPEED_10;
3308 cmd->base.duplex = DUPLEX_FULL;
3309 cmd->base.port = PORT_TP;
3310 cmd->base.phy_address = 0;
3311 cmd->base.autoneg = AUTONEG_DISABLE;
1da177e4
LT
3312 return 0;
3313}
3314
3315static void tun_get_drvinfo(struct net_device *dev, struct ethtool_drvinfo *info)
3316{
3317 struct tun_struct *tun = netdev_priv(dev);
3318
33a5ba14
RJ
3319 strlcpy(info->driver, DRV_NAME, sizeof(info->driver));
3320 strlcpy(info->version, DRV_VERSION, sizeof(info->version));
1da177e4
LT
3321
3322 switch (tun->flags & TUN_TYPE_MASK) {
40630b82 3323 case IFF_TUN:
33a5ba14 3324 strlcpy(info->bus_info, "tun", sizeof(info->bus_info));
1da177e4 3325 break;
40630b82 3326 case IFF_TAP:
33a5ba14 3327 strlcpy(info->bus_info, "tap", sizeof(info->bus_info));
1da177e4
LT
3328 break;
3329 }
3330}
3331
3332static u32 tun_get_msglevel(struct net_device *dev)
3333{
3334#ifdef TUN_DEBUG
3335 struct tun_struct *tun = netdev_priv(dev);
3336 return tun->debug;
3337#else
3338 return -EOPNOTSUPP;
3339#endif
3340}
3341
3342static void tun_set_msglevel(struct net_device *dev, u32 value)
3343{
3344#ifdef TUN_DEBUG
3345 struct tun_struct *tun = netdev_priv(dev);
3346 tun->debug = value;
3347#endif
3348}
3349
5503fcec
JW
3350static int tun_get_coalesce(struct net_device *dev,
3351 struct ethtool_coalesce *ec)
3352{
3353 struct tun_struct *tun = netdev_priv(dev);
3354
3355 ec->rx_max_coalesced_frames = tun->rx_batched;
3356
3357 return 0;
3358}
3359
3360static int tun_set_coalesce(struct net_device *dev,
3361 struct ethtool_coalesce *ec)
3362{
3363 struct tun_struct *tun = netdev_priv(dev);
3364
3365 if (ec->rx_max_coalesced_frames > NAPI_POLL_WEIGHT)
3366 tun->rx_batched = NAPI_POLL_WEIGHT;
3367 else
3368 tun->rx_batched = ec->rx_max_coalesced_frames;
3369
3370 return 0;
3371}
3372
7282d491 3373static const struct ethtool_ops tun_ethtool_ops = {
1da177e4
LT
3374 .get_drvinfo = tun_get_drvinfo,
3375 .get_msglevel = tun_get_msglevel,
3376 .set_msglevel = tun_set_msglevel,
bee31369 3377 .get_link = ethtool_op_get_link,
eda29772 3378 .get_ts_info = ethtool_op_get_ts_info,
5503fcec
JW
3379 .get_coalesce = tun_get_coalesce,
3380 .set_coalesce = tun_set_coalesce,
29ccc49d 3381 .get_link_ksettings = tun_get_link_ksettings,
1da177e4
LT
3382};
3383
1576d986
JW
3384static int tun_queue_resize(struct tun_struct *tun)
3385{
3386 struct net_device *dev = tun->dev;
3387 struct tun_file *tfile;
5990a305 3388 struct ptr_ring **rings;
1576d986
JW
3389 int n = tun->numqueues + tun->numdisabled;
3390 int ret, i;
3391
5990a305
JW
3392 rings = kmalloc_array(n, sizeof(*rings), GFP_KERNEL);
3393 if (!rings)
1576d986
JW
3394 return -ENOMEM;
3395
3396 for (i = 0; i < tun->numqueues; i++) {
3397 tfile = rtnl_dereference(tun->tfiles[i]);
5990a305 3398 rings[i] = &tfile->tx_ring;
1576d986
JW
3399 }
3400 list_for_each_entry(tfile, &tun->disabled, next)
5990a305 3401 rings[i++] = &tfile->tx_ring;
1576d986 3402
5990a305
JW
3403 ret = ptr_ring_resize_multiple(rings, n,
3404 dev->tx_queue_len, GFP_KERNEL,
fc72d1d5 3405 tun_ptr_free);
1576d986 3406
5990a305 3407 kfree(rings);
1576d986
JW
3408 return ret;
3409}
3410
3411static int tun_device_event(struct notifier_block *unused,
3412 unsigned long event, void *ptr)
3413{
3414 struct net_device *dev = netdev_notifier_info_to_dev(ptr);
3415 struct tun_struct *tun = netdev_priv(dev);
3416
86dfb4ac
CG
3417 if (dev->rtnl_link_ops != &tun_link_ops)
3418 return NOTIFY_DONE;
3419
1576d986
JW
3420 switch (event) {
3421 case NETDEV_CHANGE_TX_QUEUE_LEN:
3422 if (tun_queue_resize(tun))
3423 return NOTIFY_BAD;
3424 break;
3425 default:
3426 break;
3427 }
3428
3429 return NOTIFY_DONE;
3430}
3431
3432static struct notifier_block tun_notifier_block __read_mostly = {
3433 .notifier_call = tun_device_event,
3434};
79d17604 3435
1da177e4
LT
3436static int __init tun_init(void)
3437{
3438 int ret = 0;
3439
6b8a66ee 3440 pr_info("%s, %s\n", DRV_DESCRIPTION, DRV_VERSION);
1da177e4 3441
f019a7a5 3442 ret = rtnl_link_register(&tun_link_ops);
79d17604 3443 if (ret) {
6b8a66ee 3444 pr_err("Can't register link_ops\n");
f019a7a5 3445 goto err_linkops;
79d17604
PE
3446 }
3447
1da177e4 3448 ret = misc_register(&tun_miscdev);
79d17604 3449 if (ret) {
6b8a66ee 3450 pr_err("Can't register misc device %d\n", TUN_MINOR);
79d17604
PE
3451 goto err_misc;
3452 }
1576d986 3453
5edfbd3c
TZ
3454 ret = register_netdevice_notifier(&tun_notifier_block);
3455 if (ret) {
3456 pr_err("Can't register netdevice notifier\n");
3457 goto err_notifier;
3458 }
3459
f019a7a5 3460 return 0;
5edfbd3c
TZ
3461
3462err_notifier:
3463 misc_deregister(&tun_miscdev);
79d17604 3464err_misc:
f019a7a5
EB
3465 rtnl_link_unregister(&tun_link_ops);
3466err_linkops:
1da177e4
LT
3467 return ret;
3468}
3469
3470static void tun_cleanup(void)
3471{
6aa20a22 3472 misc_deregister(&tun_miscdev);
f019a7a5 3473 rtnl_link_unregister(&tun_link_ops);
1576d986 3474 unregister_netdevice_notifier(&tun_notifier_block);
1da177e4
LT
3475}
3476
05c2828c
MT
3477/* Get an underlying socket object from tun file. Returns error unless file is
3478 * attached to a device. The returned object works like a packet socket, it
3479 * can be used for sock_sendmsg/sock_recvmsg. The caller is responsible for
3480 * holding a reference to the file for as long as the socket is in use. */
3481struct socket *tun_get_socket(struct file *file)
3482{
6e914fc7 3483 struct tun_file *tfile;
05c2828c
MT
3484 if (file->f_op != &tun_fops)
3485 return ERR_PTR(-EINVAL);
6e914fc7
JW
3486 tfile = file->private_data;
3487 if (!tfile)
05c2828c 3488 return ERR_PTR(-EBADFD);
54f968d6 3489 return &tfile->socket;
05c2828c
MT
3490}
3491EXPORT_SYMBOL_GPL(tun_get_socket);
3492
5990a305 3493struct ptr_ring *tun_get_tx_ring(struct file *file)
83339c6b
JW
3494{
3495 struct tun_file *tfile;
3496
3497 if (file->f_op != &tun_fops)
3498 return ERR_PTR(-EINVAL);
3499 tfile = file->private_data;
3500 if (!tfile)
3501 return ERR_PTR(-EBADFD);
5990a305 3502 return &tfile->tx_ring;
83339c6b 3503}
5990a305 3504EXPORT_SYMBOL_GPL(tun_get_tx_ring);
83339c6b 3505
1da177e4
LT
3506module_init(tun_init);
3507module_exit(tun_cleanup);
3508MODULE_DESCRIPTION(DRV_DESCRIPTION);
3509MODULE_AUTHOR(DRV_COPYRIGHT);
3510MODULE_LICENSE("GPL");
3511MODULE_ALIAS_MISCDEV(TUN_MINOR);
578454ff 3512MODULE_ALIAS("devname:net/tun");