blob: 5ccba99b15f4c1ea53e3cb6522e0598a00a845e5 [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;
Arnd Bergmann20d29d72010-01-30 12:24:26 +000048};
49
50static struct proto macvtap_proto = {
51 .name = "macvtap",
52 .owner = THIS_MODULE,
53 .obj_size = sizeof (struct macvtap_queue),
54};
55
56/*
Eric W. Biedermane09eff72011-10-20 04:29:24 +000057 * Variables for dealing with macvtaps device numbers.
Arnd Bergmann20d29d72010-01-30 12:24:26 +000058 */
David S. Miller1ebed712010-07-10 19:25:50 -070059static dev_t macvtap_major;
Eric W. Biedermane09eff72011-10-20 04:29:24 +000060#define MACVTAP_NUM_DEVS (1U << MINORBITS)
61static DEFINE_MUTEX(minor_lock);
62static DEFINE_IDR(minor_idr);
63
Shirley Ma97bc3632011-07-06 12:26:11 +000064#define GOODCOPY_LEN 128
Arnd Bergmann20d29d72010-01-30 12:24:26 +000065static struct class *macvtap_class;
66static struct cdev macvtap_cdev;
67
Arnd Bergmann501c7742010-02-18 05:46:50 +000068static const struct proto_ops macvtap_socket_ops;
69
Arnd Bergmann20d29d72010-01-30 12:24:26 +000070/*
71 * RCU usage:
Arnd Bergmann02df55d2010-02-18 05:45:36 +000072 * The macvtap_queue and the macvlan_dev are loosely coupled, the
73 * pointers from one to the other can only be read while rcu_read_lock
74 * or macvtap_lock is held.
Arnd Bergmann20d29d72010-01-30 12:24:26 +000075 *
Arnd Bergmann02df55d2010-02-18 05:45:36 +000076 * Both the file and the macvlan_dev hold a reference on the macvtap_queue
77 * through sock_hold(&q->sk). When the macvlan_dev goes away first,
78 * q->vlan becomes inaccessible. When the files gets closed,
79 * macvtap_get_queue() fails.
Arnd Bergmann20d29d72010-01-30 12:24:26 +000080 *
Arnd Bergmann02df55d2010-02-18 05:45:36 +000081 * There may still be references to the struct sock inside of the
82 * queue from outbound SKBs, but these never reference back to the
83 * file or the dev. The data structure is freed through __sk_free
84 * when both our references and any pending SKBs are gone.
Arnd Bergmann20d29d72010-01-30 12:24:26 +000085 */
86static DEFINE_SPINLOCK(macvtap_lock);
87
Arnd Bergmann20d29d72010-01-30 12:24:26 +000088static int macvtap_set_queue(struct net_device *dev, struct file *file,
89 struct macvtap_queue *q)
90{
91 struct macvlan_dev *vlan = netdev_priv(dev);
92 int err = -EBUSY;
93
94 spin_lock(&macvtap_lock);
Krishna Kumar1565c7c2010-08-04 06:15:59 +000095 if (vlan->numvtaps == MAX_MACVTAP_QUEUES)
Arnd Bergmann20d29d72010-01-30 12:24:26 +000096 goto out;
97
98 err = 0;
Arnd Bergmann02df55d2010-02-18 05:45:36 +000099 rcu_assign_pointer(q->vlan, vlan);
Jason Wang376b1aa2013-06-05 23:54:38 +0000100 rcu_assign_pointer(vlan->taps[vlan->numvtaps], q);
Arnd Bergmann02df55d2010-02-18 05:45:36 +0000101 sock_hold(&q->sk);
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000102
103 q->file = file;
Jason Wang376b1aa2013-06-05 23:54:38 +0000104 q->queue_index = vlan->numvtaps;
Arnd Bergmann02df55d2010-02-18 05:45:36 +0000105 file->private_data = q;
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000106
Krishna Kumar1565c7c2010-08-04 06:15:59 +0000107 vlan->numvtaps++;
108
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000109out:
110 spin_unlock(&macvtap_lock);
111 return err;
112}
113
114/*
Arnd Bergmann02df55d2010-02-18 05:45:36 +0000115 * The file owning the queue got closed, give up both
116 * the reference that the files holds as well as the
117 * one from the macvlan_dev if that still exists.
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000118 *
119 * Using the spinlock makes sure that we don't get
120 * to the queue again after destroying it.
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000121 */
Arnd Bergmann02df55d2010-02-18 05:45:36 +0000122static void macvtap_put_queue(struct macvtap_queue *q)
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000123{
Jason Wang376b1aa2013-06-05 23:54:38 +0000124 struct macvtap_queue *nq;
Arnd Bergmann02df55d2010-02-18 05:45:36 +0000125 struct macvlan_dev *vlan;
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000126
127 spin_lock(&macvtap_lock);
Eric Dumazet13707f92011-01-26 19:28:23 +0000128 vlan = rcu_dereference_protected(q->vlan,
129 lockdep_is_held(&macvtap_lock));
Arnd Bergmann02df55d2010-02-18 05:45:36 +0000130 if (vlan) {
Jason Wang376b1aa2013-06-05 23:54:38 +0000131 int index = q->queue_index;
132 BUG_ON(index >= vlan->numvtaps);
Krishna Kumar1565c7c2010-08-04 06:15:59 +0000133
Jason Wang376b1aa2013-06-05 23:54:38 +0000134 nq = rcu_dereference_protected(vlan->taps[vlan->numvtaps - 1],
135 lockdep_is_held(&macvtap_lock));
136 rcu_assign_pointer(vlan->taps[index], nq);
137 nq->queue_index = index;
138
139 RCU_INIT_POINTER(vlan->taps[vlan->numvtaps - 1], NULL);
Eric Dumazet2cfa5a02011-11-23 07:09:32 +0000140 RCU_INIT_POINTER(q->vlan, NULL);
Arnd Bergmann02df55d2010-02-18 05:45:36 +0000141 sock_put(&q->sk);
Krishna Kumar1565c7c2010-08-04 06:15:59 +0000142 --vlan->numvtaps;
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000143 }
144
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000145 spin_unlock(&macvtap_lock);
146
147 synchronize_rcu();
148 sock_put(&q->sk);
149}
150
151/*
Krishna Kumar1565c7c2010-08-04 06:15:59 +0000152 * Select a queue based on the rxq of the device on which this packet
153 * arrived. If the incoming device is not mq, calculate a flow hash
154 * to select a queue. If all fails, find the first available queue.
155 * Cache vlan->numvtaps since it can become zero during the execution
156 * of this function.
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000157 */
158static struct macvtap_queue *macvtap_get_queue(struct net_device *dev,
159 struct sk_buff *skb)
160{
161 struct macvlan_dev *vlan = netdev_priv(dev);
Krishna Kumar1565c7c2010-08-04 06:15:59 +0000162 struct macvtap_queue *tap = NULL;
Jason Wanged0483f2013-06-05 23:54:33 +0000163 int numvtaps = ACCESS_ONCE(vlan->numvtaps);
Krishna Kumar1565c7c2010-08-04 06:15:59 +0000164 __u32 rxq;
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000165
Krishna Kumar1565c7c2010-08-04 06:15:59 +0000166 if (!numvtaps)
167 goto out;
168
Krishna Kumaref0002b2011-11-23 22:17:14 +0000169 /* Check if we can use flow to select a queue */
170 rxq = skb_get_rxhash(skb);
171 if (rxq) {
172 tap = rcu_dereference(vlan->taps[rxq % numvtaps]);
Jason Wang376b1aa2013-06-05 23:54:38 +0000173 goto out;
Krishna Kumaref0002b2011-11-23 22:17:14 +0000174 }
175
Krishna Kumar1565c7c2010-08-04 06:15:59 +0000176 if (likely(skb_rx_queue_recorded(skb))) {
177 rxq = skb_get_rx_queue(skb);
178
179 while (unlikely(rxq >= numvtaps))
180 rxq -= numvtaps;
181
182 tap = rcu_dereference(vlan->taps[rxq]);
Jason Wang376b1aa2013-06-05 23:54:38 +0000183 goto out;
Krishna Kumar1565c7c2010-08-04 06:15:59 +0000184 }
185
Jason Wang376b1aa2013-06-05 23:54:38 +0000186 tap = rcu_dereference(vlan->taps[0]);
Krishna Kumar1565c7c2010-08-04 06:15:59 +0000187out:
188 return tap;
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000189}
190
Arnd Bergmann02df55d2010-02-18 05:45:36 +0000191/*
192 * The net_device is going away, give up the reference
Krishna Kumar1565c7c2010-08-04 06:15:59 +0000193 * that it holds on all queues and safely set the pointer
194 * from the queues to NULL.
Arnd Bergmann02df55d2010-02-18 05:45:36 +0000195 */
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000196static void macvtap_del_queues(struct net_device *dev)
197{
198 struct macvlan_dev *vlan = netdev_priv(dev);
Krishna Kumar1565c7c2010-08-04 06:15:59 +0000199 struct macvtap_queue *q, *qlist[MAX_MACVTAP_QUEUES];
200 int i, j = 0;
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000201
Arnd Bergmann02df55d2010-02-18 05:45:36 +0000202 spin_lock(&macvtap_lock);
Jason Wang376b1aa2013-06-05 23:54:38 +0000203 for (i = 0; i < vlan->numvtaps; i++) {
Eric Dumazet13707f92011-01-26 19:28:23 +0000204 q = rcu_dereference_protected(vlan->taps[i],
205 lockdep_is_held(&macvtap_lock));
Jason Wang376b1aa2013-06-05 23:54:38 +0000206 BUG_ON(q == NULL);
207 qlist[j++] = q;
208 RCU_INIT_POINTER(vlan->taps[i], NULL);
209 RCU_INIT_POINTER(q->vlan, NULL);
Arnd Bergmann02df55d2010-02-18 05:45:36 +0000210 }
Eric W. Biederman99f34b32011-10-20 04:26:01 +0000211 /* guarantee that any future macvtap_set_queue will fail */
212 vlan->numvtaps = MAX_MACVTAP_QUEUES;
Arnd Bergmann02df55d2010-02-18 05:45:36 +0000213 spin_unlock(&macvtap_lock);
214
215 synchronize_rcu();
Krishna Kumar1565c7c2010-08-04 06:15:59 +0000216
217 for (--j; j >= 0; j--)
218 sock_put(&qlist[j]->sk);
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000219}
220
221/*
222 * Forward happens for data that gets sent from one macvlan
223 * endpoint to another one in bridge mode. We just take
224 * the skb and put it into the receive queue.
225 */
226static int macvtap_forward(struct net_device *dev, struct sk_buff *skb)
227{
228 struct macvtap_queue *q = macvtap_get_queue(dev, skb);
229 if (!q)
Herbert Xu8a357472010-07-21 21:44:31 +0000230 goto drop;
231
232 if (skb_queue_len(&q->sk.sk_receive_queue) >= dev->tx_queue_len)
233 goto drop;
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000234
235 skb_queue_tail(&q->sk.sk_receive_queue, skb);
Eric Dumazet4a4771a2010-04-25 22:20:06 +0000236 wake_up_interruptible_poll(sk_sleep(&q->sk), POLLIN | POLLRDNORM | POLLRDBAND);
Herbert Xu8a357472010-07-21 21:44:31 +0000237 return NET_RX_SUCCESS;
238
239drop:
240 kfree_skb(skb);
241 return NET_RX_DROP;
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000242}
243
244/*
245 * Receive is for data from the external interface (lowerdev),
246 * in case of macvtap, we can treat that the same way as
247 * forward, which macvlan cannot.
248 */
249static int macvtap_receive(struct sk_buff *skb)
250{
251 skb_push(skb, ETH_HLEN);
252 return macvtap_forward(skb->dev, skb);
253}
254
Eric W. Biedermane09eff72011-10-20 04:29:24 +0000255static int macvtap_get_minor(struct macvlan_dev *vlan)
256{
257 int retval = -ENOMEM;
Eric W. Biedermane09eff72011-10-20 04:29:24 +0000258
259 mutex_lock(&minor_lock);
Tejun Heoec09ebc2013-02-27 17:04:34 -0800260 retval = idr_alloc(&minor_idr, vlan, 1, MACVTAP_NUM_DEVS, GFP_KERNEL);
261 if (retval >= 0) {
262 vlan->minor = retval;
263 } else if (retval == -ENOSPC) {
Eric W. Biedermane09eff72011-10-20 04:29:24 +0000264 printk(KERN_ERR "too many macvtap devices\n");
265 retval = -EINVAL;
Eric W. Biedermane09eff72011-10-20 04:29:24 +0000266 }
Eric W. Biedermane09eff72011-10-20 04:29:24 +0000267 mutex_unlock(&minor_lock);
Tejun Heoec09ebc2013-02-27 17:04:34 -0800268 return retval < 0 ? retval : 0;
Eric W. Biedermane09eff72011-10-20 04:29:24 +0000269}
270
271static void macvtap_free_minor(struct macvlan_dev *vlan)
272{
273 mutex_lock(&minor_lock);
274 if (vlan->minor) {
275 idr_remove(&minor_idr, vlan->minor);
276 vlan->minor = 0;
277 }
278 mutex_unlock(&minor_lock);
279}
280
281static struct net_device *dev_get_by_macvtap_minor(int minor)
282{
283 struct net_device *dev = NULL;
284 struct macvlan_dev *vlan;
285
286 mutex_lock(&minor_lock);
287 vlan = idr_find(&minor_idr, minor);
288 if (vlan) {
289 dev = vlan->dev;
290 dev_hold(dev);
291 }
292 mutex_unlock(&minor_lock);
293 return dev;
294}
295
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000296static int macvtap_newlink(struct net *src_net,
297 struct net_device *dev,
298 struct nlattr *tb[],
299 struct nlattr *data[])
300{
Eric W. Biederman9bf19072011-10-20 04:28:46 +0000301 /* Don't put anything that may fail after macvlan_common_newlink
302 * because we can't undo what it does.
303 */
304 return macvlan_common_newlink(src_net, dev, tb, data,
305 macvtap_receive, macvtap_forward);
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000306}
307
308static void macvtap_dellink(struct net_device *dev,
309 struct list_head *head)
310{
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000311 macvtap_del_queues(dev);
312 macvlan_dellink(dev, head);
313}
314
Herbert Xu8a357472010-07-21 21:44:31 +0000315static void macvtap_setup(struct net_device *dev)
316{
317 macvlan_common_setup(dev);
318 dev->tx_queue_len = TUN_READQ_SIZE;
319}
320
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000321static struct rtnl_link_ops macvtap_link_ops __read_mostly = {
322 .kind = "macvtap",
Herbert Xu8a357472010-07-21 21:44:31 +0000323 .setup = macvtap_setup,
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000324 .newlink = macvtap_newlink,
325 .dellink = macvtap_dellink,
326};
327
328
329static void macvtap_sock_write_space(struct sock *sk)
330{
Eric Dumazet43815482010-04-29 11:01:49 +0000331 wait_queue_head_t *wqueue;
332
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000333 if (!sock_writeable(sk) ||
334 !test_and_clear_bit(SOCK_ASYNC_NOSPACE, &sk->sk_socket->flags))
335 return;
336
Eric Dumazet43815482010-04-29 11:01:49 +0000337 wqueue = sk_sleep(sk);
338 if (wqueue && waitqueue_active(wqueue))
339 wake_up_interruptible_poll(wqueue, POLLOUT | POLLWRNORM | POLLWRBAND);
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000340}
341
Eric W. Biederman2259fef2011-10-20 04:27:24 +0000342static void macvtap_sock_destruct(struct sock *sk)
343{
344 skb_queue_purge(&sk->sk_receive_queue);
345}
346
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000347static int macvtap_open(struct inode *inode, struct file *file)
348{
349 struct net *net = current->nsproxy->net_ns;
Eric W. Biedermane09eff72011-10-20 04:29:24 +0000350 struct net_device *dev = dev_get_by_macvtap_minor(iminor(inode));
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000351 struct macvtap_queue *q;
352 int err;
353
354 err = -ENODEV;
355 if (!dev)
356 goto out;
357
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000358 err = -ENOMEM;
359 q = (struct macvtap_queue *)sk_alloc(net, AF_UNSPEC, GFP_KERNEL,
360 &macvtap_proto);
361 if (!q)
362 goto out;
363
Eric Dumazet43815482010-04-29 11:01:49 +0000364 q->sock.wq = &q->wq;
365 init_waitqueue_head(&q->wq.wait);
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000366 q->sock.type = SOCK_RAW;
367 q->sock.state = SS_CONNECTED;
Arnd Bergmann501c7742010-02-18 05:46:50 +0000368 q->sock.file = file;
369 q->sock.ops = &macvtap_socket_ops;
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000370 sock_init_data(&q->sock, &q->sk);
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000371 q->sk.sk_write_space = macvtap_sock_write_space;
Eric W. Biederman2259fef2011-10-20 04:27:24 +0000372 q->sk.sk_destruct = macvtap_sock_destruct;
Arnd Bergmannb9fb9ee2010-02-18 05:48:17 +0000373 q->flags = IFF_VNET_HDR | IFF_NO_PI | IFF_TAP;
Michael S. Tsirkin55afbd02010-04-29 13:50:48 +0300374 q->vnet_hdr_sz = sizeof(struct virtio_net_hdr);
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000375
Shirley Ma97bc3632011-07-06 12:26:11 +0000376 /*
377 * so far only KVM virtio_net uses macvtap, enable zero copy between
378 * guest kernel and host kernel when lower device supports zerocopy
Eric W. Biederman047af9cf2011-10-20 04:26:39 +0000379 *
380 * The macvlan supports zerocopy iff the lower device supports zero
381 * copy so we don't have to look at the lower device directly.
Shirley Ma97bc3632011-07-06 12:26:11 +0000382 */
Eric W. Biederman047af9cf2011-10-20 04:26:39 +0000383 if ((dev->features & NETIF_F_HIGHDMA) && (dev->features & NETIF_F_SG))
384 sock_set_flag(&q->sk, SOCK_ZEROCOPY);
Shirley Ma97bc3632011-07-06 12:26:11 +0000385
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000386 err = macvtap_set_queue(dev, file, q);
387 if (err)
388 sock_put(&q->sk);
389
390out:
391 if (dev)
392 dev_put(dev);
393
394 return err;
395}
396
397static int macvtap_release(struct inode *inode, struct file *file)
398{
Arnd Bergmann02df55d2010-02-18 05:45:36 +0000399 struct macvtap_queue *q = file->private_data;
400 macvtap_put_queue(q);
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000401 return 0;
402}
403
404static unsigned int macvtap_poll(struct file *file, poll_table * wait)
405{
Arnd Bergmann02df55d2010-02-18 05:45:36 +0000406 struct macvtap_queue *q = file->private_data;
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000407 unsigned int mask = POLLERR;
408
409 if (!q)
410 goto out;
411
412 mask = 0;
Eric Dumazet43815482010-04-29 11:01:49 +0000413 poll_wait(file, &q->wq.wait, wait);
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000414
415 if (!skb_queue_empty(&q->sk.sk_receive_queue))
416 mask |= POLLIN | POLLRDNORM;
417
418 if (sock_writeable(&q->sk) ||
419 (!test_and_set_bit(SOCK_ASYNC_NOSPACE, &q->sock.flags) &&
420 sock_writeable(&q->sk)))
421 mask |= POLLOUT | POLLWRNORM;
422
423out:
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000424 return mask;
425}
426
Arnd Bergmannb9fb9ee2010-02-18 05:48:17 +0000427static inline struct sk_buff *macvtap_alloc_skb(struct sock *sk, size_t prepad,
428 size_t len, size_t linear,
429 int noblock, int *err)
430{
431 struct sk_buff *skb;
432
433 /* Under a page? Don't bother with paged skb. */
434 if (prepad + len < PAGE_SIZE || !linear)
435 linear = len;
436
437 skb = sock_alloc_send_pskb(sk, prepad + linear, len - linear, noblock,
438 err);
439 if (!skb)
440 return NULL;
441
442 skb_reserve(skb, prepad);
443 skb_put(skb, linear);
444 skb->data_len = len - linear;
445 skb->len += len - linear;
446
447 return skb;
448}
449
Shirley Ma97bc3632011-07-06 12:26:11 +0000450/* set skb frags from iovec, this can move to core network code for reuse */
451static int zerocopy_sg_from_iovec(struct sk_buff *skb, const struct iovec *from,
452 int offset, size_t count)
453{
454 int len = iov_length(from, count) - offset;
455 int copy = skb_headlen(skb);
456 int size, offset1 = 0;
457 int i = 0;
Shirley Ma97bc3632011-07-06 12:26:11 +0000458
459 /* Skip over from offset */
460 while (count && (offset >= from->iov_len)) {
461 offset -= from->iov_len;
462 ++from;
463 --count;
464 }
465
466 /* copy up to skb headlen */
467 while (count && (copy > 0)) {
468 size = min_t(unsigned int, copy, from->iov_len - offset);
469 if (copy_from_user(skb->data + offset1, from->iov_base + offset,
470 size))
471 return -EFAULT;
472 if (copy > size) {
473 ++from;
474 --count;
Jason Wang3afc9622012-05-02 11:41:30 +0800475 offset = 0;
476 } else
477 offset += size;
Shirley Ma97bc3632011-07-06 12:26:11 +0000478 copy -= size;
479 offset1 += size;
Shirley Ma97bc3632011-07-06 12:26:11 +0000480 }
481
482 if (len == offset1)
483 return 0;
484
485 while (count--) {
486 struct page *page[MAX_SKB_FRAGS];
487 int num_pages;
488 unsigned long base;
Jason Wang4ef67eb2012-05-02 11:41:44 +0800489 unsigned long truesize;
Shirley Ma97bc3632011-07-06 12:26:11 +0000490
Jason Wang3afc9622012-05-02 11:41:30 +0800491 len = from->iov_len - offset;
Shirley Ma97bc3632011-07-06 12:26:11 +0000492 if (!len) {
Jason Wang3afc9622012-05-02 11:41:30 +0800493 offset = 0;
Shirley Ma97bc3632011-07-06 12:26:11 +0000494 ++from;
495 continue;
496 }
Jason Wang3afc9622012-05-02 11:41:30 +0800497 base = (unsigned long)from->iov_base + offset;
Shirley Ma97bc3632011-07-06 12:26:11 +0000498 size = ((base & ~PAGE_MASK) + len + ~PAGE_MASK) >> PAGE_SHIFT;
Jason Wangb92946e2012-05-02 11:42:15 +0800499 if (i + size > MAX_SKB_FRAGS)
500 return -EMSGSIZE;
Shirley Ma97bc3632011-07-06 12:26:11 +0000501 num_pages = get_user_pages_fast(base, size, 0, &page[i]);
Jason Wangb92946e2012-05-02 11:42:15 +0800502 if (num_pages != size) {
Jason Wang02ce04b2012-05-02 11:41:58 +0800503 for (i = 0; i < num_pages; i++)
504 put_page(page[i]);
Shirley Ma97bc3632011-07-06 12:26:11 +0000505 return -EFAULT;
Jason Wang02ce04b2012-05-02 11:41:58 +0800506 }
Jason Wang4ef67eb2012-05-02 11:41:44 +0800507 truesize = size * PAGE_SIZE;
Shirley Ma97bc3632011-07-06 12:26:11 +0000508 skb->data_len += len;
509 skb->len += len;
Jason Wang4ef67eb2012-05-02 11:41:44 +0800510 skb->truesize += truesize;
511 atomic_add(truesize, &skb->sk->sk_wmem_alloc);
Shirley Ma97bc3632011-07-06 12:26:11 +0000512 while (len) {
Jason Wang653fc912011-09-18 23:48:31 +0000513 int off = base & ~PAGE_MASK;
514 int size = min_t(int, len, PAGE_SIZE - off);
515 __skb_fill_page_desc(skb, i, page[i], off, size);
Shirley Ma97bc3632011-07-06 12:26:11 +0000516 skb_shinfo(skb)->nr_frags++;
517 /* increase sk_wmem_alloc */
Jason Wang653fc912011-09-18 23:48:31 +0000518 base += size;
519 len -= size;
Shirley Ma97bc3632011-07-06 12:26:11 +0000520 i++;
521 }
Jason Wang3afc9622012-05-02 11:41:30 +0800522 offset = 0;
Shirley Ma97bc3632011-07-06 12:26:11 +0000523 ++from;
524 }
525 return 0;
526}
527
Arnd Bergmannb9fb9ee2010-02-18 05:48:17 +0000528/*
529 * macvtap_skb_from_vnet_hdr and macvtap_skb_to_vnet_hdr should
530 * be shared with the tun/tap driver.
531 */
532static int macvtap_skb_from_vnet_hdr(struct sk_buff *skb,
533 struct virtio_net_hdr *vnet_hdr)
534{
535 unsigned short gso_type = 0;
536 if (vnet_hdr->gso_type != VIRTIO_NET_HDR_GSO_NONE) {
537 switch (vnet_hdr->gso_type & ~VIRTIO_NET_HDR_GSO_ECN) {
538 case VIRTIO_NET_HDR_GSO_TCPV4:
539 gso_type = SKB_GSO_TCPV4;
540 break;
541 case VIRTIO_NET_HDR_GSO_TCPV6:
542 gso_type = SKB_GSO_TCPV6;
543 break;
544 case VIRTIO_NET_HDR_GSO_UDP:
545 gso_type = SKB_GSO_UDP;
546 break;
547 default:
548 return -EINVAL;
549 }
550
551 if (vnet_hdr->gso_type & VIRTIO_NET_HDR_GSO_ECN)
552 gso_type |= SKB_GSO_TCP_ECN;
553
554 if (vnet_hdr->gso_size == 0)
555 return -EINVAL;
556 }
557
558 if (vnet_hdr->flags & VIRTIO_NET_HDR_F_NEEDS_CSUM) {
559 if (!skb_partial_csum_set(skb, vnet_hdr->csum_start,
560 vnet_hdr->csum_offset))
561 return -EINVAL;
562 }
563
564 if (vnet_hdr->gso_type != VIRTIO_NET_HDR_GSO_NONE) {
565 skb_shinfo(skb)->gso_size = vnet_hdr->gso_size;
Pravin B Shelarc9af6db2013-02-11 09:27:41 +0000566 skb_shinfo(skb)->gso_type = gso_type;
Arnd Bergmannb9fb9ee2010-02-18 05:48:17 +0000567
568 /* Header must be checked, and gso_segs computed. */
569 skb_shinfo(skb)->gso_type |= SKB_GSO_DODGY;
570 skb_shinfo(skb)->gso_segs = 0;
571 }
572 return 0;
573}
574
575static int macvtap_skb_to_vnet_hdr(const struct sk_buff *skb,
576 struct virtio_net_hdr *vnet_hdr)
577{
578 memset(vnet_hdr, 0, sizeof(*vnet_hdr));
579
580 if (skb_is_gso(skb)) {
581 struct skb_shared_info *sinfo = skb_shinfo(skb);
582
583 /* This is a hint as to how much should be linear. */
584 vnet_hdr->hdr_len = skb_headlen(skb);
585 vnet_hdr->gso_size = sinfo->gso_size;
586 if (sinfo->gso_type & SKB_GSO_TCPV4)
587 vnet_hdr->gso_type = VIRTIO_NET_HDR_GSO_TCPV4;
588 else if (sinfo->gso_type & SKB_GSO_TCPV6)
589 vnet_hdr->gso_type = VIRTIO_NET_HDR_GSO_TCPV6;
590 else if (sinfo->gso_type & SKB_GSO_UDP)
591 vnet_hdr->gso_type = VIRTIO_NET_HDR_GSO_UDP;
592 else
593 BUG();
594 if (sinfo->gso_type & SKB_GSO_TCP_ECN)
595 vnet_hdr->gso_type |= VIRTIO_NET_HDR_GSO_ECN;
596 } else
597 vnet_hdr->gso_type = VIRTIO_NET_HDR_GSO_NONE;
598
599 if (skb->ip_summed == CHECKSUM_PARTIAL) {
600 vnet_hdr->flags = VIRTIO_NET_HDR_F_NEEDS_CSUM;
Michał Mirosław55508d62010-12-14 15:24:08 +0000601 vnet_hdr->csum_start = skb_checksum_start_offset(skb);
Arnd Bergmannb9fb9ee2010-02-18 05:48:17 +0000602 vnet_hdr->csum_offset = skb->csum_offset;
Jason Wang10a8d942011-06-10 00:56:17 +0000603 } else if (skb->ip_summed == CHECKSUM_UNNECESSARY) {
604 vnet_hdr->flags = VIRTIO_NET_HDR_F_DATA_VALID;
Arnd Bergmannb9fb9ee2010-02-18 05:48:17 +0000605 } /* else everything is zero */
606
607 return 0;
608}
609
610
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000611/* Get packet from user space buffer */
Shirley Ma97bc3632011-07-06 12:26:11 +0000612static ssize_t macvtap_get_user(struct macvtap_queue *q, struct msghdr *m,
613 const struct iovec *iv, unsigned long total_len,
614 size_t count, int noblock)
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000615{
616 struct sk_buff *skb;
Arnd Bergmann02df55d2010-02-18 05:45:36 +0000617 struct macvlan_dev *vlan;
Shirley Ma97bc3632011-07-06 12:26:11 +0000618 unsigned long len = total_len;
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000619 int err;
Arnd Bergmannb9fb9ee2010-02-18 05:48:17 +0000620 struct virtio_net_hdr vnet_hdr = { 0 };
621 int vnet_hdr_len = 0;
Jason Wangb92946e2012-05-02 11:42:15 +0800622 int copylen = 0;
Shirley Ma97bc3632011-07-06 12:26:11 +0000623 bool zerocopy = false;
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000624
Arnd Bergmannb9fb9ee2010-02-18 05:48:17 +0000625 if (q->flags & IFF_VNET_HDR) {
Michael S. Tsirkin55afbd02010-04-29 13:50:48 +0300626 vnet_hdr_len = q->vnet_hdr_sz;
Arnd Bergmannb9fb9ee2010-02-18 05:48:17 +0000627
628 err = -EINVAL;
Nicolas Kaiserce3c8692011-03-04 13:49:41 +0000629 if (len < vnet_hdr_len)
Arnd Bergmannb9fb9ee2010-02-18 05:48:17 +0000630 goto err;
Nicolas Kaiserce3c8692011-03-04 13:49:41 +0000631 len -= vnet_hdr_len;
Arnd Bergmannb9fb9ee2010-02-18 05:48:17 +0000632
633 err = memcpy_fromiovecend((void *)&vnet_hdr, iv, 0,
Michael S. Tsirkin55afbd02010-04-29 13:50:48 +0300634 sizeof(vnet_hdr));
Arnd Bergmannb9fb9ee2010-02-18 05:48:17 +0000635 if (err < 0)
636 goto err;
637 if ((vnet_hdr.flags & VIRTIO_NET_HDR_F_NEEDS_CSUM) &&
638 vnet_hdr.csum_start + vnet_hdr.csum_offset + 2 >
639 vnet_hdr.hdr_len)
640 vnet_hdr.hdr_len = vnet_hdr.csum_start +
641 vnet_hdr.csum_offset + 2;
642 err = -EINVAL;
643 if (vnet_hdr.hdr_len > len)
644 goto err;
645 }
646
647 err = -EINVAL;
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000648 if (unlikely(len < ETH_HLEN))
Arnd Bergmannb9fb9ee2010-02-18 05:48:17 +0000649 goto err;
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000650
Jason Wangb92946e2012-05-02 11:42:15 +0800651 err = -EMSGSIZE;
652 if (unlikely(count > UIO_MAXIOV))
653 goto err;
654
Shirley Ma97bc3632011-07-06 12:26:11 +0000655 if (m && m->msg_control && sock_flag(&q->sk, SOCK_ZEROCOPY))
656 zerocopy = true;
657
658 if (zerocopy) {
Jason Wangb92946e2012-05-02 11:42:15 +0800659 /* Userspace may produce vectors with count greater than
660 * MAX_SKB_FRAGS, so we need to linearize parts of the skb
661 * to let the rest of data to be fit in the frags.
662 */
663 if (count > MAX_SKB_FRAGS) {
664 copylen = iov_length(iv, count - MAX_SKB_FRAGS);
665 if (copylen < vnet_hdr_len)
666 copylen = 0;
667 else
668 copylen -= vnet_hdr_len;
669 }
Shirley Ma97bc3632011-07-06 12:26:11 +0000670 /* There are 256 bytes to be copied in skb, so there is enough
671 * room for skb expand head in case it is used.
672 * The rest buffer is mapped from userspace.
673 */
Jason Wangb92946e2012-05-02 11:42:15 +0800674 if (copylen < vnet_hdr.hdr_len)
675 copylen = vnet_hdr.hdr_len;
Shirley Ma97bc3632011-07-06 12:26:11 +0000676 if (!copylen)
677 copylen = GOODCOPY_LEN;
678 } else
679 copylen = len;
680
681 skb = macvtap_alloc_skb(&q->sk, NET_IP_ALIGN, copylen,
682 vnet_hdr.hdr_len, noblock, &err);
Arnd Bergmann02df55d2010-02-18 05:45:36 +0000683 if (!skb)
684 goto err;
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000685
Jason Wang01d66572012-05-02 11:42:06 +0800686 if (zerocopy)
Shirley Ma97bc3632011-07-06 12:26:11 +0000687 err = zerocopy_sg_from_iovec(skb, iv, vnet_hdr_len, count);
Jason Wang01d66572012-05-02 11:42:06 +0800688 else
Shirley Ma97bc3632011-07-06 12:26:11 +0000689 err = skb_copy_datagram_from_iovec(skb, 0, iv, vnet_hdr_len,
690 len);
Arnd Bergmann02df55d2010-02-18 05:45:36 +0000691 if (err)
Arnd Bergmannb9fb9ee2010-02-18 05:48:17 +0000692 goto err_kfree;
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000693
694 skb_set_network_header(skb, ETH_HLEN);
Arnd Bergmannb9fb9ee2010-02-18 05:48:17 +0000695 skb_reset_mac_header(skb);
696 skb->protocol = eth_hdr(skb)->h_proto;
697
698 if (vnet_hdr_len) {
699 err = macvtap_skb_from_vnet_hdr(skb, &vnet_hdr);
700 if (err)
701 goto err_kfree;
702 }
703
Jason Wang40893fd2013-03-26 23:11:22 +0000704 skb_probe_transport_header(skb, ETH_HLEN);
Jason Wang9b4d6692013-03-25 20:19:55 +0000705
Arnd Bergmann02df55d2010-02-18 05:45:36 +0000706 rcu_read_lock_bh();
Eric Dumazet13707f92011-01-26 19:28:23 +0000707 vlan = rcu_dereference_bh(q->vlan);
Shirley Ma97bc3632011-07-06 12:26:11 +0000708 /* copy skb_ubuf_info for callback when skb has no error */
Jason Wang01d66572012-05-02 11:42:06 +0800709 if (zerocopy) {
Shirley Ma97bc3632011-07-06 12:26:11 +0000710 skb_shinfo(skb)->destructor_arg = m->msg_control;
Jason Wang01d66572012-05-02 11:42:06 +0800711 skb_shinfo(skb)->tx_flags |= SKBTX_DEV_ZEROCOPY;
Pravin B Shelarc9af6db2013-02-11 09:27:41 +0000712 skb_shinfo(skb)->tx_flags |= SKBTX_SHARED_FRAG;
Jason Wang01d66572012-05-02 11:42:06 +0800713 }
Arnd Bergmann02df55d2010-02-18 05:45:36 +0000714 if (vlan)
715 macvlan_start_xmit(skb, vlan->dev);
716 else
717 kfree_skb(skb);
718 rcu_read_unlock_bh();
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000719
Shirley Ma97bc3632011-07-06 12:26:11 +0000720 return total_len;
Arnd Bergmann02df55d2010-02-18 05:45:36 +0000721
Arnd Bergmannb9fb9ee2010-02-18 05:48:17 +0000722err_kfree:
723 kfree_skb(skb);
724
Arnd Bergmann02df55d2010-02-18 05:45:36 +0000725err:
726 rcu_read_lock_bh();
Eric Dumazet13707f92011-01-26 19:28:23 +0000727 vlan = rcu_dereference_bh(q->vlan);
Arnd Bergmann02df55d2010-02-18 05:45:36 +0000728 if (vlan)
Eric Dumazet1ac9ad12011-01-12 12:13:14 +0000729 vlan->dev->stats.tx_dropped++;
Arnd Bergmann02df55d2010-02-18 05:45:36 +0000730 rcu_read_unlock_bh();
731
Arnd Bergmann02df55d2010-02-18 05:45:36 +0000732 return err;
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000733}
734
735static ssize_t macvtap_aio_write(struct kiocb *iocb, const struct iovec *iv,
736 unsigned long count, loff_t pos)
737{
738 struct file *file = iocb->ki_filp;
739 ssize_t result = -ENOLINK;
Arnd Bergmann02df55d2010-02-18 05:45:36 +0000740 struct macvtap_queue *q = file->private_data;
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000741
Shirley Ma97bc3632011-07-06 12:26:11 +0000742 result = macvtap_get_user(q, NULL, iv, iov_length(iv, count), count,
743 file->f_flags & O_NONBLOCK);
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000744 return result;
745}
746
747/* Put packet to the user space buffer */
748static ssize_t macvtap_put_user(struct macvtap_queue *q,
749 const struct sk_buff *skb,
750 const struct iovec *iv, int len)
751{
Arnd Bergmann02df55d2010-02-18 05:45:36 +0000752 struct macvlan_dev *vlan;
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000753 int ret;
Arnd Bergmannb9fb9ee2010-02-18 05:48:17 +0000754 int vnet_hdr_len = 0;
Basil Gorf09e2242012-05-03 22:55:24 +0000755 int vlan_offset = 0;
756 int copied;
Arnd Bergmannb9fb9ee2010-02-18 05:48:17 +0000757
758 if (q->flags & IFF_VNET_HDR) {
759 struct virtio_net_hdr vnet_hdr;
Michael S. Tsirkin55afbd02010-04-29 13:50:48 +0300760 vnet_hdr_len = q->vnet_hdr_sz;
Arnd Bergmannb9fb9ee2010-02-18 05:48:17 +0000761 if ((len -= vnet_hdr_len) < 0)
762 return -EINVAL;
763
764 ret = macvtap_skb_to_vnet_hdr(skb, &vnet_hdr);
765 if (ret)
766 return ret;
767
Michael S. Tsirkin55afbd02010-04-29 13:50:48 +0300768 if (memcpy_toiovecend(iv, (void *)&vnet_hdr, 0, sizeof(vnet_hdr)))
Arnd Bergmannb9fb9ee2010-02-18 05:48:17 +0000769 return -EFAULT;
770 }
Basil Gorf09e2242012-05-03 22:55:24 +0000771 copied = vnet_hdr_len;
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000772
Basil Gorf09e2242012-05-03 22:55:24 +0000773 if (!vlan_tx_tag_present(skb))
774 len = min_t(int, skb->len, len);
775 else {
776 int copy;
777 struct {
778 __be16 h_vlan_proto;
779 __be16 h_vlan_TCI;
780 } veth;
781 veth.h_vlan_proto = htons(ETH_P_8021Q);
782 veth.h_vlan_TCI = htons(vlan_tx_tag_get(skb));
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000783
Basil Gorf09e2242012-05-03 22:55:24 +0000784 vlan_offset = offsetof(struct vlan_ethhdr, h_vlan_proto);
785 len = min_t(int, skb->len + VLAN_HLEN, len);
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000786
Basil Gorf09e2242012-05-03 22:55:24 +0000787 copy = min_t(int, vlan_offset, len);
788 ret = skb_copy_datagram_const_iovec(skb, 0, iv, copied, copy);
789 len -= copy;
790 copied += copy;
791 if (ret || !len)
792 goto done;
793
794 copy = min_t(int, sizeof(veth), len);
795 ret = memcpy_toiovecend(iv, (void *)&veth, copied, copy);
796 len -= copy;
797 copied += copy;
798 if (ret || !len)
799 goto done;
800 }
801
802 ret = skb_copy_datagram_const_iovec(skb, vlan_offset, iv, copied, len);
803 copied += len;
804
805done:
Arnd Bergmann02df55d2010-02-18 05:45:36 +0000806 rcu_read_lock_bh();
Eric Dumazet13707f92011-01-26 19:28:23 +0000807 vlan = rcu_dereference_bh(q->vlan);
Arnd Bergmann501c7742010-02-18 05:46:50 +0000808 if (vlan)
Basil Gorf09e2242012-05-03 22:55:24 +0000809 macvlan_count_rx(vlan, copied - vnet_hdr_len, ret == 0, 0);
Arnd Bergmann02df55d2010-02-18 05:45:36 +0000810 rcu_read_unlock_bh();
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000811
Basil Gorf09e2242012-05-03 22:55:24 +0000812 return ret ? ret : copied;
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000813}
814
Arnd Bergmann501c7742010-02-18 05:46:50 +0000815static ssize_t macvtap_do_read(struct macvtap_queue *q, struct kiocb *iocb,
816 const struct iovec *iv, unsigned long len,
817 int noblock)
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000818{
Hong zhi guoccf7e722012-06-06 22:36:27 +0000819 DEFINE_WAIT(wait);
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000820 struct sk_buff *skb;
Arnd Bergmann501c7742010-02-18 05:46:50 +0000821 ssize_t ret = 0;
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000822
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000823 while (len) {
Jason Wang89cee912013-06-05 23:54:34 +0000824 if (!noblock)
825 prepare_to_wait(sk_sleep(&q->sk), &wait,
826 TASK_INTERRUPTIBLE);
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000827
828 /* Read frames from the queue */
829 skb = skb_dequeue(&q->sk.sk_receive_queue);
830 if (!skb) {
Arnd Bergmann501c7742010-02-18 05:46:50 +0000831 if (noblock) {
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000832 ret = -EAGAIN;
833 break;
834 }
835 if (signal_pending(current)) {
836 ret = -ERESTARTSYS;
837 break;
838 }
839 /* Nothing to read, let's sleep */
840 schedule();
841 continue;
842 }
843 ret = macvtap_put_user(q, skb, iv, len);
844 kfree_skb(skb);
845 break;
846 }
847
Jason Wang89cee912013-06-05 23:54:34 +0000848 if (!noblock)
849 finish_wait(sk_sleep(&q->sk), &wait);
Arnd Bergmann501c7742010-02-18 05:46:50 +0000850 return ret;
851}
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000852
Arnd Bergmann501c7742010-02-18 05:46:50 +0000853static ssize_t macvtap_aio_read(struct kiocb *iocb, const struct iovec *iv,
854 unsigned long count, loff_t pos)
855{
856 struct file *file = iocb->ki_filp;
857 struct macvtap_queue *q = file->private_data;
858 ssize_t len, ret = 0;
859
860 len = iov_length(iv, count);
861 if (len < 0) {
862 ret = -EINVAL;
863 goto out;
864 }
865
866 ret = macvtap_do_read(q, iocb, iv, len, file->f_flags & O_NONBLOCK);
867 ret = min_t(ssize_t, ret, len); /* XXX copied from tun.c. Why? */
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000868out:
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000869 return ret;
870}
871
Jason Wang8f475a32013-06-05 23:54:36 +0000872static struct macvlan_dev *macvtap_get_vlan(struct macvtap_queue *q)
873{
874 struct macvlan_dev *vlan;
875
876 rcu_read_lock_bh();
877 vlan = rcu_dereference_bh(q->vlan);
878 if (vlan)
879 dev_hold(vlan->dev);
880 rcu_read_unlock_bh();
881
882 return vlan;
883}
884
885static void macvtap_put_vlan(struct macvlan_dev *vlan)
886{
887 dev_put(vlan->dev);
888}
889
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000890/*
891 * provide compatibility with generic tun/tap interface
892 */
893static long macvtap_ioctl(struct file *file, unsigned int cmd,
894 unsigned long arg)
895{
Arnd Bergmann02df55d2010-02-18 05:45:36 +0000896 struct macvtap_queue *q = file->private_data;
897 struct macvlan_dev *vlan;
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000898 void __user *argp = (void __user *)arg;
899 struct ifreq __user *ifr = argp;
900 unsigned int __user *up = argp;
901 unsigned int u;
Michael S. Tsirkin55afbd02010-04-29 13:50:48 +0300902 int __user *sp = argp;
903 int s;
Arnd Bergmann02df55d2010-02-18 05:45:36 +0000904 int ret;
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000905
906 switch (cmd) {
907 case TUNSETIFF:
908 /* ignore the name, just look at flags */
909 if (get_user(u, &ifr->ifr_flags))
910 return -EFAULT;
Arnd Bergmannb9fb9ee2010-02-18 05:48:17 +0000911
912 ret = 0;
913 if ((u & ~IFF_VNET_HDR) != (IFF_NO_PI | IFF_TAP))
914 ret = -EINVAL;
915 else
916 q->flags = u;
917
918 return ret;
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000919
920 case TUNGETIFF:
Jason Wang8f475a32013-06-05 23:54:36 +0000921 vlan = macvtap_get_vlan(q);
Arnd Bergmann02df55d2010-02-18 05:45:36 +0000922 if (!vlan)
923 return -ENOLINK;
924
925 ret = 0;
Eric Dumazet13707f92011-01-26 19:28:23 +0000926 if (copy_to_user(&ifr->ifr_name, vlan->dev->name, IFNAMSIZ) ||
Arnd Bergmannb9fb9ee2010-02-18 05:48:17 +0000927 put_user(q->flags, &ifr->ifr_flags))
Arnd Bergmann02df55d2010-02-18 05:45:36 +0000928 ret = -EFAULT;
Jason Wang8f475a32013-06-05 23:54:36 +0000929 macvtap_put_vlan(vlan);
Arnd Bergmann02df55d2010-02-18 05:45:36 +0000930 return ret;
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000931
932 case TUNGETFEATURES:
Arnd Bergmannb9fb9ee2010-02-18 05:48:17 +0000933 if (put_user(IFF_TAP | IFF_NO_PI | IFF_VNET_HDR, up))
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000934 return -EFAULT;
935 return 0;
936
937 case TUNSETSNDBUF:
938 if (get_user(u, up))
939 return -EFAULT;
940
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000941 q->sk.sk_sndbuf = u;
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000942 return 0;
943
Michael S. Tsirkin55afbd02010-04-29 13:50:48 +0300944 case TUNGETVNETHDRSZ:
945 s = q->vnet_hdr_sz;
946 if (put_user(s, sp))
947 return -EFAULT;
948 return 0;
949
950 case TUNSETVNETHDRSZ:
951 if (get_user(s, sp))
952 return -EFAULT;
953 if (s < (int)sizeof(struct virtio_net_hdr))
954 return -EINVAL;
955
956 q->vnet_hdr_sz = s;
957 return 0;
958
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000959 case TUNSETOFFLOAD:
960 /* let the user check for future flags */
961 if (arg & ~(TUN_F_CSUM | TUN_F_TSO4 | TUN_F_TSO6 |
Arnd Bergmannb9fb9ee2010-02-18 05:48:17 +0000962 TUN_F_TSO_ECN | TUN_F_UFO))
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000963 return -EINVAL;
964
Arnd Bergmannb9fb9ee2010-02-18 05:48:17 +0000965 /* TODO: only accept frames with the features that
966 got enabled for forwarded frames */
967 if (!(q->flags & IFF_VNET_HDR))
968 return -EINVAL;
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000969 return 0;
970
971 default:
972 return -EINVAL;
973 }
974}
975
976#ifdef CONFIG_COMPAT
977static long macvtap_compat_ioctl(struct file *file, unsigned int cmd,
978 unsigned long arg)
979{
980 return macvtap_ioctl(file, cmd, (unsigned long)compat_ptr(arg));
981}
982#endif
983
984static const struct file_operations macvtap_fops = {
985 .owner = THIS_MODULE,
986 .open = macvtap_open,
987 .release = macvtap_release,
988 .aio_read = macvtap_aio_read,
989 .aio_write = macvtap_aio_write,
990 .poll = macvtap_poll,
991 .llseek = no_llseek,
992 .unlocked_ioctl = macvtap_ioctl,
993#ifdef CONFIG_COMPAT
994 .compat_ioctl = macvtap_compat_ioctl,
995#endif
996};
997
Arnd Bergmann501c7742010-02-18 05:46:50 +0000998static int macvtap_sendmsg(struct kiocb *iocb, struct socket *sock,
999 struct msghdr *m, size_t total_len)
1000{
1001 struct macvtap_queue *q = container_of(sock, struct macvtap_queue, sock);
Shirley Ma97bc3632011-07-06 12:26:11 +00001002 return macvtap_get_user(q, m, m->msg_iov, total_len, m->msg_iovlen,
Arnd Bergmann501c7742010-02-18 05:46:50 +00001003 m->msg_flags & MSG_DONTWAIT);
1004}
1005
1006static int macvtap_recvmsg(struct kiocb *iocb, struct socket *sock,
1007 struct msghdr *m, size_t total_len,
1008 int flags)
1009{
1010 struct macvtap_queue *q = container_of(sock, struct macvtap_queue, sock);
1011 int ret;
1012 if (flags & ~(MSG_DONTWAIT|MSG_TRUNC))
1013 return -EINVAL;
1014 ret = macvtap_do_read(q, iocb, m->msg_iov, total_len,
1015 flags & MSG_DONTWAIT);
1016 if (ret > total_len) {
1017 m->msg_flags |= MSG_TRUNC;
1018 ret = flags & MSG_TRUNC ? ret : total_len;
1019 }
1020 return ret;
1021}
1022
1023/* Ops structure to mimic raw sockets with tun */
1024static const struct proto_ops macvtap_socket_ops = {
1025 .sendmsg = macvtap_sendmsg,
1026 .recvmsg = macvtap_recvmsg,
1027};
1028
1029/* Get an underlying socket object from tun file. Returns error unless file is
1030 * attached to a device. The returned object works like a packet socket, it
1031 * can be used for sock_sendmsg/sock_recvmsg. The caller is responsible for
1032 * holding a reference to the file for as long as the socket is in use. */
1033struct socket *macvtap_get_socket(struct file *file)
1034{
1035 struct macvtap_queue *q;
1036 if (file->f_op != &macvtap_fops)
1037 return ERR_PTR(-EINVAL);
1038 q = file->private_data;
1039 if (!q)
1040 return ERR_PTR(-EBADFD);
1041 return &q->sock;
1042}
1043EXPORT_SYMBOL_GPL(macvtap_get_socket);
1044
Eric W. Biederman9bf19072011-10-20 04:28:46 +00001045static int macvtap_device_event(struct notifier_block *unused,
1046 unsigned long event, void *ptr)
1047{
Jiri Pirko351638e2013-05-28 01:30:21 +00001048 struct net_device *dev = netdev_notifier_info_to_dev(ptr);
Eric W. Biedermane09eff72011-10-20 04:29:24 +00001049 struct macvlan_dev *vlan;
Eric W. Biederman9bf19072011-10-20 04:28:46 +00001050 struct device *classdev;
1051 dev_t devt;
Eric W. Biedermane09eff72011-10-20 04:29:24 +00001052 int err;
Eric W. Biederman9bf19072011-10-20 04:28:46 +00001053
1054 if (dev->rtnl_link_ops != &macvtap_link_ops)
1055 return NOTIFY_DONE;
1056
Eric W. Biedermane09eff72011-10-20 04:29:24 +00001057 vlan = netdev_priv(dev);
Eric W. Biederman9bf19072011-10-20 04:28:46 +00001058
1059 switch (event) {
1060 case NETDEV_REGISTER:
1061 /* Create the device node here after the network device has
1062 * been registered but before register_netdevice has
1063 * finished running.
1064 */
Eric W. Biedermane09eff72011-10-20 04:29:24 +00001065 err = macvtap_get_minor(vlan);
1066 if (err)
1067 return notifier_from_errno(err);
1068
1069 devt = MKDEV(MAJOR(macvtap_major), vlan->minor);
Eric W. Biederman9bf19072011-10-20 04:28:46 +00001070 classdev = device_create(macvtap_class, &dev->dev, devt,
1071 dev, "tap%d", dev->ifindex);
Eric W. Biedermane09eff72011-10-20 04:29:24 +00001072 if (IS_ERR(classdev)) {
1073 macvtap_free_minor(vlan);
Eric W. Biederman9bf19072011-10-20 04:28:46 +00001074 return notifier_from_errno(PTR_ERR(classdev));
Eric W. Biedermane09eff72011-10-20 04:29:24 +00001075 }
Eric W. Biederman9bf19072011-10-20 04:28:46 +00001076 break;
1077 case NETDEV_UNREGISTER:
Eric W. Biedermane09eff72011-10-20 04:29:24 +00001078 devt = MKDEV(MAJOR(macvtap_major), vlan->minor);
Eric W. Biederman9bf19072011-10-20 04:28:46 +00001079 device_destroy(macvtap_class, devt);
Eric W. Biedermane09eff72011-10-20 04:29:24 +00001080 macvtap_free_minor(vlan);
Eric W. Biederman9bf19072011-10-20 04:28:46 +00001081 break;
1082 }
1083
1084 return NOTIFY_DONE;
1085}
1086
1087static struct notifier_block macvtap_notifier_block __read_mostly = {
1088 .notifier_call = macvtap_device_event,
1089};
1090
Arnd Bergmann20d29d72010-01-30 12:24:26 +00001091static int macvtap_init(void)
1092{
1093 int err;
1094
1095 err = alloc_chrdev_region(&macvtap_major, 0,
1096 MACVTAP_NUM_DEVS, "macvtap");
1097 if (err)
1098 goto out1;
1099
1100 cdev_init(&macvtap_cdev, &macvtap_fops);
1101 err = cdev_add(&macvtap_cdev, macvtap_major, MACVTAP_NUM_DEVS);
1102 if (err)
1103 goto out2;
1104
1105 macvtap_class = class_create(THIS_MODULE, "macvtap");
1106 if (IS_ERR(macvtap_class)) {
1107 err = PTR_ERR(macvtap_class);
1108 goto out3;
1109 }
1110
Eric W. Biederman9bf19072011-10-20 04:28:46 +00001111 err = register_netdevice_notifier(&macvtap_notifier_block);
Arnd Bergmann20d29d72010-01-30 12:24:26 +00001112 if (err)
1113 goto out4;
1114
Eric W. Biederman9bf19072011-10-20 04:28:46 +00001115 err = macvlan_link_register(&macvtap_link_ops);
1116 if (err)
1117 goto out5;
1118
Arnd Bergmann20d29d72010-01-30 12:24:26 +00001119 return 0;
1120
Eric W. Biederman9bf19072011-10-20 04:28:46 +00001121out5:
1122 unregister_netdevice_notifier(&macvtap_notifier_block);
Arnd Bergmann20d29d72010-01-30 12:24:26 +00001123out4:
1124 class_unregister(macvtap_class);
1125out3:
1126 cdev_del(&macvtap_cdev);
1127out2:
1128 unregister_chrdev_region(macvtap_major, MACVTAP_NUM_DEVS);
1129out1:
1130 return err;
1131}
1132module_init(macvtap_init);
1133
1134static void macvtap_exit(void)
1135{
1136 rtnl_link_unregister(&macvtap_link_ops);
Eric W. Biederman9bf19072011-10-20 04:28:46 +00001137 unregister_netdevice_notifier(&macvtap_notifier_block);
Arnd Bergmann20d29d72010-01-30 12:24:26 +00001138 class_unregister(macvtap_class);
1139 cdev_del(&macvtap_cdev);
1140 unregister_chrdev_region(macvtap_major, MACVTAP_NUM_DEVS);
1141}
1142module_exit(macvtap_exit);
1143
1144MODULE_ALIAS_RTNL_LINK("macvtap");
1145MODULE_AUTHOR("Arnd Bergmann <arnd@arndb.de>");
1146MODULE_LICENSE("GPL");