blob: d2d1d5578b61e86429d1d25801346019f9d9b8c6 [file] [log] [blame]
Arnd Bergmann20d29d72010-01-30 12:24:26 +00001#include <linux/etherdevice.h>
2#include <linux/if_macvlan.h>
Basil Gorf09e2242012-05-03 22:55:24 +00003#include <linux/if_vlan.h>
Arnd Bergmann20d29d72010-01-30 12:24:26 +00004#include <linux/interrupt.h>
5#include <linux/nsproxy.h>
6#include <linux/compat.h>
7#include <linux/if_tun.h>
8#include <linux/module.h>
9#include <linux/skbuff.h>
10#include <linux/cache.h>
11#include <linux/sched.h>
12#include <linux/types.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090013#include <linux/slab.h>
Arnd Bergmann20d29d72010-01-30 12:24:26 +000014#include <linux/init.h>
15#include <linux/wait.h>
16#include <linux/cdev.h>
Al Viro40401532012-02-13 03:58:52 +000017#include <linux/idr.h>
Arnd Bergmann20d29d72010-01-30 12:24:26 +000018#include <linux/fs.h>
19
20#include <net/net_namespace.h>
21#include <net/rtnetlink.h>
22#include <net/sock.h>
Arnd Bergmannb9fb9ee2010-02-18 05:48:17 +000023#include <linux/virtio_net.h>
Arnd Bergmann20d29d72010-01-30 12:24:26 +000024
25/*
26 * A macvtap queue is the central object of this driver, it connects
27 * an open character device to a macvlan interface. There can be
28 * multiple queues on one interface, which map back to queues
29 * implemented in hardware on the underlying device.
30 *
31 * macvtap_proto is used to allocate queues through the sock allocation
32 * mechanism.
33 *
34 * TODO: multiqueue support is currently not implemented, even though
35 * macvtap is basically prepared for that. We will need to add this
36 * here as well as in virtio-net and qemu to get line rate on 10gbit
37 * adapters from a guest.
38 */
39struct macvtap_queue {
40 struct sock sk;
41 struct socket sock;
Eric Dumazet43815482010-04-29 11:01:49 +000042 struct socket_wq wq;
Michael S. Tsirkin55afbd02010-04-29 13:50:48 +030043 int vnet_hdr_sz;
Eric Dumazet13707f92011-01-26 19:28:23 +000044 struct macvlan_dev __rcu *vlan;
Arnd Bergmann20d29d72010-01-30 12:24:26 +000045 struct file *file;
Arnd Bergmannb9fb9ee2010-02-18 05:48:17 +000046 unsigned int flags;
Jason Wang376b1aa2013-06-05 23:54:38 +000047 u16 queue_index;
Jason Wang815f2362013-06-05 23:54:39 +000048 bool enabled;
49 struct list_head next;
Arnd Bergmann20d29d72010-01-30 12:24:26 +000050};
51
52static struct proto macvtap_proto = {
53 .name = "macvtap",
54 .owner = THIS_MODULE,
55 .obj_size = sizeof (struct macvtap_queue),
56};
57
58/*
Eric W. Biedermane09eff72011-10-20 04:29:24 +000059 * Variables for dealing with macvtaps device numbers.
Arnd Bergmann20d29d72010-01-30 12:24:26 +000060 */
David S. Miller1ebed712010-07-10 19:25:50 -070061static dev_t macvtap_major;
Eric W. Biedermane09eff72011-10-20 04:29:24 +000062#define MACVTAP_NUM_DEVS (1U << MINORBITS)
63static DEFINE_MUTEX(minor_lock);
64static DEFINE_IDR(minor_idr);
65
Shirley Ma97bc3632011-07-06 12:26:11 +000066#define GOODCOPY_LEN 128
Arnd Bergmann20d29d72010-01-30 12:24:26 +000067static struct class *macvtap_class;
68static struct cdev macvtap_cdev;
69
Arnd Bergmann501c7742010-02-18 05:46:50 +000070static const struct proto_ops macvtap_socket_ops;
71
Arnd Bergmann20d29d72010-01-30 12:24:26 +000072/*
73 * RCU usage:
Arnd Bergmann02df55d2010-02-18 05:45:36 +000074 * The macvtap_queue and the macvlan_dev are loosely coupled, the
75 * pointers from one to the other can only be read while rcu_read_lock
76 * or macvtap_lock is held.
Arnd Bergmann20d29d72010-01-30 12:24:26 +000077 *
Arnd Bergmann02df55d2010-02-18 05:45:36 +000078 * Both the file and the macvlan_dev hold a reference on the macvtap_queue
79 * through sock_hold(&q->sk). When the macvlan_dev goes away first,
80 * q->vlan becomes inaccessible. When the files gets closed,
81 * macvtap_get_queue() fails.
Arnd Bergmann20d29d72010-01-30 12:24:26 +000082 *
Arnd Bergmann02df55d2010-02-18 05:45:36 +000083 * There may still be references to the struct sock inside of the
84 * queue from outbound SKBs, but these never reference back to the
85 * file or the dev. The data structure is freed through __sk_free
86 * when both our references and any pending SKBs are gone.
Arnd Bergmann20d29d72010-01-30 12:24:26 +000087 */
88static DEFINE_SPINLOCK(macvtap_lock);
89
Jason Wang815f2362013-06-05 23:54:39 +000090static int macvtap_enable_queue(struct net_device *dev, struct file *file,
Arnd Bergmann20d29d72010-01-30 12:24:26 +000091 struct macvtap_queue *q)
92{
93 struct macvlan_dev *vlan = netdev_priv(dev);
Jason Wang815f2362013-06-05 23:54:39 +000094 int err = -EINVAL;
95
96 spin_lock(&macvtap_lock);
97
98 if (q->enabled)
99 goto out;
100
101 err = 0;
102 rcu_assign_pointer(vlan->taps[vlan->numvtaps], q);
103 q->queue_index = vlan->numvtaps;
104 q->enabled = true;
105
106 vlan->numvtaps++;
107out:
108 spin_unlock(&macvtap_lock);
109 return err;
110}
111
112static int macvtap_set_queue(struct net_device *dev, struct file *file,
113 struct macvtap_queue *q)
114{
115 struct macvlan_dev *vlan = netdev_priv(dev);
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000116 int err = -EBUSY;
117
118 spin_lock(&macvtap_lock);
Jason Wang815f2362013-06-05 23:54:39 +0000119 if (vlan->numqueues == MAX_MACVTAP_QUEUES)
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000120 goto out;
121
122 err = 0;
Arnd Bergmann02df55d2010-02-18 05:45:36 +0000123 rcu_assign_pointer(q->vlan, vlan);
Jason Wang376b1aa2013-06-05 23:54:38 +0000124 rcu_assign_pointer(vlan->taps[vlan->numvtaps], q);
Arnd Bergmann02df55d2010-02-18 05:45:36 +0000125 sock_hold(&q->sk);
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000126
127 q->file = file;
Jason Wang376b1aa2013-06-05 23:54:38 +0000128 q->queue_index = vlan->numvtaps;
Jason Wang815f2362013-06-05 23:54:39 +0000129 q->enabled = true;
Arnd Bergmann02df55d2010-02-18 05:45:36 +0000130 file->private_data = q;
Jason Wang815f2362013-06-05 23:54:39 +0000131 list_add_tail(&q->next, &vlan->queue_list);
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000132
Krishna Kumar1565c7c2010-08-04 06:15:59 +0000133 vlan->numvtaps++;
Jason Wang815f2362013-06-05 23:54:39 +0000134 vlan->numqueues++;
Krishna Kumar1565c7c2010-08-04 06:15:59 +0000135
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000136out:
137 spin_unlock(&macvtap_lock);
138 return err;
139}
140
Jason Wang815f2362013-06-05 23:54:39 +0000141static int __macvtap_disable_queue(struct macvtap_queue *q)
142{
143 struct macvlan_dev *vlan;
144 struct macvtap_queue *nq;
145
146 vlan = rcu_dereference_protected(q->vlan,
147 lockdep_is_held(&macvtap_lock));
148
149 if (!q->enabled)
150 return -EINVAL;
151
152 if (vlan) {
153 int index = q->queue_index;
154 BUG_ON(index >= vlan->numvtaps);
155 nq = rcu_dereference_protected(vlan->taps[vlan->numvtaps - 1],
156 lockdep_is_held(&macvtap_lock));
157 nq->queue_index = index;
158
159 rcu_assign_pointer(vlan->taps[index], nq);
160 RCU_INIT_POINTER(vlan->taps[vlan->numvtaps - 1], NULL);
161 q->enabled = false;
162
163 vlan->numvtaps--;
164 }
165
166 return 0;
167}
168
169static int macvtap_disable_queue(struct macvtap_queue *q)
170{
171 int err;
172
173 spin_lock(&macvtap_lock);
174 err = __macvtap_disable_queue(q);
175 spin_unlock(&macvtap_lock);
176
177 return err;
178}
179
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000180/*
Arnd Bergmann02df55d2010-02-18 05:45:36 +0000181 * The file owning the queue got closed, give up both
182 * the reference that the files holds as well as the
183 * one from the macvlan_dev if that still exists.
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000184 *
185 * Using the spinlock makes sure that we don't get
186 * to the queue again after destroying it.
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000187 */
Arnd Bergmann02df55d2010-02-18 05:45:36 +0000188static void macvtap_put_queue(struct macvtap_queue *q)
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000189{
Arnd Bergmann02df55d2010-02-18 05:45:36 +0000190 struct macvlan_dev *vlan;
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000191
192 spin_lock(&macvtap_lock);
Eric Dumazet13707f92011-01-26 19:28:23 +0000193 vlan = rcu_dereference_protected(q->vlan,
194 lockdep_is_held(&macvtap_lock));
Arnd Bergmann02df55d2010-02-18 05:45:36 +0000195 if (vlan) {
Jason Wang815f2362013-06-05 23:54:39 +0000196 if (q->enabled)
197 BUG_ON(__macvtap_disable_queue(q));
Krishna Kumar1565c7c2010-08-04 06:15:59 +0000198
Jason Wang815f2362013-06-05 23:54:39 +0000199 vlan->numqueues--;
Eric Dumazet2cfa5a02011-11-23 07:09:32 +0000200 RCU_INIT_POINTER(q->vlan, NULL);
Arnd Bergmann02df55d2010-02-18 05:45:36 +0000201 sock_put(&q->sk);
Jason Wang815f2362013-06-05 23:54:39 +0000202 list_del_init(&q->next);
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000203 }
204
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000205 spin_unlock(&macvtap_lock);
206
207 synchronize_rcu();
208 sock_put(&q->sk);
209}
210
211/*
Krishna Kumar1565c7c2010-08-04 06:15:59 +0000212 * Select a queue based on the rxq of the device on which this packet
213 * arrived. If the incoming device is not mq, calculate a flow hash
214 * to select a queue. If all fails, find the first available queue.
215 * Cache vlan->numvtaps since it can become zero during the execution
216 * of this function.
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000217 */
218static struct macvtap_queue *macvtap_get_queue(struct net_device *dev,
219 struct sk_buff *skb)
220{
221 struct macvlan_dev *vlan = netdev_priv(dev);
Krishna Kumar1565c7c2010-08-04 06:15:59 +0000222 struct macvtap_queue *tap = NULL;
Jason Wang815f2362013-06-05 23:54:39 +0000223 /* Access to taps array is protected by rcu, but access to numvtaps
224 * isn't. Below we use it to lookup a queue, but treat it as a hint
225 * and validate that the result isn't NULL - in case we are
226 * racing against queue removal.
227 */
Jason Wanged0483f2013-06-05 23:54:33 +0000228 int numvtaps = ACCESS_ONCE(vlan->numvtaps);
Krishna Kumar1565c7c2010-08-04 06:15:59 +0000229 __u32 rxq;
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000230
Krishna Kumar1565c7c2010-08-04 06:15:59 +0000231 if (!numvtaps)
232 goto out;
233
Krishna Kumaref0002b2011-11-23 22:17:14 +0000234 /* Check if we can use flow to select a queue */
235 rxq = skb_get_rxhash(skb);
236 if (rxq) {
237 tap = rcu_dereference(vlan->taps[rxq % numvtaps]);
Jason Wang376b1aa2013-06-05 23:54:38 +0000238 goto out;
Krishna Kumaref0002b2011-11-23 22:17:14 +0000239 }
240
Krishna Kumar1565c7c2010-08-04 06:15:59 +0000241 if (likely(skb_rx_queue_recorded(skb))) {
242 rxq = skb_get_rx_queue(skb);
243
244 while (unlikely(rxq >= numvtaps))
245 rxq -= numvtaps;
246
247 tap = rcu_dereference(vlan->taps[rxq]);
Jason Wang376b1aa2013-06-05 23:54:38 +0000248 goto out;
Krishna Kumar1565c7c2010-08-04 06:15:59 +0000249 }
250
Jason Wang376b1aa2013-06-05 23:54:38 +0000251 tap = rcu_dereference(vlan->taps[0]);
Krishna Kumar1565c7c2010-08-04 06:15:59 +0000252out:
253 return tap;
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000254}
255
Arnd Bergmann02df55d2010-02-18 05:45:36 +0000256/*
257 * The net_device is going away, give up the reference
Krishna Kumar1565c7c2010-08-04 06:15:59 +0000258 * that it holds on all queues and safely set the pointer
259 * from the queues to NULL.
Arnd Bergmann02df55d2010-02-18 05:45:36 +0000260 */
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000261static void macvtap_del_queues(struct net_device *dev)
262{
263 struct macvlan_dev *vlan = netdev_priv(dev);
Jason Wang815f2362013-06-05 23:54:39 +0000264 struct macvtap_queue *q, *tmp, *qlist[MAX_MACVTAP_QUEUES];
Krishna Kumar1565c7c2010-08-04 06:15:59 +0000265 int i, j = 0;
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000266
Arnd Bergmann02df55d2010-02-18 05:45:36 +0000267 spin_lock(&macvtap_lock);
Jason Wang815f2362013-06-05 23:54:39 +0000268 list_for_each_entry_safe(q, tmp, &vlan->queue_list, next) {
269 list_del_init(&q->next);
Jason Wang376b1aa2013-06-05 23:54:38 +0000270 qlist[j++] = q;
Jason Wang376b1aa2013-06-05 23:54:38 +0000271 RCU_INIT_POINTER(q->vlan, NULL);
Jason Wang815f2362013-06-05 23:54:39 +0000272 if (q->enabled)
273 vlan->numvtaps--;
274 vlan->numqueues--;
Arnd Bergmann02df55d2010-02-18 05:45:36 +0000275 }
Jason Wang815f2362013-06-05 23:54:39 +0000276 for (i = 0; i < vlan->numvtaps; i++)
277 RCU_INIT_POINTER(vlan->taps[i], NULL);
278 BUG_ON(vlan->numvtaps);
279 BUG_ON(vlan->numqueues);
Eric W. Biederman99f34b32011-10-20 04:26:01 +0000280 /* guarantee that any future macvtap_set_queue will fail */
281 vlan->numvtaps = MAX_MACVTAP_QUEUES;
Arnd Bergmann02df55d2010-02-18 05:45:36 +0000282 spin_unlock(&macvtap_lock);
283
284 synchronize_rcu();
Krishna Kumar1565c7c2010-08-04 06:15:59 +0000285
286 for (--j; j >= 0; j--)
287 sock_put(&qlist[j]->sk);
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000288}
289
290/*
291 * Forward happens for data that gets sent from one macvlan
292 * endpoint to another one in bridge mode. We just take
293 * the skb and put it into the receive queue.
294 */
295static int macvtap_forward(struct net_device *dev, struct sk_buff *skb)
296{
297 struct macvtap_queue *q = macvtap_get_queue(dev, skb);
298 if (!q)
Herbert Xu8a357472010-07-21 21:44:31 +0000299 goto drop;
300
301 if (skb_queue_len(&q->sk.sk_receive_queue) >= dev->tx_queue_len)
302 goto drop;
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000303
304 skb_queue_tail(&q->sk.sk_receive_queue, skb);
Eric Dumazet4a4771a2010-04-25 22:20:06 +0000305 wake_up_interruptible_poll(sk_sleep(&q->sk), POLLIN | POLLRDNORM | POLLRDBAND);
Herbert Xu8a357472010-07-21 21:44:31 +0000306 return NET_RX_SUCCESS;
307
308drop:
309 kfree_skb(skb);
310 return NET_RX_DROP;
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000311}
312
313/*
314 * Receive is for data from the external interface (lowerdev),
315 * in case of macvtap, we can treat that the same way as
316 * forward, which macvlan cannot.
317 */
318static int macvtap_receive(struct sk_buff *skb)
319{
320 skb_push(skb, ETH_HLEN);
321 return macvtap_forward(skb->dev, skb);
322}
323
Eric W. Biedermane09eff72011-10-20 04:29:24 +0000324static int macvtap_get_minor(struct macvlan_dev *vlan)
325{
326 int retval = -ENOMEM;
Eric W. Biedermane09eff72011-10-20 04:29:24 +0000327
328 mutex_lock(&minor_lock);
Tejun Heoec09ebc2013-02-27 17:04:34 -0800329 retval = idr_alloc(&minor_idr, vlan, 1, MACVTAP_NUM_DEVS, GFP_KERNEL);
330 if (retval >= 0) {
331 vlan->minor = retval;
332 } else if (retval == -ENOSPC) {
Eric W. Biedermane09eff72011-10-20 04:29:24 +0000333 printk(KERN_ERR "too many macvtap devices\n");
334 retval = -EINVAL;
Eric W. Biedermane09eff72011-10-20 04:29:24 +0000335 }
Eric W. Biedermane09eff72011-10-20 04:29:24 +0000336 mutex_unlock(&minor_lock);
Tejun Heoec09ebc2013-02-27 17:04:34 -0800337 return retval < 0 ? retval : 0;
Eric W. Biedermane09eff72011-10-20 04:29:24 +0000338}
339
340static void macvtap_free_minor(struct macvlan_dev *vlan)
341{
342 mutex_lock(&minor_lock);
343 if (vlan->minor) {
344 idr_remove(&minor_idr, vlan->minor);
345 vlan->minor = 0;
346 }
347 mutex_unlock(&minor_lock);
348}
349
350static struct net_device *dev_get_by_macvtap_minor(int minor)
351{
352 struct net_device *dev = NULL;
353 struct macvlan_dev *vlan;
354
355 mutex_lock(&minor_lock);
356 vlan = idr_find(&minor_idr, minor);
357 if (vlan) {
358 dev = vlan->dev;
359 dev_hold(dev);
360 }
361 mutex_unlock(&minor_lock);
362 return dev;
363}
364
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000365static int macvtap_newlink(struct net *src_net,
366 struct net_device *dev,
367 struct nlattr *tb[],
368 struct nlattr *data[])
369{
Jason Wang815f2362013-06-05 23:54:39 +0000370 struct macvlan_dev *vlan = netdev_priv(dev);
371 INIT_LIST_HEAD(&vlan->queue_list);
372
Eric W. Biederman9bf19072011-10-20 04:28:46 +0000373 /* Don't put anything that may fail after macvlan_common_newlink
374 * because we can't undo what it does.
375 */
376 return macvlan_common_newlink(src_net, dev, tb, data,
377 macvtap_receive, macvtap_forward);
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000378}
379
380static void macvtap_dellink(struct net_device *dev,
381 struct list_head *head)
382{
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000383 macvtap_del_queues(dev);
384 macvlan_dellink(dev, head);
385}
386
Herbert Xu8a357472010-07-21 21:44:31 +0000387static void macvtap_setup(struct net_device *dev)
388{
389 macvlan_common_setup(dev);
390 dev->tx_queue_len = TUN_READQ_SIZE;
391}
392
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000393static struct rtnl_link_ops macvtap_link_ops __read_mostly = {
394 .kind = "macvtap",
Herbert Xu8a357472010-07-21 21:44:31 +0000395 .setup = macvtap_setup,
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000396 .newlink = macvtap_newlink,
397 .dellink = macvtap_dellink,
398};
399
400
401static void macvtap_sock_write_space(struct sock *sk)
402{
Eric Dumazet43815482010-04-29 11:01:49 +0000403 wait_queue_head_t *wqueue;
404
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000405 if (!sock_writeable(sk) ||
406 !test_and_clear_bit(SOCK_ASYNC_NOSPACE, &sk->sk_socket->flags))
407 return;
408
Eric Dumazet43815482010-04-29 11:01:49 +0000409 wqueue = sk_sleep(sk);
410 if (wqueue && waitqueue_active(wqueue))
411 wake_up_interruptible_poll(wqueue, POLLOUT | POLLWRNORM | POLLWRBAND);
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000412}
413
Eric W. Biederman2259fef2011-10-20 04:27:24 +0000414static void macvtap_sock_destruct(struct sock *sk)
415{
416 skb_queue_purge(&sk->sk_receive_queue);
417}
418
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000419static int macvtap_open(struct inode *inode, struct file *file)
420{
421 struct net *net = current->nsproxy->net_ns;
Eric W. Biedermane09eff72011-10-20 04:29:24 +0000422 struct net_device *dev = dev_get_by_macvtap_minor(iminor(inode));
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000423 struct macvtap_queue *q;
424 int err;
425
426 err = -ENODEV;
427 if (!dev)
428 goto out;
429
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000430 err = -ENOMEM;
431 q = (struct macvtap_queue *)sk_alloc(net, AF_UNSPEC, GFP_KERNEL,
432 &macvtap_proto);
433 if (!q)
434 goto out;
435
Eric Dumazet43815482010-04-29 11:01:49 +0000436 q->sock.wq = &q->wq;
437 init_waitqueue_head(&q->wq.wait);
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000438 q->sock.type = SOCK_RAW;
439 q->sock.state = SS_CONNECTED;
Arnd Bergmann501c7742010-02-18 05:46:50 +0000440 q->sock.file = file;
441 q->sock.ops = &macvtap_socket_ops;
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000442 sock_init_data(&q->sock, &q->sk);
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000443 q->sk.sk_write_space = macvtap_sock_write_space;
Eric W. Biederman2259fef2011-10-20 04:27:24 +0000444 q->sk.sk_destruct = macvtap_sock_destruct;
Arnd Bergmannb9fb9ee2010-02-18 05:48:17 +0000445 q->flags = IFF_VNET_HDR | IFF_NO_PI | IFF_TAP;
Michael S. Tsirkin55afbd02010-04-29 13:50:48 +0300446 q->vnet_hdr_sz = sizeof(struct virtio_net_hdr);
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000447
Shirley Ma97bc3632011-07-06 12:26:11 +0000448 /*
449 * so far only KVM virtio_net uses macvtap, enable zero copy between
450 * guest kernel and host kernel when lower device supports zerocopy
Eric W. Biederman047af9cf2011-10-20 04:26:39 +0000451 *
452 * The macvlan supports zerocopy iff the lower device supports zero
453 * copy so we don't have to look at the lower device directly.
Shirley Ma97bc3632011-07-06 12:26:11 +0000454 */
Eric W. Biederman047af9cf2011-10-20 04:26:39 +0000455 if ((dev->features & NETIF_F_HIGHDMA) && (dev->features & NETIF_F_SG))
456 sock_set_flag(&q->sk, SOCK_ZEROCOPY);
Shirley Ma97bc3632011-07-06 12:26:11 +0000457
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000458 err = macvtap_set_queue(dev, file, q);
459 if (err)
460 sock_put(&q->sk);
461
462out:
463 if (dev)
464 dev_put(dev);
465
466 return err;
467}
468
469static int macvtap_release(struct inode *inode, struct file *file)
470{
Arnd Bergmann02df55d2010-02-18 05:45:36 +0000471 struct macvtap_queue *q = file->private_data;
472 macvtap_put_queue(q);
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000473 return 0;
474}
475
476static unsigned int macvtap_poll(struct file *file, poll_table * wait)
477{
Arnd Bergmann02df55d2010-02-18 05:45:36 +0000478 struct macvtap_queue *q = file->private_data;
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000479 unsigned int mask = POLLERR;
480
481 if (!q)
482 goto out;
483
484 mask = 0;
Eric Dumazet43815482010-04-29 11:01:49 +0000485 poll_wait(file, &q->wq.wait, wait);
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000486
487 if (!skb_queue_empty(&q->sk.sk_receive_queue))
488 mask |= POLLIN | POLLRDNORM;
489
490 if (sock_writeable(&q->sk) ||
491 (!test_and_set_bit(SOCK_ASYNC_NOSPACE, &q->sock.flags) &&
492 sock_writeable(&q->sk)))
493 mask |= POLLOUT | POLLWRNORM;
494
495out:
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000496 return mask;
497}
498
Arnd Bergmannb9fb9ee2010-02-18 05:48:17 +0000499static inline struct sk_buff *macvtap_alloc_skb(struct sock *sk, size_t prepad,
500 size_t len, size_t linear,
501 int noblock, int *err)
502{
503 struct sk_buff *skb;
504
505 /* Under a page? Don't bother with paged skb. */
506 if (prepad + len < PAGE_SIZE || !linear)
507 linear = len;
508
509 skb = sock_alloc_send_pskb(sk, prepad + linear, len - linear, noblock,
510 err);
511 if (!skb)
512 return NULL;
513
514 skb_reserve(skb, prepad);
515 skb_put(skb, linear);
516 skb->data_len = len - linear;
517 skb->len += len - linear;
518
519 return skb;
520}
521
Shirley Ma97bc3632011-07-06 12:26:11 +0000522/* set skb frags from iovec, this can move to core network code for reuse */
523static int zerocopy_sg_from_iovec(struct sk_buff *skb, const struct iovec *from,
524 int offset, size_t count)
525{
526 int len = iov_length(from, count) - offset;
527 int copy = skb_headlen(skb);
528 int size, offset1 = 0;
529 int i = 0;
Shirley Ma97bc3632011-07-06 12:26:11 +0000530
531 /* Skip over from offset */
532 while (count && (offset >= from->iov_len)) {
533 offset -= from->iov_len;
534 ++from;
535 --count;
536 }
537
538 /* copy up to skb headlen */
539 while (count && (copy > 0)) {
540 size = min_t(unsigned int, copy, from->iov_len - offset);
541 if (copy_from_user(skb->data + offset1, from->iov_base + offset,
542 size))
543 return -EFAULT;
544 if (copy > size) {
545 ++from;
546 --count;
Jason Wang3afc9622012-05-02 11:41:30 +0800547 offset = 0;
548 } else
549 offset += size;
Shirley Ma97bc3632011-07-06 12:26:11 +0000550 copy -= size;
551 offset1 += size;
Shirley Ma97bc3632011-07-06 12:26:11 +0000552 }
553
554 if (len == offset1)
555 return 0;
556
557 while (count--) {
558 struct page *page[MAX_SKB_FRAGS];
559 int num_pages;
560 unsigned long base;
Jason Wang4ef67eb2012-05-02 11:41:44 +0800561 unsigned long truesize;
Shirley Ma97bc3632011-07-06 12:26:11 +0000562
Jason Wang3afc9622012-05-02 11:41:30 +0800563 len = from->iov_len - offset;
Shirley Ma97bc3632011-07-06 12:26:11 +0000564 if (!len) {
Jason Wang3afc9622012-05-02 11:41:30 +0800565 offset = 0;
Shirley Ma97bc3632011-07-06 12:26:11 +0000566 ++from;
567 continue;
568 }
Jason Wang3afc9622012-05-02 11:41:30 +0800569 base = (unsigned long)from->iov_base + offset;
Shirley Ma97bc3632011-07-06 12:26:11 +0000570 size = ((base & ~PAGE_MASK) + len + ~PAGE_MASK) >> PAGE_SHIFT;
Jason Wangb92946e2012-05-02 11:42:15 +0800571 if (i + size > MAX_SKB_FRAGS)
572 return -EMSGSIZE;
Shirley Ma97bc3632011-07-06 12:26:11 +0000573 num_pages = get_user_pages_fast(base, size, 0, &page[i]);
Jason Wangb92946e2012-05-02 11:42:15 +0800574 if (num_pages != size) {
Jason Wang02ce04b2012-05-02 11:41:58 +0800575 for (i = 0; i < num_pages; i++)
576 put_page(page[i]);
Shirley Ma97bc3632011-07-06 12:26:11 +0000577 return -EFAULT;
Jason Wang02ce04b2012-05-02 11:41:58 +0800578 }
Jason Wang4ef67eb2012-05-02 11:41:44 +0800579 truesize = size * PAGE_SIZE;
Shirley Ma97bc3632011-07-06 12:26:11 +0000580 skb->data_len += len;
581 skb->len += len;
Jason Wang4ef67eb2012-05-02 11:41:44 +0800582 skb->truesize += truesize;
583 atomic_add(truesize, &skb->sk->sk_wmem_alloc);
Shirley Ma97bc3632011-07-06 12:26:11 +0000584 while (len) {
Jason Wang653fc912011-09-18 23:48:31 +0000585 int off = base & ~PAGE_MASK;
586 int size = min_t(int, len, PAGE_SIZE - off);
587 __skb_fill_page_desc(skb, i, page[i], off, size);
Shirley Ma97bc3632011-07-06 12:26:11 +0000588 skb_shinfo(skb)->nr_frags++;
589 /* increase sk_wmem_alloc */
Jason Wang653fc912011-09-18 23:48:31 +0000590 base += size;
591 len -= size;
Shirley Ma97bc3632011-07-06 12:26:11 +0000592 i++;
593 }
Jason Wang3afc9622012-05-02 11:41:30 +0800594 offset = 0;
Shirley Ma97bc3632011-07-06 12:26:11 +0000595 ++from;
596 }
597 return 0;
598}
599
Arnd Bergmannb9fb9ee2010-02-18 05:48:17 +0000600/*
601 * macvtap_skb_from_vnet_hdr and macvtap_skb_to_vnet_hdr should
602 * be shared with the tun/tap driver.
603 */
604static int macvtap_skb_from_vnet_hdr(struct sk_buff *skb,
605 struct virtio_net_hdr *vnet_hdr)
606{
607 unsigned short gso_type = 0;
608 if (vnet_hdr->gso_type != VIRTIO_NET_HDR_GSO_NONE) {
609 switch (vnet_hdr->gso_type & ~VIRTIO_NET_HDR_GSO_ECN) {
610 case VIRTIO_NET_HDR_GSO_TCPV4:
611 gso_type = SKB_GSO_TCPV4;
612 break;
613 case VIRTIO_NET_HDR_GSO_TCPV6:
614 gso_type = SKB_GSO_TCPV6;
615 break;
616 case VIRTIO_NET_HDR_GSO_UDP:
617 gso_type = SKB_GSO_UDP;
618 break;
619 default:
620 return -EINVAL;
621 }
622
623 if (vnet_hdr->gso_type & VIRTIO_NET_HDR_GSO_ECN)
624 gso_type |= SKB_GSO_TCP_ECN;
625
626 if (vnet_hdr->gso_size == 0)
627 return -EINVAL;
628 }
629
630 if (vnet_hdr->flags & VIRTIO_NET_HDR_F_NEEDS_CSUM) {
631 if (!skb_partial_csum_set(skb, vnet_hdr->csum_start,
632 vnet_hdr->csum_offset))
633 return -EINVAL;
634 }
635
636 if (vnet_hdr->gso_type != VIRTIO_NET_HDR_GSO_NONE) {
637 skb_shinfo(skb)->gso_size = vnet_hdr->gso_size;
Pravin B Shelarc9af6db2013-02-11 09:27:41 +0000638 skb_shinfo(skb)->gso_type = gso_type;
Arnd Bergmannb9fb9ee2010-02-18 05:48:17 +0000639
640 /* Header must be checked, and gso_segs computed. */
641 skb_shinfo(skb)->gso_type |= SKB_GSO_DODGY;
642 skb_shinfo(skb)->gso_segs = 0;
643 }
644 return 0;
645}
646
647static int macvtap_skb_to_vnet_hdr(const struct sk_buff *skb,
648 struct virtio_net_hdr *vnet_hdr)
649{
650 memset(vnet_hdr, 0, sizeof(*vnet_hdr));
651
652 if (skb_is_gso(skb)) {
653 struct skb_shared_info *sinfo = skb_shinfo(skb);
654
655 /* This is a hint as to how much should be linear. */
656 vnet_hdr->hdr_len = skb_headlen(skb);
657 vnet_hdr->gso_size = sinfo->gso_size;
658 if (sinfo->gso_type & SKB_GSO_TCPV4)
659 vnet_hdr->gso_type = VIRTIO_NET_HDR_GSO_TCPV4;
660 else if (sinfo->gso_type & SKB_GSO_TCPV6)
661 vnet_hdr->gso_type = VIRTIO_NET_HDR_GSO_TCPV6;
662 else if (sinfo->gso_type & SKB_GSO_UDP)
663 vnet_hdr->gso_type = VIRTIO_NET_HDR_GSO_UDP;
664 else
665 BUG();
666 if (sinfo->gso_type & SKB_GSO_TCP_ECN)
667 vnet_hdr->gso_type |= VIRTIO_NET_HDR_GSO_ECN;
668 } else
669 vnet_hdr->gso_type = VIRTIO_NET_HDR_GSO_NONE;
670
671 if (skb->ip_summed == CHECKSUM_PARTIAL) {
672 vnet_hdr->flags = VIRTIO_NET_HDR_F_NEEDS_CSUM;
Michał Mirosław55508d62010-12-14 15:24:08 +0000673 vnet_hdr->csum_start = skb_checksum_start_offset(skb);
Arnd Bergmannb9fb9ee2010-02-18 05:48:17 +0000674 vnet_hdr->csum_offset = skb->csum_offset;
Jason Wang10a8d942011-06-10 00:56:17 +0000675 } else if (skb->ip_summed == CHECKSUM_UNNECESSARY) {
676 vnet_hdr->flags = VIRTIO_NET_HDR_F_DATA_VALID;
Arnd Bergmannb9fb9ee2010-02-18 05:48:17 +0000677 } /* else everything is zero */
678
679 return 0;
680}
681
682
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000683/* Get packet from user space buffer */
Shirley Ma97bc3632011-07-06 12:26:11 +0000684static ssize_t macvtap_get_user(struct macvtap_queue *q, struct msghdr *m,
685 const struct iovec *iv, unsigned long total_len,
686 size_t count, int noblock)
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000687{
688 struct sk_buff *skb;
Arnd Bergmann02df55d2010-02-18 05:45:36 +0000689 struct macvlan_dev *vlan;
Shirley Ma97bc3632011-07-06 12:26:11 +0000690 unsigned long len = total_len;
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000691 int err;
Arnd Bergmannb9fb9ee2010-02-18 05:48:17 +0000692 struct virtio_net_hdr vnet_hdr = { 0 };
693 int vnet_hdr_len = 0;
Jason Wangb92946e2012-05-02 11:42:15 +0800694 int copylen = 0;
Shirley Ma97bc3632011-07-06 12:26:11 +0000695 bool zerocopy = false;
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000696
Arnd Bergmannb9fb9ee2010-02-18 05:48:17 +0000697 if (q->flags & IFF_VNET_HDR) {
Michael S. Tsirkin55afbd02010-04-29 13:50:48 +0300698 vnet_hdr_len = q->vnet_hdr_sz;
Arnd Bergmannb9fb9ee2010-02-18 05:48:17 +0000699
700 err = -EINVAL;
Nicolas Kaiserce3c8692011-03-04 13:49:41 +0000701 if (len < vnet_hdr_len)
Arnd Bergmannb9fb9ee2010-02-18 05:48:17 +0000702 goto err;
Nicolas Kaiserce3c8692011-03-04 13:49:41 +0000703 len -= vnet_hdr_len;
Arnd Bergmannb9fb9ee2010-02-18 05:48:17 +0000704
705 err = memcpy_fromiovecend((void *)&vnet_hdr, iv, 0,
Michael S. Tsirkin55afbd02010-04-29 13:50:48 +0300706 sizeof(vnet_hdr));
Arnd Bergmannb9fb9ee2010-02-18 05:48:17 +0000707 if (err < 0)
708 goto err;
709 if ((vnet_hdr.flags & VIRTIO_NET_HDR_F_NEEDS_CSUM) &&
710 vnet_hdr.csum_start + vnet_hdr.csum_offset + 2 >
711 vnet_hdr.hdr_len)
712 vnet_hdr.hdr_len = vnet_hdr.csum_start +
713 vnet_hdr.csum_offset + 2;
714 err = -EINVAL;
715 if (vnet_hdr.hdr_len > len)
716 goto err;
717 }
718
719 err = -EINVAL;
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000720 if (unlikely(len < ETH_HLEN))
Arnd Bergmannb9fb9ee2010-02-18 05:48:17 +0000721 goto err;
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000722
Jason Wangb92946e2012-05-02 11:42:15 +0800723 err = -EMSGSIZE;
724 if (unlikely(count > UIO_MAXIOV))
725 goto err;
726
Shirley Ma97bc3632011-07-06 12:26:11 +0000727 if (m && m->msg_control && sock_flag(&q->sk, SOCK_ZEROCOPY))
728 zerocopy = true;
729
730 if (zerocopy) {
Jason Wangb92946e2012-05-02 11:42:15 +0800731 /* Userspace may produce vectors with count greater than
732 * MAX_SKB_FRAGS, so we need to linearize parts of the skb
733 * to let the rest of data to be fit in the frags.
734 */
735 if (count > MAX_SKB_FRAGS) {
736 copylen = iov_length(iv, count - MAX_SKB_FRAGS);
737 if (copylen < vnet_hdr_len)
738 copylen = 0;
739 else
740 copylen -= vnet_hdr_len;
741 }
Shirley Ma97bc3632011-07-06 12:26:11 +0000742 /* There are 256 bytes to be copied in skb, so there is enough
743 * room for skb expand head in case it is used.
744 * The rest buffer is mapped from userspace.
745 */
Jason Wangb92946e2012-05-02 11:42:15 +0800746 if (copylen < vnet_hdr.hdr_len)
747 copylen = vnet_hdr.hdr_len;
Shirley Ma97bc3632011-07-06 12:26:11 +0000748 if (!copylen)
749 copylen = GOODCOPY_LEN;
750 } else
751 copylen = len;
752
753 skb = macvtap_alloc_skb(&q->sk, NET_IP_ALIGN, copylen,
754 vnet_hdr.hdr_len, noblock, &err);
Arnd Bergmann02df55d2010-02-18 05:45:36 +0000755 if (!skb)
756 goto err;
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000757
Jason Wang01d66572012-05-02 11:42:06 +0800758 if (zerocopy)
Shirley Ma97bc3632011-07-06 12:26:11 +0000759 err = zerocopy_sg_from_iovec(skb, iv, vnet_hdr_len, count);
Jason Wang01d66572012-05-02 11:42:06 +0800760 else
Shirley Ma97bc3632011-07-06 12:26:11 +0000761 err = skb_copy_datagram_from_iovec(skb, 0, iv, vnet_hdr_len,
762 len);
Arnd Bergmann02df55d2010-02-18 05:45:36 +0000763 if (err)
Arnd Bergmannb9fb9ee2010-02-18 05:48:17 +0000764 goto err_kfree;
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000765
766 skb_set_network_header(skb, ETH_HLEN);
Arnd Bergmannb9fb9ee2010-02-18 05:48:17 +0000767 skb_reset_mac_header(skb);
768 skb->protocol = eth_hdr(skb)->h_proto;
769
770 if (vnet_hdr_len) {
771 err = macvtap_skb_from_vnet_hdr(skb, &vnet_hdr);
772 if (err)
773 goto err_kfree;
774 }
775
Jason Wang40893fd2013-03-26 23:11:22 +0000776 skb_probe_transport_header(skb, ETH_HLEN);
Jason Wang9b4d6692013-03-25 20:19:55 +0000777
Arnd Bergmann02df55d2010-02-18 05:45:36 +0000778 rcu_read_lock_bh();
Eric Dumazet13707f92011-01-26 19:28:23 +0000779 vlan = rcu_dereference_bh(q->vlan);
Shirley Ma97bc3632011-07-06 12:26:11 +0000780 /* copy skb_ubuf_info for callback when skb has no error */
Jason Wang01d66572012-05-02 11:42:06 +0800781 if (zerocopy) {
Shirley Ma97bc3632011-07-06 12:26:11 +0000782 skb_shinfo(skb)->destructor_arg = m->msg_control;
Jason Wang01d66572012-05-02 11:42:06 +0800783 skb_shinfo(skb)->tx_flags |= SKBTX_DEV_ZEROCOPY;
Pravin B Shelarc9af6db2013-02-11 09:27:41 +0000784 skb_shinfo(skb)->tx_flags |= SKBTX_SHARED_FRAG;
Jason Wang01d66572012-05-02 11:42:06 +0800785 }
Arnd Bergmann02df55d2010-02-18 05:45:36 +0000786 if (vlan)
787 macvlan_start_xmit(skb, vlan->dev);
788 else
789 kfree_skb(skb);
790 rcu_read_unlock_bh();
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000791
Shirley Ma97bc3632011-07-06 12:26:11 +0000792 return total_len;
Arnd Bergmann02df55d2010-02-18 05:45:36 +0000793
Arnd Bergmannb9fb9ee2010-02-18 05:48:17 +0000794err_kfree:
795 kfree_skb(skb);
796
Arnd Bergmann02df55d2010-02-18 05:45:36 +0000797err:
798 rcu_read_lock_bh();
Eric Dumazet13707f92011-01-26 19:28:23 +0000799 vlan = rcu_dereference_bh(q->vlan);
Arnd Bergmann02df55d2010-02-18 05:45:36 +0000800 if (vlan)
Eric Dumazet1ac9ad12011-01-12 12:13:14 +0000801 vlan->dev->stats.tx_dropped++;
Arnd Bergmann02df55d2010-02-18 05:45:36 +0000802 rcu_read_unlock_bh();
803
Arnd Bergmann02df55d2010-02-18 05:45:36 +0000804 return err;
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000805}
806
807static ssize_t macvtap_aio_write(struct kiocb *iocb, const struct iovec *iv,
808 unsigned long count, loff_t pos)
809{
810 struct file *file = iocb->ki_filp;
811 ssize_t result = -ENOLINK;
Arnd Bergmann02df55d2010-02-18 05:45:36 +0000812 struct macvtap_queue *q = file->private_data;
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000813
Shirley Ma97bc3632011-07-06 12:26:11 +0000814 result = macvtap_get_user(q, NULL, iv, iov_length(iv, count), count,
815 file->f_flags & O_NONBLOCK);
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000816 return result;
817}
818
819/* Put packet to the user space buffer */
820static ssize_t macvtap_put_user(struct macvtap_queue *q,
821 const struct sk_buff *skb,
822 const struct iovec *iv, int len)
823{
Arnd Bergmann02df55d2010-02-18 05:45:36 +0000824 struct macvlan_dev *vlan;
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000825 int ret;
Arnd Bergmannb9fb9ee2010-02-18 05:48:17 +0000826 int vnet_hdr_len = 0;
Basil Gorf09e2242012-05-03 22:55:24 +0000827 int vlan_offset = 0;
828 int copied;
Arnd Bergmannb9fb9ee2010-02-18 05:48:17 +0000829
830 if (q->flags & IFF_VNET_HDR) {
831 struct virtio_net_hdr vnet_hdr;
Michael S. Tsirkin55afbd02010-04-29 13:50:48 +0300832 vnet_hdr_len = q->vnet_hdr_sz;
Arnd Bergmannb9fb9ee2010-02-18 05:48:17 +0000833 if ((len -= vnet_hdr_len) < 0)
834 return -EINVAL;
835
836 ret = macvtap_skb_to_vnet_hdr(skb, &vnet_hdr);
837 if (ret)
838 return ret;
839
Michael S. Tsirkin55afbd02010-04-29 13:50:48 +0300840 if (memcpy_toiovecend(iv, (void *)&vnet_hdr, 0, sizeof(vnet_hdr)))
Arnd Bergmannb9fb9ee2010-02-18 05:48:17 +0000841 return -EFAULT;
842 }
Basil Gorf09e2242012-05-03 22:55:24 +0000843 copied = vnet_hdr_len;
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000844
Basil Gorf09e2242012-05-03 22:55:24 +0000845 if (!vlan_tx_tag_present(skb))
846 len = min_t(int, skb->len, len);
847 else {
848 int copy;
849 struct {
850 __be16 h_vlan_proto;
851 __be16 h_vlan_TCI;
852 } veth;
853 veth.h_vlan_proto = htons(ETH_P_8021Q);
854 veth.h_vlan_TCI = htons(vlan_tx_tag_get(skb));
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000855
Basil Gorf09e2242012-05-03 22:55:24 +0000856 vlan_offset = offsetof(struct vlan_ethhdr, h_vlan_proto);
857 len = min_t(int, skb->len + VLAN_HLEN, len);
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000858
Basil Gorf09e2242012-05-03 22:55:24 +0000859 copy = min_t(int, vlan_offset, len);
860 ret = skb_copy_datagram_const_iovec(skb, 0, iv, copied, copy);
861 len -= copy;
862 copied += copy;
863 if (ret || !len)
864 goto done;
865
866 copy = min_t(int, sizeof(veth), len);
867 ret = memcpy_toiovecend(iv, (void *)&veth, copied, copy);
868 len -= copy;
869 copied += copy;
870 if (ret || !len)
871 goto done;
872 }
873
874 ret = skb_copy_datagram_const_iovec(skb, vlan_offset, iv, copied, len);
875 copied += len;
876
877done:
Arnd Bergmann02df55d2010-02-18 05:45:36 +0000878 rcu_read_lock_bh();
Eric Dumazet13707f92011-01-26 19:28:23 +0000879 vlan = rcu_dereference_bh(q->vlan);
Arnd Bergmann501c7742010-02-18 05:46:50 +0000880 if (vlan)
Basil Gorf09e2242012-05-03 22:55:24 +0000881 macvlan_count_rx(vlan, copied - vnet_hdr_len, ret == 0, 0);
Arnd Bergmann02df55d2010-02-18 05:45:36 +0000882 rcu_read_unlock_bh();
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000883
Basil Gorf09e2242012-05-03 22:55:24 +0000884 return ret ? ret : copied;
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000885}
886
Arnd Bergmann501c7742010-02-18 05:46:50 +0000887static ssize_t macvtap_do_read(struct macvtap_queue *q, struct kiocb *iocb,
888 const struct iovec *iv, unsigned long len,
889 int noblock)
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000890{
Hong zhi guoccf7e722012-06-06 22:36:27 +0000891 DEFINE_WAIT(wait);
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000892 struct sk_buff *skb;
Arnd Bergmann501c7742010-02-18 05:46:50 +0000893 ssize_t ret = 0;
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000894
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000895 while (len) {
Jason Wang89cee912013-06-05 23:54:34 +0000896 if (!noblock)
897 prepare_to_wait(sk_sleep(&q->sk), &wait,
898 TASK_INTERRUPTIBLE);
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000899
900 /* Read frames from the queue */
901 skb = skb_dequeue(&q->sk.sk_receive_queue);
902 if (!skb) {
Arnd Bergmann501c7742010-02-18 05:46:50 +0000903 if (noblock) {
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000904 ret = -EAGAIN;
905 break;
906 }
907 if (signal_pending(current)) {
908 ret = -ERESTARTSYS;
909 break;
910 }
911 /* Nothing to read, let's sleep */
912 schedule();
913 continue;
914 }
915 ret = macvtap_put_user(q, skb, iv, len);
916 kfree_skb(skb);
917 break;
918 }
919
Jason Wang89cee912013-06-05 23:54:34 +0000920 if (!noblock)
921 finish_wait(sk_sleep(&q->sk), &wait);
Arnd Bergmann501c7742010-02-18 05:46:50 +0000922 return ret;
923}
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000924
Arnd Bergmann501c7742010-02-18 05:46:50 +0000925static ssize_t macvtap_aio_read(struct kiocb *iocb, const struct iovec *iv,
926 unsigned long count, loff_t pos)
927{
928 struct file *file = iocb->ki_filp;
929 struct macvtap_queue *q = file->private_data;
930 ssize_t len, ret = 0;
931
932 len = iov_length(iv, count);
933 if (len < 0) {
934 ret = -EINVAL;
935 goto out;
936 }
937
938 ret = macvtap_do_read(q, iocb, iv, len, file->f_flags & O_NONBLOCK);
939 ret = min_t(ssize_t, ret, len); /* XXX copied from tun.c. Why? */
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000940out:
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000941 return ret;
942}
943
Jason Wang8f475a32013-06-05 23:54:36 +0000944static struct macvlan_dev *macvtap_get_vlan(struct macvtap_queue *q)
945{
946 struct macvlan_dev *vlan;
947
948 rcu_read_lock_bh();
949 vlan = rcu_dereference_bh(q->vlan);
950 if (vlan)
951 dev_hold(vlan->dev);
952 rcu_read_unlock_bh();
953
954 return vlan;
955}
956
957static void macvtap_put_vlan(struct macvlan_dev *vlan)
958{
959 dev_put(vlan->dev);
960}
961
Jason Wang815f2362013-06-05 23:54:39 +0000962static int macvtap_ioctl_set_queue(struct file *file, unsigned int flags)
963{
964 struct macvtap_queue *q = file->private_data;
965 struct macvlan_dev *vlan;
966 int ret;
967
968 vlan = macvtap_get_vlan(q);
969 if (!vlan)
970 return -EINVAL;
971
972 if (flags & IFF_ATTACH_QUEUE)
973 ret = macvtap_enable_queue(vlan->dev, file, q);
974 else if (flags & IFF_DETACH_QUEUE)
975 ret = macvtap_disable_queue(q);
976
977 macvtap_put_vlan(vlan);
978 return ret;
979}
980
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000981/*
982 * provide compatibility with generic tun/tap interface
983 */
984static long macvtap_ioctl(struct file *file, unsigned int cmd,
985 unsigned long arg)
986{
Arnd Bergmann02df55d2010-02-18 05:45:36 +0000987 struct macvtap_queue *q = file->private_data;
988 struct macvlan_dev *vlan;
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000989 void __user *argp = (void __user *)arg;
990 struct ifreq __user *ifr = argp;
991 unsigned int __user *up = argp;
992 unsigned int u;
Michael S. Tsirkin55afbd02010-04-29 13:50:48 +0300993 int __user *sp = argp;
994 int s;
Arnd Bergmann02df55d2010-02-18 05:45:36 +0000995 int ret;
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000996
997 switch (cmd) {
998 case TUNSETIFF:
999 /* ignore the name, just look at flags */
1000 if (get_user(u, &ifr->ifr_flags))
1001 return -EFAULT;
Arnd Bergmannb9fb9ee2010-02-18 05:48:17 +00001002
1003 ret = 0;
Jason Wang815f2362013-06-05 23:54:39 +00001004 if ((u & ~(IFF_VNET_HDR | IFF_MULTI_QUEUE)) !=
1005 (IFF_NO_PI | IFF_TAP))
Arnd Bergmannb9fb9ee2010-02-18 05:48:17 +00001006 ret = -EINVAL;
1007 else
1008 q->flags = u;
1009
1010 return ret;
Arnd Bergmann20d29d72010-01-30 12:24:26 +00001011
1012 case TUNGETIFF:
Jason Wang8f475a32013-06-05 23:54:36 +00001013 vlan = macvtap_get_vlan(q);
Arnd Bergmann02df55d2010-02-18 05:45:36 +00001014 if (!vlan)
1015 return -ENOLINK;
1016
1017 ret = 0;
Eric Dumazet13707f92011-01-26 19:28:23 +00001018 if (copy_to_user(&ifr->ifr_name, vlan->dev->name, IFNAMSIZ) ||
Arnd Bergmannb9fb9ee2010-02-18 05:48:17 +00001019 put_user(q->flags, &ifr->ifr_flags))
Arnd Bergmann02df55d2010-02-18 05:45:36 +00001020 ret = -EFAULT;
Jason Wang8f475a32013-06-05 23:54:36 +00001021 macvtap_put_vlan(vlan);
Arnd Bergmann02df55d2010-02-18 05:45:36 +00001022 return ret;
Arnd Bergmann20d29d72010-01-30 12:24:26 +00001023
Jason Wang815f2362013-06-05 23:54:39 +00001024 case TUNSETQUEUE:
1025 if (get_user(u, &ifr->ifr_flags))
1026 return -EFAULT;
1027 return macvtap_ioctl_set_queue(file, u);
1028
Arnd Bergmann20d29d72010-01-30 12:24:26 +00001029 case TUNGETFEATURES:
Arnd Bergmannb9fb9ee2010-02-18 05:48:17 +00001030 if (put_user(IFF_TAP | IFF_NO_PI | IFF_VNET_HDR, up))
Arnd Bergmann20d29d72010-01-30 12:24:26 +00001031 return -EFAULT;
1032 return 0;
1033
1034 case TUNSETSNDBUF:
1035 if (get_user(u, up))
1036 return -EFAULT;
1037
Arnd Bergmann20d29d72010-01-30 12:24:26 +00001038 q->sk.sk_sndbuf = u;
Arnd Bergmann20d29d72010-01-30 12:24:26 +00001039 return 0;
1040
Michael S. Tsirkin55afbd02010-04-29 13:50:48 +03001041 case TUNGETVNETHDRSZ:
1042 s = q->vnet_hdr_sz;
1043 if (put_user(s, sp))
1044 return -EFAULT;
1045 return 0;
1046
1047 case TUNSETVNETHDRSZ:
1048 if (get_user(s, sp))
1049 return -EFAULT;
1050 if (s < (int)sizeof(struct virtio_net_hdr))
1051 return -EINVAL;
1052
1053 q->vnet_hdr_sz = s;
1054 return 0;
1055
Arnd Bergmann20d29d72010-01-30 12:24:26 +00001056 case TUNSETOFFLOAD:
1057 /* let the user check for future flags */
1058 if (arg & ~(TUN_F_CSUM | TUN_F_TSO4 | TUN_F_TSO6 |
Arnd Bergmannb9fb9ee2010-02-18 05:48:17 +00001059 TUN_F_TSO_ECN | TUN_F_UFO))
Arnd Bergmann20d29d72010-01-30 12:24:26 +00001060 return -EINVAL;
1061
Arnd Bergmannb9fb9ee2010-02-18 05:48:17 +00001062 /* TODO: only accept frames with the features that
1063 got enabled for forwarded frames */
1064 if (!(q->flags & IFF_VNET_HDR))
1065 return -EINVAL;
Arnd Bergmann20d29d72010-01-30 12:24:26 +00001066 return 0;
1067
1068 default:
1069 return -EINVAL;
1070 }
1071}
1072
1073#ifdef CONFIG_COMPAT
1074static long macvtap_compat_ioctl(struct file *file, unsigned int cmd,
1075 unsigned long arg)
1076{
1077 return macvtap_ioctl(file, cmd, (unsigned long)compat_ptr(arg));
1078}
1079#endif
1080
1081static const struct file_operations macvtap_fops = {
1082 .owner = THIS_MODULE,
1083 .open = macvtap_open,
1084 .release = macvtap_release,
1085 .aio_read = macvtap_aio_read,
1086 .aio_write = macvtap_aio_write,
1087 .poll = macvtap_poll,
1088 .llseek = no_llseek,
1089 .unlocked_ioctl = macvtap_ioctl,
1090#ifdef CONFIG_COMPAT
1091 .compat_ioctl = macvtap_compat_ioctl,
1092#endif
1093};
1094
Arnd Bergmann501c7742010-02-18 05:46:50 +00001095static int macvtap_sendmsg(struct kiocb *iocb, struct socket *sock,
1096 struct msghdr *m, size_t total_len)
1097{
1098 struct macvtap_queue *q = container_of(sock, struct macvtap_queue, sock);
Shirley Ma97bc3632011-07-06 12:26:11 +00001099 return macvtap_get_user(q, m, m->msg_iov, total_len, m->msg_iovlen,
Arnd Bergmann501c7742010-02-18 05:46:50 +00001100 m->msg_flags & MSG_DONTWAIT);
1101}
1102
1103static int macvtap_recvmsg(struct kiocb *iocb, struct socket *sock,
1104 struct msghdr *m, size_t total_len,
1105 int flags)
1106{
1107 struct macvtap_queue *q = container_of(sock, struct macvtap_queue, sock);
1108 int ret;
1109 if (flags & ~(MSG_DONTWAIT|MSG_TRUNC))
1110 return -EINVAL;
1111 ret = macvtap_do_read(q, iocb, m->msg_iov, total_len,
1112 flags & MSG_DONTWAIT);
1113 if (ret > total_len) {
1114 m->msg_flags |= MSG_TRUNC;
1115 ret = flags & MSG_TRUNC ? ret : total_len;
1116 }
1117 return ret;
1118}
1119
1120/* Ops structure to mimic raw sockets with tun */
1121static const struct proto_ops macvtap_socket_ops = {
1122 .sendmsg = macvtap_sendmsg,
1123 .recvmsg = macvtap_recvmsg,
1124};
1125
1126/* Get an underlying socket object from tun file. Returns error unless file is
1127 * attached to a device. The returned object works like a packet socket, it
1128 * can be used for sock_sendmsg/sock_recvmsg. The caller is responsible for
1129 * holding a reference to the file for as long as the socket is in use. */
1130struct socket *macvtap_get_socket(struct file *file)
1131{
1132 struct macvtap_queue *q;
1133 if (file->f_op != &macvtap_fops)
1134 return ERR_PTR(-EINVAL);
1135 q = file->private_data;
1136 if (!q)
1137 return ERR_PTR(-EBADFD);
1138 return &q->sock;
1139}
1140EXPORT_SYMBOL_GPL(macvtap_get_socket);
1141
Eric W. Biederman9bf19072011-10-20 04:28:46 +00001142static int macvtap_device_event(struct notifier_block *unused,
1143 unsigned long event, void *ptr)
1144{
Jiri Pirko351638e2013-05-28 01:30:21 +00001145 struct net_device *dev = netdev_notifier_info_to_dev(ptr);
Eric W. Biedermane09eff72011-10-20 04:29:24 +00001146 struct macvlan_dev *vlan;
Eric W. Biederman9bf19072011-10-20 04:28:46 +00001147 struct device *classdev;
1148 dev_t devt;
Eric W. Biedermane09eff72011-10-20 04:29:24 +00001149 int err;
Eric W. Biederman9bf19072011-10-20 04:28:46 +00001150
1151 if (dev->rtnl_link_ops != &macvtap_link_ops)
1152 return NOTIFY_DONE;
1153
Eric W. Biedermane09eff72011-10-20 04:29:24 +00001154 vlan = netdev_priv(dev);
Eric W. Biederman9bf19072011-10-20 04:28:46 +00001155
1156 switch (event) {
1157 case NETDEV_REGISTER:
1158 /* Create the device node here after the network device has
1159 * been registered but before register_netdevice has
1160 * finished running.
1161 */
Eric W. Biedermane09eff72011-10-20 04:29:24 +00001162 err = macvtap_get_minor(vlan);
1163 if (err)
1164 return notifier_from_errno(err);
1165
1166 devt = MKDEV(MAJOR(macvtap_major), vlan->minor);
Eric W. Biederman9bf19072011-10-20 04:28:46 +00001167 classdev = device_create(macvtap_class, &dev->dev, devt,
1168 dev, "tap%d", dev->ifindex);
Eric W. Biedermane09eff72011-10-20 04:29:24 +00001169 if (IS_ERR(classdev)) {
1170 macvtap_free_minor(vlan);
Eric W. Biederman9bf19072011-10-20 04:28:46 +00001171 return notifier_from_errno(PTR_ERR(classdev));
Eric W. Biedermane09eff72011-10-20 04:29:24 +00001172 }
Eric W. Biederman9bf19072011-10-20 04:28:46 +00001173 break;
1174 case NETDEV_UNREGISTER:
Eric W. Biedermane09eff72011-10-20 04:29:24 +00001175 devt = MKDEV(MAJOR(macvtap_major), vlan->minor);
Eric W. Biederman9bf19072011-10-20 04:28:46 +00001176 device_destroy(macvtap_class, devt);
Eric W. Biedermane09eff72011-10-20 04:29:24 +00001177 macvtap_free_minor(vlan);
Eric W. Biederman9bf19072011-10-20 04:28:46 +00001178 break;
1179 }
1180
1181 return NOTIFY_DONE;
1182}
1183
1184static struct notifier_block macvtap_notifier_block __read_mostly = {
1185 .notifier_call = macvtap_device_event,
1186};
1187
Arnd Bergmann20d29d72010-01-30 12:24:26 +00001188static int macvtap_init(void)
1189{
1190 int err;
1191
1192 err = alloc_chrdev_region(&macvtap_major, 0,
1193 MACVTAP_NUM_DEVS, "macvtap");
1194 if (err)
1195 goto out1;
1196
1197 cdev_init(&macvtap_cdev, &macvtap_fops);
1198 err = cdev_add(&macvtap_cdev, macvtap_major, MACVTAP_NUM_DEVS);
1199 if (err)
1200 goto out2;
1201
1202 macvtap_class = class_create(THIS_MODULE, "macvtap");
1203 if (IS_ERR(macvtap_class)) {
1204 err = PTR_ERR(macvtap_class);
1205 goto out3;
1206 }
1207
Eric W. Biederman9bf19072011-10-20 04:28:46 +00001208 err = register_netdevice_notifier(&macvtap_notifier_block);
Arnd Bergmann20d29d72010-01-30 12:24:26 +00001209 if (err)
1210 goto out4;
1211
Eric W. Biederman9bf19072011-10-20 04:28:46 +00001212 err = macvlan_link_register(&macvtap_link_ops);
1213 if (err)
1214 goto out5;
1215
Arnd Bergmann20d29d72010-01-30 12:24:26 +00001216 return 0;
1217
Eric W. Biederman9bf19072011-10-20 04:28:46 +00001218out5:
1219 unregister_netdevice_notifier(&macvtap_notifier_block);
Arnd Bergmann20d29d72010-01-30 12:24:26 +00001220out4:
1221 class_unregister(macvtap_class);
1222out3:
1223 cdev_del(&macvtap_cdev);
1224out2:
1225 unregister_chrdev_region(macvtap_major, MACVTAP_NUM_DEVS);
1226out1:
1227 return err;
1228}
1229module_init(macvtap_init);
1230
1231static void macvtap_exit(void)
1232{
1233 rtnl_link_unregister(&macvtap_link_ops);
Eric W. Biederman9bf19072011-10-20 04:28:46 +00001234 unregister_netdevice_notifier(&macvtap_notifier_block);
Arnd Bergmann20d29d72010-01-30 12:24:26 +00001235 class_unregister(macvtap_class);
1236 cdev_del(&macvtap_cdev);
1237 unregister_chrdev_region(macvtap_major, MACVTAP_NUM_DEVS);
1238}
1239module_exit(macvtap_exit);
1240
1241MODULE_ALIAS_RTNL_LINK("macvtap");
1242MODULE_AUTHOR("Arnd Bergmann <arnd@arndb.de>");
1243MODULE_LICENSE("GPL");