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