]> git.proxmox.com Git - qemu.git/blame - block/sheepdog.c
tests: drop event_active_cb()
[qemu.git] / block / sheepdog.c
CommitLineData
33b1db1c
MK
1/*
2 * Copyright (C) 2009-2010 Nippon Telegraph and Telephone Corporation.
3 *
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License version
6 * 2 as published by the Free Software Foundation.
7 *
8 * You should have received a copy of the GNU General Public License
9 * along with this program. If not, see <http://www.gnu.org/licenses/>.
6b620ca3
PB
10 *
11 * Contributions after 2012-01-13 are licensed under the terms of the
12 * GNU GPL, version 2 or (at your option) any later version.
33b1db1c 13 */
33b1db1c
MK
14
15#include "qemu-common.h"
5d6768e3 16#include "qemu/uri.h"
1de7afc9
PB
17#include "qemu/error-report.h"
18#include "qemu/sockets.h"
737e150e 19#include "block/block_int.h"
1de7afc9 20#include "qemu/bitops.h"
33b1db1c
MK
21
22#define SD_PROTO_VER 0x01
23
24#define SD_DEFAULT_ADDR "localhost"
25af257d 25#define SD_DEFAULT_PORT 7000
33b1db1c
MK
26
27#define SD_OP_CREATE_AND_WRITE_OBJ 0x01
28#define SD_OP_READ_OBJ 0x02
29#define SD_OP_WRITE_OBJ 0x03
cac8f4a6
LY
30/* 0x04 is used internally by Sheepdog */
31#define SD_OP_DISCARD_OBJ 0x05
33b1db1c
MK
32
33#define SD_OP_NEW_VDI 0x11
34#define SD_OP_LOCK_VDI 0x12
35#define SD_OP_RELEASE_VDI 0x13
36#define SD_OP_GET_VDI_INFO 0x14
37#define SD_OP_READ_VDIS 0x15
47622c44 38#define SD_OP_FLUSH_VDI 0x16
859e5553 39#define SD_OP_DEL_VDI 0x17
33b1db1c
MK
40
41#define SD_FLAG_CMD_WRITE 0x01
42#define SD_FLAG_CMD_COW 0x02
0e7106d8
LY
43#define SD_FLAG_CMD_CACHE 0x04 /* Writeback mode for cache */
44#define SD_FLAG_CMD_DIRECT 0x08 /* Don't use cache */
33b1db1c
MK
45
46#define SD_RES_SUCCESS 0x00 /* Success */
47#define SD_RES_UNKNOWN 0x01 /* Unknown error */
48#define SD_RES_NO_OBJ 0x02 /* No object found */
49#define SD_RES_EIO 0x03 /* I/O error */
50#define SD_RES_VDI_EXIST 0x04 /* Vdi exists already */
51#define SD_RES_INVALID_PARMS 0x05 /* Invalid parameters */
52#define SD_RES_SYSTEM_ERROR 0x06 /* System error */
53#define SD_RES_VDI_LOCKED 0x07 /* Vdi is locked */
54#define SD_RES_NO_VDI 0x08 /* No vdi found */
55#define SD_RES_NO_BASE_VDI 0x09 /* No base vdi found */
56#define SD_RES_VDI_READ 0x0A /* Cannot read requested vdi */
57#define SD_RES_VDI_WRITE 0x0B /* Cannot write requested vdi */
58#define SD_RES_BASE_VDI_READ 0x0C /* Cannot read base vdi */
59#define SD_RES_BASE_VDI_WRITE 0x0D /* Cannot write base vdi */
60#define SD_RES_NO_TAG 0x0E /* Requested tag is not found */
61#define SD_RES_STARTUP 0x0F /* Sheepdog is on starting up */
62#define SD_RES_VDI_NOT_LOCKED 0x10 /* Vdi is not locked */
63#define SD_RES_SHUTDOWN 0x11 /* Sheepdog is shutting down */
64#define SD_RES_NO_MEM 0x12 /* Cannot allocate memory */
65#define SD_RES_FULL_VDI 0x13 /* we already have the maximum vdis */
66#define SD_RES_VER_MISMATCH 0x14 /* Protocol version mismatch */
67#define SD_RES_NO_SPACE 0x15 /* Server has no room for new objects */
68#define SD_RES_WAIT_FOR_FORMAT 0x16 /* Waiting for a format operation */
69#define SD_RES_WAIT_FOR_JOIN 0x17 /* Waiting for other nodes joining */
70#define SD_RES_JOIN_FAILED 0x18 /* Target node had failed to join sheepdog */
fca23f0a 71#define SD_RES_HALT 0x19 /* Sheepdog is stopped serving IO request */
6a0b5490 72#define SD_RES_READONLY 0x1A /* Object is read-only */
33b1db1c
MK
73
74/*
75 * Object ID rules
76 *
77 * 0 - 19 (20 bits): data object space
78 * 20 - 31 (12 bits): reserved data object space
79 * 32 - 55 (24 bits): vdi object space
80 * 56 - 59 ( 4 bits): reserved vdi object space
7acae208 81 * 60 - 63 ( 4 bits): object type identifier space
33b1db1c
MK
82 */
83
84#define VDI_SPACE_SHIFT 32
85#define VDI_BIT (UINT64_C(1) << 63)
86#define VMSTATE_BIT (UINT64_C(1) << 62)
87#define MAX_DATA_OBJS (UINT64_C(1) << 20)
88#define MAX_CHILDREN 1024
89#define SD_MAX_VDI_LEN 256
90#define SD_MAX_VDI_TAG_LEN 256
91#define SD_NR_VDIS (1U << 24)
92#define SD_DATA_OBJ_SIZE (UINT64_C(1) << 22)
93#define SD_MAX_VDI_SIZE (SD_DATA_OBJ_SIZE * MAX_DATA_OBJS)
33b1db1c
MK
94
95#define SD_INODE_SIZE (sizeof(SheepdogInode))
96#define CURRENT_VDI_ID 0
97
98typedef struct SheepdogReq {
99 uint8_t proto_ver;
100 uint8_t opcode;
101 uint16_t flags;
102 uint32_t epoch;
103 uint32_t id;
104 uint32_t data_length;
105 uint32_t opcode_specific[8];
106} SheepdogReq;
107
108typedef struct SheepdogRsp {
109 uint8_t proto_ver;
110 uint8_t opcode;
111 uint16_t flags;
112 uint32_t epoch;
113 uint32_t id;
114 uint32_t data_length;
115 uint32_t result;
116 uint32_t opcode_specific[7];
117} SheepdogRsp;
118
119typedef struct SheepdogObjReq {
120 uint8_t proto_ver;
121 uint8_t opcode;
122 uint16_t flags;
123 uint32_t epoch;
124 uint32_t id;
125 uint32_t data_length;
126 uint64_t oid;
127 uint64_t cow_oid;
128 uint32_t copies;
129 uint32_t rsvd;
130 uint64_t offset;
131} SheepdogObjReq;
132
133typedef struct SheepdogObjRsp {
134 uint8_t proto_ver;
135 uint8_t opcode;
136 uint16_t flags;
137 uint32_t epoch;
138 uint32_t id;
139 uint32_t data_length;
140 uint32_t result;
141 uint32_t copies;
142 uint32_t pad[6];
143} SheepdogObjRsp;
144
145typedef struct SheepdogVdiReq {
146 uint8_t proto_ver;
147 uint8_t opcode;
148 uint16_t flags;
149 uint32_t epoch;
150 uint32_t id;
151 uint32_t data_length;
152 uint64_t vdi_size;
6f74c260 153 uint32_t vdi_id;
33b1db1c
MK
154 uint32_t copies;
155 uint32_t snapid;
156 uint32_t pad[3];
157} SheepdogVdiReq;
158
159typedef struct SheepdogVdiRsp {
160 uint8_t proto_ver;
161 uint8_t opcode;
162 uint16_t flags;
163 uint32_t epoch;
164 uint32_t id;
165 uint32_t data_length;
166 uint32_t result;
167 uint32_t rsvd;
168 uint32_t vdi_id;
169 uint32_t pad[5];
170} SheepdogVdiRsp;
171
172typedef struct SheepdogInode {
173 char name[SD_MAX_VDI_LEN];
174 char tag[SD_MAX_VDI_TAG_LEN];
175 uint64_t ctime;
176 uint64_t snap_ctime;
177 uint64_t vm_clock_nsec;
178 uint64_t vdi_size;
179 uint64_t vm_state_size;
180 uint16_t copy_policy;
181 uint8_t nr_copies;
182 uint8_t block_size_shift;
183 uint32_t snap_id;
184 uint32_t vdi_id;
185 uint32_t parent_vdi_id;
186 uint32_t child_vdi_id[MAX_CHILDREN];
187 uint32_t data_vdi_id[MAX_DATA_OBJS];
188} SheepdogInode;
189
190/*
191 * 64 bit FNV-1a non-zero initial basis
192 */
193#define FNV1A_64_INIT ((uint64_t)0xcbf29ce484222325ULL)
194
195/*
196 * 64 bit Fowler/Noll/Vo FNV-1a hash code
197 */
198static inline uint64_t fnv_64a_buf(void *buf, size_t len, uint64_t hval)
199{
200 unsigned char *bp = buf;
201 unsigned char *be = bp + len;
202 while (bp < be) {
203 hval ^= (uint64_t) *bp++;
204 hval += (hval << 1) + (hval << 4) + (hval << 5) +
205 (hval << 7) + (hval << 8) + (hval << 40);
206 }
207 return hval;
208}
209
2f536801 210static inline bool is_data_obj_writable(SheepdogInode *inode, unsigned int idx)
33b1db1c
MK
211{
212 return inode->vdi_id == inode->data_vdi_id[idx];
213}
214
2f536801 215static inline bool is_data_obj(uint64_t oid)
33b1db1c
MK
216{
217 return !(VDI_BIT & oid);
218}
219
220static inline uint64_t data_oid_to_idx(uint64_t oid)
221{
222 return oid & (MAX_DATA_OBJS - 1);
223}
224
225static inline uint64_t vid_to_vdi_oid(uint32_t vid)
226{
227 return VDI_BIT | ((uint64_t)vid << VDI_SPACE_SHIFT);
228}
229
230static inline uint64_t vid_to_vmstate_oid(uint32_t vid, uint32_t idx)
231{
232 return VMSTATE_BIT | ((uint64_t)vid << VDI_SPACE_SHIFT) | idx;
233}
234
235static inline uint64_t vid_to_data_oid(uint32_t vid, uint32_t idx)
236{
237 return ((uint64_t)vid << VDI_SPACE_SHIFT) | idx;
238}
239
2f536801 240static inline bool is_snapshot(struct SheepdogInode *inode)
33b1db1c
MK
241{
242 return !!inode->snap_ctime;
243}
244
2440a2c3 245#undef DPRINTF
33b1db1c 246#ifdef DEBUG_SDOG
2440a2c3 247#define DPRINTF(fmt, args...) \
33b1db1c
MK
248 do { \
249 fprintf(stdout, "%s %d: " fmt, __func__, __LINE__, ##args); \
250 } while (0)
251#else
2440a2c3 252#define DPRINTF(fmt, args...)
33b1db1c
MK
253#endif
254
255typedef struct SheepdogAIOCB SheepdogAIOCB;
256
257typedef struct AIOReq {
258 SheepdogAIOCB *aiocb;
259 unsigned int iov_offset;
260
261 uint64_t oid;
262 uint64_t base_oid;
263 uint64_t offset;
264 unsigned int data_len;
265 uint8_t flags;
266 uint32_t id;
267
c292ee6a 268 QLIST_ENTRY(AIOReq) aio_siblings;
33b1db1c
MK
269} AIOReq;
270
271enum AIOCBState {
272 AIOCB_WRITE_UDATA,
273 AIOCB_READ_UDATA,
47783072 274 AIOCB_FLUSH_CACHE,
cac8f4a6 275 AIOCB_DISCARD_OBJ,
33b1db1c
MK
276};
277
278struct SheepdogAIOCB {
279 BlockDriverAIOCB common;
280
281 QEMUIOVector *qiov;
282
283 int64_t sector_num;
284 int nb_sectors;
285
286 int ret;
287 enum AIOCBState aiocb_type;
288
2df46246 289 Coroutine *coroutine;
33b1db1c
MK
290 void (*aio_done_func)(SheepdogAIOCB *);
291
2f536801 292 bool canceled;
1d732d7d 293 int nr_pending;
33b1db1c
MK
294};
295
296typedef struct BDRVSheepdogState {
297 SheepdogInode inode;
298
299 uint32_t min_dirty_data_idx;
300 uint32_t max_dirty_data_idx;
301
302 char name[SD_MAX_VDI_LEN];
2f536801 303 bool is_snapshot;
0e7106d8 304 uint32_t cache_flags;
cac8f4a6 305 bool discard_supported;
33b1db1c 306
25af257d 307 char *host_spec;
1b8bbb46 308 bool is_unix;
33b1db1c
MK
309 int fd;
310
2df46246
MK
311 CoMutex lock;
312 Coroutine *co_send;
313 Coroutine *co_recv;
314
33b1db1c 315 uint32_t aioreq_seq_num;
c292ee6a
MK
316 QLIST_HEAD(inflight_aio_head, AIOReq) inflight_aio_head;
317 QLIST_HEAD(pending_aio_head, AIOReq) pending_aio_head;
33b1db1c
MK
318} BDRVSheepdogState;
319
320static const char * sd_strerror(int err)
321{
322 int i;
323
324 static const struct {
325 int err;
326 const char *desc;
327 } errors[] = {
328 {SD_RES_SUCCESS, "Success"},
329 {SD_RES_UNKNOWN, "Unknown error"},
330 {SD_RES_NO_OBJ, "No object found"},
331 {SD_RES_EIO, "I/O error"},
332 {SD_RES_VDI_EXIST, "VDI exists already"},
333 {SD_RES_INVALID_PARMS, "Invalid parameters"},
334 {SD_RES_SYSTEM_ERROR, "System error"},
335 {SD_RES_VDI_LOCKED, "VDI is already locked"},
336 {SD_RES_NO_VDI, "No vdi found"},
337 {SD_RES_NO_BASE_VDI, "No base VDI found"},
338 {SD_RES_VDI_READ, "Failed read the requested VDI"},
339 {SD_RES_VDI_WRITE, "Failed to write the requested VDI"},
340 {SD_RES_BASE_VDI_READ, "Failed to read the base VDI"},
341 {SD_RES_BASE_VDI_WRITE, "Failed to write the base VDI"},
342 {SD_RES_NO_TAG, "Failed to find the requested tag"},
343 {SD_RES_STARTUP, "The system is still booting"},
344 {SD_RES_VDI_NOT_LOCKED, "VDI isn't locked"},
345 {SD_RES_SHUTDOWN, "The system is shutting down"},
346 {SD_RES_NO_MEM, "Out of memory on the server"},
347 {SD_RES_FULL_VDI, "We already have the maximum vdis"},
348 {SD_RES_VER_MISMATCH, "Protocol version mismatch"},
349 {SD_RES_NO_SPACE, "Server has no space for new objects"},
350 {SD_RES_WAIT_FOR_FORMAT, "Sheepdog is waiting for a format operation"},
351 {SD_RES_WAIT_FOR_JOIN, "Sheepdog is waiting for other nodes joining"},
352 {SD_RES_JOIN_FAILED, "Target node had failed to join sheepdog"},
fca23f0a 353 {SD_RES_HALT, "Sheepdog is stopped serving IO request"},
6a0b5490 354 {SD_RES_READONLY, "Object is read-only"},
33b1db1c
MK
355 };
356
357 for (i = 0; i < ARRAY_SIZE(errors); ++i) {
358 if (errors[i].err == err) {
359 return errors[i].desc;
360 }
361 }
362
363 return "Invalid error code";
364}
365
366/*
367 * Sheepdog I/O handling:
368 *
2df46246 369 * 1. In sd_co_rw_vector, we send the I/O requests to the server and
c292ee6a 370 * link the requests to the inflight_list in the
2df46246
MK
371 * BDRVSheepdogState. The function exits without waiting for
372 * receiving the response.
33b1db1c 373 *
2df46246 374 * 2. We receive the response in aio_read_response, the fd handler to
33b1db1c
MK
375 * the sheepdog connection. If metadata update is needed, we send
376 * the write request to the vdi object in sd_write_done, the write
2df46246
MK
377 * completion function. We switch back to sd_co_readv/writev after
378 * all the requests belonging to the AIOCB are finished.
33b1db1c
MK
379 */
380
381static inline AIOReq *alloc_aio_req(BDRVSheepdogState *s, SheepdogAIOCB *acb,
382 uint64_t oid, unsigned int data_len,
383 uint64_t offset, uint8_t flags,
384 uint64_t base_oid, unsigned int iov_offset)
385{
386 AIOReq *aio_req;
387
7267c094 388 aio_req = g_malloc(sizeof(*aio_req));
33b1db1c
MK
389 aio_req->aiocb = acb;
390 aio_req->iov_offset = iov_offset;
391 aio_req->oid = oid;
392 aio_req->base_oid = base_oid;
393 aio_req->offset = offset;
394 aio_req->data_len = data_len;
395 aio_req->flags = flags;
396 aio_req->id = s->aioreq_seq_num++;
397
1d732d7d 398 acb->nr_pending++;
33b1db1c
MK
399 return aio_req;
400}
401
1d732d7d 402static inline void free_aio_req(BDRVSheepdogState *s, AIOReq *aio_req)
33b1db1c
MK
403{
404 SheepdogAIOCB *acb = aio_req->aiocb;
1d732d7d 405
c292ee6a 406 QLIST_REMOVE(aio_req, aio_siblings);
7267c094 407 g_free(aio_req);
33b1db1c 408
1d732d7d 409 acb->nr_pending--;
33b1db1c
MK
410}
411
d8716b41 412static void coroutine_fn sd_finish_aiocb(SheepdogAIOCB *acb)
33b1db1c
MK
413{
414 if (!acb->canceled) {
2df46246 415 qemu_coroutine_enter(acb->coroutine, NULL);
33b1db1c
MK
416 }
417 qemu_aio_release(acb);
418}
419
420static void sd_aio_cancel(BlockDriverAIOCB *blockacb)
421{
422 SheepdogAIOCB *acb = (SheepdogAIOCB *)blockacb;
423
424 /*
425 * Sheepdog cannot cancel the requests which are already sent to
426 * the servers, so we just complete the request with -EIO here.
427 */
2df46246
MK
428 acb->ret = -EIO;
429 qemu_coroutine_enter(acb->coroutine, NULL);
2f536801 430 acb->canceled = true;
33b1db1c
MK
431}
432
d7331bed 433static const AIOCBInfo sd_aiocb_info = {
33b1db1c
MK
434 .aiocb_size = sizeof(SheepdogAIOCB),
435 .cancel = sd_aio_cancel,
436};
437
438static SheepdogAIOCB *sd_aio_setup(BlockDriverState *bs, QEMUIOVector *qiov,
f700f8e3 439 int64_t sector_num, int nb_sectors)
33b1db1c
MK
440{
441 SheepdogAIOCB *acb;
442
f700f8e3 443 acb = qemu_aio_get(&sd_aiocb_info, bs, NULL, NULL);
33b1db1c
MK
444
445 acb->qiov = qiov;
446
447 acb->sector_num = sector_num;
448 acb->nb_sectors = nb_sectors;
449
450 acb->aio_done_func = NULL;
2f536801 451 acb->canceled = false;
2df46246 452 acb->coroutine = qemu_coroutine_self();
33b1db1c 453 acb->ret = 0;
1d732d7d 454 acb->nr_pending = 0;
33b1db1c
MK
455 return acb;
456}
457
25af257d 458static int connect_to_sdog(BDRVSheepdogState *s)
33b1db1c 459{
25af257d
MK
460 int fd;
461 Error *err = NULL;
33b1db1c 462
1b8bbb46
MK
463 if (s->is_unix) {
464 fd = unix_connect(s->host_spec, &err);
465 } else {
466 fd = inet_connect(s->host_spec, &err);
467
468 if (err == NULL) {
469 int ret = socket_set_nodelay(fd);
470 if (ret < 0) {
471 error_report("%s", strerror(errno));
472 }
473 }
474 }
33b1db1c 475
25af257d
MK
476 if (err != NULL) {
477 qerror_report_err(err);
478 error_free(err);
0d6db300 479 } else {
f9e8cacc 480 qemu_set_nonblock(fd);
33b1db1c
MK
481 }
482
33b1db1c
MK
483 return fd;
484}
485
e0d93a89
MK
486static coroutine_fn int send_co_req(int sockfd, SheepdogReq *hdr, void *data,
487 unsigned int *wlen)
47622c44
LY
488{
489 int ret;
490
491 ret = qemu_co_send(sockfd, hdr, sizeof(*hdr));
492 if (ret < sizeof(*hdr)) {
493 error_report("failed to send a req, %s", strerror(errno));
eb092180 494 return ret;
47622c44
LY
495 }
496
497 ret = qemu_co_send(sockfd, data, *wlen);
498 if (ret < *wlen) {
499 error_report("failed to send a req, %s", strerror(errno));
500 }
501
502 return ret;
503}
e0d93a89 504
2dfcca3b
MK
505static void restart_co_req(void *opaque)
506{
507 Coroutine *co = opaque;
508
509 qemu_coroutine_enter(co, NULL);
510}
511
cddd4ac7
MK
512typedef struct SheepdogReqCo {
513 int sockfd;
514 SheepdogReq *hdr;
515 void *data;
516 unsigned int *wlen;
517 unsigned int *rlen;
518 int ret;
519 bool finished;
520} SheepdogReqCo;
521
522static coroutine_fn void do_co_req(void *opaque)
47622c44
LY
523{
524 int ret;
2dfcca3b 525 Coroutine *co;
cddd4ac7
MK
526 SheepdogReqCo *srco = opaque;
527 int sockfd = srco->sockfd;
528 SheepdogReq *hdr = srco->hdr;
529 void *data = srco->data;
530 unsigned int *wlen = srco->wlen;
531 unsigned int *rlen = srco->rlen;
2dfcca3b
MK
532
533 co = qemu_coroutine_self();
d6d94c67 534 qemu_aio_set_fd_handler(sockfd, NULL, restart_co_req, NULL, co);
47622c44 535
47622c44
LY
536 ret = send_co_req(sockfd, hdr, data, wlen);
537 if (ret < 0) {
538 goto out;
539 }
540
d6d94c67 541 qemu_aio_set_fd_handler(sockfd, restart_co_req, NULL, NULL, co);
2dfcca3b 542
47622c44
LY
543 ret = qemu_co_recv(sockfd, hdr, sizeof(*hdr));
544 if (ret < sizeof(*hdr)) {
545 error_report("failed to get a rsp, %s", strerror(errno));
cb595887 546 ret = -errno;
47622c44
LY
547 goto out;
548 }
549
550 if (*rlen > hdr->data_length) {
551 *rlen = hdr->data_length;
552 }
553
554 if (*rlen) {
555 ret = qemu_co_recv(sockfd, data, *rlen);
556 if (ret < *rlen) {
557 error_report("failed to get the data, %s", strerror(errno));
cb595887 558 ret = -errno;
47622c44
LY
559 goto out;
560 }
561 }
562 ret = 0;
563out:
ed9ba724
MK
564 /* there is at most one request for this sockfd, so it is safe to
565 * set each handler to NULL. */
2dfcca3b 566 qemu_aio_set_fd_handler(sockfd, NULL, NULL, NULL, NULL);
cddd4ac7
MK
567
568 srco->ret = ret;
569 srco->finished = true;
570}
571
572static int do_req(int sockfd, SheepdogReq *hdr, void *data,
573 unsigned int *wlen, unsigned int *rlen)
574{
575 Coroutine *co;
576 SheepdogReqCo srco = {
577 .sockfd = sockfd,
578 .hdr = hdr,
579 .data = data,
580 .wlen = wlen,
581 .rlen = rlen,
582 .ret = 0,
583 .finished = false,
584 };
585
586 if (qemu_in_coroutine()) {
587 do_co_req(&srco);
588 } else {
589 co = qemu_coroutine_create(do_co_req);
590 qemu_coroutine_enter(co, &srco);
591 while (!srco.finished) {
592 qemu_aio_wait();
593 }
594 }
595
596 return srco.ret;
47622c44
LY
597}
598
d8716b41 599static int coroutine_fn add_aio_request(BDRVSheepdogState *s, AIOReq *aio_req,
2f536801 600 struct iovec *iov, int niov, bool create,
33b1db1c 601 enum AIOCBState aiocb_type);
13c31de2 602static int coroutine_fn resend_aioreq(BDRVSheepdogState *s, AIOReq *aio_req);
33b1db1c 603
7dc1cde0
MK
604
605static AIOReq *find_pending_req(BDRVSheepdogState *s, uint64_t oid)
606{
607 AIOReq *aio_req;
608
609 QLIST_FOREACH(aio_req, &s->pending_aio_head, aio_siblings) {
610 if (aio_req->oid == oid) {
611 return aio_req;
612 }
613 }
614
615 return NULL;
616}
617
33b1db1c
MK
618/*
619 * This function searchs pending requests to the object `oid', and
620 * sends them.
621 */
c292ee6a 622static void coroutine_fn send_pending_req(BDRVSheepdogState *s, uint64_t oid)
33b1db1c 623{
7dc1cde0 624 AIOReq *aio_req;
33b1db1c
MK
625 SheepdogAIOCB *acb;
626 int ret;
627
7dc1cde0 628 while ((aio_req = find_pending_req(s, oid)) != NULL) {
33b1db1c 629 acb = aio_req->aiocb;
c292ee6a
MK
630 /* move aio_req from pending list to inflight one */
631 QLIST_REMOVE(aio_req, aio_siblings);
632 QLIST_INSERT_HEAD(&s->inflight_aio_head, aio_req, aio_siblings);
33b1db1c 633 ret = add_aio_request(s, aio_req, acb->qiov->iov,
2f536801 634 acb->qiov->niov, false, acb->aiocb_type);
33b1db1c 635 if (ret < 0) {
6daf194d 636 error_report("add_aio_request is failed");
33b1db1c 637 free_aio_req(s, aio_req);
1d732d7d 638 if (!acb->nr_pending) {
33b1db1c
MK
639 sd_finish_aiocb(acb);
640 }
641 }
642 }
643}
644
645/*
646 * Receive responses of the I/O requests.
647 *
648 * This function is registered as a fd handler, and called from the
649 * main loop when s->fd is ready for reading responses.
650 */
d8716b41 651static void coroutine_fn aio_read_response(void *opaque)
33b1db1c
MK
652{
653 SheepdogObjRsp rsp;
654 BDRVSheepdogState *s = opaque;
655 int fd = s->fd;
656 int ret;
657 AIOReq *aio_req = NULL;
658 SheepdogAIOCB *acb;
cac8f4a6 659 uint64_t idx;
33b1db1c 660
c292ee6a 661 if (QLIST_EMPTY(&s->inflight_aio_head)) {
2df46246 662 goto out;
33b1db1c
MK
663 }
664
665 /* read a header */
8c5135f9
PB
666 ret = qemu_co_recv(fd, &rsp, sizeof(rsp));
667 if (ret < 0) {
6daf194d 668 error_report("failed to get the header, %s", strerror(errno));
2df46246 669 goto out;
33b1db1c
MK
670 }
671
c292ee6a
MK
672 /* find the right aio_req from the inflight aio list */
673 QLIST_FOREACH(aio_req, &s->inflight_aio_head, aio_siblings) {
33b1db1c
MK
674 if (aio_req->id == rsp.id) {
675 break;
676 }
677 }
678 if (!aio_req) {
6daf194d 679 error_report("cannot find aio_req %x", rsp.id);
2df46246 680 goto out;
33b1db1c
MK
681 }
682
683 acb = aio_req->aiocb;
684
685 switch (acb->aiocb_type) {
686 case AIOCB_WRITE_UDATA:
6d1acda8
MK
687 /* this coroutine context is no longer suitable for co_recv
688 * because we may send data to update vdi objects */
689 s->co_recv = NULL;
33b1db1c
MK
690 if (!is_data_obj(aio_req->oid)) {
691 break;
692 }
693 idx = data_oid_to_idx(aio_req->oid);
694
695 if (s->inode.data_vdi_id[idx] != s->inode.vdi_id) {
696 /*
697 * If the object is newly created one, we need to update
698 * the vdi object (metadata object). min_dirty_data_idx
699 * and max_dirty_data_idx are changed to include updated
700 * index between them.
701 */
bd751f22
LY
702 if (rsp.result == SD_RES_SUCCESS) {
703 s->inode.data_vdi_id[idx] = s->inode.vdi_id;
704 s->max_dirty_data_idx = MAX(idx, s->max_dirty_data_idx);
705 s->min_dirty_data_idx = MIN(idx, s->min_dirty_data_idx);
706 }
33b1db1c
MK
707 /*
708 * Some requests may be blocked because simultaneous
709 * create requests are not allowed, so we search the
710 * pending requests here.
711 */
d6b1ef89 712 send_pending_req(s, aio_req->oid);
33b1db1c
MK
713 }
714 break;
715 case AIOCB_READ_UDATA:
2fc8ae1d
MT
716 ret = qemu_co_recvv(fd, acb->qiov->iov, acb->qiov->niov,
717 aio_req->iov_offset, rsp.data_length);
8c5135f9 718 if (ret < 0) {
6daf194d 719 error_report("failed to get the data, %s", strerror(errno));
2df46246 720 goto out;
33b1db1c
MK
721 }
722 break;
47783072
LY
723 case AIOCB_FLUSH_CACHE:
724 if (rsp.result == SD_RES_INVALID_PARMS) {
2440a2c3 725 DPRINTF("disable cache since the server doesn't support it\n");
47783072
LY
726 s->cache_flags = SD_FLAG_CMD_DIRECT;
727 rsp.result = SD_RES_SUCCESS;
728 }
729 break;
cac8f4a6
LY
730 case AIOCB_DISCARD_OBJ:
731 switch (rsp.result) {
732 case SD_RES_INVALID_PARMS:
733 error_report("sheep(%s) doesn't support discard command",
734 s->host_spec);
735 rsp.result = SD_RES_SUCCESS;
736 s->discard_supported = false;
737 break;
738 case SD_RES_SUCCESS:
739 idx = data_oid_to_idx(aio_req->oid);
740 s->inode.data_vdi_id[idx] = 0;
741 break;
742 default:
743 break;
744 }
33b1db1c
MK
745 }
746
13c31de2
MK
747 switch (rsp.result) {
748 case SD_RES_SUCCESS:
749 break;
750 case SD_RES_READONLY:
751 ret = resend_aioreq(s, aio_req);
752 if (ret == SD_RES_SUCCESS) {
753 goto out;
754 }
755 /* fall through */
756 default:
33b1db1c 757 acb->ret = -EIO;
6daf194d 758 error_report("%s", sd_strerror(rsp.result));
13c31de2 759 break;
33b1db1c
MK
760 }
761
1d732d7d
MK
762 free_aio_req(s, aio_req);
763 if (!acb->nr_pending) {
33b1db1c
MK
764 /*
765 * We've finished all requests which belong to the AIOCB, so
2df46246 766 * we can switch back to sd_co_readv/writev now.
33b1db1c
MK
767 */
768 acb->aio_done_func(acb);
769 }
2df46246
MK
770out:
771 s->co_recv = NULL;
772}
773
774static void co_read_response(void *opaque)
775{
776 BDRVSheepdogState *s = opaque;
777
778 if (!s->co_recv) {
779 s->co_recv = qemu_coroutine_create(aio_read_response);
780 }
781
782 qemu_coroutine_enter(s->co_recv, opaque);
783}
784
785static void co_write_request(void *opaque)
786{
787 BDRVSheepdogState *s = opaque;
788
789 qemu_coroutine_enter(s->co_send, NULL);
33b1db1c
MK
790}
791
33b1db1c
MK
792/*
793 * Return a socket discriptor to read/write objects.
794 *
795 * We cannot use this discriptor for other operations because
796 * the block driver may be on waiting response from the server.
797 */
798static int get_sheep_fd(BDRVSheepdogState *s)
799{
1b8bbb46 800 int fd;
33b1db1c 801
25af257d 802 fd = connect_to_sdog(s);
33b1db1c 803 if (fd < 0) {
cb595887 804 return fd;
33b1db1c
MK
805 }
806
d6d94c67 807 qemu_aio_set_fd_handler(fd, co_read_response, NULL, NULL, s);
33b1db1c
MK
808 return fd;
809}
810
5d6768e3
MK
811static int sd_parse_uri(BDRVSheepdogState *s, const char *filename,
812 char *vdi, uint32_t *snapid, char *tag)
813{
814 URI *uri;
815 QueryParams *qp = NULL;
816 int ret = 0;
817
818 uri = uri_parse(filename);
819 if (!uri) {
820 return -EINVAL;
821 }
822
1b8bbb46
MK
823 /* transport */
824 if (!strcmp(uri->scheme, "sheepdog")) {
825 s->is_unix = false;
826 } else if (!strcmp(uri->scheme, "sheepdog+tcp")) {
827 s->is_unix = false;
828 } else if (!strcmp(uri->scheme, "sheepdog+unix")) {
829 s->is_unix = true;
830 } else {
831 ret = -EINVAL;
832 goto out;
833 }
834
5d6768e3
MK
835 if (uri->path == NULL || !strcmp(uri->path, "/")) {
836 ret = -EINVAL;
837 goto out;
838 }
839 pstrcpy(vdi, SD_MAX_VDI_LEN, uri->path + 1);
840
1b8bbb46
MK
841 qp = query_params_parse(uri->query);
842 if (qp->n > 1 || (s->is_unix && !qp->n) || (!s->is_unix && qp->n)) {
843 ret = -EINVAL;
844 goto out;
845 }
846
847 if (s->is_unix) {
848 /* sheepdog+unix:///vdiname?socket=path */
849 if (uri->server || uri->port || strcmp(qp->p[0].name, "socket")) {
850 ret = -EINVAL;
851 goto out;
852 }
853 s->host_spec = g_strdup(qp->p[0].value);
854 } else {
855 /* sheepdog[+tcp]://[host:port]/vdiname */
856 s->host_spec = g_strdup_printf("%s:%d", uri->server ?: SD_DEFAULT_ADDR,
857 uri->port ?: SD_DEFAULT_PORT);
858 }
5d6768e3
MK
859
860 /* snapshot tag */
861 if (uri->fragment) {
862 *snapid = strtoul(uri->fragment, NULL, 10);
863 if (*snapid == 0) {
864 pstrcpy(tag, SD_MAX_VDI_TAG_LEN, uri->fragment);
865 }
866 } else {
867 *snapid = CURRENT_VDI_ID; /* search current vdi */
868 }
869
870out:
871 if (qp) {
872 query_params_free(qp);
873 }
874 uri_free(uri);
875 return ret;
876}
877
33b1db1c 878/*
5d6768e3 879 * Parse a filename (old syntax)
33b1db1c
MK
880 *
881 * filename must be one of the following formats:
882 * 1. [vdiname]
883 * 2. [vdiname]:[snapid]
884 * 3. [vdiname]:[tag]
885 * 4. [hostname]:[port]:[vdiname]
886 * 5. [hostname]:[port]:[vdiname]:[snapid]
887 * 6. [hostname]:[port]:[vdiname]:[tag]
888 *
889 * You can boot from the snapshot images by specifying `snapid` or
890 * `tag'.
891 *
892 * You can run VMs outside the Sheepdog cluster by specifying
893 * `hostname' and `port' (experimental).
894 */
895static int parse_vdiname(BDRVSheepdogState *s, const char *filename,
896 char *vdi, uint32_t *snapid, char *tag)
897{
5d6768e3
MK
898 char *p, *q, *uri;
899 const char *host_spec, *vdi_spec;
900 int nr_sep, ret;
33b1db1c 901
5d6768e3 902 strstart(filename, "sheepdog:", (const char **)&filename);
7267c094 903 p = q = g_strdup(filename);
33b1db1c
MK
904
905 /* count the number of separators */
906 nr_sep = 0;
907 while (*p) {
908 if (*p == ':') {
909 nr_sep++;
910 }
911 p++;
912 }
913 p = q;
914
5d6768e3 915 /* use the first two tokens as host_spec. */
33b1db1c 916 if (nr_sep >= 2) {
5d6768e3 917 host_spec = p;
33b1db1c 918 p = strchr(p, ':');
5d6768e3 919 p++;
33b1db1c
MK
920 p = strchr(p, ':');
921 *p++ = '\0';
922 } else {
5d6768e3 923 host_spec = "";
33b1db1c
MK
924 }
925
5d6768e3 926 vdi_spec = p;
33b1db1c 927
5d6768e3 928 p = strchr(vdi_spec, ':');
33b1db1c 929 if (p) {
5d6768e3 930 *p++ = '#';
33b1db1c
MK
931 }
932
5d6768e3 933 uri = g_strdup_printf("sheepdog://%s/%s", host_spec, vdi_spec);
33b1db1c 934
5d6768e3
MK
935 ret = sd_parse_uri(s, uri, vdi, snapid, tag);
936
937 g_free(q);
938 g_free(uri);
939
940 return ret;
33b1db1c
MK
941}
942
982dcbf4
MK
943static int find_vdi_name(BDRVSheepdogState *s, const char *filename,
944 uint32_t snapid, const char *tag, uint32_t *vid,
945 bool lock)
33b1db1c
MK
946{
947 int ret, fd;
948 SheepdogVdiReq hdr;
949 SheepdogVdiRsp *rsp = (SheepdogVdiRsp *)&hdr;
950 unsigned int wlen, rlen = 0;
951 char buf[SD_MAX_VDI_LEN + SD_MAX_VDI_TAG_LEN];
952
25af257d 953 fd = connect_to_sdog(s);
33b1db1c 954 if (fd < 0) {
cb595887 955 return fd;
33b1db1c
MK
956 }
957
3178e275
JM
958 /* This pair of strncpy calls ensures that the buffer is zero-filled,
959 * which is desirable since we'll soon be sending those bytes, and
960 * don't want the send_req to read uninitialized data.
961 */
33b1db1c
MK
962 strncpy(buf, filename, SD_MAX_VDI_LEN);
963 strncpy(buf + SD_MAX_VDI_LEN, tag, SD_MAX_VDI_TAG_LEN);
964
965 memset(&hdr, 0, sizeof(hdr));
982dcbf4 966 if (lock) {
33b1db1c 967 hdr.opcode = SD_OP_LOCK_VDI;
982dcbf4
MK
968 } else {
969 hdr.opcode = SD_OP_GET_VDI_INFO;
33b1db1c
MK
970 }
971 wlen = SD_MAX_VDI_LEN + SD_MAX_VDI_TAG_LEN;
972 hdr.proto_ver = SD_PROTO_VER;
973 hdr.data_length = wlen;
974 hdr.snapid = snapid;
975 hdr.flags = SD_FLAG_CMD_WRITE;
976
977 ret = do_req(fd, (SheepdogReq *)&hdr, buf, &wlen, &rlen);
978 if (ret) {
33b1db1c
MK
979 goto out;
980 }
981
982 if (rsp->result != SD_RES_SUCCESS) {
6daf194d 983 error_report("cannot get vdi info, %s, %s %d %s",
33b1db1c 984 sd_strerror(rsp->result), filename, snapid, tag);
cb595887
MK
985 if (rsp->result == SD_RES_NO_VDI) {
986 ret = -ENOENT;
987 } else {
988 ret = -EIO;
989 }
33b1db1c
MK
990 goto out;
991 }
992 *vid = rsp->vdi_id;
993
994 ret = 0;
995out:
996 closesocket(fd);
997 return ret;
998}
999
d8716b41 1000static int coroutine_fn add_aio_request(BDRVSheepdogState *s, AIOReq *aio_req,
2f536801 1001 struct iovec *iov, int niov, bool create,
33b1db1c
MK
1002 enum AIOCBState aiocb_type)
1003{
1004 int nr_copies = s->inode.nr_copies;
1005 SheepdogObjReq hdr;
47783072 1006 unsigned int wlen = 0;
33b1db1c
MK
1007 int ret;
1008 uint64_t oid = aio_req->oid;
1009 unsigned int datalen = aio_req->data_len;
1010 uint64_t offset = aio_req->offset;
1011 uint8_t flags = aio_req->flags;
1012 uint64_t old_oid = aio_req->base_oid;
1013
1014 if (!nr_copies) {
6daf194d 1015 error_report("bug");
33b1db1c
MK
1016 }
1017
1018 memset(&hdr, 0, sizeof(hdr));
1019
47783072
LY
1020 switch (aiocb_type) {
1021 case AIOCB_FLUSH_CACHE:
1022 hdr.opcode = SD_OP_FLUSH_VDI;
1023 break;
1024 case AIOCB_READ_UDATA:
33b1db1c
MK
1025 hdr.opcode = SD_OP_READ_OBJ;
1026 hdr.flags = flags;
47783072
LY
1027 break;
1028 case AIOCB_WRITE_UDATA:
1029 if (create) {
1030 hdr.opcode = SD_OP_CREATE_AND_WRITE_OBJ;
1031 } else {
1032 hdr.opcode = SD_OP_WRITE_OBJ;
1033 }
33b1db1c 1034 wlen = datalen;
33b1db1c 1035 hdr.flags = SD_FLAG_CMD_WRITE | flags;
47783072 1036 break;
cac8f4a6
LY
1037 case AIOCB_DISCARD_OBJ:
1038 hdr.opcode = SD_OP_DISCARD_OBJ;
1039 break;
33b1db1c
MK
1040 }
1041
0e7106d8
LY
1042 if (s->cache_flags) {
1043 hdr.flags |= s->cache_flags;
47622c44
LY
1044 }
1045
33b1db1c
MK
1046 hdr.oid = oid;
1047 hdr.cow_oid = old_oid;
1048 hdr.copies = s->inode.nr_copies;
1049
1050 hdr.data_length = datalen;
1051 hdr.offset = offset;
1052
1053 hdr.id = aio_req->id;
1054
2df46246
MK
1055 qemu_co_mutex_lock(&s->lock);
1056 s->co_send = qemu_coroutine_self();
1057 qemu_aio_set_fd_handler(s->fd, co_read_response, co_write_request,
d6d94c67 1058 NULL, s);
128aa589 1059 socket_set_cork(s->fd, 1);
33b1db1c
MK
1060
1061 /* send a header */
8c5135f9
PB
1062 ret = qemu_co_send(s->fd, &hdr, sizeof(hdr));
1063 if (ret < 0) {
c3fecea5 1064 qemu_co_mutex_unlock(&s->lock);
6daf194d 1065 error_report("failed to send a req, %s", strerror(errno));
cb595887 1066 return -errno;
33b1db1c
MK
1067 }
1068
1069 if (wlen) {
2fc8ae1d 1070 ret = qemu_co_sendv(s->fd, iov, niov, aio_req->iov_offset, wlen);
8c5135f9 1071 if (ret < 0) {
c3fecea5 1072 qemu_co_mutex_unlock(&s->lock);
6daf194d 1073 error_report("failed to send a data, %s", strerror(errno));
cb595887 1074 return -errno;
33b1db1c
MK
1075 }
1076 }
1077
128aa589 1078 socket_set_cork(s->fd, 0);
2df46246 1079 qemu_aio_set_fd_handler(s->fd, co_read_response, NULL,
d6d94c67 1080 NULL, s);
2df46246 1081 qemu_co_mutex_unlock(&s->lock);
33b1db1c
MK
1082
1083 return 0;
1084}
1085
1086static int read_write_object(int fd, char *buf, uint64_t oid, int copies,
1087 unsigned int datalen, uint64_t offset,
0e7106d8 1088 bool write, bool create, uint32_t cache_flags)
33b1db1c
MK
1089{
1090 SheepdogObjReq hdr;
1091 SheepdogObjRsp *rsp = (SheepdogObjRsp *)&hdr;
1092 unsigned int wlen, rlen;
1093 int ret;
1094
1095 memset(&hdr, 0, sizeof(hdr));
1096
1097 if (write) {
1098 wlen = datalen;
1099 rlen = 0;
1100 hdr.flags = SD_FLAG_CMD_WRITE;
1101 if (create) {
1102 hdr.opcode = SD_OP_CREATE_AND_WRITE_OBJ;
1103 } else {
1104 hdr.opcode = SD_OP_WRITE_OBJ;
1105 }
1106 } else {
1107 wlen = 0;
1108 rlen = datalen;
1109 hdr.opcode = SD_OP_READ_OBJ;
1110 }
47622c44 1111
0e7106d8 1112 hdr.flags |= cache_flags;
47622c44 1113
33b1db1c
MK
1114 hdr.oid = oid;
1115 hdr.data_length = datalen;
1116 hdr.offset = offset;
1117 hdr.copies = copies;
1118
1119 ret = do_req(fd, (SheepdogReq *)&hdr, buf, &wlen, &rlen);
1120 if (ret) {
6daf194d 1121 error_report("failed to send a request to the sheep");
cb595887 1122 return ret;
33b1db1c
MK
1123 }
1124
1125 switch (rsp->result) {
1126 case SD_RES_SUCCESS:
1127 return 0;
1128 default:
6daf194d 1129 error_report("%s", sd_strerror(rsp->result));
cb595887 1130 return -EIO;
33b1db1c
MK
1131 }
1132}
1133
1134static int read_object(int fd, char *buf, uint64_t oid, int copies,
0e7106d8
LY
1135 unsigned int datalen, uint64_t offset,
1136 uint32_t cache_flags)
33b1db1c 1137{
2f536801 1138 return read_write_object(fd, buf, oid, copies, datalen, offset, false,
0e7106d8 1139 false, cache_flags);
33b1db1c
MK
1140}
1141
1142static int write_object(int fd, char *buf, uint64_t oid, int copies,
2f536801 1143 unsigned int datalen, uint64_t offset, bool create,
0e7106d8 1144 uint32_t cache_flags)
33b1db1c 1145{
2f536801 1146 return read_write_object(fd, buf, oid, copies, datalen, offset, true,
0e7106d8 1147 create, cache_flags);
33b1db1c
MK
1148}
1149
9ff53a0e
MK
1150/* update inode with the latest state */
1151static int reload_inode(BDRVSheepdogState *s, uint32_t snapid, const char *tag)
1152{
1153 SheepdogInode *inode;
1154 int ret = 0, fd;
1155 uint32_t vid = 0;
1156
1157 fd = connect_to_sdog(s);
1158 if (fd < 0) {
1159 return -EIO;
1160 }
1161
1162 inode = g_malloc(sizeof(s->inode));
1163
1164 ret = find_vdi_name(s, s->name, snapid, tag, &vid, false);
1165 if (ret) {
1166 goto out;
1167 }
1168
1169 ret = read_object(fd, (char *)inode, vid_to_vdi_oid(vid),
1170 s->inode.nr_copies, sizeof(*inode), 0, s->cache_flags);
1171 if (ret < 0) {
1172 goto out;
1173 }
1174
1175 if (inode->vdi_id != s->inode.vdi_id) {
1176 memcpy(&s->inode, inode, sizeof(s->inode));
1177 }
1178
1179out:
1180 g_free(inode);
1181 closesocket(fd);
1182
1183 return ret;
1184}
1185
13c31de2
MK
1186static int coroutine_fn resend_aioreq(BDRVSheepdogState *s, AIOReq *aio_req)
1187{
1188 SheepdogAIOCB *acb = aio_req->aiocb;
1189 bool create = false;
1190 int ret;
1191
1192 ret = reload_inode(s, 0, "");
1193 if (ret < 0) {
1194 return ret;
1195 }
1196
1197 aio_req->oid = vid_to_data_oid(s->inode.vdi_id,
1198 data_oid_to_idx(aio_req->oid));
1199
1200 /* check whether this request becomes a CoW one */
1201 if (acb->aiocb_type == AIOCB_WRITE_UDATA) {
1202 int idx = data_oid_to_idx(aio_req->oid);
1203 AIOReq *areq;
1204
1205 if (s->inode.data_vdi_id[idx] == 0) {
1206 create = true;
1207 goto out;
1208 }
1209 if (is_data_obj_writable(&s->inode, idx)) {
1210 goto out;
1211 }
1212
1213 /* link to the pending list if there is another CoW request to
1214 * the same object */
1215 QLIST_FOREACH(areq, &s->inflight_aio_head, aio_siblings) {
1216 if (areq != aio_req && areq->oid == aio_req->oid) {
2440a2c3 1217 DPRINTF("simultaneous CoW to %" PRIx64 "\n", aio_req->oid);
13c31de2
MK
1218 QLIST_REMOVE(aio_req, aio_siblings);
1219 QLIST_INSERT_HEAD(&s->pending_aio_head, aio_req, aio_siblings);
1220 return SD_RES_SUCCESS;
1221 }
1222 }
1223
1224 aio_req->base_oid = vid_to_data_oid(s->inode.data_vdi_id[idx], idx);
1225 aio_req->flags |= SD_FLAG_CMD_COW;
1226 create = true;
1227 }
1228out:
1229 return add_aio_request(s, aio_req, acb->qiov->iov, acb->qiov->niov,
1230 create, acb->aiocb_type);
1231}
1232
c8c96350
KW
1233/* TODO Convert to fine grained options */
1234static QemuOptsList runtime_opts = {
1235 .name = "sheepdog",
1236 .head = QTAILQ_HEAD_INITIALIZER(runtime_opts.head),
1237 .desc = {
1238 {
1239 .name = "filename",
1240 .type = QEMU_OPT_STRING,
1241 .help = "URL to the sheepdog image",
1242 },
1243 { /* end of list */ }
1244 },
1245};
1246
56d1b4d2 1247static int sd_open(BlockDriverState *bs, QDict *options, int flags)
33b1db1c
MK
1248{
1249 int ret, fd;
1250 uint32_t vid = 0;
1251 BDRVSheepdogState *s = bs->opaque;
1252 char vdi[SD_MAX_VDI_LEN], tag[SD_MAX_VDI_TAG_LEN];
1253 uint32_t snapid;
1254 char *buf = NULL;
c8c96350
KW
1255 QemuOpts *opts;
1256 Error *local_err = NULL;
1257 const char *filename;
1258
1259 opts = qemu_opts_create_nofail(&runtime_opts);
1260 qemu_opts_absorb_qdict(opts, options, &local_err);
1261 if (error_is_set(&local_err)) {
1262 qerror_report_err(local_err);
1263 error_free(local_err);
1264 ret = -EINVAL;
1265 goto out;
1266 }
1267
1268 filename = qemu_opt_get(opts, "filename");
33b1db1c 1269
c292ee6a
MK
1270 QLIST_INIT(&s->inflight_aio_head);
1271 QLIST_INIT(&s->pending_aio_head);
33b1db1c
MK
1272 s->fd = -1;
1273
1274 memset(vdi, 0, sizeof(vdi));
1275 memset(tag, 0, sizeof(tag));
5d6768e3
MK
1276
1277 if (strstr(filename, "://")) {
1278 ret = sd_parse_uri(s, filename, vdi, &snapid, tag);
1279 } else {
1280 ret = parse_vdiname(s, filename, vdi, &snapid, tag);
1281 }
1282 if (ret < 0) {
33b1db1c
MK
1283 goto out;
1284 }
1285 s->fd = get_sheep_fd(s);
1286 if (s->fd < 0) {
cb595887 1287 ret = s->fd;
33b1db1c
MK
1288 goto out;
1289 }
1290
982dcbf4 1291 ret = find_vdi_name(s, vdi, snapid, tag, &vid, true);
33b1db1c
MK
1292 if (ret) {
1293 goto out;
1294 }
1295
0e7106d8
LY
1296 /*
1297 * QEMU block layer emulates writethrough cache as 'writeback + flush', so
1298 * we always set SD_FLAG_CMD_CACHE (writeback cache) as default.
1299 */
1300 s->cache_flags = SD_FLAG_CMD_CACHE;
1301 if (flags & BDRV_O_NOCACHE) {
1302 s->cache_flags = SD_FLAG_CMD_DIRECT;
1303 }
cac8f4a6 1304 s->discard_supported = true;
0e7106d8 1305
622b6057 1306 if (snapid || tag[0] != '\0') {
2440a2c3 1307 DPRINTF("%" PRIx32 " snapshot inode was open.\n", vid);
2f536801 1308 s->is_snapshot = true;
33b1db1c
MK
1309 }
1310
25af257d 1311 fd = connect_to_sdog(s);
33b1db1c 1312 if (fd < 0) {
cb595887 1313 ret = fd;
33b1db1c
MK
1314 goto out;
1315 }
1316
7267c094 1317 buf = g_malloc(SD_INODE_SIZE);
47622c44 1318 ret = read_object(fd, buf, vid_to_vdi_oid(vid), 0, SD_INODE_SIZE, 0,
0e7106d8 1319 s->cache_flags);
33b1db1c
MK
1320
1321 closesocket(fd);
1322
1323 if (ret) {
1324 goto out;
1325 }
1326
1327 memcpy(&s->inode, buf, sizeof(s->inode));
1328 s->min_dirty_data_idx = UINT32_MAX;
1329 s->max_dirty_data_idx = 0;
1330
e8bfaa2f 1331 bs->total_sectors = s->inode.vdi_size / BDRV_SECTOR_SIZE;
3178e275 1332 pstrcpy(s->name, sizeof(s->name), vdi);
2df46246 1333 qemu_co_mutex_init(&s->lock);
c8c96350 1334 qemu_opts_del(opts);
7267c094 1335 g_free(buf);
33b1db1c
MK
1336 return 0;
1337out:
bafbd6a1 1338 qemu_aio_set_fd_handler(s->fd, NULL, NULL, NULL, NULL);
33b1db1c
MK
1339 if (s->fd >= 0) {
1340 closesocket(s->fd);
1341 }
c8c96350 1342 qemu_opts_del(opts);
7267c094 1343 g_free(buf);
cb595887 1344 return ret;
33b1db1c
MK
1345}
1346
25af257d
MK
1347static int do_sd_create(BDRVSheepdogState *s, char *filename, int64_t vdi_size,
1348 uint32_t base_vid, uint32_t *vdi_id, int snapshot)
33b1db1c
MK
1349{
1350 SheepdogVdiReq hdr;
1351 SheepdogVdiRsp *rsp = (SheepdogVdiRsp *)&hdr;
1352 int fd, ret;
1353 unsigned int wlen, rlen = 0;
1354 char buf[SD_MAX_VDI_LEN];
1355
25af257d 1356 fd = connect_to_sdog(s);
33b1db1c 1357 if (fd < 0) {
cb595887 1358 return fd;
33b1db1c
MK
1359 }
1360
3178e275
JM
1361 /* FIXME: would it be better to fail (e.g., return -EIO) when filename
1362 * does not fit in buf? For now, just truncate and avoid buffer overrun.
1363 */
33b1db1c 1364 memset(buf, 0, sizeof(buf));
3178e275 1365 pstrcpy(buf, sizeof(buf), filename);
33b1db1c
MK
1366
1367 memset(&hdr, 0, sizeof(hdr));
1368 hdr.opcode = SD_OP_NEW_VDI;
6f74c260 1369 hdr.vdi_id = base_vid;
33b1db1c
MK
1370
1371 wlen = SD_MAX_VDI_LEN;
1372
1373 hdr.flags = SD_FLAG_CMD_WRITE;
1374 hdr.snapid = snapshot;
1375
1376 hdr.data_length = wlen;
1377 hdr.vdi_size = vdi_size;
1378
1379 ret = do_req(fd, (SheepdogReq *)&hdr, buf, &wlen, &rlen);
1380
1381 closesocket(fd);
1382
1383 if (ret) {
cb595887 1384 return ret;
33b1db1c
MK
1385 }
1386
1387 if (rsp->result != SD_RES_SUCCESS) {
6daf194d 1388 error_report("%s, %s", sd_strerror(rsp->result), filename);
33b1db1c
MK
1389 return -EIO;
1390 }
1391
1392 if (vdi_id) {
1393 *vdi_id = rsp->vdi_id;
1394 }
1395
1396 return 0;
1397}
1398
a8e0fdd7
MK
1399static int sd_prealloc(const char *filename)
1400{
1401 BlockDriverState *bs = NULL;
1402 uint32_t idx, max_idx;
1403 int64_t vdi_size;
7267c094 1404 void *buf = g_malloc0(SD_DATA_OBJ_SIZE);
a8e0fdd7
MK
1405 int ret;
1406
787e4a85 1407 ret = bdrv_file_open(&bs, filename, NULL, BDRV_O_RDWR);
a8e0fdd7
MK
1408 if (ret < 0) {
1409 goto out;
1410 }
1411
1412 vdi_size = bdrv_getlength(bs);
1413 if (vdi_size < 0) {
1414 ret = vdi_size;
1415 goto out;
1416 }
1417 max_idx = DIV_ROUND_UP(vdi_size, SD_DATA_OBJ_SIZE);
1418
1419 for (idx = 0; idx < max_idx; idx++) {
1420 /*
1421 * The created image can be a cloned image, so we need to read
1422 * a data from the source image.
1423 */
1424 ret = bdrv_pread(bs, idx * SD_DATA_OBJ_SIZE, buf, SD_DATA_OBJ_SIZE);
1425 if (ret < 0) {
1426 goto out;
1427 }
1428 ret = bdrv_pwrite(bs, idx * SD_DATA_OBJ_SIZE, buf, SD_DATA_OBJ_SIZE);
1429 if (ret < 0) {
1430 goto out;
1431 }
1432 }
1433out:
1434 if (bs) {
1435 bdrv_delete(bs);
1436 }
7267c094 1437 g_free(buf);
a8e0fdd7
MK
1438
1439 return ret;
1440}
1441
33b1db1c
MK
1442static int sd_create(const char *filename, QEMUOptionParameter *options)
1443{
b6fc8245 1444 int ret = 0;
b4447363 1445 uint32_t vid = 0, base_vid = 0;
33b1db1c
MK
1446 int64_t vdi_size = 0;
1447 char *backing_file = NULL;
b6fc8245 1448 BDRVSheepdogState *s;
b4447363
MK
1449 char vdi[SD_MAX_VDI_LEN], tag[SD_MAX_VDI_TAG_LEN];
1450 uint32_t snapid;
2f536801 1451 bool prealloc = false;
33b1db1c 1452
b6fc8245
MK
1453 s = g_malloc0(sizeof(BDRVSheepdogState));
1454
b4447363
MK
1455 memset(vdi, 0, sizeof(vdi));
1456 memset(tag, 0, sizeof(tag));
5d6768e3
MK
1457 if (strstr(filename, "://")) {
1458 ret = sd_parse_uri(s, filename, vdi, &snapid, tag);
1459 } else {
1460 ret = parse_vdiname(s, filename, vdi, &snapid, tag);
1461 }
1462 if (ret < 0) {
b6fc8245 1463 goto out;
b4447363
MK
1464 }
1465
33b1db1c
MK
1466 while (options && options->name) {
1467 if (!strcmp(options->name, BLOCK_OPT_SIZE)) {
1468 vdi_size = options->value.n;
1469 } else if (!strcmp(options->name, BLOCK_OPT_BACKING_FILE)) {
1470 backing_file = options->value.s;
a8e0fdd7
MK
1471 } else if (!strcmp(options->name, BLOCK_OPT_PREALLOC)) {
1472 if (!options->value.s || !strcmp(options->value.s, "off")) {
2f536801 1473 prealloc = false;
a8e0fdd7 1474 } else if (!strcmp(options->value.s, "full")) {
2f536801 1475 prealloc = true;
a8e0fdd7
MK
1476 } else {
1477 error_report("Invalid preallocation mode: '%s'",
1478 options->value.s);
b6fc8245
MK
1479 ret = -EINVAL;
1480 goto out;
a8e0fdd7 1481 }
33b1db1c
MK
1482 }
1483 options++;
1484 }
1485
1486 if (vdi_size > SD_MAX_VDI_SIZE) {
6daf194d 1487 error_report("too big image size");
b6fc8245
MK
1488 ret = -EINVAL;
1489 goto out;
33b1db1c
MK
1490 }
1491
1492 if (backing_file) {
1493 BlockDriverState *bs;
1494 BDRVSheepdogState *s;
1495 BlockDriver *drv;
1496
1497 /* Currently, only Sheepdog backing image is supported. */
98289620 1498 drv = bdrv_find_protocol(backing_file, true);
33b1db1c 1499 if (!drv || strcmp(drv->protocol_name, "sheepdog") != 0) {
6daf194d 1500 error_report("backing_file must be a sheepdog image");
b6fc8245
MK
1501 ret = -EINVAL;
1502 goto out;
33b1db1c
MK
1503 }
1504
787e4a85 1505 ret = bdrv_file_open(&bs, backing_file, NULL, 0);
cb595887 1506 if (ret < 0) {
b6fc8245 1507 goto out;
cb595887 1508 }
33b1db1c
MK
1509
1510 s = bs->opaque;
1511
1512 if (!is_snapshot(&s->inode)) {
6daf194d 1513 error_report("cannot clone from a non snapshot vdi");
33b1db1c 1514 bdrv_delete(bs);
b6fc8245
MK
1515 ret = -EINVAL;
1516 goto out;
33b1db1c
MK
1517 }
1518
b4447363 1519 base_vid = s->inode.vdi_id;
33b1db1c
MK
1520 bdrv_delete(bs);
1521 }
1522
25af257d 1523 ret = do_sd_create(s, vdi, vdi_size, base_vid, &vid, 0);
a8e0fdd7 1524 if (!prealloc || ret) {
b6fc8245 1525 goto out;
a8e0fdd7
MK
1526 }
1527
b6fc8245
MK
1528 ret = sd_prealloc(filename);
1529out:
1530 g_free(s);
1531 return ret;
33b1db1c
MK
1532}
1533
1534static void sd_close(BlockDriverState *bs)
1535{
1536 BDRVSheepdogState *s = bs->opaque;
1537 SheepdogVdiReq hdr;
1538 SheepdogVdiRsp *rsp = (SheepdogVdiRsp *)&hdr;
1539 unsigned int wlen, rlen = 0;
1540 int fd, ret;
1541
2440a2c3 1542 DPRINTF("%s\n", s->name);
33b1db1c 1543
25af257d 1544 fd = connect_to_sdog(s);
33b1db1c
MK
1545 if (fd < 0) {
1546 return;
1547 }
1548
1549 memset(&hdr, 0, sizeof(hdr));
1550
1551 hdr.opcode = SD_OP_RELEASE_VDI;
6f74c260 1552 hdr.vdi_id = s->inode.vdi_id;
33b1db1c
MK
1553 wlen = strlen(s->name) + 1;
1554 hdr.data_length = wlen;
1555 hdr.flags = SD_FLAG_CMD_WRITE;
1556
1557 ret = do_req(fd, (SheepdogReq *)&hdr, s->name, &wlen, &rlen);
1558
1559 closesocket(fd);
1560
1561 if (!ret && rsp->result != SD_RES_SUCCESS &&
1562 rsp->result != SD_RES_VDI_NOT_LOCKED) {
6daf194d 1563 error_report("%s, %s", sd_strerror(rsp->result), s->name);
33b1db1c
MK
1564 }
1565
bafbd6a1 1566 qemu_aio_set_fd_handler(s->fd, NULL, NULL, NULL, NULL);
33b1db1c 1567 closesocket(s->fd);
25af257d 1568 g_free(s->host_spec);
33b1db1c
MK
1569}
1570
1571static int64_t sd_getlength(BlockDriverState *bs)
1572{
1573 BDRVSheepdogState *s = bs->opaque;
1574
1575 return s->inode.vdi_size;
1576}
1577
1578static int sd_truncate(BlockDriverState *bs, int64_t offset)
1579{
1580 BDRVSheepdogState *s = bs->opaque;
1581 int ret, fd;
1582 unsigned int datalen;
1583
1584 if (offset < s->inode.vdi_size) {
6daf194d 1585 error_report("shrinking is not supported");
33b1db1c
MK
1586 return -EINVAL;
1587 } else if (offset > SD_MAX_VDI_SIZE) {
6daf194d 1588 error_report("too big image size");
33b1db1c
MK
1589 return -EINVAL;
1590 }
1591
25af257d 1592 fd = connect_to_sdog(s);
33b1db1c 1593 if (fd < 0) {
cb595887 1594 return fd;
33b1db1c
MK
1595 }
1596
1597 /* we don't need to update entire object */
1598 datalen = SD_INODE_SIZE - sizeof(s->inode.data_vdi_id);
1599 s->inode.vdi_size = offset;
1600 ret = write_object(fd, (char *)&s->inode, vid_to_vdi_oid(s->inode.vdi_id),
0e7106d8 1601 s->inode.nr_copies, datalen, 0, false, s->cache_flags);
33b1db1c
MK
1602 close(fd);
1603
1604 if (ret < 0) {
6daf194d 1605 error_report("failed to update an inode.");
33b1db1c
MK
1606 }
1607
cb595887 1608 return ret;
33b1db1c
MK
1609}
1610
1611/*
1612 * This function is called after writing data objects. If we need to
1613 * update metadata, this sends a write request to the vdi object.
2df46246 1614 * Otherwise, this switches back to sd_co_readv/writev.
33b1db1c 1615 */
d8716b41 1616static void coroutine_fn sd_write_done(SheepdogAIOCB *acb)
33b1db1c
MK
1617{
1618 int ret;
1619 BDRVSheepdogState *s = acb->common.bs->opaque;
1620 struct iovec iov;
1621 AIOReq *aio_req;
1622 uint32_t offset, data_len, mn, mx;
1623
1624 mn = s->min_dirty_data_idx;
1625 mx = s->max_dirty_data_idx;
1626 if (mn <= mx) {
1627 /* we need to update the vdi object. */
1628 offset = sizeof(s->inode) - sizeof(s->inode.data_vdi_id) +
1629 mn * sizeof(s->inode.data_vdi_id[0]);
1630 data_len = (mx - mn + 1) * sizeof(s->inode.data_vdi_id[0]);
1631
1632 s->min_dirty_data_idx = UINT32_MAX;
1633 s->max_dirty_data_idx = 0;
1634
1635 iov.iov_base = &s->inode;
1636 iov.iov_len = sizeof(s->inode);
1637 aio_req = alloc_aio_req(s, acb, vid_to_vdi_oid(s->inode.vdi_id),
1638 data_len, offset, 0, 0, offset);
c292ee6a 1639 QLIST_INSERT_HEAD(&s->inflight_aio_head, aio_req, aio_siblings);
2f536801 1640 ret = add_aio_request(s, aio_req, &iov, 1, false, AIOCB_WRITE_UDATA);
33b1db1c
MK
1641 if (ret) {
1642 free_aio_req(s, aio_req);
1643 acb->ret = -EIO;
1644 goto out;
1645 }
1646
1647 acb->aio_done_func = sd_finish_aiocb;
1648 acb->aiocb_type = AIOCB_WRITE_UDATA;
1649 return;
1650 }
1651out:
1652 sd_finish_aiocb(acb);
1653}
1654
859e5553
LY
1655/* Delete current working VDI on the snapshot chain */
1656static bool sd_delete(BDRVSheepdogState *s)
1657{
1658 unsigned int wlen = SD_MAX_VDI_LEN, rlen = 0;
1659 SheepdogVdiReq hdr = {
1660 .opcode = SD_OP_DEL_VDI,
1661 .vdi_id = s->inode.vdi_id,
1662 .data_length = wlen,
1663 .flags = SD_FLAG_CMD_WRITE,
1664 };
1665 SheepdogVdiRsp *rsp = (SheepdogVdiRsp *)&hdr;
1666 int fd, ret;
1667
1668 fd = connect_to_sdog(s);
1669 if (fd < 0) {
1670 return false;
1671 }
1672
1673 ret = do_req(fd, (SheepdogReq *)&hdr, s->name, &wlen, &rlen);
1674 closesocket(fd);
1675 if (ret) {
1676 return false;
1677 }
1678 switch (rsp->result) {
1679 case SD_RES_NO_VDI:
1680 error_report("%s was already deleted", s->name);
1681 /* fall through */
1682 case SD_RES_SUCCESS:
1683 break;
1684 default:
1685 error_report("%s, %s", sd_strerror(rsp->result), s->name);
1686 return false;
1687 }
1688
1689 return true;
1690}
1691
33b1db1c
MK
1692/*
1693 * Create a writable VDI from a snapshot
1694 */
1695static int sd_create_branch(BDRVSheepdogState *s)
1696{
1697 int ret, fd;
1698 uint32_t vid;
1699 char *buf;
859e5553 1700 bool deleted;
33b1db1c 1701
2440a2c3 1702 DPRINTF("%" PRIx32 " is snapshot.\n", s->inode.vdi_id);
33b1db1c 1703
7267c094 1704 buf = g_malloc(SD_INODE_SIZE);
33b1db1c 1705
859e5553
LY
1706 /*
1707 * Even If deletion fails, we will just create extra snapshot based on
1708 * the workding VDI which was supposed to be deleted. So no need to
1709 * false bail out.
1710 */
1711 deleted = sd_delete(s);
1712 ret = do_sd_create(s, s->name, s->inode.vdi_size, s->inode.vdi_id, &vid,
1713 !deleted);
33b1db1c
MK
1714 if (ret) {
1715 goto out;
1716 }
1717
2440a2c3 1718 DPRINTF("%" PRIx32 " is created.\n", vid);
33b1db1c 1719
25af257d 1720 fd = connect_to_sdog(s);
33b1db1c 1721 if (fd < 0) {
cb595887 1722 ret = fd;
33b1db1c
MK
1723 goto out;
1724 }
1725
1726 ret = read_object(fd, buf, vid_to_vdi_oid(vid), s->inode.nr_copies,
0e7106d8 1727 SD_INODE_SIZE, 0, s->cache_flags);
33b1db1c
MK
1728
1729 closesocket(fd);
1730
1731 if (ret < 0) {
1732 goto out;
1733 }
1734
1735 memcpy(&s->inode, buf, sizeof(s->inode));
1736
2f536801 1737 s->is_snapshot = false;
33b1db1c 1738 ret = 0;
2440a2c3 1739 DPRINTF("%" PRIx32 " was newly created.\n", s->inode.vdi_id);
33b1db1c
MK
1740
1741out:
7267c094 1742 g_free(buf);
33b1db1c
MK
1743
1744 return ret;
1745}
1746
1747/*
1748 * Send I/O requests to the server.
1749 *
1750 * This function sends requests to the server, links the requests to
c292ee6a 1751 * the inflight_list in BDRVSheepdogState, and exits without
33b1db1c
MK
1752 * waiting the response. The responses are received in the
1753 * `aio_read_response' function which is called from the main loop as
1754 * a fd handler.
2df46246
MK
1755 *
1756 * Returns 1 when we need to wait a response, 0 when there is no sent
1757 * request and -errno in error cases.
33b1db1c 1758 */
d8716b41 1759static int coroutine_fn sd_co_rw_vector(void *p)
33b1db1c
MK
1760{
1761 SheepdogAIOCB *acb = p;
1762 int ret = 0;
e8bfaa2f
LY
1763 unsigned long len, done = 0, total = acb->nb_sectors * BDRV_SECTOR_SIZE;
1764 unsigned long idx = acb->sector_num * BDRV_SECTOR_SIZE / SD_DATA_OBJ_SIZE;
33b1db1c 1765 uint64_t oid;
e8bfaa2f 1766 uint64_t offset = (acb->sector_num * BDRV_SECTOR_SIZE) % SD_DATA_OBJ_SIZE;
33b1db1c
MK
1767 BDRVSheepdogState *s = acb->common.bs->opaque;
1768 SheepdogInode *inode = &s->inode;
1769 AIOReq *aio_req;
1770
33b1db1c
MK
1771 if (acb->aiocb_type == AIOCB_WRITE_UDATA && s->is_snapshot) {
1772 /*
1773 * In the case we open the snapshot VDI, Sheepdog creates the
1774 * writable VDI when we do a write operation first.
1775 */
1776 ret = sd_create_branch(s);
1777 if (ret) {
1778 acb->ret = -EIO;
1779 goto out;
1780 }
1781 }
1782
1d732d7d
MK
1783 /*
1784 * Make sure we don't free the aiocb before we are done with all requests.
1785 * This additional reference is dropped at the end of this function.
1786 */
1787 acb->nr_pending++;
1788
33b1db1c
MK
1789 while (done != total) {
1790 uint8_t flags = 0;
1791 uint64_t old_oid = 0;
2f536801 1792 bool create = false;
33b1db1c
MK
1793
1794 oid = vid_to_data_oid(inode->data_vdi_id[idx], idx);
1795
1796 len = MIN(total - done, SD_DATA_OBJ_SIZE - offset);
1797
19db9b90
CH
1798 switch (acb->aiocb_type) {
1799 case AIOCB_READ_UDATA:
1800 if (!inode->data_vdi_id[idx]) {
1801 qemu_iovec_memset(acb->qiov, done, 0, len);
33b1db1c
MK
1802 goto done;
1803 }
19db9b90
CH
1804 break;
1805 case AIOCB_WRITE_UDATA:
1806 if (!inode->data_vdi_id[idx]) {
2f536801 1807 create = true;
19db9b90
CH
1808 } else if (!is_data_obj_writable(inode, idx)) {
1809 /* Copy-On-Write */
2f536801 1810 create = true;
19db9b90
CH
1811 old_oid = oid;
1812 flags = SD_FLAG_CMD_COW;
1813 }
1814 break;
cac8f4a6
LY
1815 case AIOCB_DISCARD_OBJ:
1816 /*
1817 * We discard the object only when the whole object is
1818 * 1) allocated 2) trimmed. Otherwise, simply skip it.
1819 */
1820 if (len != SD_DATA_OBJ_SIZE || inode->data_vdi_id[idx] == 0) {
1821 goto done;
1822 }
1823 break;
19db9b90
CH
1824 default:
1825 break;
33b1db1c
MK
1826 }
1827
1828 if (create) {
2440a2c3 1829 DPRINTF("update ino (%" PRIu32 ") %" PRIu64 " %" PRIu64 " %ld\n",
1b6ac998 1830 inode->vdi_id, oid,
33b1db1c
MK
1831 vid_to_data_oid(inode->data_vdi_id[idx], idx), idx);
1832 oid = vid_to_data_oid(inode->vdi_id, idx);
2440a2c3 1833 DPRINTF("new oid %" PRIx64 "\n", oid);
33b1db1c
MK
1834 }
1835
1836 aio_req = alloc_aio_req(s, acb, oid, len, offset, flags, old_oid, done);
1837
1838 if (create) {
1839 AIOReq *areq;
c292ee6a 1840 QLIST_FOREACH(areq, &s->inflight_aio_head, aio_siblings) {
33b1db1c
MK
1841 if (areq->oid == oid) {
1842 /*
1843 * Sheepdog cannot handle simultaneous create
1844 * requests to the same object. So we cannot send
1845 * the request until the previous request
1846 * finishes.
1847 */
1848 aio_req->flags = 0;
1849 aio_req->base_oid = 0;
c292ee6a
MK
1850 QLIST_INSERT_HEAD(&s->pending_aio_head, aio_req,
1851 aio_siblings);
33b1db1c
MK
1852 goto done;
1853 }
1854 }
1855 }
1856
c292ee6a 1857 QLIST_INSERT_HEAD(&s->inflight_aio_head, aio_req, aio_siblings);
33b1db1c
MK
1858 ret = add_aio_request(s, aio_req, acb->qiov->iov, acb->qiov->niov,
1859 create, acb->aiocb_type);
1860 if (ret < 0) {
6daf194d 1861 error_report("add_aio_request is failed");
33b1db1c
MK
1862 free_aio_req(s, aio_req);
1863 acb->ret = -EIO;
1864 goto out;
1865 }
1866 done:
1867 offset = 0;
1868 idx++;
1869 done += len;
1870 }
1871out:
1d732d7d 1872 if (!--acb->nr_pending) {
2df46246 1873 return acb->ret;
33b1db1c 1874 }
2df46246 1875 return 1;
33b1db1c
MK
1876}
1877
a968168c 1878static coroutine_fn int sd_co_writev(BlockDriverState *bs, int64_t sector_num,
2df46246 1879 int nb_sectors, QEMUIOVector *qiov)
33b1db1c
MK
1880{
1881 SheepdogAIOCB *acb;
2df46246 1882 int ret;
33b1db1c
MK
1883
1884 if (bs->growable && sector_num + nb_sectors > bs->total_sectors) {
e8bfaa2f 1885 ret = sd_truncate(bs, (sector_num + nb_sectors) * BDRV_SECTOR_SIZE);
cb595887
MK
1886 if (ret < 0) {
1887 return ret;
33b1db1c
MK
1888 }
1889 bs->total_sectors = sector_num + nb_sectors;
1890 }
1891
f700f8e3 1892 acb = sd_aio_setup(bs, qiov, sector_num, nb_sectors);
33b1db1c
MK
1893 acb->aio_done_func = sd_write_done;
1894 acb->aiocb_type = AIOCB_WRITE_UDATA;
1895
2df46246
MK
1896 ret = sd_co_rw_vector(acb);
1897 if (ret <= 0) {
1898 qemu_aio_release(acb);
1899 return ret;
1900 }
1901
1902 qemu_coroutine_yield();
1903
1904 return acb->ret;
33b1db1c
MK
1905}
1906
a968168c 1907static coroutine_fn int sd_co_readv(BlockDriverState *bs, int64_t sector_num,
2df46246 1908 int nb_sectors, QEMUIOVector *qiov)
33b1db1c
MK
1909{
1910 SheepdogAIOCB *acb;
19db9b90 1911 int ret;
33b1db1c 1912
f700f8e3 1913 acb = sd_aio_setup(bs, qiov, sector_num, nb_sectors);
33b1db1c
MK
1914 acb->aiocb_type = AIOCB_READ_UDATA;
1915 acb->aio_done_func = sd_finish_aiocb;
1916
2df46246
MK
1917 ret = sd_co_rw_vector(acb);
1918 if (ret <= 0) {
1919 qemu_aio_release(acb);
1920 return ret;
1921 }
1922
1923 qemu_coroutine_yield();
1924
1925 return acb->ret;
33b1db1c
MK
1926}
1927
47622c44
LY
1928static int coroutine_fn sd_co_flush_to_disk(BlockDriverState *bs)
1929{
1930 BDRVSheepdogState *s = bs->opaque;
47783072
LY
1931 SheepdogAIOCB *acb;
1932 AIOReq *aio_req;
47622c44 1933 int ret;
47622c44 1934
0e7106d8 1935 if (s->cache_flags != SD_FLAG_CMD_CACHE) {
47622c44
LY
1936 return 0;
1937 }
1938
f700f8e3 1939 acb = sd_aio_setup(bs, NULL, 0, 0);
47783072
LY
1940 acb->aiocb_type = AIOCB_FLUSH_CACHE;
1941 acb->aio_done_func = sd_finish_aiocb;
47622c44 1942
47783072
LY
1943 aio_req = alloc_aio_req(s, acb, vid_to_vdi_oid(s->inode.vdi_id),
1944 0, 0, 0, 0, 0);
1945 QLIST_INSERT_HEAD(&s->inflight_aio_head, aio_req, aio_siblings);
1946 ret = add_aio_request(s, aio_req, NULL, 0, false, acb->aiocb_type);
1947 if (ret < 0) {
1948 error_report("add_aio_request is failed");
1949 free_aio_req(s, aio_req);
1950 qemu_aio_release(acb);
47622c44
LY
1951 return ret;
1952 }
1953
47783072
LY
1954 qemu_coroutine_yield();
1955 return acb->ret;
47622c44
LY
1956}
1957
33b1db1c
MK
1958static int sd_snapshot_create(BlockDriverState *bs, QEMUSnapshotInfo *sn_info)
1959{
1960 BDRVSheepdogState *s = bs->opaque;
1961 int ret, fd;
1962 uint32_t new_vid;
1963 SheepdogInode *inode;
1964 unsigned int datalen;
1965
2440a2c3 1966 DPRINTF("sn_info: name %s id_str %s s: name %s vm_state_size %" PRId64 " "
33b1db1c
MK
1967 "is_snapshot %d\n", sn_info->name, sn_info->id_str,
1968 s->name, sn_info->vm_state_size, s->is_snapshot);
1969
1970 if (s->is_snapshot) {
1971 error_report("You can't create a snapshot of a snapshot VDI, "
6daf194d 1972 "%s (%" PRIu32 ").", s->name, s->inode.vdi_id);
33b1db1c
MK
1973
1974 return -EINVAL;
1975 }
1976
2440a2c3 1977 DPRINTF("%s %s\n", sn_info->name, sn_info->id_str);
33b1db1c
MK
1978
1979 s->inode.vm_state_size = sn_info->vm_state_size;
1980 s->inode.vm_clock_nsec = sn_info->vm_clock_nsec;
3178e275
JM
1981 /* It appears that inode.tag does not require a NUL terminator,
1982 * which means this use of strncpy is ok.
1983 */
33b1db1c
MK
1984 strncpy(s->inode.tag, sn_info->name, sizeof(s->inode.tag));
1985 /* we don't need to update entire object */
1986 datalen = SD_INODE_SIZE - sizeof(s->inode.data_vdi_id);
1987
1988 /* refresh inode. */
25af257d 1989 fd = connect_to_sdog(s);
33b1db1c 1990 if (fd < 0) {
cb595887 1991 ret = fd;
33b1db1c
MK
1992 goto cleanup;
1993 }
1994
1995 ret = write_object(fd, (char *)&s->inode, vid_to_vdi_oid(s->inode.vdi_id),
0e7106d8 1996 s->inode.nr_copies, datalen, 0, false, s->cache_flags);
33b1db1c 1997 if (ret < 0) {
6daf194d 1998 error_report("failed to write snapshot's inode.");
33b1db1c
MK
1999 goto cleanup;
2000 }
2001
25af257d
MK
2002 ret = do_sd_create(s, s->name, s->inode.vdi_size, s->inode.vdi_id, &new_vid,
2003 1);
33b1db1c 2004 if (ret < 0) {
6daf194d 2005 error_report("failed to create inode for snapshot. %s",
33b1db1c 2006 strerror(errno));
33b1db1c
MK
2007 goto cleanup;
2008 }
2009
7267c094 2010 inode = (SheepdogInode *)g_malloc(datalen);
33b1db1c
MK
2011
2012 ret = read_object(fd, (char *)inode, vid_to_vdi_oid(new_vid),
0e7106d8 2013 s->inode.nr_copies, datalen, 0, s->cache_flags);
33b1db1c
MK
2014
2015 if (ret < 0) {
6daf194d 2016 error_report("failed to read new inode info. %s", strerror(errno));
33b1db1c
MK
2017 goto cleanup;
2018 }
2019
2020 memcpy(&s->inode, inode, datalen);
2440a2c3 2021 DPRINTF("s->inode: name %s snap_id %x oid %x\n",
33b1db1c
MK
2022 s->inode.name, s->inode.snap_id, s->inode.vdi_id);
2023
2024cleanup:
2025 closesocket(fd);
2026 return ret;
2027}
2028
859e5553
LY
2029/*
2030 * We implement rollback(loadvm) operation to the specified snapshot by
2031 * 1) switch to the snapshot
2032 * 2) rely on sd_create_branch to delete working VDI and
2033 * 3) create a new working VDI based on the speicified snapshot
2034 */
33b1db1c
MK
2035static int sd_snapshot_goto(BlockDriverState *bs, const char *snapshot_id)
2036{
2037 BDRVSheepdogState *s = bs->opaque;
2038 BDRVSheepdogState *old_s;
9ff53a0e 2039 char tag[SD_MAX_VDI_TAG_LEN];
33b1db1c 2040 uint32_t snapid = 0;
9ff53a0e 2041 int ret = 0;
33b1db1c 2042
7267c094 2043 old_s = g_malloc(sizeof(BDRVSheepdogState));
33b1db1c
MK
2044
2045 memcpy(old_s, s, sizeof(BDRVSheepdogState));
2046
33b1db1c 2047 snapid = strtoul(snapshot_id, NULL, 10);
3178e275
JM
2048 if (snapid) {
2049 tag[0] = 0;
2050 } else {
b579ffb3 2051 pstrcpy(tag, sizeof(tag), snapshot_id);
33b1db1c
MK
2052 }
2053
9ff53a0e 2054 ret = reload_inode(s, snapid, tag);
33b1db1c 2055 if (ret) {
33b1db1c
MK
2056 goto out;
2057 }
2058
cede621f
LY
2059 ret = sd_create_branch(s);
2060 if (ret) {
33b1db1c
MK
2061 goto out;
2062 }
2063
7267c094 2064 g_free(old_s);
33b1db1c
MK
2065
2066 return 0;
2067out:
2068 /* recover bdrv_sd_state */
2069 memcpy(s, old_s, sizeof(BDRVSheepdogState));
7267c094 2070 g_free(old_s);
33b1db1c 2071
6daf194d 2072 error_report("failed to open. recover old bdrv_sd_state.");
33b1db1c
MK
2073
2074 return ret;
2075}
2076
2077static int sd_snapshot_delete(BlockDriverState *bs, const char *snapshot_id)
2078{
2079 /* FIXME: Delete specified snapshot id. */
2080 return 0;
2081}
2082
33b1db1c
MK
2083static int sd_snapshot_list(BlockDriverState *bs, QEMUSnapshotInfo **psn_tab)
2084{
2085 BDRVSheepdogState *s = bs->opaque;
2086 SheepdogReq req;
2087 int fd, nr = 1024, ret, max = BITS_TO_LONGS(SD_NR_VDIS) * sizeof(long);
2088 QEMUSnapshotInfo *sn_tab = NULL;
2089 unsigned wlen, rlen;
2090 int found = 0;
2091 static SheepdogInode inode;
2092 unsigned long *vdi_inuse;
2093 unsigned int start_nr;
2094 uint64_t hval;
2095 uint32_t vid;
2096
7267c094 2097 vdi_inuse = g_malloc(max);
33b1db1c 2098
25af257d 2099 fd = connect_to_sdog(s);
33b1db1c 2100 if (fd < 0) {
cb595887 2101 ret = fd;
33b1db1c
MK
2102 goto out;
2103 }
2104
2105 rlen = max;
2106 wlen = 0;
2107
2108 memset(&req, 0, sizeof(req));
2109
2110 req.opcode = SD_OP_READ_VDIS;
2111 req.data_length = max;
2112
2113 ret = do_req(fd, (SheepdogReq *)&req, vdi_inuse, &wlen, &rlen);
2114
2115 closesocket(fd);
2116 if (ret) {
2117 goto out;
2118 }
2119
7267c094 2120 sn_tab = g_malloc0(nr * sizeof(*sn_tab));
33b1db1c
MK
2121
2122 /* calculate a vdi id with hash function */
2123 hval = fnv_64a_buf(s->name, strlen(s->name), FNV1A_64_INIT);
2124 start_nr = hval & (SD_NR_VDIS - 1);
2125
25af257d 2126 fd = connect_to_sdog(s);
33b1db1c 2127 if (fd < 0) {
cb595887 2128 ret = fd;
33b1db1c
MK
2129 goto out;
2130 }
2131
2132 for (vid = start_nr; found < nr; vid = (vid + 1) % SD_NR_VDIS) {
2133 if (!test_bit(vid, vdi_inuse)) {
2134 break;
2135 }
2136
2137 /* we don't need to read entire object */
2138 ret = read_object(fd, (char *)&inode, vid_to_vdi_oid(vid),
47622c44 2139 0, SD_INODE_SIZE - sizeof(inode.data_vdi_id), 0,
0e7106d8 2140 s->cache_flags);
33b1db1c
MK
2141
2142 if (ret) {
2143 continue;
2144 }
2145
2146 if (!strcmp(inode.name, s->name) && is_snapshot(&inode)) {
2147 sn_tab[found].date_sec = inode.snap_ctime >> 32;
2148 sn_tab[found].date_nsec = inode.snap_ctime & 0xffffffff;
2149 sn_tab[found].vm_state_size = inode.vm_state_size;
2150 sn_tab[found].vm_clock_nsec = inode.vm_clock_nsec;
2151
2152 snprintf(sn_tab[found].id_str, sizeof(sn_tab[found].id_str), "%u",
2153 inode.snap_id);
3178e275
JM
2154 pstrcpy(sn_tab[found].name,
2155 MIN(sizeof(sn_tab[found].name), sizeof(inode.tag)),
2156 inode.tag);
33b1db1c
MK
2157 found++;
2158 }
2159 }
2160
2161 closesocket(fd);
2162out:
2163 *psn_tab = sn_tab;
2164
7267c094 2165 g_free(vdi_inuse);
33b1db1c 2166
cb595887
MK
2167 if (ret < 0) {
2168 return ret;
2169 }
2170
33b1db1c
MK
2171 return found;
2172}
2173
2174static int do_load_save_vmstate(BDRVSheepdogState *s, uint8_t *data,
2175 int64_t pos, int size, int load)
2176{
2f536801
MK
2177 bool create;
2178 int fd, ret = 0, remaining = size;
33b1db1c
MK
2179 unsigned int data_len;
2180 uint64_t vmstate_oid;
33b1db1c 2181 uint64_t offset;
cede621f
LY
2182 uint32_t vdi_index;
2183 uint32_t vdi_id = load ? s->inode.parent_vdi_id : s->inode.vdi_id;
33b1db1c 2184
25af257d 2185 fd = connect_to_sdog(s);
33b1db1c 2186 if (fd < 0) {
cb595887 2187 return fd;
33b1db1c
MK
2188 }
2189
6f3c714e 2190 while (remaining) {
33b1db1c
MK
2191 vdi_index = pos / SD_DATA_OBJ_SIZE;
2192 offset = pos % SD_DATA_OBJ_SIZE;
2193
1f7a48de 2194 data_len = MIN(remaining, SD_DATA_OBJ_SIZE - offset);
33b1db1c 2195
cede621f 2196 vmstate_oid = vid_to_vmstate_oid(vdi_id, vdi_index);
33b1db1c
MK
2197
2198 create = (offset == 0);
2199 if (load) {
2200 ret = read_object(fd, (char *)data, vmstate_oid,
47622c44 2201 s->inode.nr_copies, data_len, offset,
0e7106d8 2202 s->cache_flags);
33b1db1c
MK
2203 } else {
2204 ret = write_object(fd, (char *)data, vmstate_oid,
47622c44 2205 s->inode.nr_copies, data_len, offset, create,
0e7106d8 2206 s->cache_flags);
33b1db1c
MK
2207 }
2208
2209 if (ret < 0) {
6daf194d 2210 error_report("failed to save vmstate %s", strerror(errno));
33b1db1c
MK
2211 goto cleanup;
2212 }
2213
2214 pos += data_len;
1f7a48de 2215 data += data_len;
6f3c714e 2216 remaining -= data_len;
33b1db1c 2217 }
6f3c714e 2218 ret = size;
33b1db1c
MK
2219cleanup:
2220 closesocket(fd);
2221 return ret;
2222}
2223
cf8074b3
KW
2224static int sd_save_vmstate(BlockDriverState *bs, QEMUIOVector *qiov,
2225 int64_t pos)
33b1db1c
MK
2226{
2227 BDRVSheepdogState *s = bs->opaque;
cf8074b3
KW
2228 void *buf;
2229 int ret;
33b1db1c 2230
cf8074b3
KW
2231 buf = qemu_blockalign(bs, qiov->size);
2232 qemu_iovec_to_buf(qiov, 0, buf, qiov->size);
2233 ret = do_load_save_vmstate(s, (uint8_t *) buf, pos, qiov->size, 0);
2234 qemu_vfree(buf);
2235
2236 return ret;
33b1db1c
MK
2237}
2238
2239static int sd_load_vmstate(BlockDriverState *bs, uint8_t *data,
2240 int64_t pos, int size)
2241{
2242 BDRVSheepdogState *s = bs->opaque;
2243
2244 return do_load_save_vmstate(s, data, pos, size, 1);
2245}
2246
2247
cac8f4a6
LY
2248static coroutine_fn int sd_co_discard(BlockDriverState *bs, int64_t sector_num,
2249 int nb_sectors)
2250{
2251 SheepdogAIOCB *acb;
2252 QEMUIOVector dummy;
2253 BDRVSheepdogState *s = bs->opaque;
2254 int ret;
2255
2256 if (!s->discard_supported) {
2257 return 0;
2258 }
2259
2260 acb = sd_aio_setup(bs, &dummy, sector_num, nb_sectors);
2261 acb->aiocb_type = AIOCB_DISCARD_OBJ;
2262 acb->aio_done_func = sd_finish_aiocb;
2263
2264 ret = sd_co_rw_vector(acb);
2265 if (ret <= 0) {
2266 qemu_aio_release(acb);
2267 return ret;
2268 }
2269
2270 qemu_coroutine_yield();
2271
2272 return acb->ret;
2273}
2274
8d71c631
LY
2275static coroutine_fn int
2276sd_co_is_allocated(BlockDriverState *bs, int64_t sector_num, int nb_sectors,
2277 int *pnum)
2278{
2279 BDRVSheepdogState *s = bs->opaque;
2280 SheepdogInode *inode = &s->inode;
2281 unsigned long start = sector_num * BDRV_SECTOR_SIZE / SD_DATA_OBJ_SIZE,
2282 end = DIV_ROUND_UP((sector_num + nb_sectors) *
2283 BDRV_SECTOR_SIZE, SD_DATA_OBJ_SIZE);
2284 unsigned long idx;
2285 int ret = 1;
2286
2287 for (idx = start; idx < end; idx++) {
2288 if (inode->data_vdi_id[idx] == 0) {
2289 break;
2290 }
2291 }
2292 if (idx == start) {
2293 /* Get the longest length of unallocated sectors */
2294 ret = 0;
2295 for (idx = start + 1; idx < end; idx++) {
2296 if (inode->data_vdi_id[idx] != 0) {
2297 break;
2298 }
2299 }
2300 }
2301
2302 *pnum = (idx - start) * SD_DATA_OBJ_SIZE / BDRV_SECTOR_SIZE;
2303 if (*pnum > nb_sectors) {
2304 *pnum = nb_sectors;
2305 }
2306 return ret;
2307}
2308
33b1db1c
MK
2309static QEMUOptionParameter sd_create_options[] = {
2310 {
2311 .name = BLOCK_OPT_SIZE,
2312 .type = OPT_SIZE,
2313 .help = "Virtual disk size"
2314 },
2315 {
2316 .name = BLOCK_OPT_BACKING_FILE,
2317 .type = OPT_STRING,
2318 .help = "File name of a base image"
2319 },
a8e0fdd7
MK
2320 {
2321 .name = BLOCK_OPT_PREALLOC,
2322 .type = OPT_STRING,
2323 .help = "Preallocation mode (allowed values: off, full)"
2324 },
33b1db1c
MK
2325 { NULL }
2326};
2327
5d6768e3 2328static BlockDriver bdrv_sheepdog = {
33b1db1c
MK
2329 .format_name = "sheepdog",
2330 .protocol_name = "sheepdog",
2331 .instance_size = sizeof(BDRVSheepdogState),
2332 .bdrv_file_open = sd_open,
2333 .bdrv_close = sd_close,
2334 .bdrv_create = sd_create,
e4f5c1bf 2335 .bdrv_has_zero_init = bdrv_has_zero_init_1,
33b1db1c
MK
2336 .bdrv_getlength = sd_getlength,
2337 .bdrv_truncate = sd_truncate,
2338
2df46246
MK
2339 .bdrv_co_readv = sd_co_readv,
2340 .bdrv_co_writev = sd_co_writev,
47622c44 2341 .bdrv_co_flush_to_disk = sd_co_flush_to_disk,
cac8f4a6 2342 .bdrv_co_discard = sd_co_discard,
8d71c631 2343 .bdrv_co_is_allocated = sd_co_is_allocated,
33b1db1c
MK
2344
2345 .bdrv_snapshot_create = sd_snapshot_create,
2346 .bdrv_snapshot_goto = sd_snapshot_goto,
2347 .bdrv_snapshot_delete = sd_snapshot_delete,
2348 .bdrv_snapshot_list = sd_snapshot_list,
2349
2350 .bdrv_save_vmstate = sd_save_vmstate,
2351 .bdrv_load_vmstate = sd_load_vmstate,
2352
2353 .create_options = sd_create_options,
2354};
2355
5d6768e3
MK
2356static BlockDriver bdrv_sheepdog_tcp = {
2357 .format_name = "sheepdog",
2358 .protocol_name = "sheepdog+tcp",
2359 .instance_size = sizeof(BDRVSheepdogState),
2360 .bdrv_file_open = sd_open,
2361 .bdrv_close = sd_close,
2362 .bdrv_create = sd_create,
e4f5c1bf 2363 .bdrv_has_zero_init = bdrv_has_zero_init_1,
5d6768e3
MK
2364 .bdrv_getlength = sd_getlength,
2365 .bdrv_truncate = sd_truncate,
2366
2367 .bdrv_co_readv = sd_co_readv,
2368 .bdrv_co_writev = sd_co_writev,
2369 .bdrv_co_flush_to_disk = sd_co_flush_to_disk,
cac8f4a6 2370 .bdrv_co_discard = sd_co_discard,
8d71c631 2371 .bdrv_co_is_allocated = sd_co_is_allocated,
5d6768e3
MK
2372
2373 .bdrv_snapshot_create = sd_snapshot_create,
2374 .bdrv_snapshot_goto = sd_snapshot_goto,
2375 .bdrv_snapshot_delete = sd_snapshot_delete,
2376 .bdrv_snapshot_list = sd_snapshot_list,
2377
2378 .bdrv_save_vmstate = sd_save_vmstate,
2379 .bdrv_load_vmstate = sd_load_vmstate,
2380
2381 .create_options = sd_create_options,
2382};
2383
1b8bbb46
MK
2384static BlockDriver bdrv_sheepdog_unix = {
2385 .format_name = "sheepdog",
2386 .protocol_name = "sheepdog+unix",
2387 .instance_size = sizeof(BDRVSheepdogState),
2388 .bdrv_file_open = sd_open,
2389 .bdrv_close = sd_close,
2390 .bdrv_create = sd_create,
3ac21627 2391 .bdrv_has_zero_init = bdrv_has_zero_init_1,
1b8bbb46
MK
2392 .bdrv_getlength = sd_getlength,
2393 .bdrv_truncate = sd_truncate,
2394
2395 .bdrv_co_readv = sd_co_readv,
2396 .bdrv_co_writev = sd_co_writev,
2397 .bdrv_co_flush_to_disk = sd_co_flush_to_disk,
cac8f4a6 2398 .bdrv_co_discard = sd_co_discard,
8d71c631 2399 .bdrv_co_is_allocated = sd_co_is_allocated,
1b8bbb46
MK
2400
2401 .bdrv_snapshot_create = sd_snapshot_create,
2402 .bdrv_snapshot_goto = sd_snapshot_goto,
2403 .bdrv_snapshot_delete = sd_snapshot_delete,
2404 .bdrv_snapshot_list = sd_snapshot_list,
2405
2406 .bdrv_save_vmstate = sd_save_vmstate,
2407 .bdrv_load_vmstate = sd_load_vmstate,
2408
2409 .create_options = sd_create_options,
2410};
2411
33b1db1c
MK
2412static void bdrv_sheepdog_init(void)
2413{
2414 bdrv_register(&bdrv_sheepdog);
5d6768e3 2415 bdrv_register(&bdrv_sheepdog_tcp);
1b8bbb46 2416 bdrv_register(&bdrv_sheepdog_unix);
33b1db1c
MK
2417}
2418block_init(bdrv_sheepdog_init);