blob: ecee0fe65a9776584762f96ed364df8325e904ee [file] [log] [blame]
Arnd Bergmann20d29d72010-01-30 12:24:26 +00001#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>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090012#include <linux/slab.h>
Arnd Bergmann20d29d72010-01-30 12:24:26 +000013#include <linux/init.h>
14#include <linux/wait.h>
15#include <linux/cdev.h>
16#include <linux/fs.h>
17
18#include <net/net_namespace.h>
19#include <net/rtnetlink.h>
20#include <net/sock.h>
Arnd Bergmannb9fb9ee2010-02-18 05:48:17 +000021#include <linux/virtio_net.h>
Arnd Bergmann20d29d72010-01-30 12:24:26 +000022
23/*
24 * A macvtap queue is the central object of this driver, it connects
25 * an open character device to a macvlan interface. There can be
26 * multiple queues on one interface, which map back to queues
27 * implemented in hardware on the underlying device.
28 *
29 * macvtap_proto is used to allocate queues through the sock allocation
30 * mechanism.
31 *
32 * TODO: multiqueue support is currently not implemented, even though
33 * macvtap is basically prepared for that. We will need to add this
34 * here as well as in virtio-net and qemu to get line rate on 10gbit
35 * adapters from a guest.
36 */
37struct macvtap_queue {
38 struct sock sk;
39 struct socket sock;
Eric Dumazet43815482010-04-29 11:01:49 +000040 struct socket_wq wq;
Michael S. Tsirkin55afbd02010-04-29 13:50:48 +030041 int vnet_hdr_sz;
Eric Dumazet13707f92011-01-26 19:28:23 +000042 struct macvlan_dev __rcu *vlan;
Arnd Bergmann20d29d72010-01-30 12:24:26 +000043 struct file *file;
Arnd Bergmannb9fb9ee2010-02-18 05:48:17 +000044 unsigned int flags;
Arnd Bergmann20d29d72010-01-30 12:24:26 +000045};
46
47static struct proto macvtap_proto = {
48 .name = "macvtap",
49 .owner = THIS_MODULE,
50 .obj_size = sizeof (struct macvtap_queue),
51};
52
53/*
54 * Minor number matches netdev->ifindex, so need a potentially
55 * large value. This also makes it possible to split the
56 * tap functionality out again in the future by offering it
57 * from other drivers besides macvtap. As long as every device
58 * only has one tap, the interface numbers assure that the
59 * device nodes are unique.
60 */
David S. Miller1ebed712010-07-10 19:25:50 -070061static dev_t macvtap_major;
Arnd Bergmann20d29d72010-01-30 12:24:26 +000062#define MACVTAP_NUM_DEVS 65536
63static struct class *macvtap_class;
64static struct cdev macvtap_cdev;
65
Arnd Bergmann501c7742010-02-18 05:46:50 +000066static const struct proto_ops macvtap_socket_ops;
67
Arnd Bergmann20d29d72010-01-30 12:24:26 +000068/*
69 * RCU usage:
Arnd Bergmann02df55d2010-02-18 05:45:36 +000070 * 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.
Arnd Bergmann20d29d72010-01-30 12:24:26 +000073 *
Arnd Bergmann02df55d2010-02-18 05:45:36 +000074 * 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.
Arnd Bergmann20d29d72010-01-30 12:24:26 +000078 *
Arnd Bergmann02df55d2010-02-18 05:45:36 +000079 * 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.
Arnd Bergmann20d29d72010-01-30 12:24:26 +000083 */
84static DEFINE_SPINLOCK(macvtap_lock);
85
86/*
Krishna Kumar1565c7c2010-08-04 06:15:59 +000087 * 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.
Arnd Bergmann20d29d72010-01-30 12:24:26 +000090 */
Krishna Kumar1565c7c2010-08-04 06:15:59 +000091static 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
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000104static 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);
Krishna Kumar1565c7c2010-08-04 06:15:59 +0000108 int index;
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000109 int err = -EBUSY;
110
111 spin_lock(&macvtap_lock);
Krishna Kumar1565c7c2010-08-04 06:15:59 +0000112 if (vlan->numvtaps == MAX_MACVTAP_QUEUES)
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000113 goto out;
114
115 err = 0;
Krishna Kumar1565c7c2010-08-04 06:15:59 +0000116 index = get_slot(vlan, NULL);
Arnd Bergmann02df55d2010-02-18 05:45:36 +0000117 rcu_assign_pointer(q->vlan, vlan);
Krishna Kumar1565c7c2010-08-04 06:15:59 +0000118 rcu_assign_pointer(vlan->taps[index], q);
Arnd Bergmann02df55d2010-02-18 05:45:36 +0000119 sock_hold(&q->sk);
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000120
121 q->file = file;
Arnd Bergmann02df55d2010-02-18 05:45:36 +0000122 file->private_data = q;
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000123
Krishna Kumar1565c7c2010-08-04 06:15:59 +0000124 vlan->numvtaps++;
125
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000126out:
127 spin_unlock(&macvtap_lock);
128 return err;
129}
130
131/*
Arnd Bergmann02df55d2010-02-18 05:45:36 +0000132 * 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.
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000135 *
136 * Using the spinlock makes sure that we don't get
137 * to the queue again after destroying it.
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000138 */
Arnd Bergmann02df55d2010-02-18 05:45:36 +0000139static void macvtap_put_queue(struct macvtap_queue *q)
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000140{
Arnd Bergmann02df55d2010-02-18 05:45:36 +0000141 struct macvlan_dev *vlan;
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000142
143 spin_lock(&macvtap_lock);
Eric Dumazet13707f92011-01-26 19:28:23 +0000144 vlan = rcu_dereference_protected(q->vlan,
145 lockdep_is_held(&macvtap_lock));
Arnd Bergmann02df55d2010-02-18 05:45:36 +0000146 if (vlan) {
Krishna Kumar1565c7c2010-08-04 06:15:59 +0000147 int index = get_slot(vlan, q);
148
149 rcu_assign_pointer(vlan->taps[index], NULL);
Arnd Bergmann02df55d2010-02-18 05:45:36 +0000150 rcu_assign_pointer(q->vlan, NULL);
151 sock_put(&q->sk);
Krishna Kumar1565c7c2010-08-04 06:15:59 +0000152 --vlan->numvtaps;
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000153 }
154
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000155 spin_unlock(&macvtap_lock);
156
157 synchronize_rcu();
158 sock_put(&q->sk);
159}
160
161/*
Krishna Kumar1565c7c2010-08-04 06:15:59 +0000162 * 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.
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000167 */
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);
Krishna Kumar1565c7c2010-08-04 06:15:59 +0000172 struct macvtap_queue *tap = NULL;
173 int numvtaps = vlan->numvtaps;
174 __u32 rxq;
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000175
Krishna Kumar1565c7c2010-08-04 06:15:59 +0000176 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
205out:
206 return tap;
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000207}
208
Arnd Bergmann02df55d2010-02-18 05:45:36 +0000209/*
210 * The net_device is going away, give up the reference
Krishna Kumar1565c7c2010-08-04 06:15:59 +0000211 * that it holds on all queues and safely set the pointer
212 * from the queues to NULL.
Arnd Bergmann02df55d2010-02-18 05:45:36 +0000213 */
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000214static void macvtap_del_queues(struct net_device *dev)
215{
216 struct macvlan_dev *vlan = netdev_priv(dev);
Krishna Kumar1565c7c2010-08-04 06:15:59 +0000217 struct macvtap_queue *q, *qlist[MAX_MACVTAP_QUEUES];
218 int i, j = 0;
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000219
Krishna Kumar1565c7c2010-08-04 06:15:59 +0000220 /* macvtap_put_queue can free some slots, so go through all slots */
Arnd Bergmann02df55d2010-02-18 05:45:36 +0000221 spin_lock(&macvtap_lock);
Krishna Kumar1565c7c2010-08-04 06:15:59 +0000222 for (i = 0; i < MAX_MACVTAP_QUEUES && vlan->numvtaps; i++) {
Eric Dumazet13707f92011-01-26 19:28:23 +0000223 q = rcu_dereference_protected(vlan->taps[i],
224 lockdep_is_held(&macvtap_lock));
Krishna Kumar1565c7c2010-08-04 06:15:59 +0000225 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 }
Arnd Bergmann02df55d2010-02-18 05:45:36 +0000231 }
Krishna Kumar1565c7c2010-08-04 06:15:59 +0000232 BUG_ON(vlan->numvtaps != 0);
Arnd Bergmann02df55d2010-02-18 05:45:36 +0000233 spin_unlock(&macvtap_lock);
234
235 synchronize_rcu();
Krishna Kumar1565c7c2010-08-04 06:15:59 +0000236
237 for (--j; j >= 0; j--)
238 sock_put(&qlist[j]->sk);
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000239}
240
241/*
242 * Forward happens for data that gets sent from one macvlan
243 * endpoint to another one in bridge mode. We just take
244 * the skb and put it into the receive queue.
245 */
246static int macvtap_forward(struct net_device *dev, struct sk_buff *skb)
247{
248 struct macvtap_queue *q = macvtap_get_queue(dev, skb);
249 if (!q)
Herbert Xu8a357472010-07-21 21:44:31 +0000250 goto drop;
251
252 if (skb_queue_len(&q->sk.sk_receive_queue) >= dev->tx_queue_len)
253 goto drop;
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000254
255 skb_queue_tail(&q->sk.sk_receive_queue, skb);
Eric Dumazet4a4771a2010-04-25 22:20:06 +0000256 wake_up_interruptible_poll(sk_sleep(&q->sk), POLLIN | POLLRDNORM | POLLRDBAND);
Herbert Xu8a357472010-07-21 21:44:31 +0000257 return NET_RX_SUCCESS;
258
259drop:
260 kfree_skb(skb);
261 return NET_RX_DROP;
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000262}
263
264/*
265 * Receive is for data from the external interface (lowerdev),
266 * in case of macvtap, we can treat that the same way as
267 * forward, which macvlan cannot.
268 */
269static int macvtap_receive(struct sk_buff *skb)
270{
271 skb_push(skb, ETH_HLEN);
272 return macvtap_forward(skb->dev, skb);
273}
274
275static int macvtap_newlink(struct net *src_net,
276 struct net_device *dev,
277 struct nlattr *tb[],
278 struct nlattr *data[])
279{
280 struct device *classdev;
281 dev_t devt;
282 int err;
283
284 err = macvlan_common_newlink(src_net, dev, tb, data,
285 macvtap_receive, macvtap_forward);
286 if (err)
287 goto out;
288
289 devt = MKDEV(MAJOR(macvtap_major), dev->ifindex);
290
291 classdev = device_create(macvtap_class, &dev->dev, devt,
292 dev, "tap%d", dev->ifindex);
293 if (IS_ERR(classdev)) {
294 err = PTR_ERR(classdev);
295 macvtap_del_queues(dev);
296 }
297
298out:
299 return err;
300}
301
302static void macvtap_dellink(struct net_device *dev,
303 struct list_head *head)
304{
305 device_destroy(macvtap_class,
306 MKDEV(MAJOR(macvtap_major), dev->ifindex));
307
308 macvtap_del_queues(dev);
309 macvlan_dellink(dev, head);
310}
311
Herbert Xu8a357472010-07-21 21:44:31 +0000312static void macvtap_setup(struct net_device *dev)
313{
314 macvlan_common_setup(dev);
315 dev->tx_queue_len = TUN_READQ_SIZE;
316}
317
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000318static struct rtnl_link_ops macvtap_link_ops __read_mostly = {
319 .kind = "macvtap",
Herbert Xu8a357472010-07-21 21:44:31 +0000320 .setup = macvtap_setup,
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000321 .newlink = macvtap_newlink,
322 .dellink = macvtap_dellink,
323};
324
325
326static void macvtap_sock_write_space(struct sock *sk)
327{
Eric Dumazet43815482010-04-29 11:01:49 +0000328 wait_queue_head_t *wqueue;
329
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000330 if (!sock_writeable(sk) ||
331 !test_and_clear_bit(SOCK_ASYNC_NOSPACE, &sk->sk_socket->flags))
332 return;
333
Eric Dumazet43815482010-04-29 11:01:49 +0000334 wqueue = sk_sleep(sk);
335 if (wqueue && waitqueue_active(wqueue))
336 wake_up_interruptible_poll(wqueue, POLLOUT | POLLWRNORM | POLLWRBAND);
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000337}
338
339static int macvtap_open(struct inode *inode, struct file *file)
340{
341 struct net *net = current->nsproxy->net_ns;
342 struct net_device *dev = dev_get_by_index(net, iminor(inode));
343 struct macvtap_queue *q;
344 int err;
345
346 err = -ENODEV;
347 if (!dev)
348 goto out;
349
350 /* check if this is a macvtap device */
351 err = -EINVAL;
352 if (dev->rtnl_link_ops != &macvtap_link_ops)
353 goto out;
354
355 err = -ENOMEM;
356 q = (struct macvtap_queue *)sk_alloc(net, AF_UNSPEC, GFP_KERNEL,
357 &macvtap_proto);
358 if (!q)
359 goto out;
360
Eric Dumazet43815482010-04-29 11:01:49 +0000361 q->sock.wq = &q->wq;
362 init_waitqueue_head(&q->wq.wait);
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000363 q->sock.type = SOCK_RAW;
364 q->sock.state = SS_CONNECTED;
Arnd Bergmann501c7742010-02-18 05:46:50 +0000365 q->sock.file = file;
366 q->sock.ops = &macvtap_socket_ops;
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000367 sock_init_data(&q->sock, &q->sk);
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000368 q->sk.sk_write_space = macvtap_sock_write_space;
Arnd Bergmannb9fb9ee2010-02-18 05:48:17 +0000369 q->flags = IFF_VNET_HDR | IFF_NO_PI | IFF_TAP;
Michael S. Tsirkin55afbd02010-04-29 13:50:48 +0300370 q->vnet_hdr_sz = sizeof(struct virtio_net_hdr);
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000371
372 err = macvtap_set_queue(dev, file, q);
373 if (err)
374 sock_put(&q->sk);
375
376out:
377 if (dev)
378 dev_put(dev);
379
380 return err;
381}
382
383static int macvtap_release(struct inode *inode, struct file *file)
384{
Arnd Bergmann02df55d2010-02-18 05:45:36 +0000385 struct macvtap_queue *q = file->private_data;
386 macvtap_put_queue(q);
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000387 return 0;
388}
389
390static unsigned int macvtap_poll(struct file *file, poll_table * wait)
391{
Arnd Bergmann02df55d2010-02-18 05:45:36 +0000392 struct macvtap_queue *q = file->private_data;
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000393 unsigned int mask = POLLERR;
394
395 if (!q)
396 goto out;
397
398 mask = 0;
Eric Dumazet43815482010-04-29 11:01:49 +0000399 poll_wait(file, &q->wq.wait, wait);
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000400
401 if (!skb_queue_empty(&q->sk.sk_receive_queue))
402 mask |= POLLIN | POLLRDNORM;
403
404 if (sock_writeable(&q->sk) ||
405 (!test_and_set_bit(SOCK_ASYNC_NOSPACE, &q->sock.flags) &&
406 sock_writeable(&q->sk)))
407 mask |= POLLOUT | POLLWRNORM;
408
409out:
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000410 return mask;
411}
412
Arnd Bergmannb9fb9ee2010-02-18 05:48:17 +0000413static inline struct sk_buff *macvtap_alloc_skb(struct sock *sk, size_t prepad,
414 size_t len, size_t linear,
415 int noblock, int *err)
416{
417 struct sk_buff *skb;
418
419 /* Under a page? Don't bother with paged skb. */
420 if (prepad + len < PAGE_SIZE || !linear)
421 linear = len;
422
423 skb = sock_alloc_send_pskb(sk, prepad + linear, len - linear, noblock,
424 err);
425 if (!skb)
426 return NULL;
427
428 skb_reserve(skb, prepad);
429 skb_put(skb, linear);
430 skb->data_len = len - linear;
431 skb->len += len - linear;
432
433 return skb;
434}
435
436/*
437 * macvtap_skb_from_vnet_hdr and macvtap_skb_to_vnet_hdr should
438 * be shared with the tun/tap driver.
439 */
440static int macvtap_skb_from_vnet_hdr(struct sk_buff *skb,
441 struct virtio_net_hdr *vnet_hdr)
442{
443 unsigned short gso_type = 0;
444 if (vnet_hdr->gso_type != VIRTIO_NET_HDR_GSO_NONE) {
445 switch (vnet_hdr->gso_type & ~VIRTIO_NET_HDR_GSO_ECN) {
446 case VIRTIO_NET_HDR_GSO_TCPV4:
447 gso_type = SKB_GSO_TCPV4;
448 break;
449 case VIRTIO_NET_HDR_GSO_TCPV6:
450 gso_type = SKB_GSO_TCPV6;
451 break;
452 case VIRTIO_NET_HDR_GSO_UDP:
453 gso_type = SKB_GSO_UDP;
454 break;
455 default:
456 return -EINVAL;
457 }
458
459 if (vnet_hdr->gso_type & VIRTIO_NET_HDR_GSO_ECN)
460 gso_type |= SKB_GSO_TCP_ECN;
461
462 if (vnet_hdr->gso_size == 0)
463 return -EINVAL;
464 }
465
466 if (vnet_hdr->flags & VIRTIO_NET_HDR_F_NEEDS_CSUM) {
467 if (!skb_partial_csum_set(skb, vnet_hdr->csum_start,
468 vnet_hdr->csum_offset))
469 return -EINVAL;
470 }
471
472 if (vnet_hdr->gso_type != VIRTIO_NET_HDR_GSO_NONE) {
473 skb_shinfo(skb)->gso_size = vnet_hdr->gso_size;
474 skb_shinfo(skb)->gso_type = gso_type;
475
476 /* Header must be checked, and gso_segs computed. */
477 skb_shinfo(skb)->gso_type |= SKB_GSO_DODGY;
478 skb_shinfo(skb)->gso_segs = 0;
479 }
480 return 0;
481}
482
483static int macvtap_skb_to_vnet_hdr(const struct sk_buff *skb,
484 struct virtio_net_hdr *vnet_hdr)
485{
486 memset(vnet_hdr, 0, sizeof(*vnet_hdr));
487
488 if (skb_is_gso(skb)) {
489 struct skb_shared_info *sinfo = skb_shinfo(skb);
490
491 /* This is a hint as to how much should be linear. */
492 vnet_hdr->hdr_len = skb_headlen(skb);
493 vnet_hdr->gso_size = sinfo->gso_size;
494 if (sinfo->gso_type & SKB_GSO_TCPV4)
495 vnet_hdr->gso_type = VIRTIO_NET_HDR_GSO_TCPV4;
496 else if (sinfo->gso_type & SKB_GSO_TCPV6)
497 vnet_hdr->gso_type = VIRTIO_NET_HDR_GSO_TCPV6;
498 else if (sinfo->gso_type & SKB_GSO_UDP)
499 vnet_hdr->gso_type = VIRTIO_NET_HDR_GSO_UDP;
500 else
501 BUG();
502 if (sinfo->gso_type & SKB_GSO_TCP_ECN)
503 vnet_hdr->gso_type |= VIRTIO_NET_HDR_GSO_ECN;
504 } else
505 vnet_hdr->gso_type = VIRTIO_NET_HDR_GSO_NONE;
506
507 if (skb->ip_summed == CHECKSUM_PARTIAL) {
508 vnet_hdr->flags = VIRTIO_NET_HDR_F_NEEDS_CSUM;
Michał Mirosław55508d62010-12-14 15:24:08 +0000509 vnet_hdr->csum_start = skb_checksum_start_offset(skb);
Arnd Bergmannb9fb9ee2010-02-18 05:48:17 +0000510 vnet_hdr->csum_offset = skb->csum_offset;
Jason Wang10a8d942011-06-10 00:56:17 +0000511 } else if (skb->ip_summed == CHECKSUM_UNNECESSARY) {
512 vnet_hdr->flags = VIRTIO_NET_HDR_F_DATA_VALID;
Arnd Bergmannb9fb9ee2010-02-18 05:48:17 +0000513 } /* else everything is zero */
514
515 return 0;
516}
517
518
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000519/* Get packet from user space buffer */
520static ssize_t macvtap_get_user(struct macvtap_queue *q,
521 const struct iovec *iv, size_t count,
522 int noblock)
523{
524 struct sk_buff *skb;
Arnd Bergmann02df55d2010-02-18 05:45:36 +0000525 struct macvlan_dev *vlan;
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000526 size_t len = count;
527 int err;
Arnd Bergmannb9fb9ee2010-02-18 05:48:17 +0000528 struct virtio_net_hdr vnet_hdr = { 0 };
529 int vnet_hdr_len = 0;
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000530
Arnd Bergmannb9fb9ee2010-02-18 05:48:17 +0000531 if (q->flags & IFF_VNET_HDR) {
Michael S. Tsirkin55afbd02010-04-29 13:50:48 +0300532 vnet_hdr_len = q->vnet_hdr_sz;
Arnd Bergmannb9fb9ee2010-02-18 05:48:17 +0000533
534 err = -EINVAL;
Nicolas Kaiserce3c8692011-03-04 13:49:41 +0000535 if (len < vnet_hdr_len)
Arnd Bergmannb9fb9ee2010-02-18 05:48:17 +0000536 goto err;
Nicolas Kaiserce3c8692011-03-04 13:49:41 +0000537 len -= vnet_hdr_len;
Arnd Bergmannb9fb9ee2010-02-18 05:48:17 +0000538
539 err = memcpy_fromiovecend((void *)&vnet_hdr, iv, 0,
Michael S. Tsirkin55afbd02010-04-29 13:50:48 +0300540 sizeof(vnet_hdr));
Arnd Bergmannb9fb9ee2010-02-18 05:48:17 +0000541 if (err < 0)
542 goto err;
543 if ((vnet_hdr.flags & VIRTIO_NET_HDR_F_NEEDS_CSUM) &&
544 vnet_hdr.csum_start + vnet_hdr.csum_offset + 2 >
545 vnet_hdr.hdr_len)
546 vnet_hdr.hdr_len = vnet_hdr.csum_start +
547 vnet_hdr.csum_offset + 2;
548 err = -EINVAL;
549 if (vnet_hdr.hdr_len > len)
550 goto err;
551 }
552
553 err = -EINVAL;
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000554 if (unlikely(len < ETH_HLEN))
Arnd Bergmannb9fb9ee2010-02-18 05:48:17 +0000555 goto err;
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000556
Arnd Bergmannb9fb9ee2010-02-18 05:48:17 +0000557 skb = macvtap_alloc_skb(&q->sk, NET_IP_ALIGN, len, vnet_hdr.hdr_len,
558 noblock, &err);
Arnd Bergmann02df55d2010-02-18 05:45:36 +0000559 if (!skb)
560 goto err;
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000561
Arnd Bergmannb9fb9ee2010-02-18 05:48:17 +0000562 err = skb_copy_datagram_from_iovec(skb, 0, iv, vnet_hdr_len, len);
Arnd Bergmann02df55d2010-02-18 05:45:36 +0000563 if (err)
Arnd Bergmannb9fb9ee2010-02-18 05:48:17 +0000564 goto err_kfree;
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000565
566 skb_set_network_header(skb, ETH_HLEN);
Arnd Bergmannb9fb9ee2010-02-18 05:48:17 +0000567 skb_reset_mac_header(skb);
568 skb->protocol = eth_hdr(skb)->h_proto;
569
570 if (vnet_hdr_len) {
571 err = macvtap_skb_from_vnet_hdr(skb, &vnet_hdr);
572 if (err)
573 goto err_kfree;
574 }
575
Arnd Bergmann02df55d2010-02-18 05:45:36 +0000576 rcu_read_lock_bh();
Eric Dumazet13707f92011-01-26 19:28:23 +0000577 vlan = rcu_dereference_bh(q->vlan);
Arnd Bergmann02df55d2010-02-18 05:45:36 +0000578 if (vlan)
579 macvlan_start_xmit(skb, vlan->dev);
580 else
581 kfree_skb(skb);
582 rcu_read_unlock_bh();
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000583
584 return count;
Arnd Bergmann02df55d2010-02-18 05:45:36 +0000585
Arnd Bergmannb9fb9ee2010-02-18 05:48:17 +0000586err_kfree:
587 kfree_skb(skb);
588
Arnd Bergmann02df55d2010-02-18 05:45:36 +0000589err:
590 rcu_read_lock_bh();
Eric Dumazet13707f92011-01-26 19:28:23 +0000591 vlan = rcu_dereference_bh(q->vlan);
Arnd Bergmann02df55d2010-02-18 05:45:36 +0000592 if (vlan)
Eric Dumazet1ac9ad12011-01-12 12:13:14 +0000593 vlan->dev->stats.tx_dropped++;
Arnd Bergmann02df55d2010-02-18 05:45:36 +0000594 rcu_read_unlock_bh();
595
Arnd Bergmann02df55d2010-02-18 05:45:36 +0000596 return err;
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000597}
598
599static ssize_t macvtap_aio_write(struct kiocb *iocb, const struct iovec *iv,
600 unsigned long count, loff_t pos)
601{
602 struct file *file = iocb->ki_filp;
603 ssize_t result = -ENOLINK;
Arnd Bergmann02df55d2010-02-18 05:45:36 +0000604 struct macvtap_queue *q = file->private_data;
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000605
606 result = macvtap_get_user(q, iv, iov_length(iv, count),
607 file->f_flags & O_NONBLOCK);
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000608 return result;
609}
610
611/* Put packet to the user space buffer */
612static ssize_t macvtap_put_user(struct macvtap_queue *q,
613 const struct sk_buff *skb,
614 const struct iovec *iv, int len)
615{
Arnd Bergmann02df55d2010-02-18 05:45:36 +0000616 struct macvlan_dev *vlan;
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000617 int ret;
Arnd Bergmannb9fb9ee2010-02-18 05:48:17 +0000618 int vnet_hdr_len = 0;
619
620 if (q->flags & IFF_VNET_HDR) {
621 struct virtio_net_hdr vnet_hdr;
Michael S. Tsirkin55afbd02010-04-29 13:50:48 +0300622 vnet_hdr_len = q->vnet_hdr_sz;
Arnd Bergmannb9fb9ee2010-02-18 05:48:17 +0000623 if ((len -= vnet_hdr_len) < 0)
624 return -EINVAL;
625
626 ret = macvtap_skb_to_vnet_hdr(skb, &vnet_hdr);
627 if (ret)
628 return ret;
629
Michael S. Tsirkin55afbd02010-04-29 13:50:48 +0300630 if (memcpy_toiovecend(iv, (void *)&vnet_hdr, 0, sizeof(vnet_hdr)))
Arnd Bergmannb9fb9ee2010-02-18 05:48:17 +0000631 return -EFAULT;
632 }
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000633
634 len = min_t(int, skb->len, len);
635
Arnd Bergmannb9fb9ee2010-02-18 05:48:17 +0000636 ret = skb_copy_datagram_const_iovec(skb, 0, iv, vnet_hdr_len, len);
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000637
Arnd Bergmann02df55d2010-02-18 05:45:36 +0000638 rcu_read_lock_bh();
Eric Dumazet13707f92011-01-26 19:28:23 +0000639 vlan = rcu_dereference_bh(q->vlan);
Arnd Bergmann501c7742010-02-18 05:46:50 +0000640 if (vlan)
641 macvlan_count_rx(vlan, len, ret == 0, 0);
Arnd Bergmann02df55d2010-02-18 05:45:36 +0000642 rcu_read_unlock_bh();
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000643
Arnd Bergmannb9fb9ee2010-02-18 05:48:17 +0000644 return ret ? ret : (len + vnet_hdr_len);
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000645}
646
Arnd Bergmann501c7742010-02-18 05:46:50 +0000647static ssize_t macvtap_do_read(struct macvtap_queue *q, struct kiocb *iocb,
648 const struct iovec *iv, unsigned long len,
649 int noblock)
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000650{
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000651 DECLARE_WAITQUEUE(wait, current);
652 struct sk_buff *skb;
Arnd Bergmann501c7742010-02-18 05:46:50 +0000653 ssize_t ret = 0;
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000654
Eric Dumazet4a4771a2010-04-25 22:20:06 +0000655 add_wait_queue(sk_sleep(&q->sk), &wait);
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000656 while (len) {
657 current->state = TASK_INTERRUPTIBLE;
658
659 /* Read frames from the queue */
660 skb = skb_dequeue(&q->sk.sk_receive_queue);
661 if (!skb) {
Arnd Bergmann501c7742010-02-18 05:46:50 +0000662 if (noblock) {
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000663 ret = -EAGAIN;
664 break;
665 }
666 if (signal_pending(current)) {
667 ret = -ERESTARTSYS;
668 break;
669 }
670 /* Nothing to read, let's sleep */
671 schedule();
672 continue;
673 }
674 ret = macvtap_put_user(q, skb, iv, len);
675 kfree_skb(skb);
676 break;
677 }
678
679 current->state = TASK_RUNNING;
Eric Dumazet4a4771a2010-04-25 22:20:06 +0000680 remove_wait_queue(sk_sleep(&q->sk), &wait);
Arnd Bergmann501c7742010-02-18 05:46:50 +0000681 return ret;
682}
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000683
Arnd Bergmann501c7742010-02-18 05:46:50 +0000684static ssize_t macvtap_aio_read(struct kiocb *iocb, const struct iovec *iv,
685 unsigned long count, loff_t pos)
686{
687 struct file *file = iocb->ki_filp;
688 struct macvtap_queue *q = file->private_data;
689 ssize_t len, ret = 0;
690
691 len = iov_length(iv, count);
692 if (len < 0) {
693 ret = -EINVAL;
694 goto out;
695 }
696
697 ret = macvtap_do_read(q, iocb, iv, len, file->f_flags & O_NONBLOCK);
698 ret = min_t(ssize_t, ret, len); /* XXX copied from tun.c. Why? */
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000699out:
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000700 return ret;
701}
702
703/*
704 * provide compatibility with generic tun/tap interface
705 */
706static long macvtap_ioctl(struct file *file, unsigned int cmd,
707 unsigned long arg)
708{
Arnd Bergmann02df55d2010-02-18 05:45:36 +0000709 struct macvtap_queue *q = file->private_data;
710 struct macvlan_dev *vlan;
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000711 void __user *argp = (void __user *)arg;
712 struct ifreq __user *ifr = argp;
713 unsigned int __user *up = argp;
714 unsigned int u;
Michael S. Tsirkin55afbd02010-04-29 13:50:48 +0300715 int __user *sp = argp;
716 int s;
Arnd Bergmann02df55d2010-02-18 05:45:36 +0000717 int ret;
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000718
719 switch (cmd) {
720 case TUNSETIFF:
721 /* ignore the name, just look at flags */
722 if (get_user(u, &ifr->ifr_flags))
723 return -EFAULT;
Arnd Bergmannb9fb9ee2010-02-18 05:48:17 +0000724
725 ret = 0;
726 if ((u & ~IFF_VNET_HDR) != (IFF_NO_PI | IFF_TAP))
727 ret = -EINVAL;
728 else
729 q->flags = u;
730
731 return ret;
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000732
733 case TUNGETIFF:
Arnd Bergmann02df55d2010-02-18 05:45:36 +0000734 rcu_read_lock_bh();
Eric Dumazet13707f92011-01-26 19:28:23 +0000735 vlan = rcu_dereference_bh(q->vlan);
Arnd Bergmann02df55d2010-02-18 05:45:36 +0000736 if (vlan)
737 dev_hold(vlan->dev);
738 rcu_read_unlock_bh();
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000739
Arnd Bergmann02df55d2010-02-18 05:45:36 +0000740 if (!vlan)
741 return -ENOLINK;
742
743 ret = 0;
Eric Dumazet13707f92011-01-26 19:28:23 +0000744 if (copy_to_user(&ifr->ifr_name, vlan->dev->name, IFNAMSIZ) ||
Arnd Bergmannb9fb9ee2010-02-18 05:48:17 +0000745 put_user(q->flags, &ifr->ifr_flags))
Arnd Bergmann02df55d2010-02-18 05:45:36 +0000746 ret = -EFAULT;
747 dev_put(vlan->dev);
748 return ret;
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000749
750 case TUNGETFEATURES:
Arnd Bergmannb9fb9ee2010-02-18 05:48:17 +0000751 if (put_user(IFF_TAP | IFF_NO_PI | IFF_VNET_HDR, up))
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000752 return -EFAULT;
753 return 0;
754
755 case TUNSETSNDBUF:
756 if (get_user(u, up))
757 return -EFAULT;
758
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000759 q->sk.sk_sndbuf = u;
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000760 return 0;
761
Michael S. Tsirkin55afbd02010-04-29 13:50:48 +0300762 case TUNGETVNETHDRSZ:
763 s = q->vnet_hdr_sz;
764 if (put_user(s, sp))
765 return -EFAULT;
766 return 0;
767
768 case TUNSETVNETHDRSZ:
769 if (get_user(s, sp))
770 return -EFAULT;
771 if (s < (int)sizeof(struct virtio_net_hdr))
772 return -EINVAL;
773
774 q->vnet_hdr_sz = s;
775 return 0;
776
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000777 case TUNSETOFFLOAD:
778 /* let the user check for future flags */
779 if (arg & ~(TUN_F_CSUM | TUN_F_TSO4 | TUN_F_TSO6 |
Arnd Bergmannb9fb9ee2010-02-18 05:48:17 +0000780 TUN_F_TSO_ECN | TUN_F_UFO))
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000781 return -EINVAL;
782
Arnd Bergmannb9fb9ee2010-02-18 05:48:17 +0000783 /* TODO: only accept frames with the features that
784 got enabled for forwarded frames */
785 if (!(q->flags & IFF_VNET_HDR))
786 return -EINVAL;
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000787 return 0;
788
789 default:
790 return -EINVAL;
791 }
792}
793
794#ifdef CONFIG_COMPAT
795static long macvtap_compat_ioctl(struct file *file, unsigned int cmd,
796 unsigned long arg)
797{
798 return macvtap_ioctl(file, cmd, (unsigned long)compat_ptr(arg));
799}
800#endif
801
802static const struct file_operations macvtap_fops = {
803 .owner = THIS_MODULE,
804 .open = macvtap_open,
805 .release = macvtap_release,
806 .aio_read = macvtap_aio_read,
807 .aio_write = macvtap_aio_write,
808 .poll = macvtap_poll,
809 .llseek = no_llseek,
810 .unlocked_ioctl = macvtap_ioctl,
811#ifdef CONFIG_COMPAT
812 .compat_ioctl = macvtap_compat_ioctl,
813#endif
814};
815
Arnd Bergmann501c7742010-02-18 05:46:50 +0000816static int macvtap_sendmsg(struct kiocb *iocb, struct socket *sock,
817 struct msghdr *m, size_t total_len)
818{
819 struct macvtap_queue *q = container_of(sock, struct macvtap_queue, sock);
820 return macvtap_get_user(q, m->msg_iov, total_len,
821 m->msg_flags & MSG_DONTWAIT);
822}
823
824static int macvtap_recvmsg(struct kiocb *iocb, struct socket *sock,
825 struct msghdr *m, size_t total_len,
826 int flags)
827{
828 struct macvtap_queue *q = container_of(sock, struct macvtap_queue, sock);
829 int ret;
830 if (flags & ~(MSG_DONTWAIT|MSG_TRUNC))
831 return -EINVAL;
832 ret = macvtap_do_read(q, iocb, m->msg_iov, total_len,
833 flags & MSG_DONTWAIT);
834 if (ret > total_len) {
835 m->msg_flags |= MSG_TRUNC;
836 ret = flags & MSG_TRUNC ? ret : total_len;
837 }
838 return ret;
839}
840
841/* Ops structure to mimic raw sockets with tun */
842static const struct proto_ops macvtap_socket_ops = {
843 .sendmsg = macvtap_sendmsg,
844 .recvmsg = macvtap_recvmsg,
845};
846
847/* Get an underlying socket object from tun file. Returns error unless file is
848 * attached to a device. The returned object works like a packet socket, it
849 * can be used for sock_sendmsg/sock_recvmsg. The caller is responsible for
850 * holding a reference to the file for as long as the socket is in use. */
851struct socket *macvtap_get_socket(struct file *file)
852{
853 struct macvtap_queue *q;
854 if (file->f_op != &macvtap_fops)
855 return ERR_PTR(-EINVAL);
856 q = file->private_data;
857 if (!q)
858 return ERR_PTR(-EBADFD);
859 return &q->sock;
860}
861EXPORT_SYMBOL_GPL(macvtap_get_socket);
862
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000863static int macvtap_init(void)
864{
865 int err;
866
867 err = alloc_chrdev_region(&macvtap_major, 0,
868 MACVTAP_NUM_DEVS, "macvtap");
869 if (err)
870 goto out1;
871
872 cdev_init(&macvtap_cdev, &macvtap_fops);
873 err = cdev_add(&macvtap_cdev, macvtap_major, MACVTAP_NUM_DEVS);
874 if (err)
875 goto out2;
876
877 macvtap_class = class_create(THIS_MODULE, "macvtap");
878 if (IS_ERR(macvtap_class)) {
879 err = PTR_ERR(macvtap_class);
880 goto out3;
881 }
882
883 err = macvlan_link_register(&macvtap_link_ops);
884 if (err)
885 goto out4;
886
887 return 0;
888
889out4:
890 class_unregister(macvtap_class);
891out3:
892 cdev_del(&macvtap_cdev);
893out2:
894 unregister_chrdev_region(macvtap_major, MACVTAP_NUM_DEVS);
895out1:
896 return err;
897}
898module_init(macvtap_init);
899
900static void macvtap_exit(void)
901{
902 rtnl_link_unregister(&macvtap_link_ops);
903 class_unregister(macvtap_class);
904 cdev_del(&macvtap_cdev);
905 unregister_chrdev_region(macvtap_major, MACVTAP_NUM_DEVS);
906}
907module_exit(macvtap_exit);
908
909MODULE_ALIAS_RTNL_LINK("macvtap");
910MODULE_AUTHOR("Arnd Bergmann <arnd@arndb.de>");
911MODULE_LICENSE("GPL");