-
Notifications
You must be signed in to change notification settings - Fork 87
Expand file tree
/
Copy pathtapdisk-message.h
More file actions
337 lines (276 loc) · 9.12 KB
/
Copy pathtapdisk-message.h
File metadata and controls
337 lines (276 loc) · 9.12 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
/*
* Copyright (c) 2016, Citrix Systems, Inc.
*
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* 3. Neither the name of the copyright holder nor the names of its
* contributors may be used to endorse or promote products derived from
* this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER
* OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
* PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
* LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#ifndef _TAPDISK_MESSAGE_H_
#define _TAPDISK_MESSAGE_H_
#include <inttypes.h>
#include <sys/types.h>
/*
* TODO This is quite small since we don't allow path bigger than 256 chars. If
* we ever increase this, make sure tapdisk_message_t structures are not
* allocated on the stack.
*/
#define TAPDISK_MESSAGE_MAX_PATH_LENGTH 256
#define TAPDISK_MESSAGE_STRING_LENGTH 256
#define TAPDISK_MESSAGE_MAX_MINORS \
((TAPDISK_MESSAGE_MAX_PATH_LENGTH / sizeof(int)) - 1)
#define TAPDISK_MESSAGE_FLAG_SHARED 0x001
#define TAPDISK_MESSAGE_FLAG_RDONLY 0x002
#define TAPDISK_MESSAGE_FLAG_ADD_CACHE 0x004
#define TAPDISK_MESSAGE_FLAG_VHD_INDEX 0x008
#define TAPDISK_MESSAGE_FLAG_ADD_LOG 0x010
#define TAPDISK_MESSAGE_FLAG_ADD_LCACHE 0x020
#define TAPDISK_MESSAGE_FLAG_REUSE_PRT 0x040
#define TAPDISK_MESSAGE_FLAG_SECONDARY 0x080
#define TAPDISK_MESSAGE_FLAG_STANDBY 0x100
#define TAPDISK_MESSAGE_FLAG_NO_O_DIRECT 0x200
#define TAPDISK_MESSAGE_FLAG_OPEN_ENCRYPTED 0x400
#define TAPDISK_MESSAGE_FLAG_RATED 0x800
typedef struct tapdisk_message tapdisk_message_t;
typedef uint32_t tapdisk_message_flag_t;
typedef struct tapdisk_message_image tapdisk_message_image_t;
typedef struct tapdisk_message_params tapdisk_message_params_t;
typedef struct tapdisk_message_string tapdisk_message_string_t;
typedef struct tapdisk_message_response tapdisk_message_response_t;
typedef struct tapdisk_message_minors tapdisk_message_minors_t;
typedef struct tapdisk_message_list tapdisk_message_list_t;
typedef struct tapdisk_message_stat tapdisk_message_stat_t;
struct tapdisk_message_params {
tapdisk_message_flag_t flags;
uint32_t devnum;
uint32_t domid;
char path[TAPDISK_MESSAGE_MAX_PATH_LENGTH];
uint32_t prt_devnum;
uint16_t req_timeout;
char secondary[TAPDISK_MESSAGE_MAX_PATH_LENGTH];
};
struct tapdisk_message_image {
uint64_t sectors;
uint32_t sector_size;
uint32_t info;
};
struct tapdisk_message_string {
char text[TAPDISK_MESSAGE_STRING_LENGTH];
};
struct tapdisk_message_response {
int error;
char message[TAPDISK_MESSAGE_STRING_LENGTH];
};
struct tapdisk_message_minors {
int count;
int list[TAPDISK_MESSAGE_MAX_MINORS];
};
struct tapdisk_message_list {
int count;
int minor;
int state;
char path[TAPDISK_MESSAGE_MAX_PATH_LENGTH];
};
struct tapdisk_message_stat {
uint16_t type;
uint16_t cookie;
size_t length;
};
/**
* Tapdisk message containing all the necessary information required for the
* tapdisk to connect to a guest's blkfront.
*/
typedef struct tapdisk_message_blkif {
/**
* The domain ID of the guest to connect to.
*/
uint32_t domid;
/**
* The device ID of the virtual block device.
*/
uint32_t devid;
/**
* Grant references for the shared ring.
* TODO Why 8 specifically?
*/
uint32_t gref[8];
/**
* Number of pages in the ring, expressed as a page order.
*/
uint32_t order;
/**
* Protocol to use: native, 32 bit, or 64 bit. Used for supporting a
* 32-bit domU talking to a 64-bit dom0/domU and vice versa.
*/
uint32_t proto;
/**
* TODO Page pool? Can be NULL.
*/
char pool[TAPDISK_MESSAGE_STRING_LENGTH];
/**
* The event channel port.
*/
uint32_t port;
/**
* Polling duration in microseconds. 0 means no polling.
*/
uint32_t poll_duration;
/**
* Idle CPU threshold above which polling is permitted.
*/
uint32_t poll_idle_threshold;
} tapdisk_message_blkif_t;
/**
* Contains parameters for resuming a previously paused VBD.
*/
typedef struct tapdisk_message_resume {
/**
* TODO
*/
tapdisk_message_flag_t flags;
/**
* A new VDI to use instead of the old one. Optional.
*/
char new_params[TAPDISK_MESSAGE_MAX_PATH_LENGTH];
/**
* TODO
*/
char secondary[TAPDISK_MESSAGE_MAX_PATH_LENGTH];
} tapdisk_message_resume_t;
struct tapdisk_message {
uint16_t type;
uint16_t cookie;
union {
pid_t tapdisk_pid;
tapdisk_message_image_t image;
tapdisk_message_params_t params;
tapdisk_message_string_t string;
tapdisk_message_minors_t minors;
tapdisk_message_response_t response;
tapdisk_message_list_t list;
tapdisk_message_stat_t info;
tapdisk_message_blkif_t blkif;
tapdisk_message_resume_t resume;
} u;
};
enum tapdisk_message_id {
TAPDISK_MESSAGE_ERROR = 1,
TAPDISK_MESSAGE_RUNTIME_ERROR,
TAPDISK_MESSAGE_PID, /* 3 */
TAPDISK_MESSAGE_PID_RSP,
TAPDISK_MESSAGE_ATTACH,
TAPDISK_MESSAGE_ATTACH_RSP,
TAPDISK_MESSAGE_OPEN,
TAPDISK_MESSAGE_OPEN_RSP,
TAPDISK_MESSAGE_PAUSE, /* 9 */
TAPDISK_MESSAGE_PAUSE_RSP,
TAPDISK_MESSAGE_RESUME, /* 11 */
TAPDISK_MESSAGE_RESUME_RSP,
TAPDISK_MESSAGE_CLOSE,
TAPDISK_MESSAGE_CLOSE_RSP,
TAPDISK_MESSAGE_DETACH,
TAPDISK_MESSAGE_DETACH_RSP,
TAPDISK_MESSAGE_LIST_MINORS,
TAPDISK_MESSAGE_LIST_MINORS_RSP,
TAPDISK_MESSAGE_LIST, /* 19 */
TAPDISK_MESSAGE_LIST_RSP,
TAPDISK_MESSAGE_STATS,
TAPDISK_MESSAGE_STATS_RSP,
TAPDISK_MESSAGE_FORCE_SHUTDOWN,
TAPDISK_MESSAGE_XENBLKIF_CONNECT,
TAPDISK_MESSAGE_XENBLKIF_CONNECT_RSP,
TAPDISK_MESSAGE_XENBLKIF_DISCONNECT, /* 26 */
TAPDISK_MESSAGE_XENBLKIF_DISCONNECT_RSP,
TAPDISK_MESSAGE_DISK_INFO,
TAPDISK_MESSAGE_DISK_INFO_RSP,
TAPDISK_MESSAGE_EXIT,
};
#define TAPDISK_MESSAGE_MAX TAPDISK_MESSAGE_EXIT
static inline char *
tapdisk_message_name(enum tapdisk_message_id id)
{
switch (id) {
case TAPDISK_MESSAGE_ERROR:
return "error";
case TAPDISK_MESSAGE_PID:
return "pid";
case TAPDISK_MESSAGE_PID_RSP:
return "pid response";
case TAPDISK_MESSAGE_OPEN:
return "open";
case TAPDISK_MESSAGE_OPEN_RSP:
return "open response";
case TAPDISK_MESSAGE_PAUSE:
return "pause";
case TAPDISK_MESSAGE_PAUSE_RSP:
return "pause response";
case TAPDISK_MESSAGE_RESUME:
return "resume";
case TAPDISK_MESSAGE_RESUME_RSP:
return "resume response";
case TAPDISK_MESSAGE_CLOSE:
return "close";
case TAPDISK_MESSAGE_FORCE_SHUTDOWN:
return "force shutdown";
case TAPDISK_MESSAGE_CLOSE_RSP:
return "close response";
case TAPDISK_MESSAGE_ATTACH:
return "attach";
case TAPDISK_MESSAGE_ATTACH_RSP:
return "attach response";
case TAPDISK_MESSAGE_DETACH:
return "detach";
case TAPDISK_MESSAGE_DETACH_RSP:
return "detach response";
case TAPDISK_MESSAGE_LIST_MINORS:
return "list minors";
case TAPDISK_MESSAGE_LIST_MINORS_RSP:
return "list minors response";
case TAPDISK_MESSAGE_LIST:
return "list";
case TAPDISK_MESSAGE_LIST_RSP:
return "list response";
case TAPDISK_MESSAGE_STATS:
return "stats";
case TAPDISK_MESSAGE_STATS_RSP:
return "stats response";
case TAPDISK_MESSAGE_XENBLKIF_CONNECT:
return "sring connect";
case TAPDISK_MESSAGE_XENBLKIF_CONNECT_RSP:
return "sring connect rsp";
case TAPDISK_MESSAGE_XENBLKIF_DISCONNECT:
return "sring disconnect";
case TAPDISK_MESSAGE_XENBLKIF_DISCONNECT_RSP:
return "sring disconnect rsp";
case TAPDISK_MESSAGE_DISK_INFO:
return "disk info";
case TAPDISK_MESSAGE_DISK_INFO_RSP:
return "disk info rsp";
case TAPDISK_MESSAGE_EXIT:
return "exit";
default:
return "unknown";
}
}
#endif