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
/* 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)
{
E
Eric Blake 已提交
93
    ssize_t ret = 0;
94 95 96
    char small[1024];
    char *buffer;

97
    buffer = sizeof(small) >= size ? small : g_malloc(MIN(65536, size));
98
    while (size > 0) {
E
Eric Blake 已提交
99 100 101
        ssize_t count = read_sync(ioc, buffer, MIN(65536, size));

        if (count <= 0) {
102 103
            goto cleanup;
        }
E
Eric Blake 已提交
104 105 106
        assert(count <= size);
        size -= count;
        ret += count;
107 108 109 110 111 112 113 114 115
    }

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

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 151
/* 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;
}

152 153 154 155 156 157 158 159 160 161 162 163 164
/* 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);
}


165 166 167 168 169 170 171 172 173 174
/* 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");
175
        nbd_send_opt_abort(ioc);
176 177 178 179 180 181 182 183 184
        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);
185

186 187
    if (reply->magic != NBD_REP_MAGIC) {
        error_setg(errp, "Unexpected option reply magic");
188
        nbd_send_opt_abort(ioc);
189 190 191 192 193
        return -1;
    }
    if (reply->option != opt) {
        error_setg(errp, "Unexpected option type %x expected %x",
                   reply->option, opt);
194
        nbd_send_opt_abort(ioc);
195 196 197 198 199 200 201 202 203 204
        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.
A
Alex Bligh 已提交
205
 */
206
static int nbd_handle_reply_err(QIOChannel *ioc, nbd_opt_reply *reply,
A
Alex Bligh 已提交
207
                                Error **errp)
208
{
A
Alex Bligh 已提交
209 210 211
    char *msg = NULL;
    int result = -1;

212
    if (!(reply->type & (1 << 31))) {
A
Alex Bligh 已提交
213 214 215
        return 1;
    }

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

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

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

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

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

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

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

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

A
Alex Bligh 已提交
267 268 269 270 271 272
    if (msg) {
        error_append_hint(errp, "%s\n", msg);
    }

 cleanup:
    g_free(msg);
273 274 275
    if (result < 0) {
        nbd_send_opt_abort(ioc);
    }
A
Alex Bligh 已提交
276
    return result;
277 278
}

279 280 281 282 283 284 285
/* 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)
286
{
287
    nbd_opt_reply reply;
288 289
    uint32_t len;
    uint32_t namelen;
290
    char name[NBD_MAX_NAME_SIZE + 1];
A
Alex Bligh 已提交
291
    int error;
292

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

305
    if (reply.type == NBD_REP_ACK) {
306 307
        if (len != 0) {
            error_setg(errp, "length too long for option end");
308
            nbd_send_opt_abort(ioc);
309 310
            return -1;
        }
311 312 313 314 315 316 317
        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;
    }
318

319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336
    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)) {
337
        if (drop_sync(ioc, len) != len) {
338
            error_setg(errp, "failed to skip export name with wrong length");
339 340
            nbd_send_opt_abort(ioc);
            return -1;
341
        }
342 343 344 345 346 347 348 349 350 351 352 353 354
        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");
355
        nbd_send_opt_abort(ioc);
356 357
        return -1;
    }
358 359 360
    if (!strcmp(name, want)) {
        *match = true;
    }
361 362 363 364
    return 1;
}


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

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

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

        if (ret < 0) {
382
            /* Server gave unexpected reply */
383
            return -1;
384 385 386 387 388 389 390 391 392 393
        } 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;
394 395 396 397
        }
    }
}

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

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

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

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

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

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


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

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

    rc = -EINVAL;

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

480
    if (read_sync(ioc, buf, 8) != 8) {
F
Fam Zheng 已提交
481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505
        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;
    }

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

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

518 519
        if (read_sync(ioc, &globalflags, sizeof(globalflags)) !=
            sizeof(globalflags)) {
F
Fam Zheng 已提交
520 521 522
            error_setg(errp, "Failed to read server flags");
            goto fail;
        }
523
        globalflags = be16_to_cpu(globalflags);
524
        TRACE("Global flags are %" PRIx32, globalflags);
525
        if (globalflags & NBD_FLAG_FIXED_NEWSTYLE) {
526
            fixedNewStyle = true;
527 528 529
            TRACE("Server supports fixed new style");
            clientflags |= NBD_FLAG_C_FIXED_NEWSTYLE;
        }
E
Eric Blake 已提交
530 531 532 533 534
        if (globalflags & NBD_FLAG_NO_ZEROES) {
            zeroes = false;
            TRACE("Server supports no zeroes");
            clientflags |= NBD_FLAG_C_NO_ZEROES;
        }
535
        /* client requested flags */
536
        clientflags = cpu_to_be32(clientflags);
537 538 539
        if (write_sync(ioc, &clientflags, sizeof(clientflags)) !=
            sizeof(clientflags)) {
            error_setg(errp, "Failed to send clientflags field");
F
Fam Zheng 已提交
540 541
            goto fail;
        }
542 543 544 545 546 547 548 549 550 551 552 553
        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;
            }
        }
554
        if (!name) {
555 556
            TRACE("Using default NBD export name \"\"");
            name = "";
557
        }
558 559 560 561 562 563 564 565 566 567 568
        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;
            }
        }
569 570 571
        /* write the export name request */
        if (nbd_send_option_request(ioc, NBD_OPT_EXPORT_NAME, -1, name,
                                    errp) < 0) {
F
Fam Zheng 已提交
572 573
            goto fail;
        }
574

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

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

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

        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 已提交
605

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

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

fail:
    return rc;
}

#ifdef __linux__
E
Eric Blake 已提交
633
int nbd_init(int fd, QIOChannelSocket *sioc, uint16_t flags, off_t size)
F
Fam Zheng 已提交
634
{
635 636 637 638 639 640
    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 已提交
641 642
    TRACE("Setting NBD socket");

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

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

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

657 658 659 660 661
    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 已提交
662

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

669
    if (ioctl(fd, NBD_SET_FLAGS, (unsigned long) flags) < 0) {
F
Fam Zheng 已提交
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 718
        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;
}
719 720 721 722 723 724 725 726 727

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

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

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

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

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

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

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

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

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

780
    ret = read_sync(ioc, buf, sizeof(buf));
781
    if (ret <= 0) {
F
Fam Zheng 已提交
782 783 784 785 786 787 788 789 790 791 792 793 794 795
        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
     */

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

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

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

    if (magic != NBD_REPLY_MAGIC) {
812
        LOG("invalid magic (got 0x%" PRIx32 ")", magic);
F
Fam Zheng 已提交
813 814 815 816 817
        return -EINVAL;
    }
    return 0;
}