1
2
3
4
5
6
7
8
9
10#ifndef NBD_INTERNAL_H
11#define NBD_INTERNAL_H
12#include "block/nbd.h"
13#include "sysemu/block-backend.h"
14#include "io/channel-tls.h"
15
16#include "qemu/coroutine.h"
17#include "qemu/iov.h"
18
19#ifndef _WIN32
20#include <sys/ioctl.h>
21#endif
22#ifdef HAVE_SYS_IOCCOM_H
23#include <sys/ioccom.h>
24#endif
25
26#ifdef __linux__
27#include <linux/fs.h>
28#endif
29
30#include "qemu/bswap.h"
31
32
33
34
35
36
37
38
39#define NBD_REQUEST_SIZE (4 + 2 + 2 + 8 + 8 + 4)
40
41#define NBD_REPLY_SIZE (4 + 4 + 8)
42
43#define NBD_REPLY_EXPORT_NAME_SIZE (8 + 2 + 124)
44
45#define NBD_OLDSTYLE_NEGOTIATE_SIZE (8 + 8 + 8 + 4 + 124)
46
47#define NBD_INIT_MAGIC 0x4e42444d41474943LL
48#define NBD_REQUEST_MAGIC 0x25609513
49#define NBD_OPTS_MAGIC 0x49484156454F5054LL
50#define NBD_CLIENT_MAGIC 0x0000420281861253LL
51#define NBD_REP_MAGIC 0x0003e889045565a9LL
52
53#define NBD_SET_SOCK _IO(0xab, 0)
54#define NBD_SET_BLKSIZE _IO(0xab, 1)
55#define NBD_SET_SIZE _IO(0xab, 2)
56#define NBD_DO_IT _IO(0xab, 3)
57#define NBD_CLEAR_SOCK _IO(0xab, 4)
58#define NBD_CLEAR_QUE _IO(0xab, 5)
59#define NBD_PRINT_DEBUG _IO(0xab, 6)
60#define NBD_SET_SIZE_BLOCKS _IO(0xab, 7)
61#define NBD_DISCONNECT _IO(0xab, 8)
62#define NBD_SET_TIMEOUT _IO(0xab, 9)
63#define NBD_SET_FLAGS _IO(0xab, 10)
64
65
66
67
68static inline int nbd_write(QIOChannel *ioc, const void *buffer, size_t size,
69 Error **errp)
70{
71 return qio_channel_write_all(ioc, buffer, size, errp) < 0 ? -EIO : 0;
72}
73
74struct NBDTLSHandshakeData {
75 GMainLoop *loop;
76 bool complete;
77 Error *error;
78};
79
80
81void nbd_tls_handshake(QIOTask *task,
82 void *opaque);
83
84int nbd_drop(QIOChannel *ioc, size_t size, Error **errp);
85
86#endif
87