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