blob: 163559c16988329b57878b376d320a8ed8db5bfd [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>
Al Viro40401532012-02-13 03:58:52 +000016#include <linux/idr.h>
Arnd Bergmann20d29d72010-01-30 12:24:26 +000017#include <linux/fs.h>
18
19#include <net/net_namespace.h>
20#include <net/rtnetlink.h>
21#include <net/sock.h>
Arnd Bergmannb9fb9ee2010-02-18 05:48:17 +000022#include <linux/virtio_net.h>
Arnd Bergmann20d29d72010-01-30 12:24:26 +000023
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;
Eric Dumazet43815482010-04-29 11:01:49 +000041 struct socket_wq wq;
Michael S. Tsirkin55afbd02010-04-29 13:50:48 +030042 int vnet_hdr_sz;
Eric Dumazet13707f92011-01-26 19:28:23 +000043 struct macvlan_dev __rcu *vlan;
Arnd Bergmann20d29d72010-01-30 12:24:26 +000044 struct file *file;
Arnd Bergmannb9fb9ee2010-02-18 05:48:17 +000045 unsigned int flags;
Arnd Bergmann20d29d72010-01-30 12:24:26 +000046};
47
48static struct proto macvtap_proto = {
49 .name = "macvtap",
50 .owner = THIS_MODULE,
51 .obj_size = sizeof (struct macvtap_queue),
52};
53
54/*
Eric W. Biedermane09eff72011-10-20 04:29:24 +000055 * Variables for dealing with macvtaps device numbers.
Arnd Bergmann20d29d72010-01-30 12:24:26 +000056 */
David S. Miller1ebed712010-07-10 19:25:50 -070057static dev_t macvtap_major;
Eric W. Biedermane09eff72011-10-20 04:29:24 +000058#define MACVTAP_NUM_DEVS (1U << MINORBITS)
59static DEFINE_MUTEX(minor_lock);
60static DEFINE_IDR(minor_idr);
61
Shirley Ma97bc3632011-07-06 12:26:11 +000062#define GOODCOPY_LEN 128
Arnd Bergmann20d29d72010-01-30 12:24:26 +000063static 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
Eric Dumazet2cfa5a02011-11-23 07:09:32 +0000149 RCU_INIT_POINTER(vlan->taps[index], NULL);
150 RCU_INIT_POINTER(q->vlan, NULL);
Arnd Bergmann02df55d2010-02-18 05:45:36 +0000151 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
Krishna Kumaref0002b2011-11-23 22:17:14 +0000179 /* 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
Krishna Kumar1565c7c2010-08-04 06:15:59 +0000187 if (likely(skb_rx_queue_recorded(skb))) {
188 rxq = skb_get_rx_queue(skb);
189
190 while (unlikely(rxq >= numvtaps))
191 rxq -= numvtaps;
192
193 tap = rcu_dereference(vlan->taps[rxq]);
194 if (tap)
195 goto out;
196 }
197
Krishna Kumar1565c7c2010-08-04 06:15:59 +0000198 /* 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;
Eric Dumazet2cfa5a02011-11-23 07:09:32 +0000227 RCU_INIT_POINTER(vlan->taps[i], NULL);
228 RCU_INIT_POINTER(q->vlan, NULL);
Krishna Kumar1565c7c2010-08-04 06:15:59 +0000229 vlan->numvtaps--;
230 }
Arnd Bergmann02df55d2010-02-18 05:45:36 +0000231 }
Krishna Kumar1565c7c2010-08-04 06:15:59 +0000232 BUG_ON(vlan->numvtaps != 0);
Eric W. Biederman99f34b32011-10-20 04:26:01 +0000233 /* guarantee that any future macvtap_set_queue will fail */
234 vlan->numvtaps = MAX_MACVTAP_QUEUES;
Arnd Bergmann02df55d2010-02-18 05:45:36 +0000235 spin_unlock(&macvtap_lock);
236
237 synchronize_rcu();
Krishna Kumar1565c7c2010-08-04 06:15:59 +0000238
239 for (--j; j >= 0; j--)
240 sock_put(&qlist[j]->sk);
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000241}
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)
Herbert Xu8a357472010-07-21 21:44:31 +0000252 goto drop;
253
254 if (skb_queue_len(&q->sk.sk_receive_queue) >= dev->tx_queue_len)
255 goto drop;
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000256
257 skb_queue_tail(&q->sk.sk_receive_queue, skb);
Eric Dumazet4a4771a2010-04-25 22:20:06 +0000258 wake_up_interruptible_poll(sk_sleep(&q->sk), POLLIN | POLLRDNORM | POLLRDBAND);
Herbert Xu8a357472010-07-21 21:44:31 +0000259 return NET_RX_SUCCESS;
260
261drop:
262 kfree_skb(skb);
263 return NET_RX_DROP;
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000264}
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
Eric W. Biedermane09eff72011-10-20 04:29:24 +0000277static 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
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000329static int macvtap_newlink(struct net *src_net,
330 struct net_device *dev,
331 struct nlattr *tb[],
332 struct nlattr *data[])
333{
Eric W. Biederman9bf19072011-10-20 04:28:46 +0000334 /* 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);
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000339}
340
341static void macvtap_dellink(struct net_device *dev,
342 struct list_head *head)
343{
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000344 macvtap_del_queues(dev);
345 macvlan_dellink(dev, head);
346}
347
Herbert Xu8a357472010-07-21 21:44:31 +0000348static void macvtap_setup(struct net_device *dev)
349{
350 macvlan_common_setup(dev);
351 dev->tx_queue_len = TUN_READQ_SIZE;
352}
353
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000354static struct rtnl_link_ops macvtap_link_ops __read_mostly = {
355 .kind = "macvtap",
Herbert Xu8a357472010-07-21 21:44:31 +0000356 .setup = macvtap_setup,
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000357 .newlink = macvtap_newlink,
358 .dellink = macvtap_dellink,
359};
360
361
362static void macvtap_sock_write_space(struct sock *sk)
363{
Eric Dumazet43815482010-04-29 11:01:49 +0000364 wait_queue_head_t *wqueue;
365
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000366 if (!sock_writeable(sk) ||
367 !test_and_clear_bit(SOCK_ASYNC_NOSPACE, &sk->sk_socket->flags))
368 return;
369
Eric Dumazet43815482010-04-29 11:01:49 +0000370 wqueue = sk_sleep(sk);
371 if (wqueue && waitqueue_active(wqueue))
372 wake_up_interruptible_poll(wqueue, POLLOUT | POLLWRNORM | POLLWRBAND);
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000373}
374
Eric W. Biederman2259fef2011-10-20 04:27:24 +0000375static void macvtap_sock_destruct(struct sock *sk)
376{
377 skb_queue_purge(&sk->sk_receive_queue);
378}
379
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000380static int macvtap_open(struct inode *inode, struct file *file)
381{
382 struct net *net = current->nsproxy->net_ns;
Eric W. Biedermane09eff72011-10-20 04:29:24 +0000383 struct net_device *dev = dev_get_by_macvtap_minor(iminor(inode));
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000384 struct macvtap_queue *q;
385 int err;
386
387 err = -ENODEV;
388 if (!dev)
389 goto out;
390
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000391 err = -ENOMEM;
392 q = (struct macvtap_queue *)sk_alloc(net, AF_UNSPEC, GFP_KERNEL,
393 &macvtap_proto);
394 if (!q)
395 goto out;
396
Eric Dumazet43815482010-04-29 11:01:49 +0000397 q->sock.wq = &q->wq;
398 init_waitqueue_head(&q->wq.wait);
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000399 q->sock.type = SOCK_RAW;
400 q->sock.state = SS_CONNECTED;
Arnd Bergmann501c7742010-02-18 05:46:50 +0000401 q->sock.file = file;
402 q->sock.ops = &macvtap_socket_ops;
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000403 sock_init_data(&q->sock, &q->sk);
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000404 q->sk.sk_write_space = macvtap_sock_write_space;
Eric W. Biederman2259fef2011-10-20 04:27:24 +0000405 q->sk.sk_destruct = macvtap_sock_destruct;
Arnd Bergmannb9fb9ee2010-02-18 05:48:17 +0000406 q->flags = IFF_VNET_HDR | IFF_NO_PI | IFF_TAP;
Michael S. Tsirkin55afbd02010-04-29 13:50:48 +0300407 q->vnet_hdr_sz = sizeof(struct virtio_net_hdr);
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000408
Shirley Ma97bc3632011-07-06 12:26:11 +0000409 /*
410 * so far only KVM virtio_net uses macvtap, enable zero copy between
411 * guest kernel and host kernel when lower device supports zerocopy
Eric W. Biederman047af9cf2011-10-20 04:26:39 +0000412 *
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.
Shirley Ma97bc3632011-07-06 12:26:11 +0000415 */
Eric W. Biederman047af9cf2011-10-20 04:26:39 +0000416 if ((dev->features & NETIF_F_HIGHDMA) && (dev->features & NETIF_F_SG))
417 sock_set_flag(&q->sk, SOCK_ZEROCOPY);
Shirley Ma97bc3632011-07-06 12:26:11 +0000418
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000419 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{
Arnd Bergmann02df55d2010-02-18 05:45:36 +0000432 struct macvtap_queue *q = file->private_data;
433 macvtap_put_queue(q);
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000434 return 0;
435}
436
437static unsigned int macvtap_poll(struct file *file, poll_table * wait)
438{
Arnd Bergmann02df55d2010-02-18 05:45:36 +0000439 struct macvtap_queue *q = file->private_data;
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000440 unsigned int mask = POLLERR;
441
442 if (!q)
443 goto out;
444
445 mask = 0;
Eric Dumazet43815482010-04-29 11:01:49 +0000446 poll_wait(file, &q->wq.wait, wait);
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000447
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:
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000457 return mask;
458}
459
Arnd Bergmannb9fb9ee2010-02-18 05:48:17 +0000460static 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
Shirley Ma97bc3632011-07-06 12:26:11 +0000483/* 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;
Shirley Ma97bc3632011-07-06 12:26:11 +0000491
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;
Jason Wang3afc9622012-05-02 11:41:30 +0800508 offset = 0;
509 } else
510 offset += size;
Shirley Ma97bc3632011-07-06 12:26:11 +0000511 copy -= size;
512 offset1 += size;
Shirley Ma97bc3632011-07-06 12:26:11 +0000513 }
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;
Jason Wang4ef67eb2012-05-02 11:41:44 +0800522 unsigned long truesize;
Shirley Ma97bc3632011-07-06 12:26:11 +0000523
Jason Wang3afc9622012-05-02 11:41:30 +0800524 len = from->iov_len - offset;
Shirley Ma97bc3632011-07-06 12:26:11 +0000525 if (!len) {
Jason Wang3afc9622012-05-02 11:41:30 +0800526 offset = 0;
Shirley Ma97bc3632011-07-06 12:26:11 +0000527 ++from;
528 continue;
529 }
Jason Wang3afc9622012-05-02 11:41:30 +0800530 base = (unsigned long)from->iov_base + offset;
Shirley Ma97bc3632011-07-06 12:26:11 +0000531 size = ((base & ~PAGE_MASK) + len + ~PAGE_MASK) >> PAGE_SHIFT;
Jason Wangb92946e2012-05-02 11:42:15 +0800532 if (i + size > MAX_SKB_FRAGS)
533 return -EMSGSIZE;
Shirley Ma97bc3632011-07-06 12:26:11 +0000534 num_pages = get_user_pages_fast(base, size, 0, &page[i]);
Jason Wangb92946e2012-05-02 11:42:15 +0800535 if (num_pages != size) {
Jason Wang02ce04b2012-05-02 11:41:58 +0800536 for (i = 0; i < num_pages; i++)
537 put_page(page[i]);
Shirley Ma97bc3632011-07-06 12:26:11 +0000538 return -EFAULT;
Jason Wang02ce04b2012-05-02 11:41:58 +0800539 }
Jason Wang4ef67eb2012-05-02 11:41:44 +0800540 truesize = size * PAGE_SIZE;
Shirley Ma97bc3632011-07-06 12:26:11 +0000541 skb->data_len += len;
542 skb->len += len;
Jason Wang4ef67eb2012-05-02 11:41:44 +0800543 skb->truesize += truesize;
544 atomic_add(truesize, &skb->sk->sk_wmem_alloc);
Shirley Ma97bc3632011-07-06 12:26:11 +0000545 while (len) {
Jason Wang653fc912011-09-18 23:48:31 +0000546 int off = base & ~PAGE_MASK;
547 int size = min_t(int, len, PAGE_SIZE - off);
548 __skb_fill_page_desc(skb, i, page[i], off, size);
Shirley Ma97bc3632011-07-06 12:26:11 +0000549 skb_shinfo(skb)->nr_frags++;
550 /* increase sk_wmem_alloc */
Jason Wang653fc912011-09-18 23:48:31 +0000551 base += size;
552 len -= size;
Shirley Ma97bc3632011-07-06 12:26:11 +0000553 i++;
554 }
Jason Wang3afc9622012-05-02 11:41:30 +0800555 offset = 0;
Shirley Ma97bc3632011-07-06 12:26:11 +0000556 ++from;
557 }
558 return 0;
559}
560
Arnd Bergmannb9fb9ee2010-02-18 05:48:17 +0000561/*
562 * macvtap_skb_from_vnet_hdr and macvtap_skb_to_vnet_hdr should
563 * be shared with the tun/tap driver.
564 */
565static int macvtap_skb_from_vnet_hdr(struct sk_buff *skb,
566 struct virtio_net_hdr *vnet_hdr)
567{
568 unsigned short gso_type = 0;
569 if (vnet_hdr->gso_type != VIRTIO_NET_HDR_GSO_NONE) {
570 switch (vnet_hdr->gso_type & ~VIRTIO_NET_HDR_GSO_ECN) {
571 case VIRTIO_NET_HDR_GSO_TCPV4:
572 gso_type = SKB_GSO_TCPV4;
573 break;
574 case VIRTIO_NET_HDR_GSO_TCPV6:
575 gso_type = SKB_GSO_TCPV6;
576 break;
577 case VIRTIO_NET_HDR_GSO_UDP:
578 gso_type = SKB_GSO_UDP;
579 break;
580 default:
581 return -EINVAL;
582 }
583
584 if (vnet_hdr->gso_type & VIRTIO_NET_HDR_GSO_ECN)
585 gso_type |= SKB_GSO_TCP_ECN;
586
587 if (vnet_hdr->gso_size == 0)
588 return -EINVAL;
589 }
590
591 if (vnet_hdr->flags & VIRTIO_NET_HDR_F_NEEDS_CSUM) {
592 if (!skb_partial_csum_set(skb, vnet_hdr->csum_start,
593 vnet_hdr->csum_offset))
594 return -EINVAL;
595 }
596
597 if (vnet_hdr->gso_type != VIRTIO_NET_HDR_GSO_NONE) {
598 skb_shinfo(skb)->gso_size = vnet_hdr->gso_size;
599 skb_shinfo(skb)->gso_type = gso_type;
600
601 /* Header must be checked, and gso_segs computed. */
602 skb_shinfo(skb)->gso_type |= SKB_GSO_DODGY;
603 skb_shinfo(skb)->gso_segs = 0;
604 }
605 return 0;
606}
607
608static int macvtap_skb_to_vnet_hdr(const struct sk_buff *skb,
609 struct virtio_net_hdr *vnet_hdr)
610{
611 memset(vnet_hdr, 0, sizeof(*vnet_hdr));
612
613 if (skb_is_gso(skb)) {
614 struct skb_shared_info *sinfo = skb_shinfo(skb);
615
616 /* This is a hint as to how much should be linear. */
617 vnet_hdr->hdr_len = skb_headlen(skb);
618 vnet_hdr->gso_size = sinfo->gso_size;
619 if (sinfo->gso_type & SKB_GSO_TCPV4)
620 vnet_hdr->gso_type = VIRTIO_NET_HDR_GSO_TCPV4;
621 else if (sinfo->gso_type & SKB_GSO_TCPV6)
622 vnet_hdr->gso_type = VIRTIO_NET_HDR_GSO_TCPV6;
623 else if (sinfo->gso_type & SKB_GSO_UDP)
624 vnet_hdr->gso_type = VIRTIO_NET_HDR_GSO_UDP;
625 else
626 BUG();
627 if (sinfo->gso_type & SKB_GSO_TCP_ECN)
628 vnet_hdr->gso_type |= VIRTIO_NET_HDR_GSO_ECN;
629 } else
630 vnet_hdr->gso_type = VIRTIO_NET_HDR_GSO_NONE;
631
632 if (skb->ip_summed == CHECKSUM_PARTIAL) {
633 vnet_hdr->flags = VIRTIO_NET_HDR_F_NEEDS_CSUM;
Michał Mirosław55508d62010-12-14 15:24:08 +0000634 vnet_hdr->csum_start = skb_checksum_start_offset(skb);
Arnd Bergmannb9fb9ee2010-02-18 05:48:17 +0000635 vnet_hdr->csum_offset = skb->csum_offset;
Jason Wang10a8d942011-06-10 00:56:17 +0000636 } else if (skb->ip_summed == CHECKSUM_UNNECESSARY) {
637 vnet_hdr->flags = VIRTIO_NET_HDR_F_DATA_VALID;
Arnd Bergmannb9fb9ee2010-02-18 05:48:17 +0000638 } /* else everything is zero */
639
640 return 0;
641}
642
643
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000644/* Get packet from user space buffer */
Shirley Ma97bc3632011-07-06 12:26:11 +0000645static ssize_t macvtap_get_user(struct macvtap_queue *q, struct msghdr *m,
646 const struct iovec *iv, unsigned long total_len,
647 size_t count, int noblock)
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000648{
649 struct sk_buff *skb;
Arnd Bergmann02df55d2010-02-18 05:45:36 +0000650 struct macvlan_dev *vlan;
Shirley Ma97bc3632011-07-06 12:26:11 +0000651 unsigned long len = total_len;
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000652 int err;
Arnd Bergmannb9fb9ee2010-02-18 05:48:17 +0000653 struct virtio_net_hdr vnet_hdr = { 0 };
654 int vnet_hdr_len = 0;
Jason Wangb92946e2012-05-02 11:42:15 +0800655 int copylen = 0;
Shirley Ma97bc3632011-07-06 12:26:11 +0000656 bool zerocopy = false;
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000657
Arnd Bergmannb9fb9ee2010-02-18 05:48:17 +0000658 if (q->flags & IFF_VNET_HDR) {
Michael S. Tsirkin55afbd02010-04-29 13:50:48 +0300659 vnet_hdr_len = q->vnet_hdr_sz;
Arnd Bergmannb9fb9ee2010-02-18 05:48:17 +0000660
661 err = -EINVAL;
Nicolas Kaiserce3c8692011-03-04 13:49:41 +0000662 if (len < vnet_hdr_len)
Arnd Bergmannb9fb9ee2010-02-18 05:48:17 +0000663 goto err;
Nicolas Kaiserce3c8692011-03-04 13:49:41 +0000664 len -= vnet_hdr_len;
Arnd Bergmannb9fb9ee2010-02-18 05:48:17 +0000665
666 err = memcpy_fromiovecend((void *)&vnet_hdr, iv, 0,
Michael S. Tsirkin55afbd02010-04-29 13:50:48 +0300667 sizeof(vnet_hdr));
Arnd Bergmannb9fb9ee2010-02-18 05:48:17 +0000668 if (err < 0)
669 goto err;
670 if ((vnet_hdr.flags & VIRTIO_NET_HDR_F_NEEDS_CSUM) &&
671 vnet_hdr.csum_start + vnet_hdr.csum_offset + 2 >
672 vnet_hdr.hdr_len)
673 vnet_hdr.hdr_len = vnet_hdr.csum_start +
674 vnet_hdr.csum_offset + 2;
675 err = -EINVAL;
676 if (vnet_hdr.hdr_len > len)
677 goto err;
678 }
679
680 err = -EINVAL;
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000681 if (unlikely(len < ETH_HLEN))
Arnd Bergmannb9fb9ee2010-02-18 05:48:17 +0000682 goto err;
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000683
Jason Wangb92946e2012-05-02 11:42:15 +0800684 err = -EMSGSIZE;
685 if (unlikely(count > UIO_MAXIOV))
686 goto err;
687
Shirley Ma97bc3632011-07-06 12:26:11 +0000688 if (m && m->msg_control && sock_flag(&q->sk, SOCK_ZEROCOPY))
689 zerocopy = true;
690
691 if (zerocopy) {
Jason Wangb92946e2012-05-02 11:42:15 +0800692 /* Userspace may produce vectors with count greater than
693 * MAX_SKB_FRAGS, so we need to linearize parts of the skb
694 * to let the rest of data to be fit in the frags.
695 */
696 if (count > MAX_SKB_FRAGS) {
697 copylen = iov_length(iv, count - MAX_SKB_FRAGS);
698 if (copylen < vnet_hdr_len)
699 copylen = 0;
700 else
701 copylen -= vnet_hdr_len;
702 }
Shirley Ma97bc3632011-07-06 12:26:11 +0000703 /* There are 256 bytes to be copied in skb, so there is enough
704 * room for skb expand head in case it is used.
705 * The rest buffer is mapped from userspace.
706 */
Jason Wangb92946e2012-05-02 11:42:15 +0800707 if (copylen < vnet_hdr.hdr_len)
708 copylen = vnet_hdr.hdr_len;
Shirley Ma97bc3632011-07-06 12:26:11 +0000709 if (!copylen)
710 copylen = GOODCOPY_LEN;
711 } else
712 copylen = len;
713
714 skb = macvtap_alloc_skb(&q->sk, NET_IP_ALIGN, copylen,
715 vnet_hdr.hdr_len, noblock, &err);
Arnd Bergmann02df55d2010-02-18 05:45:36 +0000716 if (!skb)
717 goto err;
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000718
Jason Wang01d66572012-05-02 11:42:06 +0800719 if (zerocopy)
Shirley Ma97bc3632011-07-06 12:26:11 +0000720 err = zerocopy_sg_from_iovec(skb, iv, vnet_hdr_len, count);
Jason Wang01d66572012-05-02 11:42:06 +0800721 else
Shirley Ma97bc3632011-07-06 12:26:11 +0000722 err = skb_copy_datagram_from_iovec(skb, 0, iv, vnet_hdr_len,
723 len);
Arnd Bergmann02df55d2010-02-18 05:45:36 +0000724 if (err)
Arnd Bergmannb9fb9ee2010-02-18 05:48:17 +0000725 goto err_kfree;
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000726
727 skb_set_network_header(skb, ETH_HLEN);
Arnd Bergmannb9fb9ee2010-02-18 05:48:17 +0000728 skb_reset_mac_header(skb);
729 skb->protocol = eth_hdr(skb)->h_proto;
730
731 if (vnet_hdr_len) {
732 err = macvtap_skb_from_vnet_hdr(skb, &vnet_hdr);
733 if (err)
734 goto err_kfree;
735 }
736
Arnd Bergmann02df55d2010-02-18 05:45:36 +0000737 rcu_read_lock_bh();
Eric Dumazet13707f92011-01-26 19:28:23 +0000738 vlan = rcu_dereference_bh(q->vlan);
Shirley Ma97bc3632011-07-06 12:26:11 +0000739 /* copy skb_ubuf_info for callback when skb has no error */
Jason Wang01d66572012-05-02 11:42:06 +0800740 if (zerocopy) {
Shirley Ma97bc3632011-07-06 12:26:11 +0000741 skb_shinfo(skb)->destructor_arg = m->msg_control;
Jason Wang01d66572012-05-02 11:42:06 +0800742 skb_shinfo(skb)->tx_flags |= SKBTX_DEV_ZEROCOPY;
743 }
Arnd Bergmann02df55d2010-02-18 05:45:36 +0000744 if (vlan)
745 macvlan_start_xmit(skb, vlan->dev);
746 else
747 kfree_skb(skb);
748 rcu_read_unlock_bh();
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000749
Shirley Ma97bc3632011-07-06 12:26:11 +0000750 return total_len;
Arnd Bergmann02df55d2010-02-18 05:45:36 +0000751
Arnd Bergmannb9fb9ee2010-02-18 05:48:17 +0000752err_kfree:
753 kfree_skb(skb);
754
Arnd Bergmann02df55d2010-02-18 05:45:36 +0000755err:
756 rcu_read_lock_bh();
Eric Dumazet13707f92011-01-26 19:28:23 +0000757 vlan = rcu_dereference_bh(q->vlan);
Arnd Bergmann02df55d2010-02-18 05:45:36 +0000758 if (vlan)
Eric Dumazet1ac9ad12011-01-12 12:13:14 +0000759 vlan->dev->stats.tx_dropped++;
Arnd Bergmann02df55d2010-02-18 05:45:36 +0000760 rcu_read_unlock_bh();
761
Arnd Bergmann02df55d2010-02-18 05:45:36 +0000762 return err;
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000763}
764
765static ssize_t macvtap_aio_write(struct kiocb *iocb, const struct iovec *iv,
766 unsigned long count, loff_t pos)
767{
768 struct file *file = iocb->ki_filp;
769 ssize_t result = -ENOLINK;
Arnd Bergmann02df55d2010-02-18 05:45:36 +0000770 struct macvtap_queue *q = file->private_data;
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000771
Shirley Ma97bc3632011-07-06 12:26:11 +0000772 result = macvtap_get_user(q, NULL, iv, iov_length(iv, count), count,
773 file->f_flags & O_NONBLOCK);
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000774 return result;
775}
776
777/* Put packet to the user space buffer */
778static ssize_t macvtap_put_user(struct macvtap_queue *q,
779 const struct sk_buff *skb,
780 const struct iovec *iv, int len)
781{
Arnd Bergmann02df55d2010-02-18 05:45:36 +0000782 struct macvlan_dev *vlan;
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000783 int ret;
Arnd Bergmannb9fb9ee2010-02-18 05:48:17 +0000784 int vnet_hdr_len = 0;
785
786 if (q->flags & IFF_VNET_HDR) {
787 struct virtio_net_hdr vnet_hdr;
Michael S. Tsirkin55afbd02010-04-29 13:50:48 +0300788 vnet_hdr_len = q->vnet_hdr_sz;
Arnd Bergmannb9fb9ee2010-02-18 05:48:17 +0000789 if ((len -= vnet_hdr_len) < 0)
790 return -EINVAL;
791
792 ret = macvtap_skb_to_vnet_hdr(skb, &vnet_hdr);
793 if (ret)
794 return ret;
795
Michael S. Tsirkin55afbd02010-04-29 13:50:48 +0300796 if (memcpy_toiovecend(iv, (void *)&vnet_hdr, 0, sizeof(vnet_hdr)))
Arnd Bergmannb9fb9ee2010-02-18 05:48:17 +0000797 return -EFAULT;
798 }
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000799
800 len = min_t(int, skb->len, len);
801
Arnd Bergmannb9fb9ee2010-02-18 05:48:17 +0000802 ret = skb_copy_datagram_const_iovec(skb, 0, iv, vnet_hdr_len, len);
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000803
Arnd Bergmann02df55d2010-02-18 05:45:36 +0000804 rcu_read_lock_bh();
Eric Dumazet13707f92011-01-26 19:28:23 +0000805 vlan = rcu_dereference_bh(q->vlan);
Arnd Bergmann501c7742010-02-18 05:46:50 +0000806 if (vlan)
807 macvlan_count_rx(vlan, len, ret == 0, 0);
Arnd Bergmann02df55d2010-02-18 05:45:36 +0000808 rcu_read_unlock_bh();
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000809
Arnd Bergmannb9fb9ee2010-02-18 05:48:17 +0000810 return ret ? ret : (len + vnet_hdr_len);
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000811}
812
Arnd Bergmann501c7742010-02-18 05:46:50 +0000813static ssize_t macvtap_do_read(struct macvtap_queue *q, struct kiocb *iocb,
814 const struct iovec *iv, unsigned long len,
815 int noblock)
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000816{
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000817 DECLARE_WAITQUEUE(wait, current);
818 struct sk_buff *skb;
Arnd Bergmann501c7742010-02-18 05:46:50 +0000819 ssize_t ret = 0;
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000820
Eric Dumazet4a4771a2010-04-25 22:20:06 +0000821 add_wait_queue(sk_sleep(&q->sk), &wait);
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000822 while (len) {
823 current->state = TASK_INTERRUPTIBLE;
824
825 /* Read frames from the queue */
826 skb = skb_dequeue(&q->sk.sk_receive_queue);
827 if (!skb) {
Arnd Bergmann501c7742010-02-18 05:46:50 +0000828 if (noblock) {
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000829 ret = -EAGAIN;
830 break;
831 }
832 if (signal_pending(current)) {
833 ret = -ERESTARTSYS;
834 break;
835 }
836 /* Nothing to read, let's sleep */
837 schedule();
838 continue;
839 }
840 ret = macvtap_put_user(q, skb, iv, len);
841 kfree_skb(skb);
842 break;
843 }
844
845 current->state = TASK_RUNNING;
Eric Dumazet4a4771a2010-04-25 22:20:06 +0000846 remove_wait_queue(sk_sleep(&q->sk), &wait);
Arnd Bergmann501c7742010-02-18 05:46:50 +0000847 return ret;
848}
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000849
Arnd Bergmann501c7742010-02-18 05:46:50 +0000850static ssize_t macvtap_aio_read(struct kiocb *iocb, const struct iovec *iv,
851 unsigned long count, loff_t pos)
852{
853 struct file *file = iocb->ki_filp;
854 struct macvtap_queue *q = file->private_data;
855 ssize_t len, ret = 0;
856
857 len = iov_length(iv, count);
858 if (len < 0) {
859 ret = -EINVAL;
860 goto out;
861 }
862
863 ret = macvtap_do_read(q, iocb, iv, len, file->f_flags & O_NONBLOCK);
864 ret = min_t(ssize_t, ret, len); /* XXX copied from tun.c. Why? */
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000865out:
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000866 return ret;
867}
868
869/*
870 * provide compatibility with generic tun/tap interface
871 */
872static long macvtap_ioctl(struct file *file, unsigned int cmd,
873 unsigned long arg)
874{
Arnd Bergmann02df55d2010-02-18 05:45:36 +0000875 struct macvtap_queue *q = file->private_data;
876 struct macvlan_dev *vlan;
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000877 void __user *argp = (void __user *)arg;
878 struct ifreq __user *ifr = argp;
879 unsigned int __user *up = argp;
880 unsigned int u;
Michael S. Tsirkin55afbd02010-04-29 13:50:48 +0300881 int __user *sp = argp;
882 int s;
Arnd Bergmann02df55d2010-02-18 05:45:36 +0000883 int ret;
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000884
885 switch (cmd) {
886 case TUNSETIFF:
887 /* ignore the name, just look at flags */
888 if (get_user(u, &ifr->ifr_flags))
889 return -EFAULT;
Arnd Bergmannb9fb9ee2010-02-18 05:48:17 +0000890
891 ret = 0;
892 if ((u & ~IFF_VNET_HDR) != (IFF_NO_PI | IFF_TAP))
893 ret = -EINVAL;
894 else
895 q->flags = u;
896
897 return ret;
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000898
899 case TUNGETIFF:
Arnd Bergmann02df55d2010-02-18 05:45:36 +0000900 rcu_read_lock_bh();
Eric Dumazet13707f92011-01-26 19:28:23 +0000901 vlan = rcu_dereference_bh(q->vlan);
Arnd Bergmann02df55d2010-02-18 05:45:36 +0000902 if (vlan)
903 dev_hold(vlan->dev);
904 rcu_read_unlock_bh();
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000905
Arnd Bergmann02df55d2010-02-18 05:45:36 +0000906 if (!vlan)
907 return -ENOLINK;
908
909 ret = 0;
Eric Dumazet13707f92011-01-26 19:28:23 +0000910 if (copy_to_user(&ifr->ifr_name, vlan->dev->name, IFNAMSIZ) ||
Arnd Bergmannb9fb9ee2010-02-18 05:48:17 +0000911 put_user(q->flags, &ifr->ifr_flags))
Arnd Bergmann02df55d2010-02-18 05:45:36 +0000912 ret = -EFAULT;
913 dev_put(vlan->dev);
914 return ret;
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000915
916 case TUNGETFEATURES:
Arnd Bergmannb9fb9ee2010-02-18 05:48:17 +0000917 if (put_user(IFF_TAP | IFF_NO_PI | IFF_VNET_HDR, up))
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000918 return -EFAULT;
919 return 0;
920
921 case TUNSETSNDBUF:
922 if (get_user(u, up))
923 return -EFAULT;
924
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000925 q->sk.sk_sndbuf = u;
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000926 return 0;
927
Michael S. Tsirkin55afbd02010-04-29 13:50:48 +0300928 case TUNGETVNETHDRSZ:
929 s = q->vnet_hdr_sz;
930 if (put_user(s, sp))
931 return -EFAULT;
932 return 0;
933
934 case TUNSETVNETHDRSZ:
935 if (get_user(s, sp))
936 return -EFAULT;
937 if (s < (int)sizeof(struct virtio_net_hdr))
938 return -EINVAL;
939
940 q->vnet_hdr_sz = s;
941 return 0;
942
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000943 case TUNSETOFFLOAD:
944 /* let the user check for future flags */
945 if (arg & ~(TUN_F_CSUM | TUN_F_TSO4 | TUN_F_TSO6 |
Arnd Bergmannb9fb9ee2010-02-18 05:48:17 +0000946 TUN_F_TSO_ECN | TUN_F_UFO))
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000947 return -EINVAL;
948
Arnd Bergmannb9fb9ee2010-02-18 05:48:17 +0000949 /* TODO: only accept frames with the features that
950 got enabled for forwarded frames */
951 if (!(q->flags & IFF_VNET_HDR))
952 return -EINVAL;
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000953 return 0;
954
955 default:
956 return -EINVAL;
957 }
958}
959
960#ifdef CONFIG_COMPAT
961static long macvtap_compat_ioctl(struct file *file, unsigned int cmd,
962 unsigned long arg)
963{
964 return macvtap_ioctl(file, cmd, (unsigned long)compat_ptr(arg));
965}
966#endif
967
968static const struct file_operations macvtap_fops = {
969 .owner = THIS_MODULE,
970 .open = macvtap_open,
971 .release = macvtap_release,
972 .aio_read = macvtap_aio_read,
973 .aio_write = macvtap_aio_write,
974 .poll = macvtap_poll,
975 .llseek = no_llseek,
976 .unlocked_ioctl = macvtap_ioctl,
977#ifdef CONFIG_COMPAT
978 .compat_ioctl = macvtap_compat_ioctl,
979#endif
980};
981
Arnd Bergmann501c7742010-02-18 05:46:50 +0000982static int macvtap_sendmsg(struct kiocb *iocb, struct socket *sock,
983 struct msghdr *m, size_t total_len)
984{
985 struct macvtap_queue *q = container_of(sock, struct macvtap_queue, sock);
Shirley Ma97bc3632011-07-06 12:26:11 +0000986 return macvtap_get_user(q, m, m->msg_iov, total_len, m->msg_iovlen,
Arnd Bergmann501c7742010-02-18 05:46:50 +0000987 m->msg_flags & MSG_DONTWAIT);
988}
989
990static int macvtap_recvmsg(struct kiocb *iocb, struct socket *sock,
991 struct msghdr *m, size_t total_len,
992 int flags)
993{
994 struct macvtap_queue *q = container_of(sock, struct macvtap_queue, sock);
995 int ret;
996 if (flags & ~(MSG_DONTWAIT|MSG_TRUNC))
997 return -EINVAL;
998 ret = macvtap_do_read(q, iocb, m->msg_iov, total_len,
999 flags & MSG_DONTWAIT);
1000 if (ret > total_len) {
1001 m->msg_flags |= MSG_TRUNC;
1002 ret = flags & MSG_TRUNC ? ret : total_len;
1003 }
1004 return ret;
1005}
1006
1007/* Ops structure to mimic raw sockets with tun */
1008static const struct proto_ops macvtap_socket_ops = {
1009 .sendmsg = macvtap_sendmsg,
1010 .recvmsg = macvtap_recvmsg,
1011};
1012
1013/* Get an underlying socket object from tun file. Returns error unless file is
1014 * attached to a device. The returned object works like a packet socket, it
1015 * can be used for sock_sendmsg/sock_recvmsg. The caller is responsible for
1016 * holding a reference to the file for as long as the socket is in use. */
1017struct socket *macvtap_get_socket(struct file *file)
1018{
1019 struct macvtap_queue *q;
1020 if (file->f_op != &macvtap_fops)
1021 return ERR_PTR(-EINVAL);
1022 q = file->private_data;
1023 if (!q)
1024 return ERR_PTR(-EBADFD);
1025 return &q->sock;
1026}
1027EXPORT_SYMBOL_GPL(macvtap_get_socket);
1028
Eric W. Biederman9bf19072011-10-20 04:28:46 +00001029static int macvtap_device_event(struct notifier_block *unused,
1030 unsigned long event, void *ptr)
1031{
1032 struct net_device *dev = ptr;
Eric W. Biedermane09eff72011-10-20 04:29:24 +00001033 struct macvlan_dev *vlan;
Eric W. Biederman9bf19072011-10-20 04:28:46 +00001034 struct device *classdev;
1035 dev_t devt;
Eric W. Biedermane09eff72011-10-20 04:29:24 +00001036 int err;
Eric W. Biederman9bf19072011-10-20 04:28:46 +00001037
1038 if (dev->rtnl_link_ops != &macvtap_link_ops)
1039 return NOTIFY_DONE;
1040
Eric W. Biedermane09eff72011-10-20 04:29:24 +00001041 vlan = netdev_priv(dev);
Eric W. Biederman9bf19072011-10-20 04:28:46 +00001042
1043 switch (event) {
1044 case NETDEV_REGISTER:
1045 /* Create the device node here after the network device has
1046 * been registered but before register_netdevice has
1047 * finished running.
1048 */
Eric W. Biedermane09eff72011-10-20 04:29:24 +00001049 err = macvtap_get_minor(vlan);
1050 if (err)
1051 return notifier_from_errno(err);
1052
1053 devt = MKDEV(MAJOR(macvtap_major), vlan->minor);
Eric W. Biederman9bf19072011-10-20 04:28:46 +00001054 classdev = device_create(macvtap_class, &dev->dev, devt,
1055 dev, "tap%d", dev->ifindex);
Eric W. Biedermane09eff72011-10-20 04:29:24 +00001056 if (IS_ERR(classdev)) {
1057 macvtap_free_minor(vlan);
Eric W. Biederman9bf19072011-10-20 04:28:46 +00001058 return notifier_from_errno(PTR_ERR(classdev));
Eric W. Biedermane09eff72011-10-20 04:29:24 +00001059 }
Eric W. Biederman9bf19072011-10-20 04:28:46 +00001060 break;
1061 case NETDEV_UNREGISTER:
Eric W. Biedermane09eff72011-10-20 04:29:24 +00001062 devt = MKDEV(MAJOR(macvtap_major), vlan->minor);
Eric W. Biederman9bf19072011-10-20 04:28:46 +00001063 device_destroy(macvtap_class, devt);
Eric W. Biedermane09eff72011-10-20 04:29:24 +00001064 macvtap_free_minor(vlan);
Eric W. Biederman9bf19072011-10-20 04:28:46 +00001065 break;
1066 }
1067
1068 return NOTIFY_DONE;
1069}
1070
1071static struct notifier_block macvtap_notifier_block __read_mostly = {
1072 .notifier_call = macvtap_device_event,
1073};
1074
Arnd Bergmann20d29d72010-01-30 12:24:26 +00001075static int macvtap_init(void)
1076{
1077 int err;
1078
1079 err = alloc_chrdev_region(&macvtap_major, 0,
1080 MACVTAP_NUM_DEVS, "macvtap");
1081 if (err)
1082 goto out1;
1083
1084 cdev_init(&macvtap_cdev, &macvtap_fops);
1085 err = cdev_add(&macvtap_cdev, macvtap_major, MACVTAP_NUM_DEVS);
1086 if (err)
1087 goto out2;
1088
1089 macvtap_class = class_create(THIS_MODULE, "macvtap");
1090 if (IS_ERR(macvtap_class)) {
1091 err = PTR_ERR(macvtap_class);
1092 goto out3;
1093 }
1094
Eric W. Biederman9bf19072011-10-20 04:28:46 +00001095 err = register_netdevice_notifier(&macvtap_notifier_block);
Arnd Bergmann20d29d72010-01-30 12:24:26 +00001096 if (err)
1097 goto out4;
1098
Eric W. Biederman9bf19072011-10-20 04:28:46 +00001099 err = macvlan_link_register(&macvtap_link_ops);
1100 if (err)
1101 goto out5;
1102
Arnd Bergmann20d29d72010-01-30 12:24:26 +00001103 return 0;
1104
Eric W. Biederman9bf19072011-10-20 04:28:46 +00001105out5:
1106 unregister_netdevice_notifier(&macvtap_notifier_block);
Arnd Bergmann20d29d72010-01-30 12:24:26 +00001107out4:
1108 class_unregister(macvtap_class);
1109out3:
1110 cdev_del(&macvtap_cdev);
1111out2:
1112 unregister_chrdev_region(macvtap_major, MACVTAP_NUM_DEVS);
1113out1:
1114 return err;
1115}
1116module_init(macvtap_init);
1117
1118static void macvtap_exit(void)
1119{
1120 rtnl_link_unregister(&macvtap_link_ops);
Eric W. Biederman9bf19072011-10-20 04:28:46 +00001121 unregister_netdevice_notifier(&macvtap_notifier_block);
Arnd Bergmann20d29d72010-01-30 12:24:26 +00001122 class_unregister(macvtap_class);
1123 cdev_del(&macvtap_cdev);
1124 unregister_chrdev_region(macvtap_major, MACVTAP_NUM_DEVS);
1125}
1126module_exit(macvtap_exit);
1127
1128MODULE_ALIAS_RTNL_LINK("macvtap");
1129MODULE_AUTHOR("Arnd Bergmann <arnd@arndb.de>");
1130MODULE_LICENSE("GPL");