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