common.c 2.8 KB
Newer Older
F
Fam Zheng 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
/*
 *  Copyright (C) 2005  Anthony Liguori <anthony@codemonkey.ws>
 *
 *  Network Block Device Common Code
 *
 *  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 已提交
19
#include "qemu/osdep.h"
F
Fam Zheng 已提交
20 21
#include "nbd-internal.h"

22 23 24 25 26 27
ssize_t nbd_wr_syncv(QIOChannel *ioc,
                     struct iovec *iov,
                     size_t niov,
                     size_t offset,
                     size_t length,
                     bool do_read)
F
Fam Zheng 已提交
28
{
29 30 31 32 33
    ssize_t done = 0;
    Error *local_err = NULL;
    struct iovec *local_iov = g_new(struct iovec, niov);
    struct iovec *local_iov_head = local_iov;
    unsigned int nlocal_iov = niov;
F
Fam Zheng 已提交
34

35 36 37
    nlocal_iov = iov_copy(local_iov, nlocal_iov,
                          iov, niov,
                          offset, length);
F
Fam Zheng 已提交
38

39
    while (nlocal_iov > 0) {
F
Fam Zheng 已提交
40 41
        ssize_t len;
        if (do_read) {
42
            len = qio_channel_readv(ioc, local_iov, nlocal_iov, &local_err);
F
Fam Zheng 已提交
43
        } else {
44
            len = qio_channel_writev(ioc, local_iov, nlocal_iov, &local_err);
F
Fam Zheng 已提交
45
        }
46 47 48 49 50 51 52 53 54
        if (len == QIO_CHANNEL_ERR_BLOCK) {
            if (qemu_in_coroutine()) {
                /* XXX figure out if we can create a variant on
                 * qio_channel_yield() that works with AIO contexts
                 * and consider using that in this branch */
                qemu_coroutine_yield();
            } else {
                qio_channel_wait(ioc,
                                 do_read ? G_IO_IN : G_IO_OUT);
F
Fam Zheng 已提交
55
            }
56 57 58 59 60 61 62 63
            continue;
        }
        if (len < 0) {
            TRACE("I/O error: %s", error_get_pretty(local_err));
            error_free(local_err);
            /* XXX handle Error objects */
            done = -EIO;
            goto cleanup;
F
Fam Zheng 已提交
64 65
        }

66
        if (do_read && len == 0) {
F
Fam Zheng 已提交
67 68 69
            break;
        }

70 71
        iov_discard_front(&local_iov, &nlocal_iov, len);
        done += len;
F
Fam Zheng 已提交
72 73
    }

74 75 76
 cleanup:
    g_free(local_iov_head);
    return done;
F
Fam Zheng 已提交
77
}
78 79 80 81 82 83 84 85 86 87 88 89 90 91 92


void nbd_tls_handshake(Object *src,
                       Error *err,
                       void *opaque)
{
    struct NBDTLSHandshakeData *data = opaque;

    if (err) {
        TRACE("TLS failed %s", error_get_pretty(err));
        data->error = error_copy(err);
    }
    data->complete = true;
    g_main_loop_quit(data->loop);
}