]>
Commit | Line | Data |
---|---|---|
798bfe00 FZ |
1 | /* |
2 | * NBD Internal Declarations | |
3 | * | |
4 | * Copyright (C) 2016 Red Hat, Inc. | |
5 | * | |
6 | * This work is licensed under the terms of the GNU GPL, version 2 or later. | |
7 | * See the COPYING file in the top-level directory. | |
8 | */ | |
9 | ||
10 | #ifndef NBD_INTERNAL_H | |
11 | #define NBD_INTERNAL_H | |
12 | #include "block/nbd.h" | |
13 | #include "sysemu/block-backend.h" | |
f95910fe | 14 | #include "io/channel-tls.h" |
798bfe00 FZ |
15 | |
16 | #include "qemu/coroutine.h" | |
1c778ef7 | 17 | #include "qemu/iov.h" |
798bfe00 | 18 | |
798bfe00 FZ |
19 | #ifndef _WIN32 |
20 | #include <sys/ioctl.h> | |
21 | #endif | |
22 | #if defined(__sun__) || defined(__HAIKU__) | |
23 | #include <sys/ioccom.h> | |
24 | #endif | |
798bfe00 FZ |
25 | |
26 | #ifdef __linux__ | |
27 | #include <linux/fs.h> | |
28 | #endif | |
29 | ||
58369e22 | 30 | #include "qemu/bswap.h" |
798bfe00 FZ |
31 | #include "qemu/queue.h" |
32 | #include "qemu/main-loop.h" | |
33 | ||
798bfe00 FZ |
34 | /* This is all part of the "official" NBD API. |
35 | * | |
36 | * The most up-to-date documentation is available at: | |
b626b51a | 37 | * https://github.com/yoe/nbd/blob/master/doc/proto.md |
798bfe00 FZ |
38 | */ |
39 | ||
8ecaeae8 | 40 | /* Size of all NBD_OPT_*, without payload */ |
5f66d060 | 41 | #define NBD_REQUEST_SIZE (4 + 2 + 2 + 8 + 8 + 4) |
8ecaeae8 | 42 | /* Size of all NBD_REP_* sent in answer to most NBD_OPT_*, without payload */ |
5f66d060 EB |
43 | #define NBD_REPLY_SIZE (4 + 4 + 8) |
44 | /* Size of reply to NBD_OPT_EXPORT_NAME */ | |
45 | #define NBD_REPLY_EXPORT_NAME_SIZE (8 + 2 + 124) | |
46 | /* Size of oldstyle negotiation */ | |
47 | #define NBD_OLDSTYLE_NEGOTIATE_SIZE (8 + 8 + 8 + 4 + 124) | |
8ecaeae8 | 48 | |
798bfe00 | 49 | #define NBD_REQUEST_MAGIC 0x25609513 |
7b3158f9 | 50 | #define NBD_SIMPLE_REPLY_MAGIC 0x67446698 |
798bfe00 FZ |
51 | #define NBD_OPTS_MAGIC 0x49484156454F5054LL |
52 | #define NBD_CLIENT_MAGIC 0x0000420281861253LL | |
c8a3a1b6 | 53 | #define NBD_REP_MAGIC 0x0003e889045565a9LL |
798bfe00 FZ |
54 | |
55 | #define NBD_SET_SOCK _IO(0xab, 0) | |
56 | #define NBD_SET_BLKSIZE _IO(0xab, 1) | |
57 | #define NBD_SET_SIZE _IO(0xab, 2) | |
58 | #define NBD_DO_IT _IO(0xab, 3) | |
59 | #define NBD_CLEAR_SOCK _IO(0xab, 4) | |
60 | #define NBD_CLEAR_QUE _IO(0xab, 5) | |
61 | #define NBD_PRINT_DEBUG _IO(0xab, 6) | |
62 | #define NBD_SET_SIZE_BLOCKS _IO(0xab, 7) | |
63 | #define NBD_DISCONNECT _IO(0xab, 8) | |
64 | #define NBD_SET_TIMEOUT _IO(0xab, 9) | |
65 | #define NBD_SET_FLAGS _IO(0xab, 10) | |
66 | ||
798bfe00 FZ |
67 | /* NBD errors are based on errno numbers, so there is a 1:1 mapping, |
68 | * but only a limited set of errno values is specified in the protocol. | |
69 | * Everything else is squashed to EINVAL. | |
70 | */ | |
71 | #define NBD_SUCCESS 0 | |
72 | #define NBD_EPERM 1 | |
73 | #define NBD_EIO 5 | |
74 | #define NBD_ENOMEM 12 | |
75 | #define NBD_EINVAL 22 | |
76 | #define NBD_ENOSPC 28 | |
b6f5d3b5 | 77 | #define NBD_ESHUTDOWN 108 |
798bfe00 | 78 | |
d1fdf257 | 79 | /* nbd_read_eof |
ab01df1f VSO |
80 | * Tries to read @size bytes from @ioc. |
81 | * Returns 1 on success | |
82 | * 0 on eof, when no data was read (errp is not set) | |
83 | * negative errno on failure (errp is set) | |
f5d406fe | 84 | */ |
ab01df1f VSO |
85 | static inline int nbd_read_eof(QIOChannel *ioc, void *buffer, size_t size, |
86 | Error **errp) | |
798bfe00 | 87 | { |
030fa7f6 | 88 | int ret; |
ab01df1f VSO |
89 | |
90 | assert(size); | |
030fa7f6 EB |
91 | ret = qio_channel_read_all_eof(ioc, buffer, size, errp); |
92 | if (ret < 0) { | |
93 | ret = -EIO; | |
ab01df1f | 94 | } |
030fa7f6 | 95 | return ret; |
798bfe00 FZ |
96 | } |
97 | ||
d1fdf257 | 98 | /* nbd_read |
f5d406fe VSO |
99 | * Reads @size bytes from @ioc. Returns 0 on success. |
100 | */ | |
d1fdf257 VSO |
101 | static inline int nbd_read(QIOChannel *ioc, void *buffer, size_t size, |
102 | Error **errp) | |
f5d406fe | 103 | { |
030fa7f6 | 104 | return qio_channel_read_all(ioc, buffer, size, errp) < 0 ? -EIO : 0; |
f5d406fe VSO |
105 | } |
106 | ||
d1fdf257 | 107 | /* nbd_write |
f5d406fe VSO |
108 | * Writes @size bytes to @ioc. Returns 0 on success. |
109 | */ | |
d1fdf257 VSO |
110 | static inline int nbd_write(QIOChannel *ioc, const void *buffer, size_t size, |
111 | Error **errp) | |
798bfe00 | 112 | { |
030fa7f6 | 113 | return qio_channel_write_all(ioc, buffer, size, errp) < 0 ? -EIO : 0; |
798bfe00 FZ |
114 | } |
115 | ||
f95910fe DB |
116 | struct NBDTLSHandshakeData { |
117 | GMainLoop *loop; | |
118 | bool complete; | |
119 | Error *error; | |
120 | }; | |
121 | ||
122 | ||
60e705c5 | 123 | void nbd_tls_handshake(QIOTask *task, |
f95910fe | 124 | void *opaque); |
3736cc5b EB |
125 | const char *nbd_opt_lookup(uint32_t opt); |
126 | const char *nbd_rep_lookup(uint32_t rep); | |
127 | const char *nbd_info_lookup(uint16_t info); | |
128 | const char *nbd_cmd_lookup(uint16_t info); | |
f95910fe | 129 | |
44298024 VSO |
130 | int nbd_drop(QIOChannel *ioc, size_t size, Error **errp); |
131 | ||
798bfe00 | 132 | #endif |