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