]> Git Repo - qemu.git/blame - nbd/client.c
nbd/client: Refactor nbd_receive_list()
[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 <[email protected]>
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
8ecaeae8
EB
333/* Returns -1 if NBD_OPT_GO proves the export @wantname cannot be
334 * used, 0 if NBD_OPT_GO is unsupported (fall back to NBD_OPT_LIST and
335 * NBD_OPT_EXPORT_NAME in that case), and > 0 if the export is good to
336 * go (with @info populated). */
337static int nbd_opt_go(QIOChannel *ioc, const char *wantname,
338 NBDExportInfo *info, Error **errp)
339{
420a4e95 340 NBDOptionReply reply;
8ecaeae8
EB
341 uint32_t len = strlen(wantname);
342 uint16_t type;
343 int error;
344 char *buf;
345
346 /* The protocol requires that the server send NBD_INFO_EXPORT with
347 * a non-zero flags (at least NBD_FLAG_HAS_FLAGS must be set); so
348 * flags still 0 is a witness of a broken server. */
349 info->flags = 0;
350
351 trace_nbd_opt_go_start(wantname);
081dd1fe 352 buf = g_malloc(4 + len + 2 + 2 * info->request_sizes + 1);
8ecaeae8
EB
353 stl_be_p(buf, len);
354 memcpy(buf + 4, wantname, len);
081dd1fe
EB
355 /* At most one request, everything else up to server */
356 stw_be_p(buf + 4 + len, info->request_sizes);
357 if (info->request_sizes) {
358 stw_be_p(buf + 4 + len + 2, NBD_INFO_BLOCK_SIZE);
359 }
158b9aa5
PMD
360 error = nbd_send_option_request(ioc, NBD_OPT_GO,
361 4 + len + 2 + 2 * info->request_sizes,
362 buf, errp);
363 g_free(buf);
364 if (error < 0) {
8ecaeae8
EB
365 return -1;
366 }
367
368 while (1) {
369 if (nbd_receive_option_reply(ioc, NBD_OPT_GO, &reply, errp) < 0) {
370 return -1;
371 }
372 error = nbd_handle_reply_err(ioc, &reply, errp);
373 if (error <= 0) {
374 return error;
375 }
376 len = reply.length;
377
378 if (reply.type == NBD_REP_ACK) {
379 /* Server is done sending info and moved into transmission
380 phase, but make sure it sent flags */
381 if (len) {
382 error_setg(errp, "server sent invalid NBD_REP_ACK");
8ecaeae8
EB
383 return -1;
384 }
385 if (!info->flags) {
386 error_setg(errp, "broken server omitted NBD_INFO_EXPORT");
8ecaeae8
EB
387 return -1;
388 }
389 trace_nbd_opt_go_success();
390 return 1;
391 }
392 if (reply.type != NBD_REP_INFO) {
6c5c0351
EB
393 error_setg(errp, "unexpected reply type %u (%s), expected %u (%s)",
394 reply.type, nbd_rep_lookup(reply.type),
395 NBD_REP_INFO, nbd_rep_lookup(NBD_REP_INFO));
8ecaeae8
EB
396 nbd_send_opt_abort(ioc);
397 return -1;
398 }
399 if (len < sizeof(type)) {
400 error_setg(errp, "NBD_REP_INFO length %" PRIu32 " is too short",
401 len);
402 nbd_send_opt_abort(ioc);
403 return -1;
404 }
405 if (nbd_read(ioc, &type, sizeof(type), errp) < 0) {
cb6b1a3f 406 error_prepend(errp, "failed to read info type: ");
8ecaeae8
EB
407 nbd_send_opt_abort(ioc);
408 return -1;
409 }
410 len -= sizeof(type);
80c7c2b0 411 type = be16_to_cpu(type);
8ecaeae8
EB
412 switch (type) {
413 case NBD_INFO_EXPORT:
414 if (len != sizeof(info->size) + sizeof(info->flags)) {
415 error_setg(errp, "remaining export info len %" PRIu32
416 " is unexpected size", len);
417 nbd_send_opt_abort(ioc);
418 return -1;
419 }
420 if (nbd_read(ioc, &info->size, sizeof(info->size), errp) < 0) {
cb6b1a3f 421 error_prepend(errp, "failed to read info size: ");
8ecaeae8
EB
422 nbd_send_opt_abort(ioc);
423 return -1;
424 }
80c7c2b0 425 info->size = be64_to_cpu(info->size);
8ecaeae8 426 if (nbd_read(ioc, &info->flags, sizeof(info->flags), errp) < 0) {
cb6b1a3f 427 error_prepend(errp, "failed to read info flags: ");
8ecaeae8
EB
428 nbd_send_opt_abort(ioc);
429 return -1;
430 }
80c7c2b0 431 info->flags = be16_to_cpu(info->flags);
8ecaeae8
EB
432 trace_nbd_receive_negotiate_size_flags(info->size, info->flags);
433 break;
434
081dd1fe
EB
435 case NBD_INFO_BLOCK_SIZE:
436 if (len != sizeof(info->min_block) * 3) {
437 error_setg(errp, "remaining export info len %" PRIu32
438 " is unexpected size", len);
439 nbd_send_opt_abort(ioc);
440 return -1;
441 }
442 if (nbd_read(ioc, &info->min_block, sizeof(info->min_block),
443 errp) < 0) {
cb6b1a3f 444 error_prepend(errp, "failed to read info minimum block size: ");
081dd1fe
EB
445 nbd_send_opt_abort(ioc);
446 return -1;
447 }
80c7c2b0 448 info->min_block = be32_to_cpu(info->min_block);
081dd1fe 449 if (!is_power_of_2(info->min_block)) {
e475d108
EB
450 error_setg(errp, "server minimum block size %" PRIu32
451 " is not a power of two", info->min_block);
081dd1fe
EB
452 nbd_send_opt_abort(ioc);
453 return -1;
454 }
455 if (nbd_read(ioc, &info->opt_block, sizeof(info->opt_block),
456 errp) < 0) {
cb6b1a3f
EB
457 error_prepend(errp,
458 "failed to read info preferred block size: ");
081dd1fe
EB
459 nbd_send_opt_abort(ioc);
460 return -1;
461 }
80c7c2b0 462 info->opt_block = be32_to_cpu(info->opt_block);
081dd1fe
EB
463 if (!is_power_of_2(info->opt_block) ||
464 info->opt_block < info->min_block) {
e475d108
EB
465 error_setg(errp, "server preferred block size %" PRIu32
466 " is not valid", info->opt_block);
081dd1fe
EB
467 nbd_send_opt_abort(ioc);
468 return -1;
469 }
470 if (nbd_read(ioc, &info->max_block, sizeof(info->max_block),
471 errp) < 0) {
cb6b1a3f 472 error_prepend(errp, "failed to read info maximum block size: ");
081dd1fe
EB
473 nbd_send_opt_abort(ioc);
474 return -1;
475 }
80c7c2b0 476 info->max_block = be32_to_cpu(info->max_block);
e475d108
EB
477 if (info->max_block < info->min_block) {
478 error_setg(errp, "server maximum block size %" PRIu32
479 " is not valid", info->max_block);
480 nbd_send_opt_abort(ioc);
481 return -1;
482 }
081dd1fe
EB
483 trace_nbd_opt_go_info_block_size(info->min_block, info->opt_block,
484 info->max_block);
485 break;
486
8ecaeae8
EB
487 default:
488 trace_nbd_opt_go_info_unknown(type, nbd_info_lookup(type));
489 if (nbd_drop(ioc, len, errp) < 0) {
cb6b1a3f 490 error_prepend(errp, "Failed to read info payload: ");
8ecaeae8
EB
491 nbd_send_opt_abort(ioc);
492 return -1;
493 }
494 break;
495 }
496 }
497}
498
75368aab 499/* Return -1 on failure, 0 if wantname is an available export. */
9344e5f5
DB
500static int nbd_receive_query_exports(QIOChannel *ioc,
501 const char *wantname,
502 Error **errp)
503{
091d0bf3
EB
504 bool list_empty = true;
505 bool found_export = false;
9344e5f5 506
9588463e 507 trace_nbd_receive_query_exports_start(wantname);
c8a3a1b6 508 if (nbd_send_option_request(ioc, NBD_OPT_LIST, 0, NULL, errp) < 0) {
9344e5f5
DB
509 return -1;
510 }
511
9344e5f5 512 while (1) {
091d0bf3
EB
513 char *name;
514 int ret = nbd_receive_list(ioc, &name, NULL, errp);
9344e5f5
DB
515
516 if (ret < 0) {
75368aab 517 /* Server gave unexpected reply */
9344e5f5 518 return -1;
75368aab
EB
519 } else if (ret == 0) {
520 /* Done iterating. */
091d0bf3
EB
521 if (list_empty) {
522 /*
523 * We don't have enough context to tell a server that
524 * sent an empty list apart from a server that does
525 * not support the list command; but as this function
526 * is just used to trigger a nicer error message
527 * before trying NBD_OPT_EXPORT_NAME, assume the
528 * export is available.
529 */
530 return 0;
531 } else if (!found_export) {
75368aab
EB
532 error_setg(errp, "No export with name '%s' available",
533 wantname);
534 nbd_send_opt_abort(ioc);
535 return -1;
536 }
9588463e 537 trace_nbd_receive_query_exports_success(wantname);
75368aab 538 return 0;
9344e5f5 539 }
091d0bf3
EB
540 list_empty = false;
541 if (!strcmp(name, wantname)) {
542 found_export = true;
543 }
544 g_free(name);
9344e5f5 545 }
9344e5f5
DB
546}
547
d795299b
VSO
548/* nbd_request_simple_option: Send an option request, and parse the reply
549 * return 1 for successful negotiation,
550 * 0 if operation is unsupported,
551 * -1 with errp set for any other error
552 */
553static int nbd_request_simple_option(QIOChannel *ioc, int opt, Error **errp)
f95910fe 554{
420a4e95 555 NBDOptionReply reply;
d795299b 556 int error;
f95910fe 557
d795299b
VSO
558 if (nbd_send_option_request(ioc, opt, 0, NULL, errp) < 0) {
559 return -1;
f95910fe
DB
560 }
561
d795299b
VSO
562 if (nbd_receive_option_reply(ioc, opt, &reply, errp) < 0) {
563 return -1;
564 }
565 error = nbd_handle_reply_err(ioc, &reply, errp);
566 if (error <= 0) {
567 return error;
f95910fe 568 }
c8a3a1b6
EB
569
570 if (reply.type != NBD_REP_ACK) {
d795299b 571 error_setg(errp, "Server answered option %d (%s) with unexpected "
28fb494f 572 "reply %" PRIu32 " (%s)", opt, nbd_opt_lookup(opt),
d795299b 573 reply.type, nbd_rep_lookup(reply.type));
2cdbf413 574 nbd_send_opt_abort(ioc);
d795299b 575 return -1;
f95910fe
DB
576 }
577
c8a3a1b6 578 if (reply.length != 0) {
d795299b
VSO
579 error_setg(errp, "Option %d ('%s') response length is %" PRIu32
580 " (it should be zero)", opt, nbd_opt_lookup(opt),
c8a3a1b6 581 reply.length);
2cdbf413 582 nbd_send_opt_abort(ioc);
d795299b
VSO
583 return -1;
584 }
585
586 return 1;
587}
588
589static QIOChannel *nbd_receive_starttls(QIOChannel *ioc,
590 QCryptoTLSCreds *tlscreds,
591 const char *hostname, Error **errp)
592{
593 int ret;
594 QIOChannelTLS *tioc;
595 struct NBDTLSHandshakeData data = { 0 };
596
597 ret = nbd_request_simple_option(ioc, NBD_OPT_STARTTLS, errp);
598 if (ret <= 0) {
599 if (ret == 0) {
600 error_setg(errp, "Server don't support STARTTLS option");
601 nbd_send_opt_abort(ioc);
602 }
f95910fe
DB
603 return NULL;
604 }
605
9588463e 606 trace_nbd_receive_starttls_new_client();
f95910fe
DB
607 tioc = qio_channel_tls_new_client(ioc, tlscreds, hostname, errp);
608 if (!tioc) {
609 return NULL;
610 }
0d73f725 611 qio_channel_set_name(QIO_CHANNEL(tioc), "nbd-client-tls");
f95910fe 612 data.loop = g_main_loop_new(g_main_context_default(), FALSE);
9588463e 613 trace_nbd_receive_starttls_tls_handshake();
f95910fe
DB
614 qio_channel_tls_handshake(tioc,
615 nbd_tls_handshake,
616 &data,
1939ccda 617 NULL,
f95910fe
DB
618 NULL);
619
620 if (!data.complete) {
621 g_main_loop_run(data.loop);
622 }
623 g_main_loop_unref(data.loop);
624 if (data.error) {
625 error_propagate(errp, data.error);
626 object_unref(OBJECT(tioc));
627 return NULL;
628 }
629
630 return QIO_CHANNEL(tioc);
631}
632
78a33ab5
VSO
633/* nbd_negotiate_simple_meta_context:
634 * Set one meta context. Simple means that reply must contain zero (not
635 * negotiated) or one (negotiated) contexts. More contexts would be considered
636 * as a protocol error. It's also implied that meta-data query equals queried
260e34db
EB
637 * context name, so, if server replies with something different than @context,
638 * it is considered an error too.
78a33ab5
VSO
639 * return 1 for successful negotiation, context_id is set
640 * 0 if operation is unsupported,
641 * -1 with errp set for any other error
642 */
643static int nbd_negotiate_simple_meta_context(QIOChannel *ioc,
644 const char *export,
645 const char *context,
646 uint32_t *context_id,
647 Error **errp)
648{
649 int ret;
650 NBDOptionReply reply;
89aa0d87
VSO
651 uint32_t received_id = 0;
652 bool received = false;
78a33ab5
VSO
653 uint32_t export_len = strlen(export);
654 uint32_t context_len = strlen(context);
655 uint32_t data_len = sizeof(export_len) + export_len +
656 sizeof(uint32_t) + /* number of queries */
657 sizeof(context_len) + context_len;
658 char *data = g_malloc(data_len);
659 char *p = data;
660
2b53af25 661 trace_nbd_opt_meta_request(context, export);
78a33ab5
VSO
662 stl_be_p(p, export_len);
663 memcpy(p += sizeof(export_len), export, export_len);
664 stl_be_p(p += export_len, 1);
665 stl_be_p(p += sizeof(uint32_t), context_len);
666 memcpy(p += sizeof(context_len), context, context_len);
667
668 ret = nbd_send_option_request(ioc, NBD_OPT_SET_META_CONTEXT, data_len, data,
669 errp);
670 g_free(data);
671 if (ret < 0) {
672 return ret;
673 }
674
675 if (nbd_receive_option_reply(ioc, NBD_OPT_SET_META_CONTEXT, &reply,
676 errp) < 0)
677 {
678 return -1;
679 }
680
681 ret = nbd_handle_reply_err(ioc, &reply, errp);
682 if (ret <= 0) {
683 return ret;
684 }
685
686 if (reply.type == NBD_REP_META_CONTEXT) {
687 char *name;
260e34db
EB
688
689 if (reply.length != sizeof(received_id) + context_len) {
690 error_setg(errp, "Failed to negotiate meta context '%s', server "
691 "answered with unexpected length %" PRIu32, context,
692 reply.length);
693 nbd_send_opt_abort(ioc);
694 return -1;
695 }
78a33ab5
VSO
696
697 if (nbd_read(ioc, &received_id, sizeof(received_id), errp) < 0) {
698 return -1;
699 }
80c7c2b0 700 received_id = be32_to_cpu(received_id);
78a33ab5 701
260e34db
EB
702 reply.length -= sizeof(received_id);
703 name = g_malloc(reply.length + 1);
704 if (nbd_read(ioc, name, reply.length, errp) < 0) {
78a33ab5
VSO
705 g_free(name);
706 return -1;
707 }
260e34db 708 name[reply.length] = '\0';
78a33ab5
VSO
709 if (strcmp(context, name)) {
710 error_setg(errp, "Failed to negotiate meta context '%s', server "
711 "answered with different context '%s'", context,
712 name);
713 g_free(name);
260e34db 714 nbd_send_opt_abort(ioc);
78a33ab5
VSO
715 return -1;
716 }
717 g_free(name);
718
2b53af25 719 trace_nbd_opt_meta_reply(context, received_id);
78a33ab5
VSO
720 received = true;
721
722 /* receive NBD_REP_ACK */
723 if (nbd_receive_option_reply(ioc, NBD_OPT_SET_META_CONTEXT, &reply,
724 errp) < 0)
725 {
726 return -1;
727 }
728
729 ret = nbd_handle_reply_err(ioc, &reply, errp);
730 if (ret <= 0) {
731 return ret;
732 }
733 }
734
735 if (reply.type != NBD_REP_ACK) {
6c5c0351
EB
736 error_setg(errp, "Unexpected reply type %u (%s), expected %u (%s)",
737 reply.type, nbd_rep_lookup(reply.type),
738 NBD_REP_ACK, nbd_rep_lookup(NBD_REP_ACK));
260e34db
EB
739 nbd_send_opt_abort(ioc);
740 return -1;
741 }
742 if (reply.length) {
743 error_setg(errp, "Unexpected length to ACK response");
744 nbd_send_opt_abort(ioc);
78a33ab5
VSO
745 return -1;
746 }
747
748 if (received) {
749 *context_id = received_id;
750 return 1;
751 }
752
753 return 0;
754}
f95910fe 755
004a89fc 756int nbd_receive_negotiate(QIOChannel *ioc, const char *name,
f95910fe 757 QCryptoTLSCreds *tlscreds, const char *hostname,
004a89fc
EB
758 QIOChannel **outioc, NBDExportInfo *info,
759 Error **errp)
798bfe00 760{
004a89fc 761 uint64_t magic;
798bfe00 762 int rc;
c203c59a 763 bool zeroes = true;
f140e300 764 bool structured_reply = info->structured_reply;
78a33ab5 765 bool base_allocation = info->base_allocation;
798bfe00 766
9588463e 767 trace_nbd_receive_negotiate(tlscreds, hostname ? hostname : "<null>");
798bfe00 768
f140e300 769 info->structured_reply = false;
78a33ab5 770 info->base_allocation = false;
798bfe00
FZ
771 rc = -EINVAL;
772
f95910fe
DB
773 if (outioc) {
774 *outioc = NULL;
775 }
776 if (tlscreds && !outioc) {
777 error_setg(errp, "Output I/O channel required for TLS");
778 goto fail;
779 }
780
ef2e35fc
EB
781 if (nbd_read(ioc, &magic, sizeof(magic), errp) < 0) {
782 error_prepend(errp, "Failed to read initial magic: ");
798bfe00
FZ
783 goto fail;
784 }
ef2e35fc 785 magic = be64_to_cpu(magic);
9588463e 786 trace_nbd_receive_negotiate_magic(magic);
798bfe00 787
ef2e35fc
EB
788 if (magic != NBD_INIT_MAGIC) {
789 error_setg(errp, "Bad initial magic received: 0x%" PRIx64, magic);
798bfe00
FZ
790 goto fail;
791 }
792
d1fdf257 793 if (nbd_read(ioc, &magic, sizeof(magic), errp) < 0) {
ef2e35fc 794 error_prepend(errp, "Failed to read server magic: ");
798bfe00
FZ
795 goto fail;
796 }
797 magic = be64_to_cpu(magic);
9588463e 798 trace_nbd_receive_negotiate_magic(magic);
798bfe00 799
f72d705f 800 if (magic == NBD_OPTS_MAGIC) {
e2a9d9a3 801 uint32_t clientflags = 0;
e2a9d9a3 802 uint16_t globalflags;
9344e5f5 803 bool fixedNewStyle = false;
798bfe00 804
d1fdf257 805 if (nbd_read(ioc, &globalflags, sizeof(globalflags), errp) < 0) {
cb6b1a3f 806 error_prepend(errp, "Failed to read server flags: ");
798bfe00
FZ
807 goto fail;
808 }
9344e5f5 809 globalflags = be16_to_cpu(globalflags);
9588463e 810 trace_nbd_receive_negotiate_server_flags(globalflags);
e2a9d9a3 811 if (globalflags & NBD_FLAG_FIXED_NEWSTYLE) {
9344e5f5 812 fixedNewStyle = true;
e2a9d9a3
DB
813 clientflags |= NBD_FLAG_C_FIXED_NEWSTYLE;
814 }
c203c59a
EB
815 if (globalflags & NBD_FLAG_NO_ZEROES) {
816 zeroes = false;
c203c59a
EB
817 clientflags |= NBD_FLAG_C_NO_ZEROES;
818 }
e2a9d9a3 819 /* client requested flags */
9344e5f5 820 clientflags = cpu_to_be32(clientflags);
d1fdf257 821 if (nbd_write(ioc, &clientflags, sizeof(clientflags), errp) < 0) {
cb6b1a3f 822 error_prepend(errp, "Failed to send clientflags field: ");
798bfe00
FZ
823 goto fail;
824 }
f95910fe
DB
825 if (tlscreds) {
826 if (fixedNewStyle) {
827 *outioc = nbd_receive_starttls(ioc, tlscreds, hostname, errp);
828 if (!*outioc) {
829 goto fail;
830 }
831 ioc = *outioc;
832 } else {
833 error_setg(errp, "Server does not support STARTTLS");
834 goto fail;
835 }
836 }
f72d705f 837 if (!name) {
9588463e 838 trace_nbd_receive_negotiate_default_name();
69b49502 839 name = "";
f72d705f 840 }
9344e5f5 841 if (fixedNewStyle) {
8ecaeae8
EB
842 int result;
843
f140e300
VSO
844 if (structured_reply) {
845 result = nbd_request_simple_option(ioc,
846 NBD_OPT_STRUCTURED_REPLY,
847 errp);
848 if (result < 0) {
849 goto fail;
850 }
851 info->structured_reply = result == 1;
852 }
853
78a33ab5
VSO
854 if (info->structured_reply && base_allocation) {
855 result = nbd_negotiate_simple_meta_context(
216ee365 856 ioc, name, info->x_dirty_bitmap ?: "base:allocation",
78a33ab5
VSO
857 &info->meta_base_allocation_id, errp);
858 if (result < 0) {
859 goto fail;
860 }
861 info->base_allocation = result == 1;
862 }
863
8ecaeae8
EB
864 /* Try NBD_OPT_GO first - if it works, we are done (it
865 * also gives us a good message if the server requires
866 * TLS). If it is not available, fall back to
867 * NBD_OPT_LIST for nicer error messages about a missing
868 * export, then use NBD_OPT_EXPORT_NAME. */
869 result = nbd_opt_go(ioc, name, info, errp);
870 if (result < 0) {
871 goto fail;
872 }
873 if (result > 0) {
874 return 0;
875 }
9344e5f5
DB
876 /* Check our desired export is present in the
877 * server export list. Since NBD_OPT_EXPORT_NAME
878 * cannot return an error message, running this
8ecaeae8
EB
879 * query gives us better error reporting if the
880 * export name is not available.
9344e5f5
DB
881 */
882 if (nbd_receive_query_exports(ioc, name, errp) < 0) {
883 goto fail;
884 }
885 }
c8a3a1b6
EB
886 /* write the export name request */
887 if (nbd_send_option_request(ioc, NBD_OPT_EXPORT_NAME, -1, name,
888 errp) < 0) {
798bfe00
FZ
889 goto fail;
890 }
f72d705f 891
c8a3a1b6 892 /* Read the response */
004a89fc 893 if (nbd_read(ioc, &info->size, sizeof(info->size), errp) < 0) {
cb6b1a3f 894 error_prepend(errp, "Failed to read export length: ");
798bfe00
FZ
895 goto fail;
896 }
80c7c2b0 897 info->size = be64_to_cpu(info->size);
798bfe00 898
004a89fc 899 if (nbd_read(ioc, &info->flags, sizeof(info->flags), errp) < 0) {
cb6b1a3f 900 error_prepend(errp, "Failed to read export flags: ");
f72d705f
DB
901 goto fail;
902 }
80c7c2b0 903 info->flags = be16_to_cpu(info->flags);
f72d705f 904 } else if (magic == NBD_CLIENT_MAGIC) {
7423f417
EB
905 uint32_t oldflags;
906
f72d705f
DB
907 if (name) {
908 error_setg(errp, "Server does not support export names");
909 goto fail;
910 }
f95910fe
DB
911 if (tlscreds) {
912 error_setg(errp, "Server does not support STARTTLS");
913 goto fail;
914 }
f72d705f 915
004a89fc 916 if (nbd_read(ioc, &info->size, sizeof(info->size), errp) < 0) {
cb6b1a3f 917 error_prepend(errp, "Failed to read export length: ");
f72d705f
DB
918 goto fail;
919 }
80c7c2b0 920 info->size = be64_to_cpu(info->size);
798bfe00 921
d1fdf257 922 if (nbd_read(ioc, &oldflags, sizeof(oldflags), errp) < 0) {
cb6b1a3f 923 error_prepend(errp, "Failed to read export flags: ");
798bfe00
FZ
924 goto fail;
925 }
80c7c2b0 926 oldflags = be32_to_cpu(oldflags);
7423f417
EB
927 if (oldflags & ~0xffff) {
928 error_setg(errp, "Unexpected export flags %0x" PRIx32, oldflags);
929 goto fail;
930 }
004a89fc 931 info->flags = oldflags;
798bfe00 932 } else {
ef2e35fc 933 error_setg(errp, "Bad server magic received: 0x%" PRIx64, magic);
f72d705f 934 goto fail;
798bfe00 935 }
f72d705f 936
004a89fc 937 trace_nbd_receive_negotiate_size_flags(info->size, info->flags);
d1fdf257 938 if (zeroes && nbd_drop(ioc, 124, errp) < 0) {
cb6b1a3f 939 error_prepend(errp, "Failed to read reserved block: ");
798bfe00
FZ
940 goto fail;
941 }
942 rc = 0;
943
944fail:
945 return rc;
946}
947
948#ifdef __linux__
004a89fc 949int nbd_init(int fd, QIOChannelSocket *sioc, NBDExportInfo *info,
be41c100 950 Error **errp)
798bfe00 951{
081dd1fe
EB
952 unsigned long sector_size = MAX(BDRV_SECTOR_SIZE, info->min_block);
953 unsigned long sectors = info->size / sector_size;
954
955 /* FIXME: Once the kernel module is patched to honor block sizes,
956 * and to advertise that fact to user space, we should update the
957 * hand-off to the kernel to use any block sizes we learned. */
958 assert(!info->request_sizes);
959 if (info->size / sector_size != sectors) {
004a89fc
EB
960 error_setg(errp, "Export size %" PRIu64 " too large for 32-bit kernel",
961 info->size);
f57e2416
EB
962 return -E2BIG;
963 }
964
9588463e 965 trace_nbd_init_set_socket();
798bfe00 966
f57e2416 967 if (ioctl(fd, NBD_SET_SOCK, (unsigned long) sioc->fd) < 0) {
798bfe00 968 int serrno = errno;
be41c100 969 error_setg(errp, "Failed to set NBD socket");
798bfe00
FZ
970 return -serrno;
971 }
972
081dd1fe 973 trace_nbd_init_set_block_size(sector_size);
798bfe00 974
081dd1fe 975 if (ioctl(fd, NBD_SET_BLKSIZE, sector_size) < 0) {
798bfe00 976 int serrno = errno;
be41c100 977 error_setg(errp, "Failed setting NBD block size");
798bfe00
FZ
978 return -serrno;
979 }
980
9588463e 981 trace_nbd_init_set_size(sectors);
081dd1fe
EB
982 if (info->size % sector_size) {
983 trace_nbd_init_trailing_bytes(info->size % sector_size);
f57e2416 984 }
798bfe00 985
f57e2416 986 if (ioctl(fd, NBD_SET_SIZE_BLOCKS, sectors) < 0) {
798bfe00 987 int serrno = errno;
be41c100 988 error_setg(errp, "Failed setting size (in blocks)");
798bfe00
FZ
989 return -serrno;
990 }
991
004a89fc 992 if (ioctl(fd, NBD_SET_FLAGS, (unsigned long) info->flags) < 0) {
798bfe00 993 if (errno == ENOTTY) {
004a89fc 994 int read_only = (info->flags & NBD_FLAG_READ_ONLY) != 0;
9588463e 995 trace_nbd_init_set_readonly();
798bfe00
FZ
996
997 if (ioctl(fd, BLKROSET, (unsigned long) &read_only) < 0) {
998 int serrno = errno;
be41c100 999 error_setg(errp, "Failed setting read-only attribute");
798bfe00
FZ
1000 return -serrno;
1001 }
1002 } else {
1003 int serrno = errno;
be41c100 1004 error_setg(errp, "Failed setting flags");
798bfe00
FZ
1005 return -serrno;
1006 }
1007 }
1008
9588463e 1009 trace_nbd_init_finish();
798bfe00
FZ
1010
1011 return 0;
1012}
1013
1014int nbd_client(int fd)
1015{
1016 int ret;
1017 int serrno;
1018
9588463e 1019 trace_nbd_client_loop();
798bfe00
FZ
1020
1021 ret = ioctl(fd, NBD_DO_IT);
1022 if (ret < 0 && errno == EPIPE) {
1023 /* NBD_DO_IT normally returns EPIPE when someone has disconnected
1024 * the socket via NBD_DISCONNECT. We do not want to return 1 in
1025 * that case.
1026 */
1027 ret = 0;
1028 }
1029 serrno = errno;
1030
9588463e 1031 trace_nbd_client_loop_ret(ret, strerror(serrno));
798bfe00 1032
9588463e 1033 trace_nbd_client_clear_queue();
798bfe00
FZ
1034 ioctl(fd, NBD_CLEAR_QUE);
1035
9588463e 1036 trace_nbd_client_clear_socket();
798bfe00
FZ
1037 ioctl(fd, NBD_CLEAR_SOCK);
1038
1039 errno = serrno;
1040 return ret;
1041}
98494e3b
EB
1042
1043int nbd_disconnect(int fd)
1044{
1045 ioctl(fd, NBD_CLEAR_QUE);
1046 ioctl(fd, NBD_DISCONNECT);
1047 ioctl(fd, NBD_CLEAR_SOCK);
1048 return 0;
1049}
1050
3c1fa35d 1051#endif /* __linux__ */
798bfe00 1052
490dc5ed 1053int nbd_send_request(QIOChannel *ioc, NBDRequest *request)
798bfe00
FZ
1054{
1055 uint8_t buf[NBD_REQUEST_SIZE];
798bfe00 1056
9588463e 1057 trace_nbd_send_request(request->from, request->len, request->handle,
48000eb3
EB
1058 request->flags, request->type,
1059 nbd_cmd_lookup(request->type));
7548fe31 1060
f6be6720 1061 stl_be_p(buf, NBD_REQUEST_MAGIC);
b626b51a
EB
1062 stw_be_p(buf + 4, request->flags);
1063 stw_be_p(buf + 6, request->type);
f6be6720
PM
1064 stq_be_p(buf + 8, request->handle);
1065 stq_be_p(buf + 16, request->from);
1066 stl_be_p(buf + 24, request->len);
798bfe00 1067
d1fdf257 1068 return nbd_write(ioc, buf, sizeof(buf), NULL);
798bfe00
FZ
1069}
1070
d2febedb
VSO
1071/* nbd_receive_simple_reply
1072 * Read simple reply except magic field (which should be already read).
1073 * Payload is not read (payload is possible for CMD_READ, but here we even
1074 * don't know whether it take place or not).
1075 */
1076static int nbd_receive_simple_reply(QIOChannel *ioc, NBDSimpleReply *reply,
1077 Error **errp)
1078{
1079 int ret;
1080
1081 assert(reply->magic == NBD_SIMPLE_REPLY_MAGIC);
1082
1083 ret = nbd_read(ioc, (uint8_t *)reply + sizeof(reply->magic),
1084 sizeof(*reply) - sizeof(reply->magic), errp);
1085 if (ret < 0) {
1086 return ret;
1087 }
1088
80c7c2b0
PM
1089 reply->error = be32_to_cpu(reply->error);
1090 reply->handle = be64_to_cpu(reply->handle);
d2febedb
VSO
1091
1092 return 0;
1093}
1094
1095/* nbd_receive_structured_reply_chunk
1096 * Read structured reply chunk except magic field (which should be already
1097 * read).
1098 * Payload is not read.
1099 */
1100static int nbd_receive_structured_reply_chunk(QIOChannel *ioc,
1101 NBDStructuredReplyChunk *chunk,
1102 Error **errp)
1103{
1104 int ret;
1105
1106 assert(chunk->magic == NBD_STRUCTURED_REPLY_MAGIC);
1107
1108 ret = nbd_read(ioc, (uint8_t *)chunk + sizeof(chunk->magic),
1109 sizeof(*chunk) - sizeof(chunk->magic), errp);
1110 if (ret < 0) {
1111 return ret;
1112 }
1113
80c7c2b0
PM
1114 chunk->flags = be16_to_cpu(chunk->flags);
1115 chunk->type = be16_to_cpu(chunk->type);
1116 chunk->handle = be64_to_cpu(chunk->handle);
1117 chunk->length = be32_to_cpu(chunk->length);
d2febedb
VSO
1118
1119 return 0;
1120}
1121
ba845644
VSO
1122/* nbd_receive_reply
1123 * Returns 1 on success
1124 * 0 on eof, when no data was read (errp is not set)
1125 * negative errno on failure (errp is set)
1126 */
1127int nbd_receive_reply(QIOChannel *ioc, NBDReply *reply, Error **errp)
798bfe00 1128{
ba845644 1129 int ret;
079d3266 1130 const char *type;
798bfe00 1131
d2febedb 1132 ret = nbd_read_eof(ioc, &reply->magic, sizeof(reply->magic), errp);
ff82911c 1133 if (ret <= 0) {
798bfe00
FZ
1134 return ret;
1135 }
1136
80c7c2b0 1137 reply->magic = be32_to_cpu(reply->magic);
798bfe00 1138
d2febedb
VSO
1139 switch (reply->magic) {
1140 case NBD_SIMPLE_REPLY_MAGIC:
1141 ret = nbd_receive_simple_reply(ioc, &reply->simple, errp);
1142 if (ret < 0) {
1143 break;
1144 }
d2febedb
VSO
1145 trace_nbd_receive_simple_reply(reply->simple.error,
1146 nbd_err_lookup(reply->simple.error),
1147 reply->handle);
d2febedb
VSO
1148 break;
1149 case NBD_STRUCTURED_REPLY_MAGIC:
1150 ret = nbd_receive_structured_reply_chunk(ioc, &reply->structured, errp);
1151 if (ret < 0) {
1152 break;
1153 }
079d3266 1154 type = nbd_reply_type_lookup(reply->structured.type);
d2febedb 1155 trace_nbd_receive_structured_reply_chunk(reply->structured.flags,
079d3266 1156 reply->structured.type, type,
d2febedb
VSO
1157 reply->structured.handle,
1158 reply->structured.length);
1159 break;
1160 default:
1161 error_setg(errp, "invalid magic (got 0x%" PRIx32 ")", reply->magic);
b6f5d3b5
EB
1162 return -EINVAL;
1163 }
d2febedb
VSO
1164 if (ret < 0) {
1165 return ret;
798bfe00 1166 }
ba845644
VSO
1167
1168 return 1;
798bfe00
FZ
1169}
1170
This page took 0.339669 seconds and 4 git commands to generate.