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