drivers/net, ipv6: Select IPv6 fragment idents for virtio UFO packets
[pandora-kernel.git] / drivers / net / macvtap.c
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>
12 #include <linux/slab.h>
13 #include <linux/init.h>
14 #include <linux/wait.h>
15 #include <linux/cdev.h>
16 #include <linux/fs.h>
17
18 #include <net/ipv6.h>
19 #include <net/net_namespace.h>
20 #include <net/rtnetlink.h>
21 #include <net/sock.h>
22 #include <linux/virtio_net.h>
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  */
38 struct macvtap_queue {
39         struct sock sk;
40         struct socket sock;
41         struct socket_wq wq;
42         int vnet_hdr_sz;
43         struct macvlan_dev __rcu *vlan;
44         struct file *file;
45         unsigned int flags;
46 };
47
48 static struct proto macvtap_proto = {
49         .name = "macvtap",
50         .owner = THIS_MODULE,
51         .obj_size = sizeof (struct macvtap_queue),
52 };
53
54 /*
55  * Variables for dealing with macvtaps device numbers.
56  */
57 static dev_t macvtap_major;
58 #define MACVTAP_NUM_DEVS (1U << MINORBITS)
59 static DEFINE_MUTEX(minor_lock);
60 static DEFINE_IDR(minor_idr);
61
62 #define GOODCOPY_LEN 128
63 static struct class *macvtap_class;
64 static struct cdev macvtap_cdev;
65
66 static const struct proto_ops macvtap_socket_ops;
67
68 /*
69  * RCU usage:
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.
73  *
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.
78  *
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.
83  */
84 static DEFINE_SPINLOCK(macvtap_lock);
85
86 /*
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.
90  */
91 static 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
104 static 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);
108         int index;
109         int err = -EBUSY;
110
111         spin_lock(&macvtap_lock);
112         if (vlan->numvtaps == MAX_MACVTAP_QUEUES)
113                 goto out;
114
115         err = 0;
116         index = get_slot(vlan, NULL);
117         rcu_assign_pointer(q->vlan, vlan);
118         rcu_assign_pointer(vlan->taps[index], q);
119         sock_hold(&q->sk);
120
121         q->file = file;
122         file->private_data = q;
123
124         vlan->numvtaps++;
125
126 out:
127         spin_unlock(&macvtap_lock);
128         return err;
129 }
130
131 /*
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.
135  *
136  * Using the spinlock makes sure that we don't get
137  * to the queue again after destroying it.
138  */
139 static void macvtap_put_queue(struct macvtap_queue *q)
140 {
141         struct macvlan_dev *vlan;
142
143         spin_lock(&macvtap_lock);
144         vlan = rcu_dereference_protected(q->vlan,
145                                          lockdep_is_held(&macvtap_lock));
146         if (vlan) {
147                 int index = get_slot(vlan, q);
148
149                 rcu_assign_pointer(vlan->taps[index], NULL);
150                 rcu_assign_pointer(q->vlan, NULL);
151                 sock_put(&q->sk);
152                 --vlan->numvtaps;
153         }
154
155         spin_unlock(&macvtap_lock);
156
157         synchronize_rcu();
158         sock_put(&q->sk);
159 }
160
161 /*
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.
167  */
168 static struct macvtap_queue *macvtap_get_queue(struct net_device *dev,
169                                                struct sk_buff *skb)
170 {
171         struct macvlan_dev *vlan = netdev_priv(dev);
172         struct macvtap_queue *tap = NULL;
173         int numvtaps = vlan->numvtaps;
174         __u32 rxq;
175
176         if (!numvtaps)
177                 goto out;
178
179         if (likely(skb_rx_queue_recorded(skb))) {
180                 rxq = skb_get_rx_queue(skb);
181
182                 while (unlikely(rxq >= numvtaps))
183                         rxq -= numvtaps;
184
185                 tap = rcu_dereference(vlan->taps[rxq]);
186                 if (tap)
187                         goto out;
188         }
189
190         /* Check if we can use flow to select a queue */
191         rxq = skb_get_rxhash(skb);
192         if (rxq) {
193                 tap = rcu_dereference(vlan->taps[rxq % numvtaps]);
194                 if (tap)
195                         goto out;
196         }
197
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
205 out:
206         return tap;
207 }
208
209 /*
210  * The net_device is going away, give up the reference
211  * that it holds on all queues and safely set the pointer
212  * from the queues to NULL.
213  */
214 static void macvtap_del_queues(struct net_device *dev)
215 {
216         struct macvlan_dev *vlan = netdev_priv(dev);
217         struct macvtap_queue *q, *qlist[MAX_MACVTAP_QUEUES];
218         int i, j = 0;
219
220         /* macvtap_put_queue can free some slots, so go through all slots */
221         spin_lock(&macvtap_lock);
222         for (i = 0; i < MAX_MACVTAP_QUEUES && vlan->numvtaps; i++) {
223                 q = rcu_dereference_protected(vlan->taps[i],
224                                               lockdep_is_held(&macvtap_lock));
225                 if (q) {
226                         qlist[j++] = q;
227                         rcu_assign_pointer(vlan->taps[i], NULL);
228                         rcu_assign_pointer(q->vlan, NULL);
229                         vlan->numvtaps--;
230                 }
231         }
232         BUG_ON(vlan->numvtaps != 0);
233         /* guarantee that any future macvtap_set_queue will fail */
234         vlan->numvtaps = MAX_MACVTAP_QUEUES;
235         spin_unlock(&macvtap_lock);
236
237         synchronize_rcu();
238
239         for (--j; j >= 0; j--)
240                 sock_put(&qlist[j]->sk);
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  */
248 static 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)
252                 goto drop;
253
254         if (skb_queue_len(&q->sk.sk_receive_queue) >= dev->tx_queue_len)
255                 goto drop;
256
257         skb_queue_tail(&q->sk.sk_receive_queue, skb);
258         wake_up_interruptible_poll(sk_sleep(&q->sk), POLLIN | POLLRDNORM | POLLRDBAND);
259         return NET_RX_SUCCESS;
260
261 drop:
262         kfree_skb(skb);
263         return NET_RX_DROP;
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  */
271 static int macvtap_receive(struct sk_buff *skb)
272 {
273         skb_push(skb, ETH_HLEN);
274         return macvtap_forward(skb->dev, skb);
275 }
276
277 static 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         }
299 exit:
300         mutex_unlock(&minor_lock);
301         return retval;
302 }
303
304 static 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
314 static 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
329 static int macvtap_newlink(struct net *src_net,
330                            struct net_device *dev,
331                            struct nlattr *tb[],
332                            struct nlattr *data[])
333 {
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);
339 }
340
341 static void macvtap_dellink(struct net_device *dev,
342                             struct list_head *head)
343 {
344         macvtap_del_queues(dev);
345         macvlan_dellink(dev, head);
346 }
347
348 static void macvtap_setup(struct net_device *dev)
349 {
350         macvlan_common_setup(dev);
351         dev->tx_queue_len = TUN_READQ_SIZE;
352 }
353
354 static struct rtnl_link_ops macvtap_link_ops __read_mostly = {
355         .kind           = "macvtap",
356         .setup          = macvtap_setup,
357         .newlink        = macvtap_newlink,
358         .dellink        = macvtap_dellink,
359 };
360
361
362 static void macvtap_sock_write_space(struct sock *sk)
363 {
364         wait_queue_head_t *wqueue;
365
366         if (!sock_writeable(sk) ||
367             !test_and_clear_bit(SOCK_ASYNC_NOSPACE, &sk->sk_socket->flags))
368                 return;
369
370         wqueue = sk_sleep(sk);
371         if (wqueue && waitqueue_active(wqueue))
372                 wake_up_interruptible_poll(wqueue, POLLOUT | POLLWRNORM | POLLWRBAND);
373 }
374
375 static void macvtap_sock_destruct(struct sock *sk)
376 {
377         skb_queue_purge(&sk->sk_receive_queue);
378 }
379
380 static int macvtap_open(struct inode *inode, struct file *file)
381 {
382         struct net *net = current->nsproxy->net_ns;
383         struct net_device *dev = dev_get_by_macvtap_minor(iminor(inode));
384         struct macvtap_queue *q;
385         int err;
386
387         err = -ENODEV;
388         if (!dev)
389                 goto out;
390
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
397         q->sock.wq = &q->wq;
398         init_waitqueue_head(&q->wq.wait);
399         q->sock.type = SOCK_RAW;
400         q->sock.state = SS_CONNECTED;
401         q->sock.file = file;
402         q->sock.ops = &macvtap_socket_ops;
403         sock_init_data(&q->sock, &q->sk);
404         q->sk.sk_write_space = macvtap_sock_write_space;
405         q->sk.sk_destruct = macvtap_sock_destruct;
406         q->flags = IFF_VNET_HDR | IFF_NO_PI | IFF_TAP;
407         q->vnet_hdr_sz = sizeof(struct virtio_net_hdr);
408
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
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.
415          */
416         if ((dev->features & NETIF_F_HIGHDMA) && (dev->features & NETIF_F_SG))
417                 sock_set_flag(&q->sk, SOCK_ZEROCOPY);
418
419         err = macvtap_set_queue(dev, file, q);
420         if (err)
421                 sock_put(&q->sk);
422
423 out:
424         if (dev)
425                 dev_put(dev);
426
427         return err;
428 }
429
430 static int macvtap_release(struct inode *inode, struct file *file)
431 {
432         struct macvtap_queue *q = file->private_data;
433         macvtap_put_queue(q);
434         return 0;
435 }
436
437 static unsigned int macvtap_poll(struct file *file, poll_table * wait)
438 {
439         struct macvtap_queue *q = file->private_data;
440         unsigned int mask = POLLERR;
441
442         if (!q)
443                 goto out;
444
445         mask = 0;
446         poll_wait(file, &q->wq.wait, wait);
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
456 out:
457         return mask;
458 }
459
460 static 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
483 /* set skb frags from iovec, this can move to core network code for reuse */
484 static 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;
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;
508                         offset = 0;
509                 } else
510                         offset += size;
511                 copy -= size;
512                 offset1 += size;
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;
522                 unsigned long truesize;
523
524                 len = from->iov_len - offset;
525                 if (!len) {
526                         offset = 0;
527                         ++from;
528                         continue;
529                 }
530                 base = (unsigned long)from->iov_base + offset;
531                 size = ((base & ~PAGE_MASK) + len + ~PAGE_MASK) >> PAGE_SHIFT;
532                 if (i + size > MAX_SKB_FRAGS)
533                         return -EMSGSIZE;
534                 num_pages = get_user_pages_fast(base, size, 0, &page[i]);
535                 if (num_pages != size) {
536                         int j;
537
538                         for (j = 0; j < num_pages; j++)
539                                 put_page(page[i + j]);
540                         return -EFAULT;
541                 }
542                 truesize = size * PAGE_SIZE;
543                 skb->data_len += len;
544                 skb->len += len;
545                 skb->truesize += truesize;
546                 atomic_add(truesize, &skb->sk->sk_wmem_alloc);
547                 while (len) {
548                         int off = base & ~PAGE_MASK;
549                         int size = min_t(int, len, PAGE_SIZE - off);
550                         __skb_fill_page_desc(skb, i, page[i], off, size);
551                         skb_shinfo(skb)->nr_frags++;
552                         /* increase sk_wmem_alloc */
553                         base += size;
554                         len -= size;
555                         i++;
556                 }
557                 offset = 0;
558                 ++from;
559         }
560         return 0;
561 }
562
563 /*
564  * macvtap_skb_from_vnet_hdr and macvtap_skb_to_vnet_hdr should
565  * be shared with the tun/tap driver.
566  */
567 static int macvtap_skb_from_vnet_hdr(struct sk_buff *skb,
568                                      struct virtio_net_hdr *vnet_hdr)
569 {
570         unsigned short gso_type = 0;
571         if (vnet_hdr->gso_type != VIRTIO_NET_HDR_GSO_NONE) {
572                 switch (vnet_hdr->gso_type & ~VIRTIO_NET_HDR_GSO_ECN) {
573                 case VIRTIO_NET_HDR_GSO_TCPV4:
574                         gso_type = SKB_GSO_TCPV4;
575                         break;
576                 case VIRTIO_NET_HDR_GSO_TCPV6:
577                         gso_type = SKB_GSO_TCPV6;
578                         break;
579                 case VIRTIO_NET_HDR_GSO_UDP:
580                         gso_type = SKB_GSO_UDP;
581                         if (skb->protocol == htons(ETH_P_IPV6))
582                                 ipv6_proxy_select_ident(skb);
583                         break;
584                 default:
585                         return -EINVAL;
586                 }
587
588                 if (vnet_hdr->gso_type & VIRTIO_NET_HDR_GSO_ECN)
589                         gso_type |= SKB_GSO_TCP_ECN;
590
591                 if (vnet_hdr->gso_size == 0)
592                         return -EINVAL;
593         }
594
595         if (vnet_hdr->flags & VIRTIO_NET_HDR_F_NEEDS_CSUM) {
596                 if (!skb_partial_csum_set(skb, vnet_hdr->csum_start,
597                                           vnet_hdr->csum_offset))
598                         return -EINVAL;
599         }
600
601         if (vnet_hdr->gso_type != VIRTIO_NET_HDR_GSO_NONE) {
602                 skb_shinfo(skb)->gso_size = vnet_hdr->gso_size;
603                 skb_shinfo(skb)->gso_type = gso_type;
604
605                 /* Header must be checked, and gso_segs computed. */
606                 skb_shinfo(skb)->gso_type |= SKB_GSO_DODGY;
607                 skb_shinfo(skb)->gso_segs = 0;
608         }
609         return 0;
610 }
611
612 static int macvtap_skb_to_vnet_hdr(const struct sk_buff *skb,
613                                    struct virtio_net_hdr *vnet_hdr)
614 {
615         memset(vnet_hdr, 0, sizeof(*vnet_hdr));
616
617         if (skb_is_gso(skb)) {
618                 struct skb_shared_info *sinfo = skb_shinfo(skb);
619
620                 /* This is a hint as to how much should be linear. */
621                 vnet_hdr->hdr_len = skb_headlen(skb);
622                 vnet_hdr->gso_size = sinfo->gso_size;
623                 if (sinfo->gso_type & SKB_GSO_TCPV4)
624                         vnet_hdr->gso_type = VIRTIO_NET_HDR_GSO_TCPV4;
625                 else if (sinfo->gso_type & SKB_GSO_TCPV6)
626                         vnet_hdr->gso_type = VIRTIO_NET_HDR_GSO_TCPV6;
627                 else if (sinfo->gso_type & SKB_GSO_UDP)
628                         vnet_hdr->gso_type = VIRTIO_NET_HDR_GSO_UDP;
629                 else
630                         BUG();
631                 if (sinfo->gso_type & SKB_GSO_TCP_ECN)
632                         vnet_hdr->gso_type |= VIRTIO_NET_HDR_GSO_ECN;
633         } else
634                 vnet_hdr->gso_type = VIRTIO_NET_HDR_GSO_NONE;
635
636         if (skb->ip_summed == CHECKSUM_PARTIAL) {
637                 vnet_hdr->flags = VIRTIO_NET_HDR_F_NEEDS_CSUM;
638                 vnet_hdr->csum_start = skb_checksum_start_offset(skb);
639                 vnet_hdr->csum_offset = skb->csum_offset;
640         } else if (skb->ip_summed == CHECKSUM_UNNECESSARY) {
641                 vnet_hdr->flags = VIRTIO_NET_HDR_F_DATA_VALID;
642         } /* else everything is zero */
643
644         return 0;
645 }
646
647 static unsigned long iov_pages(const struct iovec *iv, int offset,
648                                unsigned long nr_segs)
649 {
650         unsigned long seg, base;
651         int pages = 0, len, size;
652
653         while (nr_segs && (offset >= iv->iov_len)) {
654                 offset -= iv->iov_len;
655                 ++iv;
656                 --nr_segs;
657         }
658
659         for (seg = 0; seg < nr_segs; seg++) {
660                 base = (unsigned long)iv[seg].iov_base + offset;
661                 len = iv[seg].iov_len - offset;
662                 size = ((base & ~PAGE_MASK) + len + ~PAGE_MASK) >> PAGE_SHIFT;
663                 pages += size;
664                 offset = 0;
665         }
666
667         return pages;
668 }
669
670 /* Get packet from user space buffer */
671 static ssize_t macvtap_get_user(struct macvtap_queue *q, struct msghdr *m,
672                                 const struct iovec *iv, unsigned long total_len,
673                                 size_t count, int noblock)
674 {
675         struct sk_buff *skb;
676         struct macvlan_dev *vlan;
677         unsigned long len = total_len;
678         int err;
679         struct virtio_net_hdr vnet_hdr = { 0 };
680         int vnet_hdr_len = 0;
681         int copylen = 0;
682         bool zerocopy = false;
683         size_t linear;
684
685         if (q->flags & IFF_VNET_HDR) {
686                 vnet_hdr_len = q->vnet_hdr_sz;
687
688                 err = -EINVAL;
689                 if (len < vnet_hdr_len)
690                         goto err;
691                 len -= vnet_hdr_len;
692
693                 err = memcpy_fromiovecend((void *)&vnet_hdr, iv, 0,
694                                            sizeof(vnet_hdr));
695                 if (err < 0)
696                         goto err;
697                 if ((vnet_hdr.flags & VIRTIO_NET_HDR_F_NEEDS_CSUM) &&
698                      vnet_hdr.csum_start + vnet_hdr.csum_offset + 2 >
699                                                         vnet_hdr.hdr_len)
700                         vnet_hdr.hdr_len = vnet_hdr.csum_start +
701                                                 vnet_hdr.csum_offset + 2;
702                 err = -EINVAL;
703                 if (vnet_hdr.hdr_len > len)
704                         goto err;
705         }
706
707         err = -EINVAL;
708         if (unlikely(len < ETH_HLEN))
709                 goto err;
710
711         err = -EMSGSIZE;
712         if (unlikely(count > UIO_MAXIOV))
713                 goto err;
714
715         if (m && m->msg_control && sock_flag(&q->sk, SOCK_ZEROCOPY)) {
716                 copylen = vnet_hdr.hdr_len ? vnet_hdr.hdr_len : GOODCOPY_LEN;
717                 linear = copylen;
718                 if (iov_pages(iv, vnet_hdr_len + copylen, count)
719                     <= MAX_SKB_FRAGS)
720                         zerocopy = true;
721         }
722
723         if (!zerocopy) {
724                 copylen = len;
725                 linear = vnet_hdr.hdr_len;
726         }
727
728         skb = macvtap_alloc_skb(&q->sk, NET_IP_ALIGN, copylen,
729                                 linear, noblock, &err);
730         if (!skb)
731                 goto err;
732
733         if (zerocopy)
734                 err = zerocopy_sg_from_iovec(skb, iv, vnet_hdr_len, count);
735         else {
736                 err = skb_copy_datagram_from_iovec(skb, 0, iv, vnet_hdr_len,
737                                                    len);
738                 if (!err && m && m->msg_control) {
739                         struct ubuf_info *uarg = m->msg_control;
740                         uarg->callback(uarg);
741                 }
742         }
743
744         if (err)
745                 goto err_kfree;
746
747         skb_set_network_header(skb, ETH_HLEN);
748         skb_reset_mac_header(skb);
749         skb->protocol = eth_hdr(skb)->h_proto;
750
751         if (vnet_hdr_len) {
752                 err = macvtap_skb_from_vnet_hdr(skb, &vnet_hdr);
753                 if (err)
754                         goto err_kfree;
755         }
756
757         rcu_read_lock_bh();
758         vlan = rcu_dereference_bh(q->vlan);
759         /* copy skb_ubuf_info for callback when skb has no error */
760         if (zerocopy) {
761                 skb_shinfo(skb)->destructor_arg = m->msg_control;
762                 skb_shinfo(skb)->tx_flags |= SKBTX_DEV_ZEROCOPY;
763         }
764         if (vlan)
765                 macvlan_start_xmit(skb, vlan->dev);
766         else
767                 kfree_skb(skb);
768         rcu_read_unlock_bh();
769
770         return total_len;
771
772 err_kfree:
773         kfree_skb(skb);
774
775 err:
776         rcu_read_lock_bh();
777         vlan = rcu_dereference_bh(q->vlan);
778         if (vlan)
779                 vlan->dev->stats.tx_dropped++;
780         rcu_read_unlock_bh();
781
782         return err;
783 }
784
785 static ssize_t macvtap_aio_write(struct kiocb *iocb, const struct iovec *iv,
786                                  unsigned long count, loff_t pos)
787 {
788         struct file *file = iocb->ki_filp;
789         ssize_t result = -ENOLINK;
790         struct macvtap_queue *q = file->private_data;
791
792         result = macvtap_get_user(q, NULL, iv, iov_length(iv, count), count,
793                                   file->f_flags & O_NONBLOCK);
794         return result;
795 }
796
797 /* Put packet to the user space buffer */
798 static ssize_t macvtap_put_user(struct macvtap_queue *q,
799                                 const struct sk_buff *skb,
800                                 const struct iovec *iv, int len)
801 {
802         struct macvlan_dev *vlan;
803         int ret;
804         int vnet_hdr_len = 0;
805
806         if (q->flags & IFF_VNET_HDR) {
807                 struct virtio_net_hdr vnet_hdr;
808                 vnet_hdr_len = q->vnet_hdr_sz;
809                 if ((len -= vnet_hdr_len) < 0)
810                         return -EINVAL;
811
812                 ret = macvtap_skb_to_vnet_hdr(skb, &vnet_hdr);
813                 if (ret)
814                         return ret;
815
816                 if (memcpy_toiovecend(iv, (void *)&vnet_hdr, 0, sizeof(vnet_hdr)))
817                         return -EFAULT;
818         }
819
820         len = min_t(int, skb->len, len);
821
822         ret = skb_copy_datagram_const_iovec(skb, 0, iv, vnet_hdr_len, len);
823
824         rcu_read_lock_bh();
825         vlan = rcu_dereference_bh(q->vlan);
826         if (vlan)
827                 macvlan_count_rx(vlan, len, ret == 0, 0);
828         rcu_read_unlock_bh();
829
830         return ret ? ret : (len + vnet_hdr_len);
831 }
832
833 static ssize_t macvtap_do_read(struct macvtap_queue *q, struct kiocb *iocb,
834                                const struct iovec *iv, unsigned long len,
835                                int noblock)
836 {
837         DECLARE_WAITQUEUE(wait, current);
838         struct sk_buff *skb;
839         ssize_t ret = 0;
840
841         add_wait_queue(sk_sleep(&q->sk), &wait);
842         while (len) {
843                 current->state = TASK_INTERRUPTIBLE;
844
845                 /* Read frames from the queue */
846                 skb = skb_dequeue(&q->sk.sk_receive_queue);
847                 if (!skb) {
848                         if (noblock) {
849                                 ret = -EAGAIN;
850                                 break;
851                         }
852                         if (signal_pending(current)) {
853                                 ret = -ERESTARTSYS;
854                                 break;
855                         }
856                         /* Nothing to read, let's sleep */
857                         schedule();
858                         continue;
859                 }
860                 ret = macvtap_put_user(q, skb, iv, len);
861                 kfree_skb(skb);
862                 break;
863         }
864
865         current->state = TASK_RUNNING;
866         remove_wait_queue(sk_sleep(&q->sk), &wait);
867         return ret;
868 }
869
870 static ssize_t macvtap_aio_read(struct kiocb *iocb, const struct iovec *iv,
871                                 unsigned long count, loff_t pos)
872 {
873         struct file *file = iocb->ki_filp;
874         struct macvtap_queue *q = file->private_data;
875         ssize_t len, ret = 0;
876
877         len = iov_length(iv, count);
878         if (len < 0) {
879                 ret = -EINVAL;
880                 goto out;
881         }
882
883         ret = macvtap_do_read(q, iocb, iv, len, file->f_flags & O_NONBLOCK);
884         ret = min_t(ssize_t, ret, len); /* XXX copied from tun.c. Why? */
885 out:
886         return ret;
887 }
888
889 /*
890  * provide compatibility with generic tun/tap interface
891  */
892 static long macvtap_ioctl(struct file *file, unsigned int cmd,
893                           unsigned long arg)
894 {
895         struct macvtap_queue *q = file->private_data;
896         struct macvlan_dev *vlan;
897         void __user *argp = (void __user *)arg;
898         struct ifreq __user *ifr = argp;
899         unsigned int __user *up = argp;
900         unsigned int u;
901         int __user *sp = argp;
902         int s;
903         int ret;
904
905         switch (cmd) {
906         case TUNSETIFF:
907                 /* ignore the name, just look at flags */
908                 if (get_user(u, &ifr->ifr_flags))
909                         return -EFAULT;
910
911                 ret = 0;
912                 if ((u & ~IFF_VNET_HDR) != (IFF_NO_PI | IFF_TAP))
913                         ret = -EINVAL;
914                 else
915                         q->flags = u;
916
917                 return ret;
918
919         case TUNGETIFF:
920                 rcu_read_lock_bh();
921                 vlan = rcu_dereference_bh(q->vlan);
922                 if (vlan)
923                         dev_hold(vlan->dev);
924                 rcu_read_unlock_bh();
925
926                 if (!vlan)
927                         return -ENOLINK;
928
929                 ret = 0;
930                 if (copy_to_user(&ifr->ifr_name, vlan->dev->name, IFNAMSIZ) ||
931                     put_user(q->flags, &ifr->ifr_flags))
932                         ret = -EFAULT;
933                 dev_put(vlan->dev);
934                 return ret;
935
936         case TUNGETFEATURES:
937                 if (put_user(IFF_TAP | IFF_NO_PI | IFF_VNET_HDR, up))
938                         return -EFAULT;
939                 return 0;
940
941         case TUNSETSNDBUF:
942                 if (get_user(u, up))
943                         return -EFAULT;
944
945                 q->sk.sk_sndbuf = u;
946                 return 0;
947
948         case TUNGETVNETHDRSZ:
949                 s = q->vnet_hdr_sz;
950                 if (put_user(s, sp))
951                         return -EFAULT;
952                 return 0;
953
954         case TUNSETVNETHDRSZ:
955                 if (get_user(s, sp))
956                         return -EFAULT;
957                 if (s < (int)sizeof(struct virtio_net_hdr))
958                         return -EINVAL;
959
960                 q->vnet_hdr_sz = s;
961                 return 0;
962
963         case TUNSETOFFLOAD:
964                 /* let the user check for future flags */
965                 if (arg & ~(TUN_F_CSUM | TUN_F_TSO4 | TUN_F_TSO6 |
966                             TUN_F_TSO_ECN | TUN_F_UFO))
967                         return -EINVAL;
968
969                 /* TODO: only accept frames with the features that
970                          got enabled for forwarded frames */
971                 if (!(q->flags & IFF_VNET_HDR))
972                         return  -EINVAL;
973                 return 0;
974
975         default:
976                 return -EINVAL;
977         }
978 }
979
980 #ifdef CONFIG_COMPAT
981 static long macvtap_compat_ioctl(struct file *file, unsigned int cmd,
982                                  unsigned long arg)
983 {
984         return macvtap_ioctl(file, cmd, (unsigned long)compat_ptr(arg));
985 }
986 #endif
987
988 static const struct file_operations macvtap_fops = {
989         .owner          = THIS_MODULE,
990         .open           = macvtap_open,
991         .release        = macvtap_release,
992         .aio_read       = macvtap_aio_read,
993         .aio_write      = macvtap_aio_write,
994         .poll           = macvtap_poll,
995         .llseek         = no_llseek,
996         .unlocked_ioctl = macvtap_ioctl,
997 #ifdef CONFIG_COMPAT
998         .compat_ioctl   = macvtap_compat_ioctl,
999 #endif
1000 };
1001
1002 static int macvtap_sendmsg(struct kiocb *iocb, struct socket *sock,
1003                            struct msghdr *m, size_t total_len)
1004 {
1005         struct macvtap_queue *q = container_of(sock, struct macvtap_queue, sock);
1006         return macvtap_get_user(q, m, m->msg_iov, total_len, m->msg_iovlen,
1007                             m->msg_flags & MSG_DONTWAIT);
1008 }
1009
1010 static int macvtap_recvmsg(struct kiocb *iocb, struct socket *sock,
1011                            struct msghdr *m, size_t total_len,
1012                            int flags)
1013 {
1014         struct macvtap_queue *q = container_of(sock, struct macvtap_queue, sock);
1015         int ret;
1016         if (flags & ~(MSG_DONTWAIT|MSG_TRUNC))
1017                 return -EINVAL;
1018         ret = macvtap_do_read(q, iocb, m->msg_iov, total_len,
1019                           flags & MSG_DONTWAIT);
1020         if (ret > total_len) {
1021                 m->msg_flags |= MSG_TRUNC;
1022                 ret = flags & MSG_TRUNC ? ret : total_len;
1023         }
1024         return ret;
1025 }
1026
1027 /* Ops structure to mimic raw sockets with tun */
1028 static const struct proto_ops macvtap_socket_ops = {
1029         .sendmsg = macvtap_sendmsg,
1030         .recvmsg = macvtap_recvmsg,
1031 };
1032
1033 /* Get an underlying socket object from tun file.  Returns error unless file is
1034  * attached to a device.  The returned object works like a packet socket, it
1035  * can be used for sock_sendmsg/sock_recvmsg.  The caller is responsible for
1036  * holding a reference to the file for as long as the socket is in use. */
1037 struct socket *macvtap_get_socket(struct file *file)
1038 {
1039         struct macvtap_queue *q;
1040         if (file->f_op != &macvtap_fops)
1041                 return ERR_PTR(-EINVAL);
1042         q = file->private_data;
1043         if (!q)
1044                 return ERR_PTR(-EBADFD);
1045         return &q->sock;
1046 }
1047 EXPORT_SYMBOL_GPL(macvtap_get_socket);
1048
1049 static int macvtap_device_event(struct notifier_block *unused,
1050                                 unsigned long event, void *ptr)
1051 {
1052         struct net_device *dev = ptr;
1053         struct macvlan_dev *vlan;
1054         struct device *classdev;
1055         dev_t devt;
1056         int err;
1057
1058         if (dev->rtnl_link_ops != &macvtap_link_ops)
1059                 return NOTIFY_DONE;
1060
1061         vlan = netdev_priv(dev);
1062
1063         switch (event) {
1064         case NETDEV_REGISTER:
1065                 /* Create the device node here after the network device has
1066                  * been registered but before register_netdevice has
1067                  * finished running.
1068                  */
1069                 err = macvtap_get_minor(vlan);
1070                 if (err)
1071                         return notifier_from_errno(err);
1072
1073                 devt = MKDEV(MAJOR(macvtap_major), vlan->minor);
1074                 classdev = device_create(macvtap_class, &dev->dev, devt,
1075                                          dev, "tap%d", dev->ifindex);
1076                 if (IS_ERR(classdev)) {
1077                         macvtap_free_minor(vlan);
1078                         return notifier_from_errno(PTR_ERR(classdev));
1079                 }
1080                 break;
1081         case NETDEV_UNREGISTER:
1082                 devt = MKDEV(MAJOR(macvtap_major), vlan->minor);
1083                 device_destroy(macvtap_class, devt);
1084                 macvtap_free_minor(vlan);
1085                 break;
1086         }
1087
1088         return NOTIFY_DONE;
1089 }
1090
1091 static struct notifier_block macvtap_notifier_block __read_mostly = {
1092         .notifier_call  = macvtap_device_event,
1093 };
1094
1095 static int macvtap_init(void)
1096 {
1097         int err;
1098
1099         err = alloc_chrdev_region(&macvtap_major, 0,
1100                                 MACVTAP_NUM_DEVS, "macvtap");
1101         if (err)
1102                 goto out1;
1103
1104         cdev_init(&macvtap_cdev, &macvtap_fops);
1105         err = cdev_add(&macvtap_cdev, macvtap_major, MACVTAP_NUM_DEVS);
1106         if (err)
1107                 goto out2;
1108
1109         macvtap_class = class_create(THIS_MODULE, "macvtap");
1110         if (IS_ERR(macvtap_class)) {
1111                 err = PTR_ERR(macvtap_class);
1112                 goto out3;
1113         }
1114
1115         err = register_netdevice_notifier(&macvtap_notifier_block);
1116         if (err)
1117                 goto out4;
1118
1119         err = macvlan_link_register(&macvtap_link_ops);
1120         if (err)
1121                 goto out5;
1122
1123         return 0;
1124
1125 out5:
1126         unregister_netdevice_notifier(&macvtap_notifier_block);
1127 out4:
1128         class_unregister(macvtap_class);
1129 out3:
1130         cdev_del(&macvtap_cdev);
1131 out2:
1132         unregister_chrdev_region(macvtap_major, MACVTAP_NUM_DEVS);
1133 out1:
1134         return err;
1135 }
1136 module_init(macvtap_init);
1137
1138 static void macvtap_exit(void)
1139 {
1140         rtnl_link_unregister(&macvtap_link_ops);
1141         unregister_netdevice_notifier(&macvtap_notifier_block);
1142         class_unregister(macvtap_class);
1143         cdev_del(&macvtap_cdev);
1144         unregister_chrdev_region(macvtap_major, MACVTAP_NUM_DEVS);
1145 }
1146 module_exit(macvtap_exit);
1147
1148 MODULE_ALIAS_RTNL_LINK("macvtap");
1149 MODULE_AUTHOR("Arnd Bergmann <arnd@arndb.de>");
1150 MODULE_LICENSE("GPL");