4 * Copyright (c) 2013 Virtual Open Systems Sarl.
6 * This work is licensed under the terms of the GNU GPL, version 2 or later.
7 * See the COPYING file in the top-level directory.
12 #include "net/vhost_net.h"
13 #include "net/vhost-user.h"
14 #include "sysemu/char.h"
15 #include "qemu/config-file.h"
16 #include "qemu/error-report.h"
17 #include "qmp-commands.h"
20 typedef struct VhostUserState
{
23 VHostNetState
*vhost_net
;
26 typedef struct VhostUserChardevProps
{
30 } VhostUserChardevProps
;
32 VHostNetState
*vhost_user_get_vhost_net(NetClientState
*nc
)
34 VhostUserState
*s
= DO_UPCAST(VhostUserState
, nc
, nc
);
35 assert(nc
->info
->type
== NET_CLIENT_OPTIONS_KIND_VHOST_USER
);
39 static int vhost_user_running(VhostUserState
*s
)
41 return (s
->vhost_net
) ? 1 : 0;
44 static void vhost_user_stop(int queues
, NetClientState
*ncs
[])
49 for (i
= 0; i
< queues
; i
++) {
50 assert (ncs
[i
]->info
->type
== NET_CLIENT_OPTIONS_KIND_VHOST_USER
);
52 s
= DO_UPCAST(VhostUserState
, nc
, ncs
[i
]);
53 if (!vhost_user_running(s
)) {
58 vhost_net_cleanup(s
->vhost_net
);
64 static int vhost_user_start(int queues
, NetClientState
*ncs
[])
66 VhostNetOptions options
;
71 options
.backend_type
= VHOST_BACKEND_TYPE_USER
;
73 for (i
= 0; i
< queues
; i
++) {
74 assert (ncs
[i
]->info
->type
== NET_CLIENT_OPTIONS_KIND_VHOST_USER
);
76 s
= DO_UPCAST(VhostUserState
, nc
, ncs
[i
]);
77 if (vhost_user_running(s
)) {
81 options
.net_backend
= ncs
[i
];
82 options
.opaque
= s
->chr
;
83 s
->vhost_net
= vhost_net_init(&options
);
85 error_report("failed to init vhost_net for queue %d", i
);
90 max_queues
= vhost_net_get_max_queues(s
->vhost_net
);
91 if (queues
> max_queues
) {
92 error_report("you are asking more queues than supported: %d",
102 vhost_user_stop(i
+ 1, ncs
);
106 static ssize_t
vhost_user_receive(NetClientState
*nc
, const uint8_t *buf
,
109 /* In case of RARP (message size is 60) notify backup to send a fake RARP.
110 This fake RARP will be sent by backend only for guest
111 without GUEST_ANNOUNCE capability.
114 VhostUserState
*s
= DO_UPCAST(VhostUserState
, nc
, nc
);
116 static int display_rarp_failure
= 1;
119 /* extract guest mac address from the RARP message */
120 memcpy(mac_addr
, &buf
[6], 6);
122 r
= vhost_net_notify_migration_done(s
->vhost_net
, mac_addr
);
124 if ((r
!= 0) && (display_rarp_failure
)) {
126 "Vhost user backend fails to broadcast fake RARP\n");
128 display_rarp_failure
= 0;
135 static void vhost_user_cleanup(NetClientState
*nc
)
137 VhostUserState
*s
= DO_UPCAST(VhostUserState
, nc
, nc
);
140 vhost_net_cleanup(s
->vhost_net
);
144 qemu_purge_queued_packets(nc
);
147 static bool vhost_user_has_vnet_hdr(NetClientState
*nc
)
149 assert(nc
->info
->type
== NET_CLIENT_OPTIONS_KIND_VHOST_USER
);
154 static bool vhost_user_has_ufo(NetClientState
*nc
)
156 assert(nc
->info
->type
== NET_CLIENT_OPTIONS_KIND_VHOST_USER
);
161 static NetClientInfo net_vhost_user_info
= {
162 .type
= NET_CLIENT_OPTIONS_KIND_VHOST_USER
,
163 .size
= sizeof(VhostUserState
),
164 .receive
= vhost_user_receive
,
165 .cleanup
= vhost_user_cleanup
,
166 .has_vnet_hdr
= vhost_user_has_vnet_hdr
,
167 .has_ufo
= vhost_user_has_ufo
,
170 static void net_vhost_user_event(void *opaque
, int event
)
172 const char *name
= opaque
;
173 NetClientState
*ncs
[MAX_QUEUE_NUM
];
178 queues
= qemu_find_net_clients_except(name
, ncs
,
179 NET_CLIENT_OPTIONS_KIND_NIC
,
181 s
= DO_UPCAST(VhostUserState
, nc
, ncs
[0]);
182 trace_vhost_user_event(s
->chr
->label
, event
);
184 case CHR_EVENT_OPENED
:
185 if (vhost_user_start(queues
, ncs
) < 0) {
188 qmp_set_link(name
, true, &err
);
190 case CHR_EVENT_CLOSED
:
191 qmp_set_link(name
, false, &err
);
192 vhost_user_stop(queues
, ncs
);
197 error_report_err(err
);
201 static int net_vhost_user_init(NetClientState
*peer
, const char *device
,
202 const char *name
, CharDriverState
*chr
,
209 for (i
= 0; i
< queues
; i
++) {
210 nc
= qemu_new_net_client(&net_vhost_user_info
, peer
, device
, name
);
212 snprintf(nc
->info_str
, sizeof(nc
->info_str
), "vhost-user%d to %s",
217 s
= DO_UPCAST(VhostUserState
, nc
, nc
);
221 qemu_chr_add_handlers(chr
, NULL
, NULL
, net_vhost_user_event
, (void*)name
);
226 static int net_vhost_chardev_opts(void *opaque
,
227 const char *name
, const char *value
,
230 VhostUserChardevProps
*props
= opaque
;
232 if (strcmp(name
, "backend") == 0 && strcmp(value
, "socket") == 0) {
233 props
->is_socket
= true;
234 } else if (strcmp(name
, "path") == 0) {
235 props
->is_unix
= true;
236 } else if (strcmp(name
, "server") == 0) {
237 props
->is_server
= true;
240 "vhost-user does not support a chardev with option %s=%s",
247 static CharDriverState
*net_vhost_parse_chardev(
248 const NetdevVhostUserOptions
*opts
, Error
**errp
)
250 CharDriverState
*chr
= qemu_chr_find(opts
->chardev
);
251 VhostUserChardevProps props
;
254 error_setg(errp
, "chardev \"%s\" not found", opts
->chardev
);
258 /* inspect chardev opts */
259 memset(&props
, 0, sizeof(props
));
260 if (qemu_opt_foreach(chr
->opts
, net_vhost_chardev_opts
, &props
, errp
)) {
264 if (!props
.is_socket
|| !props
.is_unix
) {
265 error_setg(errp
, "chardev \"%s\" is not a unix socket",
270 qemu_chr_fe_claim_no_fail(chr
);
275 static int net_vhost_check_net(void *opaque
, QemuOpts
*opts
, Error
**errp
)
277 const char *name
= opaque
;
278 const char *driver
, *netdev
;
279 const char virtio_name
[] = "virtio-net-";
281 driver
= qemu_opt_get(opts
, "driver");
282 netdev
= qemu_opt_get(opts
, "netdev");
284 if (!driver
|| !netdev
) {
288 if (strcmp(netdev
, name
) == 0 &&
289 strncmp(driver
, virtio_name
, strlen(virtio_name
)) != 0) {
290 error_setg(errp
, "vhost-user requires frontend driver virtio-net-*");
297 int net_init_vhost_user(const NetClientOptions
*opts
, const char *name
,
298 NetClientState
*peer
, Error
**errp
)
301 const NetdevVhostUserOptions
*vhost_user_opts
;
302 CharDriverState
*chr
;
304 assert(opts
->type
== NET_CLIENT_OPTIONS_KIND_VHOST_USER
);
305 vhost_user_opts
= opts
->u
.vhost_user
;
307 chr
= net_vhost_parse_chardev(vhost_user_opts
, errp
);
312 /* verify net frontend */
313 if (qemu_opts_foreach(qemu_find_opts("device"), net_vhost_check_net
,
314 (char *)name
, errp
)) {
318 queues
= vhost_user_opts
->has_queues
? vhost_user_opts
->queues
: 1;
321 "vhost-user number of queues must be bigger than zero");
325 return net_vhost_user_init(peer
, "vhost_user", name
, chr
, queues
);