client.c 22.8 KB
Newer Older
F
Fam Zheng 已提交
1
/*
2
 *  Copyright (C) 2016 Red Hat, Inc.
F
Fam Zheng 已提交
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
 *  Copyright (C) 2005  Anthony Liguori <anthony@codemonkey.ws>
 *
 *  Network Block Device Client Side
 *
 *  This program is free software; you can redistribute it and/or modify
 *  it under the terms of the GNU General Public License as published by
 *  the Free Software Foundation; under version 2 of the License.
 *
 *  This program is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *  GNU General Public License for more details.
 *
 *  You should have received a copy of the GNU General Public License
 *  along with this program; if not, see <http://www.gnu.org/licenses/>.
 */

P
Peter Maydell 已提交
20
#include "qemu/osdep.h"
21
#include "qapi/error.h"
F
Fam Zheng 已提交
22 23 24 25
#include "nbd-internal.h"

static int nbd_errno_to_system_errno(int err)
{
26
    int ret;
F
Fam Zheng 已提交
27 28
    switch (err) {
    case NBD_SUCCESS:
29 30
        ret = 0;
        break;
F
Fam Zheng 已提交
31
    case NBD_EPERM:
32 33
        ret = EPERM;
        break;
F
Fam Zheng 已提交
34
    case NBD_EIO:
35 36
        ret = EIO;
        break;
F
Fam Zheng 已提交
37
    case NBD_ENOMEM:
38 39
        ret = ENOMEM;
        break;
F
Fam Zheng 已提交
40
    case NBD_ENOSPC:
41 42
        ret = ENOSPC;
        break;
43 44 45
    case NBD_ESHUTDOWN:
        ret = ESHUTDOWN;
        break;
F
Fam Zheng 已提交
46
    default:
47 48 49
        TRACE("Squashing unexpected error %d to EINVAL", err);
        /* fallthrough */
    case NBD_EINVAL:
50 51
        ret = EINVAL;
        break;
F
Fam Zheng 已提交
52
    }
53
    return ret;
F
Fam Zheng 已提交
54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88
}

/* Definitions for opaque data types */

static QTAILQ_HEAD(, NBDExport) exports = QTAILQ_HEAD_INITIALIZER(exports);

/* That's all folks */

/* Basic flow for negotiation

   Server         Client
   Negotiate

   or

   Server         Client
   Negotiate #1
                  Option
   Negotiate #2

   ----

   followed by

   Server         Client
                  Request
   Response
                  Request
   Response
                  ...
   ...
                  Request (type == 2)

*/

89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114
/* Discard length bytes from channel.  Return -errno on failure, or
 * the amount of bytes consumed. */
static ssize_t drop_sync(QIOChannel *ioc, size_t size)
{
    ssize_t ret, dropped = size;
    char small[1024];
    char *buffer;

    buffer = sizeof(small) < size ? small : g_malloc(MIN(65536, size));
    while (size > 0) {
        ret = read_sync(ioc, buffer, MIN(65536, size));
        if (ret < 0) {
            goto cleanup;
        }
        assert(ret <= size);
        size -= ret;
    }
    ret = dropped;

 cleanup:
    if (buffer != small) {
        g_free(buffer);
    }
    return ret;
}

115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150
/* Send an option request.
 *
 * The request is for option @opt, with @data containing @len bytes of
 * additional payload for the request (@len may be -1 to treat @data as
 * a C string; and @data may be NULL if @len is 0).
 * Return 0 if successful, -1 with errp set if it is impossible to
 * continue. */
static int nbd_send_option_request(QIOChannel *ioc, uint32_t opt,
                                   uint32_t len, const char *data,
                                   Error **errp)
{
    nbd_option req;
    QEMU_BUILD_BUG_ON(sizeof(req) != 16);

    if (len == -1) {
        req.length = len = strlen(data);
    }
    TRACE("Sending option request %" PRIu32", len %" PRIu32, opt, len);

    stq_be_p(&req.magic, NBD_OPTS_MAGIC);
    stl_be_p(&req.option, opt);
    stl_be_p(&req.length, len);

    if (write_sync(ioc, &req, sizeof(req)) != sizeof(req)) {
        error_setg(errp, "Failed to send option request header");
        return -1;
    }

    if (len && write_sync(ioc, (char *) data, len) != len) {
        error_setg(errp, "Failed to send option request data");
        return -1;
    }

    return 0;
}

151 152 153 154 155 156 157 158 159 160 161 162 163
/* Send NBD_OPT_ABORT as a courtesy to let the server know that we are
 * not going to attempt further negotiation. */
static void nbd_send_opt_abort(QIOChannel *ioc)
{
    /* Technically, a compliant server is supposed to reply to us; but
     * older servers disconnected instead. At any rate, we're allowed
     * to disconnect without waiting for the server reply, so we don't
     * even care if the request makes it to the server, let alone
     * waiting around for whether the server replies. */
    nbd_send_option_request(ioc, NBD_OPT_ABORT, 0, NULL, NULL);
}


164 165 166 167 168 169 170 171 172 173
/* Receive the header of an option reply, which should match the given
 * opt.  Read through the length field, but NOT the length bytes of
 * payload. Return 0 if successful, -1 with errp set if it is
 * impossible to continue. */
static int nbd_receive_option_reply(QIOChannel *ioc, uint32_t opt,
                                    nbd_opt_reply *reply, Error **errp)
{
    QEMU_BUILD_BUG_ON(sizeof(*reply) != 20);
    if (read_sync(ioc, reply, sizeof(*reply)) != sizeof(*reply)) {
        error_setg(errp, "failed to read option reply");
174
        nbd_send_opt_abort(ioc);
175 176 177 178 179 180 181 182 183
        return -1;
    }
    be64_to_cpus(&reply->magic);
    be32_to_cpus(&reply->option);
    be32_to_cpus(&reply->type);
    be32_to_cpus(&reply->length);

    TRACE("Received option reply %" PRIx32", type %" PRIx32", len %" PRIu32,
          reply->option, reply->type, reply->length);
184

185 186
    if (reply->magic != NBD_REP_MAGIC) {
        error_setg(errp, "Unexpected option reply magic");
187
        nbd_send_opt_abort(ioc);
188 189 190 191 192
        return -1;
    }
    if (reply->option != opt) {
        error_setg(errp, "Unexpected option type %x expected %x",
                   reply->option, opt);
193
        nbd_send_opt_abort(ioc);
194 195 196 197 198 199 200 201 202 203
        return -1;
    }
    return 0;
}

/* If reply represents success, return 1 without further action.
 * If reply represents an error, consume the optional payload of
 * the packet on ioc.  Then return 0 for unsupported (so the client
 * can fall back to other approaches), or -1 with errp set for other
 * errors.
204
 */
205
static int nbd_handle_reply_err(QIOChannel *ioc, nbd_opt_reply *reply,
206
                                Error **errp)
207
{
208 209 210
    char *msg = NULL;
    int result = -1;

211
    if (!(reply->type & (1 << 31))) {
212 213 214
        return 1;
    }

215 216
    if (reply->length) {
        if (reply->length > NBD_MAX_BUFFER_SIZE) {
217 218 219
            error_setg(errp, "server's error message is too long");
            goto cleanup;
        }
220 221
        msg = g_malloc(reply->length + 1);
        if (read_sync(ioc, msg, reply->length) != reply->length) {
222 223 224
            error_setg(errp, "failed to read option error message");
            goto cleanup;
        }
225
        msg[reply->length] = '\0';
226 227
    }

228
    switch (reply->type) {
229
    case NBD_REP_ERR_UNSUP:
230
        TRACE("server doesn't understand request %" PRIx32
231
              ", attempting fallback", reply->option);
232 233
        result = 0;
        goto cleanup;
234

235
    case NBD_REP_ERR_POLICY:
236 237
        error_setg(errp, "Denied by server for option %" PRIx32,
                   reply->option);
238 239
        break;

240
    case NBD_REP_ERR_INVALID:
241 242
        error_setg(errp, "Invalid data length for option %" PRIx32,
                   reply->option);
243 244
        break;

245 246 247 248 249
    case NBD_REP_ERR_PLATFORM:
        error_setg(errp, "Server lacks support for option %" PRIx32,
                   reply->option);
        break;

250
    case NBD_REP_ERR_TLS_REQD:
251
        error_setg(errp, "TLS negotiation required before option %" PRIx32,
252
                   reply->option);
253 254
        break;

255 256 257 258 259
    case NBD_REP_ERR_SHUTDOWN:
        error_setg(errp, "Server shutting down before option %" PRIx32,
                   reply->option);
        break;

260
    default:
261
        error_setg(errp, "Unknown error code when asking for option %" PRIx32,
262
                   reply->option);
263 264 265
        break;
    }

266 267 268 269 270 271
    if (msg) {
        error_append_hint(errp, "%s\n", msg);
    }

 cleanup:
    g_free(msg);
272 273 274
    if (result < 0) {
        nbd_send_opt_abort(ioc);
    }
275
    return result;
276 277
}

278 279 280 281 282 283 284
/* Process another portion of the NBD_OPT_LIST reply.  Set *@match if
 * the current reply matches @want or if the server does not support
 * NBD_OPT_LIST, otherwise leave @match alone.  Return 0 if iteration
 * is complete, positive if more replies are expected, or negative
 * with @errp set if an unrecoverable error occurred. */
static int nbd_receive_list(QIOChannel *ioc, const char *want, bool *match,
                            Error **errp)
285
{
286
    nbd_opt_reply reply;
287 288
    uint32_t len;
    uint32_t namelen;
289
    char name[NBD_MAX_NAME_SIZE + 1];
290
    int error;
291

292
    if (nbd_receive_option_reply(ioc, NBD_OPT_LIST, &reply, errp) < 0) {
293 294
        return -1;
    }
295
    error = nbd_handle_reply_err(ioc, &reply, errp);
296
    if (error <= 0) {
297 298 299
        /* The server did not support NBD_OPT_LIST, so set *match on
         * the assumption that any name will be accepted.  */
        *match = true;
300
        return error;
301
    }
302
    len = reply.length;
303

304
    if (reply.type == NBD_REP_ACK) {
305 306
        if (len != 0) {
            error_setg(errp, "length too long for option end");
307
            nbd_send_opt_abort(ioc);
308 309
            return -1;
        }
310 311 312 313 314 315 316
        return 0;
    } else if (reply.type != NBD_REP_SERVER) {
        error_setg(errp, "Unexpected reply type %" PRIx32 " expected %x",
                   reply.type, NBD_REP_SERVER);
        nbd_send_opt_abort(ioc);
        return -1;
    }
317

318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335
    if (len < sizeof(namelen) || len > NBD_MAX_BUFFER_SIZE) {
        error_setg(errp, "incorrect option length %" PRIu32, len);
        nbd_send_opt_abort(ioc);
        return -1;
    }
    if (read_sync(ioc, &namelen, sizeof(namelen)) != sizeof(namelen)) {
        error_setg(errp, "failed to read option name length");
        nbd_send_opt_abort(ioc);
        return -1;
    }
    namelen = be32_to_cpu(namelen);
    len -= sizeof(namelen);
    if (len < namelen) {
        error_setg(errp, "incorrect option name length");
        nbd_send_opt_abort(ioc);
        return -1;
    }
    if (namelen != strlen(want)) {
336
        if (drop_sync(ioc, len) != len) {
337
            error_setg(errp, "failed to skip export name with wrong length");
338 339
            nbd_send_opt_abort(ioc);
            return -1;
340
        }
341 342 343 344 345 346 347 348 349 350 351 352 353
        return 1;
    }

    assert(namelen < sizeof(name));
    if (read_sync(ioc, name, namelen) != namelen) {
        error_setg(errp, "failed to read export name");
        nbd_send_opt_abort(ioc);
        return -1;
    }
    name[namelen] = '\0';
    len -= namelen;
    if (drop_sync(ioc, len) != len) {
        error_setg(errp, "failed to read export description");
354
        nbd_send_opt_abort(ioc);
355 356
        return -1;
    }
357 358 359
    if (!strcmp(name, want)) {
        *match = true;
    }
360 361 362 363
    return 1;
}


364
/* Return -1 on failure, 0 if wantname is an available export. */
365 366 367 368 369 370
static int nbd_receive_query_exports(QIOChannel *ioc,
                                     const char *wantname,
                                     Error **errp)
{
    bool foundExport = false;

371
    TRACE("Querying export list for '%s'", wantname);
372
    if (nbd_send_option_request(ioc, NBD_OPT_LIST, 0, NULL, errp) < 0) {
373 374 375 376 377
        return -1;
    }

    TRACE("Reading available export names");
    while (1) {
378
        int ret = nbd_receive_list(ioc, wantname, &foundExport, errp);
379 380

        if (ret < 0) {
381
            /* Server gave unexpected reply */
382
            return -1;
383 384 385 386 387 388 389 390 391 392
        } else if (ret == 0) {
            /* Done iterating. */
            if (!foundExport) {
                error_setg(errp, "No export with name '%s' available",
                           wantname);
                nbd_send_opt_abort(ioc);
                return -1;
            }
            TRACE("Found desired export name '%s'", wantname);
            return 0;
393 394 395 396
        }
    }
}

397 398 399 400
static QIOChannel *nbd_receive_starttls(QIOChannel *ioc,
                                        QCryptoTLSCreds *tlscreds,
                                        const char *hostname, Error **errp)
{
401
    nbd_opt_reply reply;
402 403 404 405
    QIOChannelTLS *tioc;
    struct NBDTLSHandshakeData data = { 0 };

    TRACE("Requesting TLS from server");
406
    if (nbd_send_option_request(ioc, NBD_OPT_STARTTLS, 0, NULL, errp) < 0) {
407 408 409 410
        return NULL;
    }

    TRACE("Getting TLS reply from server");
411
    if (nbd_receive_option_reply(ioc, NBD_OPT_STARTTLS, &reply, errp) < 0) {
412 413
        return NULL;
    }
414 415

    if (reply.type != NBD_REP_ACK) {
416
        error_setg(errp, "Server rejected request to start TLS %" PRIx32,
417
                   reply.type);
418
        nbd_send_opt_abort(ioc);
419 420 421
        return NULL;
    }

422
    if (reply.length != 0) {
423
        error_setg(errp, "Start TLS response was not zero %" PRIu32,
424
                   reply.length);
425
        nbd_send_opt_abort(ioc);
426 427 428 429 430 431 432 433
        return NULL;
    }

    TRACE("TLS request approved, setting up TLS");
    tioc = qio_channel_tls_new_client(ioc, tlscreds, hostname, errp);
    if (!tioc) {
        return NULL;
    }
434
    qio_channel_set_name(QIO_CHANNEL(tioc), "nbd-client-tls");
435
    data.loop = g_main_loop_new(g_main_context_default(), FALSE);
436
    TRACE("Starting TLS handshake");
437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455
    qio_channel_tls_handshake(tioc,
                              nbd_tls_handshake,
                              &data,
                              NULL);

    if (!data.complete) {
        g_main_loop_run(data.loop);
    }
    g_main_loop_unref(data.loop);
    if (data.error) {
        error_propagate(errp, data.error);
        object_unref(OBJECT(tioc));
        return NULL;
    }

    return QIO_CHANNEL(tioc);
}


456
int nbd_receive_negotiate(QIOChannel *ioc, const char *name, uint16_t *flags,
457 458
                          QCryptoTLSCreds *tlscreds, const char *hostname,
                          QIOChannel **outioc,
F
Fam Zheng 已提交
459 460 461 462 463
                          off_t *size, Error **errp)
{
    char buf[256];
    uint64_t magic, s;
    int rc;
464
    bool zeroes = true;
F
Fam Zheng 已提交
465

466 467
    TRACE("Receiving negotiation tlscreds=%p hostname=%s.",
          tlscreds, hostname ? hostname : "<null>");
F
Fam Zheng 已提交
468 469 470

    rc = -EINVAL;

471 472 473 474 475 476 477 478
    if (outioc) {
        *outioc = NULL;
    }
    if (tlscreds && !outioc) {
        error_setg(errp, "Output I/O channel required for TLS");
        goto fail;
    }

479
    if (read_sync(ioc, buf, 8) != 8) {
F
Fam Zheng 已提交
480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504
        error_setg(errp, "Failed to read data");
        goto fail;
    }

    buf[8] = '\0';
    if (strlen(buf) == 0) {
        error_setg(errp, "Server connection closed unexpectedly");
        goto fail;
    }

    TRACE("Magic is %c%c%c%c%c%c%c%c",
          qemu_isprint(buf[0]) ? buf[0] : '.',
          qemu_isprint(buf[1]) ? buf[1] : '.',
          qemu_isprint(buf[2]) ? buf[2] : '.',
          qemu_isprint(buf[3]) ? buf[3] : '.',
          qemu_isprint(buf[4]) ? buf[4] : '.',
          qemu_isprint(buf[5]) ? buf[5] : '.',
          qemu_isprint(buf[6]) ? buf[6] : '.',
          qemu_isprint(buf[7]) ? buf[7] : '.');

    if (memcmp(buf, "NBDMAGIC", 8) != 0) {
        error_setg(errp, "Invalid magic received");
        goto fail;
    }

505
    if (read_sync(ioc, &magic, sizeof(magic)) != sizeof(magic)) {
F
Fam Zheng 已提交
506 507 508 509 510 511
        error_setg(errp, "Failed to read magic");
        goto fail;
    }
    magic = be64_to_cpu(magic);
    TRACE("Magic is 0x%" PRIx64, magic);

512
    if (magic == NBD_OPTS_MAGIC) {
513 514
        uint32_t clientflags = 0;
        uint16_t globalflags;
515
        bool fixedNewStyle = false;
F
Fam Zheng 已提交
516

517 518
        if (read_sync(ioc, &globalflags, sizeof(globalflags)) !=
            sizeof(globalflags)) {
F
Fam Zheng 已提交
519 520 521
            error_setg(errp, "Failed to read server flags");
            goto fail;
        }
522
        globalflags = be16_to_cpu(globalflags);
523
        TRACE("Global flags are %" PRIx32, globalflags);
524
        if (globalflags & NBD_FLAG_FIXED_NEWSTYLE) {
525
            fixedNewStyle = true;
526 527 528
            TRACE("Server supports fixed new style");
            clientflags |= NBD_FLAG_C_FIXED_NEWSTYLE;
        }
529 530 531 532 533
        if (globalflags & NBD_FLAG_NO_ZEROES) {
            zeroes = false;
            TRACE("Server supports no zeroes");
            clientflags |= NBD_FLAG_C_NO_ZEROES;
        }
534
        /* client requested flags */
535
        clientflags = cpu_to_be32(clientflags);
536 537 538
        if (write_sync(ioc, &clientflags, sizeof(clientflags)) !=
            sizeof(clientflags)) {
            error_setg(errp, "Failed to send clientflags field");
F
Fam Zheng 已提交
539 540
            goto fail;
        }
541 542 543 544 545 546 547 548 549 550 551 552
        if (tlscreds) {
            if (fixedNewStyle) {
                *outioc = nbd_receive_starttls(ioc, tlscreds, hostname, errp);
                if (!*outioc) {
                    goto fail;
                }
                ioc = *outioc;
            } else {
                error_setg(errp, "Server does not support STARTTLS");
                goto fail;
            }
        }
553
        if (!name) {
554 555
            TRACE("Using default NBD export name \"\"");
            name = "";
556
        }
557 558 559 560 561 562 563 564 565 566 567
        if (fixedNewStyle) {
            /* Check our desired export is present in the
             * server export list. Since NBD_OPT_EXPORT_NAME
             * cannot return an error message, running this
             * query gives us good error reporting if the
             * server required TLS
             */
            if (nbd_receive_query_exports(ioc, name, errp) < 0) {
                goto fail;
            }
        }
568 569 570
        /* write the export name request */
        if (nbd_send_option_request(ioc, NBD_OPT_EXPORT_NAME, -1, name,
                                    errp) < 0) {
F
Fam Zheng 已提交
571 572
            goto fail;
        }
573

574
        /* Read the response */
575 576
        if (read_sync(ioc, &s, sizeof(s)) != sizeof(s)) {
            error_setg(errp, "Failed to read export length");
F
Fam Zheng 已提交
577 578
            goto fail;
        }
579
        *size = be64_to_cpu(s);
F
Fam Zheng 已提交
580

581
        if (read_sync(ioc, flags, sizeof(*flags)) != sizeof(*flags)) {
582 583 584
            error_setg(errp, "Failed to read export flags");
            goto fail;
        }
585
        be16_to_cpus(flags);
586
    } else if (magic == NBD_CLIENT_MAGIC) {
587 588
        uint32_t oldflags;

589 590 591 592
        if (name) {
            error_setg(errp, "Server does not support export names");
            goto fail;
        }
593 594 595 596
        if (tlscreds) {
            error_setg(errp, "Server does not support STARTTLS");
            goto fail;
        }
597 598 599 600 601 602 603

        if (read_sync(ioc, &s, sizeof(s)) != sizeof(s)) {
            error_setg(errp, "Failed to read export length");
            goto fail;
        }
        *size = be64_to_cpu(s);
        TRACE("Size is %" PRIu64, *size);
F
Fam Zheng 已提交
604

605
        if (read_sync(ioc, &oldflags, sizeof(oldflags)) != sizeof(oldflags)) {
F
Fam Zheng 已提交
606 607 608
            error_setg(errp, "Failed to read export flags");
            goto fail;
        }
609 610 611 612 613 614
        be32_to_cpus(&oldflags);
        if (oldflags & ~0xffff) {
            error_setg(errp, "Unexpected export flags %0x" PRIx32, oldflags);
            goto fail;
        }
        *flags = oldflags;
F
Fam Zheng 已提交
615
    } else {
616 617
        error_setg(errp, "Bad magic received");
        goto fail;
F
Fam Zheng 已提交
618
    }
619

620
    TRACE("Size is %" PRIu64 ", export flags %" PRIx16, *size, *flags);
621
    if (zeroes && drop_sync(ioc, 124) != 124) {
F
Fam Zheng 已提交
622 623 624 625 626 627 628 629 630 631
        error_setg(errp, "Failed to read reserved block");
        goto fail;
    }
    rc = 0;

fail:
    return rc;
}

#ifdef __linux__
632
int nbd_init(int fd, QIOChannelSocket *sioc, uint16_t flags, off_t size)
F
Fam Zheng 已提交
633
{
634 635 636 637 638 639
    unsigned long sectors = size / BDRV_SECTOR_SIZE;
    if (size / BDRV_SECTOR_SIZE != sectors) {
        LOG("Export size %lld too large for 32-bit kernel", (long long) size);
        return -E2BIG;
    }

F
Fam Zheng 已提交
640 641
    TRACE("Setting NBD socket");

642
    if (ioctl(fd, NBD_SET_SOCK, (unsigned long) sioc->fd) < 0) {
F
Fam Zheng 已提交
643 644 645 646 647 648 649
        int serrno = errno;
        LOG("Failed to set NBD socket");
        return -serrno;
    }

    TRACE("Setting block size to %lu", (unsigned long)BDRV_SECTOR_SIZE);

650
    if (ioctl(fd, NBD_SET_BLKSIZE, (unsigned long)BDRV_SECTOR_SIZE) < 0) {
F
Fam Zheng 已提交
651 652 653 654 655
        int serrno = errno;
        LOG("Failed setting NBD block size");
        return -serrno;
    }

656 657 658 659 660
    TRACE("Setting size to %lu block(s)", sectors);
    if (size % BDRV_SECTOR_SIZE) {
        TRACE("Ignoring trailing %d bytes of export",
              (int) (size % BDRV_SECTOR_SIZE));
    }
F
Fam Zheng 已提交
661

662
    if (ioctl(fd, NBD_SET_SIZE_BLOCKS, sectors) < 0) {
F
Fam Zheng 已提交
663 664 665 666 667
        int serrno = errno;
        LOG("Failed setting size (in blocks)");
        return -serrno;
    }

668
    if (ioctl(fd, NBD_SET_FLAGS, (unsigned long) flags) < 0) {
F
Fam Zheng 已提交
669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717
        if (errno == ENOTTY) {
            int read_only = (flags & NBD_FLAG_READ_ONLY) != 0;
            TRACE("Setting readonly attribute");

            if (ioctl(fd, BLKROSET, (unsigned long) &read_only) < 0) {
                int serrno = errno;
                LOG("Failed setting read-only attribute");
                return -serrno;
            }
        } else {
            int serrno = errno;
            LOG("Failed setting flags");
            return -serrno;
        }
    }

    TRACE("Negotiation ended");

    return 0;
}

int nbd_client(int fd)
{
    int ret;
    int serrno;

    TRACE("Doing NBD loop");

    ret = ioctl(fd, NBD_DO_IT);
    if (ret < 0 && errno == EPIPE) {
        /* NBD_DO_IT normally returns EPIPE when someone has disconnected
         * the socket via NBD_DISCONNECT.  We do not want to return 1 in
         * that case.
         */
        ret = 0;
    }
    serrno = errno;

    TRACE("NBD loop returned %d: %s", ret, strerror(serrno));

    TRACE("Clearing NBD queue");
    ioctl(fd, NBD_CLEAR_QUE);

    TRACE("Clearing NBD socket");
    ioctl(fd, NBD_CLEAR_SOCK);

    errno = serrno;
    return ret;
}
718 719 720 721 722 723 724 725 726

int nbd_disconnect(int fd)
{
    ioctl(fd, NBD_CLEAR_QUE);
    ioctl(fd, NBD_DISCONNECT);
    ioctl(fd, NBD_CLEAR_SOCK);
    return 0;
}

F
Fam Zheng 已提交
727
#else
728
int nbd_init(int fd, QIOChannelSocket *ioc, uint16_t flags, off_t size)
F
Fam Zheng 已提交
729 730 731 732 733 734 735 736
{
    return -ENOTSUP;
}

int nbd_client(int fd)
{
    return -ENOTSUP;
}
737 738 739 740
int nbd_disconnect(int fd)
{
    return -ENOTSUP;
}
F
Fam Zheng 已提交
741 742
#endif

743
ssize_t nbd_send_request(QIOChannel *ioc, NBDRequest *request)
F
Fam Zheng 已提交
744 745 746 747
{
    uint8_t buf[NBD_REQUEST_SIZE];
    ssize_t ret;

748
    TRACE("Sending request to server: "
749
          "{ .from = %" PRIu64", .len = %" PRIu32 ", .handle = %" PRIu64
750 751 752
          ", .flags = %" PRIx16 ", .type = %" PRIu16 " }",
          request->from, request->len, request->handle,
          request->flags, request->type);
753

754
    stl_be_p(buf, NBD_REQUEST_MAGIC);
755 756
    stw_be_p(buf + 4, request->flags);
    stw_be_p(buf + 6, request->type);
757 758 759
    stq_be_p(buf + 8, request->handle);
    stq_be_p(buf + 16, request->from);
    stl_be_p(buf + 24, request->len);
F
Fam Zheng 已提交
760

761
    ret = write_sync(ioc, buf, sizeof(buf));
F
Fam Zheng 已提交
762 763 764 765 766 767 768 769 770 771 772
    if (ret < 0) {
        return ret;
    }

    if (ret != sizeof(buf)) {
        LOG("writing to socket failed");
        return -EINVAL;
    }
    return 0;
}

773
ssize_t nbd_receive_reply(QIOChannel *ioc, NBDReply *reply)
F
Fam Zheng 已提交
774 775 776 777 778
{
    uint8_t buf[NBD_REPLY_SIZE];
    uint32_t magic;
    ssize_t ret;

779
    ret = read_sync(ioc, buf, sizeof(buf));
F
Fam Zheng 已提交
780 781 782 783 784 785 786 787 788 789 790 791 792 793 794
    if (ret < 0) {
        return ret;
    }

    if (ret != sizeof(buf)) {
        LOG("read failed");
        return -EINVAL;
    }

    /* Reply
       [ 0 ..  3]    magic   (NBD_REPLY_MAGIC)
       [ 4 ..  7]    error   (0 == no error)
       [ 7 .. 15]    handle
     */

795 796 797
    magic = ldl_be_p(buf);
    reply->error  = ldl_be_p(buf + 4);
    reply->handle = ldq_be_p(buf + 8);
F
Fam Zheng 已提交
798 799 800

    reply->error = nbd_errno_to_system_errno(reply->error);

801 802 803 804 805
    if (reply->error == ESHUTDOWN) {
        /* This works even on mingw which lacks a native ESHUTDOWN */
        LOG("server shutting down");
        return -EINVAL;
    }
806 807
    TRACE("Got reply: { magic = 0x%" PRIx32 ", .error = % " PRId32
          ", handle = %" PRIu64" }",
F
Fam Zheng 已提交
808 809 810
          magic, reply->error, reply->handle);

    if (magic != NBD_REPLY_MAGIC) {
811
        LOG("invalid magic (got 0x%" PRIx32 ")", magic);
F
Fam Zheng 已提交
812 813 814 815 816
        return -EINVAL;
    }
    return 0;
}
反馈
建议
客服 返回
顶部