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