nbd-client.h 2.4 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
typedef struct {
    Coroutine *coroutine;
22
    uint64_t offset;        /* original offset of the request */
23 24 25
    bool receiving;         /* waiting for read_reply_co? */
} NBDClientRequest;

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

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

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

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

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

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

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

65 66 67 68 69 70
int coroutine_fn nbd_client_co_block_status(BlockDriverState *bs,
                                            bool want_zero,
                                            int64_t offset, int64_t bytes,
                                            int64_t *pnum, int64_t *map,
                                            BlockDriverState **file);

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