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