nbd-client.h 1.7 KB
Newer Older
M
Marc-André Lureau 已提交
1 2 3 4 5 6
#ifndef NBD_CLIENT_H
#define NBD_CLIENT_H

#include "qemu-common.h"
#include "block/nbd.h"
#include "block/block_int.h"
7
#include "io/channel-socket.h"
M
Marc-André Lureau 已提交
8 9 10 11 12 13 14 15 16 17 18 19 20

/* #define DEBUG_NBD */

#if defined(DEBUG_NBD)
#define logout(fmt, ...) \
    fprintf(stderr, "nbd\t%-24s" fmt, __func__, ##__VA_ARGS__)
#else
#define logout(fmt, ...) ((void)0)
#endif

#define MAX_NBD_REQUESTS    16

typedef struct NbdClientSession {
21 22
    QIOChannelSocket *sioc; /* The master data channel */
    QIOChannel *ioc; /* The current I/O channel which may differ (eg TLS) */
M
Marc-André Lureau 已提交
23 24 25 26 27 28 29 30 31 32 33 34 35 36
    uint32_t nbdflags;
    off_t size;

    CoMutex send_mutex;
    CoMutex free_sema;
    Coroutine *send_coroutine;
    int in_flight;

    Coroutine *recv_coroutine[MAX_NBD_REQUESTS];
    struct nbd_reply reply;

    bool is_unix;
} NbdClientSession;

M
Max Reitz 已提交
37 38
NbdClientSession *nbd_get_client_session(BlockDriverState *bs);

39 40 41
int nbd_client_init(BlockDriverState *bs,
                    QIOChannelSocket *sock,
                    const char *export_name,
42 43
                    QCryptoTLSCreds *tlscreds,
                    const char *hostname,
M
Max Reitz 已提交
44 45 46 47 48 49 50
                    Error **errp);
void nbd_client_close(BlockDriverState *bs);

int nbd_client_co_discard(BlockDriverState *bs, int64_t sector_num,
                          int nb_sectors);
int nbd_client_co_flush(BlockDriverState *bs);
int nbd_client_co_writev(BlockDriverState *bs, int64_t sector_num,
K
Kevin Wolf 已提交
51
                         int nb_sectors, QEMUIOVector *qiov, int *flags);
M
Max Reitz 已提交
52 53 54 55 56 57
int nbd_client_co_readv(BlockDriverState *bs, int64_t sector_num,
                        int nb_sectors, QEMUIOVector *qiov);

void nbd_client_detach_aio_context(BlockDriverState *bs);
void nbd_client_attach_aio_context(BlockDriverState *bs,
                                   AioContext *new_context);
58

M
Marc-André Lureau 已提交
59
#endif /* NBD_CLIENT_H */