macvtap: zerocopy: set SKBTX_DEV_ZEROCOPY only when skb is built successfully
[deliverable/linux.git] / drivers / net / macvtap.c
CommitLineData
20d29d7a
AB
1#include <linux/etherdevice.h>
2#include <linux/if_macvlan.h>
3#include <linux/interrupt.h>
4#include <linux/nsproxy.h>
5#include <linux/compat.h>
6#include <linux/if_tun.h>
7#include <linux/module.h>
8#include <linux/skbuff.h>
9#include <linux/cache.h>
10#include <linux/sched.h>
11#include <linux/types.h>
5a0e3ad6 12#include <linux/slab.h>
20d29d7a
AB
13#include <linux/init.h>
14#include <linux/wait.h>
15#include <linux/cdev.h>
40401530 16#include <linux/idr.h>
20d29d7a
AB
17#include <linux/fs.h>
18
19#include <net/net_namespace.h>
20#include <net/rtnetlink.h>
21#include <net/sock.h>
b9fb9ee0 22#include <linux/virtio_net.h>
20d29d7a
AB
23
24/*
25 * A macvtap queue is the central object of this driver, it connects
26 * an open character device to a macvlan interface. There can be
27 * multiple queues on one interface, which map back to queues
28 * implemented in hardware on the underlying device.
29 *
30 * macvtap_proto is used to allocate queues through the sock allocation
31 * mechanism.
32 *
33 * TODO: multiqueue support is currently not implemented, even though
34 * macvtap is basically prepared for that. We will need to add this
35 * here as well as in virtio-net and qemu to get line rate on 10gbit
36 * adapters from a guest.
37 */
38struct macvtap_queue {
39 struct sock sk;
40 struct socket sock;
43815482 41 struct socket_wq wq;
55afbd08 42 int vnet_hdr_sz;
13707f9e 43 struct macvlan_dev __rcu *vlan;
20d29d7a 44 struct file *file;
b9fb9ee0 45 unsigned int flags;
20d29d7a
AB
46};
47
48static struct proto macvtap_proto = {
49 .name = "macvtap",
50 .owner = THIS_MODULE,
51 .obj_size = sizeof (struct macvtap_queue),
52};
53
54/*
e09eff7f 55 * Variables for dealing with macvtaps device numbers.
20d29d7a 56 */
1ebed71a 57static dev_t macvtap_major;
e09eff7f
EB
58#define MACVTAP_NUM_DEVS (1U << MINORBITS)
59static DEFINE_MUTEX(minor_lock);
60static DEFINE_IDR(minor_idr);
61
97bc3633 62#define GOODCOPY_LEN 128
20d29d7a
AB
63static struct class *macvtap_class;
64static struct cdev macvtap_cdev;
65
501c774c
AB
66static const struct proto_ops macvtap_socket_ops;
67
20d29d7a
AB
68/*
69 * RCU usage:
02df55d2
AB
70 * The macvtap_queue and the macvlan_dev are loosely coupled, the
71 * pointers from one to the other can only be read while rcu_read_lock
72 * or macvtap_lock is held.
20d29d7a 73 *
02df55d2
AB
74 * Both the file and the macvlan_dev hold a reference on the macvtap_queue
75 * through sock_hold(&q->sk). When the macvlan_dev goes away first,
76 * q->vlan becomes inaccessible. When the files gets closed,
77 * macvtap_get_queue() fails.
20d29d7a 78 *
02df55d2
AB
79 * There may still be references to the struct sock inside of the
80 * queue from outbound SKBs, but these never reference back to the
81 * file or the dev. The data structure is freed through __sk_free
82 * when both our references and any pending SKBs are gone.
20d29d7a
AB
83 */
84static DEFINE_SPINLOCK(macvtap_lock);
85
86/*
1565c7c1
KK
87 * get_slot: return a [unused/occupied] slot in vlan->taps[]:
88 * - if 'q' is NULL, return the first empty slot;
89 * - otherwise, return the slot this pointer occupies.
20d29d7a 90 */
1565c7c1
KK
91static int get_slot(struct macvlan_dev *vlan, struct macvtap_queue *q)
92{
93 int i;
94
95 for (i = 0; i < MAX_MACVTAP_QUEUES; i++) {
96 if (rcu_dereference(vlan->taps[i]) == q)
97 return i;
98 }
99
100 /* Should never happen */
101 BUG_ON(1);
102}
103
20d29d7a
AB
104static int macvtap_set_queue(struct net_device *dev, struct file *file,
105 struct macvtap_queue *q)
106{
107 struct macvlan_dev *vlan = netdev_priv(dev);
1565c7c1 108 int index;
20d29d7a
AB
109 int err = -EBUSY;
110
111 spin_lock(&macvtap_lock);
1565c7c1 112 if (vlan->numvtaps == MAX_MACVTAP_QUEUES)
20d29d7a
AB
113 goto out;
114
115 err = 0;
1565c7c1 116 index = get_slot(vlan, NULL);
02df55d2 117 rcu_assign_pointer(q->vlan, vlan);
1565c7c1 118 rcu_assign_pointer(vlan->taps[index], q);
02df55d2 119 sock_hold(&q->sk);
20d29d7a
AB
120
121 q->file = file;
02df55d2 122 file->private_data = q;
20d29d7a 123
1565c7c1
KK
124 vlan->numvtaps++;
125
20d29d7a
AB
126out:
127 spin_unlock(&macvtap_lock);
128 return err;
129}
130
131/*
02df55d2
AB
132 * The file owning the queue got closed, give up both
133 * the reference that the files holds as well as the
134 * one from the macvlan_dev if that still exists.
20d29d7a
AB
135 *
136 * Using the spinlock makes sure that we don't get
137 * to the queue again after destroying it.
20d29d7a 138 */
02df55d2 139static void macvtap_put_queue(struct macvtap_queue *q)
20d29d7a 140{
02df55d2 141 struct macvlan_dev *vlan;
20d29d7a
AB
142
143 spin_lock(&macvtap_lock);
13707f9e
ED
144 vlan = rcu_dereference_protected(q->vlan,
145 lockdep_is_held(&macvtap_lock));
02df55d2 146 if (vlan) {
1565c7c1
KK
147 int index = get_slot(vlan, q);
148
2cfa5a04
ED
149 RCU_INIT_POINTER(vlan->taps[index], NULL);
150 RCU_INIT_POINTER(q->vlan, NULL);
02df55d2 151 sock_put(&q->sk);
1565c7c1 152 --vlan->numvtaps;
20d29d7a
AB
153 }
154
20d29d7a
AB
155 spin_unlock(&macvtap_lock);
156
157 synchronize_rcu();
158 sock_put(&q->sk);
159}
160
161/*
1565c7c1
KK
162 * Select a queue based on the rxq of the device on which this packet
163 * arrived. If the incoming device is not mq, calculate a flow hash
164 * to select a queue. If all fails, find the first available queue.
165 * Cache vlan->numvtaps since it can become zero during the execution
166 * of this function.
20d29d7a
AB
167 */
168static struct macvtap_queue *macvtap_get_queue(struct net_device *dev,
169 struct sk_buff *skb)
170{
171 struct macvlan_dev *vlan = netdev_priv(dev);
1565c7c1
KK
172 struct macvtap_queue *tap = NULL;
173 int numvtaps = vlan->numvtaps;
174 __u32 rxq;
175
176 if (!numvtaps)
177 goto out;
178
ef0002b5
KK
179 /* Check if we can use flow to select a queue */
180 rxq = skb_get_rxhash(skb);
181 if (rxq) {
182 tap = rcu_dereference(vlan->taps[rxq % numvtaps]);
183 if (tap)
184 goto out;
185 }
186
1565c7c1
KK
187 if (likely(skb_rx_queue_recorded(skb))) {
188 rxq = skb_get_rx_queue(skb);
20d29d7a 189
1565c7c1
KK
190 while (unlikely(rxq >= numvtaps))
191 rxq -= numvtaps;
192
193 tap = rcu_dereference(vlan->taps[rxq]);
194 if (tap)
195 goto out;
196 }
197
1565c7c1
KK
198 /* Everything failed - find first available queue */
199 for (rxq = 0; rxq < MAX_MACVTAP_QUEUES; rxq++) {
200 tap = rcu_dereference(vlan->taps[rxq]);
201 if (tap)
202 break;
203 }
204
205out:
206 return tap;
20d29d7a
AB
207}
208
02df55d2
AB
209/*
210 * The net_device is going away, give up the reference
1565c7c1
KK
211 * that it holds on all queues and safely set the pointer
212 * from the queues to NULL.
02df55d2 213 */
20d29d7a
AB
214static void macvtap_del_queues(struct net_device *dev)
215{
216 struct macvlan_dev *vlan = netdev_priv(dev);
1565c7c1
KK
217 struct macvtap_queue *q, *qlist[MAX_MACVTAP_QUEUES];
218 int i, j = 0;
02df55d2 219
1565c7c1 220 /* macvtap_put_queue can free some slots, so go through all slots */
02df55d2 221 spin_lock(&macvtap_lock);
1565c7c1 222 for (i = 0; i < MAX_MACVTAP_QUEUES && vlan->numvtaps; i++) {
13707f9e
ED
223 q = rcu_dereference_protected(vlan->taps[i],
224 lockdep_is_held(&macvtap_lock));
1565c7c1
KK
225 if (q) {
226 qlist[j++] = q;
2cfa5a04
ED
227 RCU_INIT_POINTER(vlan->taps[i], NULL);
228 RCU_INIT_POINTER(q->vlan, NULL);
1565c7c1
KK
229 vlan->numvtaps--;
230 }
564517e8 231 }
1565c7c1 232 BUG_ON(vlan->numvtaps != 0);
99f34b38
EB
233 /* guarantee that any future macvtap_set_queue will fail */
234 vlan->numvtaps = MAX_MACVTAP_QUEUES;
02df55d2
AB
235 spin_unlock(&macvtap_lock);
236
237 synchronize_rcu();
1565c7c1
KK
238
239 for (--j; j >= 0; j--)
240 sock_put(&qlist[j]->sk);
20d29d7a
AB
241}
242
243/*
244 * Forward happens for data that gets sent from one macvlan
245 * endpoint to another one in bridge mode. We just take
246 * the skb and put it into the receive queue.
247 */
248static int macvtap_forward(struct net_device *dev, struct sk_buff *skb)
249{
250 struct macvtap_queue *q = macvtap_get_queue(dev, skb);
251 if (!q)
8a35747a
HX
252 goto drop;
253
254 if (skb_queue_len(&q->sk.sk_receive_queue) >= dev->tx_queue_len)
255 goto drop;
20d29d7a
AB
256
257 skb_queue_tail(&q->sk.sk_receive_queue, skb);
4a4771a5 258 wake_up_interruptible_poll(sk_sleep(&q->sk), POLLIN | POLLRDNORM | POLLRDBAND);
8a35747a
HX
259 return NET_RX_SUCCESS;
260
261drop:
262 kfree_skb(skb);
263 return NET_RX_DROP;
20d29d7a
AB
264}
265
266/*
267 * Receive is for data from the external interface (lowerdev),
268 * in case of macvtap, we can treat that the same way as
269 * forward, which macvlan cannot.
270 */
271static int macvtap_receive(struct sk_buff *skb)
272{
273 skb_push(skb, ETH_HLEN);
274 return macvtap_forward(skb->dev, skb);
275}
276
e09eff7f
EB
277static int macvtap_get_minor(struct macvlan_dev *vlan)
278{
279 int retval = -ENOMEM;
280 int id;
281
282 mutex_lock(&minor_lock);
283 if (idr_pre_get(&minor_idr, GFP_KERNEL) == 0)
284 goto exit;
285
286 retval = idr_get_new_above(&minor_idr, vlan, 1, &id);
287 if (retval < 0) {
288 if (retval == -EAGAIN)
289 retval = -ENOMEM;
290 goto exit;
291 }
292 if (id < MACVTAP_NUM_DEVS) {
293 vlan->minor = id;
294 } else {
295 printk(KERN_ERR "too many macvtap devices\n");
296 retval = -EINVAL;
297 idr_remove(&minor_idr, id);
298 }
299exit:
300 mutex_unlock(&minor_lock);
301 return retval;
302}
303
304static void macvtap_free_minor(struct macvlan_dev *vlan)
305{
306 mutex_lock(&minor_lock);
307 if (vlan->minor) {
308 idr_remove(&minor_idr, vlan->minor);
309 vlan->minor = 0;
310 }
311 mutex_unlock(&minor_lock);
312}
313
314static struct net_device *dev_get_by_macvtap_minor(int minor)
315{
316 struct net_device *dev = NULL;
317 struct macvlan_dev *vlan;
318
319 mutex_lock(&minor_lock);
320 vlan = idr_find(&minor_idr, minor);
321 if (vlan) {
322 dev = vlan->dev;
323 dev_hold(dev);
324 }
325 mutex_unlock(&minor_lock);
326 return dev;
327}
328
20d29d7a
AB
329static int macvtap_newlink(struct net *src_net,
330 struct net_device *dev,
331 struct nlattr *tb[],
332 struct nlattr *data[])
333{
9bf1907f
EB
334 /* Don't put anything that may fail after macvlan_common_newlink
335 * because we can't undo what it does.
336 */
337 return macvlan_common_newlink(src_net, dev, tb, data,
338 macvtap_receive, macvtap_forward);
20d29d7a
AB
339}
340
341static void macvtap_dellink(struct net_device *dev,
342 struct list_head *head)
343{
20d29d7a
AB
344 macvtap_del_queues(dev);
345 macvlan_dellink(dev, head);
346}
347
8a35747a
HX
348static void macvtap_setup(struct net_device *dev)
349{
350 macvlan_common_setup(dev);
351 dev->tx_queue_len = TUN_READQ_SIZE;
352}
353
20d29d7a
AB
354static struct rtnl_link_ops macvtap_link_ops __read_mostly = {
355 .kind = "macvtap",
8a35747a 356 .setup = macvtap_setup,
20d29d7a
AB
357 .newlink = macvtap_newlink,
358 .dellink = macvtap_dellink,
359};
360
361
362static void macvtap_sock_write_space(struct sock *sk)
363{
43815482
ED
364 wait_queue_head_t *wqueue;
365
20d29d7a
AB
366 if (!sock_writeable(sk) ||
367 !test_and_clear_bit(SOCK_ASYNC_NOSPACE, &sk->sk_socket->flags))
368 return;
369
43815482
ED
370 wqueue = sk_sleep(sk);
371 if (wqueue && waitqueue_active(wqueue))
372 wake_up_interruptible_poll(wqueue, POLLOUT | POLLWRNORM | POLLWRBAND);
20d29d7a
AB
373}
374
2259fef0
EB
375static void macvtap_sock_destruct(struct sock *sk)
376{
377 skb_queue_purge(&sk->sk_receive_queue);
378}
379
20d29d7a
AB
380static int macvtap_open(struct inode *inode, struct file *file)
381{
382 struct net *net = current->nsproxy->net_ns;
e09eff7f 383 struct net_device *dev = dev_get_by_macvtap_minor(iminor(inode));
20d29d7a
AB
384 struct macvtap_queue *q;
385 int err;
386
387 err = -ENODEV;
388 if (!dev)
389 goto out;
390
20d29d7a
AB
391 err = -ENOMEM;
392 q = (struct macvtap_queue *)sk_alloc(net, AF_UNSPEC, GFP_KERNEL,
393 &macvtap_proto);
394 if (!q)
395 goto out;
396
43815482
ED
397 q->sock.wq = &q->wq;
398 init_waitqueue_head(&q->wq.wait);
20d29d7a
AB
399 q->sock.type = SOCK_RAW;
400 q->sock.state = SS_CONNECTED;
501c774c
AB
401 q->sock.file = file;
402 q->sock.ops = &macvtap_socket_ops;
20d29d7a 403 sock_init_data(&q->sock, &q->sk);
20d29d7a 404 q->sk.sk_write_space = macvtap_sock_write_space;
2259fef0 405 q->sk.sk_destruct = macvtap_sock_destruct;
b9fb9ee0 406 q->flags = IFF_VNET_HDR | IFF_NO_PI | IFF_TAP;
55afbd08 407 q->vnet_hdr_sz = sizeof(struct virtio_net_hdr);
20d29d7a 408
97bc3633
SM
409 /*
410 * so far only KVM virtio_net uses macvtap, enable zero copy between
411 * guest kernel and host kernel when lower device supports zerocopy
047af9cf
EB
412 *
413 * The macvlan supports zerocopy iff the lower device supports zero
414 * copy so we don't have to look at the lower device directly.
97bc3633 415 */
047af9cf
EB
416 if ((dev->features & NETIF_F_HIGHDMA) && (dev->features & NETIF_F_SG))
417 sock_set_flag(&q->sk, SOCK_ZEROCOPY);
97bc3633 418
20d29d7a
AB
419 err = macvtap_set_queue(dev, file, q);
420 if (err)
421 sock_put(&q->sk);
422
423out:
424 if (dev)
425 dev_put(dev);
426
427 return err;
428}
429
430static int macvtap_release(struct inode *inode, struct file *file)
431{
02df55d2
AB
432 struct macvtap_queue *q = file->private_data;
433 macvtap_put_queue(q);
20d29d7a
AB
434 return 0;
435}
436
437static unsigned int macvtap_poll(struct file *file, poll_table * wait)
438{
02df55d2 439 struct macvtap_queue *q = file->private_data;
20d29d7a
AB
440 unsigned int mask = POLLERR;
441
442 if (!q)
443 goto out;
444
445 mask = 0;
43815482 446 poll_wait(file, &q->wq.wait, wait);
20d29d7a
AB
447
448 if (!skb_queue_empty(&q->sk.sk_receive_queue))
449 mask |= POLLIN | POLLRDNORM;
450
451 if (sock_writeable(&q->sk) ||
452 (!test_and_set_bit(SOCK_ASYNC_NOSPACE, &q->sock.flags) &&
453 sock_writeable(&q->sk)))
454 mask |= POLLOUT | POLLWRNORM;
455
456out:
20d29d7a
AB
457 return mask;
458}
459
b9fb9ee0
AB
460static inline struct sk_buff *macvtap_alloc_skb(struct sock *sk, size_t prepad,
461 size_t len, size_t linear,
462 int noblock, int *err)
463{
464 struct sk_buff *skb;
465
466 /* Under a page? Don't bother with paged skb. */
467 if (prepad + len < PAGE_SIZE || !linear)
468 linear = len;
469
470 skb = sock_alloc_send_pskb(sk, prepad + linear, len - linear, noblock,
471 err);
472 if (!skb)
473 return NULL;
474
475 skb_reserve(skb, prepad);
476 skb_put(skb, linear);
477 skb->data_len = len - linear;
478 skb->len += len - linear;
479
480 return skb;
481}
482
97bc3633
SM
483/* set skb frags from iovec, this can move to core network code for reuse */
484static int zerocopy_sg_from_iovec(struct sk_buff *skb, const struct iovec *from,
485 int offset, size_t count)
486{
487 int len = iov_length(from, count) - offset;
488 int copy = skb_headlen(skb);
489 int size, offset1 = 0;
490 int i = 0;
97bc3633
SM
491
492 /* Skip over from offset */
493 while (count && (offset >= from->iov_len)) {
494 offset -= from->iov_len;
495 ++from;
496 --count;
497 }
498
499 /* copy up to skb headlen */
500 while (count && (copy > 0)) {
501 size = min_t(unsigned int, copy, from->iov_len - offset);
502 if (copy_from_user(skb->data + offset1, from->iov_base + offset,
503 size))
504 return -EFAULT;
505 if (copy > size) {
506 ++from;
507 --count;
3afc9621
JW
508 offset = 0;
509 } else
510 offset += size;
97bc3633
SM
511 copy -= size;
512 offset1 += size;
97bc3633
SM
513 }
514
515 if (len == offset1)
516 return 0;
517
518 while (count--) {
519 struct page *page[MAX_SKB_FRAGS];
520 int num_pages;
521 unsigned long base;
4ef67ebe 522 unsigned long truesize;
97bc3633 523
3afc9621 524 len = from->iov_len - offset;
97bc3633 525 if (!len) {
3afc9621 526 offset = 0;
97bc3633
SM
527 ++from;
528 continue;
529 }
3afc9621 530 base = (unsigned long)from->iov_base + offset;
97bc3633
SM
531 size = ((base & ~PAGE_MASK) + len + ~PAGE_MASK) >> PAGE_SHIFT;
532 num_pages = get_user_pages_fast(base, size, 0, &page[i]);
533 if ((num_pages != size) ||
02ce04bb
JW
534 (num_pages > MAX_SKB_FRAGS - skb_shinfo(skb)->nr_frags)) {
535 for (i = 0; i < num_pages; i++)
536 put_page(page[i]);
97bc3633 537 return -EFAULT;
02ce04bb 538 }
4ef67ebe 539 truesize = size * PAGE_SIZE;
97bc3633
SM
540 skb->data_len += len;
541 skb->len += len;
4ef67ebe
JW
542 skb->truesize += truesize;
543 atomic_add(truesize, &skb->sk->sk_wmem_alloc);
97bc3633 544 while (len) {
653fc915
JW
545 int off = base & ~PAGE_MASK;
546 int size = min_t(int, len, PAGE_SIZE - off);
547 __skb_fill_page_desc(skb, i, page[i], off, size);
97bc3633
SM
548 skb_shinfo(skb)->nr_frags++;
549 /* increase sk_wmem_alloc */
653fc915
JW
550 base += size;
551 len -= size;
97bc3633
SM
552 i++;
553 }
3afc9621 554 offset = 0;
97bc3633
SM
555 ++from;
556 }
557 return 0;
558}
559
b9fb9ee0
AB
560/*
561 * macvtap_skb_from_vnet_hdr and macvtap_skb_to_vnet_hdr should
562 * be shared with the tun/tap driver.
563 */
564static int macvtap_skb_from_vnet_hdr(struct sk_buff *skb,
565 struct virtio_net_hdr *vnet_hdr)
566{
567 unsigned short gso_type = 0;
568 if (vnet_hdr->gso_type != VIRTIO_NET_HDR_GSO_NONE) {
569 switch (vnet_hdr->gso_type & ~VIRTIO_NET_HDR_GSO_ECN) {
570 case VIRTIO_NET_HDR_GSO_TCPV4:
571 gso_type = SKB_GSO_TCPV4;
572 break;
573 case VIRTIO_NET_HDR_GSO_TCPV6:
574 gso_type = SKB_GSO_TCPV6;
575 break;
576 case VIRTIO_NET_HDR_GSO_UDP:
577 gso_type = SKB_GSO_UDP;
578 break;
579 default:
580 return -EINVAL;
581 }
582
583 if (vnet_hdr->gso_type & VIRTIO_NET_HDR_GSO_ECN)
584 gso_type |= SKB_GSO_TCP_ECN;
585
586 if (vnet_hdr->gso_size == 0)
587 return -EINVAL;
588 }
589
590 if (vnet_hdr->flags & VIRTIO_NET_HDR_F_NEEDS_CSUM) {
591 if (!skb_partial_csum_set(skb, vnet_hdr->csum_start,
592 vnet_hdr->csum_offset))
593 return -EINVAL;
594 }
595
596 if (vnet_hdr->gso_type != VIRTIO_NET_HDR_GSO_NONE) {
597 skb_shinfo(skb)->gso_size = vnet_hdr->gso_size;
598 skb_shinfo(skb)->gso_type = gso_type;
599
600 /* Header must be checked, and gso_segs computed. */
601 skb_shinfo(skb)->gso_type |= SKB_GSO_DODGY;
602 skb_shinfo(skb)->gso_segs = 0;
603 }
604 return 0;
605}
606
607static int macvtap_skb_to_vnet_hdr(const struct sk_buff *skb,
608 struct virtio_net_hdr *vnet_hdr)
609{
610 memset(vnet_hdr, 0, sizeof(*vnet_hdr));
611
612 if (skb_is_gso(skb)) {
613 struct skb_shared_info *sinfo = skb_shinfo(skb);
614
615 /* This is a hint as to how much should be linear. */
616 vnet_hdr->hdr_len = skb_headlen(skb);
617 vnet_hdr->gso_size = sinfo->gso_size;
618 if (sinfo->gso_type & SKB_GSO_TCPV4)
619 vnet_hdr->gso_type = VIRTIO_NET_HDR_GSO_TCPV4;
620 else if (sinfo->gso_type & SKB_GSO_TCPV6)
621 vnet_hdr->gso_type = VIRTIO_NET_HDR_GSO_TCPV6;
622 else if (sinfo->gso_type & SKB_GSO_UDP)
623 vnet_hdr->gso_type = VIRTIO_NET_HDR_GSO_UDP;
624 else
625 BUG();
626 if (sinfo->gso_type & SKB_GSO_TCP_ECN)
627 vnet_hdr->gso_type |= VIRTIO_NET_HDR_GSO_ECN;
628 } else
629 vnet_hdr->gso_type = VIRTIO_NET_HDR_GSO_NONE;
630
631 if (skb->ip_summed == CHECKSUM_PARTIAL) {
632 vnet_hdr->flags = VIRTIO_NET_HDR_F_NEEDS_CSUM;
55508d60 633 vnet_hdr->csum_start = skb_checksum_start_offset(skb);
b9fb9ee0 634 vnet_hdr->csum_offset = skb->csum_offset;
10a8d94a
JW
635 } else if (skb->ip_summed == CHECKSUM_UNNECESSARY) {
636 vnet_hdr->flags = VIRTIO_NET_HDR_F_DATA_VALID;
b9fb9ee0
AB
637 } /* else everything is zero */
638
639 return 0;
640}
641
642
20d29d7a 643/* Get packet from user space buffer */
97bc3633
SM
644static ssize_t macvtap_get_user(struct macvtap_queue *q, struct msghdr *m,
645 const struct iovec *iv, unsigned long total_len,
646 size_t count, int noblock)
20d29d7a
AB
647{
648 struct sk_buff *skb;
02df55d2 649 struct macvlan_dev *vlan;
97bc3633 650 unsigned long len = total_len;
20d29d7a 651 int err;
b9fb9ee0
AB
652 struct virtio_net_hdr vnet_hdr = { 0 };
653 int vnet_hdr_len = 0;
97bc3633
SM
654 int copylen;
655 bool zerocopy = false;
b9fb9ee0
AB
656
657 if (q->flags & IFF_VNET_HDR) {
55afbd08 658 vnet_hdr_len = q->vnet_hdr_sz;
b9fb9ee0
AB
659
660 err = -EINVAL;
ce3c8692 661 if (len < vnet_hdr_len)
b9fb9ee0 662 goto err;
ce3c8692 663 len -= vnet_hdr_len;
b9fb9ee0
AB
664
665 err = memcpy_fromiovecend((void *)&vnet_hdr, iv, 0,
55afbd08 666 sizeof(vnet_hdr));
b9fb9ee0
AB
667 if (err < 0)
668 goto err;
669 if ((vnet_hdr.flags & VIRTIO_NET_HDR_F_NEEDS_CSUM) &&
670 vnet_hdr.csum_start + vnet_hdr.csum_offset + 2 >
671 vnet_hdr.hdr_len)
672 vnet_hdr.hdr_len = vnet_hdr.csum_start +
673 vnet_hdr.csum_offset + 2;
674 err = -EINVAL;
675 if (vnet_hdr.hdr_len > len)
676 goto err;
677 }
20d29d7a 678
b9fb9ee0 679 err = -EINVAL;
20d29d7a 680 if (unlikely(len < ETH_HLEN))
b9fb9ee0 681 goto err;
20d29d7a 682
97bc3633
SM
683 if (m && m->msg_control && sock_flag(&q->sk, SOCK_ZEROCOPY))
684 zerocopy = true;
685
686 if (zerocopy) {
687 /* There are 256 bytes to be copied in skb, so there is enough
688 * room for skb expand head in case it is used.
689 * The rest buffer is mapped from userspace.
690 */
691 copylen = vnet_hdr.hdr_len;
692 if (!copylen)
693 copylen = GOODCOPY_LEN;
694 } else
695 copylen = len;
696
697 skb = macvtap_alloc_skb(&q->sk, NET_IP_ALIGN, copylen,
698 vnet_hdr.hdr_len, noblock, &err);
02df55d2
AB
699 if (!skb)
700 goto err;
20d29d7a 701
01d6657b 702 if (zerocopy)
97bc3633 703 err = zerocopy_sg_from_iovec(skb, iv, vnet_hdr_len, count);
01d6657b 704 else
97bc3633
SM
705 err = skb_copy_datagram_from_iovec(skb, 0, iv, vnet_hdr_len,
706 len);
02df55d2 707 if (err)
b9fb9ee0 708 goto err_kfree;
20d29d7a
AB
709
710 skb_set_network_header(skb, ETH_HLEN);
b9fb9ee0
AB
711 skb_reset_mac_header(skb);
712 skb->protocol = eth_hdr(skb)->h_proto;
713
714 if (vnet_hdr_len) {
715 err = macvtap_skb_from_vnet_hdr(skb, &vnet_hdr);
716 if (err)
717 goto err_kfree;
718 }
719
02df55d2 720 rcu_read_lock_bh();
13707f9e 721 vlan = rcu_dereference_bh(q->vlan);
97bc3633 722 /* copy skb_ubuf_info for callback when skb has no error */
01d6657b 723 if (zerocopy) {
97bc3633 724 skb_shinfo(skb)->destructor_arg = m->msg_control;
01d6657b
JW
725 skb_shinfo(skb)->tx_flags |= SKBTX_DEV_ZEROCOPY;
726 }
02df55d2
AB
727 if (vlan)
728 macvlan_start_xmit(skb, vlan->dev);
729 else
730 kfree_skb(skb);
731 rcu_read_unlock_bh();
20d29d7a 732
97bc3633 733 return total_len;
02df55d2 734
b9fb9ee0
AB
735err_kfree:
736 kfree_skb(skb);
737
02df55d2
AB
738err:
739 rcu_read_lock_bh();
13707f9e 740 vlan = rcu_dereference_bh(q->vlan);
02df55d2 741 if (vlan)
1ac9ad13 742 vlan->dev->stats.tx_dropped++;
02df55d2
AB
743 rcu_read_unlock_bh();
744
02df55d2 745 return err;
20d29d7a
AB
746}
747
748static ssize_t macvtap_aio_write(struct kiocb *iocb, const struct iovec *iv,
749 unsigned long count, loff_t pos)
750{
751 struct file *file = iocb->ki_filp;
752 ssize_t result = -ENOLINK;
02df55d2 753 struct macvtap_queue *q = file->private_data;
20d29d7a 754
97bc3633
SM
755 result = macvtap_get_user(q, NULL, iv, iov_length(iv, count), count,
756 file->f_flags & O_NONBLOCK);
20d29d7a
AB
757 return result;
758}
759
760/* Put packet to the user space buffer */
761static ssize_t macvtap_put_user(struct macvtap_queue *q,
762 const struct sk_buff *skb,
763 const struct iovec *iv, int len)
764{
02df55d2 765 struct macvlan_dev *vlan;
20d29d7a 766 int ret;
b9fb9ee0
AB
767 int vnet_hdr_len = 0;
768
769 if (q->flags & IFF_VNET_HDR) {
770 struct virtio_net_hdr vnet_hdr;
55afbd08 771 vnet_hdr_len = q->vnet_hdr_sz;
b9fb9ee0
AB
772 if ((len -= vnet_hdr_len) < 0)
773 return -EINVAL;
774
775 ret = macvtap_skb_to_vnet_hdr(skb, &vnet_hdr);
776 if (ret)
777 return ret;
778
55afbd08 779 if (memcpy_toiovecend(iv, (void *)&vnet_hdr, 0, sizeof(vnet_hdr)))
b9fb9ee0
AB
780 return -EFAULT;
781 }
20d29d7a
AB
782
783 len = min_t(int, skb->len, len);
784
b9fb9ee0 785 ret = skb_copy_datagram_const_iovec(skb, 0, iv, vnet_hdr_len, len);
20d29d7a 786
02df55d2 787 rcu_read_lock_bh();
13707f9e 788 vlan = rcu_dereference_bh(q->vlan);
501c774c
AB
789 if (vlan)
790 macvlan_count_rx(vlan, len, ret == 0, 0);
02df55d2 791 rcu_read_unlock_bh();
20d29d7a 792
b9fb9ee0 793 return ret ? ret : (len + vnet_hdr_len);
20d29d7a
AB
794}
795
501c774c
AB
796static ssize_t macvtap_do_read(struct macvtap_queue *q, struct kiocb *iocb,
797 const struct iovec *iv, unsigned long len,
798 int noblock)
20d29d7a 799{
20d29d7a
AB
800 DECLARE_WAITQUEUE(wait, current);
801 struct sk_buff *skb;
501c774c 802 ssize_t ret = 0;
20d29d7a 803
4a4771a5 804 add_wait_queue(sk_sleep(&q->sk), &wait);
20d29d7a
AB
805 while (len) {
806 current->state = TASK_INTERRUPTIBLE;
807
808 /* Read frames from the queue */
809 skb = skb_dequeue(&q->sk.sk_receive_queue);
810 if (!skb) {
501c774c 811 if (noblock) {
20d29d7a
AB
812 ret = -EAGAIN;
813 break;
814 }
815 if (signal_pending(current)) {
816 ret = -ERESTARTSYS;
817 break;
818 }
819 /* Nothing to read, let's sleep */
820 schedule();
821 continue;
822 }
823 ret = macvtap_put_user(q, skb, iv, len);
824 kfree_skb(skb);
825 break;
826 }
827
828 current->state = TASK_RUNNING;
4a4771a5 829 remove_wait_queue(sk_sleep(&q->sk), &wait);
501c774c
AB
830 return ret;
831}
832
833static ssize_t macvtap_aio_read(struct kiocb *iocb, const struct iovec *iv,
834 unsigned long count, loff_t pos)
835{
836 struct file *file = iocb->ki_filp;
837 struct macvtap_queue *q = file->private_data;
838 ssize_t len, ret = 0;
20d29d7a 839
501c774c
AB
840 len = iov_length(iv, count);
841 if (len < 0) {
842 ret = -EINVAL;
843 goto out;
844 }
845
846 ret = macvtap_do_read(q, iocb, iv, len, file->f_flags & O_NONBLOCK);
847 ret = min_t(ssize_t, ret, len); /* XXX copied from tun.c. Why? */
20d29d7a 848out:
20d29d7a
AB
849 return ret;
850}
851
852/*
853 * provide compatibility with generic tun/tap interface
854 */
855static long macvtap_ioctl(struct file *file, unsigned int cmd,
856 unsigned long arg)
857{
02df55d2
AB
858 struct macvtap_queue *q = file->private_data;
859 struct macvlan_dev *vlan;
20d29d7a
AB
860 void __user *argp = (void __user *)arg;
861 struct ifreq __user *ifr = argp;
862 unsigned int __user *up = argp;
863 unsigned int u;
55afbd08
MT
864 int __user *sp = argp;
865 int s;
02df55d2 866 int ret;
20d29d7a
AB
867
868 switch (cmd) {
869 case TUNSETIFF:
870 /* ignore the name, just look at flags */
871 if (get_user(u, &ifr->ifr_flags))
872 return -EFAULT;
b9fb9ee0
AB
873
874 ret = 0;
875 if ((u & ~IFF_VNET_HDR) != (IFF_NO_PI | IFF_TAP))
876 ret = -EINVAL;
877 else
878 q->flags = u;
879
880 return ret;
20d29d7a
AB
881
882 case TUNGETIFF:
02df55d2 883 rcu_read_lock_bh();
13707f9e 884 vlan = rcu_dereference_bh(q->vlan);
02df55d2
AB
885 if (vlan)
886 dev_hold(vlan->dev);
887 rcu_read_unlock_bh();
888
889 if (!vlan)
20d29d7a 890 return -ENOLINK;
20d29d7a 891
02df55d2 892 ret = 0;
13707f9e 893 if (copy_to_user(&ifr->ifr_name, vlan->dev->name, IFNAMSIZ) ||
b9fb9ee0 894 put_user(q->flags, &ifr->ifr_flags))
02df55d2
AB
895 ret = -EFAULT;
896 dev_put(vlan->dev);
897 return ret;
20d29d7a
AB
898
899 case TUNGETFEATURES:
b9fb9ee0 900 if (put_user(IFF_TAP | IFF_NO_PI | IFF_VNET_HDR, up))
20d29d7a
AB
901 return -EFAULT;
902 return 0;
903
904 case TUNSETSNDBUF:
905 if (get_user(u, up))
906 return -EFAULT;
907
20d29d7a 908 q->sk.sk_sndbuf = u;
20d29d7a
AB
909 return 0;
910
55afbd08
MT
911 case TUNGETVNETHDRSZ:
912 s = q->vnet_hdr_sz;
913 if (put_user(s, sp))
914 return -EFAULT;
915 return 0;
916
917 case TUNSETVNETHDRSZ:
918 if (get_user(s, sp))
919 return -EFAULT;
920 if (s < (int)sizeof(struct virtio_net_hdr))
921 return -EINVAL;
922
923 q->vnet_hdr_sz = s;
924 return 0;
925
20d29d7a
AB
926 case TUNSETOFFLOAD:
927 /* let the user check for future flags */
928 if (arg & ~(TUN_F_CSUM | TUN_F_TSO4 | TUN_F_TSO6 |
b9fb9ee0 929 TUN_F_TSO_ECN | TUN_F_UFO))
20d29d7a
AB
930 return -EINVAL;
931
b9fb9ee0
AB
932 /* TODO: only accept frames with the features that
933 got enabled for forwarded frames */
934 if (!(q->flags & IFF_VNET_HDR))
935 return -EINVAL;
20d29d7a
AB
936 return 0;
937
938 default:
939 return -EINVAL;
940 }
941}
942
943#ifdef CONFIG_COMPAT
944static long macvtap_compat_ioctl(struct file *file, unsigned int cmd,
945 unsigned long arg)
946{
947 return macvtap_ioctl(file, cmd, (unsigned long)compat_ptr(arg));
948}
949#endif
950
951static const struct file_operations macvtap_fops = {
952 .owner = THIS_MODULE,
953 .open = macvtap_open,
954 .release = macvtap_release,
955 .aio_read = macvtap_aio_read,
956 .aio_write = macvtap_aio_write,
957 .poll = macvtap_poll,
958 .llseek = no_llseek,
959 .unlocked_ioctl = macvtap_ioctl,
960#ifdef CONFIG_COMPAT
961 .compat_ioctl = macvtap_compat_ioctl,
962#endif
963};
964
501c774c
AB
965static int macvtap_sendmsg(struct kiocb *iocb, struct socket *sock,
966 struct msghdr *m, size_t total_len)
967{
968 struct macvtap_queue *q = container_of(sock, struct macvtap_queue, sock);
97bc3633 969 return macvtap_get_user(q, m, m->msg_iov, total_len, m->msg_iovlen,
501c774c
AB
970 m->msg_flags & MSG_DONTWAIT);
971}
972
973static int macvtap_recvmsg(struct kiocb *iocb, struct socket *sock,
974 struct msghdr *m, size_t total_len,
975 int flags)
976{
977 struct macvtap_queue *q = container_of(sock, struct macvtap_queue, sock);
978 int ret;
979 if (flags & ~(MSG_DONTWAIT|MSG_TRUNC))
980 return -EINVAL;
981 ret = macvtap_do_read(q, iocb, m->msg_iov, total_len,
982 flags & MSG_DONTWAIT);
983 if (ret > total_len) {
984 m->msg_flags |= MSG_TRUNC;
985 ret = flags & MSG_TRUNC ? ret : total_len;
986 }
987 return ret;
988}
989
990/* Ops structure to mimic raw sockets with tun */
991static const struct proto_ops macvtap_socket_ops = {
992 .sendmsg = macvtap_sendmsg,
993 .recvmsg = macvtap_recvmsg,
994};
995
996/* Get an underlying socket object from tun file. Returns error unless file is
997 * attached to a device. The returned object works like a packet socket, it
998 * can be used for sock_sendmsg/sock_recvmsg. The caller is responsible for
999 * holding a reference to the file for as long as the socket is in use. */
1000struct socket *macvtap_get_socket(struct file *file)
1001{
1002 struct macvtap_queue *q;
1003 if (file->f_op != &macvtap_fops)
1004 return ERR_PTR(-EINVAL);
1005 q = file->private_data;
1006 if (!q)
1007 return ERR_PTR(-EBADFD);
1008 return &q->sock;
1009}
1010EXPORT_SYMBOL_GPL(macvtap_get_socket);
1011
9bf1907f
EB
1012static int macvtap_device_event(struct notifier_block *unused,
1013 unsigned long event, void *ptr)
1014{
1015 struct net_device *dev = ptr;
e09eff7f 1016 struct macvlan_dev *vlan;
9bf1907f
EB
1017 struct device *classdev;
1018 dev_t devt;
e09eff7f 1019 int err;
9bf1907f
EB
1020
1021 if (dev->rtnl_link_ops != &macvtap_link_ops)
1022 return NOTIFY_DONE;
1023
e09eff7f 1024 vlan = netdev_priv(dev);
9bf1907f
EB
1025
1026 switch (event) {
1027 case NETDEV_REGISTER:
1028 /* Create the device node here after the network device has
1029 * been registered but before register_netdevice has
1030 * finished running.
1031 */
e09eff7f
EB
1032 err = macvtap_get_minor(vlan);
1033 if (err)
1034 return notifier_from_errno(err);
1035
1036 devt = MKDEV(MAJOR(macvtap_major), vlan->minor);
9bf1907f
EB
1037 classdev = device_create(macvtap_class, &dev->dev, devt,
1038 dev, "tap%d", dev->ifindex);
e09eff7f
EB
1039 if (IS_ERR(classdev)) {
1040 macvtap_free_minor(vlan);
9bf1907f 1041 return notifier_from_errno(PTR_ERR(classdev));
e09eff7f 1042 }
9bf1907f
EB
1043 break;
1044 case NETDEV_UNREGISTER:
e09eff7f 1045 devt = MKDEV(MAJOR(macvtap_major), vlan->minor);
9bf1907f 1046 device_destroy(macvtap_class, devt);
e09eff7f 1047 macvtap_free_minor(vlan);
9bf1907f
EB
1048 break;
1049 }
1050
1051 return NOTIFY_DONE;
1052}
1053
1054static struct notifier_block macvtap_notifier_block __read_mostly = {
1055 .notifier_call = macvtap_device_event,
1056};
1057
20d29d7a
AB
1058static int macvtap_init(void)
1059{
1060 int err;
1061
1062 err = alloc_chrdev_region(&macvtap_major, 0,
1063 MACVTAP_NUM_DEVS, "macvtap");
1064 if (err)
1065 goto out1;
1066
1067 cdev_init(&macvtap_cdev, &macvtap_fops);
1068 err = cdev_add(&macvtap_cdev, macvtap_major, MACVTAP_NUM_DEVS);
1069 if (err)
1070 goto out2;
1071
1072 macvtap_class = class_create(THIS_MODULE, "macvtap");
1073 if (IS_ERR(macvtap_class)) {
1074 err = PTR_ERR(macvtap_class);
1075 goto out3;
1076 }
1077
9bf1907f 1078 err = register_netdevice_notifier(&macvtap_notifier_block);
20d29d7a
AB
1079 if (err)
1080 goto out4;
1081
9bf1907f
EB
1082 err = macvlan_link_register(&macvtap_link_ops);
1083 if (err)
1084 goto out5;
1085
20d29d7a
AB
1086 return 0;
1087
9bf1907f
EB
1088out5:
1089 unregister_netdevice_notifier(&macvtap_notifier_block);
20d29d7a
AB
1090out4:
1091 class_unregister(macvtap_class);
1092out3:
1093 cdev_del(&macvtap_cdev);
1094out2:
1095 unregister_chrdev_region(macvtap_major, MACVTAP_NUM_DEVS);
1096out1:
1097 return err;
1098}
1099module_init(macvtap_init);
1100
1101static void macvtap_exit(void)
1102{
1103 rtnl_link_unregister(&macvtap_link_ops);
9bf1907f 1104 unregister_netdevice_notifier(&macvtap_notifier_block);
20d29d7a
AB
1105 class_unregister(macvtap_class);
1106 cdev_del(&macvtap_cdev);
1107 unregister_chrdev_region(macvtap_major, MACVTAP_NUM_DEVS);
1108}
1109module_exit(macvtap_exit);
1110
1111MODULE_ALIAS_RTNL_LINK("macvtap");
1112MODULE_AUTHOR("Arnd Bergmann <arnd@arndb.de>");
1113MODULE_LICENSE("GPL");
This page took 0.294468 seconds and 5 git commands to generate.