2013-12-01 22:23:41 +01:00
|
|
|
#ifndef NBD_CLIENT_H
|
|
|
|
#define NBD_CLIENT_H
|
|
|
|
|
|
|
|
#include "qemu-common.h"
|
|
|
|
#include "block/nbd.h"
|
|
|
|
#include "block/block_int.h"
|
2016-02-10 19:41:01 +01:00
|
|
|
#include "io/channel-socket.h"
|
2013-12-01 22:23:41 +01:00
|
|
|
|
|
|
|
/* #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 {
|
2016-02-10 19:41:01 +01:00
|
|
|
QIOChannelSocket *sioc; /* The master data channel */
|
|
|
|
QIOChannel *ioc; /* The current I/O channel which may differ (eg TLS) */
|
2013-12-01 22:23:41 +01:00
|
|
|
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;
|
|
|
|
|
2015-02-06 22:06:16 +01:00
|
|
|
NbdClientSession *nbd_get_client_session(BlockDriverState *bs);
|
|
|
|
|
2016-02-10 19:41:01 +01:00
|
|
|
int nbd_client_init(BlockDriverState *bs,
|
|
|
|
QIOChannelSocket *sock,
|
|
|
|
const char *export_name,
|
2016-02-10 19:41:12 +01:00
|
|
|
QCryptoTLSCreds *tlscreds,
|
|
|
|
const char *hostname,
|
2015-02-06 22:06:16 +01:00
|
|
|
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,
|
2016-05-04 00:39:08 +02:00
|
|
|
int nb_sectors, QEMUIOVector *qiov, int flags);
|
2015-02-06 22:06:16 +01:00
|
|
|
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);
|
2014-05-08 16:34:43 +02:00
|
|
|
|
2013-12-01 22:23:41 +01:00
|
|
|
#endif /* NBD_CLIENT_H */
|