nbd-client.h 1.8 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

/* #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

20
typedef struct NBDClientSession {
21 22
    QIOChannelSocket *sioc; /* The master data channel */
    QIOChannel *ioc; /* The current I/O channel which may differ (eg TLS) */
E
Eric Blake 已提交
23
    uint16_t nbdflags;
M
Marc-André Lureau 已提交
24 25 26
    off_t size;

    CoMutex send_mutex;
27
    CoQueue free_sema;
28
    Coroutine *read_reply_co;
M
Marc-André Lureau 已提交
29 30 31
    int in_flight;

    Coroutine *recv_coroutine[MAX_NBD_REQUESTS];
32
    NBDReply reply;
33
} NBDClientSession;
M
Marc-André Lureau 已提交
34

35
NBDClientSession *nbd_get_client_session(BlockDriverState *bs);
M
Max Reitz 已提交
36

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

45
int nbd_client_co_pdiscard(BlockDriverState *bs, int64_t offset, int bytes);
M
Max Reitz 已提交
46
int nbd_client_co_flush(BlockDriverState *bs);
47 48
int nbd_client_co_pwritev(BlockDriverState *bs, uint64_t offset,
                          uint64_t bytes, QEMUIOVector *qiov, int flags);
49
int nbd_client_co_pwrite_zeroes(BlockDriverState *bs, int64_t offset,
50
                                int bytes, BdrvRequestFlags flags);
51 52
int nbd_client_co_preadv(BlockDriverState *bs, uint64_t offset,
                         uint64_t bytes, QEMUIOVector *qiov, int flags);
M
Max Reitz 已提交
53 54 55 56

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

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