]>
Commit | Line | Data |
---|---|---|
d314f586 NN |
1 | /* |
2 | * vhost-user.c | |
3 | * | |
4 | * Copyright (c) 2013 Virtual Open Systems Sarl. | |
5 | * | |
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. | |
8 | * | |
9 | */ | |
10 | ||
2744d920 | 11 | #include "qemu/osdep.h" |
d314f586 NN |
12 | #include "clients.h" |
13 | #include "net/vhost_net.h" | |
14 | #include "net/vhost-user.h" | |
4d43a603 | 15 | #include "chardev/char-fe.h" |
e688df6b | 16 | #include "qapi/error.h" |
03ce5744 | 17 | #include "qemu/config-file.h" |
d314f586 | 18 | #include "qemu/error-report.h" |
922a01a0 | 19 | #include "qemu/option.h" |
b931bfbf | 20 | #include "qmp-commands.h" |
69b32a6c | 21 | #include "trace.h" |
d314f586 NN |
22 | |
23 | typedef struct VhostUserState { | |
24 | NetClientState nc; | |
5d300164 | 25 | CharBackend chr; /* only queue index 0 */ |
d314f586 | 26 | VHostNetState *vhost_net; |
6f1de6b7 | 27 | guint watch; |
a463215b | 28 | uint64_t acked_features; |
c89804d6 | 29 | bool started; |
d314f586 NN |
30 | } VhostUserState; |
31 | ||
32 | VHostNetState *vhost_user_get_vhost_net(NetClientState *nc) | |
33 | { | |
34 | VhostUserState *s = DO_UPCAST(VhostUserState, nc, nc); | |
f394b2e2 | 35 | assert(nc->info->type == NET_CLIENT_DRIVER_VHOST_USER); |
d314f586 NN |
36 | return s->vhost_net; |
37 | } | |
38 | ||
a463215b MAL |
39 | uint64_t vhost_user_get_acked_features(NetClientState *nc) |
40 | { | |
41 | VhostUserState *s = DO_UPCAST(VhostUserState, nc, nc); | |
f394b2e2 | 42 | assert(nc->info->type == NET_CLIENT_DRIVER_VHOST_USER); |
a463215b MAL |
43 | return s->acked_features; |
44 | } | |
45 | ||
b931bfbf | 46 | static void vhost_user_stop(int queues, NetClientState *ncs[]) |
d314f586 | 47 | { |
b931bfbf CO |
48 | VhostUserState *s; |
49 | int i; | |
d314f586 | 50 | |
b931bfbf | 51 | for (i = 0; i < queues; i++) { |
f394b2e2 | 52 | assert(ncs[i]->info->type == NET_CLIENT_DRIVER_VHOST_USER); |
d314f586 | 53 | |
b931bfbf | 54 | s = DO_UPCAST(VhostUserState, nc, ncs[i]); |
d314f586 | 55 | |
b931bfbf | 56 | if (s->vhost_net) { |
a463215b | 57 | /* save acked features */ |
e6bcb1b6 MAL |
58 | uint64_t features = vhost_net_get_acked_features(s->vhost_net); |
59 | if (features) { | |
60 | s->acked_features = features; | |
61 | } | |
b931bfbf | 62 | vhost_net_cleanup(s->vhost_net); |
b931bfbf CO |
63 | } |
64 | } | |
d314f586 NN |
65 | } |
66 | ||
5d300164 | 67 | static int vhost_user_start(int queues, NetClientState *ncs[], CharBackend *be) |
d314f586 | 68 | { |
b931bfbf | 69 | VhostNetOptions options; |
e6bcb1b6 | 70 | struct vhost_net *net = NULL; |
b931bfbf CO |
71 | VhostUserState *s; |
72 | int max_queues; | |
73 | int i; | |
74 | ||
75 | options.backend_type = VHOST_BACKEND_TYPE_USER; | |
76 | ||
77 | for (i = 0; i < queues; i++) { | |
f394b2e2 | 78 | assert(ncs[i]->info->type == NET_CLIENT_DRIVER_VHOST_USER); |
b931bfbf CO |
79 | |
80 | s = DO_UPCAST(VhostUserState, nc, ncs[i]); | |
b931bfbf CO |
81 | |
82 | options.net_backend = ncs[i]; | |
5d300164 | 83 | options.opaque = be; |
69e87b32 | 84 | options.busyloop_timeout = 0; |
e6bcb1b6 MAL |
85 | net = vhost_net_init(&options); |
86 | if (!net) { | |
9af9e0fe | 87 | error_report("failed to init vhost_net for queue %d", i); |
b931bfbf CO |
88 | goto err; |
89 | } | |
90 | ||
91 | if (i == 0) { | |
e6bcb1b6 | 92 | max_queues = vhost_net_get_max_queues(net); |
b931bfbf | 93 | if (queues > max_queues) { |
9af9e0fe MA |
94 | error_report("you are asking more queues than supported: %d", |
95 | max_queues); | |
b931bfbf CO |
96 | goto err; |
97 | } | |
98 | } | |
e6bcb1b6 MAL |
99 | |
100 | if (s->vhost_net) { | |
101 | vhost_net_cleanup(s->vhost_net); | |
102 | g_free(s->vhost_net); | |
103 | } | |
104 | s->vhost_net = net; | |
d314f586 NN |
105 | } |
106 | ||
b931bfbf CO |
107 | return 0; |
108 | ||
109 | err: | |
e6bcb1b6 MAL |
110 | if (net) { |
111 | vhost_net_cleanup(net); | |
112 | } | |
113 | vhost_user_stop(i, ncs); | |
b931bfbf | 114 | return -1; |
d314f586 NN |
115 | } |
116 | ||
f6f56291 TC |
117 | static ssize_t vhost_user_receive(NetClientState *nc, const uint8_t *buf, |
118 | size_t size) | |
119 | { | |
3e866365 TC |
120 | /* In case of RARP (message size is 60) notify backup to send a fake RARP. |
121 | This fake RARP will be sent by backend only for guest | |
122 | without GUEST_ANNOUNCE capability. | |
f6f56291 | 123 | */ |
3e866365 TC |
124 | if (size == 60) { |
125 | VhostUserState *s = DO_UPCAST(VhostUserState, nc, nc); | |
126 | int r; | |
127 | static int display_rarp_failure = 1; | |
128 | char mac_addr[6]; | |
129 | ||
130 | /* extract guest mac address from the RARP message */ | |
131 | memcpy(mac_addr, &buf[6], 6); | |
132 | ||
133 | r = vhost_net_notify_migration_done(s->vhost_net, mac_addr); | |
134 | ||
135 | if ((r != 0) && (display_rarp_failure)) { | |
136 | fprintf(stderr, | |
137 | "Vhost user backend fails to broadcast fake RARP\n"); | |
138 | fflush(stderr); | |
139 | display_rarp_failure = 0; | |
140 | } | |
141 | } | |
142 | ||
f6f56291 TC |
143 | return size; |
144 | } | |
145 | ||
d314f586 NN |
146 | static void vhost_user_cleanup(NetClientState *nc) |
147 | { | |
148 | VhostUserState *s = DO_UPCAST(VhostUserState, nc, nc); | |
149 | ||
b931bfbf CO |
150 | if (s->vhost_net) { |
151 | vhost_net_cleanup(s->vhost_net); | |
e6bcb1b6 | 152 | g_free(s->vhost_net); |
b931bfbf CO |
153 | s->vhost_net = NULL; |
154 | } | |
c39860e6 | 155 | if (nc->queue_index == 0) { |
41d4e5ec YW |
156 | if (s->watch) { |
157 | g_source_remove(s->watch); | |
158 | s->watch = 0; | |
159 | } | |
1ce2610c | 160 | qemu_chr_fe_deinit(&s->chr, true); |
25f0d2aa | 161 | } |
b931bfbf | 162 | |
d314f586 NN |
163 | qemu_purge_queued_packets(nc); |
164 | } | |
165 | ||
166 | static bool vhost_user_has_vnet_hdr(NetClientState *nc) | |
167 | { | |
f394b2e2 | 168 | assert(nc->info->type == NET_CLIENT_DRIVER_VHOST_USER); |
d314f586 NN |
169 | |
170 | return true; | |
171 | } | |
172 | ||
173 | static bool vhost_user_has_ufo(NetClientState *nc) | |
174 | { | |
f394b2e2 | 175 | assert(nc->info->type == NET_CLIENT_DRIVER_VHOST_USER); |
d314f586 NN |
176 | |
177 | return true; | |
178 | } | |
179 | ||
180 | static NetClientInfo net_vhost_user_info = { | |
f394b2e2 | 181 | .type = NET_CLIENT_DRIVER_VHOST_USER, |
d314f586 | 182 | .size = sizeof(VhostUserState), |
f6f56291 | 183 | .receive = vhost_user_receive, |
d314f586 NN |
184 | .cleanup = vhost_user_cleanup, |
185 | .has_vnet_hdr = vhost_user_has_vnet_hdr, | |
186 | .has_ufo = vhost_user_has_ufo, | |
187 | }; | |
188 | ||
a6553598 TM |
189 | static gboolean net_vhost_user_watch(GIOChannel *chan, GIOCondition cond, |
190 | void *opaque) | |
191 | { | |
192 | VhostUserState *s = opaque; | |
a6553598 | 193 | |
5345fdb4 | 194 | qemu_chr_fe_disconnect(&s->chr); |
a6553598 | 195 | |
e7c83a88 MAL |
196 | return TRUE; |
197 | } | |
198 | ||
199 | static void net_vhost_user_event(void *opaque, int event); | |
200 | ||
201 | static void chr_closed_bh(void *opaque) | |
202 | { | |
203 | const char *name = opaque; | |
204 | NetClientState *ncs[MAX_QUEUE_NUM]; | |
205 | VhostUserState *s; | |
206 | Error *err = NULL; | |
207 | int queues; | |
208 | ||
209 | queues = qemu_find_net_clients_except(name, ncs, | |
210 | NET_CLIENT_DRIVER_NIC, | |
211 | MAX_QUEUE_NUM); | |
212 | assert(queues < MAX_QUEUE_NUM); | |
213 | ||
214 | s = DO_UPCAST(VhostUserState, nc, ncs[0]); | |
215 | ||
216 | qmp_set_link(name, false, &err); | |
217 | vhost_user_stop(queues, ncs); | |
218 | ||
219 | qemu_chr_fe_set_handlers(&s->chr, NULL, NULL, net_vhost_user_event, | |
81517ba3 | 220 | NULL, opaque, NULL, true); |
e7c83a88 MAL |
221 | |
222 | if (err) { | |
223 | error_report_err(err); | |
224 | } | |
a6553598 TM |
225 | } |
226 | ||
d314f586 NN |
227 | static void net_vhost_user_event(void *opaque, int event) |
228 | { | |
b931bfbf CO |
229 | const char *name = opaque; |
230 | NetClientState *ncs[MAX_QUEUE_NUM]; | |
231 | VhostUserState *s; | |
0ec7b3e7 | 232 | Chardev *chr; |
b931bfbf CO |
233 | Error *err = NULL; |
234 | int queues; | |
d314f586 | 235 | |
b931bfbf | 236 | queues = qemu_find_net_clients_except(name, ncs, |
f394b2e2 | 237 | NET_CLIENT_DRIVER_NIC, |
b931bfbf | 238 | MAX_QUEUE_NUM); |
c1bf3531 MAL |
239 | assert(queues < MAX_QUEUE_NUM); |
240 | ||
b931bfbf | 241 | s = DO_UPCAST(VhostUserState, nc, ncs[0]); |
5345fdb4 MAL |
242 | chr = qemu_chr_fe_get_driver(&s->chr); |
243 | trace_vhost_user_event(chr->label, event); | |
d314f586 NN |
244 | switch (event) { |
245 | case CHR_EVENT_OPENED: | |
5d300164 | 246 | if (vhost_user_start(queues, ncs, &s->chr) < 0) { |
5345fdb4 | 247 | qemu_chr_fe_disconnect(&s->chr); |
0d572afd | 248 | return; |
b931bfbf | 249 | } |
e7c83a88 MAL |
250 | s->watch = qemu_chr_fe_add_watch(&s->chr, G_IO_HUP, |
251 | net_vhost_user_watch, s); | |
b931bfbf | 252 | qmp_set_link(name, true, &err); |
c89804d6 | 253 | s->started = true; |
d314f586 NN |
254 | break; |
255 | case CHR_EVENT_CLOSED: | |
e7c83a88 MAL |
256 | /* a close event may happen during a read/write, but vhost |
257 | * code assumes the vhost_dev remains setup, so delay the | |
258 | * stop & clear to idle. | |
259 | * FIXME: better handle failure in vhost code, remove bh | |
260 | */ | |
261 | if (s->watch) { | |
262 | AioContext *ctx = qemu_get_current_aio_context(); | |
263 | ||
264 | g_source_remove(s->watch); | |
265 | s->watch = 0; | |
81517ba3 | 266 | qemu_chr_fe_set_handlers(&s->chr, NULL, NULL, NULL, NULL, |
e7c83a88 MAL |
267 | NULL, NULL, false); |
268 | ||
269 | aio_bh_schedule_oneshot(ctx, chr_closed_bh, opaque); | |
270 | } | |
d314f586 NN |
271 | break; |
272 | } | |
b931bfbf CO |
273 | |
274 | if (err) { | |
275 | error_report_err(err); | |
276 | } | |
d314f586 NN |
277 | } |
278 | ||
279 | static int net_vhost_user_init(NetClientState *peer, const char *device, | |
0ec7b3e7 | 280 | const char *name, Chardev *chr, |
b931bfbf | 281 | int queues) |
d314f586 | 282 | { |
32a6ebec | 283 | Error *err = NULL; |
c89804d6 | 284 | NetClientState *nc, *nc0 = NULL; |
d314f586 | 285 | VhostUserState *s; |
b931bfbf | 286 | int i; |
d314f586 | 287 | |
c1bf3531 MAL |
288 | assert(name); |
289 | assert(queues > 0); | |
290 | ||
b931bfbf CO |
291 | for (i = 0; i < queues; i++) { |
292 | nc = qemu_new_net_client(&net_vhost_user_info, peer, device, name); | |
b931bfbf CO |
293 | snprintf(nc->info_str, sizeof(nc->info_str), "vhost-user%d to %s", |
294 | i, chr->label); | |
b931bfbf | 295 | nc->queue_index = i; |
5d300164 MAL |
296 | if (!nc0) { |
297 | nc0 = nc; | |
298 | s = DO_UPCAST(VhostUserState, nc, nc); | |
299 | if (!qemu_chr_fe_init(&s->chr, chr, &err)) { | |
300 | error_report_err(err); | |
301 | return -1; | |
302 | } | |
32a6ebec | 303 | } |
5d300164 | 304 | |
b931bfbf | 305 | } |
d345ed2d | 306 | |
c89804d6 MAL |
307 | s = DO_UPCAST(VhostUserState, nc, nc0); |
308 | do { | |
5345fdb4 | 309 | if (qemu_chr_fe_wait_connected(&s->chr, &err) < 0) { |
c89804d6 MAL |
310 | error_report_err(err); |
311 | return -1; | |
312 | } | |
5345fdb4 | 313 | qemu_chr_fe_set_handlers(&s->chr, NULL, NULL, |
81517ba3 AN |
314 | net_vhost_user_event, NULL, nc0->name, NULL, |
315 | true); | |
c89804d6 | 316 | } while (!s->started); |
d314f586 | 317 | |
1a5b68ce MAL |
318 | assert(s->vhost_net); |
319 | ||
d314f586 NN |
320 | return 0; |
321 | } | |
322 | ||
0ec7b3e7 | 323 | static Chardev *net_vhost_claim_chardev( |
81904831 | 324 | const NetdevVhostUserOptions *opts, Error **errp) |
03ce5744 | 325 | { |
0ec7b3e7 | 326 | Chardev *chr = qemu_chr_find(opts->chardev); |
03ce5744 NN |
327 | |
328 | if (chr == NULL) { | |
81904831 | 329 | error_setg(errp, "chardev \"%s\" not found", opts->chardev); |
03ce5744 NN |
330 | return NULL; |
331 | } | |
332 | ||
0a73336d DB |
333 | if (!qemu_chr_has_feature(chr, QEMU_CHAR_FEATURE_RECONNECTABLE)) { |
334 | error_setg(errp, "chardev \"%s\" is not reconnectable", | |
335 | opts->chardev); | |
03ce5744 NN |
336 | return NULL; |
337 | } | |
0a73336d DB |
338 | if (!qemu_chr_has_feature(chr, QEMU_CHAR_FEATURE_FD_PASS)) { |
339 | error_setg(errp, "chardev \"%s\" does not support FD passing", | |
81904831 | 340 | opts->chardev); |
03ce5744 NN |
341 | return NULL; |
342 | } | |
343 | ||
03ce5744 NN |
344 | return chr; |
345 | } | |
346 | ||
28d0de7a | 347 | static int net_vhost_check_net(void *opaque, QemuOpts *opts, Error **errp) |
03ce5744 NN |
348 | { |
349 | const char *name = opaque; | |
350 | const char *driver, *netdev; | |
03ce5744 NN |
351 | |
352 | driver = qemu_opt_get(opts, "driver"); | |
353 | netdev = qemu_opt_get(opts, "netdev"); | |
354 | ||
355 | if (!driver || !netdev) { | |
356 | return 0; | |
357 | } | |
358 | ||
359 | if (strcmp(netdev, name) == 0 && | |
d9d26114 | 360 | !g_str_has_prefix(driver, "virtio-net-")) { |
81904831 | 361 | error_setg(errp, "vhost-user requires frontend driver virtio-net-*"); |
03ce5744 NN |
362 | return -1; |
363 | } | |
364 | ||
365 | return 0; | |
366 | } | |
367 | ||
cebea510 | 368 | int net_init_vhost_user(const Netdev *netdev, const char *name, |
a30ecde6 | 369 | NetClientState *peer, Error **errp) |
d314f586 | 370 | { |
b931bfbf | 371 | int queues; |
03ce5744 | 372 | const NetdevVhostUserOptions *vhost_user_opts; |
0ec7b3e7 | 373 | Chardev *chr; |
03ce5744 | 374 | |
f394b2e2 EB |
375 | assert(netdev->type == NET_CLIENT_DRIVER_VHOST_USER); |
376 | vhost_user_opts = &netdev->u.vhost_user; | |
03ce5744 | 377 | |
0a73336d | 378 | chr = net_vhost_claim_chardev(vhost_user_opts, errp); |
03ce5744 | 379 | if (!chr) { |
03ce5744 NN |
380 | return -1; |
381 | } | |
382 | ||
383 | /* verify net frontend */ | |
384 | if (qemu_opts_foreach(qemu_find_opts("device"), net_vhost_check_net, | |
81904831 | 385 | (char *)name, errp)) { |
03ce5744 NN |
386 | return -1; |
387 | } | |
388 | ||
b931bfbf | 389 | queues = vhost_user_opts->has_queues ? vhost_user_opts->queues : 1; |
fff4e48e | 390 | if (queues < 1 || queues > MAX_QUEUE_NUM) { |
6f6f9512 | 391 | error_setg(errp, |
fff4e48e IM |
392 | "vhost-user number of queues must be in range [1, %d]", |
393 | MAX_QUEUE_NUM); | |
6f6f9512 VK |
394 | return -1; |
395 | } | |
03ce5744 | 396 | |
b931bfbf | 397 | return net_vhost_user_init(peer, "vhost_user", name, chr, queues); |
d314f586 | 398 | } |