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