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