blob: 781cd2649bbbd540078d6db5fa0042ed063b40bd [file] [log] [blame]
b.liue9582032025-04-17 19:18:16 +08001// SPDX-License-Identifier: GPL-2.0-only
2#include <linux/etherdevice.h>
3#include <linux/if_tap.h>
4#include <linux/if_vlan.h>
5#include <linux/interrupt.h>
6#include <linux/nsproxy.h>
7#include <linux/compat.h>
8#include <linux/if_tun.h>
9#include <linux/module.h>
10#include <linux/skbuff.h>
11#include <linux/cache.h>
12#include <linux/sched/signal.h>
13#include <linux/types.h>
14#include <linux/slab.h>
15#include <linux/wait.h>
16#include <linux/cdev.h>
17#include <linux/idr.h>
18#include <linux/fs.h>
19#include <linux/uio.h>
20
21#include <net/net_namespace.h>
22#include <net/rtnetlink.h>
23#include <net/sock.h>
24#include <linux/virtio_net.h>
25#include <linux/skb_array.h>
26
27#define TAP_IFFEATURES (IFF_VNET_HDR | IFF_MULTI_QUEUE)
28
29#define TAP_VNET_LE 0x80000000
30#define TAP_VNET_BE 0x40000000
31
32#ifdef CONFIG_TUN_VNET_CROSS_LE
33static inline bool tap_legacy_is_little_endian(struct tap_queue *q)
34{
35 return q->flags & TAP_VNET_BE ? false :
36 virtio_legacy_is_little_endian();
37}
38
39static long tap_get_vnet_be(struct tap_queue *q, int __user *sp)
40{
41 int s = !!(q->flags & TAP_VNET_BE);
42
43 if (put_user(s, sp))
44 return -EFAULT;
45
46 return 0;
47}
48
49static long tap_set_vnet_be(struct tap_queue *q, int __user *sp)
50{
51 int s;
52
53 if (get_user(s, sp))
54 return -EFAULT;
55
56 if (s)
57 q->flags |= TAP_VNET_BE;
58 else
59 q->flags &= ~TAP_VNET_BE;
60
61 return 0;
62}
63#else
64static inline bool tap_legacy_is_little_endian(struct tap_queue *q)
65{
66 return virtio_legacy_is_little_endian();
67}
68
69static long tap_get_vnet_be(struct tap_queue *q, int __user *argp)
70{
71 return -EINVAL;
72}
73
74static long tap_set_vnet_be(struct tap_queue *q, int __user *argp)
75{
76 return -EINVAL;
77}
78#endif /* CONFIG_TUN_VNET_CROSS_LE */
79
80static inline bool tap_is_little_endian(struct tap_queue *q)
81{
82 return q->flags & TAP_VNET_LE ||
83 tap_legacy_is_little_endian(q);
84}
85
86static inline u16 tap16_to_cpu(struct tap_queue *q, __virtio16 val)
87{
88 return __virtio16_to_cpu(tap_is_little_endian(q), val);
89}
90
91static inline __virtio16 cpu_to_tap16(struct tap_queue *q, u16 val)
92{
93 return __cpu_to_virtio16(tap_is_little_endian(q), val);
94}
95
96static struct proto tap_proto = {
97 .name = "tap",
98 .owner = THIS_MODULE,
99 .obj_size = sizeof(struct tap_queue),
100};
101
102#define TAP_NUM_DEVS (1U << MINORBITS)
103
104static LIST_HEAD(major_list);
105
106struct major_info {
107 struct rcu_head rcu;
108 dev_t major;
109 struct idr minor_idr;
110 spinlock_t minor_lock;
111 const char *device_name;
112 struct list_head next;
113};
114
115#define GOODCOPY_LEN 128
116
117static const struct proto_ops tap_socket_ops;
118
119#define RX_OFFLOADS (NETIF_F_GRO | NETIF_F_LRO)
120#define TAP_FEATURES (NETIF_F_GSO | NETIF_F_SG | NETIF_F_FRAGLIST)
121
122static struct tap_dev *tap_dev_get_rcu(const struct net_device *dev)
123{
124 return rcu_dereference(dev->rx_handler_data);
125}
126
127/*
128 * RCU usage:
129 * The tap_queue and the macvlan_dev are loosely coupled, the
130 * pointers from one to the other can only be read while rcu_read_lock
131 * or rtnl is held.
132 *
133 * Both the file and the macvlan_dev hold a reference on the tap_queue
134 * through sock_hold(&q->sk). When the macvlan_dev goes away first,
135 * q->vlan becomes inaccessible. When the files gets closed,
136 * tap_get_queue() fails.
137 *
138 * There may still be references to the struct sock inside of the
139 * queue from outbound SKBs, but these never reference back to the
140 * file or the dev. The data structure is freed through __sk_free
141 * when both our references and any pending SKBs are gone.
142 */
143
144static int tap_enable_queue(struct tap_dev *tap, struct file *file,
145 struct tap_queue *q)
146{
147 int err = -EINVAL;
148
149 ASSERT_RTNL();
150
151 if (q->enabled)
152 goto out;
153
154 err = 0;
155 rcu_assign_pointer(tap->taps[tap->numvtaps], q);
156 q->queue_index = tap->numvtaps;
157 q->enabled = true;
158
159 tap->numvtaps++;
160out:
161 return err;
162}
163
164/* Requires RTNL */
165static int tap_set_queue(struct tap_dev *tap, struct file *file,
166 struct tap_queue *q)
167{
168 if (tap->numqueues == MAX_TAP_QUEUES)
169 return -EBUSY;
170
171 rcu_assign_pointer(q->tap, tap);
172 rcu_assign_pointer(tap->taps[tap->numvtaps], q);
173 sock_hold(&q->sk);
174
175 q->file = file;
176 q->queue_index = tap->numvtaps;
177 q->enabled = true;
178 file->private_data = q;
179 list_add_tail(&q->next, &tap->queue_list);
180
181 tap->numvtaps++;
182 tap->numqueues++;
183
184 return 0;
185}
186
187static int tap_disable_queue(struct tap_queue *q)
188{
189 struct tap_dev *tap;
190 struct tap_queue *nq;
191
192 ASSERT_RTNL();
193 if (!q->enabled)
194 return -EINVAL;
195
196 tap = rtnl_dereference(q->tap);
197
198 if (tap) {
199 int index = q->queue_index;
200 BUG_ON(index >= tap->numvtaps);
201 nq = rtnl_dereference(tap->taps[tap->numvtaps - 1]);
202 nq->queue_index = index;
203
204 rcu_assign_pointer(tap->taps[index], nq);
205 RCU_INIT_POINTER(tap->taps[tap->numvtaps - 1], NULL);
206 q->enabled = false;
207
208 tap->numvtaps--;
209 }
210
211 return 0;
212}
213
214/*
215 * The file owning the queue got closed, give up both
216 * the reference that the files holds as well as the
217 * one from the macvlan_dev if that still exists.
218 *
219 * Using the spinlock makes sure that we don't get
220 * to the queue again after destroying it.
221 */
222static void tap_put_queue(struct tap_queue *q)
223{
224 struct tap_dev *tap;
225
226 rtnl_lock();
227 tap = rtnl_dereference(q->tap);
228
229 if (tap) {
230 if (q->enabled)
231 BUG_ON(tap_disable_queue(q));
232
233 tap->numqueues--;
234 RCU_INIT_POINTER(q->tap, NULL);
235 sock_put(&q->sk);
236 list_del_init(&q->next);
237 }
238
239 rtnl_unlock();
240
241 synchronize_rcu();
242 sock_put(&q->sk);
243}
244
245/*
246 * Select a queue based on the rxq of the device on which this packet
247 * arrived. If the incoming device is not mq, calculate a flow hash
248 * to select a queue. If all fails, find the first available queue.
249 * Cache vlan->numvtaps since it can become zero during the execution
250 * of this function.
251 */
252static struct tap_queue *tap_get_queue(struct tap_dev *tap,
253 struct sk_buff *skb)
254{
255 struct tap_queue *queue = NULL;
256 /* Access to taps array is protected by rcu, but access to numvtaps
257 * isn't. Below we use it to lookup a queue, but treat it as a hint
258 * and validate that the result isn't NULL - in case we are
259 * racing against queue removal.
260 */
261 int numvtaps = READ_ONCE(tap->numvtaps);
262 __u32 rxq;
263
264 if (!numvtaps)
265 goto out;
266
267 if (numvtaps == 1)
268 goto single;
269
270 /* Check if we can use flow to select a queue */
271 rxq = skb_get_hash(skb);
272 if (rxq) {
273 queue = rcu_dereference(tap->taps[rxq % numvtaps]);
274 goto out;
275 }
276
277 if (likely(skb_rx_queue_recorded(skb))) {
278 rxq = skb_get_rx_queue(skb);
279
280 while (unlikely(rxq >= numvtaps))
281 rxq -= numvtaps;
282
283 queue = rcu_dereference(tap->taps[rxq]);
284 goto out;
285 }
286
287single:
288 queue = rcu_dereference(tap->taps[0]);
289out:
290 return queue;
291}
292
293/*
294 * The net_device is going away, give up the reference
295 * that it holds on all queues and safely set the pointer
296 * from the queues to NULL.
297 */
298void tap_del_queues(struct tap_dev *tap)
299{
300 struct tap_queue *q, *tmp;
301
302 ASSERT_RTNL();
303 list_for_each_entry_safe(q, tmp, &tap->queue_list, next) {
304 list_del_init(&q->next);
305 RCU_INIT_POINTER(q->tap, NULL);
306 if (q->enabled)
307 tap->numvtaps--;
308 tap->numqueues--;
309 sock_put(&q->sk);
310 }
311 BUG_ON(tap->numvtaps);
312 BUG_ON(tap->numqueues);
313 /* guarantee that any future tap_set_queue will fail */
314 tap->numvtaps = MAX_TAP_QUEUES;
315}
316EXPORT_SYMBOL_GPL(tap_del_queues);
317
318rx_handler_result_t tap_handle_frame(struct sk_buff **pskb)
319{
320 struct sk_buff *skb = *pskb;
321 struct net_device *dev = skb->dev;
322 struct tap_dev *tap;
323 struct tap_queue *q;
324 netdev_features_t features = TAP_FEATURES;
325
326 tap = tap_dev_get_rcu(dev);
327 if (!tap)
328 return RX_HANDLER_PASS;
329
330 q = tap_get_queue(tap, skb);
331 if (!q)
332 return RX_HANDLER_PASS;
333
334 skb_push(skb, ETH_HLEN);
335
336 /* Apply the forward feature mask so that we perform segmentation
337 * according to users wishes. This only works if VNET_HDR is
338 * enabled.
339 */
340 if (q->flags & IFF_VNET_HDR)
341 features |= tap->tap_features;
342 if (netif_needs_gso(skb, features)) {
343 struct sk_buff *segs = __skb_gso_segment(skb, features, false);
344
345 if (IS_ERR(segs))
346 goto drop;
347
348 if (!segs) {
349 if (ptr_ring_produce(&q->ring, skb))
350 goto drop;
351 goto wake_up;
352 }
353
354 consume_skb(skb);
355 while (segs) {
356 struct sk_buff *nskb = segs->next;
357
358 segs->next = NULL;
359 if (ptr_ring_produce(&q->ring, segs)) {
360 kfree_skb(segs);
361 kfree_skb_list(nskb);
362 break;
363 }
364 segs = nskb;
365 }
366 } else {
367 /* If we receive a partial checksum and the tap side
368 * doesn't support checksum offload, compute the checksum.
369 * Note: it doesn't matter which checksum feature to
370 * check, we either support them all or none.
371 */
372 if (skb->ip_summed == CHECKSUM_PARTIAL &&
373 !(features & NETIF_F_CSUM_MASK) &&
374 skb_checksum_help(skb))
375 goto drop;
376 if (ptr_ring_produce(&q->ring, skb))
377 goto drop;
378 }
379
380wake_up:
381 wake_up_interruptible_poll(sk_sleep(&q->sk), EPOLLIN | EPOLLRDNORM | EPOLLRDBAND);
382 return RX_HANDLER_CONSUMED;
383
384drop:
385 /* Count errors/drops only here, thus don't care about args. */
386 if (tap->count_rx_dropped)
387 tap->count_rx_dropped(tap);
388 kfree_skb(skb);
389 return RX_HANDLER_CONSUMED;
390}
391EXPORT_SYMBOL_GPL(tap_handle_frame);
392
393static struct major_info *tap_get_major(int major)
394{
395 struct major_info *tap_major;
396
397 list_for_each_entry_rcu(tap_major, &major_list, next) {
398 if (tap_major->major == major)
399 return tap_major;
400 }
401
402 return NULL;
403}
404
405int tap_get_minor(dev_t major, struct tap_dev *tap)
406{
407 int retval = -ENOMEM;
408 struct major_info *tap_major;
409
410 rcu_read_lock();
411 tap_major = tap_get_major(MAJOR(major));
412 if (!tap_major) {
413 retval = -EINVAL;
414 goto unlock;
415 }
416
417 spin_lock(&tap_major->minor_lock);
418 retval = idr_alloc(&tap_major->minor_idr, tap, 1, TAP_NUM_DEVS, GFP_ATOMIC);
419 if (retval >= 0) {
420 tap->minor = retval;
421 } else if (retval == -ENOSPC) {
422 netdev_err(tap->dev, "Too many tap devices\n");
423 retval = -EINVAL;
424 }
425 spin_unlock(&tap_major->minor_lock);
426
427unlock:
428 rcu_read_unlock();
429 return retval < 0 ? retval : 0;
430}
431EXPORT_SYMBOL_GPL(tap_get_minor);
432
433void tap_free_minor(dev_t major, struct tap_dev *tap)
434{
435 struct major_info *tap_major;
436
437 rcu_read_lock();
438 tap_major = tap_get_major(MAJOR(major));
439 if (!tap_major) {
440 goto unlock;
441 }
442
443 spin_lock(&tap_major->minor_lock);
444 if (tap->minor) {
445 idr_remove(&tap_major->minor_idr, tap->minor);
446 tap->minor = 0;
447 }
448 spin_unlock(&tap_major->minor_lock);
449
450unlock:
451 rcu_read_unlock();
452}
453EXPORT_SYMBOL_GPL(tap_free_minor);
454
455static struct tap_dev *dev_get_by_tap_file(int major, int minor)
456{
457 struct net_device *dev = NULL;
458 struct tap_dev *tap;
459 struct major_info *tap_major;
460
461 rcu_read_lock();
462 tap_major = tap_get_major(major);
463 if (!tap_major) {
464 tap = NULL;
465 goto unlock;
466 }
467
468 spin_lock(&tap_major->minor_lock);
469 tap = idr_find(&tap_major->minor_idr, minor);
470 if (tap) {
471 dev = tap->dev;
472 dev_hold(dev);
473 }
474 spin_unlock(&tap_major->minor_lock);
475
476unlock:
477 rcu_read_unlock();
478 return tap;
479}
480
481static void tap_sock_write_space(struct sock *sk)
482{
483 wait_queue_head_t *wqueue;
484
485 if (!sock_writeable(sk) ||
486 !test_and_clear_bit(SOCKWQ_ASYNC_NOSPACE, &sk->sk_socket->flags))
487 return;
488
489 wqueue = sk_sleep(sk);
490 if (wqueue && waitqueue_active(wqueue))
491 wake_up_interruptible_poll(wqueue, EPOLLOUT | EPOLLWRNORM | EPOLLWRBAND);
492}
493
494static void tap_sock_destruct(struct sock *sk)
495{
496 struct tap_queue *q = container_of(sk, struct tap_queue, sk);
497
498 ptr_ring_cleanup(&q->ring, __skb_array_destroy_skb);
499}
500
501static int tap_open(struct inode *inode, struct file *file)
502{
503 struct net *net = current->nsproxy->net_ns;
504 struct tap_dev *tap;
505 struct tap_queue *q;
506 int err = -ENODEV;
507
508 rtnl_lock();
509 tap = dev_get_by_tap_file(imajor(inode), iminor(inode));
510 if (!tap)
511 goto err;
512
513 err = -ENOMEM;
514 q = (struct tap_queue *)sk_alloc(net, AF_UNSPEC, GFP_KERNEL,
515 &tap_proto, 0);
516 if (!q)
517 goto err;
518 if (ptr_ring_init(&q->ring, tap->dev->tx_queue_len, GFP_KERNEL)) {
519 sk_free(&q->sk);
520 goto err;
521 }
522
523 init_waitqueue_head(&q->sock.wq.wait);
524 q->sock.type = SOCK_RAW;
525 q->sock.state = SS_CONNECTED;
526 q->sock.file = file;
527 q->sock.ops = &tap_socket_ops;
528 sock_init_data_uid(&q->sock, &q->sk, current_fsuid());
529 q->sk.sk_write_space = tap_sock_write_space;
530 q->sk.sk_destruct = tap_sock_destruct;
531 q->flags = IFF_VNET_HDR | IFF_NO_PI | IFF_TAP;
532 q->vnet_hdr_sz = sizeof(struct virtio_net_hdr);
533
534 /*
535 * so far only KVM virtio_net uses tap, enable zero copy between
536 * guest kernel and host kernel when lower device supports zerocopy
537 *
538 * The macvlan supports zerocopy iff the lower device supports zero
539 * copy so we don't have to look at the lower device directly.
540 */
541 if ((tap->dev->features & NETIF_F_HIGHDMA) && (tap->dev->features & NETIF_F_SG))
542 sock_set_flag(&q->sk, SOCK_ZEROCOPY);
543
544 err = tap_set_queue(tap, file, q);
545 if (err) {
546 /* tap_sock_destruct() will take care of freeing ptr_ring */
547 goto err_put;
548 }
549
550 dev_put(tap->dev);
551
552 rtnl_unlock();
553 return err;
554
555err_put:
556 sock_put(&q->sk);
557err:
558 if (tap)
559 dev_put(tap->dev);
560
561 rtnl_unlock();
562 return err;
563}
564
565static int tap_release(struct inode *inode, struct file *file)
566{
567 struct tap_queue *q = file->private_data;
568 tap_put_queue(q);
569 return 0;
570}
571
572static __poll_t tap_poll(struct file *file, poll_table *wait)
573{
574 struct tap_queue *q = file->private_data;
575 __poll_t mask = EPOLLERR;
576
577 if (!q)
578 goto out;
579
580 mask = 0;
581 poll_wait(file, &q->sock.wq.wait, wait);
582
583 if (!ptr_ring_empty(&q->ring))
584 mask |= EPOLLIN | EPOLLRDNORM;
585
586 if (sock_writeable(&q->sk) ||
587 (!test_and_set_bit(SOCKWQ_ASYNC_NOSPACE, &q->sock.flags) &&
588 sock_writeable(&q->sk)))
589 mask |= EPOLLOUT | EPOLLWRNORM;
590
591out:
592 return mask;
593}
594
595static inline struct sk_buff *tap_alloc_skb(struct sock *sk, size_t prepad,
596 size_t len, size_t linear,
597 int noblock, int *err)
598{
599 struct sk_buff *skb;
600
601 /* Under a page? Don't bother with paged skb. */
602 if (prepad + len < PAGE_SIZE || !linear)
603 linear = len;
604
605 skb = sock_alloc_send_pskb(sk, prepad + linear, len - linear, noblock,
606 err, 0);
607 if (!skb)
608 return NULL;
609
610 skb_reserve(skb, prepad);
611 skb_put(skb, linear);
612 skb->data_len = len - linear;
613 skb->len += len - linear;
614
615 return skb;
616}
617
618/* Neighbour code has some assumptions on HH_DATA_MOD alignment */
619#define TAP_RESERVE HH_DATA_OFF(ETH_HLEN)
620
621/* Get packet from user space buffer */
622static ssize_t tap_get_user(struct tap_queue *q, void *msg_control,
623 struct iov_iter *from, int noblock)
624{
625 int good_linear = SKB_MAX_HEAD(TAP_RESERVE);
626 struct sk_buff *skb;
627 struct tap_dev *tap;
628 unsigned long total_len = iov_iter_count(from);
629 unsigned long len = total_len;
630 int err;
631 struct virtio_net_hdr vnet_hdr = { 0 };
632 int vnet_hdr_len = 0;
633 int copylen = 0;
634 int depth;
635 bool zerocopy = false;
636 size_t linear;
637
638 if (q->flags & IFF_VNET_HDR) {
639 vnet_hdr_len = READ_ONCE(q->vnet_hdr_sz);
640
641 err = -EINVAL;
642 if (len < vnet_hdr_len)
643 goto err;
644 len -= vnet_hdr_len;
645
646 err = -EFAULT;
647 if (!copy_from_iter_full(&vnet_hdr, sizeof(vnet_hdr), from))
648 goto err;
649 iov_iter_advance(from, vnet_hdr_len - sizeof(vnet_hdr));
650 if ((vnet_hdr.flags & VIRTIO_NET_HDR_F_NEEDS_CSUM) &&
651 tap16_to_cpu(q, vnet_hdr.csum_start) +
652 tap16_to_cpu(q, vnet_hdr.csum_offset) + 2 >
653 tap16_to_cpu(q, vnet_hdr.hdr_len))
654 vnet_hdr.hdr_len = cpu_to_tap16(q,
655 tap16_to_cpu(q, vnet_hdr.csum_start) +
656 tap16_to_cpu(q, vnet_hdr.csum_offset) + 2);
657 err = -EINVAL;
658 if (tap16_to_cpu(q, vnet_hdr.hdr_len) > len)
659 goto err;
660 }
661
662 err = -EINVAL;
663 if (unlikely(len < ETH_HLEN))
664 goto err;
665
666 if (msg_control && sock_flag(&q->sk, SOCK_ZEROCOPY)) {
667 struct iov_iter i;
668
669 copylen = vnet_hdr.hdr_len ?
670 tap16_to_cpu(q, vnet_hdr.hdr_len) : GOODCOPY_LEN;
671 if (copylen > good_linear)
672 copylen = good_linear;
673 else if (copylen < ETH_HLEN)
674 copylen = ETH_HLEN;
675 linear = copylen;
676 i = *from;
677 iov_iter_advance(&i, copylen);
678 if (iov_iter_npages(&i, INT_MAX) <= MAX_SKB_FRAGS)
679 zerocopy = true;
680 }
681
682 if (!zerocopy) {
683 copylen = len;
684 linear = tap16_to_cpu(q, vnet_hdr.hdr_len);
685 if (linear > good_linear)
686 linear = good_linear;
687 else if (linear < ETH_HLEN)
688 linear = ETH_HLEN;
689 }
690
691 skb = tap_alloc_skb(&q->sk, TAP_RESERVE, copylen,
692 linear, noblock, &err);
693 if (!skb)
694 goto err;
695
696 if (zerocopy)
697 err = zerocopy_sg_from_iter(skb, from);
698 else
699 err = skb_copy_datagram_from_iter(skb, 0, from, len);
700
701 if (err)
702 goto err_kfree;
703
704 skb_set_network_header(skb, ETH_HLEN);
705 skb_reset_mac_header(skb);
706 skb->protocol = eth_hdr(skb)->h_proto;
707
708 if (vnet_hdr_len) {
709 err = virtio_net_hdr_to_skb(skb, &vnet_hdr,
710 tap_is_little_endian(q));
711 if (err)
712 goto err_kfree;
713 }
714
715 skb_probe_transport_header(skb);
716
717 /* Move network header to the right position for VLAN tagged packets */
718 if (eth_type_vlan(skb->protocol) &&
719 vlan_get_protocol_and_depth(skb, skb->protocol, &depth) != 0)
720 skb_set_network_header(skb, depth);
721
722 rcu_read_lock();
723 tap = rcu_dereference(q->tap);
724 /* copy skb_ubuf_info for callback when skb has no error */
725 if (zerocopy) {
726 skb_shinfo(skb)->destructor_arg = msg_control;
727 skb_shinfo(skb)->tx_flags |= SKBTX_DEV_ZEROCOPY;
728 skb_shinfo(skb)->tx_flags |= SKBTX_SHARED_FRAG;
729 } else if (msg_control) {
730 struct ubuf_info *uarg = msg_control;
731 uarg->callback(uarg, false);
732 }
733
734 if (tap) {
735 skb->dev = tap->dev;
736 dev_queue_xmit(skb);
737 } else {
738 kfree_skb(skb);
739 }
740 rcu_read_unlock();
741
742 return total_len;
743
744err_kfree:
745 kfree_skb(skb);
746
747err:
748 rcu_read_lock();
749 tap = rcu_dereference(q->tap);
750 if (tap && tap->count_tx_dropped)
751 tap->count_tx_dropped(tap);
752 rcu_read_unlock();
753
754 return err;
755}
756
757static ssize_t tap_write_iter(struct kiocb *iocb, struct iov_iter *from)
758{
759 struct file *file = iocb->ki_filp;
760 struct tap_queue *q = file->private_data;
761
762 return tap_get_user(q, NULL, from, file->f_flags & O_NONBLOCK);
763}
764
765/* Put packet to the user space buffer */
766static ssize_t tap_put_user(struct tap_queue *q,
767 const struct sk_buff *skb,
768 struct iov_iter *iter)
769{
770 int ret;
771 int vnet_hdr_len = 0;
772 int vlan_offset = 0;
773 int total;
774
775 if (q->flags & IFF_VNET_HDR) {
776 int vlan_hlen = skb_vlan_tag_present(skb) ? VLAN_HLEN : 0;
777 struct virtio_net_hdr vnet_hdr;
778
779 vnet_hdr_len = READ_ONCE(q->vnet_hdr_sz);
780 if (iov_iter_count(iter) < vnet_hdr_len)
781 return -EINVAL;
782
783 if (virtio_net_hdr_from_skb(skb, &vnet_hdr,
784 tap_is_little_endian(q), true,
785 vlan_hlen))
786 BUG();
787
788 if (copy_to_iter(&vnet_hdr, sizeof(vnet_hdr), iter) !=
789 sizeof(vnet_hdr))
790 return -EFAULT;
791
792 iov_iter_advance(iter, vnet_hdr_len - sizeof(vnet_hdr));
793 }
794 total = vnet_hdr_len;
795 total += skb->len;
796
797 if (skb_vlan_tag_present(skb)) {
798 struct {
799 __be16 h_vlan_proto;
800 __be16 h_vlan_TCI;
801 } veth;
802 veth.h_vlan_proto = skb->vlan_proto;
803 veth.h_vlan_TCI = htons(skb_vlan_tag_get(skb));
804
805 vlan_offset = offsetof(struct vlan_ethhdr, h_vlan_proto);
806 total += VLAN_HLEN;
807
808 ret = skb_copy_datagram_iter(skb, 0, iter, vlan_offset);
809 if (ret || !iov_iter_count(iter))
810 goto done;
811
812 ret = copy_to_iter(&veth, sizeof(veth), iter);
813 if (ret != sizeof(veth) || !iov_iter_count(iter))
814 goto done;
815 }
816
817 ret = skb_copy_datagram_iter(skb, vlan_offset, iter,
818 skb->len - vlan_offset);
819
820done:
821 return ret ? ret : total;
822}
823
824static ssize_t tap_do_read(struct tap_queue *q,
825 struct iov_iter *to,
826 int noblock, struct sk_buff *skb)
827{
828 DEFINE_WAIT(wait);
829 ssize_t ret = 0;
830
831 if (!iov_iter_count(to)) {
832 kfree_skb(skb);
833 return 0;
834 }
835
836 if (skb)
837 goto put;
838
839 while (1) {
840 if (!noblock)
841 prepare_to_wait(sk_sleep(&q->sk), &wait,
842 TASK_INTERRUPTIBLE);
843
844 /* Read frames from the queue */
845 skb = ptr_ring_consume(&q->ring);
846 if (skb)
847 break;
848 if (noblock) {
849 ret = -EAGAIN;
850 break;
851 }
852 if (signal_pending(current)) {
853 ret = -ERESTARTSYS;
854 break;
855 }
856 /* Nothing to read, let's sleep */
857 schedule();
858 }
859 if (!noblock)
860 finish_wait(sk_sleep(&q->sk), &wait);
861
862put:
863 if (skb) {
864 ret = tap_put_user(q, skb, to);
865 if (unlikely(ret < 0))
866 kfree_skb(skb);
867 else
868 consume_skb(skb);
869 }
870 return ret;
871}
872
873static ssize_t tap_read_iter(struct kiocb *iocb, struct iov_iter *to)
874{
875 struct file *file = iocb->ki_filp;
876 struct tap_queue *q = file->private_data;
877 ssize_t len = iov_iter_count(to), ret;
878
879 ret = tap_do_read(q, to, file->f_flags & O_NONBLOCK, NULL);
880 ret = min_t(ssize_t, ret, len);
881 if (ret > 0)
882 iocb->ki_pos = ret;
883 return ret;
884}
885
886static struct tap_dev *tap_get_tap_dev(struct tap_queue *q)
887{
888 struct tap_dev *tap;
889
890 ASSERT_RTNL();
891 tap = rtnl_dereference(q->tap);
892 if (tap)
893 dev_hold(tap->dev);
894
895 return tap;
896}
897
898static void tap_put_tap_dev(struct tap_dev *tap)
899{
900 dev_put(tap->dev);
901}
902
903static int tap_ioctl_set_queue(struct file *file, unsigned int flags)
904{
905 struct tap_queue *q = file->private_data;
906 struct tap_dev *tap;
907 int ret;
908
909 tap = tap_get_tap_dev(q);
910 if (!tap)
911 return -EINVAL;
912
913 if (flags & IFF_ATTACH_QUEUE)
914 ret = tap_enable_queue(tap, file, q);
915 else if (flags & IFF_DETACH_QUEUE)
916 ret = tap_disable_queue(q);
917 else
918 ret = -EINVAL;
919
920 tap_put_tap_dev(tap);
921 return ret;
922}
923
924static int set_offload(struct tap_queue *q, unsigned long arg)
925{
926 struct tap_dev *tap;
927 netdev_features_t features;
928 netdev_features_t feature_mask = 0;
929
930 tap = rtnl_dereference(q->tap);
931 if (!tap)
932 return -ENOLINK;
933
934 features = tap->dev->features;
935
936 if (arg & TUN_F_CSUM) {
937 feature_mask = NETIF_F_HW_CSUM;
938
939 if (arg & (TUN_F_TSO4 | TUN_F_TSO6)) {
940 if (arg & TUN_F_TSO_ECN)
941 feature_mask |= NETIF_F_TSO_ECN;
942 if (arg & TUN_F_TSO4)
943 feature_mask |= NETIF_F_TSO;
944 if (arg & TUN_F_TSO6)
945 feature_mask |= NETIF_F_TSO6;
946 }
947 }
948
949 /* tun/tap driver inverts the usage for TSO offloads, where
950 * setting the TSO bit means that the userspace wants to
951 * accept TSO frames and turning it off means that user space
952 * does not support TSO.
953 * For tap, we have to invert it to mean the same thing.
954 * When user space turns off TSO, we turn off GSO/LRO so that
955 * user-space will not receive TSO frames.
956 */
957 if (feature_mask & (NETIF_F_TSO | NETIF_F_TSO6))
958 features |= RX_OFFLOADS;
959 else
960 features &= ~RX_OFFLOADS;
961
962 /* tap_features are the same as features on tun/tap and
963 * reflect user expectations.
964 */
965 tap->tap_features = feature_mask;
966 if (tap->update_features)
967 tap->update_features(tap, features);
968
969 return 0;
970}
971
972/*
973 * provide compatibility with generic tun/tap interface
974 */
975static long tap_ioctl(struct file *file, unsigned int cmd,
976 unsigned long arg)
977{
978 struct tap_queue *q = file->private_data;
979 struct tap_dev *tap;
980 void __user *argp = (void __user *)arg;
981 struct ifreq __user *ifr = argp;
982 unsigned int __user *up = argp;
983 unsigned short u;
984 int __user *sp = argp;
985 struct sockaddr sa;
986 int s;
987 int ret;
988
989 switch (cmd) {
990 case TUNSETIFF:
991 /* ignore the name, just look at flags */
992 if (get_user(u, &ifr->ifr_flags))
993 return -EFAULT;
994
995 ret = 0;
996 if ((u & ~TAP_IFFEATURES) != (IFF_NO_PI | IFF_TAP))
997 ret = -EINVAL;
998 else
999 q->flags = (q->flags & ~TAP_IFFEATURES) | u;
1000
1001 return ret;
1002
1003 case TUNGETIFF:
1004 rtnl_lock();
1005 tap = tap_get_tap_dev(q);
1006 if (!tap) {
1007 rtnl_unlock();
1008 return -ENOLINK;
1009 }
1010
1011 ret = 0;
1012 u = q->flags;
1013 if (copy_to_user(&ifr->ifr_name, tap->dev->name, IFNAMSIZ) ||
1014 put_user(u, &ifr->ifr_flags))
1015 ret = -EFAULT;
1016 tap_put_tap_dev(tap);
1017 rtnl_unlock();
1018 return ret;
1019
1020 case TUNSETQUEUE:
1021 if (get_user(u, &ifr->ifr_flags))
1022 return -EFAULT;
1023 rtnl_lock();
1024 ret = tap_ioctl_set_queue(file, u);
1025 rtnl_unlock();
1026 return ret;
1027
1028 case TUNGETFEATURES:
1029 if (put_user(IFF_TAP | IFF_NO_PI | TAP_IFFEATURES, up))
1030 return -EFAULT;
1031 return 0;
1032
1033 case TUNSETSNDBUF:
1034 if (get_user(s, sp))
1035 return -EFAULT;
1036 if (s <= 0)
1037 return -EINVAL;
1038
1039 q->sk.sk_sndbuf = s;
1040 return 0;
1041
1042 case TUNGETVNETHDRSZ:
1043 s = q->vnet_hdr_sz;
1044 if (put_user(s, sp))
1045 return -EFAULT;
1046 return 0;
1047
1048 case TUNSETVNETHDRSZ:
1049 if (get_user(s, sp))
1050 return -EFAULT;
1051 if (s < (int)sizeof(struct virtio_net_hdr))
1052 return -EINVAL;
1053
1054 q->vnet_hdr_sz = s;
1055 return 0;
1056
1057 case TUNGETVNETLE:
1058 s = !!(q->flags & TAP_VNET_LE);
1059 if (put_user(s, sp))
1060 return -EFAULT;
1061 return 0;
1062
1063 case TUNSETVNETLE:
1064 if (get_user(s, sp))
1065 return -EFAULT;
1066 if (s)
1067 q->flags |= TAP_VNET_LE;
1068 else
1069 q->flags &= ~TAP_VNET_LE;
1070 return 0;
1071
1072 case TUNGETVNETBE:
1073 return tap_get_vnet_be(q, sp);
1074
1075 case TUNSETVNETBE:
1076 return tap_set_vnet_be(q, sp);
1077
1078 case TUNSETOFFLOAD:
1079 /* let the user check for future flags */
1080 if (arg & ~(TUN_F_CSUM | TUN_F_TSO4 | TUN_F_TSO6 |
1081 TUN_F_TSO_ECN | TUN_F_UFO))
1082 return -EINVAL;
1083
1084 rtnl_lock();
1085 ret = set_offload(q, arg);
1086 rtnl_unlock();
1087 return ret;
1088
1089 case SIOCGIFHWADDR:
1090 rtnl_lock();
1091 tap = tap_get_tap_dev(q);
1092 if (!tap) {
1093 rtnl_unlock();
1094 return -ENOLINK;
1095 }
1096 ret = 0;
1097 dev_get_mac_address(&sa, dev_net(tap->dev), tap->dev->name);
1098 if (copy_to_user(&ifr->ifr_name, tap->dev->name, IFNAMSIZ) ||
1099 copy_to_user(&ifr->ifr_hwaddr, &sa, sizeof(sa)))
1100 ret = -EFAULT;
1101 tap_put_tap_dev(tap);
1102 rtnl_unlock();
1103 return ret;
1104
1105 case SIOCSIFHWADDR:
1106 if (copy_from_user(&sa, &ifr->ifr_hwaddr, sizeof(sa)))
1107 return -EFAULT;
1108 rtnl_lock();
1109 tap = tap_get_tap_dev(q);
1110 if (!tap) {
1111 rtnl_unlock();
1112 return -ENOLINK;
1113 }
1114 ret = dev_set_mac_address_user(tap->dev, &sa, NULL);
1115 tap_put_tap_dev(tap);
1116 rtnl_unlock();
1117 return ret;
1118
1119 default:
1120 return -EINVAL;
1121 }
1122}
1123
1124#ifdef CONFIG_COMPAT
1125static long tap_compat_ioctl(struct file *file, unsigned int cmd,
1126 unsigned long arg)
1127{
1128 return tap_ioctl(file, cmd, (unsigned long)compat_ptr(arg));
1129}
1130#endif
1131
1132static const struct file_operations tap_fops = {
1133 .owner = THIS_MODULE,
1134 .open = tap_open,
1135 .release = tap_release,
1136 .read_iter = tap_read_iter,
1137 .write_iter = tap_write_iter,
1138 .poll = tap_poll,
1139 .llseek = no_llseek,
1140 .unlocked_ioctl = tap_ioctl,
1141#ifdef CONFIG_COMPAT
1142 .compat_ioctl = tap_compat_ioctl,
1143#endif
1144};
1145
1146static int tap_get_user_xdp(struct tap_queue *q, struct xdp_buff *xdp)
1147{
1148 struct tun_xdp_hdr *hdr = xdp->data_hard_start;
1149 struct virtio_net_hdr *gso = &hdr->gso;
1150 int buflen = hdr->buflen;
1151 int vnet_hdr_len = 0;
1152 struct tap_dev *tap;
1153 struct sk_buff *skb;
1154 int err, depth;
1155
1156 if (unlikely(xdp->data_end - xdp->data < ETH_HLEN)) {
1157 err = -EINVAL;
1158 goto err;
1159 }
1160
1161 if (q->flags & IFF_VNET_HDR)
1162 vnet_hdr_len = READ_ONCE(q->vnet_hdr_sz);
1163
1164 skb = build_skb(xdp->data_hard_start, buflen);
1165 if (!skb) {
1166 err = -ENOMEM;
1167 goto err;
1168 }
1169
1170 skb_reserve(skb, xdp->data - xdp->data_hard_start);
1171 skb_put(skb, xdp->data_end - xdp->data);
1172
1173 skb_set_network_header(skb, ETH_HLEN);
1174 skb_reset_mac_header(skb);
1175 skb->protocol = eth_hdr(skb)->h_proto;
1176
1177 if (vnet_hdr_len) {
1178 err = virtio_net_hdr_to_skb(skb, gso, tap_is_little_endian(q));
1179 if (err)
1180 goto err_kfree;
1181 }
1182
1183 /* Move network header to the right position for VLAN tagged packets */
1184 if (eth_type_vlan(skb->protocol) &&
1185 vlan_get_protocol_and_depth(skb, skb->protocol, &depth) != 0)
1186 skb_set_network_header(skb, depth);
1187
1188 rcu_read_lock();
1189 tap = rcu_dereference(q->tap);
1190 if (tap) {
1191 skb->dev = tap->dev;
1192 skb_probe_transport_header(skb);
1193 dev_queue_xmit(skb);
1194 } else {
1195 kfree_skb(skb);
1196 }
1197 rcu_read_unlock();
1198
1199 return 0;
1200
1201err_kfree:
1202 kfree_skb(skb);
1203err:
1204 rcu_read_lock();
1205 tap = rcu_dereference(q->tap);
1206 if (tap && tap->count_tx_dropped)
1207 tap->count_tx_dropped(tap);
1208 rcu_read_unlock();
1209 return err;
1210}
1211
1212static int tap_sendmsg(struct socket *sock, struct msghdr *m,
1213 size_t total_len)
1214{
1215 struct tap_queue *q = container_of(sock, struct tap_queue, sock);
1216 struct tun_msg_ctl *ctl = m->msg_control;
1217 struct xdp_buff *xdp;
1218 int i;
1219
1220 if (m->msg_controllen == sizeof(struct tun_msg_ctl) &&
1221 ctl && ctl->type == TUN_MSG_PTR) {
1222 for (i = 0; i < ctl->num; i++) {
1223 xdp = &((struct xdp_buff *)ctl->ptr)[i];
1224 tap_get_user_xdp(q, xdp);
1225 }
1226 return 0;
1227 }
1228
1229 return tap_get_user(q, ctl ? ctl->ptr : NULL, &m->msg_iter,
1230 m->msg_flags & MSG_DONTWAIT);
1231}
1232
1233static int tap_recvmsg(struct socket *sock, struct msghdr *m,
1234 size_t total_len, int flags)
1235{
1236 struct tap_queue *q = container_of(sock, struct tap_queue, sock);
1237 struct sk_buff *skb = m->msg_control;
1238 int ret;
1239 if (flags & ~(MSG_DONTWAIT|MSG_TRUNC)) {
1240 kfree_skb(skb);
1241 return -EINVAL;
1242 }
1243 ret = tap_do_read(q, &m->msg_iter, flags & MSG_DONTWAIT, skb);
1244 if (ret > total_len) {
1245 m->msg_flags |= MSG_TRUNC;
1246 ret = flags & MSG_TRUNC ? ret : total_len;
1247 }
1248 return ret;
1249}
1250
1251static int tap_peek_len(struct socket *sock)
1252{
1253 struct tap_queue *q = container_of(sock, struct tap_queue,
1254 sock);
1255 return PTR_RING_PEEK_CALL(&q->ring, __skb_array_len_with_tag);
1256}
1257
1258/* Ops structure to mimic raw sockets with tun */
1259static const struct proto_ops tap_socket_ops = {
1260 .sendmsg = tap_sendmsg,
1261 .recvmsg = tap_recvmsg,
1262 .peek_len = tap_peek_len,
1263};
1264
1265/* Get an underlying socket object from tun file. Returns error unless file is
1266 * attached to a device. The returned object works like a packet socket, it
1267 * can be used for sock_sendmsg/sock_recvmsg. The caller is responsible for
1268 * holding a reference to the file for as long as the socket is in use. */
1269struct socket *tap_get_socket(struct file *file)
1270{
1271 struct tap_queue *q;
1272 if (file->f_op != &tap_fops)
1273 return ERR_PTR(-EINVAL);
1274 q = file->private_data;
1275 if (!q)
1276 return ERR_PTR(-EBADFD);
1277 return &q->sock;
1278}
1279EXPORT_SYMBOL_GPL(tap_get_socket);
1280
1281struct ptr_ring *tap_get_ptr_ring(struct file *file)
1282{
1283 struct tap_queue *q;
1284
1285 if (file->f_op != &tap_fops)
1286 return ERR_PTR(-EINVAL);
1287 q = file->private_data;
1288 if (!q)
1289 return ERR_PTR(-EBADFD);
1290 return &q->ring;
1291}
1292EXPORT_SYMBOL_GPL(tap_get_ptr_ring);
1293
1294int tap_queue_resize(struct tap_dev *tap)
1295{
1296 struct net_device *dev = tap->dev;
1297 struct tap_queue *q;
1298 struct ptr_ring **rings;
1299 int n = tap->numqueues;
1300 int ret, i = 0;
1301
1302 rings = kmalloc_array(n, sizeof(*rings), GFP_KERNEL);
1303 if (!rings)
1304 return -ENOMEM;
1305
1306 list_for_each_entry(q, &tap->queue_list, next)
1307 rings[i++] = &q->ring;
1308
1309 ret = ptr_ring_resize_multiple(rings, n,
1310 dev->tx_queue_len, GFP_KERNEL,
1311 __skb_array_destroy_skb);
1312
1313 kfree(rings);
1314 return ret;
1315}
1316EXPORT_SYMBOL_GPL(tap_queue_resize);
1317
1318static int tap_list_add(dev_t major, const char *device_name)
1319{
1320 struct major_info *tap_major;
1321
1322 tap_major = kzalloc(sizeof(*tap_major), GFP_ATOMIC);
1323 if (!tap_major)
1324 return -ENOMEM;
1325
1326 tap_major->major = MAJOR(major);
1327
1328 idr_init(&tap_major->minor_idr);
1329 spin_lock_init(&tap_major->minor_lock);
1330
1331 tap_major->device_name = device_name;
1332
1333 list_add_tail_rcu(&tap_major->next, &major_list);
1334 return 0;
1335}
1336
1337int tap_create_cdev(struct cdev *tap_cdev, dev_t *tap_major,
1338 const char *device_name, struct module *module)
1339{
1340 int err;
1341
1342 err = alloc_chrdev_region(tap_major, 0, TAP_NUM_DEVS, device_name);
1343 if (err)
1344 goto out1;
1345
1346 cdev_init(tap_cdev, &tap_fops);
1347 tap_cdev->owner = module;
1348 err = cdev_add(tap_cdev, *tap_major, TAP_NUM_DEVS);
1349 if (err)
1350 goto out2;
1351
1352 err = tap_list_add(*tap_major, device_name);
1353 if (err)
1354 goto out3;
1355
1356 return 0;
1357
1358out3:
1359 cdev_del(tap_cdev);
1360out2:
1361 unregister_chrdev_region(*tap_major, TAP_NUM_DEVS);
1362out1:
1363 return err;
1364}
1365EXPORT_SYMBOL_GPL(tap_create_cdev);
1366
1367void tap_destroy_cdev(dev_t major, struct cdev *tap_cdev)
1368{
1369 struct major_info *tap_major, *tmp;
1370
1371 cdev_del(tap_cdev);
1372 unregister_chrdev_region(major, TAP_NUM_DEVS);
1373 list_for_each_entry_safe(tap_major, tmp, &major_list, next) {
1374 if (tap_major->major == MAJOR(major)) {
1375 idr_destroy(&tap_major->minor_idr);
1376 list_del_rcu(&tap_major->next);
1377 kfree_rcu(tap_major, rcu);
1378 }
1379 }
1380}
1381EXPORT_SYMBOL_GPL(tap_destroy_cdev);
1382
1383MODULE_AUTHOR("Arnd Bergmann <arnd@arndb.de>");
1384MODULE_AUTHOR("Sainath Grandhi <sainath.grandhi@intel.com>");
1385MODULE_LICENSE("GPL");