]> git.proxmox.com Git - mirror_qemu.git/blame - nbd/server.c
sockets: improve error reporting if UNIX socket path is too long
[mirror_qemu.git] / nbd / server.c
CommitLineData
75818250 1/*
b626b51a 2 * Copyright (C) 2016 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"
798bfe00 22#include "nbd-internal.h"
ca441480
PB
23
24static int system_errno_to_nbd_errno(int err)
25{
26 switch (err) {
27 case 0:
28 return NBD_SUCCESS;
29 case EPERM:
c0301fcc 30 case EROFS:
ca441480
PB
31 return NBD_EPERM;
32 case EIO:
33 return NBD_EIO;
34 case ENOMEM:
35 return NBD_ENOMEM;
36#ifdef EDQUOT
37 case EDQUOT:
38#endif
39 case EFBIG:
40 case ENOSPC:
41 return NBD_ENOSPC;
b6f5d3b5
EB
42 case ESHUTDOWN:
43 return NBD_ESHUTDOWN;
ca441480
PB
44 case EINVAL:
45 default:
46 return NBD_EINVAL;
47 }
48}
49
9a304d29
PB
50/* Definitions for opaque data types */
51
315f78ab 52typedef struct NBDRequestData NBDRequestData;
9a304d29 53
315f78ab
EB
54struct NBDRequestData {
55 QSIMPLEQ_ENTRY(NBDRequestData) entry;
9a304d29
PB
56 NBDClient *client;
57 uint8_t *data;
29b6c3b3 58 bool complete;
9a304d29
PB
59};
60
61struct NBDExport {
2c8d9f06 62 int refcount;
0ddf08db
PB
63 void (*close)(NBDExport *exp);
64
aadf99a7 65 BlockBackend *blk;
ee0a19ec 66 char *name;
b1a75b33 67 char *description;
9a304d29
PB
68 off_t dev_offset;
69 off_t size;
7423f417 70 uint16_t nbdflags;
4b9441f6 71 QTAILQ_HEAD(, NBDClient) clients;
ee0a19ec 72 QTAILQ_ENTRY(NBDExport) next;
958c717d
HR
73
74 AioContext *ctx;
741cc431 75
cd7fca95 76 BlockBackend *eject_notifier_blk;
741cc431 77 Notifier eject_notifier;
9a304d29
PB
78};
79
ee0a19ec
PB
80static QTAILQ_HEAD(, NBDExport) exports = QTAILQ_HEAD_INITIALIZER(exports);
81
9a304d29
PB
82struct NBDClient {
83 int refcount;
84 void (*close)(NBDClient *client);
85
c203c59a 86 bool no_zeroes;
9a304d29 87 NBDExport *exp;
f95910fe
DB
88 QCryptoTLSCreds *tlscreds;
89 char *tlsaclname;
1c778ef7
DB
90 QIOChannelSocket *sioc; /* The underlying data channel */
91 QIOChannel *ioc; /* The current I/O channel which may differ (eg TLS) */
9a304d29
PB
92
93 Coroutine *recv_coroutine;
94
95 CoMutex send_lock;
96 Coroutine *send_coroutine;
97
4b9441f6 98 QTAILQ_ENTRY(NBDClient) next;
9a304d29 99 int nb_requests;
ff2b68aa 100 bool closing;
9a304d29
PB
101};
102
7a5ca864
FB
103/* That's all folks */
104
ff82911c 105static void nbd_client_receive_next_request(NBDClient *client);
958c717d 106
1c778ef7
DB
107static gboolean nbd_negotiate_continue(QIOChannel *ioc,
108 GIOCondition condition,
109 void *opaque)
1a6245a5 110{
0b8b8753 111 qemu_coroutine_enter(opaque);
1c778ef7 112 return TRUE;
1a6245a5
FZ
113}
114
f5d406fe 115static int nbd_negotiate_read(QIOChannel *ioc, void *buffer, size_t size)
1a6245a5
FZ
116{
117 ssize_t ret;
1c778ef7 118 guint watch;
1a6245a5
FZ
119
120 assert(qemu_in_coroutine());
121 /* Negotiation are always in main loop. */
1c778ef7
DB
122 watch = qio_channel_add_watch(ioc,
123 G_IO_IN,
124 nbd_negotiate_continue,
125 qemu_coroutine_self(),
126 NULL);
e44ed99d 127 ret = read_sync(ioc, buffer, size, NULL);
1c778ef7 128 g_source_remove(watch);
1a6245a5
FZ
129 return ret;
130
131}
132
f5d406fe 133static int nbd_negotiate_write(QIOChannel *ioc, const void *buffer, size_t size)
1a6245a5
FZ
134{
135 ssize_t ret;
1c778ef7 136 guint watch;
1a6245a5
FZ
137
138 assert(qemu_in_coroutine());
139 /* Negotiation are always in main loop. */
1c778ef7
DB
140 watch = qio_channel_add_watch(ioc,
141 G_IO_OUT,
142 nbd_negotiate_continue,
143 qemu_coroutine_self(),
144 NULL);
e44ed99d 145 ret = write_sync(ioc, buffer, size, NULL);
1c778ef7 146 g_source_remove(watch);
1a6245a5
FZ
147 return ret;
148}
149
f5d406fe 150static int nbd_negotiate_drop_sync(QIOChannel *ioc, size_t size)
0379f474 151{
f5d406fe 152 ssize_t ret;
0379f474
HR
153 uint8_t *buffer = g_malloc(MIN(65536, size));
154
155 while (size > 0) {
f5d406fe
VSO
156 size_t count = MIN(65536, size);
157 ret = nbd_negotiate_read(ioc, buffer, count);
0379f474
HR
158 if (ret < 0) {
159 g_free(buffer);
160 return ret;
161 }
162
f5d406fe 163 size -= count;
0379f474
HR
164 }
165
166 g_free(buffer);
f5d406fe 167 return 0;
0379f474
HR
168}
169
6b8c01e7 170/* Basic flow for negotiation
7a5ca864
FB
171
172 Server Client
7a5ca864 173 Negotiate
6b8c01e7
PB
174
175 or
176
177 Server Client
178 Negotiate #1
179 Option
180 Negotiate #2
181
182 ----
183
184 followed by
185
186 Server Client
7a5ca864
FB
187 Request
188 Response
189 Request
190 Response
191 ...
192 ...
193 Request (type == 2)
6b8c01e7 194
7a5ca864
FB
195*/
196
526e5c65
EB
197/* Send a reply header, including length, but no payload.
198 * Return -errno on error, 0 on success. */
199static int nbd_negotiate_send_rep_len(QIOChannel *ioc, uint32_t type,
200 uint32_t opt, uint32_t len)
6b8c01e7 201{
6b8c01e7 202 uint64_t magic;
6b8c01e7 203
526e5c65
EB
204 TRACE("Reply opt=%" PRIx32 " type=%" PRIx32 " len=%" PRIu32,
205 type, opt, len);
f95910fe 206
f5076b5a 207 magic = cpu_to_be64(NBD_REP_MAGIC);
f5d406fe 208 if (nbd_negotiate_write(ioc, &magic, sizeof(magic)) < 0) {
f5076b5a
HB
209 LOG("write failed (rep magic)");
210 return -EINVAL;
6b8c01e7 211 }
f5076b5a 212 opt = cpu_to_be32(opt);
f5d406fe 213 if (nbd_negotiate_write(ioc, &opt, sizeof(opt)) < 0) {
f5076b5a
HB
214 LOG("write failed (rep opt)");
215 return -EINVAL;
6b8c01e7 216 }
f5076b5a 217 type = cpu_to_be32(type);
f5d406fe 218 if (nbd_negotiate_write(ioc, &type, sizeof(type)) < 0) {
f5076b5a
HB
219 LOG("write failed (rep type)");
220 return -EINVAL;
6b8c01e7 221 }
526e5c65 222 len = cpu_to_be32(len);
f5d406fe 223 if (nbd_negotiate_write(ioc, &len, sizeof(len)) < 0) {
f5076b5a
HB
224 LOG("write failed (rep data length)");
225 return -EINVAL;
6b8c01e7 226 }
f5076b5a
HB
227 return 0;
228}
6b8c01e7 229
526e5c65
EB
230/* Send a reply header with default 0 length.
231 * Return -errno on error, 0 on success. */
232static int nbd_negotiate_send_rep(QIOChannel *ioc, uint32_t type, uint32_t opt)
233{
234 return nbd_negotiate_send_rep_len(ioc, type, opt, 0);
235}
236
36683283
EB
237/* Send an error reply.
238 * Return -errno on error, 0 on success. */
239static int GCC_FMT_ATTR(4, 5)
240nbd_negotiate_send_rep_err(QIOChannel *ioc, uint32_t type,
241 uint32_t opt, const char *fmt, ...)
242{
243 va_list va;
244 char *msg;
245 int ret;
246 size_t len;
247
248 va_start(va, fmt);
249 msg = g_strdup_vprintf(fmt, va);
250 va_end(va);
251 len = strlen(msg);
252 assert(len < 4096);
253 TRACE("sending error message \"%s\"", msg);
254 ret = nbd_negotiate_send_rep_len(ioc, type, opt, len);
255 if (ret < 0) {
256 goto out;
257 }
f5d406fe 258 if (nbd_negotiate_write(ioc, msg, len) < 0) {
36683283
EB
259 LOG("write failed (error message)");
260 ret = -EIO;
261 } else {
262 ret = 0;
263 }
264out:
265 g_free(msg);
266 return ret;
267}
268
526e5c65
EB
269/* Send a single NBD_REP_SERVER reply to NBD_OPT_LIST, including payload.
270 * Return -errno on error, 0 on success. */
1c778ef7 271static int nbd_negotiate_send_rep_list(QIOChannel *ioc, NBDExport *exp)
32d7d2e0 272{
b1a75b33 273 size_t name_len, desc_len;
526e5c65 274 uint32_t len;
b1a75b33
EB
275 const char *name = exp->name ? exp->name : "";
276 const char *desc = exp->description ? exp->description : "";
526e5c65 277 int rc;
32d7d2e0 278
b1a75b33
EB
279 TRACE("Advertising export name '%s' description '%s'", name, desc);
280 name_len = strlen(name);
281 desc_len = strlen(desc);
526e5c65
EB
282 len = name_len + desc_len + sizeof(len);
283 rc = nbd_negotiate_send_rep_len(ioc, NBD_REP_SERVER, NBD_OPT_LIST, len);
284 if (rc < 0) {
285 return rc;
32d7d2e0 286 }
526e5c65 287
32d7d2e0 288 len = cpu_to_be32(name_len);
f5d406fe 289 if (nbd_negotiate_write(ioc, &len, sizeof(len)) < 0) {
b1a75b33
EB
290 LOG("write failed (name length)");
291 return -EINVAL;
292 }
f5d406fe 293 if (nbd_negotiate_write(ioc, name, name_len) < 0) {
b1a75b33 294 LOG("write failed (name buffer)");
32d7d2e0
HB
295 return -EINVAL;
296 }
f5d406fe 297 if (nbd_negotiate_write(ioc, desc, desc_len) < 0) {
b1a75b33 298 LOG("write failed (description buffer)");
32d7d2e0
HB
299 return -EINVAL;
300 }
301 return 0;
302}
303
526e5c65
EB
304/* Process the NBD_OPT_LIST command, with a potential series of replies.
305 * Return -errno on error, 0 on success. */
1a6245a5 306static int nbd_negotiate_handle_list(NBDClient *client, uint32_t length)
32d7d2e0 307{
32d7d2e0
HB
308 NBDExport *exp;
309
32d7d2e0 310 if (length) {
f5d406fe 311 if (nbd_negotiate_drop_sync(client->ioc, length) < 0) {
0379f474
HR
312 return -EIO;
313 }
36683283
EB
314 return nbd_negotiate_send_rep_err(client->ioc,
315 NBD_REP_ERR_INVALID, NBD_OPT_LIST,
316 "OPT_LIST should not have length");
32d7d2e0
HB
317 }
318
319 /* For each export, send a NBD_REP_SERVER reply. */
320 QTAILQ_FOREACH(exp, &exports, next) {
1c778ef7 321 if (nbd_negotiate_send_rep_list(client->ioc, exp)) {
32d7d2e0
HB
322 return -EINVAL;
323 }
324 }
325 /* Finish with a NBD_REP_ACK. */
1c778ef7 326 return nbd_negotiate_send_rep(client->ioc, NBD_REP_ACK, NBD_OPT_LIST);
32d7d2e0
HB
327}
328
1a6245a5 329static int nbd_negotiate_handle_export_name(NBDClient *client, uint32_t length)
f5076b5a 330{
1c778ef7 331 int rc = -EINVAL;
943cec86 332 char name[NBD_MAX_NAME_SIZE + 1];
6b8c01e7 333
f5076b5a
HB
334 /* Client sends:
335 [20 .. xx] export name (length bytes)
336 */
6b8c01e7 337 TRACE("Checking length");
943cec86 338 if (length >= sizeof(name)) {
6b8c01e7
PB
339 LOG("Bad length received");
340 goto fail;
341 }
f5d406fe 342 if (nbd_negotiate_read(client->ioc, name, length) < 0) {
6b8c01e7
PB
343 LOG("read failed");
344 goto fail;
345 }
346 name[length] = '\0';
347
9344e5f5
DB
348 TRACE("Client requested export '%s'", name);
349
6b8c01e7
PB
350 client->exp = nbd_export_find(name);
351 if (!client->exp) {
352 LOG("export not found");
353 goto fail;
354 }
355
356 QTAILQ_INSERT_TAIL(&client->exp->clients, client, next);
357 nbd_export_get(client->exp);
6b8c01e7
PB
358 rc = 0;
359fail:
360 return rc;
361}
362
36683283
EB
363/* Handle NBD_OPT_STARTTLS. Return NULL to drop connection, or else the
364 * new channel for all further (now-encrypted) communication. */
f95910fe
DB
365static QIOChannel *nbd_negotiate_handle_starttls(NBDClient *client,
366 uint32_t length)
367{
368 QIOChannel *ioc;
369 QIOChannelTLS *tioc;
370 struct NBDTLSHandshakeData data = { 0 };
371
372 TRACE("Setting up TLS");
373 ioc = client->ioc;
374 if (length) {
f5d406fe 375 if (nbd_negotiate_drop_sync(ioc, length) < 0) {
f95910fe
DB
376 return NULL;
377 }
36683283
EB
378 nbd_negotiate_send_rep_err(ioc, NBD_REP_ERR_INVALID, NBD_OPT_STARTTLS,
379 "OPT_STARTTLS should not have length");
f95910fe
DB
380 return NULL;
381 }
382
63d5ef86
EB
383 if (nbd_negotiate_send_rep(client->ioc, NBD_REP_ACK,
384 NBD_OPT_STARTTLS) < 0) {
385 return NULL;
386 }
f95910fe
DB
387
388 tioc = qio_channel_tls_new_server(ioc,
389 client->tlscreds,
390 client->tlsaclname,
391 NULL);
392 if (!tioc) {
393 return NULL;
394 }
395
0d73f725 396 qio_channel_set_name(QIO_CHANNEL(tioc), "nbd-server-tls");
f95910fe
DB
397 TRACE("Starting TLS handshake");
398 data.loop = g_main_loop_new(g_main_context_default(), FALSE);
399 qio_channel_tls_handshake(tioc,
400 nbd_tls_handshake,
401 &data,
402 NULL);
403
404 if (!data.complete) {
405 g_main_loop_run(data.loop);
406 }
407 g_main_loop_unref(data.loop);
408 if (data.error) {
409 object_unref(OBJECT(tioc));
410 error_free(data.error);
411 return NULL;
412 }
413
414 return QIO_CHANNEL(tioc);
415}
416
417
526e5c65
EB
418/* Process all NBD_OPT_* client option commands.
419 * Return -errno on error, 0 on success. */
1a6245a5 420static int nbd_negotiate_options(NBDClient *client)
f5076b5a 421{
9c122ada 422 uint32_t flags;
26afa868 423 bool fixedNewstyle = false;
9c122ada
HR
424
425 /* Client sends:
426 [ 0 .. 3] client flags
427
428 [ 0 .. 7] NBD_OPTS_MAGIC
429 [ 8 .. 11] NBD option
430 [12 .. 15] Data length
431 ... Rest of request
432
433 [ 0 .. 7] NBD_OPTS_MAGIC
434 [ 8 .. 11] Second NBD option
435 [12 .. 15] Data length
436 ... Rest of request
437 */
438
f5d406fe 439 if (nbd_negotiate_read(client->ioc, &flags, sizeof(flags)) < 0) {
9c122ada
HR
440 LOG("read failed");
441 return -EIO;
442 }
443 TRACE("Checking client flags");
444 be32_to_cpus(&flags);
26afa868 445 if (flags & NBD_FLAG_C_FIXED_NEWSTYLE) {
2cb34749 446 TRACE("Client supports fixed newstyle handshake");
26afa868
DB
447 fixedNewstyle = true;
448 flags &= ~NBD_FLAG_C_FIXED_NEWSTYLE;
449 }
c203c59a
EB
450 if (flags & NBD_FLAG_C_NO_ZEROES) {
451 TRACE("Client supports no zeroes at handshake end");
452 client->no_zeroes = true;
453 flags &= ~NBD_FLAG_C_NO_ZEROES;
454 }
26afa868 455 if (flags != 0) {
2cb34749 456 TRACE("Unknown client flags 0x%" PRIx32 " received", flags);
9c122ada
HR
457 return -EIO;
458 }
459
f5076b5a 460 while (1) {
9c122ada 461 int ret;
26afa868 462 uint32_t clientflags, length;
f5076b5a
HB
463 uint64_t magic;
464
f5d406fe 465 if (nbd_negotiate_read(client->ioc, &magic, sizeof(magic)) < 0) {
f5076b5a
HB
466 LOG("read failed");
467 return -EINVAL;
468 }
469 TRACE("Checking opts magic");
470 if (magic != be64_to_cpu(NBD_OPTS_MAGIC)) {
471 LOG("Bad magic received");
472 return -EINVAL;
473 }
474
26afa868 475 if (nbd_negotiate_read(client->ioc, &clientflags,
f5d406fe
VSO
476 sizeof(clientflags)) < 0)
477 {
f5076b5a
HB
478 LOG("read failed");
479 return -EINVAL;
480 }
26afa868 481 clientflags = be32_to_cpu(clientflags);
f5076b5a 482
f5d406fe 483 if (nbd_negotiate_read(client->ioc, &length, sizeof(length)) < 0) {
f5076b5a
HB
484 LOG("read failed");
485 return -EINVAL;
486 }
487 length = be32_to_cpu(length);
488
2cb34749 489 TRACE("Checking option 0x%" PRIx32, clientflags);
f95910fe
DB
490 if (client->tlscreds &&
491 client->ioc == (QIOChannel *)client->sioc) {
492 QIOChannel *tioc;
493 if (!fixedNewstyle) {
2cb34749 494 TRACE("Unsupported option 0x%" PRIx32, clientflags);
f95910fe
DB
495 return -EINVAL;
496 }
497 switch (clientflags) {
498 case NBD_OPT_STARTTLS:
499 tioc = nbd_negotiate_handle_starttls(client, length);
500 if (!tioc) {
501 return -EIO;
502 }
503 object_unref(OBJECT(client->ioc));
504 client->ioc = QIO_CHANNEL(tioc);
505 break;
506
d1129a8a
EB
507 case NBD_OPT_EXPORT_NAME:
508 /* No way to return an error to client, so drop connection */
509 TRACE("Option 0x%x not permitted before TLS", clientflags);
510 return -EINVAL;
511
f95910fe 512 default:
f5d406fe 513 if (nbd_negotiate_drop_sync(client->ioc, length) < 0) {
d1129a8a
EB
514 return -EIO;
515 }
36683283
EB
516 ret = nbd_negotiate_send_rep_err(client->ioc,
517 NBD_REP_ERR_TLS_REQD,
518 clientflags,
519 "Option 0x%" PRIx32
520 "not permitted before TLS",
521 clientflags);
63d5ef86
EB
522 if (ret < 0) {
523 return ret;
524 }
b6f5d3b5
EB
525 /* Let the client keep trying, unless they asked to quit */
526 if (clientflags == NBD_OPT_ABORT) {
527 return -EINVAL;
528 }
d1129a8a 529 break;
f95910fe
DB
530 }
531 } else if (fixedNewstyle) {
26afa868
DB
532 switch (clientflags) {
533 case NBD_OPT_LIST:
534 ret = nbd_negotiate_handle_list(client, length);
535 if (ret < 0) {
536 return ret;
537 }
538 break;
539
540 case NBD_OPT_ABORT:
b6f5d3b5
EB
541 /* NBD spec says we must try to reply before
542 * disconnecting, but that we must also tolerate
543 * guests that don't wait for our reply. */
544 nbd_negotiate_send_rep(client->ioc, NBD_REP_ACK, clientflags);
26afa868
DB
545 return -EINVAL;
546
547 case NBD_OPT_EXPORT_NAME:
548 return nbd_negotiate_handle_export_name(client, length);
549
f95910fe 550 case NBD_OPT_STARTTLS:
f5d406fe 551 if (nbd_negotiate_drop_sync(client->ioc, length) < 0) {
d1129a8a
EB
552 return -EIO;
553 }
f95910fe 554 if (client->tlscreds) {
36683283
EB
555 ret = nbd_negotiate_send_rep_err(client->ioc,
556 NBD_REP_ERR_INVALID,
557 clientflags,
558 "TLS already enabled");
f95910fe 559 } else {
36683283
EB
560 ret = nbd_negotiate_send_rep_err(client->ioc,
561 NBD_REP_ERR_POLICY,
562 clientflags,
563 "TLS not configured");
63d5ef86
EB
564 }
565 if (ret < 0) {
566 return ret;
f95910fe 567 }
d1129a8a 568 break;
26afa868 569 default:
f5d406fe 570 if (nbd_negotiate_drop_sync(client->ioc, length) < 0) {
156f6a10
EB
571 return -EIO;
572 }
36683283
EB
573 ret = nbd_negotiate_send_rep_err(client->ioc,
574 NBD_REP_ERR_UNSUP,
575 clientflags,
576 "Unsupported option 0x%"
577 PRIx32,
578 clientflags);
63d5ef86
EB
579 if (ret < 0) {
580 return ret;
581 }
156f6a10 582 break;
26afa868
DB
583 }
584 } else {
585 /*
586 * If broken new-style we should drop the connection
587 * for anything except NBD_OPT_EXPORT_NAME
588 */
589 switch (clientflags) {
590 case NBD_OPT_EXPORT_NAME:
591 return nbd_negotiate_handle_export_name(client, length);
592
593 default:
2cb34749 594 TRACE("Unsupported option 0x%" PRIx32, clientflags);
26afa868 595 return -EINVAL;
32d7d2e0 596 }
f5076b5a
HB
597 }
598 }
599}
600
1a6245a5
FZ
601typedef struct {
602 NBDClient *client;
603 Coroutine *co;
604} NBDClientNewData;
605
606static coroutine_fn int nbd_negotiate(NBDClientNewData *data)
7a5ca864 607{
1a6245a5 608 NBDClient *client = data->client;
b2e3d87f 609 char buf[8 + 8 + 8 + 128];
185b4338 610 int rc;
7423f417 611 const uint16_t myflags = (NBD_FLAG_HAS_FLAGS | NBD_FLAG_SEND_TRIM |
1f4d6d18
EB
612 NBD_FLAG_SEND_FLUSH | NBD_FLAG_SEND_FUA |
613 NBD_FLAG_SEND_WRITE_ZEROES);
f95910fe 614 bool oldStyle;
c203c59a 615 size_t len;
b2e3d87f 616
f95910fe 617 /* Old style negotiation header without options
6b8c01e7
PB
618 [ 0 .. 7] passwd ("NBDMAGIC")
619 [ 8 .. 15] magic (NBD_CLIENT_MAGIC)
b2e3d87f 620 [16 .. 23] size
6b8c01e7 621 [24 .. 25] server flags (0)
5672ee54 622 [26 .. 27] export flags
6b8c01e7
PB
623 [28 .. 151] reserved (0)
624
f95910fe 625 New style negotiation header with options
6b8c01e7
PB
626 [ 0 .. 7] passwd ("NBDMAGIC")
627 [ 8 .. 15] magic (NBD_OPTS_MAGIC)
628 [16 .. 17] server flags (0)
f95910fe 629 ....options sent....
6b8c01e7
PB
630 [18 .. 25] size
631 [26 .. 27] export flags
c203c59a 632 [28 .. 151] reserved (0, omit if no_zeroes)
b2e3d87f
NT
633 */
634
1c778ef7 635 qio_channel_set_blocking(client->ioc, false, NULL);
185b4338
PB
636 rc = -EINVAL;
637
b2e3d87f 638 TRACE("Beginning negotiation.");
8ffaaba0 639 memset(buf, 0, sizeof(buf));
b2e3d87f 640 memcpy(buf, "NBDMAGIC", 8);
f95910fe
DB
641
642 oldStyle = client->exp != NULL && !client->tlscreds;
643 if (oldStyle) {
2cb34749
EB
644 TRACE("advertising size %" PRIu64 " and flags %x",
645 client->exp->size, client->exp->nbdflags | myflags);
667ad26f
JS
646 stq_be_p(buf + 8, NBD_CLIENT_MAGIC);
647 stq_be_p(buf + 16, client->exp->size);
648 stw_be_p(buf + 26, client->exp->nbdflags | myflags);
6b8c01e7 649 } else {
667ad26f 650 stq_be_p(buf + 8, NBD_OPTS_MAGIC);
c203c59a 651 stw_be_p(buf + 16, NBD_FLAG_FIXED_NEWSTYLE | NBD_FLAG_NO_ZEROES);
6b8c01e7 652 }
b2e3d87f 653
f95910fe
DB
654 if (oldStyle) {
655 if (client->tlscreds) {
656 TRACE("TLS cannot be enabled with oldstyle protocol");
657 goto fail;
658 }
f5d406fe 659 if (nbd_negotiate_write(client->ioc, buf, sizeof(buf)) < 0) {
6b8c01e7
PB
660 LOG("write failed");
661 goto fail;
662 }
663 } else {
f5d406fe 664 if (nbd_negotiate_write(client->ioc, buf, 18) < 0) {
6b8c01e7
PB
665 LOG("write failed");
666 goto fail;
667 }
1a6245a5 668 rc = nbd_negotiate_options(client);
f5076b5a 669 if (rc != 0) {
6b8c01e7
PB
670 LOG("option negotiation failed");
671 goto fail;
672 }
673
2cb34749
EB
674 TRACE("advertising size %" PRIu64 " and flags %x",
675 client->exp->size, client->exp->nbdflags | myflags);
667ad26f
JS
676 stq_be_p(buf + 18, client->exp->size);
677 stw_be_p(buf + 26, client->exp->nbdflags | myflags);
c203c59a 678 len = client->no_zeroes ? 10 : sizeof(buf) - 18;
f5d406fe 679 if (nbd_negotiate_write(client->ioc, buf + 18, len) < 0) {
6b8c01e7
PB
680 LOG("write failed");
681 goto fail;
682 }
b2e3d87f
NT
683 }
684
07f35073 685 TRACE("Negotiation succeeded.");
185b4338
PB
686 rc = 0;
687fail:
688 return rc;
7a5ca864
FB
689}
690
ed2dd912 691static ssize_t nbd_receive_request(QIOChannel *ioc, NBDRequest *request)
75818250 692{
fa26c26b 693 uint8_t buf[NBD_REQUEST_SIZE];
b2e3d87f 694 uint32_t magic;
185b4338 695 ssize_t ret;
b2e3d87f 696
e44ed99d 697 ret = read_sync(ioc, buf, sizeof(buf), NULL);
185b4338
PB
698 if (ret < 0) {
699 return ret;
700 }
701
b2e3d87f
NT
702 /* Request
703 [ 0 .. 3] magic (NBD_REQUEST_MAGIC)
b626b51a
EB
704 [ 4 .. 5] flags (NBD_CMD_FLAG_FUA, ...)
705 [ 6 .. 7] type (NBD_CMD_READ, ...)
b2e3d87f
NT
706 [ 8 .. 15] handle
707 [16 .. 23] from
708 [24 .. 27] len
709 */
710
773dce3c 711 magic = ldl_be_p(buf);
b626b51a
EB
712 request->flags = lduw_be_p(buf + 4);
713 request->type = lduw_be_p(buf + 6);
773dce3c
PM
714 request->handle = ldq_be_p(buf + 8);
715 request->from = ldq_be_p(buf + 16);
716 request->len = ldl_be_p(buf + 24);
b2e3d87f 717
b626b51a
EB
718 TRACE("Got request: { magic = 0x%" PRIx32 ", .flags = %" PRIx16
719 ", .type = %" PRIx16 ", from = %" PRIu64 ", len = %" PRIu32 " }",
720 magic, request->flags, request->type, request->from, request->len);
b2e3d87f
NT
721
722 if (magic != NBD_REQUEST_MAGIC) {
2cb34749 723 LOG("invalid magic (got 0x%" PRIx32 ")", magic);
185b4338 724 return -EINVAL;
b2e3d87f
NT
725 }
726 return 0;
75818250
TS
727}
728
ed2dd912 729static ssize_t nbd_send_reply(QIOChannel *ioc, NBDReply *reply)
75818250 730{
fa26c26b 731 uint8_t buf[NBD_REPLY_SIZE];
b2e3d87f 732
ca441480
PB
733 reply->error = system_errno_to_nbd_errno(reply->error);
734
2cb34749
EB
735 TRACE("Sending response to client: { .error = %" PRId32
736 ", handle = %" PRIu64 " }",
7548fe31
EB
737 reply->error, reply->handle);
738
b2e3d87f
NT
739 /* Reply
740 [ 0 .. 3] magic (NBD_REPLY_MAGIC)
741 [ 4 .. 7] error (0 == no error)
742 [ 7 .. 15] handle
743 */
667ad26f
JS
744 stl_be_p(buf, NBD_REPLY_MAGIC);
745 stl_be_p(buf + 4, reply->error);
746 stq_be_p(buf + 8, reply->handle);
b2e3d87f 747
e44ed99d 748 return write_sync(ioc, buf, sizeof(buf), NULL);
75818250 749}
7a5ca864 750
41996e38
PB
751#define MAX_NBD_REQUESTS 16
752
ce33967a 753void nbd_client_get(NBDClient *client)
1743b515
PB
754{
755 client->refcount++;
756}
757
ce33967a 758void nbd_client_put(NBDClient *client)
1743b515
PB
759{
760 if (--client->refcount == 0) {
ff2b68aa 761 /* The last reference should be dropped by client->close,
f53a829b 762 * which is called by client_close.
ff2b68aa
PB
763 */
764 assert(client->closing);
765
ff82911c 766 qio_channel_detach_aio_context(client->ioc);
1c778ef7
DB
767 object_unref(OBJECT(client->sioc));
768 object_unref(OBJECT(client->ioc));
f95910fe
DB
769 if (client->tlscreds) {
770 object_unref(OBJECT(client->tlscreds));
771 }
772 g_free(client->tlsaclname);
6b8c01e7
PB
773 if (client->exp) {
774 QTAILQ_REMOVE(&client->exp->clients, client, next);
775 nbd_export_put(client->exp);
776 }
1743b515
PB
777 g_free(client);
778 }
779}
780
f53a829b 781static void client_close(NBDClient *client)
1743b515 782{
ff2b68aa
PB
783 if (client->closing) {
784 return;
785 }
786
787 client->closing = true;
788
789 /* Force requests to finish. They will drop their own references,
790 * then we'll close the socket and free the NBDClient.
791 */
1c778ef7
DB
792 qio_channel_shutdown(client->ioc, QIO_CHANNEL_SHUTDOWN_BOTH,
793 NULL);
ff2b68aa
PB
794
795 /* Also tell the client, so that they release their reference. */
1743b515
PB
796 if (client->close) {
797 client->close(client);
798 }
1743b515
PB
799}
800
315f78ab 801static NBDRequestData *nbd_request_get(NBDClient *client)
d9a73806 802{
315f78ab 803 NBDRequestData *req;
72deddc5 804
41996e38
PB
805 assert(client->nb_requests <= MAX_NBD_REQUESTS - 1);
806 client->nb_requests++;
807
315f78ab 808 req = g_new0(NBDRequestData, 1);
72deddc5
PB
809 nbd_client_get(client);
810 req->client = client;
d9a73806
PB
811 return req;
812}
813
315f78ab 814static void nbd_request_put(NBDRequestData *req)
d9a73806 815{
72deddc5 816 NBDClient *client = req->client;
e1adb27a 817
2d821488
SH
818 if (req->data) {
819 qemu_vfree(req->data);
820 }
1729404c 821 g_free(req);
e1adb27a 822
958c717d 823 client->nb_requests--;
ff82911c
PB
824 nbd_client_receive_next_request(client);
825
72deddc5 826 nbd_client_put(client);
d9a73806
PB
827}
828
aadf99a7 829static void blk_aio_attached(AioContext *ctx, void *opaque)
f2149281
HR
830{
831 NBDExport *exp = opaque;
832 NBDClient *client;
833
834 TRACE("Export %s: Attaching clients to AIO context %p\n", exp->name, ctx);
835
836 exp->ctx = ctx;
837
838 QTAILQ_FOREACH(client, &exp->clients, next) {
ff82911c
PB
839 qio_channel_attach_aio_context(client->ioc, ctx);
840 if (client->recv_coroutine) {
841 aio_co_schedule(ctx, client->recv_coroutine);
842 }
843 if (client->send_coroutine) {
844 aio_co_schedule(ctx, client->send_coroutine);
845 }
f2149281
HR
846 }
847}
848
aadf99a7 849static void blk_aio_detach(void *opaque)
f2149281
HR
850{
851 NBDExport *exp = opaque;
852 NBDClient *client;
853
854 TRACE("Export %s: Detaching clients from AIO context %p\n", exp->name, exp->ctx);
855
856 QTAILQ_FOREACH(client, &exp->clients, next) {
ff82911c 857 qio_channel_detach_aio_context(client->ioc);
f2149281
HR
858 }
859
860 exp->ctx = NULL;
861}
862
741cc431
HR
863static void nbd_eject_notifier(Notifier *n, void *data)
864{
865 NBDExport *exp = container_of(n, NBDExport, eject_notifier);
866 nbd_export_close(exp);
867}
868
cd7fca95 869NBDExport *nbd_export_new(BlockDriverState *bs, off_t dev_offset, off_t size,
7423f417 870 uint16_t nbdflags, void (*close)(NBDExport *),
cd7fca95 871 bool writethrough, BlockBackend *on_eject_blk,
98f44bbe 872 Error **errp)
af49bbbe 873{
cd7fca95 874 BlockBackend *blk;
af49bbbe 875 NBDExport *exp = g_malloc0(sizeof(NBDExport));
8a7ce4f9 876 uint64_t perm;
d7086422 877 int ret;
cd7fca95 878
8a7ce4f9
KW
879 /* Don't allow resize while the NBD server is running, otherwise we don't
880 * care what happens with the node. */
881 perm = BLK_PERM_CONSISTENT_READ;
882 if ((nbdflags & NBD_FLAG_READ_ONLY) == 0) {
883 perm |= BLK_PERM_WRITE;
884 }
885 blk = blk_new(perm, BLK_PERM_CONSISTENT_READ | BLK_PERM_WRITE_UNCHANGED |
886 BLK_PERM_WRITE | BLK_PERM_GRAPH_MOD);
d7086422
KW
887 ret = blk_insert_bs(blk, bs, errp);
888 if (ret < 0) {
889 goto fail;
890 }
cd7fca95
KW
891 blk_set_enable_write_cache(blk, !writethrough);
892
2c8d9f06 893 exp->refcount = 1;
4b9441f6 894 QTAILQ_INIT(&exp->clients);
aadf99a7 895 exp->blk = blk;
af49bbbe
PB
896 exp->dev_offset = dev_offset;
897 exp->nbdflags = nbdflags;
98f44bbe
HR
898 exp->size = size < 0 ? blk_getlength(blk) : size;
899 if (exp->size < 0) {
900 error_setg_errno(errp, -exp->size,
901 "Failed to determine the NBD export's length");
902 goto fail;
903 }
904 exp->size -= exp->size % BDRV_SECTOR_SIZE;
905
0ddf08db 906 exp->close = close;
aadf99a7 907 exp->ctx = blk_get_aio_context(blk);
aadf99a7 908 blk_add_aio_context_notifier(blk, blk_aio_attached, blk_aio_detach, exp);
741cc431 909
cd7fca95
KW
910 if (on_eject_blk) {
911 blk_ref(on_eject_blk);
912 exp->eject_notifier_blk = on_eject_blk;
913 exp->eject_notifier.notify = nbd_eject_notifier;
914 blk_add_remove_bs_notifier(on_eject_blk, &exp->eject_notifier);
915 }
741cc431 916
7ea2d269
AK
917 /*
918 * NBD exports are used for non-shared storage migration. Make sure
04c01a5c 919 * that BDRV_O_INACTIVE is cleared and the image is ready for write
7ea2d269
AK
920 * access since the export could be available before migration handover.
921 */
e5f3e12e 922 aio_context_acquire(exp->ctx);
aadf99a7 923 blk_invalidate_cache(blk, NULL);
e5f3e12e 924 aio_context_release(exp->ctx);
af49bbbe 925 return exp;
98f44bbe
HR
926
927fail:
cd7fca95 928 blk_unref(blk);
98f44bbe
HR
929 g_free(exp);
930 return NULL;
af49bbbe
PB
931}
932
ee0a19ec
PB
933NBDExport *nbd_export_find(const char *name)
934{
935 NBDExport *exp;
936 QTAILQ_FOREACH(exp, &exports, next) {
937 if (strcmp(name, exp->name) == 0) {
938 return exp;
939 }
940 }
941
942 return NULL;
943}
944
945void nbd_export_set_name(NBDExport *exp, const char *name)
946{
947 if (exp->name == name) {
948 return;
949 }
950
951 nbd_export_get(exp);
952 if (exp->name != NULL) {
953 g_free(exp->name);
954 exp->name = NULL;
955 QTAILQ_REMOVE(&exports, exp, next);
956 nbd_export_put(exp);
957 }
958 if (name != NULL) {
959 nbd_export_get(exp);
960 exp->name = g_strdup(name);
961 QTAILQ_INSERT_TAIL(&exports, exp, next);
962 }
963 nbd_export_put(exp);
964}
965
b1a75b33
EB
966void nbd_export_set_description(NBDExport *exp, const char *description)
967{
968 g_free(exp->description);
969 exp->description = g_strdup(description);
970}
971
af49bbbe
PB
972void nbd_export_close(NBDExport *exp)
973{
4b9441f6 974 NBDClient *client, *next;
2c8d9f06 975
4b9441f6
PB
976 nbd_export_get(exp);
977 QTAILQ_FOREACH_SAFE(client, &exp->clients, next, next) {
f53a829b 978 client_close(client);
4b9441f6 979 }
125afda8 980 nbd_export_set_name(exp, NULL);
b1a75b33 981 nbd_export_set_description(exp, NULL);
4b9441f6 982 nbd_export_put(exp);
2c8d9f06
PB
983}
984
985void nbd_export_get(NBDExport *exp)
986{
987 assert(exp->refcount > 0);
988 exp->refcount++;
989}
990
991void nbd_export_put(NBDExport *exp)
992{
993 assert(exp->refcount > 0);
994 if (exp->refcount == 1) {
995 nbd_export_close(exp);
d9a73806
PB
996 }
997
2c8d9f06 998 if (--exp->refcount == 0) {
ee0a19ec 999 assert(exp->name == NULL);
b1a75b33 1000 assert(exp->description == NULL);
ee0a19ec 1001
0ddf08db
PB
1002 if (exp->close) {
1003 exp->close(exp);
1004 }
1005
d6268348 1006 if (exp->blk) {
cd7fca95
KW
1007 if (exp->eject_notifier_blk) {
1008 notifier_remove(&exp->eject_notifier);
1009 blk_unref(exp->eject_notifier_blk);
1010 }
d6268348
WC
1011 blk_remove_aio_context_notifier(exp->blk, blk_aio_attached,
1012 blk_aio_detach, exp);
1013 blk_unref(exp->blk);
1014 exp->blk = NULL;
1015 }
1016
2c8d9f06
PB
1017 g_free(exp);
1018 }
af49bbbe
PB
1019}
1020
e140177d 1021BlockBackend *nbd_export_get_blockdev(NBDExport *exp)
125afda8 1022{
aadf99a7 1023 return exp->blk;
125afda8
PB
1024}
1025
ee0a19ec
PB
1026void nbd_export_close_all(void)
1027{
1028 NBDExport *exp, *next;
1029
1030 QTAILQ_FOREACH_SAFE(exp, &exports, next, next) {
1031 nbd_export_close(exp);
ee0a19ec
PB
1032 }
1033}
1034
ed2dd912 1035static ssize_t nbd_co_send_reply(NBDRequestData *req, NBDReply *reply,
94e7340b 1036 int len)
22045592 1037{
72deddc5 1038 NBDClient *client = req->client;
94e7340b 1039 ssize_t rc, ret;
22045592 1040
1c778ef7 1041 g_assert(qemu_in_coroutine());
262db388 1042 qemu_co_mutex_lock(&client->send_lock);
262db388
PB
1043 client->send_coroutine = qemu_coroutine_self();
1044
22045592 1045 if (!len) {
1c778ef7 1046 rc = nbd_send_reply(client->ioc, reply);
22045592 1047 } else {
1c778ef7
DB
1048 qio_channel_set_cork(client->ioc, true);
1049 rc = nbd_send_reply(client->ioc, reply);
fc19f8a0 1050 if (rc >= 0) {
e44ed99d 1051 ret = write_sync(client->ioc, req->data, len, NULL);
f5d406fe 1052 if (ret < 0) {
185b4338 1053 rc = -EIO;
22045592
PB
1054 }
1055 }
1c778ef7 1056 qio_channel_set_cork(client->ioc, false);
22045592 1057 }
262db388
PB
1058
1059 client->send_coroutine = NULL;
262db388 1060 qemu_co_mutex_unlock(&client->send_lock);
22045592
PB
1061 return rc;
1062}
1063
29b6c3b3
EB
1064/* Collect a client request. Return 0 if request looks valid, -EAGAIN
1065 * to keep trying the collection, -EIO to drop connection right away,
1066 * and any other negative value to report an error to the client
1067 * (although the caller may still need to disconnect after reporting
1068 * the error). */
315f78ab 1069static ssize_t nbd_co_receive_request(NBDRequestData *req,
ed2dd912 1070 NBDRequest *request)
a030b347 1071{
72deddc5 1072 NBDClient *client = req->client;
94e7340b 1073 ssize_t rc;
a030b347 1074
1c778ef7 1075 g_assert(qemu_in_coroutine());
ff82911c 1076 assert(client->recv_coroutine == qemu_coroutine_self());
1c778ef7 1077 rc = nbd_receive_request(client->ioc, request);
7fe7b68b
PB
1078 if (rc < 0) {
1079 if (rc != -EAGAIN) {
1080 rc = -EIO;
1081 }
a030b347
PB
1082 goto out;
1083 }
1084
29b6c3b3
EB
1085 TRACE("Decoding type");
1086
b626b51a 1087 if (request->type != NBD_CMD_WRITE) {
29b6c3b3
EB
1088 /* No payload, we are ready to read the next request. */
1089 req->complete = true;
1090 }
1091
b626b51a 1092 if (request->type == NBD_CMD_DISC) {
29b6c3b3
EB
1093 /* Special case: we're going to disconnect without a reply,
1094 * whether or not flags, from, or len are bogus */
1095 TRACE("Request type is DISCONNECT");
1096 rc = -EIO;
1097 goto out;
1098 }
1099
1100 /* Check for sanity in the parameters, part 1. Defer as many
1101 * checks as possible until after reading any NBD_CMD_WRITE
1102 * payload, so we can try and keep the connection alive. */
a030b347 1103 if ((request->from + request->len) < request->from) {
29b6c3b3 1104 LOG("integer overflow detected, you're probably being attacked");
a030b347
PB
1105 rc = -EINVAL;
1106 goto out;
1107 }
1108
b626b51a 1109 if (request->type == NBD_CMD_READ || request->type == NBD_CMD_WRITE) {
eb38c3b6 1110 if (request->len > NBD_MAX_BUFFER_SIZE) {
2cb34749 1111 LOG("len (%" PRIu32" ) is larger than max len (%u)",
eb38c3b6
PB
1112 request->len, NBD_MAX_BUFFER_SIZE);
1113 rc = -EINVAL;
1114 goto out;
1115 }
1116
f1c17521
PB
1117 req->data = blk_try_blockalign(client->exp->blk, request->len);
1118 if (req->data == NULL) {
1119 rc = -ENOMEM;
1120 goto out;
1121 }
2d821488 1122 }
b626b51a 1123 if (request->type == NBD_CMD_WRITE) {
2cb34749 1124 TRACE("Reading %" PRIu32 " byte(s)", request->len);
a030b347 1125
e44ed99d 1126 if (read_sync(client->ioc, req->data, request->len, NULL) < 0) {
a030b347
PB
1127 LOG("reading from socket failed");
1128 rc = -EIO;
1129 goto out;
1130 }
29b6c3b3 1131 req->complete = true;
a030b347 1132 }
29b6c3b3
EB
1133
1134 /* Sanity checks, part 2. */
1135 if (request->from + request->len > client->exp->size) {
1136 LOG("operation past EOF; From: %" PRIu64 ", Len: %" PRIu32
1137 ", Size: %" PRIu64, request->from, request->len,
1138 (uint64_t)client->exp->size);
b626b51a 1139 rc = request->type == NBD_CMD_WRITE ? -ENOSPC : -EINVAL;
29b6c3b3
EB
1140 goto out;
1141 }
1f4d6d18 1142 if (request->flags & ~(NBD_CMD_FLAG_FUA | NBD_CMD_FLAG_NO_HOLE)) {
b626b51a 1143 LOG("unsupported flags (got 0x%x)", request->flags);
5bee0f47
EB
1144 rc = -EINVAL;
1145 goto out;
ab7c548e 1146 }
1f4d6d18
EB
1147 if (request->type != NBD_CMD_WRITE_ZEROES &&
1148 (request->flags & NBD_CMD_FLAG_NO_HOLE)) {
1149 LOG("unexpected flags (got 0x%x)", request->flags);
1150 rc = -EINVAL;
1151 goto out;
1152 }
29b6c3b3 1153
a030b347
PB
1154 rc = 0;
1155
1156out:
262db388 1157 client->recv_coroutine = NULL;
ff82911c 1158 nbd_client_receive_next_request(client);
958c717d 1159
a030b347
PB
1160 return rc;
1161}
1162
ff82911c
PB
1163/* Owns a reference to the NBDClient passed as opaque. */
1164static coroutine_fn void nbd_trip(void *opaque)
75818250 1165{
262db388 1166 NBDClient *client = opaque;
1743b515 1167 NBDExport *exp = client->exp;
315f78ab 1168 NBDRequestData *req;
ff82911c 1169 NBDRequest request = { 0 }; /* GCC thinks it can be used uninitialized */
ed2dd912 1170 NBDReply reply;
94e7340b 1171 ssize_t ret;
a0c30369 1172 int flags;
b2e3d87f
NT
1173
1174 TRACE("Reading request.");
ff2b68aa 1175 if (client->closing) {
ff82911c 1176 nbd_client_put(client);
ff2b68aa
PB
1177 return;
1178 }
b2e3d87f 1179
ff2b68aa 1180 req = nbd_request_get(client);
262db388 1181 ret = nbd_co_receive_request(req, &request);
7fe7b68b
PB
1182 if (ret == -EAGAIN) {
1183 goto done;
1184 }
a030b347 1185 if (ret == -EIO) {
d9a73806 1186 goto out;
a030b347 1187 }
b2e3d87f 1188
fae69416
PB
1189 reply.handle = request.handle;
1190 reply.error = 0;
1191
a030b347
PB
1192 if (ret < 0) {
1193 reply.error = -ret;
1194 goto error_reply;
b2e3d87f 1195 }
b2e3d87f 1196
d6268348
WC
1197 if (client->closing) {
1198 /*
1199 * The client may be closed when we are blocked in
1200 * nbd_co_receive_request()
1201 */
1202 goto done;
1203 }
1204
b626b51a 1205 switch (request.type) {
b2e3d87f
NT
1206 case NBD_CMD_READ:
1207 TRACE("Request type is READ");
1208
b626b51a
EB
1209 /* XXX: NBD Protocol only documents use of FUA with WRITE */
1210 if (request.flags & NBD_CMD_FLAG_FUA) {
aadf99a7 1211 ret = blk_co_flush(exp->blk);
e25ceb76
PB
1212 if (ret < 0) {
1213 LOG("flush failed");
1214 reply.error = -ret;
1215 goto error_reply;
1216 }
1217 }
1218
df7b97ff
EB
1219 ret = blk_pread(exp->blk, request.from + exp->dev_offset,
1220 req->data, request.len);
adcf6302 1221 if (ret < 0) {
b2e3d87f 1222 LOG("reading from file failed");
adcf6302 1223 reply.error = -ret;
fae69416 1224 goto error_reply;
b2e3d87f 1225 }
b2e3d87f 1226
2cb34749 1227 TRACE("Read %" PRIu32" byte(s)", request.len);
262db388 1228 if (nbd_co_send_reply(req, &reply, request.len) < 0)
d9a73806 1229 goto out;
b2e3d87f
NT
1230 break;
1231 case NBD_CMD_WRITE:
1232 TRACE("Request type is WRITE");
1233
af49bbbe 1234 if (exp->nbdflags & NBD_FLAG_READ_ONLY) {
b2e3d87f 1235 TRACE("Server is read-only, return error");
fae69416
PB
1236 reply.error = EROFS;
1237 goto error_reply;
1238 }
1239
1240 TRACE("Writing to device");
1241
a0c30369 1242 flags = 0;
b626b51a 1243 if (request.flags & NBD_CMD_FLAG_FUA) {
a0c30369
EB
1244 flags |= BDRV_REQ_FUA;
1245 }
df7b97ff 1246 ret = blk_pwrite(exp->blk, request.from + exp->dev_offset,
a0c30369 1247 req->data, request.len, flags);
fae69416
PB
1248 if (ret < 0) {
1249 LOG("writing to file failed");
1250 reply.error = -ret;
1251 goto error_reply;
1252 }
b2e3d87f 1253
1f4d6d18
EB
1254 if (nbd_co_send_reply(req, &reply, 0) < 0) {
1255 goto out;
1256 }
1257 break;
1258
1259 case NBD_CMD_WRITE_ZEROES:
1260 TRACE("Request type is WRITE_ZEROES");
1261
1262 if (exp->nbdflags & NBD_FLAG_READ_ONLY) {
1263 TRACE("Server is read-only, return error");
1264 reply.error = EROFS;
1265 goto error_reply;
1266 }
1267
1268 TRACE("Writing to device");
1269
1270 flags = 0;
1271 if (request.flags & NBD_CMD_FLAG_FUA) {
1272 flags |= BDRV_REQ_FUA;
1273 }
1274 if (!(request.flags & NBD_CMD_FLAG_NO_HOLE)) {
1275 flags |= BDRV_REQ_MAY_UNMAP;
1276 }
1277 ret = blk_pwrite_zeroes(exp->blk, request.from + exp->dev_offset,
1278 request.len, flags);
1279 if (ret < 0) {
1280 LOG("writing to file failed");
1281 reply.error = -ret;
1282 goto error_reply;
1283 }
1284
fc19f8a0 1285 if (nbd_co_send_reply(req, &reply, 0) < 0) {
d9a73806 1286 goto out;
fc19f8a0 1287 }
b2e3d87f 1288 break;
29b6c3b3 1289
b2e3d87f 1290 case NBD_CMD_DISC:
29b6c3b3
EB
1291 /* unreachable, thanks to special case in nbd_co_receive_request() */
1292 abort();
1293
1486d04a
PB
1294 case NBD_CMD_FLUSH:
1295 TRACE("Request type is FLUSH");
1296
aadf99a7 1297 ret = blk_co_flush(exp->blk);
1486d04a
PB
1298 if (ret < 0) {
1299 LOG("flush failed");
1300 reply.error = -ret;
1301 }
fc19f8a0 1302 if (nbd_co_send_reply(req, &reply, 0) < 0) {
d9a73806 1303 goto out;
fc19f8a0 1304 }
7a706633
PB
1305 break;
1306 case NBD_CMD_TRIM:
1307 TRACE("Request type is TRIM");
1c6c4bb7
EB
1308 ret = blk_co_pdiscard(exp->blk, request.from + exp->dev_offset,
1309 request.len);
1310 if (ret < 0) {
1311 LOG("discard failed");
1312 reply.error = -ret;
7a706633 1313 }
fc19f8a0 1314 if (nbd_co_send_reply(req, &reply, 0) < 0) {
d9a73806 1315 goto out;
fc19f8a0 1316 }
1486d04a 1317 break;
b2e3d87f 1318 default:
2cb34749 1319 LOG("invalid request type (%" PRIu32 ") received", request.type);
8b2f0abf 1320 reply.error = EINVAL;
fae69416 1321 error_reply:
29b6c3b3
EB
1322 /* We must disconnect after NBD_CMD_WRITE if we did not
1323 * read the payload.
1324 */
1325 if (nbd_co_send_reply(req, &reply, 0) < 0 || !req->complete) {
d9a73806 1326 goto out;
fc19f8a0 1327 }
fae69416 1328 break;
b2e3d87f
NT
1329 }
1330
1331 TRACE("Request/Reply complete");
1332
7fe7b68b 1333done:
262db388 1334 nbd_request_put(req);
ff82911c 1335 nbd_client_put(client);
262db388
PB
1336 return;
1337
d9a73806 1338out:
72deddc5 1339 nbd_request_put(req);
f53a829b 1340 client_close(client);
ff82911c 1341 nbd_client_put(client);
7a5ca864 1342}
af49bbbe 1343
ff82911c 1344static void nbd_client_receive_next_request(NBDClient *client)
958c717d 1345{
ff82911c
PB
1346 if (!client->recv_coroutine && client->nb_requests < MAX_NBD_REQUESTS) {
1347 nbd_client_get(client);
1348 client->recv_coroutine = qemu_coroutine_create(nbd_trip, client);
1349 aio_co_schedule(client->exp->ctx, client->recv_coroutine);
958c717d
HR
1350 }
1351}
1352
1a6245a5
FZ
1353static coroutine_fn void nbd_co_client_start(void *opaque)
1354{
1355 NBDClientNewData *data = opaque;
1356 NBDClient *client = data->client;
1357 NBDExport *exp = client->exp;
1358
1359 if (exp) {
1360 nbd_export_get(exp);
1361 }
1362 if (nbd_negotiate(data)) {
d3780c2d 1363 client_close(client);
1a6245a5
FZ
1364 goto out;
1365 }
1366 qemu_co_mutex_init(&client->send_lock);
1a6245a5
FZ
1367
1368 if (exp) {
1369 QTAILQ_INSERT_TAIL(&exp->clients, client, next);
1370 }
ff82911c
PB
1371
1372 nbd_client_receive_next_request(client);
1373
1a6245a5
FZ
1374out:
1375 g_free(data);
1376}
1377
1c778ef7
DB
1378void nbd_client_new(NBDExport *exp,
1379 QIOChannelSocket *sioc,
f95910fe
DB
1380 QCryptoTLSCreds *tlscreds,
1381 const char *tlsaclname,
1c778ef7 1382 void (*close_fn)(NBDClient *))
af49bbbe 1383{
1743b515 1384 NBDClient *client;
1a6245a5
FZ
1385 NBDClientNewData *data = g_new(NBDClientNewData, 1);
1386
1743b515
PB
1387 client = g_malloc0(sizeof(NBDClient));
1388 client->refcount = 1;
1389 client->exp = exp;
f95910fe
DB
1390 client->tlscreds = tlscreds;
1391 if (tlscreds) {
1392 object_ref(OBJECT(client->tlscreds));
1393 }
1394 client->tlsaclname = g_strdup(tlsaclname);
1c778ef7
DB
1395 client->sioc = sioc;
1396 object_ref(OBJECT(client->sioc));
1397 client->ioc = QIO_CHANNEL(sioc);
1398 object_ref(OBJECT(client->ioc));
ee7d7aab 1399 client->close = close_fn;
2c8d9f06 1400
1a6245a5 1401 data->client = client;
0b8b8753
PB
1402 data->co = qemu_coroutine_create(nbd_co_client_start, data);
1403 qemu_coroutine_enter(data->co);
af49bbbe 1404}