module: Simplify module_load()
[qemu.git] / hw / net / vhost_net.c
blobf87c79824b339371edb5e711448adcf0349109ea
1 /*
2 * vhost-net support
4 * Copyright Red Hat, Inc. 2010
6 * Authors:
7 * Michael S. Tsirkin <mst@redhat.com>
9 * This work is licensed under the terms of the GNU GPL, version 2. See
10 * the COPYING file in the top-level directory.
12 * Contributions after 2012-01-13 are licensed under the terms of the
13 * GNU GPL, version 2 or (at your option) any later version.
16 #include "net/net.h"
17 #include "net/tap.h"
18 #include "net/vhost-user.h"
20 #include "hw/virtio/virtio-net.h"
21 #include "net/vhost_net.h"
22 #include "qemu/error-report.h"
24 #include "config.h"
26 #ifdef CONFIG_VHOST_NET
27 #include <linux/vhost.h>
28 #include <sys/socket.h>
29 #include <linux/kvm.h>
30 #include <fcntl.h>
31 #include <linux/virtio_ring.h>
32 #include <netpacket/packet.h>
33 #include <net/ethernet.h>
34 #include <net/if.h>
35 #include <netinet/in.h>
37 #include <stdio.h>
39 #include "hw/virtio/vhost.h"
40 #include "hw/virtio/virtio-bus.h"
42 struct vhost_net {
43 struct vhost_dev dev;
44 struct vhost_virtqueue vqs[2];
45 int backend;
46 NetClientState *nc;
49 /* Features supported by host kernel. */
50 static const int kernel_feature_bits[] = {
51 VIRTIO_F_NOTIFY_ON_EMPTY,
52 VIRTIO_RING_F_INDIRECT_DESC,
53 VIRTIO_RING_F_EVENT_IDX,
54 VIRTIO_NET_F_MRG_RXBUF,
55 VHOST_INVALID_FEATURE_BIT
58 /* Features supported by others. */
59 const int user_feature_bits[] = {
60 VIRTIO_F_NOTIFY_ON_EMPTY,
61 VIRTIO_RING_F_INDIRECT_DESC,
62 VIRTIO_RING_F_EVENT_IDX,
64 VIRTIO_F_ANY_LAYOUT,
65 VIRTIO_NET_F_CSUM,
66 VIRTIO_NET_F_GUEST_CSUM,
67 VIRTIO_NET_F_GSO,
68 VIRTIO_NET_F_GUEST_TSO4,
69 VIRTIO_NET_F_GUEST_TSO6,
70 VIRTIO_NET_F_GUEST_ECN,
71 VIRTIO_NET_F_GUEST_UFO,
72 VIRTIO_NET_F_HOST_TSO4,
73 VIRTIO_NET_F_HOST_TSO6,
74 VIRTIO_NET_F_HOST_ECN,
75 VIRTIO_NET_F_HOST_UFO,
76 VIRTIO_NET_F_MRG_RXBUF,
77 VIRTIO_NET_F_STATUS,
78 VIRTIO_NET_F_CTRL_VQ,
79 VIRTIO_NET_F_CTRL_RX,
80 VIRTIO_NET_F_CTRL_VLAN,
81 VIRTIO_NET_F_CTRL_RX_EXTRA,
82 VIRTIO_NET_F_CTRL_MAC_ADDR,
83 VIRTIO_NET_F_CTRL_GUEST_OFFLOADS,
85 VIRTIO_NET_F_MQ,
87 VHOST_INVALID_FEATURE_BIT
90 static const int *vhost_net_get_feature_bits(struct vhost_net *net)
92 const int *feature_bits = 0;
94 switch (net->nc->info->type) {
95 case NET_CLIENT_OPTIONS_KIND_TAP:
96 feature_bits = kernel_feature_bits;
97 break;
98 case NET_CLIENT_OPTIONS_KIND_VHOST_USER:
99 feature_bits = user_feature_bits;
100 break;
101 default:
102 error_report("Feature bits not defined for this type: %d",
103 net->nc->info->type);
104 break;
107 return feature_bits;
110 unsigned vhost_net_get_features(struct vhost_net *net, unsigned features)
112 return vhost_get_features(&net->dev, vhost_net_get_feature_bits(net),
113 features);
116 void vhost_net_ack_features(struct vhost_net *net, unsigned features)
118 vhost_ack_features(&net->dev, vhost_net_get_feature_bits(net), features);
121 static int vhost_net_get_fd(NetClientState *backend)
123 switch (backend->info->type) {
124 case NET_CLIENT_OPTIONS_KIND_TAP:
125 return tap_get_fd(backend);
126 default:
127 fprintf(stderr, "vhost-net requires tap backend\n");
128 return -EBADFD;
132 struct vhost_net *vhost_net_init(VhostNetOptions *options)
134 int r;
135 bool backend_kernel = options->backend_type == VHOST_BACKEND_TYPE_KERNEL;
136 struct vhost_net *net = g_malloc(sizeof *net);
138 if (!options->net_backend) {
139 fprintf(stderr, "vhost-net requires net backend to be setup\n");
140 goto fail;
143 if (backend_kernel) {
144 r = vhost_net_get_fd(options->net_backend);
145 if (r < 0) {
146 goto fail;
148 net->dev.backend_features = qemu_has_vnet_hdr(options->net_backend)
149 ? 0 : (1 << VHOST_NET_F_VIRTIO_NET_HDR);
150 net->backend = r;
151 } else {
152 net->dev.backend_features = 0;
153 net->backend = -1;
155 net->nc = options->net_backend;
157 net->dev.nvqs = 2;
158 net->dev.vqs = net->vqs;
160 r = vhost_dev_init(&net->dev, options->opaque,
161 options->backend_type, options->force);
162 if (r < 0) {
163 goto fail;
165 if (!qemu_has_vnet_hdr_len(options->net_backend,
166 sizeof(struct virtio_net_hdr_mrg_rxbuf))) {
167 net->dev.features &= ~(1 << VIRTIO_NET_F_MRG_RXBUF);
169 if (backend_kernel) {
170 if (~net->dev.features & net->dev.backend_features) {
171 fprintf(stderr, "vhost lacks feature mask %" PRIu64
172 " for backend\n",
173 (uint64_t)(~net->dev.features & net->dev.backend_features));
174 vhost_dev_cleanup(&net->dev);
175 goto fail;
178 /* Set sane init value. Override when guest acks. */
179 vhost_net_ack_features(net, 0);
180 return net;
181 fail:
182 g_free(net);
183 return NULL;
186 bool vhost_net_query(VHostNetState *net, VirtIODevice *dev)
188 return vhost_dev_query(&net->dev, dev);
191 static int vhost_net_start_one(struct vhost_net *net,
192 VirtIODevice *dev,
193 int vq_index)
195 struct vhost_vring_file file = { };
196 int r;
198 if (net->dev.started) {
199 return 0;
202 net->dev.nvqs = 2;
203 net->dev.vqs = net->vqs;
204 net->dev.vq_index = vq_index;
206 r = vhost_dev_enable_notifiers(&net->dev, dev);
207 if (r < 0) {
208 goto fail_notifiers;
211 r = vhost_dev_start(&net->dev, dev);
212 if (r < 0) {
213 goto fail_start;
216 if (net->nc->info->poll) {
217 net->nc->info->poll(net->nc, false);
220 if (net->nc->info->type == NET_CLIENT_OPTIONS_KIND_TAP) {
221 qemu_set_fd_handler(net->backend, NULL, NULL, NULL);
222 file.fd = net->backend;
223 for (file.index = 0; file.index < net->dev.nvqs; ++file.index) {
224 const VhostOps *vhost_ops = net->dev.vhost_ops;
225 r = vhost_ops->vhost_call(&net->dev, VHOST_NET_SET_BACKEND,
226 &file);
227 if (r < 0) {
228 r = -errno;
229 goto fail;
233 return 0;
234 fail:
235 file.fd = -1;
236 if (net->nc->info->type == NET_CLIENT_OPTIONS_KIND_TAP) {
237 while (file.index-- > 0) {
238 const VhostOps *vhost_ops = net->dev.vhost_ops;
239 int r = vhost_ops->vhost_call(&net->dev, VHOST_NET_SET_BACKEND,
240 &file);
241 assert(r >= 0);
244 if (net->nc->info->poll) {
245 net->nc->info->poll(net->nc, true);
247 vhost_dev_stop(&net->dev, dev);
248 fail_start:
249 vhost_dev_disable_notifiers(&net->dev, dev);
250 fail_notifiers:
251 return r;
254 static void vhost_net_stop_one(struct vhost_net *net,
255 VirtIODevice *dev)
257 struct vhost_vring_file file = { .fd = -1 };
259 if (!net->dev.started) {
260 return;
263 if (net->nc->info->type == NET_CLIENT_OPTIONS_KIND_TAP) {
264 for (file.index = 0; file.index < net->dev.nvqs; ++file.index) {
265 const VhostOps *vhost_ops = net->dev.vhost_ops;
266 int r = vhost_ops->vhost_call(&net->dev, VHOST_NET_SET_BACKEND,
267 &file);
268 assert(r >= 0);
271 if (net->nc->info->poll) {
272 net->nc->info->poll(net->nc, true);
274 vhost_dev_stop(&net->dev, dev);
275 vhost_dev_disable_notifiers(&net->dev, dev);
278 static bool vhost_net_device_endian_ok(VirtIODevice *vdev)
280 #ifdef TARGET_IS_BIENDIAN
281 #ifdef HOST_WORDS_BIGENDIAN
282 return virtio_is_big_endian(vdev);
283 #else
284 return !virtio_is_big_endian(vdev);
285 #endif
286 #else
287 return true;
288 #endif
291 int vhost_net_start(VirtIODevice *dev, NetClientState *ncs,
292 int total_queues)
294 BusState *qbus = BUS(qdev_get_parent_bus(DEVICE(dev)));
295 VirtioBusState *vbus = VIRTIO_BUS(qbus);
296 VirtioBusClass *k = VIRTIO_BUS_GET_CLASS(vbus);
297 int r, i = 0;
299 if (!vhost_net_device_endian_ok(dev)) {
300 error_report("vhost-net does not support cross-endian");
301 r = -ENOSYS;
302 goto err;
305 if (!k->set_guest_notifiers) {
306 error_report("binding does not support guest notifiers");
307 r = -ENOSYS;
308 goto err;
311 for (i = 0; i < total_queues; i++) {
312 r = vhost_net_start_one(get_vhost_net(ncs[i].peer), dev, i * 2);
314 if (r < 0) {
315 goto err;
319 r = k->set_guest_notifiers(qbus->parent, total_queues * 2, true);
320 if (r < 0) {
321 error_report("Error binding guest notifier: %d", -r);
322 goto err;
325 return 0;
327 err:
328 while (--i >= 0) {
329 vhost_net_stop_one(get_vhost_net(ncs[i].peer), dev);
331 return r;
334 void vhost_net_stop(VirtIODevice *dev, NetClientState *ncs,
335 int total_queues)
337 BusState *qbus = BUS(qdev_get_parent_bus(DEVICE(dev)));
338 VirtioBusState *vbus = VIRTIO_BUS(qbus);
339 VirtioBusClass *k = VIRTIO_BUS_GET_CLASS(vbus);
340 int i, r;
342 r = k->set_guest_notifiers(qbus->parent, total_queues * 2, false);
343 if (r < 0) {
344 fprintf(stderr, "vhost guest notifier cleanup failed: %d\n", r);
345 fflush(stderr);
347 assert(r >= 0);
349 for (i = 0; i < total_queues; i++) {
350 vhost_net_stop_one(get_vhost_net(ncs[i].peer), dev);
354 void vhost_net_cleanup(struct vhost_net *net)
356 vhost_dev_cleanup(&net->dev);
357 g_free(net);
360 bool vhost_net_virtqueue_pending(VHostNetState *net, int idx)
362 return vhost_virtqueue_pending(&net->dev, idx);
365 void vhost_net_virtqueue_mask(VHostNetState *net, VirtIODevice *dev,
366 int idx, bool mask)
368 vhost_virtqueue_mask(&net->dev, dev, idx, mask);
371 VHostNetState *get_vhost_net(NetClientState *nc)
373 VHostNetState *vhost_net = 0;
375 if (!nc) {
376 return 0;
379 switch (nc->info->type) {
380 case NET_CLIENT_OPTIONS_KIND_TAP:
381 vhost_net = tap_get_vhost_net(nc);
382 break;
383 case NET_CLIENT_OPTIONS_KIND_VHOST_USER:
384 vhost_net = vhost_user_get_vhost_net(nc);
385 break;
386 default:
387 break;
390 return vhost_net;
392 #else
393 struct vhost_net *vhost_net_init(VhostNetOptions *options)
395 error_report("vhost-net support is not compiled in");
396 return NULL;
399 bool vhost_net_query(VHostNetState *net, VirtIODevice *dev)
401 return false;
404 int vhost_net_start(VirtIODevice *dev,
405 NetClientState *ncs,
406 int total_queues)
408 return -ENOSYS;
410 void vhost_net_stop(VirtIODevice *dev,
411 NetClientState *ncs,
412 int total_queues)
416 void vhost_net_cleanup(struct vhost_net *net)
420 unsigned vhost_net_get_features(struct vhost_net *net, unsigned features)
422 return features;
424 void vhost_net_ack_features(struct vhost_net *net, unsigned features)
428 bool vhost_net_virtqueue_pending(VHostNetState *net, int idx)
430 return false;
433 void vhost_net_virtqueue_mask(VHostNetState *net, VirtIODevice *dev,
434 int idx, bool mask)
438 VHostNetState *get_vhost_net(NetClientState *nc)
440 return 0;
442 #endif