]> git.proxmox.com Git - mirror_qemu.git/blame - nbd/server.c
lasips2: QOMify LASIPS2Port
[mirror_qemu.git] / nbd / server.c
CommitLineData
75818250 1/*
58a6fdcc 2 * Copyright (C) 2016-2022 Red Hat, Inc.
7a5ca864
FB
3 * Copyright (C) 2005 Anthony Liguori <anthony@codemonkey.ws>
4 *
798bfe00 5 * Network Block Device Server Side
7a5ca864
FB
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; under version 2 of the License.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
8167ee88 17 * along with this program; if not, see <http://www.gnu.org/licenses/>.
75818250 18 */
7a5ca864 19
d38ea87a 20#include "qemu/osdep.h"
56ee8626
KW
21
22#include "block/export.h"
da34e65c 23#include "qapi/error.h"
dc5e9ac7 24#include "qemu/queue.h"
9588463e 25#include "trace.h"
798bfe00 26#include "nbd-internal.h"
416e34bd 27#include "qemu/units.h"
5df022cf 28#include "qemu/memalign.h"
ca441480 29
e7b1948d 30#define NBD_META_ID_BASE_ALLOCATION 0
71719cd5 31#define NBD_META_ID_ALLOCATION_DEPTH 1
3b1f244c 32/* Dirty bitmaps use 'NBD_META_ID_DIRTY_BITMAP + i', so keep this id last. */
71719cd5 33#define NBD_META_ID_DIRTY_BITMAP 2
3d068aff 34
416e34bd
EB
35/*
36 * NBD_MAX_BLOCK_STATUS_EXTENTS: 1 MiB of extents data. An empirical
3d068aff
VSO
37 * constant. If an increase is needed, note that the NBD protocol
38 * recommends no larger than 32 mb, so that the client won't consider
416e34bd
EB
39 * the reply as a denial of service attack.
40 */
41#define NBD_MAX_BLOCK_STATUS_EXTENTS (1 * MiB / 8)
e7b1948d 42
ca441480
PB
43static int system_errno_to_nbd_errno(int err)
44{
45 switch (err) {
46 case 0:
47 return NBD_SUCCESS;
48 case EPERM:
c0301fcc 49 case EROFS:
ca441480
PB
50 return NBD_EPERM;
51 case EIO:
52 return NBD_EIO;
53 case ENOMEM:
54 return NBD_ENOMEM;
55#ifdef EDQUOT
56 case EDQUOT:
57#endif
58 case EFBIG:
59 case ENOSPC:
60 return NBD_ENOSPC;
bae245d1
EB
61 case EOVERFLOW:
62 return NBD_EOVERFLOW;
0a479545
EB
63 case ENOTSUP:
64#if ENOTSUP != EOPNOTSUPP
65 case EOPNOTSUPP:
66#endif
67 return NBD_ENOTSUP;
b6f5d3b5
EB
68 case ESHUTDOWN:
69 return NBD_ESHUTDOWN;
ca441480
PB
70 case EINVAL:
71 default:
72 return NBD_EINVAL;
73 }
74}
75
9a304d29
PB
76/* Definitions for opaque data types */
77
315f78ab 78typedef struct NBDRequestData NBDRequestData;
9a304d29 79
315f78ab 80struct NBDRequestData {
9a304d29
PB
81 NBDClient *client;
82 uint8_t *data;
29b6c3b3 83 bool complete;
9a304d29
PB
84};
85
86struct NBDExport {
56ee8626 87 BlockExport common;
0ddf08db 88
ee0a19ec 89 char *name;
b1a75b33 90 char *description;
9d26dfcb 91 uint64_t size;
7423f417 92 uint16_t nbdflags;
4b9441f6 93 QTAILQ_HEAD(, NBDClient) clients;
ee0a19ec 94 QTAILQ_ENTRY(NBDExport) next;
958c717d 95
cd7fca95 96 BlockBackend *eject_notifier_blk;
741cc431 97 Notifier eject_notifier;
3d068aff 98
71719cd5 99 bool allocation_depth;
3b1f244c
EB
100 BdrvDirtyBitmap **export_bitmaps;
101 size_t nr_export_bitmaps;
9a304d29
PB
102};
103
ee0a19ec
PB
104static QTAILQ_HEAD(, NBDExport) exports = QTAILQ_HEAD_INITIALIZER(exports);
105
e7b1948d
VSO
106/* NBDExportMetaContexts represents a list of contexts to be exported,
107 * as selected by NBD_OPT_SET_META_CONTEXT. Also used for
108 * NBD_OPT_LIST_META_CONTEXT. */
109typedef struct NBDExportMetaContexts {
af736e54 110 NBDExport *exp;
47ec485e 111 size_t count; /* number of negotiated contexts */
e7b1948d 112 bool base_allocation; /* export base:allocation context (block status) */
71719cd5 113 bool allocation_depth; /* export qemu:allocation-depth */
3b1f244c
EB
114 bool *bitmaps; /*
115 * export qemu:dirty-bitmap:<export bitmap name>,
116 * sized by exp->nr_export_bitmaps
117 */
e7b1948d
VSO
118} NBDExportMetaContexts;
119
9a304d29
PB
120struct NBDClient {
121 int refcount;
0c9390d9 122 void (*close_fn)(NBDClient *client, bool negotiated);
9a304d29
PB
123
124 NBDExport *exp;
f95910fe 125 QCryptoTLSCreds *tlscreds;
b25e12da 126 char *tlsauthz;
1c778ef7
DB
127 QIOChannelSocket *sioc; /* The underlying data channel */
128 QIOChannel *ioc; /* The current I/O channel which may differ (eg TLS) */
9a304d29
PB
129
130 Coroutine *recv_coroutine;
131
132 CoMutex send_lock;
133 Coroutine *send_coroutine;
134
f148ae7d
SL
135 bool read_yielding;
136 bool quiescing;
137
4b9441f6 138 QTAILQ_ENTRY(NBDClient) next;
9a304d29 139 int nb_requests;
ff2b68aa 140 bool closing;
5c54e7fa 141
6e280648
EB
142 uint32_t check_align; /* If non-zero, check for aligned client requests */
143
5c54e7fa 144 bool structured_reply;
e7b1948d 145 NBDExportMetaContexts export_meta;
9a304d29 146
0cfae925
VSO
147 uint32_t opt; /* Current option being negotiated */
148 uint32_t optlen; /* remaining length of data in ioc for the option being
149 negotiated now */
150};
7a5ca864 151
ff82911c 152static void nbd_client_receive_next_request(NBDClient *client);
958c717d 153
6b8c01e7 154/* Basic flow for negotiation
7a5ca864
FB
155
156 Server Client
7a5ca864 157 Negotiate
6b8c01e7
PB
158
159 or
160
161 Server Client
162 Negotiate #1
163 Option
164 Negotiate #2
165
166 ----
167
168 followed by
169
170 Server Client
7a5ca864
FB
171 Request
172 Response
173 Request
174 Response
175 ...
176 ...
177 Request (type == 2)
6b8c01e7 178
7a5ca864
FB
179*/
180
1d17922a
VSO
181static inline void set_be_option_rep(NBDOptionReply *rep, uint32_t option,
182 uint32_t type, uint32_t length)
183{
184 stq_be_p(&rep->magic, NBD_REP_MAGIC);
185 stl_be_p(&rep->option, option);
186 stl_be_p(&rep->type, type);
187 stl_be_p(&rep->length, length);
188}
189
526e5c65
EB
190/* Send a reply header, including length, but no payload.
191 * Return -errno on error, 0 on success. */
0cfae925
VSO
192static int nbd_negotiate_send_rep_len(NBDClient *client, uint32_t type,
193 uint32_t len, Error **errp)
6b8c01e7 194{
1d17922a 195 NBDOptionReply rep;
6b8c01e7 196
1d17922a 197 trace_nbd_negotiate_send_rep_len(client->opt, nbd_opt_lookup(client->opt),
3736cc5b 198 type, nbd_rep_lookup(type), len);
f95910fe 199
f37708f6 200 assert(len < NBD_MAX_BUFFER_SIZE);
2fd2c840 201
1d17922a
VSO
202 set_be_option_rep(&rep, client->opt, type, len);
203 return nbd_write(client->ioc, &rep, sizeof(rep), errp);
f5076b5a 204}
6b8c01e7 205
526e5c65
EB
206/* Send a reply header with default 0 length.
207 * Return -errno on error, 0 on success. */
0cfae925 208static int nbd_negotiate_send_rep(NBDClient *client, uint32_t type,
2fd2c840 209 Error **errp)
526e5c65 210{
0cfae925 211 return nbd_negotiate_send_rep_len(client, type, 0, errp);
526e5c65
EB
212}
213
36683283
EB
214/* Send an error reply.
215 * Return -errno on error, 0 on success. */
9edc6313 216static int G_GNUC_PRINTF(4, 0)
41f5dfaf
EB
217nbd_negotiate_send_rep_verr(NBDClient *client, uint32_t type,
218 Error **errp, const char *fmt, va_list va)
36683283 219{
795d946d 220 ERRP_GUARD();
df18c04e 221 g_autofree char *msg = NULL;
36683283
EB
222 int ret;
223 size_t len;
224
36683283 225 msg = g_strdup_vprintf(fmt, va);
36683283 226 len = strlen(msg);
5c4fe018 227 assert(len < NBD_MAX_STRING_SIZE);
9588463e 228 trace_nbd_negotiate_send_rep_err(msg);
0cfae925 229 ret = nbd_negotiate_send_rep_len(client, type, len, errp);
36683283 230 if (ret < 0) {
df18c04e 231 return ret;
36683283 232 }
0cfae925 233 if (nbd_write(client->ioc, msg, len, errp) < 0) {
2fd2c840 234 error_prepend(errp, "write failed (error message): ");
df18c04e 235 return -EIO;
36683283 236 }
2fd2c840 237
df18c04e 238 return 0;
36683283
EB
239}
240
5c4fe018
EB
241/*
242 * Return a malloc'd copy of @name suitable for use in an error reply.
243 */
244static char *
245nbd_sanitize_name(const char *name)
246{
247 if (strnlen(name, 80) < 80) {
248 return g_strdup(name);
249 }
250 /* XXX Should we also try to sanitize any control characters? */
251 return g_strdup_printf("%.80s...", name);
252}
253
41f5dfaf
EB
254/* Send an error reply.
255 * Return -errno on error, 0 on success. */
9edc6313 256static int G_GNUC_PRINTF(4, 5)
41f5dfaf
EB
257nbd_negotiate_send_rep_err(NBDClient *client, uint32_t type,
258 Error **errp, const char *fmt, ...)
259{
260 va_list va;
261 int ret;
262
263 va_start(va, fmt);
264 ret = nbd_negotiate_send_rep_verr(client, type, errp, fmt, va);
265 va_end(va);
266 return ret;
267}
268
894e0280
EB
269/* Drop remainder of the current option, and send a reply with the
270 * given error type and message. Return -errno on read or write
271 * failure; or 0 if connection is still live. */
9edc6313 272static int G_GNUC_PRINTF(4, 0)
2e425fd5
VSO
273nbd_opt_vdrop(NBDClient *client, uint32_t type, Error **errp,
274 const char *fmt, va_list va)
894e0280
EB
275{
276 int ret = nbd_drop(client->ioc, client->optlen, errp);
894e0280
EB
277
278 client->optlen = 0;
279 if (!ret) {
894e0280 280 ret = nbd_negotiate_send_rep_verr(client, type, errp, fmt, va);
894e0280
EB
281 }
282 return ret;
283}
284
9edc6313 285static int G_GNUC_PRINTF(4, 5)
2e425fd5
VSO
286nbd_opt_drop(NBDClient *client, uint32_t type, Error **errp,
287 const char *fmt, ...)
288{
289 int ret;
290 va_list va;
291
292 va_start(va, fmt);
293 ret = nbd_opt_vdrop(client, type, errp, fmt, va);
294 va_end(va);
295
296 return ret;
297}
298
9edc6313 299static int G_GNUC_PRINTF(3, 4)
2e425fd5
VSO
300nbd_opt_invalid(NBDClient *client, Error **errp, const char *fmt, ...)
301{
302 int ret;
303 va_list va;
304
305 va_start(va, fmt);
306 ret = nbd_opt_vdrop(client, NBD_REP_ERR_INVALID, errp, fmt, va);
307 va_end(va);
308
309 return ret;
310}
311
894e0280 312/* Read size bytes from the unparsed payload of the current option.
d1e2c3e7 313 * If @check_nul, require that no NUL bytes appear in buffer.
894e0280
EB
314 * Return -errno on I/O error, 0 if option was completely handled by
315 * sending a reply about inconsistent lengths, or 1 on success. */
316static int nbd_opt_read(NBDClient *client, void *buffer, size_t size,
d1e2c3e7 317 bool check_nul, Error **errp)
894e0280
EB
318{
319 if (size > client->optlen) {
2e425fd5
VSO
320 return nbd_opt_invalid(client, errp,
321 "Inconsistent lengths in option %s",
322 nbd_opt_lookup(client->opt));
894e0280
EB
323 }
324 client->optlen -= size;
d1e2c3e7
EB
325 if (qio_channel_read_all(client->ioc, buffer, size, errp) < 0) {
326 return -EIO;
327 }
328
329 if (check_nul && strnlen(buffer, size) != size) {
330 return nbd_opt_invalid(client, errp,
331 "Unexpected embedded NUL in option %s",
332 nbd_opt_lookup(client->opt));
333 }
334 return 1;
894e0280
EB
335}
336
e7b1948d
VSO
337/* Drop size bytes from the unparsed payload of the current option.
338 * Return -errno on I/O error, 0 if option was completely handled by
339 * sending a reply about inconsistent lengths, or 1 on success. */
340static int nbd_opt_skip(NBDClient *client, size_t size, Error **errp)
341{
342 if (size > client->optlen) {
343 return nbd_opt_invalid(client, errp,
344 "Inconsistent lengths in option %s",
345 nbd_opt_lookup(client->opt));
346 }
347 client->optlen -= size;
348 return nbd_drop(client->ioc, size, errp) < 0 ? -EIO : 1;
349}
350
12296459
VSO
351/* nbd_opt_read_name
352 *
353 * Read a string with the format:
93676c88 354 * uint32_t len (<= NBD_MAX_STRING_SIZE)
12296459
VSO
355 * len bytes string (not 0-terminated)
356 *
9d7ab222 357 * On success, @name will be allocated.
12296459
VSO
358 * If @length is non-null, it will be set to the actual string length.
359 *
360 * Return -errno on I/O error, 0 if option was completely handled by
361 * sending a reply about inconsistent lengths, or 1 on success.
362 */
9d7ab222 363static int nbd_opt_read_name(NBDClient *client, char **name, uint32_t *length,
12296459
VSO
364 Error **errp)
365{
366 int ret;
367 uint32_t len;
9d7ab222 368 g_autofree char *local_name = NULL;
12296459 369
9d7ab222 370 *name = NULL;
d1e2c3e7 371 ret = nbd_opt_read(client, &len, sizeof(len), false, errp);
12296459
VSO
372 if (ret <= 0) {
373 return ret;
374 }
80c7c2b0 375 len = cpu_to_be32(len);
12296459 376
93676c88 377 if (len > NBD_MAX_STRING_SIZE) {
12296459
VSO
378 return nbd_opt_invalid(client, errp,
379 "Invalid name length: %" PRIu32, len);
380 }
381
9d7ab222 382 local_name = g_malloc(len + 1);
d1e2c3e7 383 ret = nbd_opt_read(client, local_name, len, true, errp);
12296459
VSO
384 if (ret <= 0) {
385 return ret;
386 }
9d7ab222 387 local_name[len] = '\0';
12296459
VSO
388
389 if (length) {
390 *length = len;
391 }
9d7ab222 392 *name = g_steal_pointer(&local_name);
12296459
VSO
393
394 return 1;
395}
396
526e5c65
EB
397/* Send a single NBD_REP_SERVER reply to NBD_OPT_LIST, including payload.
398 * Return -errno on error, 0 on success. */
0cfae925 399static int nbd_negotiate_send_rep_list(NBDClient *client, NBDExport *exp,
2fd2c840 400 Error **errp)
32d7d2e0 401{
795d946d 402 ERRP_GUARD();
b1a75b33 403 size_t name_len, desc_len;
526e5c65 404 uint32_t len;
b1a75b33
EB
405 const char *name = exp->name ? exp->name : "";
406 const char *desc = exp->description ? exp->description : "";
0cfae925 407 QIOChannel *ioc = client->ioc;
2e5c9ad6 408 int ret;
32d7d2e0 409
9588463e 410 trace_nbd_negotiate_send_rep_list(name, desc);
b1a75b33
EB
411 name_len = strlen(name);
412 desc_len = strlen(desc);
93676c88 413 assert(name_len <= NBD_MAX_STRING_SIZE && desc_len <= NBD_MAX_STRING_SIZE);
526e5c65 414 len = name_len + desc_len + sizeof(len);
0cfae925 415 ret = nbd_negotiate_send_rep_len(client, NBD_REP_SERVER, len, errp);
2e5c9ad6
VSO
416 if (ret < 0) {
417 return ret;
32d7d2e0 418 }
526e5c65 419
32d7d2e0 420 len = cpu_to_be32(name_len);
2fd2c840
VSO
421 if (nbd_write(ioc, &len, sizeof(len), errp) < 0) {
422 error_prepend(errp, "write failed (name length): ");
b1a75b33
EB
423 return -EINVAL;
424 }
2fd2c840
VSO
425
426 if (nbd_write(ioc, name, name_len, errp) < 0) {
427 error_prepend(errp, "write failed (name buffer): ");
32d7d2e0
HB
428 return -EINVAL;
429 }
2fd2c840
VSO
430
431 if (nbd_write(ioc, desc, desc_len, errp) < 0) {
432 error_prepend(errp, "write failed (description buffer): ");
32d7d2e0
HB
433 return -EINVAL;
434 }
2fd2c840 435
32d7d2e0
HB
436 return 0;
437}
438
526e5c65
EB
439/* Process the NBD_OPT_LIST command, with a potential series of replies.
440 * Return -errno on error, 0 on success. */
e68c35cf 441static int nbd_negotiate_handle_list(NBDClient *client, Error **errp)
32d7d2e0 442{
32d7d2e0 443 NBDExport *exp;
0cfae925 444 assert(client->opt == NBD_OPT_LIST);
32d7d2e0 445
32d7d2e0
HB
446 /* For each export, send a NBD_REP_SERVER reply. */
447 QTAILQ_FOREACH(exp, &exports, next) {
0cfae925 448 if (nbd_negotiate_send_rep_list(client, exp, errp)) {
32d7d2e0
HB
449 return -EINVAL;
450 }
451 }
452 /* Finish with a NBD_REP_ACK. */
0cfae925 453 return nbd_negotiate_send_rep(client, NBD_REP_ACK, errp);
32d7d2e0
HB
454}
455
af736e54 456static void nbd_check_meta_export(NBDClient *client)
e7b1948d 457{
47ec485e
EB
458 if (client->exp != client->export_meta.exp) {
459 client->export_meta.count = 0;
460 }
e7b1948d
VSO
461}
462
f37708f6
EB
463/* Send a reply to NBD_OPT_EXPORT_NAME.
464 * Return -errno on error, 0 on success. */
dbb38caa 465static int nbd_negotiate_handle_export_name(NBDClient *client, bool no_zeroes,
2fd2c840 466 Error **errp)
f5076b5a 467{
795d946d 468 ERRP_GUARD();
9d7ab222 469 g_autofree char *name = NULL;
5f66d060 470 char buf[NBD_REPLY_EXPORT_NAME_SIZE] = "";
23e099c3
EB
471 size_t len;
472 int ret;
dbb38caa 473 uint16_t myflags;
6b8c01e7 474
f5076b5a
HB
475 /* Client sends:
476 [20 .. xx] export name (length bytes)
5f66d060
EB
477 Server replies:
478 [ 0 .. 7] size
479 [ 8 .. 9] export flags
480 [10 .. 133] reserved (0) [unless no_zeroes]
f5076b5a 481 */
9588463e 482 trace_nbd_negotiate_handle_export_name();
93676c88 483 if (client->optlen > NBD_MAX_STRING_SIZE) {
2fd2c840 484 error_setg(errp, "Bad length received");
d9faeed8 485 return -EINVAL;
6b8c01e7 486 }
9d7ab222 487 name = g_malloc(client->optlen + 1);
e6798f06 488 if (nbd_read(client->ioc, name, client->optlen, "export name", errp) < 0) {
32f158a6 489 return -EIO;
6b8c01e7 490 }
0cfae925
VSO
491 name[client->optlen] = '\0';
492 client->optlen = 0;
6b8c01e7 493
9588463e 494 trace_nbd_negotiate_handle_export_name_request(name);
9344e5f5 495
6b8c01e7
PB
496 client->exp = nbd_export_find(name);
497 if (!client->exp) {
2fd2c840 498 error_setg(errp, "export not found");
d9faeed8 499 return -EINVAL;
6b8c01e7
PB
500 }
501
dbb38caa
EB
502 myflags = client->exp->nbdflags;
503 if (client->structured_reply) {
504 myflags |= NBD_FLAG_SEND_DF;
505 }
506 trace_nbd_negotiate_new_style_size_flags(client->exp->size, myflags);
23e099c3 507 stq_be_p(buf, client->exp->size);
dbb38caa 508 stw_be_p(buf + 8, myflags);
23e099c3
EB
509 len = no_zeroes ? 10 : sizeof(buf);
510 ret = nbd_write(client->ioc, buf, len, errp);
511 if (ret < 0) {
512 error_prepend(errp, "write failed: ");
513 return ret;
514 }
515
6b8c01e7 516 QTAILQ_INSERT_TAIL(&client->exp->clients, client, next);
c69de1be 517 blk_exp_ref(&client->exp->common);
af736e54 518 nbd_check_meta_export(client);
d9faeed8
VSO
519
520 return 0;
6b8c01e7
PB
521}
522
f37708f6
EB
523/* Send a single NBD_REP_INFO, with a buffer @buf of @length bytes.
524 * The buffer does NOT include the info type prefix.
525 * Return -errno on error, 0 if ready to send more. */
0cfae925 526static int nbd_negotiate_send_info(NBDClient *client,
f37708f6
EB
527 uint16_t info, uint32_t length, void *buf,
528 Error **errp)
529{
530 int rc;
531
532 trace_nbd_negotiate_send_info(info, nbd_info_lookup(info), length);
0cfae925 533 rc = nbd_negotiate_send_rep_len(client, NBD_REP_INFO,
f37708f6
EB
534 sizeof(info) + length, errp);
535 if (rc < 0) {
536 return rc;
537 }
80c7c2b0 538 info = cpu_to_be16(info);
f37708f6
EB
539 if (nbd_write(client->ioc, &info, sizeof(info), errp) < 0) {
540 return -EIO;
541 }
542 if (nbd_write(client->ioc, buf, length, errp) < 0) {
543 return -EIO;
544 }
545 return 0;
546}
547
a16a7907
EB
548/* nbd_reject_length: Handle any unexpected payload.
549 * @fatal requests that we quit talking to the client, even if we are able
550 * to successfully send an error reply.
551 * Return:
552 * -errno transmission error occurred or @fatal was requested, errp is set
553 * 0 error message successfully sent to client, errp is not set
554 */
0cfae925 555static int nbd_reject_length(NBDClient *client, bool fatal, Error **errp)
a16a7907
EB
556{
557 int ret;
558
0cfae925 559 assert(client->optlen);
2e425fd5
VSO
560 ret = nbd_opt_invalid(client, errp, "option '%s' has unexpected length",
561 nbd_opt_lookup(client->opt));
a16a7907 562 if (fatal && !ret) {
894e0280 563 error_setg(errp, "option '%s' has unexpected length",
0cfae925 564 nbd_opt_lookup(client->opt));
a16a7907
EB
565 return -EINVAL;
566 }
567 return ret;
568}
569
f37708f6
EB
570/* Handle NBD_OPT_INFO and NBD_OPT_GO.
571 * Return -errno on error, 0 if ready for next option, and 1 to move
572 * into transmission phase. */
dbb38caa 573static int nbd_negotiate_handle_info(NBDClient *client, Error **errp)
f37708f6
EB
574{
575 int rc;
9d7ab222 576 g_autofree char *name = NULL;
f37708f6
EB
577 NBDExport *exp;
578 uint16_t requests;
579 uint16_t request;
bbc35fc2 580 uint32_t namelen = 0;
f37708f6 581 bool sendname = false;
0c1d50bd
EB
582 bool blocksize = false;
583 uint32_t sizes[3];
f37708f6 584 char buf[sizeof(uint64_t) + sizeof(uint16_t)];
6e280648 585 uint32_t check_align = 0;
dbb38caa 586 uint16_t myflags;
f37708f6
EB
587
588 /* Client sends:
589 4 bytes: L, name length (can be 0)
590 L bytes: export name
591 2 bytes: N, number of requests (can be 0)
592 N * 2 bytes: N requests
593 */
9d7ab222 594 rc = nbd_opt_read_name(client, &name, &namelen, errp);
894e0280
EB
595 if (rc <= 0) {
596 return rc;
f37708f6 597 }
f37708f6
EB
598 trace_nbd_negotiate_handle_export_name_request(name);
599
d1e2c3e7 600 rc = nbd_opt_read(client, &requests, sizeof(requests), false, errp);
894e0280
EB
601 if (rc <= 0) {
602 return rc;
f37708f6 603 }
80c7c2b0 604 requests = be16_to_cpu(requests);
f37708f6 605 trace_nbd_negotiate_handle_info_requests(requests);
f37708f6 606 while (requests--) {
d1e2c3e7 607 rc = nbd_opt_read(client, &request, sizeof(request), false, errp);
894e0280
EB
608 if (rc <= 0) {
609 return rc;
f37708f6 610 }
80c7c2b0 611 request = be16_to_cpu(request);
f37708f6
EB
612 trace_nbd_negotiate_handle_info_request(request,
613 nbd_info_lookup(request));
0c1d50bd
EB
614 /* We care about NBD_INFO_NAME and NBD_INFO_BLOCK_SIZE;
615 * everything else is either a request we don't know or
616 * something we send regardless of request */
617 switch (request) {
618 case NBD_INFO_NAME:
f37708f6 619 sendname = true;
0c1d50bd
EB
620 break;
621 case NBD_INFO_BLOCK_SIZE:
622 blocksize = true;
623 break;
f37708f6
EB
624 }
625 }
894e0280
EB
626 if (client->optlen) {
627 return nbd_reject_length(client, false, errp);
628 }
f37708f6
EB
629
630 exp = nbd_export_find(name);
631 if (!exp) {
5c4fe018
EB
632 g_autofree char *sane_name = nbd_sanitize_name(name);
633
0cfae925
VSO
634 return nbd_negotiate_send_rep_err(client, NBD_REP_ERR_UNKNOWN,
635 errp, "export '%s' not present",
5c4fe018 636 sane_name);
f37708f6
EB
637 }
638
639 /* Don't bother sending NBD_INFO_NAME unless client requested it */
640 if (sendname) {
0cfae925 641 rc = nbd_negotiate_send_info(client, NBD_INFO_NAME, namelen, name,
f37708f6
EB
642 errp);
643 if (rc < 0) {
644 return rc;
645 }
646 }
647
648 /* Send NBD_INFO_DESCRIPTION only if available, regardless of
649 * client request */
650 if (exp->description) {
651 size_t len = strlen(exp->description);
652
93676c88 653 assert(len <= NBD_MAX_STRING_SIZE);
0cfae925 654 rc = nbd_negotiate_send_info(client, NBD_INFO_DESCRIPTION,
f37708f6
EB
655 len, exp->description, errp);
656 if (rc < 0) {
657 return rc;
658 }
659 }
660
0c1d50bd
EB
661 /* Send NBD_INFO_BLOCK_SIZE always, but tweak the minimum size
662 * according to whether the client requested it, and according to
663 * whether this is OPT_INFO or OPT_GO. */
b0245d64
EB
664 /* minimum - 1 for back-compat, or actual if client will obey it. */
665 if (client->opt == NBD_OPT_INFO || blocksize) {
37a4f70c 666 check_align = sizes[0] = blk_get_request_alignment(exp->common.blk);
b0245d64
EB
667 } else {
668 sizes[0] = 1;
669 }
670 assert(sizes[0] <= NBD_MAX_BUFFER_SIZE);
0c1d50bd
EB
671 /* preferred - Hard-code to 4096 for now.
672 * TODO: is blk_bs(blk)->bl.opt_transfer appropriate? */
b0245d64 673 sizes[1] = MAX(4096, sizes[0]);
0c1d50bd 674 /* maximum - At most 32M, but smaller as appropriate. */
37a4f70c 675 sizes[2] = MIN(blk_get_max_transfer(exp->common.blk), NBD_MAX_BUFFER_SIZE);
0c1d50bd 676 trace_nbd_negotiate_handle_info_block_size(sizes[0], sizes[1], sizes[2]);
80c7c2b0
PM
677 sizes[0] = cpu_to_be32(sizes[0]);
678 sizes[1] = cpu_to_be32(sizes[1]);
679 sizes[2] = cpu_to_be32(sizes[2]);
0cfae925 680 rc = nbd_negotiate_send_info(client, NBD_INFO_BLOCK_SIZE,
0c1d50bd
EB
681 sizeof(sizes), sizes, errp);
682 if (rc < 0) {
683 return rc;
684 }
685
f37708f6 686 /* Send NBD_INFO_EXPORT always */
dbb38caa
EB
687 myflags = exp->nbdflags;
688 if (client->structured_reply) {
689 myflags |= NBD_FLAG_SEND_DF;
690 }
691 trace_nbd_negotiate_new_style_size_flags(exp->size, myflags);
f37708f6 692 stq_be_p(buf, exp->size);
dbb38caa 693 stw_be_p(buf + 8, myflags);
0cfae925 694 rc = nbd_negotiate_send_info(client, NBD_INFO_EXPORT,
f37708f6
EB
695 sizeof(buf), buf, errp);
696 if (rc < 0) {
697 return rc;
698 }
699
099fbcd6
EB
700 /*
701 * If the client is just asking for NBD_OPT_INFO, but forgot to
702 * request block sizes in a situation that would impact
703 * performance, then return an error. But for NBD_OPT_GO, we
704 * tolerate all clients, regardless of alignments.
705 */
706 if (client->opt == NBD_OPT_INFO && !blocksize &&
37a4f70c 707 blk_get_request_alignment(exp->common.blk) > 1) {
0cfae925
VSO
708 return nbd_negotiate_send_rep_err(client,
709 NBD_REP_ERR_BLOCK_SIZE_REQD,
0c1d50bd
EB
710 errp,
711 "request NBD_INFO_BLOCK_SIZE to "
712 "use this export");
713 }
714
f37708f6 715 /* Final reply */
0cfae925 716 rc = nbd_negotiate_send_rep(client, NBD_REP_ACK, errp);
f37708f6
EB
717 if (rc < 0) {
718 return rc;
719 }
720
0cfae925 721 if (client->opt == NBD_OPT_GO) {
f37708f6 722 client->exp = exp;
6e280648 723 client->check_align = check_align;
f37708f6 724 QTAILQ_INSERT_TAIL(&client->exp->clients, client, next);
c69de1be 725 blk_exp_ref(&client->exp->common);
af736e54 726 nbd_check_meta_export(client);
f37708f6
EB
727 rc = 1;
728 }
729 return rc;
f37708f6
EB
730}
731
732
36683283
EB
733/* Handle NBD_OPT_STARTTLS. Return NULL to drop connection, or else the
734 * new channel for all further (now-encrypted) communication. */
f95910fe 735static QIOChannel *nbd_negotiate_handle_starttls(NBDClient *client,
2fd2c840 736 Error **errp)
f95910fe
DB
737{
738 QIOChannel *ioc;
739 QIOChannelTLS *tioc;
740 struct NBDTLSHandshakeData data = { 0 };
741
0cfae925
VSO
742 assert(client->opt == NBD_OPT_STARTTLS);
743
9588463e 744 trace_nbd_negotiate_handle_starttls();
f95910fe 745 ioc = client->ioc;
f95910fe 746
0cfae925 747 if (nbd_negotiate_send_rep(client, NBD_REP_ACK, errp) < 0) {
63d5ef86
EB
748 return NULL;
749 }
f95910fe
DB
750
751 tioc = qio_channel_tls_new_server(ioc,
752 client->tlscreds,
b25e12da 753 client->tlsauthz,
2fd2c840 754 errp);
f95910fe
DB
755 if (!tioc) {
756 return NULL;
757 }
758
0d73f725 759 qio_channel_set_name(QIO_CHANNEL(tioc), "nbd-server-tls");
9588463e 760 trace_nbd_negotiate_handle_starttls_handshake();
f95910fe
DB
761 data.loop = g_main_loop_new(g_main_context_default(), FALSE);
762 qio_channel_tls_handshake(tioc,
763 nbd_tls_handshake,
764 &data,
1939ccda 765 NULL,
f95910fe
DB
766 NULL);
767
768 if (!data.complete) {
769 g_main_loop_run(data.loop);
770 }
771 g_main_loop_unref(data.loop);
772 if (data.error) {
773 object_unref(OBJECT(tioc));
2fd2c840 774 error_propagate(errp, data.error);
f95910fe
DB
775 return NULL;
776 }
777
778 return QIO_CHANNEL(tioc);
779}
780
e7b1948d
VSO
781/* nbd_negotiate_send_meta_context
782 *
783 * Send one chunk of reply to NBD_OPT_{LIST,SET}_META_CONTEXT
784 *
785 * For NBD_OPT_LIST_META_CONTEXT @context_id is ignored, 0 is used instead.
786 */
787static int nbd_negotiate_send_meta_context(NBDClient *client,
788 const char *context,
789 uint32_t context_id,
790 Error **errp)
791{
792 NBDOptionReplyMetaContext opt;
793 struct iovec iov[] = {
794 {.iov_base = &opt, .iov_len = sizeof(opt)},
795 {.iov_base = (void *)context, .iov_len = strlen(context)}
796 };
797
93676c88 798 assert(iov[1].iov_len <= NBD_MAX_STRING_SIZE);
e7b1948d
VSO
799 if (client->opt == NBD_OPT_LIST_META_CONTEXT) {
800 context_id = 0;
801 }
802
2b53af25 803 trace_nbd_negotiate_meta_query_reply(context, context_id);
e7b1948d
VSO
804 set_be_option_rep(&opt.h, client->opt, NBD_REP_META_CONTEXT,
805 sizeof(opt) - sizeof(opt.h) + iov[1].iov_len);
806 stl_be_p(&opt.context_id, context_id);
807
808 return qio_channel_writev_all(client->ioc, iov, 2, errp) < 0 ? -EIO : 0;
809}
810
ebd57062
EB
811/*
812 * Return true if @query matches @pattern, or if @query is empty when
813 * the @client is performing _LIST_.
dbb8b396 814 */
ebd57062
EB
815static bool nbd_meta_empty_or_pattern(NBDClient *client, const char *pattern,
816 const char *query)
e7b1948d 817{
ebd57062
EB
818 if (!*query) {
819 trace_nbd_negotiate_meta_query_parse("empty");
820 return client->opt == NBD_OPT_LIST_META_CONTEXT;
e7b1948d 821 }
ebd57062 822 if (strcmp(query, pattern) == 0) {
b0769d8f 823 trace_nbd_negotiate_meta_query_parse(pattern);
ebd57062 824 return true;
e7b1948d 825 }
ebd57062
EB
826 trace_nbd_negotiate_meta_query_skip("pattern not matched");
827 return false;
e7b1948d
VSO
828}
829
b0769d8f 830/*
ebd57062 831 * Return true and adjust @str in place if it begins with @prefix.
b0769d8f 832 */
ebd57062 833static bool nbd_strshift(const char **str, const char *prefix)
b0769d8f 834{
ebd57062 835 size_t len = strlen(prefix);
b0769d8f 836
ebd57062
EB
837 if (strncmp(*str, prefix, len) == 0) {
838 *str += len;
839 return true;
b0769d8f 840 }
ebd57062 841 return false;
b0769d8f
VSO
842}
843
844/* nbd_meta_base_query
845 *
846 * Handle queries to 'base' namespace. For now, only the base:allocation
ebd57062 847 * context is available. Return true if @query has been handled.
b0769d8f 848 */
ebd57062
EB
849static bool nbd_meta_base_query(NBDClient *client, NBDExportMetaContexts *meta,
850 const char *query)
b0769d8f 851{
ebd57062
EB
852 if (!nbd_strshift(&query, "base:")) {
853 return false;
854 }
855 trace_nbd_negotiate_meta_query_parse("base:");
856
857 if (nbd_meta_empty_or_pattern(client, "allocation", query)) {
858 meta->base_allocation = true;
859 }
860 return true;
b0769d8f
VSO
861}
862
ebd57062 863/* nbd_meta_qemu_query
3d068aff 864 *
ebd57062 865 * Handle queries to 'qemu' namespace. For now, only the qemu:dirty-bitmap:
71719cd5
EB
866 * and qemu:allocation-depth contexts are available. Return true if @query
867 * has been handled.
ebd57062
EB
868 */
869static bool nbd_meta_qemu_query(NBDClient *client, NBDExportMetaContexts *meta,
870 const char *query)
3d068aff 871{
3b1f244c
EB
872 size_t i;
873
ebd57062
EB
874 if (!nbd_strshift(&query, "qemu:")) {
875 return false;
3d068aff 876 }
ebd57062 877 trace_nbd_negotiate_meta_query_parse("qemu:");
3d068aff 878
ebd57062 879 if (!*query) {
3d068aff 880 if (client->opt == NBD_OPT_LIST_META_CONTEXT) {
71719cd5 881 meta->allocation_depth = meta->exp->allocation_depth;
76df2b8d
EB
882 if (meta->exp->nr_export_bitmaps) {
883 memset(meta->bitmaps, 1, meta->exp->nr_export_bitmaps);
884 }
3d068aff
VSO
885 }
886 trace_nbd_negotiate_meta_query_parse("empty");
ebd57062 887 return true;
3d068aff
VSO
888 }
889
71719cd5
EB
890 if (strcmp(query, "allocation-depth") == 0) {
891 trace_nbd_negotiate_meta_query_parse("allocation-depth");
892 meta->allocation_depth = meta->exp->allocation_depth;
893 return true;
894 }
895
ebd57062
EB
896 if (nbd_strshift(&query, "dirty-bitmap:")) {
897 trace_nbd_negotiate_meta_query_parse("dirty-bitmap:");
3b1f244c 898 if (!*query) {
76df2b8d
EB
899 if (client->opt == NBD_OPT_LIST_META_CONTEXT &&
900 meta->exp->nr_export_bitmaps) {
3b1f244c
EB
901 memset(meta->bitmaps, 1, meta->exp->nr_export_bitmaps);
902 }
903 trace_nbd_negotiate_meta_query_parse("empty");
ebd57062
EB
904 return true;
905 }
3b1f244c
EB
906
907 for (i = 0; i < meta->exp->nr_export_bitmaps; i++) {
908 const char *bm_name;
909
910 bm_name = bdrv_dirty_bitmap_name(meta->exp->export_bitmaps[i]);
911 if (strcmp(bm_name, query) == 0) {
912 meta->bitmaps[i] = true;
913 trace_nbd_negotiate_meta_query_parse(query);
914 return true;
915 }
ebd57062 916 }
3b1f244c 917 trace_nbd_negotiate_meta_query_skip("no dirty-bitmap match");
ebd57062 918 return true;
3d068aff
VSO
919 }
920
71719cd5 921 trace_nbd_negotiate_meta_query_skip("unknown qemu context");
ebd57062 922 return true;
3d068aff
VSO
923}
924
e7b1948d
VSO
925/* nbd_negotiate_meta_query
926 *
927 * Parse namespace name and call corresponding function to parse body of the
928 * query.
929 *
93676c88 930 * The only supported namespaces are 'base' and 'qemu'.
e7b1948d 931 *
e7b1948d
VSO
932 * Return -errno on I/O error, 0 if option was completely handled by
933 * sending a reply about inconsistent lengths, or 1 on success. */
934static int nbd_negotiate_meta_query(NBDClient *client,
935 NBDExportMetaContexts *meta, Error **errp)
936{
937 int ret;
ebd57062 938 g_autofree char *query = NULL;
e7b1948d
VSO
939 uint32_t len;
940
d1e2c3e7 941 ret = nbd_opt_read(client, &len, sizeof(len), false, errp);
e7b1948d
VSO
942 if (ret <= 0) {
943 return ret;
944 }
80c7c2b0 945 len = cpu_to_be32(len);
e7b1948d 946
93676c88
EB
947 if (len > NBD_MAX_STRING_SIZE) {
948 trace_nbd_negotiate_meta_query_skip("length too long");
949 return nbd_opt_skip(client, len, errp);
950 }
e7b1948d 951
ebd57062
EB
952 query = g_malloc(len + 1);
953 ret = nbd_opt_read(client, query, len, true, errp);
e7b1948d
VSO
954 if (ret <= 0) {
955 return ret;
956 }
ebd57062 957 query[len] = '\0';
3d068aff 958
ebd57062
EB
959 if (nbd_meta_base_query(client, meta, query)) {
960 return 1;
961 }
962 if (nbd_meta_qemu_query(client, meta, query)) {
963 return 1;
e7b1948d
VSO
964 }
965
3d068aff 966 trace_nbd_negotiate_meta_query_skip("unknown namespace");
ebd57062 967 return 1;
e7b1948d
VSO
968}
969
970/* nbd_negotiate_meta_queries
971 * Handle NBD_OPT_LIST_META_CONTEXT and NBD_OPT_SET_META_CONTEXT
972 *
973 * Return -errno on I/O error, or 0 if option was completely handled. */
974static int nbd_negotiate_meta_queries(NBDClient *client,
975 NBDExportMetaContexts *meta, Error **errp)
976{
977 int ret;
9d7ab222 978 g_autofree char *export_name = NULL;
cd1675f8
RH
979 /* Mark unused to work around https://bugs.llvm.org/show_bug.cgi?id=3888 */
980 g_autofree G_GNUC_UNUSED bool *bitmaps = NULL;
3b1f244c 981 NBDExportMetaContexts local_meta = {0};
e7b1948d 982 uint32_t nb_queries;
3b1f244c 983 size_t i;
47ec485e 984 size_t count = 0;
e7b1948d 985
da24597d 986 if (client->opt == NBD_OPT_SET_META_CONTEXT && !client->structured_reply) {
e7b1948d
VSO
987 return nbd_opt_invalid(client, errp,
988 "request option '%s' when structured reply "
989 "is not negotiated",
990 nbd_opt_lookup(client->opt));
991 }
992
993 if (client->opt == NBD_OPT_LIST_META_CONTEXT) {
994 /* Only change the caller's meta on SET. */
995 meta = &local_meta;
996 }
997
3b1f244c 998 g_free(meta->bitmaps);
e7b1948d
VSO
999 memset(meta, 0, sizeof(*meta));
1000
9d7ab222 1001 ret = nbd_opt_read_name(client, &export_name, NULL, errp);
e7b1948d
VSO
1002 if (ret <= 0) {
1003 return ret;
1004 }
1005
af736e54
VSO
1006 meta->exp = nbd_export_find(export_name);
1007 if (meta->exp == NULL) {
5c4fe018
EB
1008 g_autofree char *sane_name = nbd_sanitize_name(export_name);
1009
e7b1948d 1010 return nbd_opt_drop(client, NBD_REP_ERR_UNKNOWN, errp,
5c4fe018 1011 "export '%s' not present", sane_name);
e7b1948d 1012 }
3b1f244c
EB
1013 meta->bitmaps = g_new0(bool, meta->exp->nr_export_bitmaps);
1014 if (client->opt == NBD_OPT_LIST_META_CONTEXT) {
1015 bitmaps = meta->bitmaps;
1016 }
e7b1948d 1017
d1e2c3e7 1018 ret = nbd_opt_read(client, &nb_queries, sizeof(nb_queries), false, errp);
e7b1948d
VSO
1019 if (ret <= 0) {
1020 return ret;
1021 }
80c7c2b0 1022 nb_queries = cpu_to_be32(nb_queries);
2b53af25 1023 trace_nbd_negotiate_meta_context(nbd_opt_lookup(client->opt),
af736e54 1024 export_name, nb_queries);
e7b1948d
VSO
1025
1026 if (client->opt == NBD_OPT_LIST_META_CONTEXT && !nb_queries) {
1027 /* enable all known contexts */
1028 meta->base_allocation = true;
71719cd5 1029 meta->allocation_depth = meta->exp->allocation_depth;
76df2b8d
EB
1030 if (meta->exp->nr_export_bitmaps) {
1031 memset(meta->bitmaps, 1, meta->exp->nr_export_bitmaps);
1032 }
e7b1948d
VSO
1033 } else {
1034 for (i = 0; i < nb_queries; ++i) {
1035 ret = nbd_negotiate_meta_query(client, meta, errp);
1036 if (ret <= 0) {
1037 return ret;
1038 }
1039 }
1040 }
1041
1042 if (meta->base_allocation) {
1043 ret = nbd_negotiate_send_meta_context(client, "base:allocation",
1044 NBD_META_ID_BASE_ALLOCATION,
1045 errp);
1046 if (ret < 0) {
1047 return ret;
1048 }
47ec485e 1049 count++;
e7b1948d
VSO
1050 }
1051
71719cd5
EB
1052 if (meta->allocation_depth) {
1053 ret = nbd_negotiate_send_meta_context(client, "qemu:allocation-depth",
1054 NBD_META_ID_ALLOCATION_DEPTH,
1055 errp);
1056 if (ret < 0) {
1057 return ret;
1058 }
1059 count++;
1060 }
1061
3b1f244c
EB
1062 for (i = 0; i < meta->exp->nr_export_bitmaps; i++) {
1063 const char *bm_name;
1064 g_autofree char *context = NULL;
1065
1066 if (!meta->bitmaps[i]) {
1067 continue;
1068 }
1069
1070 bm_name = bdrv_dirty_bitmap_name(meta->exp->export_bitmaps[i]);
1071 context = g_strdup_printf("qemu:dirty-bitmap:%s", bm_name);
02e87e3b
EB
1072
1073 ret = nbd_negotiate_send_meta_context(client, context,
3b1f244c 1074 NBD_META_ID_DIRTY_BITMAP + i,
3d068aff
VSO
1075 errp);
1076 if (ret < 0) {
1077 return ret;
1078 }
47ec485e 1079 count++;
3d068aff
VSO
1080 }
1081
e7b1948d
VSO
1082 ret = nbd_negotiate_send_rep(client, NBD_REP_ACK, errp);
1083 if (ret == 0) {
47ec485e 1084 meta->count = count;
e7b1948d
VSO
1085 }
1086
1087 return ret;
1088}
1089
1e120ffe 1090/* nbd_negotiate_options
f37708f6
EB
1091 * Process all NBD_OPT_* client option commands, during fixed newstyle
1092 * negotiation.
1e120ffe 1093 * Return:
2fd2c840
VSO
1094 * -errno on error, errp is set
1095 * 0 on successful negotiation, errp is not set
1096 * 1 if client sent NBD_OPT_ABORT, i.e. on valid disconnect,
1097 * errp is not set
1e120ffe 1098 */
dbb38caa 1099static int nbd_negotiate_options(NBDClient *client, Error **errp)
f5076b5a 1100{
9c122ada 1101 uint32_t flags;
26afa868 1102 bool fixedNewstyle = false;
23e099c3 1103 bool no_zeroes = false;
9c122ada
HR
1104
1105 /* Client sends:
1106 [ 0 .. 3] client flags
1107
f37708f6 1108 Then we loop until NBD_OPT_EXPORT_NAME or NBD_OPT_GO:
9c122ada
HR
1109 [ 0 .. 7] NBD_OPTS_MAGIC
1110 [ 8 .. 11] NBD option
1111 [12 .. 15] Data length
1112 ... Rest of request
1113
1114 [ 0 .. 7] NBD_OPTS_MAGIC
1115 [ 8 .. 11] Second NBD option
1116 [12 .. 15] Data length
1117 ... Rest of request
1118 */
1119
e6798f06 1120 if (nbd_read32(client->ioc, &flags, "flags", errp) < 0) {
9c122ada
HR
1121 return -EIO;
1122 }
621c4f4e 1123 trace_nbd_negotiate_options_flags(flags);
26afa868 1124 if (flags & NBD_FLAG_C_FIXED_NEWSTYLE) {
26afa868
DB
1125 fixedNewstyle = true;
1126 flags &= ~NBD_FLAG_C_FIXED_NEWSTYLE;
1127 }
c203c59a 1128 if (flags & NBD_FLAG_C_NO_ZEROES) {
23e099c3 1129 no_zeroes = true;
c203c59a
EB
1130 flags &= ~NBD_FLAG_C_NO_ZEROES;
1131 }
26afa868 1132 if (flags != 0) {
2fd2c840 1133 error_setg(errp, "Unknown client flags 0x%" PRIx32 " received", flags);
621c4f4e 1134 return -EINVAL;
9c122ada
HR
1135 }
1136
f5076b5a 1137 while (1) {
9c122ada 1138 int ret;
7f9039cd 1139 uint32_t option, length;
f5076b5a
HB
1140 uint64_t magic;
1141
e6798f06 1142 if (nbd_read64(client->ioc, &magic, "opts magic", errp) < 0) {
f5076b5a
HB
1143 return -EINVAL;
1144 }
9588463e
VSO
1145 trace_nbd_negotiate_options_check_magic(magic);
1146 if (magic != NBD_OPTS_MAGIC) {
2fd2c840 1147 error_setg(errp, "Bad magic received");
f5076b5a
HB
1148 return -EINVAL;
1149 }
1150
e6798f06 1151 if (nbd_read32(client->ioc, &option, "option", errp) < 0) {
f5076b5a
HB
1152 return -EINVAL;
1153 }
0cfae925 1154 client->opt = option;
f5076b5a 1155
e6798f06 1156 if (nbd_read32(client->ioc, &length, "option length", errp) < 0) {
f5076b5a
HB
1157 return -EINVAL;
1158 }
894e0280 1159 assert(!client->optlen);
0cfae925 1160 client->optlen = length;
f5076b5a 1161
fdad35ef
EB
1162 if (length > NBD_MAX_BUFFER_SIZE) {
1163 error_setg(errp, "len (%" PRIu32" ) is larger than max len (%u)",
1164 length, NBD_MAX_BUFFER_SIZE);
1165 return -EINVAL;
1166 }
1167
3736cc5b
EB
1168 trace_nbd_negotiate_options_check_option(option,
1169 nbd_opt_lookup(option));
f95910fe
DB
1170 if (client->tlscreds &&
1171 client->ioc == (QIOChannel *)client->sioc) {
1172 QIOChannel *tioc;
1173 if (!fixedNewstyle) {
7f9039cd 1174 error_setg(errp, "Unsupported option 0x%" PRIx32, option);
f95910fe
DB
1175 return -EINVAL;
1176 }
7f9039cd 1177 switch (option) {
f95910fe 1178 case NBD_OPT_STARTTLS:
e68c35cf
EB
1179 if (length) {
1180 /* Unconditionally drop the connection if the client
1181 * can't start a TLS negotiation correctly */
0cfae925 1182 return nbd_reject_length(client, true, errp);
e68c35cf
EB
1183 }
1184 tioc = nbd_negotiate_handle_starttls(client, errp);
f95910fe
DB
1185 if (!tioc) {
1186 return -EIO;
1187 }
8cbee49e 1188 ret = 0;
f95910fe
DB
1189 object_unref(OBJECT(client->ioc));
1190 client->ioc = QIO_CHANNEL(tioc);
1191 break;
1192
d1129a8a
EB
1193 case NBD_OPT_EXPORT_NAME:
1194 /* No way to return an error to client, so drop connection */
2fd2c840 1195 error_setg(errp, "Option 0x%x not permitted before TLS",
7f9039cd 1196 option);
d1129a8a
EB
1197 return -EINVAL;
1198
f95910fe 1199 default:
3e99ebb9
EB
1200 /* Let the client keep trying, unless they asked to
1201 * quit. Always try to give an error back to the
1202 * client; but when replying to OPT_ABORT, be aware
1203 * that the client may hang up before receiving the
1204 * error, in which case we are fine ignoring the
1205 * resulting EPIPE. */
1206 ret = nbd_opt_drop(client, NBD_REP_ERR_TLS_REQD,
1207 option == NBD_OPT_ABORT ? NULL : errp,
894e0280 1208 "Option 0x%" PRIx32
0b0bb124 1209 " not permitted before TLS", option);
7f9039cd 1210 if (option == NBD_OPT_ABORT) {
1e120ffe 1211 return 1;
b6f5d3b5 1212 }
d1129a8a 1213 break;
f95910fe
DB
1214 }
1215 } else if (fixedNewstyle) {
7f9039cd 1216 switch (option) {
26afa868 1217 case NBD_OPT_LIST:
e68c35cf 1218 if (length) {
0cfae925 1219 ret = nbd_reject_length(client, false, errp);
e68c35cf
EB
1220 } else {
1221 ret = nbd_negotiate_handle_list(client, errp);
1222 }
26afa868
DB
1223 break;
1224
1225 case NBD_OPT_ABORT:
b6f5d3b5
EB
1226 /* NBD spec says we must try to reply before
1227 * disconnecting, but that we must also tolerate
1228 * guests that don't wait for our reply. */
0cfae925 1229 nbd_negotiate_send_rep(client, NBD_REP_ACK, NULL);
1e120ffe 1230 return 1;
26afa868
DB
1231
1232 case NBD_OPT_EXPORT_NAME:
dbb38caa 1233 return nbd_negotiate_handle_export_name(client, no_zeroes,
23e099c3 1234 errp);
26afa868 1235
f37708f6
EB
1236 case NBD_OPT_INFO:
1237 case NBD_OPT_GO:
dbb38caa 1238 ret = nbd_negotiate_handle_info(client, errp);
f37708f6
EB
1239 if (ret == 1) {
1240 assert(option == NBD_OPT_GO);
1241 return 0;
1242 }
f37708f6
EB
1243 break;
1244
f95910fe 1245 case NBD_OPT_STARTTLS:
e68c35cf 1246 if (length) {
0cfae925 1247 ret = nbd_reject_length(client, false, errp);
e68c35cf 1248 } else if (client->tlscreds) {
0cfae925
VSO
1249 ret = nbd_negotiate_send_rep_err(client,
1250 NBD_REP_ERR_INVALID, errp,
36683283 1251 "TLS already enabled");
f95910fe 1252 } else {
0cfae925
VSO
1253 ret = nbd_negotiate_send_rep_err(client,
1254 NBD_REP_ERR_POLICY, errp,
36683283 1255 "TLS not configured");
63d5ef86 1256 }
d1129a8a 1257 break;
5c54e7fa
VSO
1258
1259 case NBD_OPT_STRUCTURED_REPLY:
1260 if (length) {
0cfae925 1261 ret = nbd_reject_length(client, false, errp);
5c54e7fa
VSO
1262 } else if (client->structured_reply) {
1263 ret = nbd_negotiate_send_rep_err(
0cfae925 1264 client, NBD_REP_ERR_INVALID, errp,
5c54e7fa
VSO
1265 "structured reply already negotiated");
1266 } else {
0cfae925 1267 ret = nbd_negotiate_send_rep(client, NBD_REP_ACK, errp);
5c54e7fa 1268 client->structured_reply = true;
5c54e7fa
VSO
1269 }
1270 break;
1271
e7b1948d
VSO
1272 case NBD_OPT_LIST_META_CONTEXT:
1273 case NBD_OPT_SET_META_CONTEXT:
1274 ret = nbd_negotiate_meta_queries(client, &client->export_meta,
1275 errp);
1276 break;
1277
26afa868 1278 default:
894e0280 1279 ret = nbd_opt_drop(client, NBD_REP_ERR_UNSUP, errp,
28fb494f 1280 "Unsupported option %" PRIu32 " (%s)",
894e0280 1281 option, nbd_opt_lookup(option));
156f6a10 1282 break;
26afa868
DB
1283 }
1284 } else {
1285 /*
1286 * If broken new-style we should drop the connection
1287 * for anything except NBD_OPT_EXPORT_NAME
1288 */
7f9039cd 1289 switch (option) {
26afa868 1290 case NBD_OPT_EXPORT_NAME:
dbb38caa 1291 return nbd_negotiate_handle_export_name(client, no_zeroes,
23e099c3 1292 errp);
26afa868
DB
1293
1294 default:
28fb494f 1295 error_setg(errp, "Unsupported option %" PRIu32 " (%s)",
3736cc5b 1296 option, nbd_opt_lookup(option));
26afa868 1297 return -EINVAL;
32d7d2e0 1298 }
f5076b5a 1299 }
8cbee49e
EB
1300 if (ret < 0) {
1301 return ret;
1302 }
f5076b5a
HB
1303 }
1304}
1305
1e120ffe
VSO
1306/* nbd_negotiate
1307 * Return:
2fd2c840
VSO
1308 * -errno on error, errp is set
1309 * 0 on successful negotiation, errp is not set
1310 * 1 if client sent NBD_OPT_ABORT, i.e. on valid disconnect,
1311 * errp is not set
1e120ffe 1312 */
2fd2c840 1313static coroutine_fn int nbd_negotiate(NBDClient *client, Error **errp)
7a5ca864 1314{
795d946d 1315 ERRP_GUARD();
5f66d060 1316 char buf[NBD_OLDSTYLE_NEGOTIATE_SIZE] = "";
2e5c9ad6 1317 int ret;
b2e3d87f 1318
5f66d060 1319 /* Old style negotiation header, no room for options
6b8c01e7
PB
1320 [ 0 .. 7] passwd ("NBDMAGIC")
1321 [ 8 .. 15] magic (NBD_CLIENT_MAGIC)
b2e3d87f 1322 [16 .. 23] size
5f66d060 1323 [24 .. 27] export flags (zero-extended)
6b8c01e7
PB
1324 [28 .. 151] reserved (0)
1325
5f66d060 1326 New style negotiation header, client can send options
6b8c01e7
PB
1327 [ 0 .. 7] passwd ("NBDMAGIC")
1328 [ 8 .. 15] magic (NBD_OPTS_MAGIC)
1329 [16 .. 17] server flags (0)
f37708f6 1330 ....options sent, ending in NBD_OPT_EXPORT_NAME or NBD_OPT_GO....
b2e3d87f
NT
1331 */
1332
1c778ef7 1333 qio_channel_set_blocking(client->ioc, false, NULL);
185b4338 1334
9588463e 1335 trace_nbd_negotiate_begin();
b2e3d87f 1336 memcpy(buf, "NBDMAGIC", 8);
f95910fe 1337
7f7dfe2a
VSO
1338 stq_be_p(buf + 8, NBD_OPTS_MAGIC);
1339 stw_be_p(buf + 16, NBD_FLAG_FIXED_NEWSTYLE | NBD_FLAG_NO_ZEROES);
b2e3d87f 1340
7f7dfe2a
VSO
1341 if (nbd_write(client->ioc, buf, 18, errp) < 0) {
1342 error_prepend(errp, "write failed: ");
1343 return -EINVAL;
1344 }
dbb38caa 1345 ret = nbd_negotiate_options(client, errp);
7f7dfe2a
VSO
1346 if (ret != 0) {
1347 if (ret < 0) {
1348 error_prepend(errp, "option negotiation failed: ");
6b8c01e7 1349 }
7f7dfe2a 1350 return ret;
b2e3d87f
NT
1351 }
1352
b4961249 1353 /* Attach the channel to the same AioContext as the export */
8612c686
KW
1354 if (client->exp && client->exp->common.ctx) {
1355 qio_channel_attach_aio_context(client->ioc, client->exp->common.ctx);
b4961249
SL
1356 }
1357
0cfae925 1358 assert(!client->optlen);
9588463e 1359 trace_nbd_negotiate_success();
d9faeed8
VSO
1360
1361 return 0;
7a5ca864
FB
1362}
1363
f148ae7d
SL
1364/* nbd_read_eof
1365 * Tries to read @size bytes from @ioc. This is a local implementation of
1366 * qio_channel_readv_all_eof. We have it here because we need it to be
1367 * interruptible and to know when the coroutine is yielding.
1368 * Returns 1 on success
1369 * 0 on eof, when no data was read (errp is not set)
1370 * negative errno on failure (errp is set)
1371 */
1372static inline int coroutine_fn
1373nbd_read_eof(NBDClient *client, void *buffer, size_t size, Error **errp)
1374{
1375 bool partial = false;
1376
1377 assert(size);
1378 while (size > 0) {
1379 struct iovec iov = { .iov_base = buffer, .iov_len = size };
1380 ssize_t len;
1381
1382 len = qio_channel_readv(client->ioc, &iov, 1, errp);
1383 if (len == QIO_CHANNEL_ERR_BLOCK) {
1384 client->read_yielding = true;
1385 qio_channel_yield(client->ioc, G_IO_IN);
1386 client->read_yielding = false;
1387 if (client->quiescing) {
1388 return -EAGAIN;
1389 }
1390 continue;
1391 } else if (len < 0) {
1392 return -EIO;
1393 } else if (len == 0) {
1394 if (partial) {
1395 error_setg(errp,
1396 "Unexpected end-of-file before all bytes were read");
1397 return -EIO;
1398 } else {
1399 return 0;
1400 }
1401 }
1402
1403 partial = true;
1404 size -= len;
1405 buffer = (uint8_t *) buffer + len;
1406 }
1407 return 1;
1408}
1409
1410static int nbd_receive_request(NBDClient *client, NBDRequest *request,
2fd2c840 1411 Error **errp)
75818250 1412{
fa26c26b 1413 uint8_t buf[NBD_REQUEST_SIZE];
b2e3d87f 1414 uint32_t magic;
a0dc63a6 1415 int ret;
b2e3d87f 1416
f148ae7d 1417 ret = nbd_read_eof(client, buf, sizeof(buf), errp);
185b4338
PB
1418 if (ret < 0) {
1419 return ret;
1420 }
1644ccce
EB
1421 if (ret == 0) {
1422 return -EIO;
1423 }
185b4338 1424
b2e3d87f
NT
1425 /* Request
1426 [ 0 .. 3] magic (NBD_REQUEST_MAGIC)
b626b51a
EB
1427 [ 4 .. 5] flags (NBD_CMD_FLAG_FUA, ...)
1428 [ 6 .. 7] type (NBD_CMD_READ, ...)
b2e3d87f
NT
1429 [ 8 .. 15] handle
1430 [16 .. 23] from
1431 [24 .. 27] len
1432 */
1433
773dce3c 1434 magic = ldl_be_p(buf);
b626b51a
EB
1435 request->flags = lduw_be_p(buf + 4);
1436 request->type = lduw_be_p(buf + 6);
773dce3c
PM
1437 request->handle = ldq_be_p(buf + 8);
1438 request->from = ldq_be_p(buf + 16);
1439 request->len = ldl_be_p(buf + 24);
b2e3d87f 1440
9588463e
VSO
1441 trace_nbd_receive_request(magic, request->flags, request->type,
1442 request->from, request->len);
b2e3d87f
NT
1443
1444 if (magic != NBD_REQUEST_MAGIC) {
2fd2c840 1445 error_setg(errp, "invalid magic (got 0x%" PRIx32 ")", magic);
185b4338 1446 return -EINVAL;
b2e3d87f
NT
1447 }
1448 return 0;
75818250
TS
1449}
1450
41996e38
PB
1451#define MAX_NBD_REQUESTS 16
1452
ce33967a 1453void nbd_client_get(NBDClient *client)
1743b515
PB
1454{
1455 client->refcount++;
1456}
1457
ce33967a 1458void nbd_client_put(NBDClient *client)
1743b515
PB
1459{
1460 if (--client->refcount == 0) {
ff2b68aa 1461 /* The last reference should be dropped by client->close,
f53a829b 1462 * which is called by client_close.
ff2b68aa
PB
1463 */
1464 assert(client->closing);
1465
ff82911c 1466 qio_channel_detach_aio_context(client->ioc);
1c778ef7
DB
1467 object_unref(OBJECT(client->sioc));
1468 object_unref(OBJECT(client->ioc));
f95910fe
DB
1469 if (client->tlscreds) {
1470 object_unref(OBJECT(client->tlscreds));
1471 }
b25e12da 1472 g_free(client->tlsauthz);
6b8c01e7
PB
1473 if (client->exp) {
1474 QTAILQ_REMOVE(&client->exp->clients, client, next);
c69de1be 1475 blk_exp_unref(&client->exp->common);
6b8c01e7 1476 }
3b1f244c 1477 g_free(client->export_meta.bitmaps);
1743b515
PB
1478 g_free(client);
1479 }
1480}
1481
0c9390d9 1482static void client_close(NBDClient *client, bool negotiated)
1743b515 1483{
ff2b68aa
PB
1484 if (client->closing) {
1485 return;
1486 }
1487
1488 client->closing = true;
1489
1490 /* Force requests to finish. They will drop their own references,
1491 * then we'll close the socket and free the NBDClient.
1492 */
1c778ef7
DB
1493 qio_channel_shutdown(client->ioc, QIO_CHANNEL_SHUTDOWN_BOTH,
1494 NULL);
ff2b68aa
PB
1495
1496 /* Also tell the client, so that they release their reference. */
0c9390d9
EB
1497 if (client->close_fn) {
1498 client->close_fn(client, negotiated);
1743b515 1499 }
1743b515
PB
1500}
1501
315f78ab 1502static NBDRequestData *nbd_request_get(NBDClient *client)
d9a73806 1503{
315f78ab 1504 NBDRequestData *req;
72deddc5 1505
41996e38
PB
1506 assert(client->nb_requests <= MAX_NBD_REQUESTS - 1);
1507 client->nb_requests++;
1508
315f78ab 1509 req = g_new0(NBDRequestData, 1);
72deddc5
PB
1510 nbd_client_get(client);
1511 req->client = client;
d9a73806
PB
1512 return req;
1513}
1514
315f78ab 1515static void nbd_request_put(NBDRequestData *req)
d9a73806 1516{
72deddc5 1517 NBDClient *client = req->client;
e1adb27a 1518
2d821488
SH
1519 if (req->data) {
1520 qemu_vfree(req->data);
1521 }
1729404c 1522 g_free(req);
e1adb27a 1523
958c717d 1524 client->nb_requests--;
fd6afc50
SL
1525
1526 if (client->quiescing && client->nb_requests == 0) {
1527 aio_wait_kick();
1528 }
1529
ff82911c
PB
1530 nbd_client_receive_next_request(client);
1531
72deddc5 1532 nbd_client_put(client);
d9a73806
PB
1533}
1534
aadf99a7 1535static void blk_aio_attached(AioContext *ctx, void *opaque)
f2149281
HR
1536{
1537 NBDExport *exp = opaque;
1538 NBDClient *client;
1539
9588463e 1540 trace_nbd_blk_aio_attached(exp->name, ctx);
f2149281 1541
8612c686 1542 exp->common.ctx = ctx;
f2149281
HR
1543
1544 QTAILQ_FOREACH(client, &exp->clients, next) {
ff82911c 1545 qio_channel_attach_aio_context(client->ioc, ctx);
f148ae7d 1546
fd6afc50 1547 assert(client->nb_requests == 0);
f148ae7d
SL
1548 assert(client->recv_coroutine == NULL);
1549 assert(client->send_coroutine == NULL);
f148ae7d
SL
1550 }
1551}
1552
fd6afc50 1553static void blk_aio_detach(void *opaque)
f148ae7d
SL
1554{
1555 NBDExport *exp = opaque;
1556 NBDClient *client;
1557
fd6afc50
SL
1558 trace_nbd_blk_aio_detach(exp->name, exp->common.ctx);
1559
f148ae7d
SL
1560 QTAILQ_FOREACH(client, &exp->clients, next) {
1561 qio_channel_detach_aio_context(client->ioc);
fd6afc50
SL
1562 }
1563
1564 exp->common.ctx = NULL;
1565}
1566
1567static void nbd_drained_begin(void *opaque)
1568{
1569 NBDExport *exp = opaque;
1570 NBDClient *client;
1571
1572 QTAILQ_FOREACH(client, &exp->clients, next) {
f148ae7d 1573 client->quiescing = true;
fd6afc50
SL
1574 }
1575}
f148ae7d 1576
fd6afc50
SL
1577static void nbd_drained_end(void *opaque)
1578{
1579 NBDExport *exp = opaque;
1580 NBDClient *client;
f148ae7d 1581
fd6afc50
SL
1582 QTAILQ_FOREACH(client, &exp->clients, next) {
1583 client->quiescing = false;
1584 nbd_client_receive_next_request(client);
f2149281
HR
1585 }
1586}
1587
fd6afc50 1588static bool nbd_drained_poll(void *opaque)
f2149281
HR
1589{
1590 NBDExport *exp = opaque;
fd6afc50 1591 NBDClient *client;
f2149281 1592
fd6afc50
SL
1593 QTAILQ_FOREACH(client, &exp->clients, next) {
1594 if (client->nb_requests != 0) {
1595 /*
1596 * If there's a coroutine waiting for a request on nbd_read_eof()
1597 * enter it here so we don't depend on the client to wake it up.
1598 */
1599 if (client->recv_coroutine != NULL && client->read_yielding) {
1600 qemu_aio_coroutine_enter(exp->common.ctx,
1601 client->recv_coroutine);
1602 }
f2149281 1603
fd6afc50
SL
1604 return true;
1605 }
1606 }
f2149281 1607
fd6afc50 1608 return false;
f2149281
HR
1609}
1610
741cc431
HR
1611static void nbd_eject_notifier(Notifier *n, void *data)
1612{
1613 NBDExport *exp = container_of(n, NBDExport, eject_notifier);
61bc846d 1614
bc4ee65b 1615 blk_exp_request_shutdown(&exp->common);
741cc431
HR
1616}
1617
9b562c64
KW
1618void nbd_export_set_on_eject_blk(BlockExport *exp, BlockBackend *blk)
1619{
1620 NBDExport *nbd_exp = container_of(exp, NBDExport, common);
1621 assert(exp->drv == &blk_exp_nbd);
1622 assert(nbd_exp->eject_notifier_blk == NULL);
1623
1624 blk_ref(blk);
1625 nbd_exp->eject_notifier_blk = blk;
1626 nbd_exp->eject_notifier.notify = nbd_eject_notifier;
1627 blk_add_remove_bs_notifier(blk, &nbd_exp->eject_notifier);
1628}
1629
fd6afc50
SL
1630static const BlockDevOps nbd_block_ops = {
1631 .drained_begin = nbd_drained_begin,
1632 .drained_end = nbd_drained_end,
1633 .drained_poll = nbd_drained_poll,
1634};
1635
5b1cb497
KW
1636static int nbd_export_create(BlockExport *blk_exp, BlockExportOptions *exp_args,
1637 Error **errp)
af49bbbe 1638{
a6ff7989 1639 NBDExport *exp = container_of(blk_exp, NBDExport, common);
5b1cb497 1640 BlockExportOptionsNbd *arg = &exp_args->u.nbd;
331170e0 1641 BlockBackend *blk = blk_exp->blk;
b57e4de0 1642 int64_t size;
331170e0 1643 uint64_t perm, shared_perm;
5b1cb497 1644 bool readonly = !exp_args->writable;
e5fb29d5 1645 BlockDirtyBitmapOrStrList *bitmaps;
3b1f244c 1646 size_t i;
d7086422 1647 int ret;
cd7fca95 1648
5b1cb497
KW
1649 assert(exp_args->type == BLOCK_EXPORT_TYPE_NBD);
1650
1651 if (!nbd_server_is_running()) {
1652 error_setg(errp, "NBD server not running");
1653 return -EINVAL;
1654 }
1655
1656 if (!arg->has_name) {
1657 arg->name = exp_args->node_name;
1658 }
1659
1660 if (strlen(arg->name) > NBD_MAX_STRING_SIZE) {
1661 error_setg(errp, "export name '%s' too long", arg->name);
1662 return -EINVAL;
1663 }
1664
1665 if (arg->description && strlen(arg->description) > NBD_MAX_STRING_SIZE) {
1666 error_setg(errp, "description '%s' too long", arg->description);
1667 return -EINVAL;
1668 }
1669
1670 if (nbd_export_find(arg->name)) {
1671 error_setg(errp, "NBD server already has export named '%s'", arg->name);
1672 return -EEXIST;
1673 }
1674
331170e0 1675 size = blk_getlength(blk);
b57e4de0
KW
1676 if (size < 0) {
1677 error_setg_errno(errp, -size,
1678 "Failed to determine the NBD export's length");
a6ff7989 1679 return size;
b57e4de0
KW
1680 }
1681
8a7ce4f9
KW
1682 /* Don't allow resize while the NBD server is running, otherwise we don't
1683 * care what happens with the node. */
331170e0 1684 blk_get_perm(blk, &perm, &shared_perm);
331170e0 1685 ret = blk_set_perm(blk, perm, shared_perm & ~BLK_PERM_RESIZE, errp);
d7086422 1686 if (ret < 0) {
331170e0 1687 return ret;
d7086422 1688 }
331170e0 1689
4b9441f6 1690 QTAILQ_INIT(&exp->clients);
5b1cb497
KW
1691 exp->name = g_strdup(arg->name);
1692 exp->description = g_strdup(arg->description);
dbb38caa
EB
1693 exp->nbdflags = (NBD_FLAG_HAS_FLAGS | NBD_FLAG_SEND_FLUSH |
1694 NBD_FLAG_SEND_FUA | NBD_FLAG_SEND_CACHE);
58a6fdcc
EB
1695
1696 if (nbd_server_max_connections() != 1) {
1697 exp->nbdflags |= NBD_FLAG_CAN_MULTI_CONN;
1698 }
dbb38caa
EB
1699 if (readonly) {
1700 exp->nbdflags |= NBD_FLAG_READ_ONLY;
dbb38caa 1701 } else {
b491dbb7
EB
1702 exp->nbdflags |= (NBD_FLAG_SEND_TRIM | NBD_FLAG_SEND_WRITE_ZEROES |
1703 NBD_FLAG_SEND_FAST_ZERO);
dbb38caa 1704 }
7596bbb3 1705 exp->size = QEMU_ALIGN_DOWN(size, BDRV_SECTOR_SIZE);
98f44bbe 1706
cbad81ce 1707 for (bitmaps = arg->bitmaps; bitmaps; bitmaps = bitmaps->next) {
3b1f244c
EB
1708 exp->nr_export_bitmaps++;
1709 }
1710 exp->export_bitmaps = g_new0(BdrvDirtyBitmap *, exp->nr_export_bitmaps);
1711 for (i = 0, bitmaps = arg->bitmaps; bitmaps;
e5fb29d5
VSO
1712 i++, bitmaps = bitmaps->next)
1713 {
1714 const char *bitmap;
331170e0 1715 BlockDriverState *bs = blk_bs(blk);
678ba275 1716 BdrvDirtyBitmap *bm = NULL;
678ba275 1717
e5fb29d5
VSO
1718 switch (bitmaps->value->type) {
1719 case QTYPE_QSTRING:
1720 bitmap = bitmaps->value->u.local;
1721 while (bs) {
1722 bm = bdrv_find_dirty_bitmap(bs, bitmap);
1723 if (bm != NULL) {
1724 break;
1725 }
1726
1727 bs = bdrv_filter_or_cow_bs(bs);
678ba275
EB
1728 }
1729
e5fb29d5
VSO
1730 if (bm == NULL) {
1731 ret = -ENOENT;
1732 error_setg(errp, "Bitmap '%s' is not found",
1733 bitmaps->value->u.local);
1734 goto fail;
1735 }
678ba275 1736
e5fb29d5
VSO
1737 if (readonly && bdrv_is_writable(bs) &&
1738 bdrv_dirty_bitmap_enabled(bm)) {
1739 ret = -EINVAL;
1740 error_setg(errp, "Enabled bitmap '%s' incompatible with "
1741 "readonly export", bitmap);
1742 goto fail;
1743 }
1744 break;
1745 case QTYPE_QDICT:
1746 bitmap = bitmaps->value->u.external.name;
1747 bm = block_dirty_bitmap_lookup(bitmaps->value->u.external.node,
1748 bitmap, NULL, errp);
1749 if (!bm) {
1750 ret = -ENOENT;
1751 goto fail;
1752 }
1753 break;
1754 default:
1755 abort();
678ba275
EB
1756 }
1757
e5fb29d5 1758 assert(bm);
3b78a927 1759
e5fb29d5 1760 if (bdrv_dirty_bitmap_check(bm, BDRV_BITMAP_ALLOW_RO, errp)) {
a6ff7989 1761 ret = -EINVAL;
678ba275
EB
1762 goto fail;
1763 }
1764
3b1f244c 1765 exp->export_bitmaps[i] = bm;
cbad81ce 1766 assert(strlen(bitmap) <= BDRV_BITMAP_MAX_NAME_SIZE);
678ba275
EB
1767 }
1768
3b1f244c
EB
1769 /* Mark bitmaps busy in a separate loop, to simplify roll-back concerns. */
1770 for (i = 0; i < exp->nr_export_bitmaps; i++) {
1771 bdrv_dirty_bitmap_set_busy(exp->export_bitmaps[i], true);
1772 }
1773
dbc7b014
EB
1774 exp->allocation_depth = arg->allocation_depth;
1775
fd6afc50
SL
1776 /*
1777 * We need to inhibit request queuing in the block layer to ensure we can
1778 * be properly quiesced when entering a drained section, as our coroutines
1779 * servicing pending requests might enter blk_pread().
1780 */
1781 blk_set_disable_request_queuing(blk, true);
1782
aadf99a7 1783 blk_add_aio_context_notifier(blk, blk_aio_attached, blk_aio_detach, exp);
741cc431 1784
fd6afc50
SL
1785 blk_set_dev_ops(blk, &nbd_block_ops, exp);
1786
3fa4c765 1787 QTAILQ_INSERT_TAIL(&exports, exp, next);
c69de1be 1788
a6ff7989 1789 return 0;
98f44bbe
HR
1790
1791fail:
3b1f244c 1792 g_free(exp->export_bitmaps);
3fa4c765
EB
1793 g_free(exp->name);
1794 g_free(exp->description);
a6ff7989 1795 return ret;
af49bbbe
PB
1796}
1797
ee0a19ec
PB
1798NBDExport *nbd_export_find(const char *name)
1799{
1800 NBDExport *exp;
1801 QTAILQ_FOREACH(exp, &exports, next) {
1802 if (strcmp(name, exp->name) == 0) {
1803 return exp;
1804 }
1805 }
1806
1807 return NULL;
1808}
1809
61bc846d
EB
1810AioContext *
1811nbd_export_aio_context(NBDExport *exp)
1812{
8612c686 1813 return exp->common.ctx;
61bc846d
EB
1814}
1815
bc4ee65b 1816static void nbd_export_request_shutdown(BlockExport *blk_exp)
af49bbbe 1817{
bc4ee65b 1818 NBDExport *exp = container_of(blk_exp, NBDExport, common);
4b9441f6 1819 NBDClient *client, *next;
2c8d9f06 1820
c69de1be 1821 blk_exp_ref(&exp->common);
3fa4c765
EB
1822 /*
1823 * TODO: Should we expand QMP NbdServerRemoveNode enum to allow a
1824 * close mode that stops advertising the export to new clients but
1825 * still permits existing clients to run to completion? Because of
1826 * that possibility, nbd_export_close() can be called more than
1827 * once on an export.
1828 */
4b9441f6 1829 QTAILQ_FOREACH_SAFE(client, &exp->clients, next, next) {
0c9390d9 1830 client_close(client, true);
4b9441f6 1831 }
3fa4c765 1832 if (exp->name) {
3fa4c765
EB
1833 g_free(exp->name);
1834 exp->name = NULL;
1835 QTAILQ_REMOVE(&exports, exp, next);
1836 }
c69de1be 1837 blk_exp_unref(&exp->common);
2c8d9f06
PB
1838}
1839
c69de1be 1840static void nbd_export_delete(BlockExport *blk_exp)
2c8d9f06 1841{
3b1f244c 1842 size_t i;
c69de1be 1843 NBDExport *exp = container_of(blk_exp, NBDExport, common);
2c8d9f06 1844
c69de1be
KW
1845 assert(exp->name == NULL);
1846 assert(QTAILQ_EMPTY(&exp->clients));
d6268348 1847
c69de1be
KW
1848 g_free(exp->description);
1849 exp->description = NULL;
1850
37a4f70c 1851 if (exp->common.blk) {
c69de1be
KW
1852 if (exp->eject_notifier_blk) {
1853 notifier_remove(&exp->eject_notifier);
1854 blk_unref(exp->eject_notifier_blk);
3d068aff 1855 }
37a4f70c 1856 blk_remove_aio_context_notifier(exp->common.blk, blk_aio_attached,
c69de1be 1857 blk_aio_detach, exp);
fd6afc50 1858 blk_set_disable_request_queuing(exp->common.blk, false);
c69de1be 1859 }
3d068aff 1860
3b1f244c
EB
1861 for (i = 0; i < exp->nr_export_bitmaps; i++) {
1862 bdrv_dirty_bitmap_set_busy(exp->export_bitmaps[i], false);
2c8d9f06 1863 }
af49bbbe
PB
1864}
1865
56ee8626
KW
1866const BlockExportDriver blk_exp_nbd = {
1867 .type = BLOCK_EXPORT_TYPE_NBD,
a6ff7989 1868 .instance_size = sizeof(NBDExport),
56ee8626 1869 .create = nbd_export_create,
c69de1be 1870 .delete = nbd_export_delete,
bc4ee65b 1871 .request_shutdown = nbd_export_request_shutdown,
56ee8626
KW
1872};
1873
de79bfc3
VSO
1874static int coroutine_fn nbd_co_send_iov(NBDClient *client, struct iovec *iov,
1875 unsigned niov, Error **errp)
1876{
1877 int ret;
1878
1879 g_assert(qemu_in_coroutine());
1880 qemu_co_mutex_lock(&client->send_lock);
1881 client->send_coroutine = qemu_coroutine_self();
1882
1883 ret = qio_channel_writev_all(client->ioc, iov, niov, errp) < 0 ? -EIO : 0;
1884
1885 client->send_coroutine = NULL;
1886 qemu_co_mutex_unlock(&client->send_lock);
1887
1888 return ret;
1889}
1890
caad5384
VSO
1891static inline void set_be_simple_reply(NBDSimpleReply *reply, uint64_t error,
1892 uint64_t handle)
1893{
1894 stl_be_p(&reply->magic, NBD_SIMPLE_REPLY_MAGIC);
1895 stl_be_p(&reply->error, error);
1896 stq_be_p(&reply->handle, handle);
1897}
1898
978df1b6 1899static int nbd_co_send_simple_reply(NBDClient *client,
14cea41d
VSO
1900 uint64_t handle,
1901 uint32_t error,
978df1b6
VSO
1902 void *data,
1903 size_t len,
1904 Error **errp)
22045592 1905{
de79bfc3 1906 NBDSimpleReply reply;
14cea41d 1907 int nbd_err = system_errno_to_nbd_errno(error);
de79bfc3
VSO
1908 struct iovec iov[] = {
1909 {.iov_base = &reply, .iov_len = sizeof(reply)},
1910 {.iov_base = data, .iov_len = len}
1911 };
6fb2b972 1912
e7a78d0e
EB
1913 trace_nbd_co_send_simple_reply(handle, nbd_err, nbd_err_lookup(nbd_err),
1914 len);
de79bfc3 1915 set_be_simple_reply(&reply, nbd_err, handle);
262db388 1916
de79bfc3 1917 return nbd_co_send_iov(client, iov, len ? 2 : 1, errp);
22045592
PB
1918}
1919
5c54e7fa
VSO
1920static inline void set_be_chunk(NBDStructuredReplyChunk *chunk, uint16_t flags,
1921 uint16_t type, uint64_t handle, uint32_t length)
1922{
1923 stl_be_p(&chunk->magic, NBD_STRUCTURED_REPLY_MAGIC);
1924 stw_be_p(&chunk->flags, flags);
1925 stw_be_p(&chunk->type, type);
1926 stq_be_p(&chunk->handle, handle);
1927 stl_be_p(&chunk->length, length);
1928}
1929
ef8c887e
EB
1930static int coroutine_fn nbd_co_send_structured_done(NBDClient *client,
1931 uint64_t handle,
1932 Error **errp)
1933{
1934 NBDStructuredReplyChunk chunk;
1935 struct iovec iov[] = {
1936 {.iov_base = &chunk, .iov_len = sizeof(chunk)},
1937 };
1938
1939 trace_nbd_co_send_structured_done(handle);
1940 set_be_chunk(&chunk, NBD_REPLY_FLAG_DONE, NBD_REPLY_TYPE_NONE, handle, 0);
1941
1942 return nbd_co_send_iov(client, iov, 1, errp);
1943}
1944
5c54e7fa
VSO
1945static int coroutine_fn nbd_co_send_structured_read(NBDClient *client,
1946 uint64_t handle,
1947 uint64_t offset,
1948 void *data,
1949 size_t size,
418638d3 1950 bool final,
5c54e7fa
VSO
1951 Error **errp)
1952{
efdc0c10 1953 NBDStructuredReadData chunk;
5c54e7fa
VSO
1954 struct iovec iov[] = {
1955 {.iov_base = &chunk, .iov_len = sizeof(chunk)},
1956 {.iov_base = data, .iov_len = size}
1957 };
1958
ef8c887e 1959 assert(size);
5c54e7fa 1960 trace_nbd_co_send_structured_read(handle, offset, data, size);
418638d3
EB
1961 set_be_chunk(&chunk.h, final ? NBD_REPLY_FLAG_DONE : 0,
1962 NBD_REPLY_TYPE_OFFSET_DATA, handle,
1963 sizeof(chunk) - sizeof(chunk.h) + size);
5c54e7fa
VSO
1964 stq_be_p(&chunk.offset, offset);
1965
1966 return nbd_co_send_iov(client, iov, 2, errp);
1967}
1968
60ace2ba
VSO
1969static int coroutine_fn nbd_co_send_structured_error(NBDClient *client,
1970 uint64_t handle,
1971 uint32_t error,
1972 const char *msg,
1973 Error **errp)
1974{
1975 NBDStructuredError chunk;
1976 int nbd_err = system_errno_to_nbd_errno(error);
1977 struct iovec iov[] = {
1978 {.iov_base = &chunk, .iov_len = sizeof(chunk)},
1979 {.iov_base = (char *)msg, .iov_len = msg ? strlen(msg) : 0},
1980 };
1981
1982 assert(nbd_err);
1983 trace_nbd_co_send_structured_error(handle, nbd_err,
1984 nbd_err_lookup(nbd_err), msg ? msg : "");
1985 set_be_chunk(&chunk.h, NBD_REPLY_FLAG_DONE, NBD_REPLY_TYPE_ERROR, handle,
1986 sizeof(chunk) - sizeof(chunk.h) + iov[1].iov_len);
1987 stl_be_p(&chunk.error, nbd_err);
1988 stw_be_p(&chunk.message_length, iov[1].iov_len);
1989
1990 return nbd_co_send_iov(client, iov, 1 + !!iov[1].iov_len, errp);
1991}
1992
37e02aeb
VSO
1993/* Do a sparse read and send the structured reply to the client.
1994 * Returns -errno if sending fails. bdrv_block_status_above() failure is
1995 * reported to the client, at which point this function succeeds.
1996 */
418638d3
EB
1997static int coroutine_fn nbd_co_send_sparse_read(NBDClient *client,
1998 uint64_t handle,
1999 uint64_t offset,
2000 uint8_t *data,
2001 size_t size,
2002 Error **errp)
2003{
2004 int ret = 0;
2005 NBDExport *exp = client->exp;
2006 size_t progress = 0;
2007
2008 while (progress < size) {
2009 int64_t pnum;
37a4f70c 2010 int status = bdrv_block_status_above(blk_bs(exp->common.blk), NULL,
418638d3
EB
2011 offset + progress,
2012 size - progress, &pnum, NULL,
2013 NULL);
e2de3256 2014 bool final;
418638d3
EB
2015
2016 if (status < 0) {
37e02aeb
VSO
2017 char *msg = g_strdup_printf("unable to check for holes: %s",
2018 strerror(-status));
2019
2020 ret = nbd_co_send_structured_error(client, handle, -status, msg,
2021 errp);
2022 g_free(msg);
2023 return ret;
418638d3
EB
2024 }
2025 assert(pnum && pnum <= size - progress);
e2de3256 2026 final = progress + pnum == size;
418638d3
EB
2027 if (status & BDRV_BLOCK_ZERO) {
2028 NBDStructuredReadHole chunk;
2029 struct iovec iov[] = {
2030 {.iov_base = &chunk, .iov_len = sizeof(chunk)},
2031 };
2032
2033 trace_nbd_co_send_structured_read_hole(handle, offset + progress,
2034 pnum);
e2de3256
EB
2035 set_be_chunk(&chunk.h, final ? NBD_REPLY_FLAG_DONE : 0,
2036 NBD_REPLY_TYPE_OFFSET_HOLE,
418638d3
EB
2037 handle, sizeof(chunk) - sizeof(chunk.h));
2038 stq_be_p(&chunk.offset, offset + progress);
2039 stl_be_p(&chunk.length, pnum);
2040 ret = nbd_co_send_iov(client, iov, 1, errp);
2041 } else {
a9262f55
AF
2042 ret = blk_pread(exp->common.blk, offset + progress, pnum,
2043 data + progress, 0);
418638d3
EB
2044 if (ret < 0) {
2045 error_setg_errno(errp, -ret, "reading from file failed");
2046 break;
2047 }
2048 ret = nbd_co_send_structured_read(client, handle, offset + progress,
e2de3256 2049 data + progress, pnum, final,
418638d3
EB
2050 errp);
2051 }
2052
2053 if (ret < 0) {
2054 break;
2055 }
2056 progress += pnum;
2057 }
418638d3
EB
2058 return ret;
2059}
2060
89cbc7e3
VSO
2061typedef struct NBDExtentArray {
2062 NBDExtent *extents;
2063 unsigned int nb_alloc;
2064 unsigned int count;
2065 uint64_t total_length;
2066 bool can_add;
2067 bool converted_to_be;
2068} NBDExtentArray;
2069
2070static NBDExtentArray *nbd_extent_array_new(unsigned int nb_alloc)
2071{
2072 NBDExtentArray *ea = g_new0(NBDExtentArray, 1);
2073
2074 ea->nb_alloc = nb_alloc;
2075 ea->extents = g_new(NBDExtent, nb_alloc);
2076 ea->can_add = true;
2077
2078 return ea;
2079}
2080
2081static void nbd_extent_array_free(NBDExtentArray *ea)
2082{
2083 g_free(ea->extents);
2084 g_free(ea);
2085}
e0e7fe07 2086G_DEFINE_AUTOPTR_CLEANUP_FUNC(NBDExtentArray, nbd_extent_array_free)
89cbc7e3
VSO
2087
2088/* Further modifications of the array after conversion are abandoned */
2089static void nbd_extent_array_convert_to_be(NBDExtentArray *ea)
2090{
2091 int i;
2092
2093 assert(!ea->converted_to_be);
2094 ea->can_add = false;
2095 ea->converted_to_be = true;
2096
2097 for (i = 0; i < ea->count; i++) {
2098 ea->extents[i].flags = cpu_to_be32(ea->extents[i].flags);
2099 ea->extents[i].length = cpu_to_be32(ea->extents[i].length);
2100 }
2101}
2102
fb7afc79 2103/*
89cbc7e3
VSO
2104 * Add extent to NBDExtentArray. If extent can't be added (no available space),
2105 * return -1.
2106 * For safety, when returning -1 for the first time, .can_add is set to false,
314b9026
EB
2107 * and further calls to nbd_extent_array_add() will crash.
2108 * (this avoids the situation where a caller ignores failure to add one extent,
2109 * where adding another extent that would squash into the last array entry
2110 * would result in an incorrect range reported to the client)
fb7afc79 2111 */
89cbc7e3
VSO
2112static int nbd_extent_array_add(NBDExtentArray *ea,
2113 uint32_t length, uint32_t flags)
e7b1948d 2114{
89cbc7e3
VSO
2115 assert(ea->can_add);
2116
2117 if (!length) {
2118 return 0;
2119 }
2120
2121 /* Extend previous extent if flags are the same */
2122 if (ea->count > 0 && flags == ea->extents[ea->count - 1].flags) {
2123 uint64_t sum = (uint64_t)length + ea->extents[ea->count - 1].length;
2124
2125 if (sum <= UINT32_MAX) {
2126 ea->extents[ea->count - 1].length = sum;
2127 ea->total_length += length;
2128 return 0;
2129 }
2130 }
2131
2132 if (ea->count >= ea->nb_alloc) {
2133 ea->can_add = false;
2134 return -1;
2135 }
2136
2137 ea->total_length += length;
2138 ea->extents[ea->count] = (NBDExtent) {.length = length, .flags = flags};
2139 ea->count++;
e7b1948d 2140
89cbc7e3
VSO
2141 return 0;
2142}
2143
2144static int blockstatus_to_extents(BlockDriverState *bs, uint64_t offset,
2145 uint64_t bytes, NBDExtentArray *ea)
2146{
2147 while (bytes) {
e7b1948d
VSO
2148 uint32_t flags;
2149 int64_t num;
89cbc7e3
VSO
2150 int ret = bdrv_block_status_above(bs, NULL, offset, bytes, &num,
2151 NULL, NULL);
fb7afc79 2152
e7b1948d
VSO
2153 if (ret < 0) {
2154 return ret;
2155 }
2156
0da98568
NS
2157 flags = (ret & BDRV_BLOCK_DATA ? 0 : NBD_STATE_HOLE) |
2158 (ret & BDRV_BLOCK_ZERO ? NBD_STATE_ZERO : 0);
e7b1948d 2159
89cbc7e3
VSO
2160 if (nbd_extent_array_add(ea, num, flags) < 0) {
2161 return 0;
e7b1948d 2162 }
fb7afc79 2163
89cbc7e3
VSO
2164 offset += num;
2165 bytes -= num;
e7b1948d
VSO
2166 }
2167
e7b1948d
VSO
2168 return 0;
2169}
2170
71719cd5
EB
2171static int blockalloc_to_extents(BlockDriverState *bs, uint64_t offset,
2172 uint64_t bytes, NBDExtentArray *ea)
2173{
2174 while (bytes) {
2175 int64_t num;
2176 int ret = bdrv_is_allocated_above(bs, NULL, false, offset, bytes,
2177 &num);
2178
2179 if (ret < 0) {
2180 return ret;
2181 }
2182
2183 if (nbd_extent_array_add(ea, num, ret) < 0) {
2184 return 0;
2185 }
2186
2187 offset += num;
2188 bytes -= num;
2189 }
2190
2191 return 0;
2192}
2193
89cbc7e3
VSO
2194/*
2195 * nbd_co_send_extents
3d068aff 2196 *
89cbc7e3
VSO
2197 * @ea is converted to BE by the function
2198 * @last controls whether NBD_REPLY_FLAG_DONE is sent.
3d068aff 2199 */
e7b1948d 2200static int nbd_co_send_extents(NBDClient *client, uint64_t handle,
89cbc7e3
VSO
2201 NBDExtentArray *ea,
2202 bool last, uint32_t context_id, Error **errp)
e7b1948d
VSO
2203{
2204 NBDStructuredMeta chunk;
e7b1948d
VSO
2205 struct iovec iov[] = {
2206 {.iov_base = &chunk, .iov_len = sizeof(chunk)},
89cbc7e3 2207 {.iov_base = ea->extents, .iov_len = ea->count * sizeof(ea->extents[0])}
e7b1948d
VSO
2208 };
2209
89cbc7e3
VSO
2210 nbd_extent_array_convert_to_be(ea);
2211
2212 trace_nbd_co_send_extents(handle, ea->count, context_id, ea->total_length,
2213 last);
3d068aff
VSO
2214 set_be_chunk(&chunk.h, last ? NBD_REPLY_FLAG_DONE : 0,
2215 NBD_REPLY_TYPE_BLOCK_STATUS,
e7b1948d
VSO
2216 handle, sizeof(chunk) - sizeof(chunk.h) + iov[1].iov_len);
2217 stl_be_p(&chunk.context_id, context_id);
2218
2219 return nbd_co_send_iov(client, iov, 2, errp);
2220}
2221
2222/* Get block status from the exported device and send it to the client */
2223static int nbd_co_send_block_status(NBDClient *client, uint64_t handle,
2224 BlockDriverState *bs, uint64_t offset,
fb7afc79
VSO
2225 uint32_t length, bool dont_fragment,
2226 bool last, uint32_t context_id,
2227 Error **errp)
e7b1948d
VSO
2228{
2229 int ret;
416e34bd 2230 unsigned int nb_extents = dont_fragment ? 1 : NBD_MAX_BLOCK_STATUS_EXTENTS;
89cbc7e3 2231 g_autoptr(NBDExtentArray) ea = nbd_extent_array_new(nb_extents);
e7b1948d 2232
71719cd5
EB
2233 if (context_id == NBD_META_ID_BASE_ALLOCATION) {
2234 ret = blockstatus_to_extents(bs, offset, length, ea);
2235 } else {
2236 ret = blockalloc_to_extents(bs, offset, length, ea);
2237 }
e7b1948d
VSO
2238 if (ret < 0) {
2239 return nbd_co_send_structured_error(
2240 client, handle, -ret, "can't get block status", errp);
2241 }
2242
89cbc7e3 2243 return nbd_co_send_extents(client, handle, ea, last, context_id, errp);
3d068aff
VSO
2244}
2245
dacbb6eb 2246/* Populate @ea from a dirty bitmap. */
89cbc7e3
VSO
2247static void bitmap_to_extents(BdrvDirtyBitmap *bitmap,
2248 uint64_t offset, uint64_t length,
dacbb6eb 2249 NBDExtentArray *es)
3d068aff 2250{
dacbb6eb
VSO
2251 int64_t start, dirty_start, dirty_count;
2252 int64_t end = offset + length;
2253 bool full = false;
3d068aff
VSO
2254
2255 bdrv_dirty_bitmap_lock(bitmap);
2256
dacbb6eb
VSO
2257 for (start = offset;
2258 bdrv_dirty_bitmap_next_dirty_area(bitmap, start, end, INT32_MAX,
2259 &dirty_start, &dirty_count);
2260 start = dirty_start + dirty_count)
2261 {
2262 if ((nbd_extent_array_add(es, dirty_start - start, 0) < 0) ||
2263 (nbd_extent_array_add(es, dirty_count, NBD_STATE_DIRTY) < 0))
2264 {
2265 full = true;
89cbc7e3
VSO
2266 break;
2267 }
3d068aff
VSO
2268 }
2269
dacbb6eb 2270 if (!full) {
c0b21f2e
EB
2271 /* last non dirty extent, nothing to do if array is now full */
2272 (void) nbd_extent_array_add(es, end - start, 0);
dacbb6eb 2273 }
3d068aff
VSO
2274
2275 bdrv_dirty_bitmap_unlock(bitmap);
3d068aff
VSO
2276}
2277
2278static int nbd_co_send_bitmap(NBDClient *client, uint64_t handle,
2279 BdrvDirtyBitmap *bitmap, uint64_t offset,
2280 uint32_t length, bool dont_fragment, bool last,
2281 uint32_t context_id, Error **errp)
2282{
416e34bd 2283 unsigned int nb_extents = dont_fragment ? 1 : NBD_MAX_BLOCK_STATUS_EXTENTS;
89cbc7e3 2284 g_autoptr(NBDExtentArray) ea = nbd_extent_array_new(nb_extents);
3d068aff 2285
dacbb6eb 2286 bitmap_to_extents(bitmap, offset, length, ea);
3d068aff 2287
89cbc7e3 2288 return nbd_co_send_extents(client, handle, ea, last, context_id, errp);
e7b1948d
VSO
2289}
2290
2a6e128b
VSO
2291/* nbd_co_receive_request
2292 * Collect a client request. Return 0 if request looks valid, -EIO to drop
f148ae7d
SL
2293 * connection right away, -EAGAIN to indicate we were interrupted and the
2294 * channel should be quiesced, and any other negative value to report an error
2295 * to the client (although the caller may still need to disconnect after
2296 * reporting the error).
2a6e128b 2297 */
2fd2c840
VSO
2298static int nbd_co_receive_request(NBDRequestData *req, NBDRequest *request,
2299 Error **errp)
a030b347 2300{
72deddc5 2301 NBDClient *client = req->client;
5c54e7fa 2302 int valid_flags;
f148ae7d 2303 int ret;
a030b347 2304
1c778ef7 2305 g_assert(qemu_in_coroutine());
ff82911c 2306 assert(client->recv_coroutine == qemu_coroutine_self());
f148ae7d
SL
2307 ret = nbd_receive_request(client, request, errp);
2308 if (ret < 0) {
314b9026 2309 return ret;
a030b347
PB
2310 }
2311
3736cc5b
EB
2312 trace_nbd_co_receive_request_decode_type(request->handle, request->type,
2313 nbd_cmd_lookup(request->type));
29b6c3b3 2314
b626b51a 2315 if (request->type != NBD_CMD_WRITE) {
29b6c3b3
EB
2316 /* No payload, we are ready to read the next request. */
2317 req->complete = true;
2318 }
2319
b626b51a 2320 if (request->type == NBD_CMD_DISC) {
29b6c3b3
EB
2321 /* Special case: we're going to disconnect without a reply,
2322 * whether or not flags, from, or len are bogus */
ee898b87 2323 return -EIO;
29b6c3b3
EB
2324 }
2325
bc37b06a
VSO
2326 if (request->type == NBD_CMD_READ || request->type == NBD_CMD_WRITE ||
2327 request->type == NBD_CMD_CACHE)
2328 {
eb38c3b6 2329 if (request->len > NBD_MAX_BUFFER_SIZE) {
2fd2c840
VSO
2330 error_setg(errp, "len (%" PRIu32" ) is larger than max len (%u)",
2331 request->len, NBD_MAX_BUFFER_SIZE);
ee898b87 2332 return -EINVAL;
eb38c3b6
PB
2333 }
2334
7fa5c565 2335 if (request->type != NBD_CMD_CACHE) {
37a4f70c
KW
2336 req->data = blk_try_blockalign(client->exp->common.blk,
2337 request->len);
7fa5c565
VSO
2338 if (req->data == NULL) {
2339 error_setg(errp, "No memory");
2340 return -ENOMEM;
2341 }
f1c17521 2342 }
2d821488 2343 }
7fa5c565 2344
b626b51a 2345 if (request->type == NBD_CMD_WRITE) {
e6798f06
VSO
2346 if (nbd_read(client->ioc, req->data, request->len, "CMD_WRITE data",
2347 errp) < 0)
2348 {
ee898b87 2349 return -EIO;
a030b347 2350 }
29b6c3b3 2351 req->complete = true;
6fb2b972 2352
9588463e
VSO
2353 trace_nbd_co_receive_request_payload_received(request->handle,
2354 request->len);
a030b347 2355 }
29b6c3b3 2356
fed5f8f8
EB
2357 /* Sanity checks. */
2358 if (client->exp->nbdflags & NBD_FLAG_READ_ONLY &&
2359 (request->type == NBD_CMD_WRITE ||
2360 request->type == NBD_CMD_WRITE_ZEROES ||
2361 request->type == NBD_CMD_TRIM)) {
2362 error_setg(errp, "Export is read-only");
2363 return -EROFS;
2364 }
2365 if (request->from > client->exp->size ||
9d26dfcb 2366 request->len > client->exp->size - request->from) {
2fd2c840
VSO
2367 error_setg(errp, "operation past EOF; From: %" PRIu64 ", Len: %" PRIu32
2368 ", Size: %" PRIu64, request->from, request->len,
9d26dfcb 2369 client->exp->size);
fed5f8f8
EB
2370 return (request->type == NBD_CMD_WRITE ||
2371 request->type == NBD_CMD_WRITE_ZEROES) ? -ENOSPC : -EINVAL;
29b6c3b3 2372 }
6e280648
EB
2373 if (client->check_align && !QEMU_IS_ALIGNED(request->from | request->len,
2374 client->check_align)) {
2375 /*
2376 * The block layer gracefully handles unaligned requests, but
2377 * it's still worth tracing client non-compliance
2378 */
2379 trace_nbd_co_receive_align_compliance(nbd_cmd_lookup(request->type),
2380 request->from,
2381 request->len,
2382 client->check_align);
2383 }
5c54e7fa
VSO
2384 valid_flags = NBD_CMD_FLAG_FUA;
2385 if (request->type == NBD_CMD_READ && client->structured_reply) {
2386 valid_flags |= NBD_CMD_FLAG_DF;
2387 } else if (request->type == NBD_CMD_WRITE_ZEROES) {
b491dbb7 2388 valid_flags |= NBD_CMD_FLAG_NO_HOLE | NBD_CMD_FLAG_FAST_ZERO;
e7b1948d
VSO
2389 } else if (request->type == NBD_CMD_BLOCK_STATUS) {
2390 valid_flags |= NBD_CMD_FLAG_REQ_ONE;
ab7c548e 2391 }
5c54e7fa
VSO
2392 if (request->flags & ~valid_flags) {
2393 error_setg(errp, "unsupported flags for command %s (got 0x%x)",
2394 nbd_cmd_lookup(request->type), request->flags);
ee898b87 2395 return -EINVAL;
1f4d6d18 2396 }
29b6c3b3 2397
ee898b87 2398 return 0;
a030b347
PB
2399}
2400
6a417599
VSO
2401/* Send simple reply without a payload, or a structured error
2402 * @error_msg is ignored if @ret >= 0
2403 * Returns 0 if connection is still live, -errno on failure to talk to client
2404 */
2405static coroutine_fn int nbd_send_generic_reply(NBDClient *client,
2406 uint64_t handle,
2407 int ret,
2408 const char *error_msg,
2409 Error **errp)
2410{
2411 if (client->structured_reply && ret < 0) {
2412 return nbd_co_send_structured_error(client, handle, -ret, error_msg,
2413 errp);
2414 } else {
2415 return nbd_co_send_simple_reply(client, handle, ret < 0 ? -ret : 0,
2416 NULL, 0, errp);
2417 }
2418}
2419
2420/* Handle NBD_CMD_READ request.
2421 * Return -errno if sending fails. Other errors are reported directly to the
2422 * client as an error reply. */
2423static coroutine_fn int nbd_do_cmd_read(NBDClient *client, NBDRequest *request,
2424 uint8_t *data, Error **errp)
2425{
2426 int ret;
2427 NBDExport *exp = client->exp;
2428
7fa5c565 2429 assert(request->type == NBD_CMD_READ);
6a417599
VSO
2430
2431 /* XXX: NBD Protocol only documents use of FUA with WRITE */
2432 if (request->flags & NBD_CMD_FLAG_FUA) {
37a4f70c 2433 ret = blk_co_flush(exp->common.blk);
6a417599
VSO
2434 if (ret < 0) {
2435 return nbd_send_generic_reply(client, request->handle, ret,
2436 "flush failed", errp);
2437 }
2438 }
2439
2440 if (client->structured_reply && !(request->flags & NBD_CMD_FLAG_DF) &&
7fa5c565 2441 request->len)
2f454def 2442 {
6a417599
VSO
2443 return nbd_co_send_sparse_read(client, request->handle, request->from,
2444 data, request->len, errp);
2445 }
2446
a9262f55 2447 ret = blk_pread(exp->common.blk, request->from, request->len, data, 0);
7fa5c565 2448 if (ret < 0) {
6a417599
VSO
2449 return nbd_send_generic_reply(client, request->handle, ret,
2450 "reading from file failed", errp);
2451 }
2452
2453 if (client->structured_reply) {
2454 if (request->len) {
2455 return nbd_co_send_structured_read(client, request->handle,
2456 request->from, data,
2457 request->len, true, errp);
2458 } else {
2459 return nbd_co_send_structured_done(client, request->handle, errp);
2460 }
2461 } else {
2462 return nbd_co_send_simple_reply(client, request->handle, 0,
2463 data, request->len, errp);
2464 }
2465}
2466
7fa5c565
VSO
2467/*
2468 * nbd_do_cmd_cache
2469 *
2470 * Handle NBD_CMD_CACHE request.
2471 * Return -errno if sending fails. Other errors are reported directly to the
2472 * client as an error reply.
2473 */
2474static coroutine_fn int nbd_do_cmd_cache(NBDClient *client, NBDRequest *request,
2475 Error **errp)
2476{
2477 int ret;
2478 NBDExport *exp = client->exp;
2479
2480 assert(request->type == NBD_CMD_CACHE);
2481
37a4f70c 2482 ret = blk_co_preadv(exp->common.blk, request->from, request->len,
7fa5c565
VSO
2483 NULL, BDRV_REQ_COPY_ON_READ | BDRV_REQ_PREFETCH);
2484
2485 return nbd_send_generic_reply(client, request->handle, ret,
2486 "caching data failed", errp);
2487}
2488
6f302e60
VSO
2489/* Handle NBD request.
2490 * Return -errno if sending fails. Other errors are reported directly to the
2491 * client as an error reply. */
2492static coroutine_fn int nbd_handle_request(NBDClient *client,
2493 NBDRequest *request,
2494 uint8_t *data, Error **errp)
2495{
2496 int ret;
2497 int flags;
2498 NBDExport *exp = client->exp;
2499 char *msg;
3b1f244c 2500 size_t i;
6f302e60
VSO
2501
2502 switch (request->type) {
bc37b06a 2503 case NBD_CMD_CACHE:
7fa5c565
VSO
2504 return nbd_do_cmd_cache(client, request, errp);
2505
2506 case NBD_CMD_READ:
6f302e60
VSO
2507 return nbd_do_cmd_read(client, request, data, errp);
2508
2509 case NBD_CMD_WRITE:
2510 flags = 0;
2511 if (request->flags & NBD_CMD_FLAG_FUA) {
2512 flags |= BDRV_REQ_FUA;
2513 }
a9262f55 2514 ret = blk_pwrite(exp->common.blk, request->from, request->len, data,
37a4f70c 2515 flags);
6f302e60
VSO
2516 return nbd_send_generic_reply(client, request->handle, ret,
2517 "writing to file failed", errp);
2518
2519 case NBD_CMD_WRITE_ZEROES:
2520 flags = 0;
2521 if (request->flags & NBD_CMD_FLAG_FUA) {
2522 flags |= BDRV_REQ_FUA;
2523 }
2524 if (!(request->flags & NBD_CMD_FLAG_NO_HOLE)) {
2525 flags |= BDRV_REQ_MAY_UNMAP;
2526 }
b491dbb7
EB
2527 if (request->flags & NBD_CMD_FLAG_FAST_ZERO) {
2528 flags |= BDRV_REQ_NO_FALLBACK;
2529 }
e3557422
EB
2530 ret = blk_pwrite_zeroes(exp->common.blk, request->from, request->len,
2531 flags);
6f302e60
VSO
2532 return nbd_send_generic_reply(client, request->handle, ret,
2533 "writing to file failed", errp);
2534
2535 case NBD_CMD_DISC:
2536 /* unreachable, thanks to special case in nbd_co_receive_request() */
2537 abort();
2538
2539 case NBD_CMD_FLUSH:
37a4f70c 2540 ret = blk_co_flush(exp->common.blk);
6f302e60
VSO
2541 return nbd_send_generic_reply(client, request->handle, ret,
2542 "flush failed", errp);
2543
2544 case NBD_CMD_TRIM:
e3557422 2545 ret = blk_co_pdiscard(exp->common.blk, request->from, request->len);
890cbccb 2546 if (ret >= 0 && request->flags & NBD_CMD_FLAG_FUA) {
37a4f70c 2547 ret = blk_co_flush(exp->common.blk);
65529782 2548 }
6f302e60
VSO
2549 return nbd_send_generic_reply(client, request->handle, ret,
2550 "discard failed", errp);
2551
e7b1948d 2552 case NBD_CMD_BLOCK_STATUS:
d8b20291
EB
2553 if (!request->len) {
2554 return nbd_send_generic_reply(client, request->handle, -EINVAL,
2555 "need non-zero length", errp);
2556 }
47ec485e 2557 if (client->export_meta.count) {
fb7afc79 2558 bool dont_fragment = request->flags & NBD_CMD_FLAG_REQ_ONE;
47ec485e 2559 int contexts_remaining = client->export_meta.count;
fb7afc79 2560
3d068aff
VSO
2561 if (client->export_meta.base_allocation) {
2562 ret = nbd_co_send_block_status(client, request->handle,
37a4f70c
KW
2563 blk_bs(exp->common.blk),
2564 request->from,
fb7afc79 2565 request->len, dont_fragment,
47ec485e 2566 !--contexts_remaining,
3d068aff
VSO
2567 NBD_META_ID_BASE_ALLOCATION,
2568 errp);
73e064cc
EB
2569 if (ret < 0) {
2570 return ret;
2571 }
2572 }
2573
71719cd5
EB
2574 if (client->export_meta.allocation_depth) {
2575 ret = nbd_co_send_block_status(client, request->handle,
2576 blk_bs(exp->common.blk),
2577 request->from, request->len,
2578 dont_fragment,
2579 !--contexts_remaining,
2580 NBD_META_ID_ALLOCATION_DEPTH,
2581 errp);
2582 if (ret < 0) {
2583 return ret;
2584 }
2585 }
2586
3b1f244c
EB
2587 for (i = 0; i < client->exp->nr_export_bitmaps; i++) {
2588 if (!client->export_meta.bitmaps[i]) {
2589 continue;
2590 }
3d068aff 2591 ret = nbd_co_send_bitmap(client, request->handle,
3b1f244c 2592 client->exp->export_bitmaps[i],
3d068aff 2593 request->from, request->len,
47ec485e 2594 dont_fragment, !--contexts_remaining,
3b1f244c 2595 NBD_META_ID_DIRTY_BITMAP + i, errp);
73e064cc
EB
2596 if (ret < 0) {
2597 return ret;
2598 }
3d068aff
VSO
2599 }
2600
47ec485e
EB
2601 assert(!contexts_remaining);
2602
73e064cc 2603 return 0;
e7b1948d
VSO
2604 } else {
2605 return nbd_send_generic_reply(client, request->handle, -EINVAL,
2606 "CMD_BLOCK_STATUS not negotiated",
2607 errp);
2608 }
2609
6f302e60
VSO
2610 default:
2611 msg = g_strdup_printf("invalid request type (%" PRIu32 ") received",
2612 request->type);
2613 ret = nbd_send_generic_reply(client, request->handle, -EINVAL, msg,
2614 errp);
2615 g_free(msg);
2616 return ret;
2617 }
2618}
2619
ff82911c
PB
2620/* Owns a reference to the NBDClient passed as opaque. */
2621static coroutine_fn void nbd_trip(void *opaque)
75818250 2622{
262db388 2623 NBDClient *client = opaque;
315f78ab 2624 NBDRequestData *req;
ff82911c 2625 NBDRequest request = { 0 }; /* GCC thinks it can be used uninitialized */
a0dc63a6 2626 int ret;
2fd2c840 2627 Error *local_err = NULL;
b2e3d87f 2628
9588463e 2629 trace_nbd_trip();
ff2b68aa 2630 if (client->closing) {
ff82911c 2631 nbd_client_put(client);
ff2b68aa
PB
2632 return;
2633 }
b2e3d87f 2634
f148ae7d
SL
2635 if (client->quiescing) {
2636 /*
2637 * We're switching between AIO contexts. Don't attempt to receive a new
2638 * request and kick the main context which may be waiting for us.
2639 */
2640 nbd_client_put(client);
2641 client->recv_coroutine = NULL;
2642 aio_wait_kick();
2643 return;
2644 }
2645
ff2b68aa 2646 req = nbd_request_get(client);
2fd2c840 2647 ret = nbd_co_receive_request(req, &request, &local_err);
ee898b87 2648 client->recv_coroutine = NULL;
b2e3d87f 2649
d6268348
WC
2650 if (client->closing) {
2651 /*
2652 * The client may be closed when we are blocked in
2653 * nbd_co_receive_request()
2654 */
2655 goto done;
2656 }
2657
f148ae7d
SL
2658 if (ret == -EAGAIN) {
2659 assert(client->quiescing);
2660 goto done;
2661 }
2662
a0d7ce20
VSO
2663 nbd_client_receive_next_request(client);
2664 if (ret == -EIO) {
2665 goto disconnect;
2666 }
2667
2668 if (ret < 0) {
314b9026 2669 /* It wasn't -EIO, so, according to nbd_co_receive_request()
6a417599
VSO
2670 * semantics, we should return the error to the client. */
2671 Error *export_err = local_err;
2672
2673 local_err = NULL;
2674 ret = nbd_send_generic_reply(client, request.handle, -EINVAL,
2675 error_get_pretty(export_err), &local_err);
2676 error_free(export_err);
6f302e60
VSO
2677 } else {
2678 ret = nbd_handle_request(client, &request, req->data, &local_err);
5c54e7fa
VSO
2679 }
2680 if (ret < 0) {
c7b97282 2681 error_prepend(&local_err, "Failed to send reply: ");
2fd2c840
VSO
2682 goto disconnect;
2683 }
2684
8c372a02
VSO
2685 /* We must disconnect after NBD_CMD_WRITE if we did not
2686 * read the payload.
2687 */
2fd2c840
VSO
2688 if (!req->complete) {
2689 error_setg(&local_err, "Request handling failed in intermediate state");
8c372a02 2690 goto disconnect;
b2e3d87f
NT
2691 }
2692
7fe7b68b 2693done:
262db388 2694 nbd_request_put(req);
ff82911c 2695 nbd_client_put(client);
262db388
PB
2696 return;
2697
8c372a02 2698disconnect:
2fd2c840
VSO
2699 if (local_err) {
2700 error_reportf_err(local_err, "Disconnect client, due to: ");
2701 }
72deddc5 2702 nbd_request_put(req);
0c9390d9 2703 client_close(client, true);
ff82911c 2704 nbd_client_put(client);
7a5ca864 2705}
af49bbbe 2706
ff82911c 2707static void nbd_client_receive_next_request(NBDClient *client)
958c717d 2708{
f148ae7d
SL
2709 if (!client->recv_coroutine && client->nb_requests < MAX_NBD_REQUESTS &&
2710 !client->quiescing) {
ff82911c
PB
2711 nbd_client_get(client);
2712 client->recv_coroutine = qemu_coroutine_create(nbd_trip, client);
8612c686 2713 aio_co_schedule(client->exp->common.ctx, client->recv_coroutine);
958c717d
HR
2714 }
2715}
2716
1a6245a5
FZ
2717static coroutine_fn void nbd_co_client_start(void *opaque)
2718{
c84087f2 2719 NBDClient *client = opaque;
2fd2c840 2720 Error *local_err = NULL;
1a6245a5 2721
df8ad9f1
EB
2722 qemu_co_mutex_init(&client->send_lock);
2723
2fd2c840
VSO
2724 if (nbd_negotiate(client, &local_err)) {
2725 if (local_err) {
2726 error_report_err(local_err);
2727 }
0c9390d9 2728 client_close(client, false);
c84087f2 2729 return;
1a6245a5 2730 }
ff82911c
PB
2731
2732 nbd_client_receive_next_request(client);
1a6245a5
FZ
2733}
2734
0c9390d9 2735/*
7f7dfe2a
VSO
2736 * Create a new client listener using the given channel @sioc.
2737 * Begin servicing it in a coroutine. When the connection closes, call
2738 * @close_fn with an indication of whether the client completed negotiation.
0c9390d9 2739 */
7f7dfe2a 2740void nbd_client_new(QIOChannelSocket *sioc,
f95910fe 2741 QCryptoTLSCreds *tlscreds,
b25e12da 2742 const char *tlsauthz,
0c9390d9 2743 void (*close_fn)(NBDClient *, bool))
af49bbbe 2744{
1743b515 2745 NBDClient *client;
c84087f2 2746 Coroutine *co;
1a6245a5 2747
e8d3eb74 2748 client = g_new0(NBDClient, 1);
1743b515 2749 client->refcount = 1;
f95910fe
DB
2750 client->tlscreds = tlscreds;
2751 if (tlscreds) {
2752 object_ref(OBJECT(client->tlscreds));
2753 }
b25e12da 2754 client->tlsauthz = g_strdup(tlsauthz);
1c778ef7
DB
2755 client->sioc = sioc;
2756 object_ref(OBJECT(client->sioc));
2757 client->ioc = QIO_CHANNEL(sioc);
2758 object_ref(OBJECT(client->ioc));
0c9390d9 2759 client->close_fn = close_fn;
2c8d9f06 2760
c84087f2
VSO
2761 co = qemu_coroutine_create(nbd_co_client_start, client);
2762 qemu_coroutine_enter(co);
af49bbbe 2763}