nbd-client.c 12.1 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
#include "nbd-client.h"

34 35
#define HANDLE_TO_INDEX(bs, handle) ((handle) ^ (uint64_t)(intptr_t)(bs))
#define INDEX_TO_HANDLE(bs, index)  ((index)  ^ (uint64_t)(intptr_t)(bs))
M
Marc-André Lureau 已提交
36

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

    for (i = 0; i < MAX_NBD_REQUESTS; i++) {
42 43 44 45
        NBDClientRequest *req = &s->requests[i];

        if (req->coroutine && req->receiving) {
            aio_co_wake(req->coroutine);
46 47 48 49
        }
    }
}

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

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

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

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

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

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

88 89 90 91 92
        /* 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);
93 94
        if (i >= MAX_NBD_REQUESTS ||
            !s->requests[i].coroutine ||
95 96 97
            !s->requests[i].receiving ||
            nbd_reply_is_structured(&s->reply))
        {
98 99
            break;
        }
M
Marc-André Lureau 已提交
100

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

116
    s->quit = true;
117
    nbd_recv_coroutines_wake_all(s);
118
    s->read_reply_co = NULL;
M
Marc-André Lureau 已提交
119 120
}

M
Max Reitz 已提交
121
static int nbd_co_send_request(BlockDriverState *bs,
122
                               NBDRequest *request,
E
Eric Blake 已提交
123
                               QEMUIOVector *qiov)
M
Marc-André Lureau 已提交
124
{
125
    NBDClientSession *s = nbd_get_client_session(bs);
126
    int rc, i;
M
Marc-André Lureau 已提交
127 128

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

    for (i = 0; i < MAX_NBD_REQUESTS; i++) {
135
        if (s->requests[i].coroutine == NULL) {
B
Bin Wu 已提交
136 137 138 139
            break;
        }
    }

140
    g_assert(qemu_in_coroutine());
B
Bin Wu 已提交
141
    assert(i < MAX_NBD_REQUESTS);
142 143 144 145

    s->requests[i].coroutine = qemu_coroutine_self();
    s->requests[i].receiving = false;

B
Bin Wu 已提交
146
    request->handle = INDEX_TO_HANDLE(s, i);
147

148
    if (s->quit) {
149 150
        rc = -EIO;
        goto err;
151
    }
152
    if (!s->ioc) {
153 154
        rc = -EPIPE;
        goto err;
155 156
    }

M
Marc-André Lureau 已提交
157
    if (qiov) {
158
        qio_channel_set_cork(s->ioc, true);
159
        rc = nbd_send_request(s->ioc, request);
160
        if (rc >= 0 && !s->quit) {
161 162
            if (qio_channel_writev_all(s->ioc, qiov->iov, qiov->niov,
                                       NULL) < 0) {
M
Marc-André Lureau 已提交
163 164
                rc = -EIO;
            }
165 166
        } else if (rc >= 0) {
            rc = -EIO;
M
Marc-André Lureau 已提交
167
        }
168
        qio_channel_set_cork(s->ioc, false);
M
Marc-André Lureau 已提交
169
    } else {
170
        rc = nbd_send_request(s->ioc, request);
M
Marc-André Lureau 已提交
171
    }
172 173

err:
174 175
    if (rc < 0) {
        s->quit = true;
176 177 178
        s->requests[i].coroutine = NULL;
        s->in_flight--;
        qemu_co_queue_next(&s->free_sema);
179
    }
M
Marc-André Lureau 已提交
180 181 182 183
    qemu_co_mutex_unlock(&s->send_mutex);
    return rc;
}

184
static int nbd_co_receive_reply(NBDClientSession *s,
185
                                uint64_t handle,
186
                                QEMUIOVector *qiov)
M
Marc-André Lureau 已提交
187
{
188
    int ret;
189
    int i = HANDLE_TO_INDEX(s, handle);
M
Marc-André Lureau 已提交
190

191
    /* Wait until we're woken up by nbd_read_reply_entry.  */
192
    s->requests[i].receiving = true;
M
Marc-André Lureau 已提交
193
    qemu_coroutine_yield();
194
    s->requests[i].receiving = false;
195
    if (!s->ioc || s->quit) {
196
        ret = -EIO;
M
Marc-André Lureau 已提交
197
    } else {
198
        assert(s->reply.handle == handle);
199 200
        ret = -nbd_errno_to_system_errno(s->reply.simple.error);
        if (qiov && ret == 0) {
201 202
            if (qio_channel_readv_all(s->ioc, qiov->iov, qiov->niov,
                                      NULL) < 0) {
203
                ret = -EIO;
204
                s->quit = true;
M
Marc-André Lureau 已提交
205 206 207 208 209 210
            }
        }

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

212
    s->requests[i].coroutine = NULL;
213 214 215 216

    /* 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 已提交
217
    }
218 219 220 221 222

    qemu_co_mutex_lock(&s->send_mutex);
    s->in_flight--;
    qemu_co_queue_next(&s->free_sema);
    qemu_co_mutex_unlock(&s->send_mutex);
223 224

    return ret;
M
Marc-André Lureau 已提交
225 226
}

227 228 229 230 231 232 233
static int nbd_co_request(BlockDriverState *bs,
                          NBDRequest *request,
                          QEMUIOVector *qiov)
{
    NBDClientSession *client = nbd_get_client_session(bs);
    int ret;

234 235 236 237 238 239
    if (qiov) {
        assert(request->type == NBD_CMD_WRITE || request->type == NBD_CMD_READ);
        assert(request->len == iov_size(qiov->iov, qiov->niov));
    } else {
        assert(request->type != NBD_CMD_WRITE && request->type != NBD_CMD_READ);
    }
240 241 242
    ret = nbd_co_send_request(bs, request,
                              request->type == NBD_CMD_WRITE ? qiov : NULL);
    if (ret < 0) {
243
        return ret;
244
    }
245

246
    return nbd_co_receive_reply(client, request->handle,
247
                                request->type == NBD_CMD_READ ? qiov : NULL);
248 249
}

250 251
int nbd_client_co_preadv(BlockDriverState *bs, uint64_t offset,
                         uint64_t bytes, QEMUIOVector *qiov, int flags)
M
Marc-André Lureau 已提交
252
{
253
    NBDRequest request = {
254 255 256 257
        .type = NBD_CMD_READ,
        .from = offset,
        .len = bytes,
    };
M
Marc-André Lureau 已提交
258

259 260
    assert(bytes <= NBD_MAX_BUFFER_SIZE);
    assert(!flags);
M
Marc-André Lureau 已提交
261

262
    return nbd_co_request(bs, &request, qiov);
M
Marc-André Lureau 已提交
263 264
}

265 266
int nbd_client_co_pwritev(BlockDriverState *bs, uint64_t offset,
                          uint64_t bytes, QEMUIOVector *qiov, int flags)
M
Marc-André Lureau 已提交
267
{
268
    NBDClientSession *client = nbd_get_client_session(bs);
269
    NBDRequest request = {
270 271 272 273
        .type = NBD_CMD_WRITE,
        .from = offset,
        .len = bytes,
    };
M
Marc-André Lureau 已提交
274

E
Eric Blake 已提交
275
    if (flags & BDRV_REQ_FUA) {
276
        assert(client->info.flags & NBD_FLAG_SEND_FUA);
277
        request.flags |= NBD_CMD_FLAG_FUA;
M
Marc-André Lureau 已提交
278 279
    }

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

282
    return nbd_co_request(bs, &request, qiov);
M
Marc-André Lureau 已提交
283 284
}

285
int nbd_client_co_pwrite_zeroes(BlockDriverState *bs, int64_t offset,
286
                                int bytes, BdrvRequestFlags flags)
287 288 289 290 291
{
    NBDClientSession *client = nbd_get_client_session(bs);
    NBDRequest request = {
        .type = NBD_CMD_WRITE_ZEROES,
        .from = offset,
292
        .len = bytes,
293 294
    };

295
    if (!(client->info.flags & NBD_FLAG_SEND_WRITE_ZEROES)) {
296 297 298 299
        return -ENOTSUP;
    }

    if (flags & BDRV_REQ_FUA) {
300
        assert(client->info.flags & NBD_FLAG_SEND_FUA);
301 302 303 304 305 306
        request.flags |= NBD_CMD_FLAG_FUA;
    }
    if (!(flags & BDRV_REQ_MAY_UNMAP)) {
        request.flags |= NBD_CMD_FLAG_NO_HOLE;
    }

307
    return nbd_co_request(bs, &request, NULL);
308 309
}

M
Max Reitz 已提交
310
int nbd_client_co_flush(BlockDriverState *bs)
M
Marc-André Lureau 已提交
311
{
312
    NBDClientSession *client = nbd_get_client_session(bs);
313
    NBDRequest request = { .type = NBD_CMD_FLUSH };
M
Marc-André Lureau 已提交
314

315
    if (!(client->info.flags & NBD_FLAG_SEND_FLUSH)) {
M
Marc-André Lureau 已提交
316 317 318 319 320 321
        return 0;
    }

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

322
    return nbd_co_request(bs, &request, NULL);
M
Marc-André Lureau 已提交
323 324
}

325
int nbd_client_co_pdiscard(BlockDriverState *bs, int64_t offset, int bytes)
M
Marc-André Lureau 已提交
326
{
327
    NBDClientSession *client = nbd_get_client_session(bs);
328
    NBDRequest request = {
329 330
        .type = NBD_CMD_TRIM,
        .from = offset,
331
        .len = bytes,
332
    };
M
Marc-André Lureau 已提交
333

334
    if (!(client->info.flags & NBD_FLAG_SEND_TRIM)) {
M
Marc-André Lureau 已提交
335 336 337
        return 0;
    }

338
    return nbd_co_request(bs, &request, NULL);
M
Marc-André Lureau 已提交
339 340
}

M
Max Reitz 已提交
341
void nbd_client_detach_aio_context(BlockDriverState *bs)
342
{
343
    NBDClientSession *client = nbd_get_client_session(bs);
P
Paolo Bonzini 已提交
344
    qio_channel_detach_aio_context(QIO_CHANNEL(client->ioc));
345 346
}

M
Max Reitz 已提交
347 348
void nbd_client_attach_aio_context(BlockDriverState *bs,
                                   AioContext *new_context)
349
{
350
    NBDClientSession *client = nbd_get_client_session(bs);
P
Paolo Bonzini 已提交
351
    qio_channel_attach_aio_context(QIO_CHANNEL(client->ioc), new_context);
352
    aio_co_schedule(new_context, client->read_reply_co);
353 354
}

M
Max Reitz 已提交
355
void nbd_client_close(BlockDriverState *bs)
M
Marc-André Lureau 已提交
356
{
357
    NBDClientSession *client = nbd_get_client_session(bs);
358
    NBDRequest request = { .type = NBD_CMD_DISC };
M
Marc-André Lureau 已提交
359

360
    if (client->ioc == NULL) {
361 362 363
        return;
    }

364
    nbd_send_request(client->ioc, &request);
365

M
Max Reitz 已提交
366
    nbd_teardown_connection(bs);
M
Marc-André Lureau 已提交
367 368
}

369 370 371 372 373 374
int nbd_client_init(BlockDriverState *bs,
                    QIOChannelSocket *sioc,
                    const char *export,
                    QCryptoTLSCreds *tlscreds,
                    const char *hostname,
                    Error **errp)
M
Marc-André Lureau 已提交
375
{
376
    NBDClientSession *client = nbd_get_client_session(bs);
M
Marc-André Lureau 已提交
377 378 379
    int ret;

    /* NBD handshake */
380
    logout("session init %s\n", export);
381 382
    qio_channel_set_blocking(QIO_CHANNEL(sioc), true, NULL);

383
    client->info.request_sizes = true;
384
    ret = nbd_receive_negotiate(QIO_CHANNEL(sioc), export,
385
                                tlscreds, hostname,
386
                                &client->ioc, &client->info, errp);
M
Marc-André Lureau 已提交
387 388 389 390
    if (ret < 0) {
        logout("Failed to negotiate with the NBD server\n");
        return ret;
    }
391
    if (client->info.flags & NBD_FLAG_SEND_FUA) {
392
        bs->supported_write_flags = BDRV_REQ_FUA;
393 394
        bs->supported_zero_flags |= BDRV_REQ_FUA;
    }
395
    if (client->info.flags & NBD_FLAG_SEND_WRITE_ZEROES) {
396
        bs->supported_zero_flags |= BDRV_REQ_MAY_UNMAP;
397
    }
398 399 400
    if (client->info.min_block > bs->bl.request_alignment) {
        bs->bl.request_alignment = client->info.min_block;
    }
M
Marc-André Lureau 已提交
401 402

    qemu_co_mutex_init(&client->send_mutex);
403
    qemu_co_queue_init(&client->free_sema);
404 405
    client->sioc = sioc;
    object_ref(OBJECT(client->sioc));
406 407 408 409 410

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

    /* Now that we're connected, set the socket to be non-blocking and
     * kick the reply mechanism.  */
414
    qio_channel_set_blocking(QIO_CHANNEL(sioc), false, NULL);
415
    client->read_reply_co = qemu_coroutine_create(nbd_read_reply_entry, client);
M
Max Reitz 已提交
416
    nbd_client_attach_aio_context(bs, bdrv_get_aio_context(bs));
M
Marc-André Lureau 已提交
417 418 419 420

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