]>
Commit | Line | Data |
---|---|---|
75818250 TS |
1 | /* |
2 | * QEMU Block driver for NBD | |
3 | * | |
f7651539 | 4 | * Copyright (c) 2019 Virtuozzo International GmbH. |
86f8cdf3 | 5 | * Copyright (C) 2016 Red Hat, Inc. |
75818250 | 6 | * Copyright (C) 2008 Bull S.A.S. |
bd5921b4 | 7 | * Author: Laurent Vivier <[email protected]> |
75818250 TS |
8 | * |
9 | * Some parts: | |
10 | * Copyright (C) 2007 Anthony Liguori <[email protected]> | |
11 | * | |
12 | * Permission is hereby granted, free of charge, to any person obtaining a copy | |
13 | * of this software and associated documentation files (the "Software"), to deal | |
14 | * in the Software without restriction, including without limitation the rights | |
15 | * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
16 | * copies of the Software, and to permit persons to whom the Software is | |
17 | * furnished to do so, subject to the following conditions: | |
18 | * | |
19 | * The above copyright notice and this permission notice shall be included in | |
20 | * all copies or substantial portions of the Software. | |
21 | * | |
22 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | |
23 | * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | |
24 | * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL | |
25 | * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | |
26 | * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | |
27 | * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN | |
28 | * THE SOFTWARE. | |
29 | */ | |
30 | ||
80c71a24 | 31 | #include "qemu/osdep.h" |
86f8cdf3 VSO |
32 | |
33 | #include "trace.h" | |
1de7afc9 | 34 | #include "qemu/uri.h" |
922a01a0 | 35 | #include "qemu/option.h" |
86f8cdf3 | 36 | #include "qemu/cutils.h" |
db725815 | 37 | #include "qemu/main-loop.h" |
86f8cdf3 | 38 | |
9af23989 | 39 | #include "qapi/qapi-visit-sockets.h" |
2019d68b | 40 | #include "qapi/qmp/qstring.h" |
86f8cdf3 VSO |
41 | |
42 | #include "block/qdict.h" | |
43 | #include "block/nbd.h" | |
44 | #include "block/block_int.h" | |
75818250 | 45 | |
1d45f8b5 | 46 | #define EN_OPTSTR ":exportname=" |
86f8cdf3 VSO |
47 | #define MAX_NBD_REQUESTS 16 |
48 | ||
49 | #define HANDLE_TO_INDEX(bs, handle) ((handle) ^ (uint64_t)(intptr_t)(bs)) | |
50 | #define INDEX_TO_HANDLE(bs, index) ((index) ^ (uint64_t)(intptr_t)(bs)) | |
51 | ||
52 | typedef struct { | |
53 | Coroutine *coroutine; | |
54 | uint64_t offset; /* original offset of the request */ | |
55 | bool receiving; /* waiting for connection_co? */ | |
56 | } NBDClientRequest; | |
57 | ||
a34b1e5e | 58 | typedef enum NBDClientState { |
f7651539 VSO |
59 | NBD_CLIENT_CONNECTING_WAIT, |
60 | NBD_CLIENT_CONNECTING_NOWAIT, | |
a34b1e5e VSO |
61 | NBD_CLIENT_CONNECTED, |
62 | NBD_CLIENT_QUIT | |
63 | } NBDClientState; | |
64 | ||
611ae1d7 | 65 | typedef struct BDRVNBDState { |
86f8cdf3 VSO |
66 | QIOChannelSocket *sioc; /* The master data channel */ |
67 | QIOChannel *ioc; /* The current I/O channel which may differ (eg TLS) */ | |
68 | NBDExportInfo info; | |
69 | ||
70 | CoMutex send_mutex; | |
71 | CoQueue free_sema; | |
72 | Coroutine *connection_co; | |
78c81a3f | 73 | Coroutine *teardown_co; |
f7651539 VSO |
74 | QemuCoSleepState *connection_co_sleep_ns_state; |
75 | bool drained; | |
76 | bool wait_drained_end; | |
86f8cdf3 | 77 | int in_flight; |
a34b1e5e | 78 | NBDClientState state; |
f7651539 VSO |
79 | int connect_status; |
80 | Error *connect_err; | |
81 | bool wait_in_flight; | |
86f8cdf3 VSO |
82 | |
83 | NBDClientRequest requests[MAX_NBD_REQUESTS]; | |
84 | NBDReply reply; | |
85 | BlockDriverState *bs; | |
03504d05 | 86 | |
8f071c9d VSO |
87 | /* Connection parameters */ |
88 | uint32_t reconnect_delay; | |
62cf396b | 89 | SocketAddress *saddr; |
491d6c7c | 90 | char *export, *tlscredsid; |
8f071c9d VSO |
91 | QCryptoTLSCreds *tlscreds; |
92 | const char *hostname; | |
93 | char *x_dirty_bitmap; | |
75818250 TS |
94 | } BDRVNBDState; |
95 | ||
f7651539 VSO |
96 | static int nbd_client_connect(BlockDriverState *bs, Error **errp); |
97 | ||
7f493662 PN |
98 | static void nbd_clear_bdrvstate(BDRVNBDState *s) |
99 | { | |
100 | object_unref(OBJECT(s->tlscreds)); | |
101 | qapi_free_SocketAddress(s->saddr); | |
102 | s->saddr = NULL; | |
103 | g_free(s->export); | |
104 | s->export = NULL; | |
105 | g_free(s->tlscredsid); | |
106 | s->tlscredsid = NULL; | |
107 | g_free(s->x_dirty_bitmap); | |
108 | s->x_dirty_bitmap = NULL; | |
109 | } | |
110 | ||
a34b1e5e VSO |
111 | static void nbd_channel_error(BDRVNBDState *s, int ret) |
112 | { | |
f7651539 VSO |
113 | if (ret == -EIO) { |
114 | if (s->state == NBD_CLIENT_CONNECTED) { | |
115 | s->state = s->reconnect_delay ? NBD_CLIENT_CONNECTING_WAIT : | |
116 | NBD_CLIENT_CONNECTING_NOWAIT; | |
117 | } | |
118 | } else { | |
119 | if (s->state == NBD_CLIENT_CONNECTED) { | |
120 | qio_channel_shutdown(s->ioc, QIO_CHANNEL_SHUTDOWN_BOTH, NULL); | |
121 | } | |
122 | s->state = NBD_CLIENT_QUIT; | |
123 | } | |
a34b1e5e VSO |
124 | } |
125 | ||
611ae1d7 | 126 | static void nbd_recv_coroutines_wake_all(BDRVNBDState *s) |
86f8cdf3 VSO |
127 | { |
128 | int i; | |
129 | ||
130 | for (i = 0; i < MAX_NBD_REQUESTS; i++) { | |
131 | NBDClientRequest *req = &s->requests[i]; | |
132 | ||
133 | if (req->coroutine && req->receiving) { | |
134 | aio_co_wake(req->coroutine); | |
135 | } | |
136 | } | |
137 | } | |
138 | ||
139 | static void nbd_client_detach_aio_context(BlockDriverState *bs) | |
140 | { | |
611ae1d7 VSO |
141 | BDRVNBDState *s = (BDRVNBDState *)bs->opaque; |
142 | ||
143 | qio_channel_detach_aio_context(QIO_CHANNEL(s->ioc)); | |
86f8cdf3 VSO |
144 | } |
145 | ||
146 | static void nbd_client_attach_aio_context_bh(void *opaque) | |
147 | { | |
148 | BlockDriverState *bs = opaque; | |
611ae1d7 | 149 | BDRVNBDState *s = (BDRVNBDState *)bs->opaque; |
86f8cdf3 VSO |
150 | |
151 | /* | |
152 | * The node is still drained, so we know the coroutine has yielded in | |
153 | * nbd_read_eof(), the only place where bs->in_flight can reach 0, or it is | |
154 | * entered for the first time. Both places are safe for entering the | |
155 | * coroutine. | |
156 | */ | |
611ae1d7 | 157 | qemu_aio_coroutine_enter(bs->aio_context, s->connection_co); |
86f8cdf3 VSO |
158 | bdrv_dec_in_flight(bs); |
159 | } | |
160 | ||
161 | static void nbd_client_attach_aio_context(BlockDriverState *bs, | |
162 | AioContext *new_context) | |
163 | { | |
611ae1d7 VSO |
164 | BDRVNBDState *s = (BDRVNBDState *)bs->opaque; |
165 | ||
f7651539 VSO |
166 | /* |
167 | * s->connection_co is either yielded from nbd_receive_reply or from | |
168 | * nbd_co_reconnect_loop() | |
169 | */ | |
170 | if (s->state == NBD_CLIENT_CONNECTED) { | |
171 | qio_channel_attach_aio_context(QIO_CHANNEL(s->ioc), new_context); | |
172 | } | |
86f8cdf3 VSO |
173 | |
174 | bdrv_inc_in_flight(bs); | |
175 | ||
176 | /* | |
177 | * Need to wait here for the BH to run because the BH must run while the | |
178 | * node is still drained. | |
179 | */ | |
180 | aio_wait_bh_oneshot(new_context, nbd_client_attach_aio_context_bh, bs); | |
181 | } | |
182 | ||
f7651539 VSO |
183 | static void coroutine_fn nbd_client_co_drain_begin(BlockDriverState *bs) |
184 | { | |
185 | BDRVNBDState *s = (BDRVNBDState *)bs->opaque; | |
86f8cdf3 | 186 | |
f7651539 VSO |
187 | s->drained = true; |
188 | if (s->connection_co_sleep_ns_state) { | |
189 | qemu_co_sleep_wake(s->connection_co_sleep_ns_state); | |
190 | } | |
191 | } | |
192 | ||
193 | static void coroutine_fn nbd_client_co_drain_end(BlockDriverState *bs) | |
86f8cdf3 | 194 | { |
611ae1d7 | 195 | BDRVNBDState *s = (BDRVNBDState *)bs->opaque; |
86f8cdf3 | 196 | |
f7651539 VSO |
197 | s->drained = false; |
198 | if (s->wait_drained_end) { | |
199 | s->wait_drained_end = false; | |
200 | aio_co_wake(s->connection_co); | |
201 | } | |
202 | } | |
203 | ||
86f8cdf3 | 204 | |
f7651539 VSO |
205 | static void nbd_teardown_connection(BlockDriverState *bs) |
206 | { | |
207 | BDRVNBDState *s = (BDRVNBDState *)bs->opaque; | |
208 | ||
209 | if (s->state == NBD_CLIENT_CONNECTED) { | |
210 | /* finish any pending coroutines */ | |
211 | assert(s->ioc); | |
212 | qio_channel_shutdown(s->ioc, QIO_CHANNEL_SHUTDOWN_BOTH, NULL); | |
213 | } | |
214 | s->state = NBD_CLIENT_QUIT; | |
215 | if (s->connection_co) { | |
216 | if (s->connection_co_sleep_ns_state) { | |
217 | qemu_co_sleep_wake(s->connection_co_sleep_ns_state); | |
218 | } | |
219 | } | |
78c81a3f HR |
220 | if (qemu_in_coroutine()) { |
221 | s->teardown_co = qemu_coroutine_self(); | |
222 | /* connection_co resumes us when it terminates */ | |
223 | qemu_coroutine_yield(); | |
224 | s->teardown_co = NULL; | |
225 | } else { | |
226 | BDRV_POLL_WHILE(bs, s->connection_co); | |
227 | } | |
228 | assert(!s->connection_co); | |
f7651539 | 229 | } |
86f8cdf3 | 230 | |
f7651539 VSO |
231 | static bool nbd_client_connecting(BDRVNBDState *s) |
232 | { | |
233 | return s->state == NBD_CLIENT_CONNECTING_WAIT || | |
234 | s->state == NBD_CLIENT_CONNECTING_NOWAIT; | |
235 | } | |
236 | ||
237 | static bool nbd_client_connecting_wait(BDRVNBDState *s) | |
238 | { | |
239 | return s->state == NBD_CLIENT_CONNECTING_WAIT; | |
240 | } | |
241 | ||
242 | static coroutine_fn void nbd_reconnect_attempt(BDRVNBDState *s) | |
243 | { | |
244 | Error *local_err = NULL; | |
245 | ||
246 | if (!nbd_client_connecting(s)) { | |
247 | return; | |
248 | } | |
249 | ||
250 | /* Wait for completion of all in-flight requests */ | |
251 | ||
252 | qemu_co_mutex_lock(&s->send_mutex); | |
253 | ||
254 | while (s->in_flight > 0) { | |
255 | qemu_co_mutex_unlock(&s->send_mutex); | |
256 | nbd_recv_coroutines_wake_all(s); | |
257 | s->wait_in_flight = true; | |
258 | qemu_coroutine_yield(); | |
259 | s->wait_in_flight = false; | |
260 | qemu_co_mutex_lock(&s->send_mutex); | |
261 | } | |
262 | ||
263 | qemu_co_mutex_unlock(&s->send_mutex); | |
264 | ||
265 | if (!nbd_client_connecting(s)) { | |
266 | return; | |
267 | } | |
268 | ||
269 | /* | |
270 | * Now we are sure that nobody is accessing the channel, and no one will | |
271 | * try until we set the state to CONNECTED. | |
272 | */ | |
273 | ||
274 | /* Finalize previous connection if any */ | |
275 | if (s->ioc) { | |
276 | nbd_client_detach_aio_context(s->bs); | |
277 | object_unref(OBJECT(s->sioc)); | |
278 | s->sioc = NULL; | |
279 | object_unref(OBJECT(s->ioc)); | |
280 | s->ioc = NULL; | |
281 | } | |
282 | ||
283 | s->connect_status = nbd_client_connect(s->bs, &local_err); | |
284 | error_free(s->connect_err); | |
285 | s->connect_err = NULL; | |
286 | error_propagate(&s->connect_err, local_err); | |
287 | ||
288 | if (s->connect_status < 0) { | |
289 | /* failed attempt */ | |
290 | return; | |
291 | } | |
292 | ||
293 | /* successfully connected */ | |
294 | s->state = NBD_CLIENT_CONNECTED; | |
295 | qemu_co_queue_restart_all(&s->free_sema); | |
296 | } | |
297 | ||
298 | static coroutine_fn void nbd_co_reconnect_loop(BDRVNBDState *s) | |
299 | { | |
300 | uint64_t start_time_ns = qemu_clock_get_ns(QEMU_CLOCK_REALTIME); | |
301 | uint64_t delay_ns = s->reconnect_delay * NANOSECONDS_PER_SECOND; | |
302 | uint64_t timeout = 1 * NANOSECONDS_PER_SECOND; | |
303 | uint64_t max_timeout = 16 * NANOSECONDS_PER_SECOND; | |
304 | ||
305 | nbd_reconnect_attempt(s); | |
306 | ||
307 | while (nbd_client_connecting(s)) { | |
308 | if (s->state == NBD_CLIENT_CONNECTING_WAIT && | |
309 | qemu_clock_get_ns(QEMU_CLOCK_REALTIME) - start_time_ns > delay_ns) | |
310 | { | |
311 | s->state = NBD_CLIENT_CONNECTING_NOWAIT; | |
312 | qemu_co_queue_restart_all(&s->free_sema); | |
313 | } | |
314 | ||
315 | qemu_co_sleep_ns_wakeable(QEMU_CLOCK_REALTIME, timeout, | |
316 | &s->connection_co_sleep_ns_state); | |
317 | if (s->drained) { | |
318 | bdrv_dec_in_flight(s->bs); | |
319 | s->wait_drained_end = true; | |
320 | while (s->drained) { | |
321 | /* | |
322 | * We may be entered once from nbd_client_attach_aio_context_bh | |
323 | * and then from nbd_client_co_drain_end. So here is a loop. | |
324 | */ | |
325 | qemu_coroutine_yield(); | |
326 | } | |
327 | bdrv_inc_in_flight(s->bs); | |
328 | } | |
329 | if (timeout < max_timeout) { | |
330 | timeout *= 2; | |
331 | } | |
332 | ||
333 | nbd_reconnect_attempt(s); | |
334 | } | |
86f8cdf3 VSO |
335 | } |
336 | ||
337 | static coroutine_fn void nbd_connection_entry(void *opaque) | |
338 | { | |
611ae1d7 | 339 | BDRVNBDState *s = opaque; |
86f8cdf3 VSO |
340 | uint64_t i; |
341 | int ret = 0; | |
342 | Error *local_err = NULL; | |
343 | ||
a34b1e5e | 344 | while (s->state != NBD_CLIENT_QUIT) { |
86f8cdf3 VSO |
345 | /* |
346 | * The NBD client can only really be considered idle when it has | |
347 | * yielded from qio_channel_readv_all_eof(), waiting for data. This is | |
348 | * the point where the additional scheduled coroutine entry happens | |
349 | * after nbd_client_attach_aio_context(). | |
350 | * | |
351 | * Therefore we keep an additional in_flight reference all the time and | |
352 | * only drop it temporarily here. | |
353 | */ | |
f7651539 VSO |
354 | |
355 | if (nbd_client_connecting(s)) { | |
356 | nbd_co_reconnect_loop(s); | |
357 | } | |
358 | ||
359 | if (s->state != NBD_CLIENT_CONNECTED) { | |
360 | continue; | |
361 | } | |
362 | ||
86f8cdf3 VSO |
363 | assert(s->reply.handle == 0); |
364 | ret = nbd_receive_reply(s->bs, s->ioc, &s->reply, &local_err); | |
365 | ||
366 | if (local_err) { | |
367 | trace_nbd_read_reply_entry_fail(ret, error_get_pretty(local_err)); | |
368 | error_free(local_err); | |
f7651539 | 369 | local_err = NULL; |
86f8cdf3 VSO |
370 | } |
371 | if (ret <= 0) { | |
a34b1e5e | 372 | nbd_channel_error(s, ret ? ret : -EIO); |
f7651539 | 373 | continue; |
86f8cdf3 VSO |
374 | } |
375 | ||
376 | /* | |
377 | * There's no need for a mutex on the receive side, because the | |
378 | * handler acts as a synchronization point and ensures that only | |
379 | * one coroutine is called until the reply finishes. | |
380 | */ | |
381 | i = HANDLE_TO_INDEX(s, s->reply.handle); | |
382 | if (i >= MAX_NBD_REQUESTS || | |
383 | !s->requests[i].coroutine || | |
384 | !s->requests[i].receiving || | |
385 | (nbd_reply_is_structured(&s->reply) && !s->info.structured_reply)) | |
386 | { | |
a34b1e5e | 387 | nbd_channel_error(s, -EINVAL); |
f7651539 | 388 | continue; |
86f8cdf3 VSO |
389 | } |
390 | ||
391 | /* | |
392 | * We're woken up again by the request itself. Note that there | |
393 | * is no race between yielding and reentering connection_co. This | |
394 | * is because: | |
395 | * | |
396 | * - if the request runs on the same AioContext, it is only | |
397 | * entered after we yield | |
398 | * | |
399 | * - if the request runs on a different AioContext, reentering | |
400 | * connection_co happens through a bottom half, which can only | |
401 | * run after we yield. | |
402 | */ | |
403 | aio_co_wake(s->requests[i].coroutine); | |
404 | qemu_coroutine_yield(); | |
405 | } | |
406 | ||
f7651539 | 407 | qemu_co_queue_restart_all(&s->free_sema); |
86f8cdf3 VSO |
408 | nbd_recv_coroutines_wake_all(s); |
409 | bdrv_dec_in_flight(s->bs); | |
410 | ||
411 | s->connection_co = NULL; | |
f7651539 VSO |
412 | if (s->ioc) { |
413 | nbd_client_detach_aio_context(s->bs); | |
414 | object_unref(OBJECT(s->sioc)); | |
415 | s->sioc = NULL; | |
416 | object_unref(OBJECT(s->ioc)); | |
417 | s->ioc = NULL; | |
418 | } | |
419 | ||
78c81a3f HR |
420 | if (s->teardown_co) { |
421 | aio_co_wake(s->teardown_co); | |
422 | } | |
86f8cdf3 VSO |
423 | aio_wait_kick(); |
424 | } | |
425 | ||
426 | static int nbd_co_send_request(BlockDriverState *bs, | |
427 | NBDRequest *request, | |
428 | QEMUIOVector *qiov) | |
429 | { | |
611ae1d7 | 430 | BDRVNBDState *s = (BDRVNBDState *)bs->opaque; |
a34b1e5e | 431 | int rc, i = -1; |
86f8cdf3 VSO |
432 | |
433 | qemu_co_mutex_lock(&s->send_mutex); | |
f7651539 | 434 | while (s->in_flight == MAX_NBD_REQUESTS || nbd_client_connecting_wait(s)) { |
86f8cdf3 VSO |
435 | qemu_co_queue_wait(&s->free_sema, &s->send_mutex); |
436 | } | |
a34b1e5e VSO |
437 | |
438 | if (s->state != NBD_CLIENT_CONNECTED) { | |
439 | rc = -EIO; | |
440 | goto err; | |
441 | } | |
442 | ||
86f8cdf3 VSO |
443 | s->in_flight++; |
444 | ||
445 | for (i = 0; i < MAX_NBD_REQUESTS; i++) { | |
446 | if (s->requests[i].coroutine == NULL) { | |
447 | break; | |
448 | } | |
449 | } | |
450 | ||
451 | g_assert(qemu_in_coroutine()); | |
452 | assert(i < MAX_NBD_REQUESTS); | |
453 | ||
454 | s->requests[i].coroutine = qemu_coroutine_self(); | |
455 | s->requests[i].offset = request->from; | |
456 | s->requests[i].receiving = false; | |
457 | ||
458 | request->handle = INDEX_TO_HANDLE(s, i); | |
459 | ||
86f8cdf3 VSO |
460 | assert(s->ioc); |
461 | ||
462 | if (qiov) { | |
463 | qio_channel_set_cork(s->ioc, true); | |
464 | rc = nbd_send_request(s->ioc, request); | |
a34b1e5e | 465 | if (rc >= 0 && s->state == NBD_CLIENT_CONNECTED) { |
86f8cdf3 VSO |
466 | if (qio_channel_writev_all(s->ioc, qiov->iov, qiov->niov, |
467 | NULL) < 0) { | |
468 | rc = -EIO; | |
469 | } | |
470 | } else if (rc >= 0) { | |
471 | rc = -EIO; | |
472 | } | |
473 | qio_channel_set_cork(s->ioc, false); | |
474 | } else { | |
475 | rc = nbd_send_request(s->ioc, request); | |
476 | } | |
477 | ||
478 | err: | |
479 | if (rc < 0) { | |
a34b1e5e VSO |
480 | nbd_channel_error(s, rc); |
481 | if (i != -1) { | |
482 | s->requests[i].coroutine = NULL; | |
483 | s->in_flight--; | |
484 | } | |
f7651539 VSO |
485 | if (s->in_flight == 0 && s->wait_in_flight) { |
486 | aio_co_wake(s->connection_co); | |
487 | } else { | |
488 | qemu_co_queue_next(&s->free_sema); | |
489 | } | |
86f8cdf3 VSO |
490 | } |
491 | qemu_co_mutex_unlock(&s->send_mutex); | |
492 | return rc; | |
493 | } | |
494 | ||
495 | static inline uint16_t payload_advance16(uint8_t **payload) | |
496 | { | |
497 | *payload += 2; | |
498 | return lduw_be_p(*payload - 2); | |
499 | } | |
500 | ||
501 | static inline uint32_t payload_advance32(uint8_t **payload) | |
502 | { | |
503 | *payload += 4; | |
504 | return ldl_be_p(*payload - 4); | |
505 | } | |
506 | ||
507 | static inline uint64_t payload_advance64(uint8_t **payload) | |
508 | { | |
509 | *payload += 8; | |
510 | return ldq_be_p(*payload - 8); | |
511 | } | |
512 | ||
611ae1d7 | 513 | static int nbd_parse_offset_hole_payload(BDRVNBDState *s, |
86f8cdf3 VSO |
514 | NBDStructuredReplyChunk *chunk, |
515 | uint8_t *payload, uint64_t orig_offset, | |
516 | QEMUIOVector *qiov, Error **errp) | |
517 | { | |
518 | uint64_t offset; | |
519 | uint32_t hole_size; | |
520 | ||
521 | if (chunk->length != sizeof(offset) + sizeof(hole_size)) { | |
522 | error_setg(errp, "Protocol error: invalid payload for " | |
523 | "NBD_REPLY_TYPE_OFFSET_HOLE"); | |
524 | return -EINVAL; | |
525 | } | |
526 | ||
527 | offset = payload_advance64(&payload); | |
528 | hole_size = payload_advance32(&payload); | |
529 | ||
530 | if (!hole_size || offset < orig_offset || hole_size > qiov->size || | |
531 | offset > orig_offset + qiov->size - hole_size) { | |
532 | error_setg(errp, "Protocol error: server sent chunk exceeding requested" | |
533 | " region"); | |
534 | return -EINVAL; | |
535 | } | |
611ae1d7 VSO |
536 | if (s->info.min_block && |
537 | !QEMU_IS_ALIGNED(hole_size, s->info.min_block)) { | |
86f8cdf3 VSO |
538 | trace_nbd_structured_read_compliance("hole"); |
539 | } | |
540 | ||
541 | qemu_iovec_memset(qiov, offset - orig_offset, 0, hole_size); | |
542 | ||
543 | return 0; | |
544 | } | |
545 | ||
546 | /* | |
547 | * nbd_parse_blockstatus_payload | |
548 | * Based on our request, we expect only one extent in reply, for the | |
549 | * base:allocation context. | |
550 | */ | |
611ae1d7 | 551 | static int nbd_parse_blockstatus_payload(BDRVNBDState *s, |
86f8cdf3 VSO |
552 | NBDStructuredReplyChunk *chunk, |
553 | uint8_t *payload, uint64_t orig_length, | |
554 | NBDExtent *extent, Error **errp) | |
555 | { | |
556 | uint32_t context_id; | |
557 | ||
558 | /* The server succeeded, so it must have sent [at least] one extent */ | |
559 | if (chunk->length < sizeof(context_id) + sizeof(*extent)) { | |
560 | error_setg(errp, "Protocol error: invalid payload for " | |
561 | "NBD_REPLY_TYPE_BLOCK_STATUS"); | |
562 | return -EINVAL; | |
563 | } | |
564 | ||
565 | context_id = payload_advance32(&payload); | |
611ae1d7 | 566 | if (s->info.context_id != context_id) { |
86f8cdf3 VSO |
567 | error_setg(errp, "Protocol error: unexpected context id %d for " |
568 | "NBD_REPLY_TYPE_BLOCK_STATUS, when negotiated context " | |
569 | "id is %d", context_id, | |
611ae1d7 | 570 | s->info.context_id); |
86f8cdf3 VSO |
571 | return -EINVAL; |
572 | } | |
573 | ||
574 | extent->length = payload_advance32(&payload); | |
575 | extent->flags = payload_advance32(&payload); | |
576 | ||
577 | if (extent->length == 0) { | |
578 | error_setg(errp, "Protocol error: server sent status chunk with " | |
579 | "zero length"); | |
580 | return -EINVAL; | |
581 | } | |
582 | ||
583 | /* | |
584 | * A server sending unaligned block status is in violation of the | |
585 | * protocol, but as qemu-nbd 3.1 is such a server (at least for | |
586 | * POSIX files that are not a multiple of 512 bytes, since qemu | |
587 | * rounds files up to 512-byte multiples but lseek(SEEK_HOLE) | |
588 | * still sees an implicit hole beyond the real EOF), it's nicer to | |
589 | * work around the misbehaving server. If the request included | |
590 | * more than the final unaligned block, truncate it back to an | |
591 | * aligned result; if the request was only the final block, round | |
592 | * up to the full block and change the status to fully-allocated | |
593 | * (always a safe status, even if it loses information). | |
594 | */ | |
611ae1d7 VSO |
595 | if (s->info.min_block && !QEMU_IS_ALIGNED(extent->length, |
596 | s->info.min_block)) { | |
86f8cdf3 | 597 | trace_nbd_parse_blockstatus_compliance("extent length is unaligned"); |
611ae1d7 | 598 | if (extent->length > s->info.min_block) { |
86f8cdf3 | 599 | extent->length = QEMU_ALIGN_DOWN(extent->length, |
611ae1d7 | 600 | s->info.min_block); |
86f8cdf3 | 601 | } else { |
611ae1d7 | 602 | extent->length = s->info.min_block; |
86f8cdf3 VSO |
603 | extent->flags = 0; |
604 | } | |
605 | } | |
606 | ||
607 | /* | |
608 | * We used NBD_CMD_FLAG_REQ_ONE, so the server should not have | |
609 | * sent us any more than one extent, nor should it have included | |
610 | * status beyond our request in that extent. However, it's easy | |
611 | * enough to ignore the server's noncompliance without killing the | |
612 | * connection; just ignore trailing extents, and clamp things to | |
613 | * the length of our request. | |
614 | */ | |
615 | if (chunk->length > sizeof(context_id) + sizeof(*extent)) { | |
616 | trace_nbd_parse_blockstatus_compliance("more than one extent"); | |
617 | } | |
618 | if (extent->length > orig_length) { | |
619 | extent->length = orig_length; | |
620 | trace_nbd_parse_blockstatus_compliance("extent length too large"); | |
621 | } | |
622 | ||
623 | return 0; | |
624 | } | |
625 | ||
626 | /* | |
627 | * nbd_parse_error_payload | |
628 | * on success @errp contains message describing nbd error reply | |
629 | */ | |
630 | static int nbd_parse_error_payload(NBDStructuredReplyChunk *chunk, | |
631 | uint8_t *payload, int *request_ret, | |
632 | Error **errp) | |
633 | { | |
634 | uint32_t error; | |
635 | uint16_t message_size; | |
636 | ||
637 | assert(chunk->type & (1 << 15)); | |
638 | ||
639 | if (chunk->length < sizeof(error) + sizeof(message_size)) { | |
640 | error_setg(errp, | |
641 | "Protocol error: invalid payload for structured error"); | |
642 | return -EINVAL; | |
643 | } | |
644 | ||
645 | error = nbd_errno_to_system_errno(payload_advance32(&payload)); | |
646 | if (error == 0) { | |
647 | error_setg(errp, "Protocol error: server sent structured error chunk " | |
648 | "with error = 0"); | |
649 | return -EINVAL; | |
650 | } | |
651 | ||
652 | *request_ret = -error; | |
653 | message_size = payload_advance16(&payload); | |
654 | ||
655 | if (message_size > chunk->length - sizeof(error) - sizeof(message_size)) { | |
656 | error_setg(errp, "Protocol error: server sent structured error chunk " | |
657 | "with incorrect message size"); | |
658 | return -EINVAL; | |
659 | } | |
660 | ||
661 | /* TODO: Add a trace point to mention the server complaint */ | |
662 | ||
663 | /* TODO handle ERROR_OFFSET */ | |
664 | ||
665 | return 0; | |
666 | } | |
667 | ||
611ae1d7 | 668 | static int nbd_co_receive_offset_data_payload(BDRVNBDState *s, |
86f8cdf3 VSO |
669 | uint64_t orig_offset, |
670 | QEMUIOVector *qiov, Error **errp) | |
671 | { | |
672 | QEMUIOVector sub_qiov; | |
673 | uint64_t offset; | |
674 | size_t data_size; | |
675 | int ret; | |
676 | NBDStructuredReplyChunk *chunk = &s->reply.structured; | |
677 | ||
678 | assert(nbd_reply_is_structured(&s->reply)); | |
679 | ||
680 | /* The NBD spec requires at least one byte of payload */ | |
681 | if (chunk->length <= sizeof(offset)) { | |
682 | error_setg(errp, "Protocol error: invalid payload for " | |
683 | "NBD_REPLY_TYPE_OFFSET_DATA"); | |
684 | return -EINVAL; | |
685 | } | |
686 | ||
687 | if (nbd_read64(s->ioc, &offset, "OFFSET_DATA offset", errp) < 0) { | |
688 | return -EIO; | |
689 | } | |
690 | ||
691 | data_size = chunk->length - sizeof(offset); | |
692 | assert(data_size); | |
693 | if (offset < orig_offset || data_size > qiov->size || | |
694 | offset > orig_offset + qiov->size - data_size) { | |
695 | error_setg(errp, "Protocol error: server sent chunk exceeding requested" | |
696 | " region"); | |
697 | return -EINVAL; | |
698 | } | |
699 | if (s->info.min_block && !QEMU_IS_ALIGNED(data_size, s->info.min_block)) { | |
700 | trace_nbd_structured_read_compliance("data"); | |
701 | } | |
702 | ||
703 | qemu_iovec_init(&sub_qiov, qiov->niov); | |
704 | qemu_iovec_concat(&sub_qiov, qiov, offset - orig_offset, data_size); | |
705 | ret = qio_channel_readv_all(s->ioc, sub_qiov.iov, sub_qiov.niov, errp); | |
706 | qemu_iovec_destroy(&sub_qiov); | |
707 | ||
708 | return ret < 0 ? -EIO : 0; | |
709 | } | |
710 | ||
711 | #define NBD_MAX_MALLOC_PAYLOAD 1000 | |
712 | static coroutine_fn int nbd_co_receive_structured_payload( | |
611ae1d7 | 713 | BDRVNBDState *s, void **payload, Error **errp) |
86f8cdf3 VSO |
714 | { |
715 | int ret; | |
716 | uint32_t len; | |
717 | ||
718 | assert(nbd_reply_is_structured(&s->reply)); | |
719 | ||
720 | len = s->reply.structured.length; | |
721 | ||
722 | if (len == 0) { | |
723 | return 0; | |
724 | } | |
725 | ||
726 | if (payload == NULL) { | |
727 | error_setg(errp, "Unexpected structured payload"); | |
728 | return -EINVAL; | |
729 | } | |
730 | ||
731 | if (len > NBD_MAX_MALLOC_PAYLOAD) { | |
732 | error_setg(errp, "Payload too large"); | |
733 | return -EINVAL; | |
734 | } | |
735 | ||
736 | *payload = g_new(char, len); | |
737 | ret = nbd_read(s->ioc, *payload, len, "structured payload", errp); | |
738 | if (ret < 0) { | |
739 | g_free(*payload); | |
740 | *payload = NULL; | |
741 | return ret; | |
742 | } | |
743 | ||
744 | return 0; | |
745 | } | |
746 | ||
747 | /* | |
748 | * nbd_co_do_receive_one_chunk | |
749 | * for simple reply: | |
750 | * set request_ret to received reply error | |
751 | * if qiov is not NULL: read payload to @qiov | |
752 | * for structured reply chunk: | |
753 | * if error chunk: read payload, set @request_ret, do not set @payload | |
754 | * else if offset_data chunk: read payload data to @qiov, do not set @payload | |
755 | * else: read payload to @payload | |
756 | * | |
757 | * If function fails, @errp contains corresponding error message, and the | |
758 | * connection with the server is suspect. If it returns 0, then the | |
759 | * transaction succeeded (although @request_ret may be a negative errno | |
760 | * corresponding to the server's error reply), and errp is unchanged. | |
761 | */ | |
762 | static coroutine_fn int nbd_co_do_receive_one_chunk( | |
611ae1d7 | 763 | BDRVNBDState *s, uint64_t handle, bool only_structured, |
86f8cdf3 VSO |
764 | int *request_ret, QEMUIOVector *qiov, void **payload, Error **errp) |
765 | { | |
766 | int ret; | |
767 | int i = HANDLE_TO_INDEX(s, handle); | |
768 | void *local_payload = NULL; | |
769 | NBDStructuredReplyChunk *chunk; | |
770 | ||
771 | if (payload) { | |
772 | *payload = NULL; | |
773 | } | |
774 | *request_ret = 0; | |
775 | ||
776 | /* Wait until we're woken up by nbd_connection_entry. */ | |
777 | s->requests[i].receiving = true; | |
778 | qemu_coroutine_yield(); | |
779 | s->requests[i].receiving = false; | |
a34b1e5e | 780 | if (s->state != NBD_CLIENT_CONNECTED) { |
86f8cdf3 VSO |
781 | error_setg(errp, "Connection closed"); |
782 | return -EIO; | |
783 | } | |
784 | assert(s->ioc); | |
785 | ||
786 | assert(s->reply.handle == handle); | |
787 | ||
788 | if (nbd_reply_is_simple(&s->reply)) { | |
789 | if (only_structured) { | |
790 | error_setg(errp, "Protocol error: simple reply when structured " | |
791 | "reply chunk was expected"); | |
792 | return -EINVAL; | |
793 | } | |
794 | ||
795 | *request_ret = -nbd_errno_to_system_errno(s->reply.simple.error); | |
796 | if (*request_ret < 0 || !qiov) { | |
797 | return 0; | |
798 | } | |
799 | ||
800 | return qio_channel_readv_all(s->ioc, qiov->iov, qiov->niov, | |
801 | errp) < 0 ? -EIO : 0; | |
802 | } | |
803 | ||
804 | /* handle structured reply chunk */ | |
805 | assert(s->info.structured_reply); | |
806 | chunk = &s->reply.structured; | |
807 | ||
808 | if (chunk->type == NBD_REPLY_TYPE_NONE) { | |
809 | if (!(chunk->flags & NBD_REPLY_FLAG_DONE)) { | |
810 | error_setg(errp, "Protocol error: NBD_REPLY_TYPE_NONE chunk without" | |
811 | " NBD_REPLY_FLAG_DONE flag set"); | |
812 | return -EINVAL; | |
813 | } | |
814 | if (chunk->length) { | |
815 | error_setg(errp, "Protocol error: NBD_REPLY_TYPE_NONE chunk with" | |
816 | " nonzero length"); | |
817 | return -EINVAL; | |
818 | } | |
819 | return 0; | |
820 | } | |
821 | ||
822 | if (chunk->type == NBD_REPLY_TYPE_OFFSET_DATA) { | |
823 | if (!qiov) { | |
824 | error_setg(errp, "Unexpected NBD_REPLY_TYPE_OFFSET_DATA chunk"); | |
825 | return -EINVAL; | |
826 | } | |
827 | ||
828 | return nbd_co_receive_offset_data_payload(s, s->requests[i].offset, | |
829 | qiov, errp); | |
830 | } | |
831 | ||
832 | if (nbd_reply_type_is_error(chunk->type)) { | |
833 | payload = &local_payload; | |
834 | } | |
835 | ||
836 | ret = nbd_co_receive_structured_payload(s, payload, errp); | |
837 | if (ret < 0) { | |
838 | return ret; | |
839 | } | |
840 | ||
841 | if (nbd_reply_type_is_error(chunk->type)) { | |
842 | ret = nbd_parse_error_payload(chunk, local_payload, request_ret, errp); | |
843 | g_free(local_payload); | |
844 | return ret; | |
845 | } | |
846 | ||
847 | return 0; | |
848 | } | |
849 | ||
850 | /* | |
851 | * nbd_co_receive_one_chunk | |
852 | * Read reply, wake up connection_co and set s->quit if needed. | |
853 | * Return value is a fatal error code or normal nbd reply error code | |
854 | */ | |
855 | static coroutine_fn int nbd_co_receive_one_chunk( | |
611ae1d7 | 856 | BDRVNBDState *s, uint64_t handle, bool only_structured, |
86f8cdf3 VSO |
857 | int *request_ret, QEMUIOVector *qiov, NBDReply *reply, void **payload, |
858 | Error **errp) | |
859 | { | |
860 | int ret = nbd_co_do_receive_one_chunk(s, handle, only_structured, | |
861 | request_ret, qiov, payload, errp); | |
862 | ||
863 | if (ret < 0) { | |
5cf42b1c | 864 | memset(reply, 0, sizeof(*reply)); |
a34b1e5e | 865 | nbd_channel_error(s, ret); |
86f8cdf3 VSO |
866 | } else { |
867 | /* For assert at loop start in nbd_connection_entry */ | |
5cf42b1c | 868 | *reply = s->reply; |
86f8cdf3 | 869 | } |
f7651539 | 870 | s->reply.handle = 0; |
86f8cdf3 | 871 | |
f7651539 VSO |
872 | if (s->connection_co && !s->wait_in_flight) { |
873 | /* | |
874 | * We must check s->wait_in_flight, because we may entered by | |
875 | * nbd_recv_coroutines_wake_all(), in this case we should not | |
876 | * wake connection_co here, it will woken by last request. | |
877 | */ | |
86f8cdf3 VSO |
878 | aio_co_wake(s->connection_co); |
879 | } | |
880 | ||
881 | return ret; | |
882 | } | |
883 | ||
884 | typedef struct NBDReplyChunkIter { | |
885 | int ret; | |
886 | int request_ret; | |
887 | Error *err; | |
888 | bool done, only_structured; | |
889 | } NBDReplyChunkIter; | |
890 | ||
891 | static void nbd_iter_channel_error(NBDReplyChunkIter *iter, | |
892 | int ret, Error **local_err) | |
893 | { | |
d9366135 | 894 | assert(local_err && *local_err); |
86f8cdf3 VSO |
895 | assert(ret < 0); |
896 | ||
897 | if (!iter->ret) { | |
898 | iter->ret = ret; | |
899 | error_propagate(&iter->err, *local_err); | |
900 | } else { | |
901 | error_free(*local_err); | |
902 | } | |
903 | ||
904 | *local_err = NULL; | |
905 | } | |
906 | ||
907 | static void nbd_iter_request_error(NBDReplyChunkIter *iter, int ret) | |
908 | { | |
909 | assert(ret < 0); | |
910 | ||
911 | if (!iter->request_ret) { | |
912 | iter->request_ret = ret; | |
913 | } | |
914 | } | |
915 | ||
916 | /* | |
917 | * NBD_FOREACH_REPLY_CHUNK | |
918 | * The pointer stored in @payload requires g_free() to free it. | |
919 | */ | |
920 | #define NBD_FOREACH_REPLY_CHUNK(s, iter, handle, structured, \ | |
921 | qiov, reply, payload) \ | |
922 | for (iter = (NBDReplyChunkIter) { .only_structured = structured }; \ | |
923 | nbd_reply_chunk_iter_receive(s, &iter, handle, qiov, reply, payload);) | |
924 | ||
925 | /* | |
926 | * nbd_reply_chunk_iter_receive | |
927 | * The pointer stored in @payload requires g_free() to free it. | |
928 | */ | |
611ae1d7 | 929 | static bool nbd_reply_chunk_iter_receive(BDRVNBDState *s, |
86f8cdf3 VSO |
930 | NBDReplyChunkIter *iter, |
931 | uint64_t handle, | |
932 | QEMUIOVector *qiov, NBDReply *reply, | |
933 | void **payload) | |
934 | { | |
935 | int ret, request_ret; | |
936 | NBDReply local_reply; | |
937 | NBDStructuredReplyChunk *chunk; | |
938 | Error *local_err = NULL; | |
a34b1e5e | 939 | if (s->state != NBD_CLIENT_CONNECTED) { |
86f8cdf3 VSO |
940 | error_setg(&local_err, "Connection closed"); |
941 | nbd_iter_channel_error(iter, -EIO, &local_err); | |
942 | goto break_loop; | |
943 | } | |
944 | ||
945 | if (iter->done) { | |
946 | /* Previous iteration was last. */ | |
947 | goto break_loop; | |
948 | } | |
949 | ||
950 | if (reply == NULL) { | |
951 | reply = &local_reply; | |
952 | } | |
953 | ||
954 | ret = nbd_co_receive_one_chunk(s, handle, iter->only_structured, | |
955 | &request_ret, qiov, reply, payload, | |
956 | &local_err); | |
957 | if (ret < 0) { | |
958 | nbd_iter_channel_error(iter, ret, &local_err); | |
959 | } else if (request_ret < 0) { | |
960 | nbd_iter_request_error(iter, request_ret); | |
961 | } | |
962 | ||
963 | /* Do not execute the body of NBD_FOREACH_REPLY_CHUNK for simple reply. */ | |
a34b1e5e | 964 | if (nbd_reply_is_simple(reply) || s->state != NBD_CLIENT_CONNECTED) { |
86f8cdf3 VSO |
965 | goto break_loop; |
966 | } | |
967 | ||
968 | chunk = &reply->structured; | |
969 | iter->only_structured = true; | |
970 | ||
971 | if (chunk->type == NBD_REPLY_TYPE_NONE) { | |
972 | /* NBD_REPLY_FLAG_DONE is already checked in nbd_co_receive_one_chunk */ | |
973 | assert(chunk->flags & NBD_REPLY_FLAG_DONE); | |
974 | goto break_loop; | |
975 | } | |
976 | ||
977 | if (chunk->flags & NBD_REPLY_FLAG_DONE) { | |
978 | /* This iteration is last. */ | |
979 | iter->done = true; | |
980 | } | |
981 | ||
982 | /* Execute the loop body */ | |
983 | return true; | |
984 | ||
985 | break_loop: | |
986 | s->requests[HANDLE_TO_INDEX(s, handle)].coroutine = NULL; | |
987 | ||
988 | qemu_co_mutex_lock(&s->send_mutex); | |
989 | s->in_flight--; | |
f7651539 VSO |
990 | if (s->in_flight == 0 && s->wait_in_flight) { |
991 | aio_co_wake(s->connection_co); | |
992 | } else { | |
993 | qemu_co_queue_next(&s->free_sema); | |
994 | } | |
86f8cdf3 VSO |
995 | qemu_co_mutex_unlock(&s->send_mutex); |
996 | ||
997 | return false; | |
998 | } | |
999 | ||
611ae1d7 | 1000 | static int nbd_co_receive_return_code(BDRVNBDState *s, uint64_t handle, |
86f8cdf3 VSO |
1001 | int *request_ret, Error **errp) |
1002 | { | |
1003 | NBDReplyChunkIter iter; | |
1004 | ||
1005 | NBD_FOREACH_REPLY_CHUNK(s, iter, handle, false, NULL, NULL, NULL) { | |
1006 | /* nbd_reply_chunk_iter_receive does all the work */ | |
1007 | } | |
1008 | ||
1009 | error_propagate(errp, iter.err); | |
1010 | *request_ret = iter.request_ret; | |
1011 | return iter.ret; | |
1012 | } | |
1013 | ||
611ae1d7 | 1014 | static int nbd_co_receive_cmdread_reply(BDRVNBDState *s, uint64_t handle, |
86f8cdf3 VSO |
1015 | uint64_t offset, QEMUIOVector *qiov, |
1016 | int *request_ret, Error **errp) | |
1017 | { | |
1018 | NBDReplyChunkIter iter; | |
1019 | NBDReply reply; | |
1020 | void *payload = NULL; | |
1021 | Error *local_err = NULL; | |
1022 | ||
1023 | NBD_FOREACH_REPLY_CHUNK(s, iter, handle, s->info.structured_reply, | |
1024 | qiov, &reply, &payload) | |
1025 | { | |
1026 | int ret; | |
1027 | NBDStructuredReplyChunk *chunk = &reply.structured; | |
1028 | ||
1029 | assert(nbd_reply_is_structured(&reply)); | |
1030 | ||
1031 | switch (chunk->type) { | |
1032 | case NBD_REPLY_TYPE_OFFSET_DATA: | |
1033 | /* | |
1034 | * special cased in nbd_co_receive_one_chunk, data is already | |
1035 | * in qiov | |
1036 | */ | |
1037 | break; | |
1038 | case NBD_REPLY_TYPE_OFFSET_HOLE: | |
1039 | ret = nbd_parse_offset_hole_payload(s, &reply.structured, payload, | |
1040 | offset, qiov, &local_err); | |
1041 | if (ret < 0) { | |
a34b1e5e | 1042 | nbd_channel_error(s, ret); |
86f8cdf3 VSO |
1043 | nbd_iter_channel_error(&iter, ret, &local_err); |
1044 | } | |
1045 | break; | |
1046 | default: | |
1047 | if (!nbd_reply_type_is_error(chunk->type)) { | |
1048 | /* not allowed reply type */ | |
a34b1e5e | 1049 | nbd_channel_error(s, -EINVAL); |
86f8cdf3 VSO |
1050 | error_setg(&local_err, |
1051 | "Unexpected reply type: %d (%s) for CMD_READ", | |
1052 | chunk->type, nbd_reply_type_lookup(chunk->type)); | |
1053 | nbd_iter_channel_error(&iter, -EINVAL, &local_err); | |
1054 | } | |
1055 | } | |
1056 | ||
1057 | g_free(payload); | |
1058 | payload = NULL; | |
1059 | } | |
1060 | ||
1061 | error_propagate(errp, iter.err); | |
1062 | *request_ret = iter.request_ret; | |
1063 | return iter.ret; | |
1064 | } | |
1065 | ||
611ae1d7 | 1066 | static int nbd_co_receive_blockstatus_reply(BDRVNBDState *s, |
86f8cdf3 VSO |
1067 | uint64_t handle, uint64_t length, |
1068 | NBDExtent *extent, | |
1069 | int *request_ret, Error **errp) | |
1070 | { | |
1071 | NBDReplyChunkIter iter; | |
1072 | NBDReply reply; | |
1073 | void *payload = NULL; | |
1074 | Error *local_err = NULL; | |
1075 | bool received = false; | |
1076 | ||
1077 | assert(!extent->length); | |
1078 | NBD_FOREACH_REPLY_CHUNK(s, iter, handle, false, NULL, &reply, &payload) { | |
1079 | int ret; | |
1080 | NBDStructuredReplyChunk *chunk = &reply.structured; | |
1081 | ||
1082 | assert(nbd_reply_is_structured(&reply)); | |
1083 | ||
1084 | switch (chunk->type) { | |
1085 | case NBD_REPLY_TYPE_BLOCK_STATUS: | |
1086 | if (received) { | |
a34b1e5e | 1087 | nbd_channel_error(s, -EINVAL); |
86f8cdf3 VSO |
1088 | error_setg(&local_err, "Several BLOCK_STATUS chunks in reply"); |
1089 | nbd_iter_channel_error(&iter, -EINVAL, &local_err); | |
1090 | } | |
1091 | received = true; | |
1092 | ||
1093 | ret = nbd_parse_blockstatus_payload(s, &reply.structured, | |
1094 | payload, length, extent, | |
1095 | &local_err); | |
1096 | if (ret < 0) { | |
a34b1e5e | 1097 | nbd_channel_error(s, ret); |
86f8cdf3 VSO |
1098 | nbd_iter_channel_error(&iter, ret, &local_err); |
1099 | } | |
1100 | break; | |
1101 | default: | |
1102 | if (!nbd_reply_type_is_error(chunk->type)) { | |
a34b1e5e | 1103 | nbd_channel_error(s, -EINVAL); |
86f8cdf3 VSO |
1104 | error_setg(&local_err, |
1105 | "Unexpected reply type: %d (%s) " | |
1106 | "for CMD_BLOCK_STATUS", | |
1107 | chunk->type, nbd_reply_type_lookup(chunk->type)); | |
1108 | nbd_iter_channel_error(&iter, -EINVAL, &local_err); | |
1109 | } | |
1110 | } | |
1111 | ||
1112 | g_free(payload); | |
1113 | payload = NULL; | |
1114 | } | |
1115 | ||
1116 | if (!extent->length && !iter.request_ret) { | |
1117 | error_setg(&local_err, "Server did not reply with any status extents"); | |
1118 | nbd_iter_channel_error(&iter, -EIO, &local_err); | |
1119 | } | |
1120 | ||
1121 | error_propagate(errp, iter.err); | |
1122 | *request_ret = iter.request_ret; | |
1123 | return iter.ret; | |
1124 | } | |
1125 | ||
1126 | static int nbd_co_request(BlockDriverState *bs, NBDRequest *request, | |
1127 | QEMUIOVector *write_qiov) | |
1128 | { | |
1129 | int ret, request_ret; | |
1130 | Error *local_err = NULL; | |
611ae1d7 | 1131 | BDRVNBDState *s = (BDRVNBDState *)bs->opaque; |
86f8cdf3 VSO |
1132 | |
1133 | assert(request->type != NBD_CMD_READ); | |
1134 | if (write_qiov) { | |
1135 | assert(request->type == NBD_CMD_WRITE); | |
1136 | assert(request->len == iov_size(write_qiov->iov, write_qiov->niov)); | |
1137 | } else { | |
1138 | assert(request->type != NBD_CMD_WRITE); | |
1139 | } | |
86f8cdf3 | 1140 | |
f7651539 VSO |
1141 | do { |
1142 | ret = nbd_co_send_request(bs, request, write_qiov); | |
1143 | if (ret < 0) { | |
1144 | continue; | |
1145 | } | |
1146 | ||
1147 | ret = nbd_co_receive_return_code(s, request->handle, | |
1148 | &request_ret, &local_err); | |
1149 | if (local_err) { | |
1150 | trace_nbd_co_request_fail(request->from, request->len, | |
1151 | request->handle, request->flags, | |
1152 | request->type, | |
1153 | nbd_cmd_lookup(request->type), | |
1154 | ret, error_get_pretty(local_err)); | |
1155 | error_free(local_err); | |
1156 | local_err = NULL; | |
1157 | } | |
1158 | } while (ret < 0 && nbd_client_connecting_wait(s)); | |
1159 | ||
86f8cdf3 VSO |
1160 | return ret ? ret : request_ret; |
1161 | } | |
1162 | ||
1163 | static int nbd_client_co_preadv(BlockDriverState *bs, uint64_t offset, | |
1164 | uint64_t bytes, QEMUIOVector *qiov, int flags) | |
1165 | { | |
1166 | int ret, request_ret; | |
1167 | Error *local_err = NULL; | |
611ae1d7 | 1168 | BDRVNBDState *s = (BDRVNBDState *)bs->opaque; |
86f8cdf3 VSO |
1169 | NBDRequest request = { |
1170 | .type = NBD_CMD_READ, | |
1171 | .from = offset, | |
1172 | .len = bytes, | |
1173 | }; | |
1174 | ||
1175 | assert(bytes <= NBD_MAX_BUFFER_SIZE); | |
1176 | assert(!flags); | |
1177 | ||
1178 | if (!bytes) { | |
1179 | return 0; | |
1180 | } | |
1181 | /* | |
1182 | * Work around the fact that the block layer doesn't do | |
1183 | * byte-accurate sizing yet - if the read exceeds the server's | |
1184 | * advertised size because the block layer rounded size up, then | |
1185 | * truncate the request to the server and tail-pad with zero. | |
1186 | */ | |
611ae1d7 | 1187 | if (offset >= s->info.size) { |
86f8cdf3 VSO |
1188 | assert(bytes < BDRV_SECTOR_SIZE); |
1189 | qemu_iovec_memset(qiov, 0, 0, bytes); | |
1190 | return 0; | |
1191 | } | |
611ae1d7 VSO |
1192 | if (offset + bytes > s->info.size) { |
1193 | uint64_t slop = offset + bytes - s->info.size; | |
86f8cdf3 VSO |
1194 | |
1195 | assert(slop < BDRV_SECTOR_SIZE); | |
1196 | qemu_iovec_memset(qiov, bytes - slop, 0, slop); | |
1197 | request.len -= slop; | |
1198 | } | |
1199 | ||
f7651539 VSO |
1200 | do { |
1201 | ret = nbd_co_send_request(bs, &request, NULL); | |
1202 | if (ret < 0) { | |
1203 | continue; | |
1204 | } | |
1205 | ||
1206 | ret = nbd_co_receive_cmdread_reply(s, request.handle, offset, qiov, | |
1207 | &request_ret, &local_err); | |
1208 | if (local_err) { | |
1209 | trace_nbd_co_request_fail(request.from, request.len, request.handle, | |
1210 | request.flags, request.type, | |
1211 | nbd_cmd_lookup(request.type), | |
1212 | ret, error_get_pretty(local_err)); | |
1213 | error_free(local_err); | |
1214 | local_err = NULL; | |
1215 | } | |
1216 | } while (ret < 0 && nbd_client_connecting_wait(s)); | |
86f8cdf3 | 1217 | |
86f8cdf3 VSO |
1218 | return ret ? ret : request_ret; |
1219 | } | |
1220 | ||
1221 | static int nbd_client_co_pwritev(BlockDriverState *bs, uint64_t offset, | |
1222 | uint64_t bytes, QEMUIOVector *qiov, int flags) | |
1223 | { | |
611ae1d7 | 1224 | BDRVNBDState *s = (BDRVNBDState *)bs->opaque; |
86f8cdf3 VSO |
1225 | NBDRequest request = { |
1226 | .type = NBD_CMD_WRITE, | |
1227 | .from = offset, | |
1228 | .len = bytes, | |
1229 | }; | |
1230 | ||
611ae1d7 | 1231 | assert(!(s->info.flags & NBD_FLAG_READ_ONLY)); |
86f8cdf3 | 1232 | if (flags & BDRV_REQ_FUA) { |
611ae1d7 | 1233 | assert(s->info.flags & NBD_FLAG_SEND_FUA); |
86f8cdf3 VSO |
1234 | request.flags |= NBD_CMD_FLAG_FUA; |
1235 | } | |
1236 | ||
1237 | assert(bytes <= NBD_MAX_BUFFER_SIZE); | |
1238 | ||
1239 | if (!bytes) { | |
1240 | return 0; | |
1241 | } | |
1242 | return nbd_co_request(bs, &request, qiov); | |
1243 | } | |
1244 | ||
1245 | static int nbd_client_co_pwrite_zeroes(BlockDriverState *bs, int64_t offset, | |
1246 | int bytes, BdrvRequestFlags flags) | |
1247 | { | |
611ae1d7 | 1248 | BDRVNBDState *s = (BDRVNBDState *)bs->opaque; |
86f8cdf3 VSO |
1249 | NBDRequest request = { |
1250 | .type = NBD_CMD_WRITE_ZEROES, | |
1251 | .from = offset, | |
1252 | .len = bytes, | |
1253 | }; | |
1254 | ||
611ae1d7 VSO |
1255 | assert(!(s->info.flags & NBD_FLAG_READ_ONLY)); |
1256 | if (!(s->info.flags & NBD_FLAG_SEND_WRITE_ZEROES)) { | |
86f8cdf3 VSO |
1257 | return -ENOTSUP; |
1258 | } | |
1259 | ||
1260 | if (flags & BDRV_REQ_FUA) { | |
611ae1d7 | 1261 | assert(s->info.flags & NBD_FLAG_SEND_FUA); |
86f8cdf3 VSO |
1262 | request.flags |= NBD_CMD_FLAG_FUA; |
1263 | } | |
1264 | if (!(flags & BDRV_REQ_MAY_UNMAP)) { | |
1265 | request.flags |= NBD_CMD_FLAG_NO_HOLE; | |
1266 | } | |
f061656c EB |
1267 | if (flags & BDRV_REQ_NO_FALLBACK) { |
1268 | assert(s->info.flags & NBD_FLAG_SEND_FAST_ZERO); | |
1269 | request.flags |= NBD_CMD_FLAG_FAST_ZERO; | |
1270 | } | |
86f8cdf3 VSO |
1271 | |
1272 | if (!bytes) { | |
1273 | return 0; | |
1274 | } | |
1275 | return nbd_co_request(bs, &request, NULL); | |
1276 | } | |
1277 | ||
1278 | static int nbd_client_co_flush(BlockDriverState *bs) | |
1279 | { | |
611ae1d7 | 1280 | BDRVNBDState *s = (BDRVNBDState *)bs->opaque; |
86f8cdf3 VSO |
1281 | NBDRequest request = { .type = NBD_CMD_FLUSH }; |
1282 | ||
611ae1d7 | 1283 | if (!(s->info.flags & NBD_FLAG_SEND_FLUSH)) { |
86f8cdf3 VSO |
1284 | return 0; |
1285 | } | |
1286 | ||
1287 | request.from = 0; | |
1288 | request.len = 0; | |
1289 | ||
1290 | return nbd_co_request(bs, &request, NULL); | |
1291 | } | |
1292 | ||
1293 | static int nbd_client_co_pdiscard(BlockDriverState *bs, int64_t offset, | |
1294 | int bytes) | |
1295 | { | |
611ae1d7 | 1296 | BDRVNBDState *s = (BDRVNBDState *)bs->opaque; |
86f8cdf3 VSO |
1297 | NBDRequest request = { |
1298 | .type = NBD_CMD_TRIM, | |
1299 | .from = offset, | |
1300 | .len = bytes, | |
1301 | }; | |
1302 | ||
611ae1d7 VSO |
1303 | assert(!(s->info.flags & NBD_FLAG_READ_ONLY)); |
1304 | if (!(s->info.flags & NBD_FLAG_SEND_TRIM) || !bytes) { | |
86f8cdf3 VSO |
1305 | return 0; |
1306 | } | |
1307 | ||
1308 | return nbd_co_request(bs, &request, NULL); | |
1309 | } | |
1310 | ||
1311 | static int coroutine_fn nbd_client_co_block_status( | |
1312 | BlockDriverState *bs, bool want_zero, int64_t offset, int64_t bytes, | |
1313 | int64_t *pnum, int64_t *map, BlockDriverState **file) | |
1314 | { | |
1315 | int ret, request_ret; | |
1316 | NBDExtent extent = { 0 }; | |
611ae1d7 | 1317 | BDRVNBDState *s = (BDRVNBDState *)bs->opaque; |
86f8cdf3 VSO |
1318 | Error *local_err = NULL; |
1319 | ||
1320 | NBDRequest request = { | |
1321 | .type = NBD_CMD_BLOCK_STATUS, | |
1322 | .from = offset, | |
6bf792b4 | 1323 | .len = MIN(QEMU_ALIGN_DOWN(INT_MAX, bs->bl.request_alignment), |
611ae1d7 | 1324 | MIN(bytes, s->info.size - offset)), |
86f8cdf3 VSO |
1325 | .flags = NBD_CMD_FLAG_REQ_ONE, |
1326 | }; | |
1327 | ||
611ae1d7 | 1328 | if (!s->info.base_allocation) { |
86f8cdf3 VSO |
1329 | *pnum = bytes; |
1330 | *map = offset; | |
1331 | *file = bs; | |
1332 | return BDRV_BLOCK_DATA | BDRV_BLOCK_OFFSET_VALID; | |
1333 | } | |
1334 | ||
1335 | /* | |
1336 | * Work around the fact that the block layer doesn't do | |
1337 | * byte-accurate sizing yet - if the status request exceeds the | |
1338 | * server's advertised size because the block layer rounded size | |
1339 | * up, we truncated the request to the server (above), or are | |
1340 | * called on just the hole. | |
1341 | */ | |
611ae1d7 | 1342 | if (offset >= s->info.size) { |
86f8cdf3 VSO |
1343 | *pnum = bytes; |
1344 | assert(bytes < BDRV_SECTOR_SIZE); | |
1345 | /* Intentionally don't report offset_valid for the hole */ | |
1346 | return BDRV_BLOCK_ZERO; | |
1347 | } | |
1348 | ||
611ae1d7 VSO |
1349 | if (s->info.min_block) { |
1350 | assert(QEMU_IS_ALIGNED(request.len, s->info.min_block)); | |
86f8cdf3 | 1351 | } |
f7651539 VSO |
1352 | do { |
1353 | ret = nbd_co_send_request(bs, &request, NULL); | |
1354 | if (ret < 0) { | |
1355 | continue; | |
1356 | } | |
1357 | ||
1358 | ret = nbd_co_receive_blockstatus_reply(s, request.handle, bytes, | |
1359 | &extent, &request_ret, | |
1360 | &local_err); | |
1361 | if (local_err) { | |
1362 | trace_nbd_co_request_fail(request.from, request.len, request.handle, | |
1363 | request.flags, request.type, | |
1364 | nbd_cmd_lookup(request.type), | |
1365 | ret, error_get_pretty(local_err)); | |
1366 | error_free(local_err); | |
1367 | local_err = NULL; | |
1368 | } | |
1369 | } while (ret < 0 && nbd_client_connecting_wait(s)); | |
86f8cdf3 | 1370 | |
86f8cdf3 VSO |
1371 | if (ret < 0 || request_ret < 0) { |
1372 | return ret ? ret : request_ret; | |
1373 | } | |
1374 | ||
1375 | assert(extent.length); | |
1376 | *pnum = extent.length; | |
1377 | *map = offset; | |
1378 | *file = bs; | |
1379 | return (extent.flags & NBD_STATE_HOLE ? 0 : BDRV_BLOCK_DATA) | | |
1380 | (extent.flags & NBD_STATE_ZERO ? BDRV_BLOCK_ZERO : 0) | | |
1381 | BDRV_BLOCK_OFFSET_VALID; | |
1382 | } | |
1383 | ||
e99754b4 ML |
1384 | static int nbd_client_reopen_prepare(BDRVReopenState *state, |
1385 | BlockReopenQueue *queue, Error **errp) | |
1386 | { | |
1387 | BDRVNBDState *s = (BDRVNBDState *)state->bs->opaque; | |
1388 | ||
1389 | if ((state->flags & BDRV_O_RDWR) && (s->info.flags & NBD_FLAG_READ_ONLY)) { | |
1390 | error_setg(errp, "Can't reopen read-only NBD mount as read/write"); | |
1391 | return -EACCES; | |
1392 | } | |
1393 | return 0; | |
1394 | } | |
1395 | ||
86f8cdf3 VSO |
1396 | static void nbd_client_close(BlockDriverState *bs) |
1397 | { | |
611ae1d7 | 1398 | BDRVNBDState *s = (BDRVNBDState *)bs->opaque; |
86f8cdf3 VSO |
1399 | NBDRequest request = { .type = NBD_CMD_DISC }; |
1400 | ||
f7651539 VSO |
1401 | if (s->ioc) { |
1402 | nbd_send_request(s->ioc, &request); | |
1403 | } | |
86f8cdf3 VSO |
1404 | |
1405 | nbd_teardown_connection(bs); | |
1406 | } | |
1407 | ||
1408 | static QIOChannelSocket *nbd_establish_connection(SocketAddress *saddr, | |
1409 | Error **errp) | |
1410 | { | |
1411 | QIOChannelSocket *sioc; | |
1412 | Error *local_err = NULL; | |
1413 | ||
1414 | sioc = qio_channel_socket_new(); | |
1415 | qio_channel_set_name(QIO_CHANNEL(sioc), "nbd-client"); | |
1416 | ||
1417 | qio_channel_socket_connect_sync(sioc, saddr, &local_err); | |
1418 | if (local_err) { | |
1419 | object_unref(OBJECT(sioc)); | |
1420 | error_propagate(errp, local_err); | |
1421 | return NULL; | |
1422 | } | |
1423 | ||
1424 | qio_channel_set_delay(QIO_CHANNEL(sioc), false); | |
1425 | ||
1426 | return sioc; | |
1427 | } | |
1428 | ||
8f071c9d | 1429 | static int nbd_client_connect(BlockDriverState *bs, Error **errp) |
86f8cdf3 | 1430 | { |
611ae1d7 | 1431 | BDRVNBDState *s = (BDRVNBDState *)bs->opaque; |
a8e2bb6a | 1432 | AioContext *aio_context = bdrv_get_aio_context(bs); |
86f8cdf3 VSO |
1433 | int ret; |
1434 | ||
1435 | /* | |
1436 | * establish TCP connection, return error if it fails | |
1437 | * TODO: Configurable retry-until-timeout behaviour. | |
1438 | */ | |
8f071c9d | 1439 | QIOChannelSocket *sioc = nbd_establish_connection(s->saddr, errp); |
86f8cdf3 VSO |
1440 | |
1441 | if (!sioc) { | |
1442 | return -ECONNREFUSED; | |
1443 | } | |
1444 | ||
1445 | /* NBD handshake */ | |
8f071c9d | 1446 | trace_nbd_client_connect(s->export); |
a8e2bb6a VSO |
1447 | qio_channel_set_blocking(QIO_CHANNEL(sioc), false, NULL); |
1448 | qio_channel_attach_aio_context(QIO_CHANNEL(sioc), aio_context); | |
86f8cdf3 | 1449 | |
611ae1d7 VSO |
1450 | s->info.request_sizes = true; |
1451 | s->info.structured_reply = true; | |
1452 | s->info.base_allocation = true; | |
8f071c9d VSO |
1453 | s->info.x_dirty_bitmap = g_strdup(s->x_dirty_bitmap); |
1454 | s->info.name = g_strdup(s->export ?: ""); | |
1455 | ret = nbd_receive_negotiate(aio_context, QIO_CHANNEL(sioc), s->tlscreds, | |
1456 | s->hostname, &s->ioc, &s->info, errp); | |
611ae1d7 VSO |
1457 | g_free(s->info.x_dirty_bitmap); |
1458 | g_free(s->info.name); | |
86f8cdf3 VSO |
1459 | if (ret < 0) { |
1460 | object_unref(OBJECT(sioc)); | |
1461 | return ret; | |
1462 | } | |
8f071c9d | 1463 | if (s->x_dirty_bitmap && !s->info.base_allocation) { |
86f8cdf3 | 1464 | error_setg(errp, "requested x-dirty-bitmap %s not found", |
8f071c9d | 1465 | s->x_dirty_bitmap); |
86f8cdf3 VSO |
1466 | ret = -EINVAL; |
1467 | goto fail; | |
1468 | } | |
611ae1d7 | 1469 | if (s->info.flags & NBD_FLAG_READ_ONLY) { |
86f8cdf3 VSO |
1470 | ret = bdrv_apply_auto_read_only(bs, "NBD export is read-only", errp); |
1471 | if (ret < 0) { | |
1472 | goto fail; | |
1473 | } | |
1474 | } | |
611ae1d7 | 1475 | if (s->info.flags & NBD_FLAG_SEND_FUA) { |
86f8cdf3 VSO |
1476 | bs->supported_write_flags = BDRV_REQ_FUA; |
1477 | bs->supported_zero_flags |= BDRV_REQ_FUA; | |
1478 | } | |
611ae1d7 | 1479 | if (s->info.flags & NBD_FLAG_SEND_WRITE_ZEROES) { |
86f8cdf3 | 1480 | bs->supported_zero_flags |= BDRV_REQ_MAY_UNMAP; |
f061656c EB |
1481 | if (s->info.flags & NBD_FLAG_SEND_FAST_ZERO) { |
1482 | bs->supported_zero_flags |= BDRV_REQ_NO_FALLBACK; | |
1483 | } | |
86f8cdf3 VSO |
1484 | } |
1485 | ||
611ae1d7 | 1486 | s->sioc = sioc; |
86f8cdf3 | 1487 | |
611ae1d7 VSO |
1488 | if (!s->ioc) { |
1489 | s->ioc = QIO_CHANNEL(sioc); | |
1490 | object_ref(OBJECT(s->ioc)); | |
86f8cdf3 VSO |
1491 | } |
1492 | ||
8f071c9d | 1493 | trace_nbd_client_connect_success(s->export); |
86f8cdf3 VSO |
1494 | |
1495 | return 0; | |
1496 | ||
1497 | fail: | |
1498 | /* | |
a8e2bb6a VSO |
1499 | * We have connected, but must fail for other reasons. |
1500 | * Send NBD_CMD_DISC as a courtesy to the server. | |
86f8cdf3 VSO |
1501 | */ |
1502 | { | |
1503 | NBDRequest request = { .type = NBD_CMD_DISC }; | |
1504 | ||
611ae1d7 | 1505 | nbd_send_request(s->ioc ?: QIO_CHANNEL(sioc), &request); |
86f8cdf3 VSO |
1506 | |
1507 | object_unref(OBJECT(sioc)); | |
1508 | ||
1509 | return ret; | |
1510 | } | |
1511 | } | |
1512 | ||
8f071c9d VSO |
1513 | /* |
1514 | * Parse nbd_open options | |
1515 | */ | |
86f8cdf3 | 1516 | |
f53a1feb | 1517 | static int nbd_parse_uri(const char *filename, QDict *options) |
1d7d2a9d PB |
1518 | { |
1519 | URI *uri; | |
1520 | const char *p; | |
1521 | QueryParams *qp = NULL; | |
1522 | int ret = 0; | |
f53a1feb | 1523 | bool is_unix; |
1d7d2a9d PB |
1524 | |
1525 | uri = uri_parse(filename); | |
1526 | if (!uri) { | |
1527 | return -EINVAL; | |
1528 | } | |
1529 | ||
1530 | /* transport */ | |
f69165a8 | 1531 | if (!g_strcmp0(uri->scheme, "nbd")) { |
f53a1feb | 1532 | is_unix = false; |
f69165a8 | 1533 | } else if (!g_strcmp0(uri->scheme, "nbd+tcp")) { |
f53a1feb | 1534 | is_unix = false; |
f69165a8 | 1535 | } else if (!g_strcmp0(uri->scheme, "nbd+unix")) { |
f53a1feb | 1536 | is_unix = true; |
1d7d2a9d PB |
1537 | } else { |
1538 | ret = -EINVAL; | |
1539 | goto out; | |
1540 | } | |
1541 | ||
2485f22f EB |
1542 | p = uri->path ? uri->path : ""; |
1543 | if (p[0] == '/') { | |
1544 | p++; | |
1545 | } | |
1d7d2a9d | 1546 | if (p[0]) { |
46f5ac20 | 1547 | qdict_put_str(options, "export", p); |
1d7d2a9d PB |
1548 | } |
1549 | ||
1550 | qp = query_params_parse(uri->query); | |
f53a1feb | 1551 | if (qp->n > 1 || (is_unix && !qp->n) || (!is_unix && qp->n)) { |
1d7d2a9d PB |
1552 | ret = -EINVAL; |
1553 | goto out; | |
1554 | } | |
1555 | ||
f53a1feb | 1556 | if (is_unix) { |
1d7d2a9d PB |
1557 | /* nbd+unix:///export?socket=path */ |
1558 | if (uri->server || uri->port || strcmp(qp->p[0].name, "socket")) { | |
1559 | ret = -EINVAL; | |
1560 | goto out; | |
1561 | } | |
46f5ac20 EB |
1562 | qdict_put_str(options, "server.type", "unix"); |
1563 | qdict_put_str(options, "server.path", qp->p[0].value); | |
1d7d2a9d | 1564 | } else { |
23307908 | 1565 | QString *host; |
f84d431b HR |
1566 | char *port_str; |
1567 | ||
bebbf7fa | 1568 | /* nbd[+tcp]://host[:port]/export */ |
1d7d2a9d PB |
1569 | if (!uri->server) { |
1570 | ret = -EINVAL; | |
1571 | goto out; | |
1572 | } | |
f17c90be | 1573 | |
23307908 JT |
1574 | /* strip braces from literal IPv6 address */ |
1575 | if (uri->server[0] == '[') { | |
1576 | host = qstring_from_substr(uri->server, 1, | |
ba891d68 | 1577 | strlen(uri->server) - 1); |
23307908 JT |
1578 | } else { |
1579 | host = qstring_from_str(uri->server); | |
1580 | } | |
1581 | ||
46f5ac20 | 1582 | qdict_put_str(options, "server.type", "inet"); |
9445673e | 1583 | qdict_put(options, "server.host", host); |
f84d431b HR |
1584 | |
1585 | port_str = g_strdup_printf("%d", uri->port ?: NBD_DEFAULT_PORT); | |
46f5ac20 | 1586 | qdict_put_str(options, "server.port", port_str); |
f84d431b | 1587 | g_free(port_str); |
1d7d2a9d PB |
1588 | } |
1589 | ||
1590 | out: | |
1591 | if (qp) { | |
1592 | query_params_free(qp); | |
1593 | } | |
1594 | uri_free(uri); | |
1595 | return ret; | |
1596 | } | |
1597 | ||
48c38e0b HR |
1598 | static bool nbd_has_filename_options_conflict(QDict *options, Error **errp) |
1599 | { | |
1600 | const QDictEntry *e; | |
1601 | ||
1602 | for (e = qdict_first(options); e; e = qdict_next(options, e)) { | |
1603 | if (!strcmp(e->key, "host") || | |
1604 | !strcmp(e->key, "port") || | |
1605 | !strcmp(e->key, "path") || | |
491d6c7c HR |
1606 | !strcmp(e->key, "export") || |
1607 | strstart(e->key, "server.", NULL)) | |
48c38e0b HR |
1608 | { |
1609 | error_setg(errp, "Option '%s' cannot be used with a file name", | |
1610 | e->key); | |
1611 | return true; | |
1612 | } | |
1613 | } | |
1614 | ||
1615 | return false; | |
1616 | } | |
1617 | ||
6963a30d KW |
1618 | static void nbd_parse_filename(const char *filename, QDict *options, |
1619 | Error **errp) | |
75818250 | 1620 | { |
df18c04e | 1621 | g_autofree char *file = NULL; |
33897dc7 NT |
1622 | char *export_name; |
1623 | const char *host_spec; | |
75818250 | 1624 | const char *unixpath; |
75818250 | 1625 | |
48c38e0b | 1626 | if (nbd_has_filename_options_conflict(options, errp)) { |
681e7ad0 KW |
1627 | return; |
1628 | } | |
1629 | ||
1d7d2a9d | 1630 | if (strstr(filename, "://")) { |
6963a30d KW |
1631 | int ret = nbd_parse_uri(filename, options); |
1632 | if (ret < 0) { | |
1633 | error_setg(errp, "No valid URL specified"); | |
1634 | } | |
1635 | return; | |
1d7d2a9d PB |
1636 | } |
1637 | ||
7267c094 | 1638 | file = g_strdup(filename); |
1d45f8b5 | 1639 | |
33897dc7 NT |
1640 | export_name = strstr(file, EN_OPTSTR); |
1641 | if (export_name) { | |
1642 | if (export_name[strlen(EN_OPTSTR)] == 0) { | |
df18c04e | 1643 | return; |
1d45f8b5 | 1644 | } |
33897dc7 NT |
1645 | export_name[0] = 0; /* truncate 'file' */ |
1646 | export_name += strlen(EN_OPTSTR); | |
f53a1feb | 1647 | |
46f5ac20 | 1648 | qdict_put_str(options, "export", export_name); |
1d45f8b5 LV |
1649 | } |
1650 | ||
33897dc7 NT |
1651 | /* extract the host_spec - fail if it's not nbd:... */ |
1652 | if (!strstart(file, "nbd:", &host_spec)) { | |
6963a30d | 1653 | error_setg(errp, "File name string for NBD must start with 'nbd:'"); |
df18c04e | 1654 | return; |
1d45f8b5 | 1655 | } |
75818250 | 1656 | |
f53a1feb | 1657 | if (!*host_spec) { |
df18c04e | 1658 | return; |
f53a1feb KW |
1659 | } |
1660 | ||
33897dc7 NT |
1661 | /* are we a UNIX or TCP socket? */ |
1662 | if (strstart(host_spec, "unix:", &unixpath)) { | |
46f5ac20 EB |
1663 | qdict_put_str(options, "server.type", "unix"); |
1664 | qdict_put_str(options, "server.path", unixpath); | |
75818250 | 1665 | } else { |
0785bd7a | 1666 | InetSocketAddress *addr = g_new(InetSocketAddress, 1); |
f53a1feb | 1667 | |
0785bd7a MA |
1668 | if (inet_parse(addr, host_spec, errp)) { |
1669 | goto out_inet; | |
f17c90be | 1670 | } |
75818250 | 1671 | |
46f5ac20 EB |
1672 | qdict_put_str(options, "server.type", "inet"); |
1673 | qdict_put_str(options, "server.host", addr->host); | |
1674 | qdict_put_str(options, "server.port", addr->port); | |
0785bd7a | 1675 | out_inet: |
f53a1feb KW |
1676 | qapi_free_InetSocketAddress(addr); |
1677 | } | |
f53a1feb KW |
1678 | } |
1679 | ||
491d6c7c HR |
1680 | static bool nbd_process_legacy_socket_options(QDict *output_options, |
1681 | QemuOpts *legacy_opts, | |
1682 | Error **errp) | |
f53a1feb | 1683 | { |
491d6c7c HR |
1684 | const char *path = qemu_opt_get(legacy_opts, "path"); |
1685 | const char *host = qemu_opt_get(legacy_opts, "host"); | |
1686 | const char *port = qemu_opt_get(legacy_opts, "port"); | |
1687 | const QDictEntry *e; | |
f53a1feb | 1688 | |
491d6c7c HR |
1689 | if (!path && !host && !port) { |
1690 | return true; | |
1691 | } | |
03504d05 | 1692 | |
491d6c7c HR |
1693 | for (e = qdict_first(output_options); e; e = qdict_next(output_options, e)) |
1694 | { | |
1695 | if (strstart(e->key, "server.", NULL)) { | |
1696 | error_setg(errp, "Cannot use 'server' and path/host/port at the " | |
1697 | "same time"); | |
1698 | return false; | |
681e7ad0 | 1699 | } |
33897dc7 | 1700 | } |
491d6c7c HR |
1701 | |
1702 | if (path && host) { | |
1703 | error_setg(errp, "path and host may not be used at the same time"); | |
1704 | return false; | |
1705 | } else if (path) { | |
1706 | if (port) { | |
1707 | error_setg(errp, "port may not be used without host"); | |
1708 | return false; | |
1709 | } | |
1710 | ||
46f5ac20 EB |
1711 | qdict_put_str(output_options, "server.type", "unix"); |
1712 | qdict_put_str(output_options, "server.path", path); | |
491d6c7c | 1713 | } else if (host) { |
46f5ac20 EB |
1714 | qdict_put_str(output_options, "server.type", "inet"); |
1715 | qdict_put_str(output_options, "server.host", host); | |
1716 | qdict_put_str(output_options, "server.port", | |
1717 | port ?: stringify(NBD_DEFAULT_PORT)); | |
442045cb | 1718 | } |
f53a1feb | 1719 | |
491d6c7c HR |
1720 | return true; |
1721 | } | |
f53a1feb | 1722 | |
62cf396b MA |
1723 | static SocketAddress *nbd_config(BDRVNBDState *s, QDict *options, |
1724 | Error **errp) | |
491d6c7c | 1725 | { |
62cf396b | 1726 | SocketAddress *saddr = NULL; |
491d6c7c | 1727 | QDict *addr = NULL; |
491d6c7c HR |
1728 | Visitor *iv = NULL; |
1729 | Error *local_err = NULL; | |
1730 | ||
1731 | qdict_extract_subqdict(options, &addr, "server."); | |
1732 | if (!qdict_size(addr)) { | |
1733 | error_setg(errp, "NBD server address missing"); | |
1734 | goto done; | |
f53a1feb KW |
1735 | } |
1736 | ||
af91062e MA |
1737 | iv = qobject_input_visitor_new_flat_confused(addr, errp); |
1738 | if (!iv) { | |
491d6c7c HR |
1739 | goto done; |
1740 | } | |
bebbf7fa | 1741 | |
62cf396b | 1742 | visit_type_SocketAddress(iv, NULL, &saddr, &local_err); |
491d6c7c HR |
1743 | if (local_err) { |
1744 | error_propagate(errp, local_err); | |
1745 | goto done; | |
1746 | } | |
7a5ed437 | 1747 | |
491d6c7c | 1748 | done: |
cb3e7f08 | 1749 | qobject_unref(addr); |
491d6c7c | 1750 | visit_free(iv); |
7a5ed437 | 1751 | return saddr; |
33897dc7 | 1752 | } |
1d45f8b5 | 1753 | |
75822a12 DB |
1754 | static QCryptoTLSCreds *nbd_get_tls_creds(const char *id, Error **errp) |
1755 | { | |
1756 | Object *obj; | |
1757 | QCryptoTLSCreds *creds; | |
1758 | ||
1759 | obj = object_resolve_path_component( | |
1760 | object_get_objects_root(), id); | |
1761 | if (!obj) { | |
1762 | error_setg(errp, "No TLS credentials with id '%s'", | |
1763 | id); | |
1764 | return NULL; | |
1765 | } | |
1766 | creds = (QCryptoTLSCreds *) | |
1767 | object_dynamic_cast(obj, TYPE_QCRYPTO_TLS_CREDS); | |
1768 | if (!creds) { | |
1769 | error_setg(errp, "Object with id '%s' is not TLS credentials", | |
1770 | id); | |
1771 | return NULL; | |
1772 | } | |
1773 | ||
1774 | if (creds->endpoint != QCRYPTO_TLS_CREDS_ENDPOINT_CLIENT) { | |
1775 | error_setg(errp, | |
1776 | "Expecting TLS credentials with a client endpoint"); | |
1777 | return NULL; | |
1778 | } | |
1779 | object_ref(obj); | |
1780 | return creds; | |
1781 | } | |
1782 | ||
1783 | ||
7ccc44fd HR |
1784 | static QemuOptsList nbd_runtime_opts = { |
1785 | .name = "nbd", | |
1786 | .head = QTAILQ_HEAD_INITIALIZER(nbd_runtime_opts.head), | |
1787 | .desc = { | |
1788 | { | |
1789 | .name = "host", | |
1790 | .type = QEMU_OPT_STRING, | |
1791 | .help = "TCP host to connect to", | |
1792 | }, | |
1793 | { | |
1794 | .name = "port", | |
1795 | .type = QEMU_OPT_STRING, | |
1796 | .help = "TCP port to connect to", | |
1797 | }, | |
1798 | { | |
1799 | .name = "path", | |
1800 | .type = QEMU_OPT_STRING, | |
1801 | .help = "Unix socket path to connect to", | |
1802 | }, | |
1803 | { | |
1804 | .name = "export", | |
1805 | .type = QEMU_OPT_STRING, | |
1806 | .help = "Name of the NBD export to open", | |
1807 | }, | |
1808 | { | |
1809 | .name = "tls-creds", | |
1810 | .type = QEMU_OPT_STRING, | |
1811 | .help = "ID of the TLS credentials to use", | |
1812 | }, | |
216ee365 EB |
1813 | { |
1814 | .name = "x-dirty-bitmap", | |
1815 | .type = QEMU_OPT_STRING, | |
1816 | .help = "experimental: expose named dirty bitmap in place of " | |
1817 | "block status", | |
1818 | }, | |
b172ae2e VSO |
1819 | { |
1820 | .name = "reconnect-delay", | |
1821 | .type = QEMU_OPT_NUMBER, | |
1822 | .help = "On an unexpected disconnect, the nbd client tries to " | |
1823 | "connect again until succeeding or encountering a serious " | |
1824 | "error. During the first @reconnect-delay seconds, all " | |
1825 | "requests are paused and will be rerun on a successful " | |
1826 | "reconnect. After that time, any delayed requests and all " | |
1827 | "future requests before a successful reconnect will " | |
1828 | "immediately fail. Default 0", | |
1829 | }, | |
c4365735 | 1830 | { /* end of list */ } |
7ccc44fd HR |
1831 | }, |
1832 | }; | |
1833 | ||
8f071c9d VSO |
1834 | static int nbd_process_options(BlockDriverState *bs, QDict *options, |
1835 | Error **errp) | |
33897dc7 NT |
1836 | { |
1837 | BDRVNBDState *s = bs->opaque; | |
8f071c9d | 1838 | QemuOpts *opts; |
7ccc44fd | 1839 | Error *local_err = NULL; |
75822a12 | 1840 | int ret = -EINVAL; |
ae255e52 | 1841 | |
7ccc44fd HR |
1842 | opts = qemu_opts_create(&nbd_runtime_opts, NULL, 0, &error_abort); |
1843 | qemu_opts_absorb_qdict(opts, options, &local_err); | |
1844 | if (local_err) { | |
1845 | error_propagate(errp, local_err); | |
1846 | goto error; | |
1847 | } | |
1848 | ||
62cf396b | 1849 | /* Translate @host, @port, and @path to a SocketAddress */ |
491d6c7c HR |
1850 | if (!nbd_process_legacy_socket_options(options, opts, errp)) { |
1851 | goto error; | |
1852 | } | |
1853 | ||
33897dc7 | 1854 | /* Pop the config into our state object. Exit if invalid. */ |
491d6c7c HR |
1855 | s->saddr = nbd_config(s, options, errp); |
1856 | if (!s->saddr) { | |
75822a12 DB |
1857 | goto error; |
1858 | } | |
1859 | ||
491d6c7c | 1860 | s->export = g_strdup(qemu_opt_get(opts, "export")); |
93676c88 EB |
1861 | if (s->export && strlen(s->export) > NBD_MAX_STRING_SIZE) { |
1862 | error_setg(errp, "export name too long to send to server"); | |
1863 | goto error; | |
1864 | } | |
491d6c7c | 1865 | |
03504d05 HR |
1866 | s->tlscredsid = g_strdup(qemu_opt_get(opts, "tls-creds")); |
1867 | if (s->tlscredsid) { | |
8f071c9d VSO |
1868 | s->tlscreds = nbd_get_tls_creds(s->tlscredsid, errp); |
1869 | if (!s->tlscreds) { | |
75822a12 DB |
1870 | goto error; |
1871 | } | |
1872 | ||
ca0b64e5 | 1873 | /* TODO SOCKET_ADDRESS_KIND_FD where fd has AF_INET or AF_INET6 */ |
62cf396b | 1874 | if (s->saddr->type != SOCKET_ADDRESS_TYPE_INET) { |
75822a12 DB |
1875 | error_setg(errp, "TLS only supported over IP sockets"); |
1876 | goto error; | |
1877 | } | |
8f071c9d | 1878 | s->hostname = s->saddr->u.inet.host; |
33897dc7 NT |
1879 | } |
1880 | ||
8f071c9d | 1881 | s->x_dirty_bitmap = g_strdup(qemu_opt_get(opts, "x-dirty-bitmap")); |
93676c88 EB |
1882 | if (s->x_dirty_bitmap && strlen(s->x_dirty_bitmap) > NBD_MAX_STRING_SIZE) { |
1883 | error_setg(errp, "x-dirty-bitmap query too long to send to server"); | |
1884 | goto error; | |
1885 | } | |
1886 | ||
8f071c9d VSO |
1887 | s->reconnect_delay = qemu_opt_get_number(opts, "reconnect-delay", 0); |
1888 | ||
1889 | ret = 0; | |
d42f78e9 | 1890 | |
75822a12 | 1891 | error: |
03504d05 | 1892 | if (ret < 0) { |
7f493662 | 1893 | nbd_clear_bdrvstate(s); |
03504d05 | 1894 | } |
7ccc44fd | 1895 | qemu_opts_del(opts); |
75822a12 | 1896 | return ret; |
e183ef75 PB |
1897 | } |
1898 | ||
8f071c9d VSO |
1899 | static int nbd_open(BlockDriverState *bs, QDict *options, int flags, |
1900 | Error **errp) | |
1901 | { | |
1902 | int ret; | |
1903 | BDRVNBDState *s = (BDRVNBDState *)bs->opaque; | |
1904 | ||
1905 | ret = nbd_process_options(bs, options, errp); | |
1906 | if (ret < 0) { | |
1907 | return ret; | |
1908 | } | |
1909 | ||
1910 | s->bs = bs; | |
1911 | qemu_co_mutex_init(&s->send_mutex); | |
1912 | qemu_co_queue_init(&s->free_sema); | |
1913 | ||
1914 | ret = nbd_client_connect(bs, errp); | |
1915 | if (ret < 0) { | |
8198cf5e | 1916 | nbd_clear_bdrvstate(s); |
8f071c9d VSO |
1917 | return ret; |
1918 | } | |
1919 | /* successfully connected */ | |
1920 | s->state = NBD_CLIENT_CONNECTED; | |
1921 | ||
1922 | s->connection_co = qemu_coroutine_create(nbd_connection_entry, s); | |
1923 | bdrv_inc_in_flight(bs); | |
1924 | aio_co_schedule(bdrv_get_aio_context(bs), s->connection_co); | |
1925 | ||
1926 | return 0; | |
1927 | } | |
1928 | ||
1486d04a PB |
1929 | static int nbd_co_flush(BlockDriverState *bs) |
1930 | { | |
f53a829b | 1931 | return nbd_client_co_flush(bs); |
1486d04a PB |
1932 | } |
1933 | ||
fa21e6fa DL |
1934 | static void nbd_refresh_limits(BlockDriverState *bs, Error **errp) |
1935 | { | |
611ae1d7 | 1936 | BDRVNBDState *s = (BDRVNBDState *)bs->opaque; |
fd8d372d | 1937 | uint32_t min = s->info.min_block; |
081dd1fe EB |
1938 | uint32_t max = MIN_NON_ZERO(NBD_MAX_BUFFER_SIZE, s->info.max_block); |
1939 | ||
7da537f7 EB |
1940 | /* |
1941 | * If the server did not advertise an alignment: | |
1942 | * - a size that is not sector-aligned implies that an alignment | |
1943 | * of 1 can be used to access those tail bytes | |
1944 | * - advertisement of block status requires an alignment of 1, so | |
1945 | * that we don't violate block layer constraints that block | |
1946 | * status is always aligned (as we can't control whether the | |
1947 | * server will report sub-sector extents, such as a hole at EOF | |
1948 | * on an unaligned POSIX file) | |
1949 | * - otherwise, assume the server is so old that we are safer avoiding | |
1950 | * sub-sector requests | |
1951 | */ | |
1952 | if (!min) { | |
1953 | min = (!QEMU_IS_ALIGNED(s->info.size, BDRV_SECTOR_SIZE) || | |
1954 | s->info.base_allocation) ? 1 : BDRV_SECTOR_SIZE; | |
1955 | } | |
1956 | ||
1957 | bs->bl.request_alignment = min; | |
714eb0db | 1958 | bs->bl.max_pdiscard = QEMU_ALIGN_DOWN(INT_MAX, min); |
081dd1fe EB |
1959 | bs->bl.max_pwrite_zeroes = max; |
1960 | bs->bl.max_transfer = max; | |
1961 | ||
1962 | if (s->info.opt_block && | |
1963 | s->info.opt_block > bs->bl.opt_transfer) { | |
1964 | bs->bl.opt_transfer = s->info.opt_block; | |
1965 | } | |
fa21e6fa DL |
1966 | } |
1967 | ||
75818250 TS |
1968 | static void nbd_close(BlockDriverState *bs) |
1969 | { | |
03504d05 HR |
1970 | BDRVNBDState *s = bs->opaque; |
1971 | ||
f53a829b | 1972 | nbd_client_close(bs); |
7f493662 | 1973 | nbd_clear_bdrvstate(s); |
75818250 TS |
1974 | } |
1975 | ||
1976 | static int64_t nbd_getlength(BlockDriverState *bs) | |
1977 | { | |
1978 | BDRVNBDState *s = bs->opaque; | |
1979 | ||
611ae1d7 | 1980 | return s->info.size; |
75818250 TS |
1981 | } |
1982 | ||
998b3a1e | 1983 | static void nbd_refresh_filename(BlockDriverState *bs) |
2019d68b | 1984 | { |
03504d05 | 1985 | BDRVNBDState *s = bs->opaque; |
491d6c7c HR |
1986 | const char *host = NULL, *port = NULL, *path = NULL; |
1987 | ||
62cf396b | 1988 | if (s->saddr->type == SOCKET_ADDRESS_TYPE_INET) { |
9445673e | 1989 | const InetSocketAddress *inet = &s->saddr->u.inet; |
491d6c7c HR |
1990 | if (!inet->has_ipv4 && !inet->has_ipv6 && !inet->has_to) { |
1991 | host = inet->host; | |
1992 | port = inet->port; | |
1993 | } | |
62cf396b | 1994 | } else if (s->saddr->type == SOCKET_ADDRESS_TYPE_UNIX) { |
9445673e MA |
1995 | path = s->saddr->u.q_unix.path; |
1996 | } /* else can't represent as pseudo-filename */ | |
2019d68b | 1997 | |
491d6c7c | 1998 | if (path && s->export) { |
2019d68b | 1999 | snprintf(bs->exact_filename, sizeof(bs->exact_filename), |
491d6c7c HR |
2000 | "nbd+unix:///%s?socket=%s", s->export, path); |
2001 | } else if (path && !s->export) { | |
2019d68b | 2002 | snprintf(bs->exact_filename, sizeof(bs->exact_filename), |
491d6c7c HR |
2003 | "nbd+unix://?socket=%s", path); |
2004 | } else if (host && s->export) { | |
ec0de768 | 2005 | snprintf(bs->exact_filename, sizeof(bs->exact_filename), |
491d6c7c HR |
2006 | "nbd://%s:%s/%s", host, port, s->export); |
2007 | } else if (host && !s->export) { | |
ec0de768 | 2008 | snprintf(bs->exact_filename, sizeof(bs->exact_filename), |
491d6c7c | 2009 | "nbd://%s:%s", host, port); |
ec0de768 | 2010 | } |
2019d68b HR |
2011 | } |
2012 | ||
8a6239c0 HR |
2013 | static char *nbd_dirname(BlockDriverState *bs, Error **errp) |
2014 | { | |
2015 | /* The generic bdrv_dirname() implementation is able to work out some | |
2016 | * directory name for NBD nodes, but that would be wrong. So far there is no | |
2017 | * specification for how "export paths" would work, so NBD does not have | |
2018 | * directory names. */ | |
2019 | error_setg(errp, "Cannot generate a base directory for NBD nodes"); | |
2020 | return NULL; | |
2021 | } | |
2022 | ||
2654267c HR |
2023 | static const char *const nbd_strong_runtime_opts[] = { |
2024 | "path", | |
2025 | "host", | |
2026 | "port", | |
2027 | "export", | |
2028 | "tls-creds", | |
2029 | "server.", | |
2030 | ||
2031 | NULL | |
2032 | }; | |
2033 | ||
5efa9d5a | 2034 | static BlockDriver bdrv_nbd = { |
69447cd8 SH |
2035 | .format_name = "nbd", |
2036 | .protocol_name = "nbd", | |
2037 | .instance_size = sizeof(BDRVNBDState), | |
2038 | .bdrv_parse_filename = nbd_parse_filename, | |
5a5e7f8c ML |
2039 | .bdrv_co_create_opts = bdrv_co_create_opts_simple, |
2040 | .create_opts = &bdrv_create_opts_simple, | |
69447cd8 | 2041 | .bdrv_file_open = nbd_open, |
e99754b4 | 2042 | .bdrv_reopen_prepare = nbd_client_reopen_prepare, |
70c4fb26 EB |
2043 | .bdrv_co_preadv = nbd_client_co_preadv, |
2044 | .bdrv_co_pwritev = nbd_client_co_pwritev, | |
fa778fff | 2045 | .bdrv_co_pwrite_zeroes = nbd_client_co_pwrite_zeroes, |
69447cd8 SH |
2046 | .bdrv_close = nbd_close, |
2047 | .bdrv_co_flush_to_os = nbd_co_flush, | |
447e57c3 | 2048 | .bdrv_co_pdiscard = nbd_client_co_pdiscard, |
fa21e6fa | 2049 | .bdrv_refresh_limits = nbd_refresh_limits, |
69447cd8 | 2050 | .bdrv_getlength = nbd_getlength, |
86f8cdf3 VSO |
2051 | .bdrv_detach_aio_context = nbd_client_detach_aio_context, |
2052 | .bdrv_attach_aio_context = nbd_client_attach_aio_context, | |
f7651539 VSO |
2053 | .bdrv_co_drain_begin = nbd_client_co_drain_begin, |
2054 | .bdrv_co_drain_end = nbd_client_co_drain_end, | |
2019d68b | 2055 | .bdrv_refresh_filename = nbd_refresh_filename, |
78a33ab5 | 2056 | .bdrv_co_block_status = nbd_client_co_block_status, |
8a6239c0 | 2057 | .bdrv_dirname = nbd_dirname, |
2654267c | 2058 | .strong_runtime_opts = nbd_strong_runtime_opts, |
1d7d2a9d PB |
2059 | }; |
2060 | ||
2061 | static BlockDriver bdrv_nbd_tcp = { | |
69447cd8 SH |
2062 | .format_name = "nbd", |
2063 | .protocol_name = "nbd+tcp", | |
2064 | .instance_size = sizeof(BDRVNBDState), | |
2065 | .bdrv_parse_filename = nbd_parse_filename, | |
5a5e7f8c ML |
2066 | .bdrv_co_create_opts = bdrv_co_create_opts_simple, |
2067 | .create_opts = &bdrv_create_opts_simple, | |
69447cd8 | 2068 | .bdrv_file_open = nbd_open, |
e99754b4 | 2069 | .bdrv_reopen_prepare = nbd_client_reopen_prepare, |
70c4fb26 EB |
2070 | .bdrv_co_preadv = nbd_client_co_preadv, |
2071 | .bdrv_co_pwritev = nbd_client_co_pwritev, | |
fa778fff | 2072 | .bdrv_co_pwrite_zeroes = nbd_client_co_pwrite_zeroes, |
69447cd8 SH |
2073 | .bdrv_close = nbd_close, |
2074 | .bdrv_co_flush_to_os = nbd_co_flush, | |
447e57c3 | 2075 | .bdrv_co_pdiscard = nbd_client_co_pdiscard, |
fa21e6fa | 2076 | .bdrv_refresh_limits = nbd_refresh_limits, |
69447cd8 | 2077 | .bdrv_getlength = nbd_getlength, |
86f8cdf3 VSO |
2078 | .bdrv_detach_aio_context = nbd_client_detach_aio_context, |
2079 | .bdrv_attach_aio_context = nbd_client_attach_aio_context, | |
f7651539 VSO |
2080 | .bdrv_co_drain_begin = nbd_client_co_drain_begin, |
2081 | .bdrv_co_drain_end = nbd_client_co_drain_end, | |
2019d68b | 2082 | .bdrv_refresh_filename = nbd_refresh_filename, |
78a33ab5 | 2083 | .bdrv_co_block_status = nbd_client_co_block_status, |
8a6239c0 | 2084 | .bdrv_dirname = nbd_dirname, |
2654267c | 2085 | .strong_runtime_opts = nbd_strong_runtime_opts, |
1d7d2a9d PB |
2086 | }; |
2087 | ||
2088 | static BlockDriver bdrv_nbd_unix = { | |
69447cd8 SH |
2089 | .format_name = "nbd", |
2090 | .protocol_name = "nbd+unix", | |
2091 | .instance_size = sizeof(BDRVNBDState), | |
2092 | .bdrv_parse_filename = nbd_parse_filename, | |
5a5e7f8c ML |
2093 | .bdrv_co_create_opts = bdrv_co_create_opts_simple, |
2094 | .create_opts = &bdrv_create_opts_simple, | |
69447cd8 | 2095 | .bdrv_file_open = nbd_open, |
e99754b4 | 2096 | .bdrv_reopen_prepare = nbd_client_reopen_prepare, |
70c4fb26 EB |
2097 | .bdrv_co_preadv = nbd_client_co_preadv, |
2098 | .bdrv_co_pwritev = nbd_client_co_pwritev, | |
fa778fff | 2099 | .bdrv_co_pwrite_zeroes = nbd_client_co_pwrite_zeroes, |
69447cd8 SH |
2100 | .bdrv_close = nbd_close, |
2101 | .bdrv_co_flush_to_os = nbd_co_flush, | |
447e57c3 | 2102 | .bdrv_co_pdiscard = nbd_client_co_pdiscard, |
fa21e6fa | 2103 | .bdrv_refresh_limits = nbd_refresh_limits, |
69447cd8 | 2104 | .bdrv_getlength = nbd_getlength, |
86f8cdf3 VSO |
2105 | .bdrv_detach_aio_context = nbd_client_detach_aio_context, |
2106 | .bdrv_attach_aio_context = nbd_client_attach_aio_context, | |
f7651539 VSO |
2107 | .bdrv_co_drain_begin = nbd_client_co_drain_begin, |
2108 | .bdrv_co_drain_end = nbd_client_co_drain_end, | |
2019d68b | 2109 | .bdrv_refresh_filename = nbd_refresh_filename, |
78a33ab5 | 2110 | .bdrv_co_block_status = nbd_client_co_block_status, |
8a6239c0 | 2111 | .bdrv_dirname = nbd_dirname, |
2654267c | 2112 | .strong_runtime_opts = nbd_strong_runtime_opts, |
75818250 | 2113 | }; |
5efa9d5a AL |
2114 | |
2115 | static void bdrv_nbd_init(void) | |
2116 | { | |
2117 | bdrv_register(&bdrv_nbd); | |
1d7d2a9d PB |
2118 | bdrv_register(&bdrv_nbd_tcp); |
2119 | bdrv_register(&bdrv_nbd_unix); | |
5efa9d5a AL |
2120 | } |
2121 | ||
2122 | block_init(bdrv_nbd_init); |