nbd-client.h 2.0 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 21 22 23 24
typedef struct {
    Coroutine *coroutine;
    bool receiving;         /* waiting for read_reply_co? */
} NBDClientRequest;

25
typedef struct NBDClientSession {
26 27
    QIOChannelSocket *sioc; /* The master data channel */
    QIOChannel *ioc; /* The current I/O channel which may differ (eg TLS) */
28
    NBDExportInfo info;
M
Marc-André Lureau 已提交
29 30

    CoMutex send_mutex;
31
    CoQueue free_sema;
32
    Coroutine *read_reply_co;
M
Marc-André Lureau 已提交
33 34
    int in_flight;

35
    NBDClientRequest requests[MAX_NBD_REQUESTS];
36
    NBDReply reply;
37
    bool quit;
38
} NBDClientSession;
M
Marc-André Lureau 已提交
39

40
NBDClientSession *nbd_get_client_session(BlockDriverState *bs);
M
Max Reitz 已提交
41

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

50
int nbd_client_co_pdiscard(BlockDriverState *bs, int64_t offset, int bytes);
M
Max Reitz 已提交
51
int nbd_client_co_flush(BlockDriverState *bs);
52 53
int nbd_client_co_pwritev(BlockDriverState *bs, uint64_t offset,
                          uint64_t bytes, QEMUIOVector *qiov, int flags);
54
int nbd_client_co_pwrite_zeroes(BlockDriverState *bs, int64_t offset,
55
                                int bytes, BdrvRequestFlags flags);
56 57
int nbd_client_co_preadv(BlockDriverState *bs, uint64_t offset,
                         uint64_t bytes, QEMUIOVector *qiov, int flags);
M
Max Reitz 已提交
58 59 60 61

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

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