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