]> git.ipfire.org Git - thirdparty/qemu.git/blame - nbd/client.c
nbd/client: Add meta contexts to nbd_receive_export_list()
[thirdparty/qemu.git] / nbd / client.c
CommitLineData
798bfe00 1/*
216ee365 2 * Copyright (C) 2016-2018 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{
420a4e95 69 NBDOption req;
c8a3a1b6
EB
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) {
cb6b1a3f 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) {
cb6b1a3f 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,
420a4e95 112 NBDOptionReply *reply, Error **errp)
c8a3a1b6
EB
113{
114 QEMU_BUILD_BUG_ON(sizeof(*reply) != 20);
d1fdf257 115 if (nbd_read(ioc, reply, sizeof(*reply), errp) < 0) {
cb6b1a3f 116 error_prepend(errp, "failed to read option reply: ");
2cdbf413 117 nbd_send_opt_abort(ioc);
c8a3a1b6
EB
118 return -1;
119 }
80c7c2b0
PM
120 reply->magic = be64_to_cpu(reply->magic);
121 reply->option = be32_to_cpu(reply->option);
122 reply->type = be32_to_cpu(reply->type);
123 reply->length = be32_to_cpu(reply->length);
c8a3a1b6 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) {
6c5c0351
EB
135 error_setg(errp, "Unexpected option type %u (%s), expected %u (%s)",
136 reply->option, nbd_opt_lookup(reply->option),
137 opt, nbd_opt_lookup(opt));
2cdbf413 138 nbd_send_opt_abort(ioc);
c8a3a1b6
EB
139 return -1;
140 }
141 return 0;
142}
143
144/* If reply represents success, return 1 without further action.
145 * If reply represents an error, consume the optional payload of
146 * the packet on ioc. Then return 0 for unsupported (so the client
147 * can fall back to other approaches), or -1 with errp set for other
148 * errors.
6ff58164 149 */
420a4e95 150static int nbd_handle_reply_err(QIOChannel *ioc, NBDOptionReply *reply,
6ff58164 151 Error **errp)
9344e5f5 152{
6ff58164
AB
153 char *msg = NULL;
154 int result = -1;
155
c8a3a1b6 156 if (!(reply->type & (1 << 31))) {
6ff58164
AB
157 return 1;
158 }
159
c8a3a1b6
EB
160 if (reply->length) {
161 if (reply->length > NBD_MAX_BUFFER_SIZE) {
28fb494f 162 error_setg(errp, "server error %" PRIu32
3736cc5b
EB
163 " (%s) message is too long",
164 reply->type, nbd_rep_lookup(reply->type));
6ff58164
AB
165 goto cleanup;
166 }
c8a3a1b6 167 msg = g_malloc(reply->length + 1);
d1fdf257 168 if (nbd_read(ioc, msg, reply->length, errp) < 0) {
28fb494f 169 error_prepend(errp, "failed to read option error %" PRIu32
cb6b1a3f 170 " (%s) message: ",
3736cc5b 171 reply->type, nbd_rep_lookup(reply->type));
6ff58164
AB
172 goto cleanup;
173 }
c8a3a1b6 174 msg[reply->length] = '\0';
bee21ef0
EB
175 trace_nbd_server_error_msg(reply->type,
176 nbd_reply_type_lookup(reply->type), msg);
9344e5f5
DB
177 }
178
c8a3a1b6 179 switch (reply->type) {
9344e5f5 180 case NBD_REP_ERR_UNSUP:
3736cc5b 181 trace_nbd_reply_err_unsup(reply->option, nbd_opt_lookup(reply->option));
6ff58164
AB
182 result = 0;
183 goto cleanup;
9344e5f5 184
f95910fe 185 case NBD_REP_ERR_POLICY:
28fb494f 186 error_setg(errp, "Denied by server for option %" PRIu32 " (%s)",
3736cc5b 187 reply->option, nbd_opt_lookup(reply->option));
f95910fe
DB
188 break;
189
9344e5f5 190 case NBD_REP_ERR_INVALID:
28fb494f 191 error_setg(errp, "Invalid parameters for option %" PRIu32 " (%s)",
3736cc5b 192 reply->option, nbd_opt_lookup(reply->option));
9344e5f5
DB
193 break;
194
b6f5d3b5 195 case NBD_REP_ERR_PLATFORM:
28fb494f 196 error_setg(errp, "Server lacks support for option %" PRIu32 " (%s)",
3736cc5b 197 reply->option, nbd_opt_lookup(reply->option));
b6f5d3b5
EB
198 break;
199
f95910fe 200 case NBD_REP_ERR_TLS_REQD:
28fb494f 201 error_setg(errp, "TLS negotiation required before option %" PRIu32
3736cc5b
EB
202 " (%s)", reply->option, nbd_opt_lookup(reply->option));
203 break;
204
205 case NBD_REP_ERR_UNKNOWN:
9a76bd78 206 error_setg(errp, "Requested export not available");
f95910fe
DB
207 break;
208
b6f5d3b5 209 case NBD_REP_ERR_SHUTDOWN:
28fb494f 210 error_setg(errp, "Server shutting down before option %" PRIu32 " (%s)",
3736cc5b
EB
211 reply->option, nbd_opt_lookup(reply->option));
212 break;
213
214 case NBD_REP_ERR_BLOCK_SIZE_REQD:
28fb494f 215 error_setg(errp, "Server requires INFO_BLOCK_SIZE for option %" PRIu32
3736cc5b 216 " (%s)", reply->option, nbd_opt_lookup(reply->option));
b6f5d3b5
EB
217 break;
218
9344e5f5 219 default:
28fb494f 220 error_setg(errp, "Unknown error code when asking for option %" PRIu32
3736cc5b 221 " (%s)", reply->option, nbd_opt_lookup(reply->option));
9344e5f5
DB
222 break;
223 }
224
6ff58164 225 if (msg) {
9a76bd78 226 error_append_hint(errp, "server reported: %s\n", msg);
6ff58164
AB
227 }
228
229 cleanup:
230 g_free(msg);
2cdbf413
EB
231 if (result < 0) {
232 nbd_send_opt_abort(ioc);
233 }
6ff58164 234 return result;
9344e5f5
DB
235}
236
091d0bf3
EB
237/* nbd_receive_list:
238 * Process another portion of the NBD_OPT_LIST reply, populating any
239 * name received into *@name. If @description is non-NULL, and the
240 * server provided a description, that is also populated. The caller
241 * must eventually call g_free() on success.
242 * Returns 1 if name and description were set and iteration must continue,
243 * 0 if iteration is complete (including if OPT_LIST unsupported),
244 * -1 with @errp set if an unrecoverable error occurred.
245 */
246static int nbd_receive_list(QIOChannel *ioc, char **name, char **description,
75368aab 247 Error **errp)
9344e5f5 248{
091d0bf3 249 int ret = -1;
420a4e95 250 NBDOptionReply reply;
9344e5f5
DB
251 uint32_t len;
252 uint32_t namelen;
091d0bf3
EB
253 char *local_name = NULL;
254 char *local_desc = NULL;
6ff58164 255 int error;
9344e5f5 256
c8a3a1b6 257 if (nbd_receive_option_reply(ioc, NBD_OPT_LIST, &reply, errp) < 0) {
9344e5f5
DB
258 return -1;
259 }
c8a3a1b6 260 error = nbd_handle_reply_err(ioc, &reply, errp);
6ff58164
AB
261 if (error <= 0) {
262 return error;
9344e5f5 263 }
c8a3a1b6 264 len = reply.length;
9344e5f5 265
c8a3a1b6 266 if (reply.type == NBD_REP_ACK) {
9344e5f5
DB
267 if (len != 0) {
268 error_setg(errp, "length too long for option end");
2cdbf413 269 nbd_send_opt_abort(ioc);
9344e5f5
DB
270 return -1;
271 }
75368aab
EB
272 return 0;
273 } else if (reply.type != NBD_REP_SERVER) {
6c5c0351
EB
274 error_setg(errp, "Unexpected reply type %u (%s), expected %u (%s)",
275 reply.type, nbd_rep_lookup(reply.type),
276 NBD_REP_SERVER, nbd_rep_lookup(NBD_REP_SERVER));
75368aab
EB
277 nbd_send_opt_abort(ioc);
278 return -1;
279 }
9344e5f5 280
75368aab
EB
281 if (len < sizeof(namelen) || len > NBD_MAX_BUFFER_SIZE) {
282 error_setg(errp, "incorrect option length %" PRIu32, len);
283 nbd_send_opt_abort(ioc);
284 return -1;
285 }
d1fdf257 286 if (nbd_read(ioc, &namelen, sizeof(namelen), errp) < 0) {
cb6b1a3f 287 error_prepend(errp, "failed to read option name length: ");
75368aab
EB
288 nbd_send_opt_abort(ioc);
289 return -1;
290 }
291 namelen = be32_to_cpu(namelen);
292 len -= sizeof(namelen);
293 if (len < namelen) {
294 error_setg(errp, "incorrect option name length");
295 nbd_send_opt_abort(ioc);
296 return -1;
297 }
75368aab 298
091d0bf3
EB
299 local_name = g_malloc(namelen + 1);
300 if (nbd_read(ioc, local_name, namelen, errp) < 0) {
cb6b1a3f 301 error_prepend(errp, "failed to read export name: ");
75368aab 302 nbd_send_opt_abort(ioc);
091d0bf3 303 goto out;
75368aab 304 }
091d0bf3 305 local_name[namelen] = '\0';
75368aab 306 len -= namelen;
091d0bf3
EB
307 if (len) {
308 local_desc = g_malloc(len + 1);
309 if (nbd_read(ioc, local_desc, len, errp) < 0) {
310 error_prepend(errp, "failed to read export description: ");
311 nbd_send_opt_abort(ioc);
312 goto out;
313 }
314 local_desc[len] = '\0';
9344e5f5 315 }
091d0bf3
EB
316
317 trace_nbd_receive_list(local_name, local_desc ?: "");
318 *name = local_name;
319 local_name = NULL;
320 if (description) {
321 *description = local_desc;
322 local_desc = NULL;
75368aab 323 }
091d0bf3
EB
324 ret = 1;
325
326 out:
327 g_free(local_name);
328 g_free(local_desc);
329 return ret;
9344e5f5
DB
330}
331
332
138796d0
EB
333/*
334 * nbd_opt_info_or_go:
335 * Send option for NBD_OPT_INFO or NBD_OPT_GO and parse the reply.
336 * Returns -1 if the option proves the export @info->name cannot be
337 * used, 0 if the option is unsupported (fall back to NBD_OPT_LIST and
8ecaeae8 338 * NBD_OPT_EXPORT_NAME in that case), and > 0 if the export is good to
138796d0
EB
339 * go (with the rest of @info populated).
340 */
341static int nbd_opt_info_or_go(QIOChannel *ioc, uint32_t opt,
342 NBDExportInfo *info, Error **errp)
8ecaeae8 343{
420a4e95 344 NBDOptionReply reply;
6dc1667d 345 uint32_t len = strlen(info->name);
8ecaeae8
EB
346 uint16_t type;
347 int error;
348 char *buf;
349
350 /* The protocol requires that the server send NBD_INFO_EXPORT with
351 * a non-zero flags (at least NBD_FLAG_HAS_FLAGS must be set); so
352 * flags still 0 is a witness of a broken server. */
353 info->flags = 0;
354
138796d0
EB
355 assert(opt == NBD_OPT_GO || opt == NBD_OPT_INFO);
356 trace_nbd_opt_info_go_start(nbd_opt_lookup(opt), info->name);
081dd1fe 357 buf = g_malloc(4 + len + 2 + 2 * info->request_sizes + 1);
8ecaeae8 358 stl_be_p(buf, len);
6dc1667d 359 memcpy(buf + 4, info->name, len);
081dd1fe
EB
360 /* At most one request, everything else up to server */
361 stw_be_p(buf + 4 + len, info->request_sizes);
362 if (info->request_sizes) {
363 stw_be_p(buf + 4 + len + 2, NBD_INFO_BLOCK_SIZE);
364 }
138796d0 365 error = nbd_send_option_request(ioc, opt,
158b9aa5
PMD
366 4 + len + 2 + 2 * info->request_sizes,
367 buf, errp);
368 g_free(buf);
369 if (error < 0) {
8ecaeae8
EB
370 return -1;
371 }
372
373 while (1) {
138796d0 374 if (nbd_receive_option_reply(ioc, opt, &reply, errp) < 0) {
8ecaeae8
EB
375 return -1;
376 }
377 error = nbd_handle_reply_err(ioc, &reply, errp);
378 if (error <= 0) {
379 return error;
380 }
381 len = reply.length;
382
383 if (reply.type == NBD_REP_ACK) {
138796d0
EB
384 /*
385 * Server is done sending info, and moved into transmission
386 * phase for NBD_OPT_GO, but make sure it sent flags
387 */
8ecaeae8
EB
388 if (len) {
389 error_setg(errp, "server sent invalid NBD_REP_ACK");
8ecaeae8
EB
390 return -1;
391 }
392 if (!info->flags) {
393 error_setg(errp, "broken server omitted NBD_INFO_EXPORT");
8ecaeae8
EB
394 return -1;
395 }
138796d0 396 trace_nbd_opt_info_go_success(nbd_opt_lookup(opt));
8ecaeae8
EB
397 return 1;
398 }
399 if (reply.type != NBD_REP_INFO) {
6c5c0351
EB
400 error_setg(errp, "unexpected reply type %u (%s), expected %u (%s)",
401 reply.type, nbd_rep_lookup(reply.type),
402 NBD_REP_INFO, nbd_rep_lookup(NBD_REP_INFO));
8ecaeae8
EB
403 nbd_send_opt_abort(ioc);
404 return -1;
405 }
406 if (len < sizeof(type)) {
407 error_setg(errp, "NBD_REP_INFO length %" PRIu32 " is too short",
408 len);
409 nbd_send_opt_abort(ioc);
410 return -1;
411 }
412 if (nbd_read(ioc, &type, sizeof(type), errp) < 0) {
cb6b1a3f 413 error_prepend(errp, "failed to read info type: ");
8ecaeae8
EB
414 nbd_send_opt_abort(ioc);
415 return -1;
416 }
417 len -= sizeof(type);
80c7c2b0 418 type = be16_to_cpu(type);
8ecaeae8
EB
419 switch (type) {
420 case NBD_INFO_EXPORT:
421 if (len != sizeof(info->size) + sizeof(info->flags)) {
422 error_setg(errp, "remaining export info len %" PRIu32
423 " is unexpected size", len);
424 nbd_send_opt_abort(ioc);
425 return -1;
426 }
427 if (nbd_read(ioc, &info->size, sizeof(info->size), errp) < 0) {
cb6b1a3f 428 error_prepend(errp, "failed to read info size: ");
8ecaeae8
EB
429 nbd_send_opt_abort(ioc);
430 return -1;
431 }
80c7c2b0 432 info->size = be64_to_cpu(info->size);
8ecaeae8 433 if (nbd_read(ioc, &info->flags, sizeof(info->flags), errp) < 0) {
cb6b1a3f 434 error_prepend(errp, "failed to read info flags: ");
8ecaeae8
EB
435 nbd_send_opt_abort(ioc);
436 return -1;
437 }
80c7c2b0 438 info->flags = be16_to_cpu(info->flags);
8ecaeae8
EB
439 trace_nbd_receive_negotiate_size_flags(info->size, info->flags);
440 break;
441
081dd1fe
EB
442 case NBD_INFO_BLOCK_SIZE:
443 if (len != sizeof(info->min_block) * 3) {
444 error_setg(errp, "remaining export info len %" PRIu32
445 " is unexpected size", len);
446 nbd_send_opt_abort(ioc);
447 return -1;
448 }
449 if (nbd_read(ioc, &info->min_block, sizeof(info->min_block),
450 errp) < 0) {
cb6b1a3f 451 error_prepend(errp, "failed to read info minimum block size: ");
081dd1fe
EB
452 nbd_send_opt_abort(ioc);
453 return -1;
454 }
80c7c2b0 455 info->min_block = be32_to_cpu(info->min_block);
081dd1fe 456 if (!is_power_of_2(info->min_block)) {
e475d108
EB
457 error_setg(errp, "server minimum block size %" PRIu32
458 " is not a power of two", info->min_block);
081dd1fe
EB
459 nbd_send_opt_abort(ioc);
460 return -1;
461 }
462 if (nbd_read(ioc, &info->opt_block, sizeof(info->opt_block),
463 errp) < 0) {
cb6b1a3f
EB
464 error_prepend(errp,
465 "failed to read info preferred block size: ");
081dd1fe
EB
466 nbd_send_opt_abort(ioc);
467 return -1;
468 }
80c7c2b0 469 info->opt_block = be32_to_cpu(info->opt_block);
081dd1fe
EB
470 if (!is_power_of_2(info->opt_block) ||
471 info->opt_block < info->min_block) {
e475d108
EB
472 error_setg(errp, "server preferred block size %" PRIu32
473 " is not valid", info->opt_block);
081dd1fe
EB
474 nbd_send_opt_abort(ioc);
475 return -1;
476 }
477 if (nbd_read(ioc, &info->max_block, sizeof(info->max_block),
478 errp) < 0) {
cb6b1a3f 479 error_prepend(errp, "failed to read info maximum block size: ");
081dd1fe
EB
480 nbd_send_opt_abort(ioc);
481 return -1;
482 }
80c7c2b0 483 info->max_block = be32_to_cpu(info->max_block);
e475d108
EB
484 if (info->max_block < info->min_block) {
485 error_setg(errp, "server maximum block size %" PRIu32
486 " is not valid", info->max_block);
487 nbd_send_opt_abort(ioc);
488 return -1;
489 }
138796d0
EB
490 trace_nbd_opt_info_block_size(info->min_block, info->opt_block,
491 info->max_block);
081dd1fe
EB
492 break;
493
8ecaeae8 494 default:
138796d0 495 trace_nbd_opt_info_unknown(type, nbd_info_lookup(type));
8ecaeae8 496 if (nbd_drop(ioc, len, errp) < 0) {
cb6b1a3f 497 error_prepend(errp, "Failed to read info payload: ");
8ecaeae8
EB
498 nbd_send_opt_abort(ioc);
499 return -1;
500 }
501 break;
502 }
503 }
504}
505
75368aab 506/* Return -1 on failure, 0 if wantname is an available export. */
9344e5f5
DB
507static int nbd_receive_query_exports(QIOChannel *ioc,
508 const char *wantname,
509 Error **errp)
510{
091d0bf3
EB
511 bool list_empty = true;
512 bool found_export = false;
9344e5f5 513
9588463e 514 trace_nbd_receive_query_exports_start(wantname);
c8a3a1b6 515 if (nbd_send_option_request(ioc, NBD_OPT_LIST, 0, NULL, errp) < 0) {
9344e5f5
DB
516 return -1;
517 }
518
9344e5f5 519 while (1) {
091d0bf3
EB
520 char *name;
521 int ret = nbd_receive_list(ioc, &name, NULL, errp);
9344e5f5
DB
522
523 if (ret < 0) {
75368aab 524 /* Server gave unexpected reply */
9344e5f5 525 return -1;
75368aab
EB
526 } else if (ret == 0) {
527 /* Done iterating. */
091d0bf3
EB
528 if (list_empty) {
529 /*
530 * We don't have enough context to tell a server that
531 * sent an empty list apart from a server that does
532 * not support the list command; but as this function
533 * is just used to trigger a nicer error message
534 * before trying NBD_OPT_EXPORT_NAME, assume the
535 * export is available.
536 */
537 return 0;
538 } else if (!found_export) {
75368aab
EB
539 error_setg(errp, "No export with name '%s' available",
540 wantname);
541 nbd_send_opt_abort(ioc);
542 return -1;
543 }
9588463e 544 trace_nbd_receive_query_exports_success(wantname);
75368aab 545 return 0;
9344e5f5 546 }
091d0bf3
EB
547 list_empty = false;
548 if (!strcmp(name, wantname)) {
549 found_export = true;
550 }
551 g_free(name);
9344e5f5 552 }
9344e5f5
DB
553}
554
d795299b
VSO
555/* nbd_request_simple_option: Send an option request, and parse the reply
556 * return 1 for successful negotiation,
557 * 0 if operation is unsupported,
558 * -1 with errp set for any other error
559 */
560static int nbd_request_simple_option(QIOChannel *ioc, int opt, Error **errp)
f95910fe 561{
420a4e95 562 NBDOptionReply reply;
d795299b 563 int error;
f95910fe 564
d795299b
VSO
565 if (nbd_send_option_request(ioc, opt, 0, NULL, errp) < 0) {
566 return -1;
f95910fe
DB
567 }
568
d795299b
VSO
569 if (nbd_receive_option_reply(ioc, opt, &reply, errp) < 0) {
570 return -1;
571 }
572 error = nbd_handle_reply_err(ioc, &reply, errp);
573 if (error <= 0) {
574 return error;
f95910fe 575 }
c8a3a1b6
EB
576
577 if (reply.type != NBD_REP_ACK) {
d795299b 578 error_setg(errp, "Server answered option %d (%s) with unexpected "
28fb494f 579 "reply %" PRIu32 " (%s)", opt, nbd_opt_lookup(opt),
d795299b 580 reply.type, nbd_rep_lookup(reply.type));
2cdbf413 581 nbd_send_opt_abort(ioc);
d795299b 582 return -1;
f95910fe
DB
583 }
584
c8a3a1b6 585 if (reply.length != 0) {
d795299b
VSO
586 error_setg(errp, "Option %d ('%s') response length is %" PRIu32
587 " (it should be zero)", opt, nbd_opt_lookup(opt),
c8a3a1b6 588 reply.length);
2cdbf413 589 nbd_send_opt_abort(ioc);
d795299b
VSO
590 return -1;
591 }
592
593 return 1;
594}
595
596static QIOChannel *nbd_receive_starttls(QIOChannel *ioc,
597 QCryptoTLSCreds *tlscreds,
598 const char *hostname, Error **errp)
599{
600 int ret;
601 QIOChannelTLS *tioc;
602 struct NBDTLSHandshakeData data = { 0 };
603
604 ret = nbd_request_simple_option(ioc, NBD_OPT_STARTTLS, errp);
605 if (ret <= 0) {
606 if (ret == 0) {
607 error_setg(errp, "Server don't support STARTTLS option");
608 nbd_send_opt_abort(ioc);
609 }
f95910fe
DB
610 return NULL;
611 }
612
9588463e 613 trace_nbd_receive_starttls_new_client();
f95910fe
DB
614 tioc = qio_channel_tls_new_client(ioc, tlscreds, hostname, errp);
615 if (!tioc) {
616 return NULL;
617 }
0d73f725 618 qio_channel_set_name(QIO_CHANNEL(tioc), "nbd-client-tls");
f95910fe 619 data.loop = g_main_loop_new(g_main_context_default(), FALSE);
9588463e 620 trace_nbd_receive_starttls_tls_handshake();
f95910fe
DB
621 qio_channel_tls_handshake(tioc,
622 nbd_tls_handshake,
623 &data,
1939ccda 624 NULL,
f95910fe
DB
625 NULL);
626
627 if (!data.complete) {
628 g_main_loop_run(data.loop);
629 }
630 g_main_loop_unref(data.loop);
631 if (data.error) {
632 error_propagate(errp, data.error);
633 object_unref(OBJECT(tioc));
634 return NULL;
635 }
636
637 return QIO_CHANNEL(tioc);
638}
639
757b3ab9
EB
640/*
641 * nbd_send_meta_query:
642 * Send 0 or 1 set/list meta context queries.
643 * Return 0 on success, -1 with errp set for any error
644 */
645static int nbd_send_meta_query(QIOChannel *ioc, uint32_t opt,
646 const char *export, const char *query,
647 Error **errp)
648{
649 int ret;
650 uint32_t export_len = strlen(export);
651 uint32_t queries = !!query;
652 uint32_t query_len = 0;
653 uint32_t data_len;
654 char *data;
655 char *p;
656
657 data_len = sizeof(export_len) + export_len + sizeof(queries);
658 if (query) {
659 query_len = strlen(query);
660 data_len += sizeof(query_len) + query_len;
661 } else {
662 assert(opt == NBD_OPT_LIST_META_CONTEXT);
663 }
664 p = data = g_malloc(data_len);
665
666 trace_nbd_opt_meta_request(nbd_opt_lookup(opt), query ?: "(all)", export);
667 stl_be_p(p, export_len);
668 memcpy(p += sizeof(export_len), export, export_len);
669 stl_be_p(p += export_len, queries);
670 if (query) {
671 stl_be_p(p += sizeof(queries), query_len);
672 memcpy(p += sizeof(query_len), query, query_len);
673 }
674
675 ret = nbd_send_option_request(ioc, opt, data_len, data, errp);
676 g_free(data);
677 return ret;
678}
679
0182c1ae
EB
680/*
681 * nbd_receive_one_meta_context:
682 * Called in a loop to receive and trace one set/list meta context reply.
683 * Pass non-NULL @name or @id to collect results back to the caller, which
684 * must eventually call g_free().
685 * return 1 if name is set and iteration must continue,
686 * 0 if iteration is complete (including if option is unsupported),
687 * -1 with errp set for any error
688 */
689static int nbd_receive_one_meta_context(QIOChannel *ioc,
690 uint32_t opt,
691 char **name,
692 uint32_t *id,
693 Error **errp)
694{
695 int ret;
696 NBDOptionReply reply;
697 char *local_name = NULL;
698 uint32_t local_id;
699
700 if (nbd_receive_option_reply(ioc, opt, &reply, errp) < 0) {
701 return -1;
702 }
703
704 ret = nbd_handle_reply_err(ioc, &reply, errp);
705 if (ret <= 0) {
706 return ret;
707 }
708
709 if (reply.type == NBD_REP_ACK) {
710 if (reply.length != 0) {
711 error_setg(errp, "Unexpected length to ACK response");
712 nbd_send_opt_abort(ioc);
713 return -1;
714 }
715 return 0;
716 } else if (reply.type != NBD_REP_META_CONTEXT) {
717 error_setg(errp, "Unexpected reply type %u (%s), expected %u (%s)",
718 reply.type, nbd_rep_lookup(reply.type),
719 NBD_REP_META_CONTEXT, nbd_rep_lookup(NBD_REP_META_CONTEXT));
720 nbd_send_opt_abort(ioc);
721 return -1;
722 }
723
724 if (reply.length <= sizeof(local_id) ||
725 reply.length > NBD_MAX_BUFFER_SIZE) {
726 error_setg(errp, "Failed to negotiate meta context, server "
727 "answered with unexpected length %" PRIu32,
728 reply.length);
729 nbd_send_opt_abort(ioc);
730 return -1;
731 }
732
733 if (nbd_read(ioc, &local_id, sizeof(local_id), errp) < 0) {
734 return -1;
735 }
736 local_id = be32_to_cpu(local_id);
737
738 reply.length -= sizeof(local_id);
739 local_name = g_malloc(reply.length + 1);
740 if (nbd_read(ioc, local_name, reply.length, errp) < 0) {
741 g_free(local_name);
742 return -1;
743 }
744 local_name[reply.length] = '\0';
745 trace_nbd_opt_meta_reply(nbd_opt_lookup(opt), local_name, local_id);
746
747 if (name) {
748 *name = local_name;
749 } else {
750 g_free(local_name);
751 }
752 if (id) {
753 *id = local_id;
754 }
755 return 1;
756}
757
758/*
759 * nbd_negotiate_simple_meta_context:
2df94eb5
EB
760 * Request the server to set the meta context for export @info->name
761 * using @info->x_dirty_bitmap with a fallback to "base:allocation",
762 * setting @info->context_id to the resulting id. Fail if the server
763 * responds with more than one context or with a context different
764 * than the query.
765 * return 1 for successful negotiation,
78a33ab5
VSO
766 * 0 if operation is unsupported,
767 * -1 with errp set for any other error
768 */
769static int nbd_negotiate_simple_meta_context(QIOChannel *ioc,
2df94eb5 770 NBDExportInfo *info,
78a33ab5
VSO
771 Error **errp)
772{
2df94eb5
EB
773 /*
774 * TODO: Removing the x_dirty_bitmap hack will mean refactoring
775 * this function to request and store ids for multiple contexts
776 * (both base:allocation and a dirty bitmap), at which point this
777 * function should lose the term _simple.
778 */
78a33ab5 779 int ret;
2df94eb5 780 const char *context = info->x_dirty_bitmap ?: "base:allocation";
89aa0d87 781 bool received = false;
0182c1ae 782 char *name = NULL;
78a33ab5 783
757b3ab9
EB
784 if (nbd_send_meta_query(ioc, NBD_OPT_SET_META_CONTEXT,
785 info->name, context, errp) < 0) {
786 return -1;
78a33ab5
VSO
787 }
788
0182c1ae
EB
789 ret = nbd_receive_one_meta_context(ioc, NBD_OPT_SET_META_CONTEXT,
790 &name, &info->context_id, errp);
791 if (ret < 0) {
78a33ab5
VSO
792 return -1;
793 }
0182c1ae 794 if (ret == 1) {
78a33ab5
VSO
795 if (strcmp(context, name)) {
796 error_setg(errp, "Failed to negotiate meta context '%s', server "
797 "answered with different context '%s'", context,
798 name);
799 g_free(name);
260e34db 800 nbd_send_opt_abort(ioc);
78a33ab5
VSO
801 return -1;
802 }
803 g_free(name);
78a33ab5
VSO
804 received = true;
805
0182c1ae
EB
806 ret = nbd_receive_one_meta_context(ioc, NBD_OPT_SET_META_CONTEXT,
807 NULL, NULL, errp);
808 if (ret < 0) {
78a33ab5
VSO
809 return -1;
810 }
78a33ab5 811 }
0182c1ae
EB
812 if (ret != 0) {
813 error_setg(errp, "Server answered with more than one context");
260e34db
EB
814 nbd_send_opt_abort(ioc);
815 return -1;
816 }
2df94eb5 817 return received;
78a33ab5 818}
f95910fe 819
0b576b6b
EB
820/*
821 * nbd_list_meta_contexts:
822 * Request the server to list all meta contexts for export @info->name.
823 * return 0 if list is complete (even if empty),
824 * -1 with errp set for any error
825 */
826static int nbd_list_meta_contexts(QIOChannel *ioc,
827 NBDExportInfo *info,
828 Error **errp)
829{
830 int ret;
831
832 if (nbd_send_meta_query(ioc, NBD_OPT_LIST_META_CONTEXT,
833 info->name, NULL, errp) < 0) {
834 return -1;
835 }
836
837 while (1) {
838 char *context;
839
840 ret = nbd_receive_one_meta_context(ioc, NBD_OPT_LIST_META_CONTEXT,
841 &context, NULL, errp);
842 if (ret <= 0) {
843 return ret;
844 }
845 info->contexts = g_renew(char *, info->contexts, ++info->n_contexts);
846 info->contexts[info->n_contexts - 1] = context;
847 }
848}
849
10b89988
EB
850/*
851 * nbd_start_negotiate:
852 * Start the handshake to the server. After a positive return, the server
853 * is ready to accept additional NBD_OPT requests.
854 * Returns: negative errno: failure talking to server
b3c9d33b 855 * 0: server is oldstyle, must call nbd_negotiate_finish_oldstyle
10b89988
EB
856 * 1: server is newstyle, but can only accept EXPORT_NAME
857 * 2: server is newstyle, but lacks structured replies
858 * 3: server is newstyle and set up for structured replies
859 */
860static int nbd_start_negotiate(QIOChannel *ioc, QCryptoTLSCreds *tlscreds,
861 const char *hostname, QIOChannel **outioc,
862 bool structured_reply, bool *zeroes,
863 Error **errp)
798bfe00 864{
004a89fc 865 uint64_t magic;
798bfe00 866
10b89988 867 trace_nbd_start_negotiate(tlscreds, hostname ? hostname : "<null>");
798bfe00 868
d21a2d34
EB
869 if (zeroes) {
870 *zeroes = true;
871 }
f95910fe
DB
872 if (outioc) {
873 *outioc = NULL;
874 }
875 if (tlscreds && !outioc) {
876 error_setg(errp, "Output I/O channel required for TLS");
2b8d0954 877 return -EINVAL;
f95910fe
DB
878 }
879
ef2e35fc
EB
880 if (nbd_read(ioc, &magic, sizeof(magic), errp) < 0) {
881 error_prepend(errp, "Failed to read initial magic: ");
2b8d0954 882 return -EINVAL;
798bfe00 883 }
ef2e35fc 884 magic = be64_to_cpu(magic);
9588463e 885 trace_nbd_receive_negotiate_magic(magic);
798bfe00 886
ef2e35fc
EB
887 if (magic != NBD_INIT_MAGIC) {
888 error_setg(errp, "Bad initial magic received: 0x%" PRIx64, magic);
2b8d0954 889 return -EINVAL;
798bfe00
FZ
890 }
891
d1fdf257 892 if (nbd_read(ioc, &magic, sizeof(magic), errp) < 0) {
ef2e35fc 893 error_prepend(errp, "Failed to read server magic: ");
2b8d0954 894 return -EINVAL;
798bfe00
FZ
895 }
896 magic = be64_to_cpu(magic);
9588463e 897 trace_nbd_receive_negotiate_magic(magic);
798bfe00 898
f72d705f 899 if (magic == NBD_OPTS_MAGIC) {
e2a9d9a3 900 uint32_t clientflags = 0;
e2a9d9a3 901 uint16_t globalflags;
9344e5f5 902 bool fixedNewStyle = false;
798bfe00 903
d1fdf257 904 if (nbd_read(ioc, &globalflags, sizeof(globalflags), errp) < 0) {
cb6b1a3f 905 error_prepend(errp, "Failed to read server flags: ");
2b8d0954 906 return -EINVAL;
798bfe00 907 }
9344e5f5 908 globalflags = be16_to_cpu(globalflags);
9588463e 909 trace_nbd_receive_negotiate_server_flags(globalflags);
e2a9d9a3 910 if (globalflags & NBD_FLAG_FIXED_NEWSTYLE) {
9344e5f5 911 fixedNewStyle = true;
e2a9d9a3
DB
912 clientflags |= NBD_FLAG_C_FIXED_NEWSTYLE;
913 }
c203c59a 914 if (globalflags & NBD_FLAG_NO_ZEROES) {
d21a2d34
EB
915 if (zeroes) {
916 *zeroes = false;
917 }
c203c59a
EB
918 clientflags |= NBD_FLAG_C_NO_ZEROES;
919 }
e2a9d9a3 920 /* client requested flags */
9344e5f5 921 clientflags = cpu_to_be32(clientflags);
d1fdf257 922 if (nbd_write(ioc, &clientflags, sizeof(clientflags), errp) < 0) {
cb6b1a3f 923 error_prepend(errp, "Failed to send clientflags field: ");
2b8d0954 924 return -EINVAL;
798bfe00 925 }
f95910fe
DB
926 if (tlscreds) {
927 if (fixedNewStyle) {
928 *outioc = nbd_receive_starttls(ioc, tlscreds, hostname, errp);
929 if (!*outioc) {
2b8d0954 930 return -EINVAL;
f95910fe
DB
931 }
932 ioc = *outioc;
933 } else {
934 error_setg(errp, "Server does not support STARTTLS");
2b8d0954 935 return -EINVAL;
f95910fe
DB
936 }
937 }
9344e5f5 938 if (fixedNewStyle) {
10b89988 939 int result = 0;
8ecaeae8 940
f140e300
VSO
941 if (structured_reply) {
942 result = nbd_request_simple_option(ioc,
943 NBD_OPT_STRUCTURED_REPLY,
944 errp);
945 if (result < 0) {
2b8d0954 946 return -EINVAL;
f140e300 947 }
f140e300 948 }
10b89988
EB
949 return 2 + result;
950 } else {
951 return 1;
952 }
953 } else if (magic == NBD_CLIENT_MAGIC) {
954 if (tlscreds) {
955 error_setg(errp, "Server does not support STARTTLS");
956 return -EINVAL;
957 }
958 return 0;
959 } else {
960 error_setg(errp, "Bad server magic received: 0x%" PRIx64, magic);
961 return -EINVAL;
962 }
963}
f140e300 964
b3c9d33b
EB
965/*
966 * nbd_negotiate_finish_oldstyle:
967 * Populate @info with the size and export flags from an oldstyle server,
968 * but does not consume 124 bytes of reserved zero padding.
969 * Returns 0 on success, -1 with @errp set on failure
970 */
971static int nbd_negotiate_finish_oldstyle(QIOChannel *ioc, NBDExportInfo *info,
972 Error **errp)
973{
974 uint32_t oldflags;
975
976 if (nbd_read(ioc, &info->size, sizeof(info->size), errp) < 0) {
977 error_prepend(errp, "Failed to read export length: ");
978 return -EINVAL;
979 }
980 info->size = be64_to_cpu(info->size);
981
982 if (nbd_read(ioc, &oldflags, sizeof(oldflags), errp) < 0) {
983 error_prepend(errp, "Failed to read export flags: ");
984 return -EINVAL;
985 }
986 oldflags = be32_to_cpu(oldflags);
987 if (oldflags & ~0xffff) {
988 error_setg(errp, "Unexpected export flags %0x" PRIx32, oldflags);
989 return -EINVAL;
990 }
991 info->flags = oldflags;
992 return 0;
993}
994
10b89988
EB
995/*
996 * nbd_receive_negotiate:
997 * Connect to server, complete negotiation, and move into transmission phase.
998 * Returns: negative errno: failure talking to server
999 * 0: server is connected
1000 */
1001int nbd_receive_negotiate(QIOChannel *ioc, QCryptoTLSCreds *tlscreds,
1002 const char *hostname, QIOChannel **outioc,
1003 NBDExportInfo *info, Error **errp)
1004{
1005 int result;
1006 bool zeroes;
1007 bool base_allocation = info->base_allocation;
78a33ab5 1008
10b89988
EB
1009 assert(info->name);
1010 trace_nbd_receive_negotiate_name(info->name);
1011
1012 result = nbd_start_negotiate(ioc, tlscreds, hostname, outioc,
1013 info->structured_reply, &zeroes, errp);
1014
1015 info->structured_reply = false;
1016 info->base_allocation = false;
1017 if (tlscreds && *outioc) {
1018 ioc = *outioc;
1019 }
1020
1021 switch (result) {
1022 case 3: /* newstyle, with structured replies */
1023 info->structured_reply = true;
1024 if (base_allocation) {
1025 result = nbd_negotiate_simple_meta_context(ioc, info, errp);
8ecaeae8 1026 if (result < 0) {
2b8d0954 1027 return -EINVAL;
8ecaeae8 1028 }
10b89988
EB
1029 info->base_allocation = result == 1;
1030 }
1031 /* fall through */
1032 case 2: /* newstyle, try OPT_GO */
1033 /* Try NBD_OPT_GO first - if it works, we are done (it
1034 * also gives us a good message if the server requires
1035 * TLS). If it is not available, fall back to
1036 * NBD_OPT_LIST for nicer error messages about a missing
1037 * export, then use NBD_OPT_EXPORT_NAME. */
138796d0 1038 result = nbd_opt_info_or_go(ioc, NBD_OPT_GO, info, errp);
10b89988
EB
1039 if (result < 0) {
1040 return -EINVAL;
9344e5f5 1041 }
10b89988
EB
1042 if (result > 0) {
1043 return 0;
1044 }
1045 /* Check our desired export is present in the
1046 * server export list. Since NBD_OPT_EXPORT_NAME
1047 * cannot return an error message, running this
1048 * query gives us better error reporting if the
1049 * export name is not available.
1050 */
1051 if (nbd_receive_query_exports(ioc, info->name, errp) < 0) {
1052 return -EINVAL;
1053 }
1054 /* fall through */
1055 case 1: /* newstyle, but limited to EXPORT_NAME */
c8a3a1b6 1056 /* write the export name request */
6dc1667d 1057 if (nbd_send_option_request(ioc, NBD_OPT_EXPORT_NAME, -1, info->name,
c8a3a1b6 1058 errp) < 0) {
2b8d0954 1059 return -EINVAL;
798bfe00 1060 }
f72d705f 1061
c8a3a1b6 1062 /* Read the response */
004a89fc 1063 if (nbd_read(ioc, &info->size, sizeof(info->size), errp) < 0) {
cb6b1a3f 1064 error_prepend(errp, "Failed to read export length: ");
2b8d0954 1065 return -EINVAL;
798bfe00 1066 }
80c7c2b0 1067 info->size = be64_to_cpu(info->size);
798bfe00 1068
004a89fc 1069 if (nbd_read(ioc, &info->flags, sizeof(info->flags), errp) < 0) {
cb6b1a3f 1070 error_prepend(errp, "Failed to read export flags: ");
2b8d0954 1071 return -EINVAL;
f72d705f 1072 }
80c7c2b0 1073 info->flags = be16_to_cpu(info->flags);
10b89988
EB
1074 break;
1075 case 0: /* oldstyle, parse length and flags */
6dc1667d
EB
1076 if (*info->name) {
1077 error_setg(errp, "Server does not support non-empty export names");
2b8d0954 1078 return -EINVAL;
f72d705f 1079 }
b3c9d33b 1080 if (nbd_negotiate_finish_oldstyle(ioc, info, errp) < 0) {
2b8d0954 1081 return -EINVAL;
7423f417 1082 }
10b89988
EB
1083 break;
1084 default:
1085 return result;
798bfe00 1086 }
f72d705f 1087
004a89fc 1088 trace_nbd_receive_negotiate_size_flags(info->size, info->flags);
d1fdf257 1089 if (zeroes && nbd_drop(ioc, 124, errp) < 0) {
cb6b1a3f 1090 error_prepend(errp, "Failed to read reserved block: ");
2b8d0954 1091 return -EINVAL;
798bfe00 1092 }
2b8d0954 1093 return 0;
798bfe00
FZ
1094}
1095
d21a2d34
EB
1096/* Clean up result of nbd_receive_export_list */
1097void nbd_free_export_list(NBDExportInfo *info, int count)
1098{
0b576b6b 1099 int i, j;
d21a2d34
EB
1100
1101 if (!info) {
1102 return;
1103 }
1104
1105 for (i = 0; i < count; i++) {
1106 g_free(info[i].name);
1107 g_free(info[i].description);
0b576b6b
EB
1108 for (j = 0; j < info[i].n_contexts; j++) {
1109 g_free(info[i].contexts[j]);
1110 }
1111 g_free(info[i].contexts);
d21a2d34
EB
1112 }
1113 g_free(info);
1114}
1115
1116/*
1117 * nbd_receive_export_list:
1118 * Query details about a server's exports, then disconnect without
1119 * going into transmission phase. Return a count of the exports listed
1120 * in @info by the server, or -1 on error. Caller must free @info using
1121 * nbd_free_export_list().
1122 */
1123int nbd_receive_export_list(QIOChannel *ioc, QCryptoTLSCreds *tlscreds,
1124 const char *hostname, NBDExportInfo **info,
1125 Error **errp)
1126{
1127 int result;
1128 int count = 0;
1129 int i;
1130 int rc;
1131 int ret = -1;
1132 NBDExportInfo *array = NULL;
1133 QIOChannel *sioc = NULL;
1134
1135 *info = NULL;
1136 result = nbd_start_negotiate(ioc, tlscreds, hostname, &sioc, true, NULL,
1137 errp);
1138 if (tlscreds && sioc) {
1139 ioc = sioc;
1140 }
1141
1142 switch (result) {
1143 case 2:
1144 case 3:
1145 /* newstyle - use NBD_OPT_LIST to populate array, then try
1146 * NBD_OPT_INFO on each array member. If structured replies
1147 * are enabled, also try NBD_OPT_LIST_META_CONTEXT. */
1148 if (nbd_send_option_request(ioc, NBD_OPT_LIST, 0, NULL, errp) < 0) {
1149 goto out;
1150 }
1151 while (1) {
1152 char *name;
1153 char *desc;
1154
1155 rc = nbd_receive_list(ioc, &name, &desc, errp);
1156 if (rc < 0) {
1157 goto out;
1158 } else if (rc == 0) {
1159 break;
1160 }
1161 array = g_renew(NBDExportInfo, array, ++count);
1162 memset(&array[count - 1], 0, sizeof(*array));
1163 array[count - 1].name = name;
1164 array[count - 1].description = desc;
1165 array[count - 1].structured_reply = result == 3;
1166 }
1167
1168 for (i = 0; i < count; i++) {
1169 array[i].request_sizes = true;
1170 rc = nbd_opt_info_or_go(ioc, NBD_OPT_INFO, &array[i], errp);
1171 if (rc < 0) {
1172 goto out;
1173 } else if (rc == 0) {
1174 /*
1175 * Pointless to try rest of loop. If OPT_INFO doesn't work,
1176 * it's unlikely that meta contexts work either
1177 */
1178 break;
1179 }
1180
0b576b6b
EB
1181 if (result == 3 &&
1182 nbd_list_meta_contexts(ioc, &array[i], errp) < 0) {
1183 goto out;
1184 }
d21a2d34
EB
1185 }
1186
1187 /* Send NBD_OPT_ABORT as a courtesy before hanging up */
1188 nbd_send_opt_abort(ioc);
1189 break;
1190 case 1: /* newstyle, but limited to EXPORT_NAME */
1191 error_setg(errp, "Server does not support export lists");
1192 /* We can't even send NBD_OPT_ABORT, so merely hang up */
1193 goto out;
1194 case 0: /* oldstyle, parse length and flags */
1195 array = g_new0(NBDExportInfo, 1);
1196 array->name = g_strdup("");
1197 count = 1;
1198
1199 if (nbd_negotiate_finish_oldstyle(ioc, array, errp) < 0) {
1200 goto out;
1201 }
1202
1203 /* Send NBD_CMD_DISC as a courtesy to the server, but ignore all
1204 * errors now that we have the information we wanted. */
1205 if (nbd_drop(ioc, 124, NULL) == 0) {
1206 NBDRequest request = { .type = NBD_CMD_DISC };
1207
1208 nbd_send_request(ioc, &request);
1209 }
1210 break;
1211 default:
1212 goto out;
1213 }
1214
1215 *info = array;
1216 array = NULL;
1217 ret = count;
1218
1219 out:
1220 qio_channel_shutdown(ioc, QIO_CHANNEL_SHUTDOWN_BOTH, NULL);
1221 qio_channel_close(ioc, NULL);
1222 object_unref(OBJECT(sioc));
1223 nbd_free_export_list(array, count);
1224 return ret;
1225}
1226
798bfe00 1227#ifdef __linux__
004a89fc 1228int nbd_init(int fd, QIOChannelSocket *sioc, NBDExportInfo *info,
be41c100 1229 Error **errp)
798bfe00 1230{
081dd1fe
EB
1231 unsigned long sector_size = MAX(BDRV_SECTOR_SIZE, info->min_block);
1232 unsigned long sectors = info->size / sector_size;
1233
1234 /* FIXME: Once the kernel module is patched to honor block sizes,
1235 * and to advertise that fact to user space, we should update the
1236 * hand-off to the kernel to use any block sizes we learned. */
1237 assert(!info->request_sizes);
1238 if (info->size / sector_size != sectors) {
004a89fc
EB
1239 error_setg(errp, "Export size %" PRIu64 " too large for 32-bit kernel",
1240 info->size);
f57e2416
EB
1241 return -E2BIG;
1242 }
1243
9588463e 1244 trace_nbd_init_set_socket();
798bfe00 1245
f57e2416 1246 if (ioctl(fd, NBD_SET_SOCK, (unsigned long) sioc->fd) < 0) {
798bfe00 1247 int serrno = errno;
be41c100 1248 error_setg(errp, "Failed to set NBD socket");
798bfe00
FZ
1249 return -serrno;
1250 }
1251
081dd1fe 1252 trace_nbd_init_set_block_size(sector_size);
798bfe00 1253
081dd1fe 1254 if (ioctl(fd, NBD_SET_BLKSIZE, sector_size) < 0) {
798bfe00 1255 int serrno = errno;
be41c100 1256 error_setg(errp, "Failed setting NBD block size");
798bfe00
FZ
1257 return -serrno;
1258 }
1259
9588463e 1260 trace_nbd_init_set_size(sectors);
081dd1fe
EB
1261 if (info->size % sector_size) {
1262 trace_nbd_init_trailing_bytes(info->size % sector_size);
f57e2416 1263 }
798bfe00 1264
f57e2416 1265 if (ioctl(fd, NBD_SET_SIZE_BLOCKS, sectors) < 0) {
798bfe00 1266 int serrno = errno;
be41c100 1267 error_setg(errp, "Failed setting size (in blocks)");
798bfe00
FZ
1268 return -serrno;
1269 }
1270
004a89fc 1271 if (ioctl(fd, NBD_SET_FLAGS, (unsigned long) info->flags) < 0) {
798bfe00 1272 if (errno == ENOTTY) {
004a89fc 1273 int read_only = (info->flags & NBD_FLAG_READ_ONLY) != 0;
9588463e 1274 trace_nbd_init_set_readonly();
798bfe00
FZ
1275
1276 if (ioctl(fd, BLKROSET, (unsigned long) &read_only) < 0) {
1277 int serrno = errno;
be41c100 1278 error_setg(errp, "Failed setting read-only attribute");
798bfe00
FZ
1279 return -serrno;
1280 }
1281 } else {
1282 int serrno = errno;
be41c100 1283 error_setg(errp, "Failed setting flags");
798bfe00
FZ
1284 return -serrno;
1285 }
1286 }
1287
9588463e 1288 trace_nbd_init_finish();
798bfe00
FZ
1289
1290 return 0;
1291}
1292
1293int nbd_client(int fd)
1294{
1295 int ret;
1296 int serrno;
1297
9588463e 1298 trace_nbd_client_loop();
798bfe00
FZ
1299
1300 ret = ioctl(fd, NBD_DO_IT);
1301 if (ret < 0 && errno == EPIPE) {
1302 /* NBD_DO_IT normally returns EPIPE when someone has disconnected
1303 * the socket via NBD_DISCONNECT. We do not want to return 1 in
1304 * that case.
1305 */
1306 ret = 0;
1307 }
1308 serrno = errno;
1309
9588463e 1310 trace_nbd_client_loop_ret(ret, strerror(serrno));
798bfe00 1311
9588463e 1312 trace_nbd_client_clear_queue();
798bfe00
FZ
1313 ioctl(fd, NBD_CLEAR_QUE);
1314
9588463e 1315 trace_nbd_client_clear_socket();
798bfe00
FZ
1316 ioctl(fd, NBD_CLEAR_SOCK);
1317
1318 errno = serrno;
1319 return ret;
1320}
98494e3b
EB
1321
1322int nbd_disconnect(int fd)
1323{
1324 ioctl(fd, NBD_CLEAR_QUE);
1325 ioctl(fd, NBD_DISCONNECT);
1326 ioctl(fd, NBD_CLEAR_SOCK);
1327 return 0;
1328}
1329
3c1fa35d 1330#endif /* __linux__ */
798bfe00 1331
490dc5ed 1332int nbd_send_request(QIOChannel *ioc, NBDRequest *request)
798bfe00
FZ
1333{
1334 uint8_t buf[NBD_REQUEST_SIZE];
798bfe00 1335
9588463e 1336 trace_nbd_send_request(request->from, request->len, request->handle,
48000eb3
EB
1337 request->flags, request->type,
1338 nbd_cmd_lookup(request->type));
7548fe31 1339
f6be6720 1340 stl_be_p(buf, NBD_REQUEST_MAGIC);
b626b51a
EB
1341 stw_be_p(buf + 4, request->flags);
1342 stw_be_p(buf + 6, request->type);
f6be6720
PM
1343 stq_be_p(buf + 8, request->handle);
1344 stq_be_p(buf + 16, request->from);
1345 stl_be_p(buf + 24, request->len);
798bfe00 1346
d1fdf257 1347 return nbd_write(ioc, buf, sizeof(buf), NULL);
798bfe00
FZ
1348}
1349
d2febedb
VSO
1350/* nbd_receive_simple_reply
1351 * Read simple reply except magic field (which should be already read).
1352 * Payload is not read (payload is possible for CMD_READ, but here we even
1353 * don't know whether it take place or not).
1354 */
1355static int nbd_receive_simple_reply(QIOChannel *ioc, NBDSimpleReply *reply,
1356 Error **errp)
1357{
1358 int ret;
1359
1360 assert(reply->magic == NBD_SIMPLE_REPLY_MAGIC);
1361
1362 ret = nbd_read(ioc, (uint8_t *)reply + sizeof(reply->magic),
1363 sizeof(*reply) - sizeof(reply->magic), errp);
1364 if (ret < 0) {
1365 return ret;
1366 }
1367
80c7c2b0
PM
1368 reply->error = be32_to_cpu(reply->error);
1369 reply->handle = be64_to_cpu(reply->handle);
d2febedb
VSO
1370
1371 return 0;
1372}
1373
1374/* nbd_receive_structured_reply_chunk
1375 * Read structured reply chunk except magic field (which should be already
1376 * read).
1377 * Payload is not read.
1378 */
1379static int nbd_receive_structured_reply_chunk(QIOChannel *ioc,
1380 NBDStructuredReplyChunk *chunk,
1381 Error **errp)
1382{
1383 int ret;
1384
1385 assert(chunk->magic == NBD_STRUCTURED_REPLY_MAGIC);
1386
1387 ret = nbd_read(ioc, (uint8_t *)chunk + sizeof(chunk->magic),
1388 sizeof(*chunk) - sizeof(chunk->magic), errp);
1389 if (ret < 0) {
1390 return ret;
1391 }
1392
80c7c2b0
PM
1393 chunk->flags = be16_to_cpu(chunk->flags);
1394 chunk->type = be16_to_cpu(chunk->type);
1395 chunk->handle = be64_to_cpu(chunk->handle);
1396 chunk->length = be32_to_cpu(chunk->length);
d2febedb
VSO
1397
1398 return 0;
1399}
1400
ba845644
VSO
1401/* nbd_receive_reply
1402 * Returns 1 on success
1403 * 0 on eof, when no data was read (errp is not set)
1404 * negative errno on failure (errp is set)
1405 */
1406int nbd_receive_reply(QIOChannel *ioc, NBDReply *reply, Error **errp)
798bfe00 1407{
ba845644 1408 int ret;
079d3266 1409 const char *type;
798bfe00 1410
d2febedb 1411 ret = nbd_read_eof(ioc, &reply->magic, sizeof(reply->magic), errp);
ff82911c 1412 if (ret <= 0) {
798bfe00
FZ
1413 return ret;
1414 }
1415
80c7c2b0 1416 reply->magic = be32_to_cpu(reply->magic);
798bfe00 1417
d2febedb
VSO
1418 switch (reply->magic) {
1419 case NBD_SIMPLE_REPLY_MAGIC:
1420 ret = nbd_receive_simple_reply(ioc, &reply->simple, errp);
1421 if (ret < 0) {
1422 break;
1423 }
d2febedb
VSO
1424 trace_nbd_receive_simple_reply(reply->simple.error,
1425 nbd_err_lookup(reply->simple.error),
1426 reply->handle);
d2febedb
VSO
1427 break;
1428 case NBD_STRUCTURED_REPLY_MAGIC:
1429 ret = nbd_receive_structured_reply_chunk(ioc, &reply->structured, errp);
1430 if (ret < 0) {
1431 break;
1432 }
079d3266 1433 type = nbd_reply_type_lookup(reply->structured.type);
d2febedb 1434 trace_nbd_receive_structured_reply_chunk(reply->structured.flags,
079d3266 1435 reply->structured.type, type,
d2febedb
VSO
1436 reply->structured.handle,
1437 reply->structured.length);
1438 break;
1439 default:
1440 error_setg(errp, "invalid magic (got 0x%" PRIx32 ")", reply->magic);
b6f5d3b5
EB
1441 return -EINVAL;
1442 }
d2febedb
VSO
1443 if (ret < 0) {
1444 return ret;
798bfe00 1445 }
ba845644
VSO
1446
1447 return 1;
798bfe00
FZ
1448}
1449