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