]> git.proxmox.com Git - mirror_qemu.git/blame - block/nbd-client.c
nbd/client: Move export name into NBDExportInfo
[mirror_qemu.git] / block / nbd-client.c
CommitLineData
2302c1ca
MAL
1/*
2 * QEMU Block driver for NBD
3 *
b626b51a 4 * Copyright (C) 2016 Red Hat, Inc.
2302c1ca
MAL
5 * Copyright (C) 2008 Bull S.A.S.
6 * Author: Laurent Vivier <Laurent.Vivier@bull.net>
7 *
8 * Some parts:
9 * Copyright (C) 2007 Anthony Liguori <anthony@codemonkey.ws>
10 *
11 * Permission is hereby granted, free of charge, to any person obtaining a copy
12 * of this software and associated documentation files (the "Software"), to deal
13 * in the Software without restriction, including without limitation the rights
14 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
15 * copies of the Software, and to permit persons to whom the Software is
16 * furnished to do so, subject to the following conditions:
17 *
18 * The above copyright notice and this permission notice shall be included in
19 * all copies or substantial portions of the Software.
20 *
21 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
22 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
23 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
24 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
25 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
26 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
27 * THE SOFTWARE.
28 */
29
80c71a24 30#include "qemu/osdep.h"
d8b4bad8
VSO
31
32#include "trace.h"
be41c100 33#include "qapi/error.h"
2302c1ca 34#include "nbd-client.h"
2302c1ca 35
cfa3ad63
EB
36#define HANDLE_TO_INDEX(bs, handle) ((handle) ^ (uint64_t)(intptr_t)(bs))
37#define INDEX_TO_HANDLE(bs, index) ((index) ^ (uint64_t)(intptr_t)(bs))
2302c1ca 38
07b1b99c 39static void nbd_recv_coroutines_wake_all(NBDClientSession *s)
69152c09
MAL
40{
41 int i;
42
43 for (i = 0; i < MAX_NBD_REQUESTS; i++) {
40f4a218
SH
44 NBDClientRequest *req = &s->requests[i];
45
46 if (req->coroutine && req->receiving) {
47 aio_co_wake(req->coroutine);
69152c09
MAL
48 }
49 }
50}
51
f53a829b 52static void nbd_teardown_connection(BlockDriverState *bs)
4a41a2d6 53{
10676b81 54 NBDClientSession *client = nbd_get_client_session(bs);
f53a829b 55
064097d9
DB
56 if (!client->ioc) { /* Already closed */
57 return;
58 }
59
4a41a2d6 60 /* finish any pending coroutines */
064097d9
DB
61 qio_channel_shutdown(client->ioc,
62 QIO_CHANNEL_SHUTDOWN_BOTH,
63 NULL);
a12a712a 64 BDRV_POLL_WHILE(bs, client->read_reply_co);
4a41a2d6 65
f53a829b 66 nbd_client_detach_aio_context(bs);
064097d9
DB
67 object_unref(OBJECT(client->sioc));
68 client->sioc = NULL;
69 object_unref(OBJECT(client->ioc));
70 client->ioc = NULL;
4a41a2d6
SH
71}
72
ff82911c 73static coroutine_fn void nbd_read_reply_entry(void *opaque)
2302c1ca 74{
ff82911c 75 NBDClientSession *s = opaque;
2302c1ca 76 uint64_t i;
d0a18013 77 int ret = 0;
be41c100 78 Error *local_err = NULL;
2302c1ca 79
72b6ffc7 80 while (!s->quit) {
ff82911c 81 assert(s->reply.handle == 0);
be41c100 82 ret = nbd_receive_reply(s->ioc, &s->reply, &local_err);
08ace1d7 83 if (local_err) {
d8b4bad8
VSO
84 trace_nbd_read_reply_entry_fail(ret, error_get_pretty(local_err));
85 error_free(local_err);
be41c100 86 }
a12a712a 87 if (ret <= 0) {
ff82911c 88 break;
2302c1ca 89 }
2302c1ca 90
ff82911c
PB
91 /* There's no need for a mutex on the receive side, because the
92 * handler acts as a synchronization point and ensures that only
93 * one coroutine is called until the reply finishes.
94 */
95 i = HANDLE_TO_INDEX(s, s->reply.handle);
40f4a218
SH
96 if (i >= MAX_NBD_REQUESTS ||
97 !s->requests[i].coroutine ||
d2febedb 98 !s->requests[i].receiving ||
f140e300 99 (nbd_reply_is_structured(&s->reply) && !s->info.structured_reply))
d2febedb 100 {
ff82911c
PB
101 break;
102 }
2302c1ca 103
40f4a218 104 /* We're woken up again by the request itself. Note that there
ff82911c
PB
105 * is no race between yielding and reentering read_reply_co. This
106 * is because:
107 *
40f4a218 108 * - if the request runs on the same AioContext, it is only
ff82911c
PB
109 * entered after we yield
110 *
40f4a218 111 * - if the request runs on a different AioContext, reentering
ff82911c
PB
112 * read_reply_co happens through a bottom half, which can only
113 * run after we yield.
114 */
40f4a218 115 aio_co_wake(s->requests[i].coroutine);
ff82911c 116 qemu_coroutine_yield();
2302c1ca 117 }
a12a712a 118
40f4a218 119 s->quit = true;
07b1b99c 120 nbd_recv_coroutines_wake_all(s);
ff82911c 121 s->read_reply_co = NULL;
2302c1ca
MAL
122}
123
f53a829b 124static int nbd_co_send_request(BlockDriverState *bs,
ed2dd912 125 NBDRequest *request,
1e2a77a8 126 QEMUIOVector *qiov)
2302c1ca 127{
10676b81 128 NBDClientSession *s = nbd_get_client_session(bs);
030fa7f6 129 int rc, i;
2302c1ca
MAL
130
131 qemu_co_mutex_lock(&s->send_mutex);
6bdcc018
PB
132 while (s->in_flight == MAX_NBD_REQUESTS) {
133 qemu_co_queue_wait(&s->free_sema, &s->send_mutex);
134 }
135 s->in_flight++;
141cabe6
BW
136
137 for (i = 0; i < MAX_NBD_REQUESTS; i++) {
40f4a218 138 if (s->requests[i].coroutine == NULL) {
141cabe6
BW
139 break;
140 }
141 }
142
1c778ef7 143 g_assert(qemu_in_coroutine());
141cabe6 144 assert(i < MAX_NBD_REQUESTS);
40f4a218
SH
145
146 s->requests[i].coroutine = qemu_coroutine_self();
f140e300 147 s->requests[i].offset = request->from;
40f4a218
SH
148 s->requests[i].receiving = false;
149
141cabe6 150 request->handle = INDEX_TO_HANDLE(s, i);
064097d9 151
72b6ffc7 152 if (s->quit) {
3c2d5183
SH
153 rc = -EIO;
154 goto err;
72b6ffc7 155 }
064097d9 156 if (!s->ioc) {
3c2d5183
SH
157 rc = -EPIPE;
158 goto err;
064097d9
DB
159 }
160
2302c1ca 161 if (qiov) {
064097d9 162 qio_channel_set_cork(s->ioc, true);
1c778ef7 163 rc = nbd_send_request(s->ioc, request);
72b6ffc7 164 if (rc >= 0 && !s->quit) {
030fa7f6
EB
165 if (qio_channel_writev_all(s->ioc, qiov->iov, qiov->niov,
166 NULL) < 0) {
2302c1ca
MAL
167 rc = -EIO;
168 }
a6934370
VSO
169 } else if (rc >= 0) {
170 rc = -EIO;
2302c1ca 171 }
064097d9 172 qio_channel_set_cork(s->ioc, false);
2302c1ca 173 } else {
1c778ef7 174 rc = nbd_send_request(s->ioc, request);
2302c1ca 175 }
3c2d5183
SH
176
177err:
72b6ffc7
EB
178 if (rc < 0) {
179 s->quit = true;
3c2d5183
SH
180 s->requests[i].coroutine = NULL;
181 s->in_flight--;
182 qemu_co_queue_next(&s->free_sema);
72b6ffc7 183 }
2302c1ca
MAL
184 qemu_co_mutex_unlock(&s->send_mutex);
185 return rc;
186}
187
f140e300
VSO
188static inline uint16_t payload_advance16(uint8_t **payload)
189{
190 *payload += 2;
191 return lduw_be_p(*payload - 2);
192}
193
194static inline uint32_t payload_advance32(uint8_t **payload)
195{
196 *payload += 4;
197 return ldl_be_p(*payload - 4);
198}
199
200static inline uint64_t payload_advance64(uint8_t **payload)
201{
202 *payload += 8;
203 return ldq_be_p(*payload - 8);
204}
205
206static int nbd_parse_offset_hole_payload(NBDStructuredReplyChunk *chunk,
207 uint8_t *payload, uint64_t orig_offset,
208 QEMUIOVector *qiov, Error **errp)
209{
210 uint64_t offset;
211 uint32_t hole_size;
212
213 if (chunk->length != sizeof(offset) + sizeof(hole_size)) {
214 error_setg(errp, "Protocol error: invalid payload for "
215 "NBD_REPLY_TYPE_OFFSET_HOLE");
216 return -EINVAL;
217 }
218
219 offset = payload_advance64(&payload);
220 hole_size = payload_advance32(&payload);
221
b4176cb3 222 if (!hole_size || offset < orig_offset || hole_size > qiov->size ||
f140e300
VSO
223 offset > orig_offset + qiov->size - hole_size) {
224 error_setg(errp, "Protocol error: server sent chunk exceeding requested"
225 " region");
226 return -EINVAL;
227 }
228
229 qemu_iovec_memset(qiov, offset - orig_offset, 0, hole_size);
230
231 return 0;
232}
233
78a33ab5
VSO
234/* nbd_parse_blockstatus_payload
235 * support only one extent in reply and only for
236 * base:allocation context
237 */
238static int nbd_parse_blockstatus_payload(NBDClientSession *client,
239 NBDStructuredReplyChunk *chunk,
240 uint8_t *payload, uint64_t orig_length,
241 NBDExtent *extent, Error **errp)
242{
243 uint32_t context_id;
244
00d96a46 245 if (chunk->length != sizeof(context_id) + sizeof(*extent)) {
78a33ab5
VSO
246 error_setg(errp, "Protocol error: invalid payload for "
247 "NBD_REPLY_TYPE_BLOCK_STATUS");
248 return -EINVAL;
249 }
250
251 context_id = payload_advance32(&payload);
252 if (client->info.meta_base_allocation_id != context_id) {
253 error_setg(errp, "Protocol error: unexpected context id %d for "
254 "NBD_REPLY_TYPE_BLOCK_STATUS, when negotiated context "
255 "id is %d", context_id,
256 client->info.meta_base_allocation_id);
257 return -EINVAL;
258 }
259
260 extent->length = payload_advance32(&payload);
261 extent->flags = payload_advance32(&payload);
262
263 if (extent->length == 0 ||
264 (client->info.min_block && !QEMU_IS_ALIGNED(extent->length,
acfd8f7a 265 client->info.min_block))) {
78a33ab5
VSO
266 error_setg(errp, "Protocol error: server sent status chunk with "
267 "invalid length");
268 return -EINVAL;
269 }
270
acfd8f7a
EB
271 /* The server is allowed to send us extra information on the final
272 * extent; just clamp it to the length we requested. */
273 if (extent->length > orig_length) {
274 extent->length = orig_length;
275 }
276
78a33ab5
VSO
277 return 0;
278}
279
f140e300
VSO
280/* nbd_parse_error_payload
281 * on success @errp contains message describing nbd error reply
282 */
283static int nbd_parse_error_payload(NBDStructuredReplyChunk *chunk,
284 uint8_t *payload, int *request_ret,
285 Error **errp)
286{
287 uint32_t error;
288 uint16_t message_size;
289
290 assert(chunk->type & (1 << 15));
291
292 if (chunk->length < sizeof(error) + sizeof(message_size)) {
293 error_setg(errp,
294 "Protocol error: invalid payload for structured error");
295 return -EINVAL;
296 }
297
298 error = nbd_errno_to_system_errno(payload_advance32(&payload));
299 if (error == 0) {
e659fb3b 300 error_setg(errp, "Protocol error: server sent structured error chunk "
f140e300
VSO
301 "with error = 0");
302 return -EINVAL;
303 }
304
305 *request_ret = -error;
306 message_size = payload_advance16(&payload);
307
308 if (message_size > chunk->length - sizeof(error) - sizeof(message_size)) {
e659fb3b 309 error_setg(errp, "Protocol error: server sent structured error chunk "
f140e300
VSO
310 "with incorrect message size");
311 return -EINVAL;
312 }
313
314 /* TODO: Add a trace point to mention the server complaint */
315
316 /* TODO handle ERROR_OFFSET */
317
318 return 0;
319}
320
321static int nbd_co_receive_offset_data_payload(NBDClientSession *s,
322 uint64_t orig_offset,
323 QEMUIOVector *qiov, Error **errp)
324{
325 QEMUIOVector sub_qiov;
326 uint64_t offset;
327 size_t data_size;
328 int ret;
329 NBDStructuredReplyChunk *chunk = &s->reply.structured;
330
331 assert(nbd_reply_is_structured(&s->reply));
332
b4176cb3
EB
333 /* The NBD spec requires at least one byte of payload */
334 if (chunk->length <= sizeof(offset)) {
f140e300
VSO
335 error_setg(errp, "Protocol error: invalid payload for "
336 "NBD_REPLY_TYPE_OFFSET_DATA");
337 return -EINVAL;
338 }
339
340 if (nbd_read(s->ioc, &offset, sizeof(offset), errp) < 0) {
341 return -EIO;
342 }
343 be64_to_cpus(&offset);
344
345 data_size = chunk->length - sizeof(offset);
b4176cb3 346 assert(data_size);
f140e300
VSO
347 if (offset < orig_offset || data_size > qiov->size ||
348 offset > orig_offset + qiov->size - data_size) {
349 error_setg(errp, "Protocol error: server sent chunk exceeding requested"
350 " region");
351 return -EINVAL;
352 }
353
354 qemu_iovec_init(&sub_qiov, qiov->niov);
355 qemu_iovec_concat(&sub_qiov, qiov, offset - orig_offset, data_size);
356 ret = qio_channel_readv_all(s->ioc, sub_qiov.iov, sub_qiov.niov, errp);
357 qemu_iovec_destroy(&sub_qiov);
358
359 return ret < 0 ? -EIO : 0;
360}
361
362#define NBD_MAX_MALLOC_PAYLOAD 1000
363/* nbd_co_receive_structured_payload
364 */
365static coroutine_fn int nbd_co_receive_structured_payload(
366 NBDClientSession *s, void **payload, Error **errp)
367{
368 int ret;
369 uint32_t len;
370
371 assert(nbd_reply_is_structured(&s->reply));
372
373 len = s->reply.structured.length;
374
375 if (len == 0) {
376 return 0;
377 }
378
379 if (payload == NULL) {
380 error_setg(errp, "Unexpected structured payload");
381 return -EINVAL;
382 }
383
384 if (len > NBD_MAX_MALLOC_PAYLOAD) {
385 error_setg(errp, "Payload too large");
386 return -EINVAL;
387 }
388
389 *payload = g_new(char, len);
390 ret = nbd_read(s->ioc, *payload, len, errp);
391 if (ret < 0) {
392 g_free(*payload);
393 *payload = NULL;
394 return ret;
395 }
396
397 return 0;
398}
399
400/* nbd_co_do_receive_one_chunk
401 * for simple reply:
402 * set request_ret to received reply error
403 * if qiov is not NULL: read payload to @qiov
404 * for structured reply chunk:
405 * if error chunk: read payload, set @request_ret, do not set @payload
406 * else if offset_data chunk: read payload data to @qiov, do not set @payload
407 * else: read payload to @payload
408 *
409 * If function fails, @errp contains corresponding error message, and the
410 * connection with the server is suspect. If it returns 0, then the
411 * transaction succeeded (although @request_ret may be a negative errno
412 * corresponding to the server's error reply), and errp is unchanged.
413 */
414static coroutine_fn int nbd_co_do_receive_one_chunk(
415 NBDClientSession *s, uint64_t handle, bool only_structured,
416 int *request_ret, QEMUIOVector *qiov, void **payload, Error **errp)
2302c1ca 417{
319a56cd 418 int ret;
ed397b2f 419 int i = HANDLE_TO_INDEX(s, handle);
f140e300
VSO
420 void *local_payload = NULL;
421 NBDStructuredReplyChunk *chunk;
422
423 if (payload) {
424 *payload = NULL;
425 }
426 *request_ret = 0;
2302c1ca 427
ff82911c 428 /* Wait until we're woken up by nbd_read_reply_entry. */
40f4a218 429 s->requests[i].receiving = true;
2302c1ca 430 qemu_coroutine_yield();
40f4a218 431 s->requests[i].receiving = false;
93970672 432 if (!s->ioc || s->quit) {
f140e300
VSO
433 error_setg(errp, "Connection closed");
434 return -EIO;
435 }
436
437 assert(s->reply.handle == handle);
438
439 if (nbd_reply_is_simple(&s->reply)) {
440 if (only_structured) {
441 error_setg(errp, "Protocol error: simple reply when structured "
442 "reply chunk was expected");
443 return -EINVAL;
2302c1ca
MAL
444 }
445
f140e300
VSO
446 *request_ret = -nbd_errno_to_system_errno(s->reply.simple.error);
447 if (*request_ret < 0 || !qiov) {
448 return 0;
449 }
450
451 return qio_channel_readv_all(s->ioc, qiov->iov, qiov->niov,
452 errp) < 0 ? -EIO : 0;
453 }
454
455 /* handle structured reply chunk */
456 assert(s->info.structured_reply);
457 chunk = &s->reply.structured;
458
459 if (chunk->type == NBD_REPLY_TYPE_NONE) {
460 if (!(chunk->flags & NBD_REPLY_FLAG_DONE)) {
461 error_setg(errp, "Protocol error: NBD_REPLY_TYPE_NONE chunk without"
e659fb3b 462 " NBD_REPLY_FLAG_DONE flag set");
f140e300
VSO
463 return -EINVAL;
464 }
b4176cb3
EB
465 if (chunk->length) {
466 error_setg(errp, "Protocol error: NBD_REPLY_TYPE_NONE chunk with"
467 " nonzero length");
468 return -EINVAL;
469 }
f140e300
VSO
470 return 0;
471 }
472
473 if (chunk->type == NBD_REPLY_TYPE_OFFSET_DATA) {
474 if (!qiov) {
475 error_setg(errp, "Unexpected NBD_REPLY_TYPE_OFFSET_DATA chunk");
476 return -EINVAL;
477 }
478
479 return nbd_co_receive_offset_data_payload(s, s->requests[i].offset,
480 qiov, errp);
481 }
482
483 if (nbd_reply_type_is_error(chunk->type)) {
484 payload = &local_payload;
485 }
486
487 ret = nbd_co_receive_structured_payload(s, payload, errp);
488 if (ret < 0) {
489 return ret;
2302c1ca 490 }
ff82911c 491
f140e300
VSO
492 if (nbd_reply_type_is_error(chunk->type)) {
493 ret = nbd_parse_error_payload(chunk, local_payload, request_ret, errp);
494 g_free(local_payload);
495 return ret;
496 }
497
498 return 0;
499}
500
501/* nbd_co_receive_one_chunk
502 * Read reply, wake up read_reply_co and set s->quit if needed.
503 * Return value is a fatal error code or normal nbd reply error code
504 */
505static coroutine_fn int nbd_co_receive_one_chunk(
506 NBDClientSession *s, uint64_t handle, bool only_structured,
507 QEMUIOVector *qiov, NBDReply *reply, void **payload, Error **errp)
508{
509 int request_ret;
510 int ret = nbd_co_do_receive_one_chunk(s, handle, only_structured,
511 &request_ret, qiov, payload, errp);
512
513 if (ret < 0) {
514 s->quit = true;
515 } else {
516 /* For assert at loop start in nbd_read_reply_entry */
517 if (reply) {
518 *reply = s->reply;
519 }
520 s->reply.handle = 0;
521 ret = request_ret;
522 }
ff82911c 523
ff82911c
PB
524 if (s->read_reply_co) {
525 aio_co_wake(s->read_reply_co);
2302c1ca 526 }
6bdcc018 527
f140e300
VSO
528 return ret;
529}
530
531typedef struct NBDReplyChunkIter {
532 int ret;
1e98efc0 533 bool fatal;
f140e300
VSO
534 Error *err;
535 bool done, only_structured;
536} NBDReplyChunkIter;
537
538static void nbd_iter_error(NBDReplyChunkIter *iter, bool fatal,
539 int ret, Error **local_err)
540{
541 assert(ret < 0);
542
1e98efc0 543 if ((fatal && !iter->fatal) || iter->ret == 0) {
f140e300
VSO
544 if (iter->ret != 0) {
545 error_free(iter->err);
546 iter->err = NULL;
547 }
1e98efc0 548 iter->fatal = fatal;
f140e300
VSO
549 iter->ret = ret;
550 error_propagate(&iter->err, *local_err);
551 } else {
552 error_free(*local_err);
553 }
554
555 *local_err = NULL;
556}
557
558/* NBD_FOREACH_REPLY_CHUNK
559 */
560#define NBD_FOREACH_REPLY_CHUNK(s, iter, handle, structured, \
561 qiov, reply, payload) \
562 for (iter = (NBDReplyChunkIter) { .only_structured = structured }; \
563 nbd_reply_chunk_iter_receive(s, &iter, handle, qiov, reply, payload);)
564
565/* nbd_reply_chunk_iter_receive
566 */
567static bool nbd_reply_chunk_iter_receive(NBDClientSession *s,
568 NBDReplyChunkIter *iter,
569 uint64_t handle,
570 QEMUIOVector *qiov, NBDReply *reply,
571 void **payload)
572{
573 int ret;
574 NBDReply local_reply;
575 NBDStructuredReplyChunk *chunk;
576 Error *local_err = NULL;
577 if (s->quit) {
578 error_setg(&local_err, "Connection closed");
579 nbd_iter_error(iter, true, -EIO, &local_err);
580 goto break_loop;
581 }
582
583 if (iter->done) {
584 /* Previous iteration was last. */
585 goto break_loop;
586 }
587
588 if (reply == NULL) {
589 reply = &local_reply;
590 }
591
592 ret = nbd_co_receive_one_chunk(s, handle, iter->only_structured,
593 qiov, reply, payload, &local_err);
594 if (ret < 0) {
595 /* If it is a fatal error s->quit is set by nbd_co_receive_one_chunk */
596 nbd_iter_error(iter, s->quit, ret, &local_err);
597 }
598
599 /* Do not execute the body of NBD_FOREACH_REPLY_CHUNK for simple reply. */
600 if (nbd_reply_is_simple(&s->reply) || s->quit) {
601 goto break_loop;
602 }
603
604 chunk = &reply->structured;
605 iter->only_structured = true;
606
607 if (chunk->type == NBD_REPLY_TYPE_NONE) {
608 /* NBD_REPLY_FLAG_DONE is already checked in nbd_co_receive_one_chunk */
609 assert(chunk->flags & NBD_REPLY_FLAG_DONE);
610 goto break_loop;
611 }
612
613 if (chunk->flags & NBD_REPLY_FLAG_DONE) {
614 /* This iteration is last. */
615 iter->done = true;
616 }
617
618 /* Execute the loop body */
619 return true;
620
621break_loop:
622 s->requests[HANDLE_TO_INDEX(s, handle)].coroutine = NULL;
623
6bdcc018
PB
624 qemu_co_mutex_lock(&s->send_mutex);
625 s->in_flight--;
626 qemu_co_queue_next(&s->free_sema);
627 qemu_co_mutex_unlock(&s->send_mutex);
319a56cd 628
f140e300 629 return false;
2302c1ca
MAL
630}
631
f140e300
VSO
632static int nbd_co_receive_return_code(NBDClientSession *s, uint64_t handle,
633 Error **errp)
634{
635 NBDReplyChunkIter iter;
636
637 NBD_FOREACH_REPLY_CHUNK(s, iter, handle, false, NULL, NULL, NULL) {
638 /* nbd_reply_chunk_iter_receive does all the work */
639 }
640
641 error_propagate(errp, iter.err);
642 return iter.ret;
643}
644
645static int nbd_co_receive_cmdread_reply(NBDClientSession *s, uint64_t handle,
646 uint64_t offset, QEMUIOVector *qiov,
647 Error **errp)
648{
649 NBDReplyChunkIter iter;
650 NBDReply reply;
651 void *payload = NULL;
652 Error *local_err = NULL;
653
654 NBD_FOREACH_REPLY_CHUNK(s, iter, handle, s->info.structured_reply,
655 qiov, &reply, &payload)
656 {
657 int ret;
658 NBDStructuredReplyChunk *chunk = &reply.structured;
659
660 assert(nbd_reply_is_structured(&reply));
661
662 switch (chunk->type) {
663 case NBD_REPLY_TYPE_OFFSET_DATA:
664 /* special cased in nbd_co_receive_one_chunk, data is already
665 * in qiov */
666 break;
667 case NBD_REPLY_TYPE_OFFSET_HOLE:
668 ret = nbd_parse_offset_hole_payload(&reply.structured, payload,
669 offset, qiov, &local_err);
670 if (ret < 0) {
671 s->quit = true;
672 nbd_iter_error(&iter, true, ret, &local_err);
673 }
674 break;
675 default:
676 if (!nbd_reply_type_is_error(chunk->type)) {
677 /* not allowed reply type */
678 s->quit = true;
679 error_setg(&local_err,
680 "Unexpected reply type: %d (%s) for CMD_READ",
681 chunk->type, nbd_reply_type_lookup(chunk->type));
682 nbd_iter_error(&iter, true, -EINVAL, &local_err);
683 }
684 }
685
686 g_free(payload);
687 payload = NULL;
688 }
689
690 error_propagate(errp, iter.err);
691 return iter.ret;
692}
693
78a33ab5
VSO
694static int nbd_co_receive_blockstatus_reply(NBDClientSession *s,
695 uint64_t handle, uint64_t length,
696 NBDExtent *extent, Error **errp)
697{
698 NBDReplyChunkIter iter;
699 NBDReply reply;
700 void *payload = NULL;
701 Error *local_err = NULL;
702 bool received = false;
703
704 assert(!extent->length);
705 NBD_FOREACH_REPLY_CHUNK(s, iter, handle, s->info.structured_reply,
706 NULL, &reply, &payload)
707 {
708 int ret;
709 NBDStructuredReplyChunk *chunk = &reply.structured;
710
711 assert(nbd_reply_is_structured(&reply));
712
713 switch (chunk->type) {
714 case NBD_REPLY_TYPE_BLOCK_STATUS:
715 if (received) {
716 s->quit = true;
717 error_setg(&local_err, "Several BLOCK_STATUS chunks in reply");
718 nbd_iter_error(&iter, true, -EINVAL, &local_err);
719 }
720 received = true;
721
722 ret = nbd_parse_blockstatus_payload(s, &reply.structured,
723 payload, length, extent,
724 &local_err);
725 if (ret < 0) {
726 s->quit = true;
727 nbd_iter_error(&iter, true, ret, &local_err);
728 }
729 break;
730 default:
731 if (!nbd_reply_type_is_error(chunk->type)) {
732 s->quit = true;
733 error_setg(&local_err,
734 "Unexpected reply type: %d (%s) "
735 "for CMD_BLOCK_STATUS",
736 chunk->type, nbd_reply_type_lookup(chunk->type));
737 nbd_iter_error(&iter, true, -EINVAL, &local_err);
738 }
739 }
740
741 g_free(payload);
742 payload = NULL;
743 }
744
745 if (!extent->length && !iter.err) {
746 error_setg(&iter.err,
747 "Server did not reply with any status extents");
748 if (!iter.ret) {
749 iter.ret = -EIO;
750 }
751 }
752 error_propagate(errp, iter.err);
753 return iter.ret;
754}
755
f140e300
VSO
756static int nbd_co_request(BlockDriverState *bs, NBDRequest *request,
757 QEMUIOVector *write_qiov)
f35dff7e 758{
f35dff7e 759 int ret;
f140e300
VSO
760 Error *local_err = NULL;
761 NBDClientSession *client = nbd_get_client_session(bs);
f35dff7e 762
f140e300
VSO
763 assert(request->type != NBD_CMD_READ);
764 if (write_qiov) {
765 assert(request->type == NBD_CMD_WRITE);
766 assert(request->len == iov_size(write_qiov->iov, write_qiov->niov));
4bfe4478 767 } else {
f140e300 768 assert(request->type != NBD_CMD_WRITE);
4bfe4478 769 }
f140e300 770 ret = nbd_co_send_request(bs, request, write_qiov);
f35dff7e 771 if (ret < 0) {
319a56cd 772 return ret;
f35dff7e 773 }
319a56cd 774
f140e300
VSO
775 ret = nbd_co_receive_return_code(client, request->handle, &local_err);
776 if (local_err) {
d8b4bad8
VSO
777 trace_nbd_co_request_fail(request->from, request->len, request->handle,
778 request->flags, request->type,
779 nbd_cmd_lookup(request->type),
780 ret, error_get_pretty(local_err));
781 error_free(local_err);
f140e300
VSO
782 }
783 return ret;
f35dff7e
VSO
784}
785
70c4fb26
EB
786int nbd_client_co_preadv(BlockDriverState *bs, uint64_t offset,
787 uint64_t bytes, QEMUIOVector *qiov, int flags)
2302c1ca 788{
f140e300
VSO
789 int ret;
790 Error *local_err = NULL;
791 NBDClientSession *client = nbd_get_client_session(bs);
ed2dd912 792 NBDRequest request = {
70c4fb26
EB
793 .type = NBD_CMD_READ,
794 .from = offset,
795 .len = bytes,
796 };
2302c1ca 797
70c4fb26
EB
798 assert(bytes <= NBD_MAX_BUFFER_SIZE);
799 assert(!flags);
2302c1ca 800
9d8f818c
EB
801 if (!bytes) {
802 return 0;
803 }
f140e300
VSO
804 ret = nbd_co_send_request(bs, &request, NULL);
805 if (ret < 0) {
806 return ret;
807 }
808
809 ret = nbd_co_receive_cmdread_reply(client, request.handle, offset, qiov,
810 &local_err);
08ace1d7 811 if (local_err) {
d8b4bad8
VSO
812 trace_nbd_co_request_fail(request.from, request.len, request.handle,
813 request.flags, request.type,
814 nbd_cmd_lookup(request.type),
815 ret, error_get_pretty(local_err));
816 error_free(local_err);
f140e300
VSO
817 }
818 return ret;
2302c1ca
MAL
819}
820
70c4fb26
EB
821int nbd_client_co_pwritev(BlockDriverState *bs, uint64_t offset,
822 uint64_t bytes, QEMUIOVector *qiov, int flags)
2302c1ca 823{
10676b81 824 NBDClientSession *client = nbd_get_client_session(bs);
ed2dd912 825 NBDRequest request = {
70c4fb26
EB
826 .type = NBD_CMD_WRITE,
827 .from = offset,
828 .len = bytes,
829 };
2302c1ca 830
1104d83c 831 assert(!(client->info.flags & NBD_FLAG_READ_ONLY));
52a46505 832 if (flags & BDRV_REQ_FUA) {
004a89fc 833 assert(client->info.flags & NBD_FLAG_SEND_FUA);
b626b51a 834 request.flags |= NBD_CMD_FLAG_FUA;
2302c1ca
MAL
835 }
836
70c4fb26 837 assert(bytes <= NBD_MAX_BUFFER_SIZE);
2302c1ca 838
9d8f818c
EB
839 if (!bytes) {
840 return 0;
841 }
f35dff7e 842 return nbd_co_request(bs, &request, qiov);
2302c1ca
MAL
843}
844
fa778fff 845int nbd_client_co_pwrite_zeroes(BlockDriverState *bs, int64_t offset,
f5a5ca79 846 int bytes, BdrvRequestFlags flags)
fa778fff 847{
fa778fff
EB
848 NBDClientSession *client = nbd_get_client_session(bs);
849 NBDRequest request = {
850 .type = NBD_CMD_WRITE_ZEROES,
851 .from = offset,
f5a5ca79 852 .len = bytes,
fa778fff 853 };
fa778fff 854
1104d83c 855 assert(!(client->info.flags & NBD_FLAG_READ_ONLY));
004a89fc 856 if (!(client->info.flags & NBD_FLAG_SEND_WRITE_ZEROES)) {
fa778fff
EB
857 return -ENOTSUP;
858 }
859
860 if (flags & BDRV_REQ_FUA) {
004a89fc 861 assert(client->info.flags & NBD_FLAG_SEND_FUA);
fa778fff
EB
862 request.flags |= NBD_CMD_FLAG_FUA;
863 }
864 if (!(flags & BDRV_REQ_MAY_UNMAP)) {
865 request.flags |= NBD_CMD_FLAG_NO_HOLE;
866 }
867
9d8f818c
EB
868 if (!bytes) {
869 return 0;
870 }
f35dff7e 871 return nbd_co_request(bs, &request, NULL);
fa778fff
EB
872}
873
f53a829b 874int nbd_client_co_flush(BlockDriverState *bs)
2302c1ca 875{
10676b81 876 NBDClientSession *client = nbd_get_client_session(bs);
ed2dd912 877 NBDRequest request = { .type = NBD_CMD_FLUSH };
2302c1ca 878
004a89fc 879 if (!(client->info.flags & NBD_FLAG_SEND_FLUSH)) {
2302c1ca
MAL
880 return 0;
881 }
882
2302c1ca
MAL
883 request.from = 0;
884 request.len = 0;
885
f35dff7e 886 return nbd_co_request(bs, &request, NULL);
2302c1ca
MAL
887}
888
f5a5ca79 889int nbd_client_co_pdiscard(BlockDriverState *bs, int64_t offset, int bytes)
2302c1ca 890{
10676b81 891 NBDClientSession *client = nbd_get_client_session(bs);
ed2dd912 892 NBDRequest request = {
447e57c3
EB
893 .type = NBD_CMD_TRIM,
894 .from = offset,
f5a5ca79 895 .len = bytes,
447e57c3 896 };
2302c1ca 897
1104d83c 898 assert(!(client->info.flags & NBD_FLAG_READ_ONLY));
9d8f818c 899 if (!(client->info.flags & NBD_FLAG_SEND_TRIM) || !bytes) {
2302c1ca
MAL
900 return 0;
901 }
2302c1ca 902
f35dff7e 903 return nbd_co_request(bs, &request, NULL);
2302c1ca
MAL
904}
905
78a33ab5
VSO
906int coroutine_fn nbd_client_co_block_status(BlockDriverState *bs,
907 bool want_zero,
908 int64_t offset, int64_t bytes,
909 int64_t *pnum, int64_t *map,
910 BlockDriverState **file)
911{
912 int64_t ret;
913 NBDExtent extent = { 0 };
914 NBDClientSession *client = nbd_get_client_session(bs);
915 Error *local_err = NULL;
916
917 NBDRequest request = {
918 .type = NBD_CMD_BLOCK_STATUS,
919 .from = offset,
920 .len = MIN(MIN_NON_ZERO(QEMU_ALIGN_DOWN(INT_MAX,
921 bs->bl.request_alignment),
922 client->info.max_block), bytes),
923 .flags = NBD_CMD_FLAG_REQ_ONE,
924 };
925
926 if (!client->info.base_allocation) {
927 *pnum = bytes;
928 return BDRV_BLOCK_DATA;
929 }
930
931 ret = nbd_co_send_request(bs, &request, NULL);
932 if (ret < 0) {
933 return ret;
934 }
935
936 ret = nbd_co_receive_blockstatus_reply(client, request.handle, bytes,
937 &extent, &local_err);
938 if (local_err) {
d8b4bad8
VSO
939 trace_nbd_co_request_fail(request.from, request.len, request.handle,
940 request.flags, request.type,
941 nbd_cmd_lookup(request.type),
942 ret, error_get_pretty(local_err));
943 error_free(local_err);
78a33ab5
VSO
944 }
945 if (ret < 0) {
946 return ret;
947 }
948
949 assert(extent.length);
950 *pnum = extent.length;
951 return (extent.flags & NBD_STATE_HOLE ? 0 : BDRV_BLOCK_DATA) |
952 (extent.flags & NBD_STATE_ZERO ? BDRV_BLOCK_ZERO : 0);
953}
954
f53a829b 955void nbd_client_detach_aio_context(BlockDriverState *bs)
69447cd8 956{
ff82911c 957 NBDClientSession *client = nbd_get_client_session(bs);
96d06835 958 qio_channel_detach_aio_context(QIO_CHANNEL(client->ioc));
69447cd8
SH
959}
960
f53a829b
HR
961void nbd_client_attach_aio_context(BlockDriverState *bs,
962 AioContext *new_context)
69447cd8 963{
ff82911c 964 NBDClientSession *client = nbd_get_client_session(bs);
96d06835 965 qio_channel_attach_aio_context(QIO_CHANNEL(client->ioc), new_context);
ff82911c 966 aio_co_schedule(new_context, client->read_reply_co);
69447cd8
SH
967}
968
f53a829b 969void nbd_client_close(BlockDriverState *bs)
2302c1ca 970{
10676b81 971 NBDClientSession *client = nbd_get_client_session(bs);
ed2dd912 972 NBDRequest request = { .type = NBD_CMD_DISC };
2302c1ca 973
064097d9 974 if (client->ioc == NULL) {
4a41a2d6
SH
975 return;
976 }
977
1c778ef7 978 nbd_send_request(client->ioc, &request);
5ad283eb 979
f53a829b 980 nbd_teardown_connection(bs);
2302c1ca
MAL
981}
982
75822a12
DB
983int nbd_client_init(BlockDriverState *bs,
984 QIOChannelSocket *sioc,
985 const char *export,
986 QCryptoTLSCreds *tlscreds,
987 const char *hostname,
216ee365 988 const char *x_dirty_bitmap,
75822a12 989 Error **errp)
2302c1ca 990{
10676b81 991 NBDClientSession *client = nbd_get_client_session(bs);
2302c1ca
MAL
992 int ret;
993
994 /* NBD handshake */
e2bc625f 995 logout("session init %s\n", export);
064097d9
DB
996 qio_channel_set_blocking(QIO_CHANNEL(sioc), true, NULL);
997
081dd1fe 998 client->info.request_sizes = true;
f140e300 999 client->info.structured_reply = true;
78a33ab5 1000 client->info.base_allocation = true;
216ee365 1001 client->info.x_dirty_bitmap = g_strdup(x_dirty_bitmap);
6dc1667d
EB
1002 client->info.name = g_strdup(export ?: "");
1003 ret = nbd_receive_negotiate(QIO_CHANNEL(sioc), tlscreds, hostname,
004a89fc 1004 &client->ioc, &client->info, errp);
216ee365 1005 g_free(client->info.x_dirty_bitmap);
6dc1667d 1006 g_free(client->info.name);
2302c1ca
MAL
1007 if (ret < 0) {
1008 logout("Failed to negotiate with the NBD server\n");
2302c1ca
MAL
1009 return ret;
1010 }
47829c40
EB
1011 if (x_dirty_bitmap && !client->info.base_allocation) {
1012 error_setg(errp, "requested x-dirty-bitmap %s not found",
1013 x_dirty_bitmap);
c688e6ca
EB
1014 ret = -EINVAL;
1015 goto fail;
47829c40 1016 }
6c2e581d
KW
1017 if (client->info.flags & NBD_FLAG_READ_ONLY) {
1018 ret = bdrv_apply_auto_read_only(bs, "NBD export is read-only", errp);
1019 if (ret < 0) {
c688e6ca 1020 goto fail;
6c2e581d 1021 }
1104d83c 1022 }
004a89fc 1023 if (client->info.flags & NBD_FLAG_SEND_FUA) {
4df863f3 1024 bs->supported_write_flags = BDRV_REQ_FUA;
169407e1
EB
1025 bs->supported_zero_flags |= BDRV_REQ_FUA;
1026 }
004a89fc 1027 if (client->info.flags & NBD_FLAG_SEND_WRITE_ZEROES) {
169407e1 1028 bs->supported_zero_flags |= BDRV_REQ_MAY_UNMAP;
4df863f3 1029 }
2302c1ca
MAL
1030
1031 qemu_co_mutex_init(&client->send_mutex);
9bc9732f 1032 qemu_co_queue_init(&client->free_sema);
064097d9
DB
1033 client->sioc = sioc;
1034 object_ref(OBJECT(client->sioc));
f95910fe
DB
1035
1036 if (!client->ioc) {
1037 client->ioc = QIO_CHANNEL(sioc);
1038 object_ref(OBJECT(client->ioc));
1039 }
2302c1ca
MAL
1040
1041 /* Now that we're connected, set the socket to be non-blocking and
1042 * kick the reply mechanism. */
064097d9 1043 qio_channel_set_blocking(QIO_CHANNEL(sioc), false, NULL);
ff82911c 1044 client->read_reply_co = qemu_coroutine_create(nbd_read_reply_entry, client);
f53a829b 1045 nbd_client_attach_aio_context(bs, bdrv_get_aio_context(bs));
2302c1ca
MAL
1046
1047 logout("Established connection with NBD server\n");
1048 return 0;
c688e6ca
EB
1049
1050 fail:
1051 /*
1052 * We have connected, but must fail for other reasons. The
1053 * connection is still blocking; send NBD_CMD_DISC as a courtesy
1054 * to the server.
1055 */
1056 {
1057 NBDRequest request = { .type = NBD_CMD_DISC };
1058
1059 nbd_send_request(client->ioc ?: QIO_CHANNEL(sioc), &request);
1060 return ret;
1061 }
2302c1ca 1062}