]> git.proxmox.com Git - mirror_qemu.git/blame - nbd/client.c
nbd/server: Include human-readable message in structured errors
[mirror_qemu.git] / nbd / client.c
CommitLineData
798bfe00 1/*
3736cc5b 2 * Copyright (C) 2016-2017 Red Hat, Inc.
798bfe00
FZ
3 * Copyright (C) 2005 Anthony Liguori <anthony@codemonkey.ws>
4 *
5 * Network Block Device Client 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
d38ea87a 20#include "qemu/osdep.h"
da34e65c 21#include "qapi/error.h"
9588463e 22#include "trace.h"
798bfe00
FZ
23#include "nbd-internal.h"
24
798bfe00
FZ
25/* Definitions for opaque data types */
26
27static QTAILQ_HEAD(, NBDExport) exports = QTAILQ_HEAD_INITIALIZER(exports);
28
29/* That's all folks */
30
31/* Basic flow for negotiation
32
33 Server Client
34 Negotiate
35
36 or
37
38 Server Client
39 Negotiate #1
40 Option
41 Negotiate #2
42
43 ----
44
45 followed by
46
47 Server Client
48 Request
49 Response
50 Request
51 Response
52 ...
53 ...
54 Request (type == 2)
55
56*/
57
c8a3a1b6
EB
58/* Send an option request.
59 *
60 * The request is for option @opt, with @data containing @len bytes of
61 * additional payload for the request (@len may be -1 to treat @data as
62 * a C string; and @data may be NULL if @len is 0).
63 * Return 0 if successful, -1 with errp set if it is impossible to
64 * continue. */
65static int nbd_send_option_request(QIOChannel *ioc, uint32_t opt,
66 uint32_t len, const char *data,
67 Error **errp)
68{
69 nbd_option req;
70 QEMU_BUILD_BUG_ON(sizeof(req) != 16);
71
72 if (len == -1) {
73 req.length = len = strlen(data);
74 }
3736cc5b 75 trace_nbd_send_option_request(opt, nbd_opt_lookup(opt), len);
c8a3a1b6
EB
76
77 stq_be_p(&req.magic, NBD_OPTS_MAGIC);
78 stl_be_p(&req.option, opt);
79 stl_be_p(&req.length, len);
80
d1fdf257 81 if (nbd_write(ioc, &req, sizeof(req), errp) < 0) {
e44ed99d 82 error_prepend(errp, "Failed to send option request header");
c8a3a1b6
EB
83 return -1;
84 }
85
d1fdf257 86 if (len && nbd_write(ioc, (char *) data, len, errp) < 0) {
e44ed99d 87 error_prepend(errp, "Failed to send option request data");
c8a3a1b6
EB
88 return -1;
89 }
90
91 return 0;
92}
93
2cdbf413
EB
94/* Send NBD_OPT_ABORT as a courtesy to let the server know that we are
95 * not going to attempt further negotiation. */
96static void nbd_send_opt_abort(QIOChannel *ioc)
97{
98 /* Technically, a compliant server is supposed to reply to us; but
99 * older servers disconnected instead. At any rate, we're allowed
100 * to disconnect without waiting for the server reply, so we don't
101 * even care if the request makes it to the server, let alone
102 * waiting around for whether the server replies. */
103 nbd_send_option_request(ioc, NBD_OPT_ABORT, 0, NULL, NULL);
104}
105
106
c8a3a1b6
EB
107/* Receive the header of an option reply, which should match the given
108 * opt. Read through the length field, but NOT the length bytes of
109 * payload. Return 0 if successful, -1 with errp set if it is
110 * impossible to continue. */
111static int nbd_receive_option_reply(QIOChannel *ioc, uint32_t opt,
112 nbd_opt_reply *reply, Error **errp)
113{
114 QEMU_BUILD_BUG_ON(sizeof(*reply) != 20);
d1fdf257 115 if (nbd_read(ioc, reply, sizeof(*reply), errp) < 0) {
e44ed99d 116 error_prepend(errp, "failed to read option reply");
2cdbf413 117 nbd_send_opt_abort(ioc);
c8a3a1b6
EB
118 return -1;
119 }
120 be64_to_cpus(&reply->magic);
121 be32_to_cpus(&reply->option);
122 be32_to_cpus(&reply->type);
123 be32_to_cpus(&reply->length);
124
3736cc5b
EB
125 trace_nbd_receive_option_reply(reply->option, nbd_opt_lookup(reply->option),
126 reply->type, nbd_rep_lookup(reply->type),
127 reply->length);
9344e5f5 128
c8a3a1b6
EB
129 if (reply->magic != NBD_REP_MAGIC) {
130 error_setg(errp, "Unexpected option reply magic");
2cdbf413 131 nbd_send_opt_abort(ioc);
c8a3a1b6
EB
132 return -1;
133 }
134 if (reply->option != opt) {
135 error_setg(errp, "Unexpected option type %x expected %x",
136 reply->option, opt);
2cdbf413 137 nbd_send_opt_abort(ioc);
c8a3a1b6
EB
138 return -1;
139 }
140 return 0;
141}
142
143/* If reply represents success, return 1 without further action.
144 * If reply represents an error, consume the optional payload of
145 * the packet on ioc. Then return 0 for unsupported (so the client
146 * can fall back to other approaches), or -1 with errp set for other
147 * errors.
6ff58164 148 */
c8a3a1b6 149static int nbd_handle_reply_err(QIOChannel *ioc, nbd_opt_reply *reply,
6ff58164 150 Error **errp)
9344e5f5 151{
6ff58164
AB
152 char *msg = NULL;
153 int result = -1;
154
c8a3a1b6 155 if (!(reply->type & (1 << 31))) {
6ff58164
AB
156 return 1;
157 }
158
c8a3a1b6
EB
159 if (reply->length) {
160 if (reply->length > NBD_MAX_BUFFER_SIZE) {
3736cc5b
EB
161 error_setg(errp, "server error 0x%" PRIx32
162 " (%s) message is too long",
163 reply->type, nbd_rep_lookup(reply->type));
6ff58164
AB
164 goto cleanup;
165 }
c8a3a1b6 166 msg = g_malloc(reply->length + 1);
d1fdf257 167 if (nbd_read(ioc, msg, reply->length, errp) < 0) {
3736cc5b
EB
168 error_prepend(errp, "failed to read option error 0x%" PRIx32
169 " (%s) message",
170 reply->type, nbd_rep_lookup(reply->type));
6ff58164
AB
171 goto cleanup;
172 }
c8a3a1b6 173 msg[reply->length] = '\0';
9344e5f5
DB
174 }
175
c8a3a1b6 176 switch (reply->type) {
9344e5f5 177 case NBD_REP_ERR_UNSUP:
3736cc5b 178 trace_nbd_reply_err_unsup(reply->option, nbd_opt_lookup(reply->option));
6ff58164
AB
179 result = 0;
180 goto cleanup;
9344e5f5 181
f95910fe 182 case NBD_REP_ERR_POLICY:
3736cc5b
EB
183 error_setg(errp, "Denied by server for option %" PRIx32 " (%s)",
184 reply->option, nbd_opt_lookup(reply->option));
f95910fe
DB
185 break;
186
9344e5f5 187 case NBD_REP_ERR_INVALID:
3736cc5b
EB
188 error_setg(errp, "Invalid data length for option %" PRIx32 " (%s)",
189 reply->option, nbd_opt_lookup(reply->option));
9344e5f5
DB
190 break;
191
b6f5d3b5 192 case NBD_REP_ERR_PLATFORM:
3736cc5b
EB
193 error_setg(errp, "Server lacks support for option %" PRIx32 " (%s)",
194 reply->option, nbd_opt_lookup(reply->option));
b6f5d3b5
EB
195 break;
196
f95910fe 197 case NBD_REP_ERR_TLS_REQD:
3736cc5b
EB
198 error_setg(errp, "TLS negotiation required before option %" PRIx32
199 " (%s)", reply->option, nbd_opt_lookup(reply->option));
200 break;
201
202 case NBD_REP_ERR_UNKNOWN:
9a76bd78 203 error_setg(errp, "Requested export not available");
f95910fe
DB
204 break;
205
b6f5d3b5 206 case NBD_REP_ERR_SHUTDOWN:
3736cc5b
EB
207 error_setg(errp, "Server shutting down before option %" PRIx32 " (%s)",
208 reply->option, nbd_opt_lookup(reply->option));
209 break;
210
211 case NBD_REP_ERR_BLOCK_SIZE_REQD:
212 error_setg(errp, "Server requires INFO_BLOCK_SIZE for option %" PRIx32
213 " (%s)", reply->option, nbd_opt_lookup(reply->option));
b6f5d3b5
EB
214 break;
215
9344e5f5 216 default:
3736cc5b
EB
217 error_setg(errp, "Unknown error code when asking for option %" PRIx32
218 " (%s)", reply->option, nbd_opt_lookup(reply->option));
9344e5f5
DB
219 break;
220 }
221
6ff58164 222 if (msg) {
9a76bd78 223 error_append_hint(errp, "server reported: %s\n", msg);
6ff58164
AB
224 }
225
226 cleanup:
227 g_free(msg);
2cdbf413
EB
228 if (result < 0) {
229 nbd_send_opt_abort(ioc);
230 }
6ff58164 231 return result;
9344e5f5
DB
232}
233
75368aab
EB
234/* Process another portion of the NBD_OPT_LIST reply. Set *@match if
235 * the current reply matches @want or if the server does not support
236 * NBD_OPT_LIST, otherwise leave @match alone. Return 0 if iteration
237 * is complete, positive if more replies are expected, or negative
238 * with @errp set if an unrecoverable error occurred. */
239static int nbd_receive_list(QIOChannel *ioc, const char *want, bool *match,
240 Error **errp)
9344e5f5 241{
c8a3a1b6 242 nbd_opt_reply reply;
9344e5f5
DB
243 uint32_t len;
244 uint32_t namelen;
75368aab 245 char name[NBD_MAX_NAME_SIZE + 1];
6ff58164 246 int error;
9344e5f5 247
c8a3a1b6 248 if (nbd_receive_option_reply(ioc, NBD_OPT_LIST, &reply, errp) < 0) {
9344e5f5
DB
249 return -1;
250 }
c8a3a1b6 251 error = nbd_handle_reply_err(ioc, &reply, errp);
6ff58164 252 if (error <= 0) {
75368aab
EB
253 /* The server did not support NBD_OPT_LIST, so set *match on
254 * the assumption that any name will be accepted. */
255 *match = true;
6ff58164 256 return error;
9344e5f5 257 }
c8a3a1b6 258 len = reply.length;
9344e5f5 259
c8a3a1b6 260 if (reply.type == NBD_REP_ACK) {
9344e5f5
DB
261 if (len != 0) {
262 error_setg(errp, "length too long for option end");
2cdbf413 263 nbd_send_opt_abort(ioc);
9344e5f5
DB
264 return -1;
265 }
75368aab
EB
266 return 0;
267 } else if (reply.type != NBD_REP_SERVER) {
268 error_setg(errp, "Unexpected reply type %" PRIx32 " expected %x",
269 reply.type, NBD_REP_SERVER);
270 nbd_send_opt_abort(ioc);
271 return -1;
272 }
9344e5f5 273
75368aab
EB
274 if (len < sizeof(namelen) || len > NBD_MAX_BUFFER_SIZE) {
275 error_setg(errp, "incorrect option length %" PRIu32, len);
276 nbd_send_opt_abort(ioc);
277 return -1;
278 }
d1fdf257 279 if (nbd_read(ioc, &namelen, sizeof(namelen), errp) < 0) {
e44ed99d 280 error_prepend(errp, "failed to read option name length");
75368aab
EB
281 nbd_send_opt_abort(ioc);
282 return -1;
283 }
284 namelen = be32_to_cpu(namelen);
285 len -= sizeof(namelen);
286 if (len < namelen) {
287 error_setg(errp, "incorrect option name length");
288 nbd_send_opt_abort(ioc);
289 return -1;
290 }
291 if (namelen != strlen(want)) {
d1fdf257 292 if (nbd_drop(ioc, len, errp) < 0) {
e44ed99d 293 error_prepend(errp, "failed to skip export name with wrong length");
7d3123e1
EB
294 nbd_send_opt_abort(ioc);
295 return -1;
200650d4 296 }
75368aab
EB
297 return 1;
298 }
299
300 assert(namelen < sizeof(name));
d1fdf257 301 if (nbd_read(ioc, name, namelen, errp) < 0) {
e44ed99d 302 error_prepend(errp, "failed to read export name");
75368aab
EB
303 nbd_send_opt_abort(ioc);
304 return -1;
305 }
306 name[namelen] = '\0';
307 len -= namelen;
d1fdf257 308 if (nbd_drop(ioc, len, errp) < 0) {
e44ed99d 309 error_prepend(errp, "failed to read export description");
2cdbf413 310 nbd_send_opt_abort(ioc);
9344e5f5
DB
311 return -1;
312 }
75368aab
EB
313 if (!strcmp(name, want)) {
314 *match = true;
315 }
9344e5f5
DB
316 return 1;
317}
318
319
8ecaeae8
EB
320/* Returns -1 if NBD_OPT_GO proves the export @wantname cannot be
321 * used, 0 if NBD_OPT_GO is unsupported (fall back to NBD_OPT_LIST and
322 * NBD_OPT_EXPORT_NAME in that case), and > 0 if the export is good to
323 * go (with @info populated). */
324static int nbd_opt_go(QIOChannel *ioc, const char *wantname,
325 NBDExportInfo *info, Error **errp)
326{
327 nbd_opt_reply reply;
328 uint32_t len = strlen(wantname);
329 uint16_t type;
330 int error;
331 char *buf;
332
333 /* The protocol requires that the server send NBD_INFO_EXPORT with
334 * a non-zero flags (at least NBD_FLAG_HAS_FLAGS must be set); so
335 * flags still 0 is a witness of a broken server. */
336 info->flags = 0;
337
338 trace_nbd_opt_go_start(wantname);
081dd1fe 339 buf = g_malloc(4 + len + 2 + 2 * info->request_sizes + 1);
8ecaeae8
EB
340 stl_be_p(buf, len);
341 memcpy(buf + 4, wantname, len);
081dd1fe
EB
342 /* At most one request, everything else up to server */
343 stw_be_p(buf + 4 + len, info->request_sizes);
344 if (info->request_sizes) {
345 stw_be_p(buf + 4 + len + 2, NBD_INFO_BLOCK_SIZE);
346 }
158b9aa5
PMD
347 error = nbd_send_option_request(ioc, NBD_OPT_GO,
348 4 + len + 2 + 2 * info->request_sizes,
349 buf, errp);
350 g_free(buf);
351 if (error < 0) {
8ecaeae8
EB
352 return -1;
353 }
354
355 while (1) {
356 if (nbd_receive_option_reply(ioc, NBD_OPT_GO, &reply, errp) < 0) {
357 return -1;
358 }
359 error = nbd_handle_reply_err(ioc, &reply, errp);
360 if (error <= 0) {
361 return error;
362 }
363 len = reply.length;
364
365 if (reply.type == NBD_REP_ACK) {
366 /* Server is done sending info and moved into transmission
367 phase, but make sure it sent flags */
368 if (len) {
369 error_setg(errp, "server sent invalid NBD_REP_ACK");
8ecaeae8
EB
370 return -1;
371 }
372 if (!info->flags) {
373 error_setg(errp, "broken server omitted NBD_INFO_EXPORT");
8ecaeae8
EB
374 return -1;
375 }
376 trace_nbd_opt_go_success();
377 return 1;
378 }
379 if (reply.type != NBD_REP_INFO) {
081dd1fe
EB
380 error_setg(errp, "unexpected reply type %" PRIx32
381 " (%s), expected %x",
382 reply.type, nbd_rep_lookup(reply.type), NBD_REP_INFO);
8ecaeae8
EB
383 nbd_send_opt_abort(ioc);
384 return -1;
385 }
386 if (len < sizeof(type)) {
387 error_setg(errp, "NBD_REP_INFO length %" PRIu32 " is too short",
388 len);
389 nbd_send_opt_abort(ioc);
390 return -1;
391 }
392 if (nbd_read(ioc, &type, sizeof(type), errp) < 0) {
393 error_prepend(errp, "failed to read info type");
394 nbd_send_opt_abort(ioc);
395 return -1;
396 }
397 len -= sizeof(type);
398 be16_to_cpus(&type);
399 switch (type) {
400 case NBD_INFO_EXPORT:
401 if (len != sizeof(info->size) + sizeof(info->flags)) {
402 error_setg(errp, "remaining export info len %" PRIu32
403 " is unexpected size", len);
404 nbd_send_opt_abort(ioc);
405 return -1;
406 }
407 if (nbd_read(ioc, &info->size, sizeof(info->size), errp) < 0) {
408 error_prepend(errp, "failed to read info size");
409 nbd_send_opt_abort(ioc);
410 return -1;
411 }
412 be64_to_cpus(&info->size);
413 if (nbd_read(ioc, &info->flags, sizeof(info->flags), errp) < 0) {
414 error_prepend(errp, "failed to read info flags");
415 nbd_send_opt_abort(ioc);
416 return -1;
417 }
418 be16_to_cpus(&info->flags);
419 trace_nbd_receive_negotiate_size_flags(info->size, info->flags);
420 break;
421
081dd1fe
EB
422 case NBD_INFO_BLOCK_SIZE:
423 if (len != sizeof(info->min_block) * 3) {
424 error_setg(errp, "remaining export info len %" PRIu32
425 " is unexpected size", len);
426 nbd_send_opt_abort(ioc);
427 return -1;
428 }
429 if (nbd_read(ioc, &info->min_block, sizeof(info->min_block),
430 errp) < 0) {
431 error_prepend(errp, "failed to read info minimum block size");
432 nbd_send_opt_abort(ioc);
433 return -1;
434 }
435 be32_to_cpus(&info->min_block);
436 if (!is_power_of_2(info->min_block)) {
437 error_setg(errp, "server minimum block size %" PRId32
438 "is not a power of two", info->min_block);
439 nbd_send_opt_abort(ioc);
440 return -1;
441 }
442 if (nbd_read(ioc, &info->opt_block, sizeof(info->opt_block),
443 errp) < 0) {
444 error_prepend(errp, "failed to read info preferred block size");
445 nbd_send_opt_abort(ioc);
446 return -1;
447 }
448 be32_to_cpus(&info->opt_block);
449 if (!is_power_of_2(info->opt_block) ||
450 info->opt_block < info->min_block) {
451 error_setg(errp, "server preferred block size %" PRId32
452 "is not valid", info->opt_block);
453 nbd_send_opt_abort(ioc);
454 return -1;
455 }
456 if (nbd_read(ioc, &info->max_block, sizeof(info->max_block),
457 errp) < 0) {
458 error_prepend(errp, "failed to read info maximum block size");
459 nbd_send_opt_abort(ioc);
460 return -1;
461 }
462 be32_to_cpus(&info->max_block);
463 trace_nbd_opt_go_info_block_size(info->min_block, info->opt_block,
464 info->max_block);
465 break;
466
8ecaeae8
EB
467 default:
468 trace_nbd_opt_go_info_unknown(type, nbd_info_lookup(type));
469 if (nbd_drop(ioc, len, errp) < 0) {
470 error_prepend(errp, "Failed to read info payload");
471 nbd_send_opt_abort(ioc);
472 return -1;
473 }
474 break;
475 }
476 }
477}
478
75368aab 479/* Return -1 on failure, 0 if wantname is an available export. */
9344e5f5
DB
480static int nbd_receive_query_exports(QIOChannel *ioc,
481 const char *wantname,
482 Error **errp)
483{
9344e5f5
DB
484 bool foundExport = false;
485
9588463e 486 trace_nbd_receive_query_exports_start(wantname);
c8a3a1b6 487 if (nbd_send_option_request(ioc, NBD_OPT_LIST, 0, NULL, errp) < 0) {
9344e5f5
DB
488 return -1;
489 }
490
9344e5f5 491 while (1) {
75368aab 492 int ret = nbd_receive_list(ioc, wantname, &foundExport, errp);
9344e5f5
DB
493
494 if (ret < 0) {
75368aab 495 /* Server gave unexpected reply */
9344e5f5 496 return -1;
75368aab
EB
497 } else if (ret == 0) {
498 /* Done iterating. */
499 if (!foundExport) {
500 error_setg(errp, "No export with name '%s' available",
501 wantname);
502 nbd_send_opt_abort(ioc);
503 return -1;
504 }
9588463e 505 trace_nbd_receive_query_exports_success(wantname);
75368aab 506 return 0;
9344e5f5 507 }
9344e5f5 508 }
9344e5f5
DB
509}
510
f95910fe
DB
511static QIOChannel *nbd_receive_starttls(QIOChannel *ioc,
512 QCryptoTLSCreds *tlscreds,
513 const char *hostname, Error **errp)
514{
c8a3a1b6 515 nbd_opt_reply reply;
f95910fe
DB
516 QIOChannelTLS *tioc;
517 struct NBDTLSHandshakeData data = { 0 };
518
9588463e 519 trace_nbd_receive_starttls_request();
c8a3a1b6 520 if (nbd_send_option_request(ioc, NBD_OPT_STARTTLS, 0, NULL, errp) < 0) {
f95910fe
DB
521 return NULL;
522 }
523
9588463e 524 trace_nbd_receive_starttls_reply();
c8a3a1b6 525 if (nbd_receive_option_reply(ioc, NBD_OPT_STARTTLS, &reply, errp) < 0) {
f95910fe
DB
526 return NULL;
527 }
c8a3a1b6
EB
528
529 if (reply.type != NBD_REP_ACK) {
2cb34749 530 error_setg(errp, "Server rejected request to start TLS %" PRIx32,
c8a3a1b6 531 reply.type);
2cdbf413 532 nbd_send_opt_abort(ioc);
f95910fe
DB
533 return NULL;
534 }
535
c8a3a1b6 536 if (reply.length != 0) {
2cb34749 537 error_setg(errp, "Start TLS response was not zero %" PRIu32,
c8a3a1b6 538 reply.length);
2cdbf413 539 nbd_send_opt_abort(ioc);
f95910fe
DB
540 return NULL;
541 }
542
9588463e 543 trace_nbd_receive_starttls_new_client();
f95910fe
DB
544 tioc = qio_channel_tls_new_client(ioc, tlscreds, hostname, errp);
545 if (!tioc) {
546 return NULL;
547 }
0d73f725 548 qio_channel_set_name(QIO_CHANNEL(tioc), "nbd-client-tls");
f95910fe 549 data.loop = g_main_loop_new(g_main_context_default(), FALSE);
9588463e 550 trace_nbd_receive_starttls_tls_handshake();
f95910fe
DB
551 qio_channel_tls_handshake(tioc,
552 nbd_tls_handshake,
553 &data,
554 NULL);
555
556 if (!data.complete) {
557 g_main_loop_run(data.loop);
558 }
559 g_main_loop_unref(data.loop);
560 if (data.error) {
561 error_propagate(errp, data.error);
562 object_unref(OBJECT(tioc));
563 return NULL;
564 }
565
566 return QIO_CHANNEL(tioc);
567}
568
569
004a89fc 570int nbd_receive_negotiate(QIOChannel *ioc, const char *name,
f95910fe 571 QCryptoTLSCreds *tlscreds, const char *hostname,
004a89fc
EB
572 QIOChannel **outioc, NBDExportInfo *info,
573 Error **errp)
798bfe00
FZ
574{
575 char buf[256];
004a89fc 576 uint64_t magic;
798bfe00 577 int rc;
c203c59a 578 bool zeroes = true;
798bfe00 579
9588463e 580 trace_nbd_receive_negotiate(tlscreds, hostname ? hostname : "<null>");
798bfe00
FZ
581
582 rc = -EINVAL;
583
f95910fe
DB
584 if (outioc) {
585 *outioc = NULL;
586 }
587 if (tlscreds && !outioc) {
588 error_setg(errp, "Output I/O channel required for TLS");
589 goto fail;
590 }
591
d1fdf257 592 if (nbd_read(ioc, buf, 8, errp) < 0) {
e44ed99d 593 error_prepend(errp, "Failed to read data");
798bfe00
FZ
594 goto fail;
595 }
596
597 buf[8] = '\0';
598 if (strlen(buf) == 0) {
599 error_setg(errp, "Server connection closed unexpectedly");
600 goto fail;
601 }
602
458d7a69 603 magic = ldq_be_p(buf);
9588463e 604 trace_nbd_receive_negotiate_magic(magic);
798bfe00
FZ
605
606 if (memcmp(buf, "NBDMAGIC", 8) != 0) {
607 error_setg(errp, "Invalid magic received");
608 goto fail;
609 }
610
d1fdf257 611 if (nbd_read(ioc, &magic, sizeof(magic), errp) < 0) {
e44ed99d 612 error_prepend(errp, "Failed to read magic");
798bfe00
FZ
613 goto fail;
614 }
615 magic = be64_to_cpu(magic);
9588463e 616 trace_nbd_receive_negotiate_magic(magic);
798bfe00 617
f72d705f 618 if (magic == NBD_OPTS_MAGIC) {
e2a9d9a3 619 uint32_t clientflags = 0;
e2a9d9a3 620 uint16_t globalflags;
9344e5f5 621 bool fixedNewStyle = false;
798bfe00 622
d1fdf257 623 if (nbd_read(ioc, &globalflags, sizeof(globalflags), errp) < 0) {
e44ed99d 624 error_prepend(errp, "Failed to read server flags");
798bfe00
FZ
625 goto fail;
626 }
9344e5f5 627 globalflags = be16_to_cpu(globalflags);
9588463e 628 trace_nbd_receive_negotiate_server_flags(globalflags);
e2a9d9a3 629 if (globalflags & NBD_FLAG_FIXED_NEWSTYLE) {
9344e5f5 630 fixedNewStyle = true;
e2a9d9a3
DB
631 clientflags |= NBD_FLAG_C_FIXED_NEWSTYLE;
632 }
c203c59a
EB
633 if (globalflags & NBD_FLAG_NO_ZEROES) {
634 zeroes = false;
c203c59a
EB
635 clientflags |= NBD_FLAG_C_NO_ZEROES;
636 }
e2a9d9a3 637 /* client requested flags */
9344e5f5 638 clientflags = cpu_to_be32(clientflags);
d1fdf257 639 if (nbd_write(ioc, &clientflags, sizeof(clientflags), errp) < 0) {
e44ed99d 640 error_prepend(errp, "Failed to send clientflags field");
798bfe00
FZ
641 goto fail;
642 }
f95910fe
DB
643 if (tlscreds) {
644 if (fixedNewStyle) {
645 *outioc = nbd_receive_starttls(ioc, tlscreds, hostname, errp);
646 if (!*outioc) {
647 goto fail;
648 }
649 ioc = *outioc;
650 } else {
651 error_setg(errp, "Server does not support STARTTLS");
652 goto fail;
653 }
654 }
f72d705f 655 if (!name) {
9588463e 656 trace_nbd_receive_negotiate_default_name();
69b49502 657 name = "";
f72d705f 658 }
9344e5f5 659 if (fixedNewStyle) {
8ecaeae8
EB
660 int result;
661
662 /* Try NBD_OPT_GO first - if it works, we are done (it
663 * also gives us a good message if the server requires
664 * TLS). If it is not available, fall back to
665 * NBD_OPT_LIST for nicer error messages about a missing
666 * export, then use NBD_OPT_EXPORT_NAME. */
667 result = nbd_opt_go(ioc, name, info, errp);
668 if (result < 0) {
669 goto fail;
670 }
671 if (result > 0) {
672 return 0;
673 }
9344e5f5
DB
674 /* Check our desired export is present in the
675 * server export list. Since NBD_OPT_EXPORT_NAME
676 * cannot return an error message, running this
8ecaeae8
EB
677 * query gives us better error reporting if the
678 * export name is not available.
9344e5f5
DB
679 */
680 if (nbd_receive_query_exports(ioc, name, errp) < 0) {
681 goto fail;
682 }
683 }
c8a3a1b6
EB
684 /* write the export name request */
685 if (nbd_send_option_request(ioc, NBD_OPT_EXPORT_NAME, -1, name,
686 errp) < 0) {
798bfe00
FZ
687 goto fail;
688 }
f72d705f 689
c8a3a1b6 690 /* Read the response */
004a89fc 691 if (nbd_read(ioc, &info->size, sizeof(info->size), errp) < 0) {
e44ed99d 692 error_prepend(errp, "Failed to read export length");
798bfe00
FZ
693 goto fail;
694 }
004a89fc 695 be64_to_cpus(&info->size);
798bfe00 696
004a89fc 697 if (nbd_read(ioc, &info->flags, sizeof(info->flags), errp) < 0) {
e44ed99d 698 error_prepend(errp, "Failed to read export flags");
f72d705f
DB
699 goto fail;
700 }
004a89fc 701 be16_to_cpus(&info->flags);
f72d705f 702 } else if (magic == NBD_CLIENT_MAGIC) {
7423f417
EB
703 uint32_t oldflags;
704
f72d705f
DB
705 if (name) {
706 error_setg(errp, "Server does not support export names");
707 goto fail;
708 }
f95910fe
DB
709 if (tlscreds) {
710 error_setg(errp, "Server does not support STARTTLS");
711 goto fail;
712 }
f72d705f 713
004a89fc 714 if (nbd_read(ioc, &info->size, sizeof(info->size), errp) < 0) {
e44ed99d 715 error_prepend(errp, "Failed to read export length");
f72d705f
DB
716 goto fail;
717 }
004a89fc 718 be64_to_cpus(&info->size);
798bfe00 719
d1fdf257 720 if (nbd_read(ioc, &oldflags, sizeof(oldflags), errp) < 0) {
e44ed99d 721 error_prepend(errp, "Failed to read export flags");
798bfe00
FZ
722 goto fail;
723 }
7423f417
EB
724 be32_to_cpus(&oldflags);
725 if (oldflags & ~0xffff) {
726 error_setg(errp, "Unexpected export flags %0x" PRIx32, oldflags);
727 goto fail;
728 }
004a89fc 729 info->flags = oldflags;
798bfe00 730 } else {
f72d705f
DB
731 error_setg(errp, "Bad magic received");
732 goto fail;
798bfe00 733 }
f72d705f 734
004a89fc 735 trace_nbd_receive_negotiate_size_flags(info->size, info->flags);
d1fdf257 736 if (zeroes && nbd_drop(ioc, 124, errp) < 0) {
e44ed99d 737 error_prepend(errp, "Failed to read reserved block");
798bfe00
FZ
738 goto fail;
739 }
740 rc = 0;
741
742fail:
743 return rc;
744}
745
746#ifdef __linux__
004a89fc 747int nbd_init(int fd, QIOChannelSocket *sioc, NBDExportInfo *info,
be41c100 748 Error **errp)
798bfe00 749{
081dd1fe
EB
750 unsigned long sector_size = MAX(BDRV_SECTOR_SIZE, info->min_block);
751 unsigned long sectors = info->size / sector_size;
752
753 /* FIXME: Once the kernel module is patched to honor block sizes,
754 * and to advertise that fact to user space, we should update the
755 * hand-off to the kernel to use any block sizes we learned. */
756 assert(!info->request_sizes);
757 if (info->size / sector_size != sectors) {
004a89fc
EB
758 error_setg(errp, "Export size %" PRIu64 " too large for 32-bit kernel",
759 info->size);
f57e2416
EB
760 return -E2BIG;
761 }
762
9588463e 763 trace_nbd_init_set_socket();
798bfe00 764
f57e2416 765 if (ioctl(fd, NBD_SET_SOCK, (unsigned long) sioc->fd) < 0) {
798bfe00 766 int serrno = errno;
be41c100 767 error_setg(errp, "Failed to set NBD socket");
798bfe00
FZ
768 return -serrno;
769 }
770
081dd1fe 771 trace_nbd_init_set_block_size(sector_size);
798bfe00 772
081dd1fe 773 if (ioctl(fd, NBD_SET_BLKSIZE, sector_size) < 0) {
798bfe00 774 int serrno = errno;
be41c100 775 error_setg(errp, "Failed setting NBD block size");
798bfe00
FZ
776 return -serrno;
777 }
778
9588463e 779 trace_nbd_init_set_size(sectors);
081dd1fe
EB
780 if (info->size % sector_size) {
781 trace_nbd_init_trailing_bytes(info->size % sector_size);
f57e2416 782 }
798bfe00 783
f57e2416 784 if (ioctl(fd, NBD_SET_SIZE_BLOCKS, sectors) < 0) {
798bfe00 785 int serrno = errno;
be41c100 786 error_setg(errp, "Failed setting size (in blocks)");
798bfe00
FZ
787 return -serrno;
788 }
789
004a89fc 790 if (ioctl(fd, NBD_SET_FLAGS, (unsigned long) info->flags) < 0) {
798bfe00 791 if (errno == ENOTTY) {
004a89fc 792 int read_only = (info->flags & NBD_FLAG_READ_ONLY) != 0;
9588463e 793 trace_nbd_init_set_readonly();
798bfe00
FZ
794
795 if (ioctl(fd, BLKROSET, (unsigned long) &read_only) < 0) {
796 int serrno = errno;
be41c100 797 error_setg(errp, "Failed setting read-only attribute");
798bfe00
FZ
798 return -serrno;
799 }
800 } else {
801 int serrno = errno;
be41c100 802 error_setg(errp, "Failed setting flags");
798bfe00
FZ
803 return -serrno;
804 }
805 }
806
9588463e 807 trace_nbd_init_finish();
798bfe00
FZ
808
809 return 0;
810}
811
812int nbd_client(int fd)
813{
814 int ret;
815 int serrno;
816
9588463e 817 trace_nbd_client_loop();
798bfe00
FZ
818
819 ret = ioctl(fd, NBD_DO_IT);
820 if (ret < 0 && errno == EPIPE) {
821 /* NBD_DO_IT normally returns EPIPE when someone has disconnected
822 * the socket via NBD_DISCONNECT. We do not want to return 1 in
823 * that case.
824 */
825 ret = 0;
826 }
827 serrno = errno;
828
9588463e 829 trace_nbd_client_loop_ret(ret, strerror(serrno));
798bfe00 830
9588463e 831 trace_nbd_client_clear_queue();
798bfe00
FZ
832 ioctl(fd, NBD_CLEAR_QUE);
833
9588463e 834 trace_nbd_client_clear_socket();
798bfe00
FZ
835 ioctl(fd, NBD_CLEAR_SOCK);
836
837 errno = serrno;
838 return ret;
839}
98494e3b
EB
840
841int nbd_disconnect(int fd)
842{
843 ioctl(fd, NBD_CLEAR_QUE);
844 ioctl(fd, NBD_DISCONNECT);
845 ioctl(fd, NBD_CLEAR_SOCK);
846 return 0;
847}
848
798bfe00 849#else
004a89fc 850int nbd_init(int fd, QIOChannelSocket *ioc, NBDExportInfo *info,
be41c100 851 Error **errp)
798bfe00 852{
be41c100 853 error_setg(errp, "nbd_init is only supported on Linux");
798bfe00
FZ
854 return -ENOTSUP;
855}
856
857int nbd_client(int fd)
858{
859 return -ENOTSUP;
860}
98494e3b
EB
861int nbd_disconnect(int fd)
862{
863 return -ENOTSUP;
864}
798bfe00
FZ
865#endif
866
490dc5ed 867int nbd_send_request(QIOChannel *ioc, NBDRequest *request)
798bfe00
FZ
868{
869 uint8_t buf[NBD_REQUEST_SIZE];
798bfe00 870
9588463e 871 trace_nbd_send_request(request->from, request->len, request->handle,
48000eb3
EB
872 request->flags, request->type,
873 nbd_cmd_lookup(request->type));
7548fe31 874
f6be6720 875 stl_be_p(buf, NBD_REQUEST_MAGIC);
b626b51a
EB
876 stw_be_p(buf + 4, request->flags);
877 stw_be_p(buf + 6, request->type);
f6be6720
PM
878 stq_be_p(buf + 8, request->handle);
879 stq_be_p(buf + 16, request->from);
880 stl_be_p(buf + 24, request->len);
798bfe00 881
d1fdf257 882 return nbd_write(ioc, buf, sizeof(buf), NULL);
798bfe00
FZ
883}
884
ba845644
VSO
885/* nbd_receive_reply
886 * Returns 1 on success
887 * 0 on eof, when no data was read (errp is not set)
888 * negative errno on failure (errp is set)
889 */
890int nbd_receive_reply(QIOChannel *ioc, NBDReply *reply, Error **errp)
798bfe00
FZ
891{
892 uint8_t buf[NBD_REPLY_SIZE];
893 uint32_t magic;
ba845644 894 int ret;
798bfe00 895
d1fdf257 896 ret = nbd_read_eof(ioc, buf, sizeof(buf), errp);
ff82911c 897 if (ret <= 0) {
798bfe00
FZ
898 return ret;
899 }
900
798bfe00 901 /* Reply
7b3158f9 902 [ 0 .. 3] magic (NBD_SIMPLE_REPLY_MAGIC)
798bfe00
FZ
903 [ 4 .. 7] error (0 == no error)
904 [ 7 .. 15] handle
905 */
906
773dce3c
PM
907 magic = ldl_be_p(buf);
908 reply->error = ldl_be_p(buf + 4);
909 reply->handle = ldq_be_p(buf + 8);
798bfe00 910
e7a78d0e
EB
911 trace_nbd_receive_reply(magic, reply->error, nbd_err_lookup(reply->error),
912 reply->handle);
798bfe00
FZ
913 reply->error = nbd_errno_to_system_errno(reply->error);
914
b6f5d3b5
EB
915 if (reply->error == ESHUTDOWN) {
916 /* This works even on mingw which lacks a native ESHUTDOWN */
be41c100 917 error_setg(errp, "server shutting down");
b6f5d3b5
EB
918 return -EINVAL;
919 }
798bfe00 920
7b3158f9 921 if (magic != NBD_SIMPLE_REPLY_MAGIC) {
be41c100 922 error_setg(errp, "invalid magic (got 0x%" PRIx32 ")", magic);
798bfe00
FZ
923 return -EINVAL;
924 }
ba845644
VSO
925
926 return 1;
798bfe00
FZ
927}
928