nbd-client.c 12.4 KB
Newer Older
M
Marc-André Lureau 已提交
1 2 3
/*
 * QEMU Block driver for  NBD
 *
4
 * Copyright (C) 2016 Red Hat, Inc.
M
Marc-André Lureau 已提交
5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
 * Copyright (C) 2008 Bull S.A.S.
 *     Author: Laurent Vivier <Laurent.Vivier@bull.net>
 *
 * Some parts:
 *    Copyright (C) 2007 Anthony Liguori <anthony@codemonkey.ws>
 *
 * Permission is hereby granted, free of charge, to any person obtaining a copy
 * of this software and associated documentation files (the "Software"), to deal
 * in the Software without restriction, including without limitation the rights
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 * copies of the Software, and to permit persons to whom the Software is
 * furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included in
 * all copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
 * THE SOFTWARE.
 */

P
Peter Maydell 已提交
30
#include "qemu/osdep.h"
31
#include "qapi/error.h"
M
Marc-André Lureau 已提交
32 33 34 35 36
#include "nbd-client.h"

#define HANDLE_TO_INDEX(bs, handle) ((handle) ^ ((uint64_t)(intptr_t)bs))
#define INDEX_TO_HANDLE(bs, index)  ((index)  ^ ((uint64_t)(intptr_t)bs))

37
static void nbd_recv_coroutines_enter_all(NBDClientSession *s)
38 39 40 41 42
{
    int i;

    for (i = 0; i < MAX_NBD_REQUESTS; i++) {
        if (s->recv_coroutine[i]) {
43
            aio_co_wake(s->recv_coroutine[i]);
44 45 46 47
        }
    }
}

M
Max Reitz 已提交
48
static void nbd_teardown_connection(BlockDriverState *bs)
49
{
50
    NBDClientSession *client = nbd_get_client_session(bs);
M
Max Reitz 已提交
51

52 53 54 55
    if (!client->ioc) { /* Already closed */
        return;
    }

56
    /* finish any pending coroutines */
57 58 59
    qio_channel_shutdown(client->ioc,
                         QIO_CHANNEL_SHUTDOWN_BOTH,
                         NULL);
60
    BDRV_POLL_WHILE(bs, client->read_reply_co);
61

M
Max Reitz 已提交
62
    nbd_client_detach_aio_context(bs);
63 64 65 66
    object_unref(OBJECT(client->sioc));
    client->sioc = NULL;
    object_unref(OBJECT(client->ioc));
    client->ioc = NULL;
67 68
}

69
static coroutine_fn void nbd_read_reply_entry(void *opaque)
M
Marc-André Lureau 已提交
70
{
71
    NBDClientSession *s = opaque;
M
Marc-André Lureau 已提交
72 73
    uint64_t i;
    int ret;
74
    Error *local_err = NULL;
M
Marc-André Lureau 已提交
75

76
    while (!s->quit) {
77
        assert(s->reply.handle == 0);
78 79 80 81
        ret = nbd_receive_reply(s->ioc, &s->reply, &local_err);
        if (ret < 0) {
            error_report_err(local_err);
        }
82
        if (ret <= 0) {
83
            break;
M
Marc-André Lureau 已提交
84 85
        }

86 87 88 89 90 91 92 93
        /* There's no need for a mutex on the receive side, because the
         * handler acts as a synchronization point and ensures that only
         * one coroutine is called until the reply finishes.
         */
        i = HANDLE_TO_INDEX(s, s->reply.handle);
        if (i >= MAX_NBD_REQUESTS || !s->recv_coroutine[i]) {
            break;
        }
M
Marc-André Lureau 已提交
94

95 96 97 98 99 100 101 102 103 104 105 106 107
        /* We're woken up by the recv_coroutine itself.  Note that there
         * is no race between yielding and reentering read_reply_co.  This
         * is because:
         *
         * - if recv_coroutine[i] runs on the same AioContext, it is only
         *   entered after we yield
         *
         * - if recv_coroutine[i] runs on a different AioContext, reentering
         *   read_reply_co happens through a bottom half, which can only
         *   run after we yield.
         */
        aio_co_wake(s->recv_coroutine[i]);
        qemu_coroutine_yield();
M
Marc-André Lureau 已提交
108
    }
109

110 111 112
    if (ret < 0) {
        s->quit = true;
    }
113
    nbd_recv_coroutines_enter_all(s);
114
    s->read_reply_co = NULL;
M
Marc-André Lureau 已提交
115 116
}

M
Max Reitz 已提交
117
static int nbd_co_send_request(BlockDriverState *bs,
118
                               NBDRequest *request,
E
Eric Blake 已提交
119
                               QEMUIOVector *qiov)
M
Marc-André Lureau 已提交
120
{
121
    NBDClientSession *s = nbd_get_client_session(bs);
B
Bin Wu 已提交
122
    int rc, ret, i;
M
Marc-André Lureau 已提交
123 124

    qemu_co_mutex_lock(&s->send_mutex);
125 126 127 128
    while (s->in_flight == MAX_NBD_REQUESTS) {
        qemu_co_queue_wait(&s->free_sema, &s->send_mutex);
    }
    s->in_flight++;
B
Bin Wu 已提交
129 130 131 132 133 134 135 136

    for (i = 0; i < MAX_NBD_REQUESTS; i++) {
        if (s->recv_coroutine[i] == NULL) {
            s->recv_coroutine[i] = qemu_coroutine_self();
            break;
        }
    }

137
    g_assert(qemu_in_coroutine());
B
Bin Wu 已提交
138 139
    assert(i < MAX_NBD_REQUESTS);
    request->handle = INDEX_TO_HANDLE(s, i);
140

141 142 143 144
    if (s->quit) {
        qemu_co_mutex_unlock(&s->send_mutex);
        return -EIO;
    }
145 146 147 148 149
    if (!s->ioc) {
        qemu_co_mutex_unlock(&s->send_mutex);
        return -EPIPE;
    }

M
Marc-André Lureau 已提交
150
    if (qiov) {
151
        qio_channel_set_cork(s->ioc, true);
152
        rc = nbd_send_request(s->ioc, request);
153
        if (rc >= 0 && !s->quit) {
154 155
            ret = nbd_rwv(s->ioc, qiov->iov, qiov->niov, request->len, false,
                          NULL);
M
Marc-André Lureau 已提交
156 157 158 159
            if (ret != request->len) {
                rc = -EIO;
            }
        }
160
        qio_channel_set_cork(s->ioc, false);
M
Marc-André Lureau 已提交
161
    } else {
162
        rc = nbd_send_request(s->ioc, request);
M
Marc-André Lureau 已提交
163
    }
164 165 166
    if (rc < 0) {
        s->quit = true;
    }
M
Marc-André Lureau 已提交
167 168 169 170
    qemu_co_mutex_unlock(&s->send_mutex);
    return rc;
}

171
static void nbd_co_receive_reply(NBDClientSession *s,
172 173
                                 NBDRequest *request,
                                 NBDReply *reply,
E
Eric Blake 已提交
174
                                 QEMUIOVector *qiov)
M
Marc-André Lureau 已提交
175 176 177
{
    int ret;

178
    /* Wait until we're woken up by nbd_read_reply_entry.  */
M
Marc-André Lureau 已提交
179 180
    qemu_coroutine_yield();
    *reply = s->reply;
181
    if (reply->handle != request->handle || !s->ioc || s->quit) {
M
Marc-André Lureau 已提交
182 183 184
        reply->error = EIO;
    } else {
        if (qiov && reply->error == 0) {
185 186
            ret = nbd_rwv(s->ioc, qiov->iov, qiov->niov, request->len, true,
                          NULL);
M
Marc-André Lureau 已提交
187 188 189 190 191 192 193 194 195 196
            if (ret != request->len) {
                reply->error = EIO;
            }
        }

        /* Tell the read handler to read another header.  */
        s->reply.handle = 0;
    }
}

197
static void nbd_coroutine_end(BlockDriverState *bs,
198
                              NBDRequest *request)
M
Marc-André Lureau 已提交
199
{
200
    NBDClientSession *s = nbd_get_client_session(bs);
M
Marc-André Lureau 已提交
201
    int i = HANDLE_TO_INDEX(s, request->handle);
202

M
Marc-André Lureau 已提交
203
    s->recv_coroutine[i] = NULL;
204 205 206 207

    /* Kick the read_reply_co to get the next reply.  */
    if (s->read_reply_co) {
        aio_co_wake(s->read_reply_co);
M
Marc-André Lureau 已提交
208
    }
209 210 211 212 213

    qemu_co_mutex_lock(&s->send_mutex);
    s->in_flight--;
    qemu_co_queue_next(&s->free_sema);
    qemu_co_mutex_unlock(&s->send_mutex);
M
Marc-André Lureau 已提交
214 215
}

216 217
int nbd_client_co_preadv(BlockDriverState *bs, uint64_t offset,
                         uint64_t bytes, QEMUIOVector *qiov, int flags)
M
Marc-André Lureau 已提交
218
{
219
    NBDClientSession *client = nbd_get_client_session(bs);
220
    NBDRequest request = {
221 222 223 224
        .type = NBD_CMD_READ,
        .from = offset,
        .len = bytes,
    };
225
    NBDReply reply;
M
Marc-André Lureau 已提交
226 227
    ssize_t ret;

228 229
    assert(bytes <= NBD_MAX_BUFFER_SIZE);
    assert(!flags);
M
Marc-André Lureau 已提交
230

E
Eric Blake 已提交
231
    ret = nbd_co_send_request(bs, &request, NULL);
M
Marc-André Lureau 已提交
232 233 234
    if (ret < 0) {
        reply.error = -ret;
    } else {
E
Eric Blake 已提交
235
        nbd_co_receive_reply(client, &request, &reply, qiov);
M
Marc-André Lureau 已提交
236
    }
237
    nbd_coroutine_end(bs, &request);
M
Marc-André Lureau 已提交
238 239 240
    return -reply.error;
}

241 242
int nbd_client_co_pwritev(BlockDriverState *bs, uint64_t offset,
                          uint64_t bytes, QEMUIOVector *qiov, int flags)
M
Marc-André Lureau 已提交
243
{
244
    NBDClientSession *client = nbd_get_client_session(bs);
245
    NBDRequest request = {
246 247 248 249
        .type = NBD_CMD_WRITE,
        .from = offset,
        .len = bytes,
    };
250
    NBDReply reply;
M
Marc-André Lureau 已提交
251 252
    ssize_t ret;

E
Eric Blake 已提交
253
    if (flags & BDRV_REQ_FUA) {
254
        assert(client->info.flags & NBD_FLAG_SEND_FUA);
255
        request.flags |= NBD_CMD_FLAG_FUA;
M
Marc-André Lureau 已提交
256 257
    }

258
    assert(bytes <= NBD_MAX_BUFFER_SIZE);
M
Marc-André Lureau 已提交
259

E
Eric Blake 已提交
260
    ret = nbd_co_send_request(bs, &request, qiov);
M
Marc-André Lureau 已提交
261 262 263
    if (ret < 0) {
        reply.error = -ret;
    } else {
E
Eric Blake 已提交
264
        nbd_co_receive_reply(client, &request, &reply, NULL);
M
Marc-André Lureau 已提交
265
    }
266
    nbd_coroutine_end(bs, &request);
M
Marc-André Lureau 已提交
267 268 269
    return -reply.error;
}

270
int nbd_client_co_pwrite_zeroes(BlockDriverState *bs, int64_t offset,
271
                                int bytes, BdrvRequestFlags flags)
272 273 274 275 276 277
{
    ssize_t ret;
    NBDClientSession *client = nbd_get_client_session(bs);
    NBDRequest request = {
        .type = NBD_CMD_WRITE_ZEROES,
        .from = offset,
278
        .len = bytes,
279 280 281
    };
    NBDReply reply;

282
    if (!(client->info.flags & NBD_FLAG_SEND_WRITE_ZEROES)) {
283 284 285 286
        return -ENOTSUP;
    }

    if (flags & BDRV_REQ_FUA) {
287
        assert(client->info.flags & NBD_FLAG_SEND_FUA);
288 289 290 291 292 293 294 295 296 297 298 299
        request.flags |= NBD_CMD_FLAG_FUA;
    }
    if (!(flags & BDRV_REQ_MAY_UNMAP)) {
        request.flags |= NBD_CMD_FLAG_NO_HOLE;
    }

    ret = nbd_co_send_request(bs, &request, NULL);
    if (ret < 0) {
        reply.error = -ret;
    } else {
        nbd_co_receive_reply(client, &request, &reply, NULL);
    }
300
    nbd_coroutine_end(bs, &request);
301 302 303
    return -reply.error;
}

M
Max Reitz 已提交
304
int nbd_client_co_flush(BlockDriverState *bs)
M
Marc-André Lureau 已提交
305
{
306
    NBDClientSession *client = nbd_get_client_session(bs);
307 308
    NBDRequest request = { .type = NBD_CMD_FLUSH };
    NBDReply reply;
M
Marc-André Lureau 已提交
309 310
    ssize_t ret;

311
    if (!(client->info.flags & NBD_FLAG_SEND_FLUSH)) {
M
Marc-André Lureau 已提交
312 313 314 315 316 317
        return 0;
    }

    request.from = 0;
    request.len = 0;

E
Eric Blake 已提交
318
    ret = nbd_co_send_request(bs, &request, NULL);
M
Marc-André Lureau 已提交
319 320 321
    if (ret < 0) {
        reply.error = -ret;
    } else {
E
Eric Blake 已提交
322
        nbd_co_receive_reply(client, &request, &reply, NULL);
M
Marc-André Lureau 已提交
323
    }
324
    nbd_coroutine_end(bs, &request);
M
Marc-André Lureau 已提交
325 326 327
    return -reply.error;
}

328
int nbd_client_co_pdiscard(BlockDriverState *bs, int64_t offset, int bytes)
M
Marc-André Lureau 已提交
329
{
330
    NBDClientSession *client = nbd_get_client_session(bs);
331
    NBDRequest request = {
332 333
        .type = NBD_CMD_TRIM,
        .from = offset,
334
        .len = bytes,
335
    };
336
    NBDReply reply;
M
Marc-André Lureau 已提交
337 338
    ssize_t ret;

339
    if (!(client->info.flags & NBD_FLAG_SEND_TRIM)) {
M
Marc-André Lureau 已提交
340 341 342
        return 0;
    }

E
Eric Blake 已提交
343
    ret = nbd_co_send_request(bs, &request, NULL);
M
Marc-André Lureau 已提交
344 345 346
    if (ret < 0) {
        reply.error = -ret;
    } else {
E
Eric Blake 已提交
347
        nbd_co_receive_reply(client, &request, &reply, NULL);
M
Marc-André Lureau 已提交
348
    }
349
    nbd_coroutine_end(bs, &request);
M
Marc-André Lureau 已提交
350 351 352 353
    return -reply.error;

}

M
Max Reitz 已提交
354
void nbd_client_detach_aio_context(BlockDriverState *bs)
355
{
356
    NBDClientSession *client = nbd_get_client_session(bs);
P
Paolo Bonzini 已提交
357
    qio_channel_detach_aio_context(QIO_CHANNEL(client->ioc));
358 359
}

M
Max Reitz 已提交
360 361
void nbd_client_attach_aio_context(BlockDriverState *bs,
                                   AioContext *new_context)
362
{
363
    NBDClientSession *client = nbd_get_client_session(bs);
P
Paolo Bonzini 已提交
364
    qio_channel_attach_aio_context(QIO_CHANNEL(client->ioc), new_context);
365
    aio_co_schedule(new_context, client->read_reply_co);
366 367
}

M
Max Reitz 已提交
368
void nbd_client_close(BlockDriverState *bs)
M
Marc-André Lureau 已提交
369
{
370
    NBDClientSession *client = nbd_get_client_session(bs);
371
    NBDRequest request = { .type = NBD_CMD_DISC };
M
Marc-André Lureau 已提交
372

373
    if (client->ioc == NULL) {
374 375 376
        return;
    }

377
    nbd_send_request(client->ioc, &request);
378

M
Max Reitz 已提交
379
    nbd_teardown_connection(bs);
M
Marc-André Lureau 已提交
380 381
}

382 383 384 385 386 387
int nbd_client_init(BlockDriverState *bs,
                    QIOChannelSocket *sioc,
                    const char *export,
                    QCryptoTLSCreds *tlscreds,
                    const char *hostname,
                    Error **errp)
M
Marc-André Lureau 已提交
388
{
389
    NBDClientSession *client = nbd_get_client_session(bs);
M
Marc-André Lureau 已提交
390 391 392
    int ret;

    /* NBD handshake */
393
    logout("session init %s\n", export);
394 395
    qio_channel_set_blocking(QIO_CHANNEL(sioc), true, NULL);

396
    client->info.request_sizes = true;
397
    ret = nbd_receive_negotiate(QIO_CHANNEL(sioc), export,
398
                                tlscreds, hostname,
399
                                &client->ioc, &client->info, errp);
M
Marc-André Lureau 已提交
400 401 402 403
    if (ret < 0) {
        logout("Failed to negotiate with the NBD server\n");
        return ret;
    }
404
    if (client->info.flags & NBD_FLAG_SEND_FUA) {
405
        bs->supported_write_flags = BDRV_REQ_FUA;
406 407
        bs->supported_zero_flags |= BDRV_REQ_FUA;
    }
408
    if (client->info.flags & NBD_FLAG_SEND_WRITE_ZEROES) {
409
        bs->supported_zero_flags |= BDRV_REQ_MAY_UNMAP;
410
    }
411 412 413
    if (client->info.min_block > bs->bl.request_alignment) {
        bs->bl.request_alignment = client->info.min_block;
    }
M
Marc-André Lureau 已提交
414 415

    qemu_co_mutex_init(&client->send_mutex);
416
    qemu_co_queue_init(&client->free_sema);
417 418
    client->sioc = sioc;
    object_ref(OBJECT(client->sioc));
419 420 421 422 423

    if (!client->ioc) {
        client->ioc = QIO_CHANNEL(sioc);
        object_ref(OBJECT(client->ioc));
    }
M
Marc-André Lureau 已提交
424 425 426

    /* Now that we're connected, set the socket to be non-blocking and
     * kick the reply mechanism.  */
427
    qio_channel_set_blocking(QIO_CHANNEL(sioc), false, NULL);
428
    client->read_reply_co = qemu_coroutine_create(nbd_read_reply_entry, client);
M
Max Reitz 已提交
429
    nbd_client_attach_aio_context(bs, bdrv_get_aio_context(bs));
M
Marc-André Lureau 已提交
430 431 432 433

    logout("Established connection with NBD server\n");
    return 0;
}