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