2 * Copyright (C) 2009-2010 Nippon Telegraph and Telephone Corporation.
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.
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/>.
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.
15 #include "qemu-common.h"
17 #include "qemu/error-report.h"
18 #include "qemu/sockets.h"
19 #include "block/block_int.h"
20 #include "qemu/bitops.h"
22 #define SD_PROTO_VER 0x01
24 #define SD_DEFAULT_ADDR "localhost"
25 #define SD_DEFAULT_PORT 7000
27 #define SD_OP_CREATE_AND_WRITE_OBJ 0x01
28 #define SD_OP_READ_OBJ 0x02
29 #define SD_OP_WRITE_OBJ 0x03
30 /* 0x04 is used internally by Sheepdog */
31 #define SD_OP_DISCARD_OBJ 0x05
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
38 #define SD_OP_FLUSH_VDI 0x16
39 #define SD_OP_DEL_VDI 0x17
41 #define SD_FLAG_CMD_WRITE 0x01
42 #define SD_FLAG_CMD_COW 0x02
43 #define SD_FLAG_CMD_CACHE 0x04 /* Writeback mode for cache */
44 #define SD_FLAG_CMD_DIRECT 0x08 /* Don't use cache */
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 */
71 #define SD_RES_HALT 0x19 /* Sheepdog is stopped serving IO request */
72 #define SD_RES_READONLY 0x1A /* Object is read-only */
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
81 * 60 - 63 ( 4 bits): object type identifier space
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)
95 * For erasure coding, we use at most SD_EC_MAX_STRIP for data strips and
96 * (SD_EC_MAX_STRIP - 1) for parity strips
98 * SD_MAX_COPIES is sum of number of data strips and parity strips.
100 #define SD_EC_MAX_STRIP 16
101 #define SD_MAX_COPIES (SD_EC_MAX_STRIP * 2 - 1)
103 #define SD_INODE_SIZE (sizeof(SheepdogInode))
104 #define CURRENT_VDI_ID 0
106 #define LOCK_TYPE_NORMAL 0
107 #define LOCK_TYPE_SHARED 1 /* for iSCSI multipath */
109 typedef struct SheepdogReq
{
115 uint32_t data_length
;
116 uint32_t opcode_specific
[8];
119 typedef struct SheepdogRsp
{
125 uint32_t data_length
;
127 uint32_t opcode_specific
[7];
130 typedef struct SheepdogObjReq
{
136 uint32_t data_length
;
145 typedef struct SheepdogObjRsp
{
151 uint32_t data_length
;
159 typedef struct SheepdogVdiReq
{
165 uint32_t data_length
;
167 uint32_t base_vdi_id
;
176 typedef struct SheepdogVdiRsp
{
182 uint32_t data_length
;
189 typedef struct SheepdogInode
{
190 char name
[SD_MAX_VDI_LEN
];
191 char tag
[SD_MAX_VDI_TAG_LEN
];
194 uint64_t vm_clock_nsec
;
196 uint64_t vm_state_size
;
197 uint16_t copy_policy
;
199 uint8_t block_size_shift
;
202 uint32_t parent_vdi_id
;
203 uint32_t child_vdi_id
[MAX_CHILDREN
];
204 uint32_t data_vdi_id
[MAX_DATA_OBJS
];
207 #define SD_INODE_HEADER_SIZE offsetof(SheepdogInode, data_vdi_id)
210 * 64 bit FNV-1a non-zero initial basis
212 #define FNV1A_64_INIT ((uint64_t)0xcbf29ce484222325ULL)
215 * 64 bit Fowler/Noll/Vo FNV-1a hash code
217 static inline uint64_t fnv_64a_buf(void *buf
, size_t len
, uint64_t hval
)
219 unsigned char *bp
= buf
;
220 unsigned char *be
= bp
+ len
;
222 hval
^= (uint64_t) *bp
++;
223 hval
+= (hval
<< 1) + (hval
<< 4) + (hval
<< 5) +
224 (hval
<< 7) + (hval
<< 8) + (hval
<< 40);
229 static inline bool is_data_obj_writable(SheepdogInode
*inode
, unsigned int idx
)
231 return inode
->vdi_id
== inode
->data_vdi_id
[idx
];
234 static inline bool is_data_obj(uint64_t oid
)
236 return !(VDI_BIT
& oid
);
239 static inline uint64_t data_oid_to_idx(uint64_t oid
)
241 return oid
& (MAX_DATA_OBJS
- 1);
244 static inline uint32_t oid_to_vid(uint64_t oid
)
246 return (oid
& ~VDI_BIT
) >> VDI_SPACE_SHIFT
;
249 static inline uint64_t vid_to_vdi_oid(uint32_t vid
)
251 return VDI_BIT
| ((uint64_t)vid
<< VDI_SPACE_SHIFT
);
254 static inline uint64_t vid_to_vmstate_oid(uint32_t vid
, uint32_t idx
)
256 return VMSTATE_BIT
| ((uint64_t)vid
<< VDI_SPACE_SHIFT
) | idx
;
259 static inline uint64_t vid_to_data_oid(uint32_t vid
, uint32_t idx
)
261 return ((uint64_t)vid
<< VDI_SPACE_SHIFT
) | idx
;
264 static inline bool is_snapshot(struct SheepdogInode
*inode
)
266 return !!inode
->snap_ctime
;
271 #define DPRINTF(fmt, args...) \
273 fprintf(stdout, "%s %d: " fmt, __func__, __LINE__, ##args); \
276 #define DPRINTF(fmt, args...)
279 typedef struct SheepdogAIOCB SheepdogAIOCB
;
281 typedef struct AIOReq
{
282 SheepdogAIOCB
*aiocb
;
283 unsigned int iov_offset
;
288 unsigned int data_len
;
293 QLIST_ENTRY(AIOReq
) aio_siblings
;
303 struct SheepdogAIOCB
{
304 BlockDriverAIOCB common
;
312 enum AIOCBState aiocb_type
;
314 Coroutine
*coroutine
;
315 void (*aio_done_func
)(SheepdogAIOCB
*);
322 typedef struct BDRVSheepdogState
{
323 BlockDriverState
*bs
;
324 AioContext
*aio_context
;
328 uint32_t min_dirty_data_idx
;
329 uint32_t max_dirty_data_idx
;
331 char name
[SD_MAX_VDI_LEN
];
333 uint32_t cache_flags
;
334 bool discard_supported
;
344 uint32_t aioreq_seq_num
;
346 /* Every aio request must be linked to either of these queues. */
347 QLIST_HEAD(inflight_aio_head
, AIOReq
) inflight_aio_head
;
348 QLIST_HEAD(pending_aio_head
, AIOReq
) pending_aio_head
;
349 QLIST_HEAD(failed_aio_head
, AIOReq
) failed_aio_head
;
352 static const char * sd_strerror(int err
)
356 static const struct {
360 {SD_RES_SUCCESS
, "Success"},
361 {SD_RES_UNKNOWN
, "Unknown error"},
362 {SD_RES_NO_OBJ
, "No object found"},
363 {SD_RES_EIO
, "I/O error"},
364 {SD_RES_VDI_EXIST
, "VDI exists already"},
365 {SD_RES_INVALID_PARMS
, "Invalid parameters"},
366 {SD_RES_SYSTEM_ERROR
, "System error"},
367 {SD_RES_VDI_LOCKED
, "VDI is already locked"},
368 {SD_RES_NO_VDI
, "No vdi found"},
369 {SD_RES_NO_BASE_VDI
, "No base VDI found"},
370 {SD_RES_VDI_READ
, "Failed read the requested VDI"},
371 {SD_RES_VDI_WRITE
, "Failed to write the requested VDI"},
372 {SD_RES_BASE_VDI_READ
, "Failed to read the base VDI"},
373 {SD_RES_BASE_VDI_WRITE
, "Failed to write the base VDI"},
374 {SD_RES_NO_TAG
, "Failed to find the requested tag"},
375 {SD_RES_STARTUP
, "The system is still booting"},
376 {SD_RES_VDI_NOT_LOCKED
, "VDI isn't locked"},
377 {SD_RES_SHUTDOWN
, "The system is shutting down"},
378 {SD_RES_NO_MEM
, "Out of memory on the server"},
379 {SD_RES_FULL_VDI
, "We already have the maximum vdis"},
380 {SD_RES_VER_MISMATCH
, "Protocol version mismatch"},
381 {SD_RES_NO_SPACE
, "Server has no space for new objects"},
382 {SD_RES_WAIT_FOR_FORMAT
, "Sheepdog is waiting for a format operation"},
383 {SD_RES_WAIT_FOR_JOIN
, "Sheepdog is waiting for other nodes joining"},
384 {SD_RES_JOIN_FAILED
, "Target node had failed to join sheepdog"},
385 {SD_RES_HALT
, "Sheepdog is stopped serving IO request"},
386 {SD_RES_READONLY
, "Object is read-only"},
389 for (i
= 0; i
< ARRAY_SIZE(errors
); ++i
) {
390 if (errors
[i
].err
== err
) {
391 return errors
[i
].desc
;
395 return "Invalid error code";
399 * Sheepdog I/O handling:
401 * 1. In sd_co_rw_vector, we send the I/O requests to the server and
402 * link the requests to the inflight_list in the
403 * BDRVSheepdogState. The function exits without waiting for
404 * receiving the response.
406 * 2. We receive the response in aio_read_response, the fd handler to
407 * the sheepdog connection. If metadata update is needed, we send
408 * the write request to the vdi object in sd_write_done, the write
409 * completion function. We switch back to sd_co_readv/writev after
410 * all the requests belonging to the AIOCB are finished.
413 static inline AIOReq
*alloc_aio_req(BDRVSheepdogState
*s
, SheepdogAIOCB
*acb
,
414 uint64_t oid
, unsigned int data_len
,
415 uint64_t offset
, uint8_t flags
, bool create
,
416 uint64_t base_oid
, unsigned int iov_offset
)
420 aio_req
= g_malloc(sizeof(*aio_req
));
421 aio_req
->aiocb
= acb
;
422 aio_req
->iov_offset
= iov_offset
;
424 aio_req
->base_oid
= base_oid
;
425 aio_req
->offset
= offset
;
426 aio_req
->data_len
= data_len
;
427 aio_req
->flags
= flags
;
428 aio_req
->id
= s
->aioreq_seq_num
++;
429 aio_req
->create
= create
;
435 static inline void free_aio_req(BDRVSheepdogState
*s
, AIOReq
*aio_req
)
437 SheepdogAIOCB
*acb
= aio_req
->aiocb
;
439 acb
->cancelable
= false;
440 QLIST_REMOVE(aio_req
, aio_siblings
);
446 static void coroutine_fn
sd_finish_aiocb(SheepdogAIOCB
*acb
)
448 qemu_coroutine_enter(acb
->coroutine
, NULL
);
450 *acb
->finished
= true;
452 qemu_aio_release(acb
);
456 * Check whether the specified acb can be canceled
458 * We can cancel aio when any request belonging to the acb is:
459 * - Not processed by the sheepdog server.
460 * - Not linked to the inflight queue.
462 static bool sd_acb_cancelable(const SheepdogAIOCB
*acb
)
464 BDRVSheepdogState
*s
= acb
->common
.bs
->opaque
;
467 if (!acb
->cancelable
) {
471 QLIST_FOREACH(aioreq
, &s
->inflight_aio_head
, aio_siblings
) {
472 if (aioreq
->aiocb
== acb
) {
480 static void sd_aio_cancel(BlockDriverAIOCB
*blockacb
)
482 SheepdogAIOCB
*acb
= (SheepdogAIOCB
*)blockacb
;
483 BDRVSheepdogState
*s
= acb
->common
.bs
->opaque
;
484 AIOReq
*aioreq
, *next
;
485 bool finished
= false;
487 acb
->finished
= &finished
;
489 if (sd_acb_cancelable(acb
)) {
490 /* Remove outstanding requests from pending and failed queues. */
491 QLIST_FOREACH_SAFE(aioreq
, &s
->pending_aio_head
, aio_siblings
,
493 if (aioreq
->aiocb
== acb
) {
494 free_aio_req(s
, aioreq
);
497 QLIST_FOREACH_SAFE(aioreq
, &s
->failed_aio_head
, aio_siblings
,
499 if (aioreq
->aiocb
== acb
) {
500 free_aio_req(s
, aioreq
);
504 assert(acb
->nr_pending
== 0);
505 sd_finish_aiocb(acb
);
508 aio_poll(s
->aio_context
, true);
512 static const AIOCBInfo sd_aiocb_info
= {
513 .aiocb_size
= sizeof(SheepdogAIOCB
),
514 .cancel
= sd_aio_cancel
,
517 static SheepdogAIOCB
*sd_aio_setup(BlockDriverState
*bs
, QEMUIOVector
*qiov
,
518 int64_t sector_num
, int nb_sectors
)
522 acb
= qemu_aio_get(&sd_aiocb_info
, bs
, NULL
, NULL
);
526 acb
->sector_num
= sector_num
;
527 acb
->nb_sectors
= nb_sectors
;
529 acb
->aio_done_func
= NULL
;
530 acb
->cancelable
= true;
531 acb
->finished
= NULL
;
532 acb
->coroutine
= qemu_coroutine_self();
538 static int connect_to_sdog(BDRVSheepdogState
*s
, Error
**errp
)
543 fd
= unix_connect(s
->host_spec
, errp
);
545 fd
= inet_connect(s
->host_spec
, errp
);
548 int ret
= socket_set_nodelay(fd
);
550 error_report("%s", strerror(errno
));
556 qemu_set_nonblock(fd
);
562 static coroutine_fn
int send_co_req(int sockfd
, SheepdogReq
*hdr
, void *data
,
567 ret
= qemu_co_send(sockfd
, hdr
, sizeof(*hdr
));
568 if (ret
!= sizeof(*hdr
)) {
569 error_report("failed to send a req, %s", strerror(errno
));
573 ret
= qemu_co_send(sockfd
, data
, *wlen
);
575 error_report("failed to send a req, %s", strerror(errno
));
581 static void restart_co_req(void *opaque
)
583 Coroutine
*co
= opaque
;
585 qemu_coroutine_enter(co
, NULL
);
588 typedef struct SheepdogReqCo
{
590 AioContext
*aio_context
;
599 static coroutine_fn
void do_co_req(void *opaque
)
603 SheepdogReqCo
*srco
= opaque
;
604 int sockfd
= srco
->sockfd
;
605 SheepdogReq
*hdr
= srco
->hdr
;
606 void *data
= srco
->data
;
607 unsigned int *wlen
= srco
->wlen
;
608 unsigned int *rlen
= srco
->rlen
;
610 co
= qemu_coroutine_self();
611 aio_set_fd_handler(srco
->aio_context
, sockfd
, NULL
, restart_co_req
, co
);
613 ret
= send_co_req(sockfd
, hdr
, data
, wlen
);
618 aio_set_fd_handler(srco
->aio_context
, sockfd
, restart_co_req
, NULL
, co
);
620 ret
= qemu_co_recv(sockfd
, hdr
, sizeof(*hdr
));
621 if (ret
!= sizeof(*hdr
)) {
622 error_report("failed to get a rsp, %s", strerror(errno
));
627 if (*rlen
> hdr
->data_length
) {
628 *rlen
= hdr
->data_length
;
632 ret
= qemu_co_recv(sockfd
, data
, *rlen
);
634 error_report("failed to get the data, %s", strerror(errno
));
641 /* there is at most one request for this sockfd, so it is safe to
642 * set each handler to NULL. */
643 aio_set_fd_handler(srco
->aio_context
, sockfd
, NULL
, NULL
, NULL
);
646 srco
->finished
= true;
649 static int do_req(int sockfd
, AioContext
*aio_context
, SheepdogReq
*hdr
,
650 void *data
, unsigned int *wlen
, unsigned int *rlen
)
653 SheepdogReqCo srco
= {
655 .aio_context
= aio_context
,
664 if (qemu_in_coroutine()) {
667 co
= qemu_coroutine_create(do_co_req
);
668 qemu_coroutine_enter(co
, &srco
);
669 while (!srco
.finished
) {
670 aio_poll(aio_context
, true);
677 static void coroutine_fn
add_aio_request(BDRVSheepdogState
*s
, AIOReq
*aio_req
,
678 struct iovec
*iov
, int niov
,
679 enum AIOCBState aiocb_type
);
680 static void coroutine_fn
resend_aioreq(BDRVSheepdogState
*s
, AIOReq
*aio_req
);
681 static int reload_inode(BDRVSheepdogState
*s
, uint32_t snapid
, const char *tag
);
682 static int get_sheep_fd(BDRVSheepdogState
*s
, Error
**errp
);
683 static void co_write_request(void *opaque
);
685 static AIOReq
*find_pending_req(BDRVSheepdogState
*s
, uint64_t oid
)
689 QLIST_FOREACH(aio_req
, &s
->pending_aio_head
, aio_siblings
) {
690 if (aio_req
->oid
== oid
) {
699 * This function searchs pending requests to the object `oid', and
702 static void coroutine_fn
send_pending_req(BDRVSheepdogState
*s
, uint64_t oid
)
707 while ((aio_req
= find_pending_req(s
, oid
)) != NULL
) {
708 acb
= aio_req
->aiocb
;
709 /* move aio_req from pending list to inflight one */
710 QLIST_REMOVE(aio_req
, aio_siblings
);
711 QLIST_INSERT_HEAD(&s
->inflight_aio_head
, aio_req
, aio_siblings
);
712 add_aio_request(s
, aio_req
, acb
->qiov
->iov
, acb
->qiov
->niov
,
717 static coroutine_fn
void reconnect_to_sdog(void *opaque
)
719 BDRVSheepdogState
*s
= opaque
;
720 AIOReq
*aio_req
, *next
;
722 aio_set_fd_handler(s
->aio_context
, s
->fd
, NULL
, NULL
, NULL
);
726 /* Wait for outstanding write requests to be completed. */
727 while (s
->co_send
!= NULL
) {
728 co_write_request(opaque
);
731 /* Try to reconnect the sheepdog server every one second. */
733 Error
*local_err
= NULL
;
734 s
->fd
= get_sheep_fd(s
, &local_err
);
736 DPRINTF("Wait for connection to be established\n");
737 error_report("%s", error_get_pretty(local_err
));
738 error_free(local_err
);
739 co_aio_sleep_ns(bdrv_get_aio_context(s
->bs
), QEMU_CLOCK_REALTIME
,
745 * Now we have to resend all the request in the inflight queue. However,
746 * resend_aioreq() can yield and newly created requests can be added to the
747 * inflight queue before the coroutine is resumed. To avoid mixing them, we
748 * have to move all the inflight requests to the failed queue before
749 * resend_aioreq() is called.
751 QLIST_FOREACH_SAFE(aio_req
, &s
->inflight_aio_head
, aio_siblings
, next
) {
752 QLIST_REMOVE(aio_req
, aio_siblings
);
753 QLIST_INSERT_HEAD(&s
->failed_aio_head
, aio_req
, aio_siblings
);
756 /* Resend all the failed aio requests. */
757 while (!QLIST_EMPTY(&s
->failed_aio_head
)) {
758 aio_req
= QLIST_FIRST(&s
->failed_aio_head
);
759 QLIST_REMOVE(aio_req
, aio_siblings
);
760 QLIST_INSERT_HEAD(&s
->inflight_aio_head
, aio_req
, aio_siblings
);
761 resend_aioreq(s
, aio_req
);
766 * Receive responses of the I/O requests.
768 * This function is registered as a fd handler, and called from the
769 * main loop when s->fd is ready for reading responses.
771 static void coroutine_fn
aio_read_response(void *opaque
)
774 BDRVSheepdogState
*s
= opaque
;
777 AIOReq
*aio_req
= NULL
;
782 ret
= qemu_co_recv(fd
, &rsp
, sizeof(rsp
));
783 if (ret
!= sizeof(rsp
)) {
784 error_report("failed to get the header, %s", strerror(errno
));
788 /* find the right aio_req from the inflight aio list */
789 QLIST_FOREACH(aio_req
, &s
->inflight_aio_head
, aio_siblings
) {
790 if (aio_req
->id
== rsp
.id
) {
795 error_report("cannot find aio_req %x", rsp
.id
);
799 acb
= aio_req
->aiocb
;
801 switch (acb
->aiocb_type
) {
802 case AIOCB_WRITE_UDATA
:
803 /* this coroutine context is no longer suitable for co_recv
804 * because we may send data to update vdi objects */
806 if (!is_data_obj(aio_req
->oid
)) {
809 idx
= data_oid_to_idx(aio_req
->oid
);
811 if (aio_req
->create
) {
813 * If the object is newly created one, we need to update
814 * the vdi object (metadata object). min_dirty_data_idx
815 * and max_dirty_data_idx are changed to include updated
816 * index between them.
818 if (rsp
.result
== SD_RES_SUCCESS
) {
819 s
->inode
.data_vdi_id
[idx
] = s
->inode
.vdi_id
;
820 s
->max_dirty_data_idx
= MAX(idx
, s
->max_dirty_data_idx
);
821 s
->min_dirty_data_idx
= MIN(idx
, s
->min_dirty_data_idx
);
824 * Some requests may be blocked because simultaneous
825 * create requests are not allowed, so we search the
826 * pending requests here.
828 send_pending_req(s
, aio_req
->oid
);
831 case AIOCB_READ_UDATA
:
832 ret
= qemu_co_recvv(fd
, acb
->qiov
->iov
, acb
->qiov
->niov
,
833 aio_req
->iov_offset
, rsp
.data_length
);
834 if (ret
!= rsp
.data_length
) {
835 error_report("failed to get the data, %s", strerror(errno
));
839 case AIOCB_FLUSH_CACHE
:
840 if (rsp
.result
== SD_RES_INVALID_PARMS
) {
841 DPRINTF("disable cache since the server doesn't support it\n");
842 s
->cache_flags
= SD_FLAG_CMD_DIRECT
;
843 rsp
.result
= SD_RES_SUCCESS
;
846 case AIOCB_DISCARD_OBJ
:
847 switch (rsp
.result
) {
848 case SD_RES_INVALID_PARMS
:
849 error_report("sheep(%s) doesn't support discard command",
851 rsp
.result
= SD_RES_SUCCESS
;
852 s
->discard_supported
= false;
855 idx
= data_oid_to_idx(aio_req
->oid
);
856 s
->inode
.data_vdi_id
[idx
] = 0;
863 switch (rsp
.result
) {
866 case SD_RES_READONLY
:
867 if (s
->inode
.vdi_id
== oid_to_vid(aio_req
->oid
)) {
868 ret
= reload_inode(s
, 0, "");
873 if (is_data_obj(aio_req
->oid
)) {
874 aio_req
->oid
= vid_to_data_oid(s
->inode
.vdi_id
,
875 data_oid_to_idx(aio_req
->oid
));
877 aio_req
->oid
= vid_to_vdi_oid(s
->inode
.vdi_id
);
879 resend_aioreq(s
, aio_req
);
883 error_report("%s", sd_strerror(rsp
.result
));
887 free_aio_req(s
, aio_req
);
888 if (!acb
->nr_pending
) {
890 * We've finished all requests which belong to the AIOCB, so
891 * we can switch back to sd_co_readv/writev now.
893 acb
->aio_done_func(acb
);
900 reconnect_to_sdog(opaque
);
903 static void co_read_response(void *opaque
)
905 BDRVSheepdogState
*s
= opaque
;
908 s
->co_recv
= qemu_coroutine_create(aio_read_response
);
911 qemu_coroutine_enter(s
->co_recv
, opaque
);
914 static void co_write_request(void *opaque
)
916 BDRVSheepdogState
*s
= opaque
;
918 qemu_coroutine_enter(s
->co_send
, NULL
);
922 * Return a socket descriptor to read/write objects.
924 * We cannot use this descriptor for other operations because
925 * the block driver may be on waiting response from the server.
927 static int get_sheep_fd(BDRVSheepdogState
*s
, Error
**errp
)
931 fd
= connect_to_sdog(s
, errp
);
936 aio_set_fd_handler(s
->aio_context
, fd
, co_read_response
, NULL
, s
);
940 static int sd_parse_uri(BDRVSheepdogState
*s
, const char *filename
,
941 char *vdi
, uint32_t *snapid
, char *tag
)
944 QueryParams
*qp
= NULL
;
947 uri
= uri_parse(filename
);
953 if (!strcmp(uri
->scheme
, "sheepdog")) {
955 } else if (!strcmp(uri
->scheme
, "sheepdog+tcp")) {
957 } else if (!strcmp(uri
->scheme
, "sheepdog+unix")) {
964 if (uri
->path
== NULL
|| !strcmp(uri
->path
, "/")) {
968 pstrcpy(vdi
, SD_MAX_VDI_LEN
, uri
->path
+ 1);
970 qp
= query_params_parse(uri
->query
);
971 if (qp
->n
> 1 || (s
->is_unix
&& !qp
->n
) || (!s
->is_unix
&& qp
->n
)) {
977 /* sheepdog+unix:///vdiname?socket=path */
978 if (uri
->server
|| uri
->port
|| strcmp(qp
->p
[0].name
, "socket")) {
982 s
->host_spec
= g_strdup(qp
->p
[0].value
);
984 /* sheepdog[+tcp]://[host:port]/vdiname */
985 s
->host_spec
= g_strdup_printf("%s:%d", uri
->server
?: SD_DEFAULT_ADDR
,
986 uri
->port
?: SD_DEFAULT_PORT
);
991 *snapid
= strtoul(uri
->fragment
, NULL
, 10);
993 pstrcpy(tag
, SD_MAX_VDI_TAG_LEN
, uri
->fragment
);
996 *snapid
= CURRENT_VDI_ID
; /* search current vdi */
1001 query_params_free(qp
);
1008 * Parse a filename (old syntax)
1010 * filename must be one of the following formats:
1012 * 2. [vdiname]:[snapid]
1013 * 3. [vdiname]:[tag]
1014 * 4. [hostname]:[port]:[vdiname]
1015 * 5. [hostname]:[port]:[vdiname]:[snapid]
1016 * 6. [hostname]:[port]:[vdiname]:[tag]
1018 * You can boot from the snapshot images by specifying `snapid` or
1021 * You can run VMs outside the Sheepdog cluster by specifying
1022 * `hostname' and `port' (experimental).
1024 static int parse_vdiname(BDRVSheepdogState
*s
, const char *filename
,
1025 char *vdi
, uint32_t *snapid
, char *tag
)
1028 const char *host_spec
, *vdi_spec
;
1031 strstart(filename
, "sheepdog:", (const char **)&filename
);
1032 p
= q
= g_strdup(filename
);
1034 /* count the number of separators */
1044 /* use the first two tokens as host_spec. */
1057 p
= strchr(vdi_spec
, ':');
1062 uri
= g_strdup_printf("sheepdog://%s/%s", host_spec
, vdi_spec
);
1064 ret
= sd_parse_uri(s
, uri
, vdi
, snapid
, tag
);
1072 static int find_vdi_name(BDRVSheepdogState
*s
, const char *filename
,
1073 uint32_t snapid
, const char *tag
, uint32_t *vid
,
1074 bool lock
, Error
**errp
)
1078 SheepdogVdiRsp
*rsp
= (SheepdogVdiRsp
*)&hdr
;
1079 unsigned int wlen
, rlen
= 0;
1080 char buf
[SD_MAX_VDI_LEN
+ SD_MAX_VDI_TAG_LEN
];
1082 fd
= connect_to_sdog(s
, errp
);
1087 /* This pair of strncpy calls ensures that the buffer is zero-filled,
1088 * which is desirable since we'll soon be sending those bytes, and
1089 * don't want the send_req to read uninitialized data.
1091 strncpy(buf
, filename
, SD_MAX_VDI_LEN
);
1092 strncpy(buf
+ SD_MAX_VDI_LEN
, tag
, SD_MAX_VDI_TAG_LEN
);
1094 memset(&hdr
, 0, sizeof(hdr
));
1096 hdr
.opcode
= SD_OP_LOCK_VDI
;
1097 hdr
.type
= LOCK_TYPE_NORMAL
;
1099 hdr
.opcode
= SD_OP_GET_VDI_INFO
;
1101 wlen
= SD_MAX_VDI_LEN
+ SD_MAX_VDI_TAG_LEN
;
1102 hdr
.proto_ver
= SD_PROTO_VER
;
1103 hdr
.data_length
= wlen
;
1104 hdr
.snapid
= snapid
;
1105 hdr
.flags
= SD_FLAG_CMD_WRITE
;
1107 ret
= do_req(fd
, s
->aio_context
, (SheepdogReq
*)&hdr
, buf
, &wlen
, &rlen
);
1109 error_setg_errno(errp
, -ret
, "cannot get vdi info");
1113 if (rsp
->result
!= SD_RES_SUCCESS
) {
1114 error_setg(errp
, "cannot get vdi info, %s, %s %" PRIu32
" %s",
1115 sd_strerror(rsp
->result
), filename
, snapid
, tag
);
1116 if (rsp
->result
== SD_RES_NO_VDI
) {
1118 } else if (rsp
->result
== SD_RES_VDI_LOCKED
) {
1133 static void coroutine_fn
add_aio_request(BDRVSheepdogState
*s
, AIOReq
*aio_req
,
1134 struct iovec
*iov
, int niov
,
1135 enum AIOCBState aiocb_type
)
1137 int nr_copies
= s
->inode
.nr_copies
;
1139 unsigned int wlen
= 0;
1141 uint64_t oid
= aio_req
->oid
;
1142 unsigned int datalen
= aio_req
->data_len
;
1143 uint64_t offset
= aio_req
->offset
;
1144 uint8_t flags
= aio_req
->flags
;
1145 uint64_t old_oid
= aio_req
->base_oid
;
1146 bool create
= aio_req
->create
;
1149 error_report("bug");
1152 memset(&hdr
, 0, sizeof(hdr
));
1154 switch (aiocb_type
) {
1155 case AIOCB_FLUSH_CACHE
:
1156 hdr
.opcode
= SD_OP_FLUSH_VDI
;
1158 case AIOCB_READ_UDATA
:
1159 hdr
.opcode
= SD_OP_READ_OBJ
;
1162 case AIOCB_WRITE_UDATA
:
1164 hdr
.opcode
= SD_OP_CREATE_AND_WRITE_OBJ
;
1166 hdr
.opcode
= SD_OP_WRITE_OBJ
;
1169 hdr
.flags
= SD_FLAG_CMD_WRITE
| flags
;
1171 case AIOCB_DISCARD_OBJ
:
1172 hdr
.opcode
= SD_OP_DISCARD_OBJ
;
1176 if (s
->cache_flags
) {
1177 hdr
.flags
|= s
->cache_flags
;
1181 hdr
.cow_oid
= old_oid
;
1182 hdr
.copies
= s
->inode
.nr_copies
;
1184 hdr
.data_length
= datalen
;
1185 hdr
.offset
= offset
;
1187 hdr
.id
= aio_req
->id
;
1189 qemu_co_mutex_lock(&s
->lock
);
1190 s
->co_send
= qemu_coroutine_self();
1191 aio_set_fd_handler(s
->aio_context
, s
->fd
,
1192 co_read_response
, co_write_request
, s
);
1193 socket_set_cork(s
->fd
, 1);
1196 ret
= qemu_co_send(s
->fd
, &hdr
, sizeof(hdr
));
1197 if (ret
!= sizeof(hdr
)) {
1198 error_report("failed to send a req, %s", strerror(errno
));
1203 ret
= qemu_co_sendv(s
->fd
, iov
, niov
, aio_req
->iov_offset
, wlen
);
1205 error_report("failed to send a data, %s", strerror(errno
));
1209 socket_set_cork(s
->fd
, 0);
1210 aio_set_fd_handler(s
->aio_context
, s
->fd
, co_read_response
, NULL
, s
);
1212 qemu_co_mutex_unlock(&s
->lock
);
1215 static int read_write_object(int fd
, AioContext
*aio_context
, char *buf
,
1216 uint64_t oid
, uint8_t copies
,
1217 unsigned int datalen
, uint64_t offset
,
1218 bool write
, bool create
, uint32_t cache_flags
)
1221 SheepdogObjRsp
*rsp
= (SheepdogObjRsp
*)&hdr
;
1222 unsigned int wlen
, rlen
;
1225 memset(&hdr
, 0, sizeof(hdr
));
1230 hdr
.flags
= SD_FLAG_CMD_WRITE
;
1232 hdr
.opcode
= SD_OP_CREATE_AND_WRITE_OBJ
;
1234 hdr
.opcode
= SD_OP_WRITE_OBJ
;
1239 hdr
.opcode
= SD_OP_READ_OBJ
;
1242 hdr
.flags
|= cache_flags
;
1245 hdr
.data_length
= datalen
;
1246 hdr
.offset
= offset
;
1247 hdr
.copies
= copies
;
1249 ret
= do_req(fd
, aio_context
, (SheepdogReq
*)&hdr
, buf
, &wlen
, &rlen
);
1251 error_report("failed to send a request to the sheep");
1255 switch (rsp
->result
) {
1256 case SD_RES_SUCCESS
:
1259 error_report("%s", sd_strerror(rsp
->result
));
1264 static int read_object(int fd
, AioContext
*aio_context
, char *buf
,
1265 uint64_t oid
, uint8_t copies
,
1266 unsigned int datalen
, uint64_t offset
,
1267 uint32_t cache_flags
)
1269 return read_write_object(fd
, aio_context
, buf
, oid
, copies
,
1270 datalen
, offset
, false,
1271 false, cache_flags
);
1274 static int write_object(int fd
, AioContext
*aio_context
, char *buf
,
1275 uint64_t oid
, uint8_t copies
,
1276 unsigned int datalen
, uint64_t offset
, bool create
,
1277 uint32_t cache_flags
)
1279 return read_write_object(fd
, aio_context
, buf
, oid
, copies
,
1280 datalen
, offset
, true,
1281 create
, cache_flags
);
1284 /* update inode with the latest state */
1285 static int reload_inode(BDRVSheepdogState
*s
, uint32_t snapid
, const char *tag
)
1287 Error
*local_err
= NULL
;
1288 SheepdogInode
*inode
;
1292 fd
= connect_to_sdog(s
, &local_err
);
1294 error_report("%s", error_get_pretty(local_err
));;
1295 error_free(local_err
);
1299 inode
= g_malloc(SD_INODE_HEADER_SIZE
);
1301 ret
= find_vdi_name(s
, s
->name
, snapid
, tag
, &vid
, false, &local_err
);
1303 error_report("%s", error_get_pretty(local_err
));;
1304 error_free(local_err
);
1308 ret
= read_object(fd
, s
->aio_context
, (char *)inode
, vid_to_vdi_oid(vid
),
1309 s
->inode
.nr_copies
, SD_INODE_HEADER_SIZE
, 0,
1315 if (inode
->vdi_id
!= s
->inode
.vdi_id
) {
1316 memcpy(&s
->inode
, inode
, SD_INODE_HEADER_SIZE
);
1326 /* Return true if the specified request is linked to the pending list. */
1327 static bool check_simultaneous_create(BDRVSheepdogState
*s
, AIOReq
*aio_req
)
1330 QLIST_FOREACH(areq
, &s
->inflight_aio_head
, aio_siblings
) {
1331 if (areq
!= aio_req
&& areq
->oid
== aio_req
->oid
) {
1333 * Sheepdog cannot handle simultaneous create requests to the same
1334 * object, so we cannot send the request until the previous request
1337 DPRINTF("simultaneous create to %" PRIx64
"\n", aio_req
->oid
);
1339 aio_req
->base_oid
= 0;
1340 aio_req
->create
= false;
1341 QLIST_REMOVE(aio_req
, aio_siblings
);
1342 QLIST_INSERT_HEAD(&s
->pending_aio_head
, aio_req
, aio_siblings
);
1350 static void coroutine_fn
resend_aioreq(BDRVSheepdogState
*s
, AIOReq
*aio_req
)
1352 SheepdogAIOCB
*acb
= aio_req
->aiocb
;
1354 aio_req
->create
= false;
1356 /* check whether this request becomes a CoW one */
1357 if (acb
->aiocb_type
== AIOCB_WRITE_UDATA
&& is_data_obj(aio_req
->oid
)) {
1358 int idx
= data_oid_to_idx(aio_req
->oid
);
1360 if (is_data_obj_writable(&s
->inode
, idx
)) {
1364 if (check_simultaneous_create(s
, aio_req
)) {
1368 if (s
->inode
.data_vdi_id
[idx
]) {
1369 aio_req
->base_oid
= vid_to_data_oid(s
->inode
.data_vdi_id
[idx
], idx
);
1370 aio_req
->flags
|= SD_FLAG_CMD_COW
;
1372 aio_req
->create
= true;
1375 if (is_data_obj(aio_req
->oid
)) {
1376 add_aio_request(s
, aio_req
, acb
->qiov
->iov
, acb
->qiov
->niov
,
1380 iov
.iov_base
= &s
->inode
;
1381 iov
.iov_len
= sizeof(s
->inode
);
1382 add_aio_request(s
, aio_req
, &iov
, 1, AIOCB_WRITE_UDATA
);
1386 static void sd_detach_aio_context(BlockDriverState
*bs
)
1388 BDRVSheepdogState
*s
= bs
->opaque
;
1390 aio_set_fd_handler(s
->aio_context
, s
->fd
, NULL
, NULL
, NULL
);
1393 static void sd_attach_aio_context(BlockDriverState
*bs
,
1394 AioContext
*new_context
)
1396 BDRVSheepdogState
*s
= bs
->opaque
;
1398 s
->aio_context
= new_context
;
1399 aio_set_fd_handler(new_context
, s
->fd
, co_read_response
, NULL
, s
);
1402 /* TODO Convert to fine grained options */
1403 static QemuOptsList runtime_opts
= {
1405 .head
= QTAILQ_HEAD_INITIALIZER(runtime_opts
.head
),
1409 .type
= QEMU_OPT_STRING
,
1410 .help
= "URL to the sheepdog image",
1412 { /* end of list */ }
1416 static int sd_open(BlockDriverState
*bs
, QDict
*options
, int flags
,
1421 BDRVSheepdogState
*s
= bs
->opaque
;
1422 char vdi
[SD_MAX_VDI_LEN
], tag
[SD_MAX_VDI_TAG_LEN
];
1426 Error
*local_err
= NULL
;
1427 const char *filename
;
1430 s
->aio_context
= bdrv_get_aio_context(bs
);
1432 opts
= qemu_opts_create(&runtime_opts
, NULL
, 0, &error_abort
);
1433 qemu_opts_absorb_qdict(opts
, options
, &local_err
);
1435 error_propagate(errp
, local_err
);
1440 filename
= qemu_opt_get(opts
, "filename");
1442 QLIST_INIT(&s
->inflight_aio_head
);
1443 QLIST_INIT(&s
->pending_aio_head
);
1444 QLIST_INIT(&s
->failed_aio_head
);
1447 memset(vdi
, 0, sizeof(vdi
));
1448 memset(tag
, 0, sizeof(tag
));
1450 if (strstr(filename
, "://")) {
1451 ret
= sd_parse_uri(s
, filename
, vdi
, &snapid
, tag
);
1453 ret
= parse_vdiname(s
, filename
, vdi
, &snapid
, tag
);
1456 error_setg(errp
, "Can't parse filename");
1459 s
->fd
= get_sheep_fd(s
, errp
);
1465 ret
= find_vdi_name(s
, vdi
, snapid
, tag
, &vid
, true, errp
);
1471 * QEMU block layer emulates writethrough cache as 'writeback + flush', so
1472 * we always set SD_FLAG_CMD_CACHE (writeback cache) as default.
1474 s
->cache_flags
= SD_FLAG_CMD_CACHE
;
1475 if (flags
& BDRV_O_NOCACHE
) {
1476 s
->cache_flags
= SD_FLAG_CMD_DIRECT
;
1478 s
->discard_supported
= true;
1480 if (snapid
|| tag
[0] != '\0') {
1481 DPRINTF("%" PRIx32
" snapshot inode was open.\n", vid
);
1482 s
->is_snapshot
= true;
1485 fd
= connect_to_sdog(s
, errp
);
1491 buf
= g_malloc(SD_INODE_SIZE
);
1492 ret
= read_object(fd
, s
->aio_context
, buf
, vid_to_vdi_oid(vid
),
1493 0, SD_INODE_SIZE
, 0, s
->cache_flags
);
1498 error_setg(errp
, "Can't read snapshot inode");
1502 memcpy(&s
->inode
, buf
, sizeof(s
->inode
));
1503 s
->min_dirty_data_idx
= UINT32_MAX
;
1504 s
->max_dirty_data_idx
= 0;
1506 bs
->total_sectors
= s
->inode
.vdi_size
/ BDRV_SECTOR_SIZE
;
1507 pstrcpy(s
->name
, sizeof(s
->name
), vdi
);
1508 qemu_co_mutex_init(&s
->lock
);
1509 qemu_opts_del(opts
);
1513 aio_set_fd_handler(bdrv_get_aio_context(bs
), s
->fd
, NULL
, NULL
, NULL
);
1517 qemu_opts_del(opts
);
1522 static int do_sd_create(BDRVSheepdogState
*s
, uint32_t *vdi_id
, int snapshot
,
1526 SheepdogVdiRsp
*rsp
= (SheepdogVdiRsp
*)&hdr
;
1528 unsigned int wlen
, rlen
= 0;
1529 char buf
[SD_MAX_VDI_LEN
];
1531 fd
= connect_to_sdog(s
, errp
);
1536 /* FIXME: would it be better to fail (e.g., return -EIO) when filename
1537 * does not fit in buf? For now, just truncate and avoid buffer overrun.
1539 memset(buf
, 0, sizeof(buf
));
1540 pstrcpy(buf
, sizeof(buf
), s
->name
);
1542 memset(&hdr
, 0, sizeof(hdr
));
1543 hdr
.opcode
= SD_OP_NEW_VDI
;
1544 hdr
.base_vdi_id
= s
->inode
.vdi_id
;
1546 wlen
= SD_MAX_VDI_LEN
;
1548 hdr
.flags
= SD_FLAG_CMD_WRITE
;
1549 hdr
.snapid
= snapshot
;
1551 hdr
.data_length
= wlen
;
1552 hdr
.vdi_size
= s
->inode
.vdi_size
;
1553 hdr
.copy_policy
= s
->inode
.copy_policy
;
1554 hdr
.copies
= s
->inode
.nr_copies
;
1556 ret
= do_req(fd
, s
->aio_context
, (SheepdogReq
*)&hdr
, buf
, &wlen
, &rlen
);
1561 error_setg_errno(errp
, -ret
, "create failed");
1565 if (rsp
->result
!= SD_RES_SUCCESS
) {
1566 error_setg(errp
, "%s, %s", sd_strerror(rsp
->result
), s
->inode
.name
);
1571 *vdi_id
= rsp
->vdi_id
;
1577 static int sd_prealloc(const char *filename
, Error
**errp
)
1579 BlockDriverState
*bs
= NULL
;
1580 uint32_t idx
, max_idx
;
1582 void *buf
= g_malloc0(SD_DATA_OBJ_SIZE
);
1585 ret
= bdrv_open(&bs
, filename
, NULL
, NULL
, BDRV_O_RDWR
| BDRV_O_PROTOCOL
,
1588 goto out_with_err_set
;
1591 vdi_size
= bdrv_getlength(bs
);
1596 max_idx
= DIV_ROUND_UP(vdi_size
, SD_DATA_OBJ_SIZE
);
1598 for (idx
= 0; idx
< max_idx
; idx
++) {
1600 * The created image can be a cloned image, so we need to read
1601 * a data from the source image.
1603 ret
= bdrv_pread(bs
, idx
* SD_DATA_OBJ_SIZE
, buf
, SD_DATA_OBJ_SIZE
);
1607 ret
= bdrv_pwrite(bs
, idx
* SD_DATA_OBJ_SIZE
, buf
, SD_DATA_OBJ_SIZE
);
1615 error_setg_errno(errp
, -ret
, "Can't pre-allocate");
1627 * Sheepdog support two kinds of redundancy, full replication and erasure
1630 * # create a fully replicated vdi with x copies
1631 * -o redundancy=x (1 <= x <= SD_MAX_COPIES)
1633 * # create a erasure coded vdi with x data strips and y parity strips
1634 * -o redundancy=x:y (x must be one of {2,4,8,16} and 1 <= y < SD_EC_MAX_STRIP)
1636 static int parse_redundancy(BDRVSheepdogState
*s
, const char *opt
)
1638 struct SheepdogInode
*inode
= &s
->inode
;
1639 const char *n1
, *n2
;
1643 pstrcpy(p
, sizeof(p
), opt
);
1644 n1
= strtok(p
, ":");
1645 n2
= strtok(NULL
, ":");
1651 copy
= strtol(n1
, NULL
, 10);
1652 if (copy
> SD_MAX_COPIES
|| copy
< 1) {
1656 inode
->copy_policy
= 0;
1657 inode
->nr_copies
= copy
;
1661 if (copy
!= 2 && copy
!= 4 && copy
!= 8 && copy
!= 16) {
1665 parity
= strtol(n2
, NULL
, 10);
1666 if (parity
>= SD_EC_MAX_STRIP
|| parity
< 1) {
1671 * 4 bits for parity and 4 bits for data.
1672 * We have to compress upper data bits because it can't represent 16
1674 inode
->copy_policy
= ((copy
/ 2) << 4) + parity
;
1675 inode
->nr_copies
= copy
+ parity
;
1680 static int sd_create(const char *filename
, QemuOpts
*opts
,
1685 char *backing_file
= NULL
;
1687 BDRVSheepdogState
*s
;
1688 char tag
[SD_MAX_VDI_TAG_LEN
];
1690 bool prealloc
= false;
1692 s
= g_new0(BDRVSheepdogState
, 1);
1694 memset(tag
, 0, sizeof(tag
));
1695 if (strstr(filename
, "://")) {
1696 ret
= sd_parse_uri(s
, filename
, s
->name
, &snapid
, tag
);
1698 ret
= parse_vdiname(s
, filename
, s
->name
, &snapid
, tag
);
1701 error_setg(errp
, "Can't parse filename");
1705 s
->inode
.vdi_size
= qemu_opt_get_size_del(opts
, BLOCK_OPT_SIZE
, 0);
1706 backing_file
= qemu_opt_get_del(opts
, BLOCK_OPT_BACKING_FILE
);
1707 buf
= qemu_opt_get_del(opts
, BLOCK_OPT_PREALLOC
);
1708 if (!buf
|| !strcmp(buf
, "off")) {
1710 } else if (!strcmp(buf
, "full")) {
1713 error_setg(errp
, "Invalid preallocation mode: '%s'", buf
);
1719 buf
= qemu_opt_get_del(opts
, BLOCK_OPT_REDUNDANCY
);
1721 ret
= parse_redundancy(s
, buf
);
1723 error_setg(errp
, "Invalid redundancy mode: '%s'", buf
);
1728 if (s
->inode
.vdi_size
> SD_MAX_VDI_SIZE
) {
1729 error_setg(errp
, "too big image size");
1735 BlockDriverState
*bs
;
1736 BDRVSheepdogState
*base
;
1739 /* Currently, only Sheepdog backing image is supported. */
1740 drv
= bdrv_find_protocol(backing_file
, true);
1741 if (!drv
|| strcmp(drv
->protocol_name
, "sheepdog") != 0) {
1742 error_setg(errp
, "backing_file must be a sheepdog image");
1748 ret
= bdrv_open(&bs
, backing_file
, NULL
, NULL
, BDRV_O_PROTOCOL
, NULL
,
1756 if (!is_snapshot(&base
->inode
)) {
1757 error_setg(errp
, "cannot clone from a non snapshot vdi");
1762 s
->inode
.vdi_id
= base
->inode
.vdi_id
;
1766 s
->aio_context
= qemu_get_aio_context();
1767 ret
= do_sd_create(s
, &vid
, 0, errp
);
1773 ret
= sd_prealloc(filename
, errp
);
1776 g_free(backing_file
);
1782 static void sd_close(BlockDriverState
*bs
)
1784 Error
*local_err
= NULL
;
1785 BDRVSheepdogState
*s
= bs
->opaque
;
1787 SheepdogVdiRsp
*rsp
= (SheepdogVdiRsp
*)&hdr
;
1788 unsigned int wlen
, rlen
= 0;
1791 DPRINTF("%s\n", s
->name
);
1793 fd
= connect_to_sdog(s
, &local_err
);
1795 error_report("%s", error_get_pretty(local_err
));;
1796 error_free(local_err
);
1800 memset(&hdr
, 0, sizeof(hdr
));
1802 hdr
.opcode
= SD_OP_RELEASE_VDI
;
1803 hdr
.type
= LOCK_TYPE_NORMAL
;
1804 hdr
.base_vdi_id
= s
->inode
.vdi_id
;
1805 wlen
= strlen(s
->name
) + 1;
1806 hdr
.data_length
= wlen
;
1807 hdr
.flags
= SD_FLAG_CMD_WRITE
;
1809 ret
= do_req(fd
, s
->aio_context
, (SheepdogReq
*)&hdr
,
1810 s
->name
, &wlen
, &rlen
);
1814 if (!ret
&& rsp
->result
!= SD_RES_SUCCESS
&&
1815 rsp
->result
!= SD_RES_VDI_NOT_LOCKED
) {
1816 error_report("%s, %s", sd_strerror(rsp
->result
), s
->name
);
1819 aio_set_fd_handler(bdrv_get_aio_context(bs
), s
->fd
, NULL
, NULL
, NULL
);
1821 g_free(s
->host_spec
);
1824 static int64_t sd_getlength(BlockDriverState
*bs
)
1826 BDRVSheepdogState
*s
= bs
->opaque
;
1828 return s
->inode
.vdi_size
;
1831 static int sd_truncate(BlockDriverState
*bs
, int64_t offset
)
1833 Error
*local_err
= NULL
;
1834 BDRVSheepdogState
*s
= bs
->opaque
;
1836 unsigned int datalen
;
1838 if (offset
< s
->inode
.vdi_size
) {
1839 error_report("shrinking is not supported");
1841 } else if (offset
> SD_MAX_VDI_SIZE
) {
1842 error_report("too big image size");
1846 fd
= connect_to_sdog(s
, &local_err
);
1848 error_report("%s", error_get_pretty(local_err
));;
1849 error_free(local_err
);
1853 /* we don't need to update entire object */
1854 datalen
= SD_INODE_SIZE
- sizeof(s
->inode
.data_vdi_id
);
1855 s
->inode
.vdi_size
= offset
;
1856 ret
= write_object(fd
, s
->aio_context
, (char *)&s
->inode
,
1857 vid_to_vdi_oid(s
->inode
.vdi_id
), s
->inode
.nr_copies
,
1858 datalen
, 0, false, s
->cache_flags
);
1862 error_report("failed to update an inode.");
1869 * This function is called after writing data objects. If we need to
1870 * update metadata, this sends a write request to the vdi object.
1871 * Otherwise, this switches back to sd_co_readv/writev.
1873 static void coroutine_fn
sd_write_done(SheepdogAIOCB
*acb
)
1875 BDRVSheepdogState
*s
= acb
->common
.bs
->opaque
;
1878 uint32_t offset
, data_len
, mn
, mx
;
1880 mn
= s
->min_dirty_data_idx
;
1881 mx
= s
->max_dirty_data_idx
;
1883 /* we need to update the vdi object. */
1884 offset
= sizeof(s
->inode
) - sizeof(s
->inode
.data_vdi_id
) +
1885 mn
* sizeof(s
->inode
.data_vdi_id
[0]);
1886 data_len
= (mx
- mn
+ 1) * sizeof(s
->inode
.data_vdi_id
[0]);
1888 s
->min_dirty_data_idx
= UINT32_MAX
;
1889 s
->max_dirty_data_idx
= 0;
1891 iov
.iov_base
= &s
->inode
;
1892 iov
.iov_len
= sizeof(s
->inode
);
1893 aio_req
= alloc_aio_req(s
, acb
, vid_to_vdi_oid(s
->inode
.vdi_id
),
1894 data_len
, offset
, 0, false, 0, offset
);
1895 QLIST_INSERT_HEAD(&s
->inflight_aio_head
, aio_req
, aio_siblings
);
1896 add_aio_request(s
, aio_req
, &iov
, 1, AIOCB_WRITE_UDATA
);
1898 acb
->aio_done_func
= sd_finish_aiocb
;
1899 acb
->aiocb_type
= AIOCB_WRITE_UDATA
;
1903 sd_finish_aiocb(acb
);
1906 /* Delete current working VDI on the snapshot chain */
1907 static bool sd_delete(BDRVSheepdogState
*s
)
1909 Error
*local_err
= NULL
;
1910 unsigned int wlen
= SD_MAX_VDI_LEN
, rlen
= 0;
1911 SheepdogVdiReq hdr
= {
1912 .opcode
= SD_OP_DEL_VDI
,
1913 .base_vdi_id
= s
->inode
.vdi_id
,
1914 .data_length
= wlen
,
1915 .flags
= SD_FLAG_CMD_WRITE
,
1917 SheepdogVdiRsp
*rsp
= (SheepdogVdiRsp
*)&hdr
;
1920 fd
= connect_to_sdog(s
, &local_err
);
1922 error_report("%s", error_get_pretty(local_err
));;
1923 error_free(local_err
);
1927 ret
= do_req(fd
, s
->aio_context
, (SheepdogReq
*)&hdr
,
1928 s
->name
, &wlen
, &rlen
);
1933 switch (rsp
->result
) {
1935 error_report("%s was already deleted", s
->name
);
1937 case SD_RES_SUCCESS
:
1940 error_report("%s, %s", sd_strerror(rsp
->result
), s
->name
);
1948 * Create a writable VDI from a snapshot
1950 static int sd_create_branch(BDRVSheepdogState
*s
)
1952 Error
*local_err
= NULL
;
1958 DPRINTF("%" PRIx32
" is snapshot.\n", s
->inode
.vdi_id
);
1960 buf
= g_malloc(SD_INODE_SIZE
);
1963 * Even If deletion fails, we will just create extra snapshot based on
1964 * the working VDI which was supposed to be deleted. So no need to
1967 deleted
= sd_delete(s
);
1968 ret
= do_sd_create(s
, &vid
, !deleted
, &local_err
);
1970 error_report("%s", error_get_pretty(local_err
));;
1971 error_free(local_err
);
1975 DPRINTF("%" PRIx32
" is created.\n", vid
);
1977 fd
= connect_to_sdog(s
, &local_err
);
1979 error_report("%s", error_get_pretty(local_err
));;
1980 error_free(local_err
);
1985 ret
= read_object(fd
, s
->aio_context
, buf
, vid_to_vdi_oid(vid
),
1986 s
->inode
.nr_copies
, SD_INODE_SIZE
, 0, s
->cache_flags
);
1994 memcpy(&s
->inode
, buf
, sizeof(s
->inode
));
1996 s
->is_snapshot
= false;
1998 DPRINTF("%" PRIx32
" was newly created.\n", s
->inode
.vdi_id
);
2007 * Send I/O requests to the server.
2009 * This function sends requests to the server, links the requests to
2010 * the inflight_list in BDRVSheepdogState, and exits without
2011 * waiting the response. The responses are received in the
2012 * `aio_read_response' function which is called from the main loop as
2015 * Returns 1 when we need to wait a response, 0 when there is no sent
2016 * request and -errno in error cases.
2018 static int coroutine_fn
sd_co_rw_vector(void *p
)
2020 SheepdogAIOCB
*acb
= p
;
2022 unsigned long len
, done
= 0, total
= acb
->nb_sectors
* BDRV_SECTOR_SIZE
;
2023 unsigned long idx
= acb
->sector_num
* BDRV_SECTOR_SIZE
/ SD_DATA_OBJ_SIZE
;
2025 uint64_t offset
= (acb
->sector_num
* BDRV_SECTOR_SIZE
) % SD_DATA_OBJ_SIZE
;
2026 BDRVSheepdogState
*s
= acb
->common
.bs
->opaque
;
2027 SheepdogInode
*inode
= &s
->inode
;
2030 if (acb
->aiocb_type
== AIOCB_WRITE_UDATA
&& s
->is_snapshot
) {
2032 * In the case we open the snapshot VDI, Sheepdog creates the
2033 * writable VDI when we do a write operation first.
2035 ret
= sd_create_branch(s
);
2043 * Make sure we don't free the aiocb before we are done with all requests.
2044 * This additional reference is dropped at the end of this function.
2048 while (done
!= total
) {
2050 uint64_t old_oid
= 0;
2051 bool create
= false;
2053 oid
= vid_to_data_oid(inode
->data_vdi_id
[idx
], idx
);
2055 len
= MIN(total
- done
, SD_DATA_OBJ_SIZE
- offset
);
2057 switch (acb
->aiocb_type
) {
2058 case AIOCB_READ_UDATA
:
2059 if (!inode
->data_vdi_id
[idx
]) {
2060 qemu_iovec_memset(acb
->qiov
, done
, 0, len
);
2064 case AIOCB_WRITE_UDATA
:
2065 if (!inode
->data_vdi_id
[idx
]) {
2067 } else if (!is_data_obj_writable(inode
, idx
)) {
2071 flags
= SD_FLAG_CMD_COW
;
2074 case AIOCB_DISCARD_OBJ
:
2076 * We discard the object only when the whole object is
2077 * 1) allocated 2) trimmed. Otherwise, simply skip it.
2079 if (len
!= SD_DATA_OBJ_SIZE
|| inode
->data_vdi_id
[idx
] == 0) {
2088 DPRINTF("update ino (%" PRIu32
") %" PRIu64
" %" PRIu64
" %ld\n",
2090 vid_to_data_oid(inode
->data_vdi_id
[idx
], idx
), idx
);
2091 oid
= vid_to_data_oid(inode
->vdi_id
, idx
);
2092 DPRINTF("new oid %" PRIx64
"\n", oid
);
2095 aio_req
= alloc_aio_req(s
, acb
, oid
, len
, offset
, flags
, create
,
2097 QLIST_INSERT_HEAD(&s
->inflight_aio_head
, aio_req
, aio_siblings
);
2100 if (check_simultaneous_create(s
, aio_req
)) {
2105 add_aio_request(s
, aio_req
, acb
->qiov
->iov
, acb
->qiov
->niov
,
2113 if (!--acb
->nr_pending
) {
2119 static coroutine_fn
int sd_co_writev(BlockDriverState
*bs
, int64_t sector_num
,
2120 int nb_sectors
, QEMUIOVector
*qiov
)
2124 int64_t offset
= (sector_num
+ nb_sectors
) * BDRV_SECTOR_SIZE
;
2125 BDRVSheepdogState
*s
= bs
->opaque
;
2127 if (bs
->growable
&& offset
> s
->inode
.vdi_size
) {
2128 ret
= sd_truncate(bs
, offset
);
2134 acb
= sd_aio_setup(bs
, qiov
, sector_num
, nb_sectors
);
2135 acb
->aio_done_func
= sd_write_done
;
2136 acb
->aiocb_type
= AIOCB_WRITE_UDATA
;
2138 ret
= sd_co_rw_vector(acb
);
2140 qemu_aio_release(acb
);
2144 qemu_coroutine_yield();
2149 static coroutine_fn
int sd_co_readv(BlockDriverState
*bs
, int64_t sector_num
,
2150 int nb_sectors
, QEMUIOVector
*qiov
)
2155 acb
= sd_aio_setup(bs
, qiov
, sector_num
, nb_sectors
);
2156 acb
->aiocb_type
= AIOCB_READ_UDATA
;
2157 acb
->aio_done_func
= sd_finish_aiocb
;
2159 ret
= sd_co_rw_vector(acb
);
2161 qemu_aio_release(acb
);
2165 qemu_coroutine_yield();
2170 static int coroutine_fn
sd_co_flush_to_disk(BlockDriverState
*bs
)
2172 BDRVSheepdogState
*s
= bs
->opaque
;
2176 if (s
->cache_flags
!= SD_FLAG_CMD_CACHE
) {
2180 acb
= sd_aio_setup(bs
, NULL
, 0, 0);
2181 acb
->aiocb_type
= AIOCB_FLUSH_CACHE
;
2182 acb
->aio_done_func
= sd_finish_aiocb
;
2184 aio_req
= alloc_aio_req(s
, acb
, vid_to_vdi_oid(s
->inode
.vdi_id
),
2185 0, 0, 0, false, 0, 0);
2186 QLIST_INSERT_HEAD(&s
->inflight_aio_head
, aio_req
, aio_siblings
);
2187 add_aio_request(s
, aio_req
, NULL
, 0, acb
->aiocb_type
);
2189 qemu_coroutine_yield();
2193 static int sd_snapshot_create(BlockDriverState
*bs
, QEMUSnapshotInfo
*sn_info
)
2195 Error
*local_err
= NULL
;
2196 BDRVSheepdogState
*s
= bs
->opaque
;
2199 SheepdogInode
*inode
;
2200 unsigned int datalen
;
2202 DPRINTF("sn_info: name %s id_str %s s: name %s vm_state_size %" PRId64
" "
2203 "is_snapshot %d\n", sn_info
->name
, sn_info
->id_str
,
2204 s
->name
, sn_info
->vm_state_size
, s
->is_snapshot
);
2206 if (s
->is_snapshot
) {
2207 error_report("You can't create a snapshot of a snapshot VDI, "
2208 "%s (%" PRIu32
").", s
->name
, s
->inode
.vdi_id
);
2213 DPRINTF("%s %s\n", sn_info
->name
, sn_info
->id_str
);
2215 s
->inode
.vm_state_size
= sn_info
->vm_state_size
;
2216 s
->inode
.vm_clock_nsec
= sn_info
->vm_clock_nsec
;
2217 /* It appears that inode.tag does not require a NUL terminator,
2218 * which means this use of strncpy is ok.
2220 strncpy(s
->inode
.tag
, sn_info
->name
, sizeof(s
->inode
.tag
));
2221 /* we don't need to update entire object */
2222 datalen
= SD_INODE_SIZE
- sizeof(s
->inode
.data_vdi_id
);
2223 inode
= g_malloc(datalen
);
2225 /* refresh inode. */
2226 fd
= connect_to_sdog(s
, &local_err
);
2228 error_report("%s", error_get_pretty(local_err
));;
2229 error_free(local_err
);
2234 ret
= write_object(fd
, s
->aio_context
, (char *)&s
->inode
,
2235 vid_to_vdi_oid(s
->inode
.vdi_id
), s
->inode
.nr_copies
,
2236 datalen
, 0, false, s
->cache_flags
);
2238 error_report("failed to write snapshot's inode.");
2242 ret
= do_sd_create(s
, &new_vid
, 1, &local_err
);
2244 error_report("%s", error_get_pretty(local_err
));;
2245 error_free(local_err
);
2246 error_report("failed to create inode for snapshot. %s",
2251 ret
= read_object(fd
, s
->aio_context
, (char *)inode
,
2252 vid_to_vdi_oid(new_vid
), s
->inode
.nr_copies
, datalen
, 0,
2256 error_report("failed to read new inode info. %s", strerror(errno
));
2260 memcpy(&s
->inode
, inode
, datalen
);
2261 DPRINTF("s->inode: name %s snap_id %x oid %x\n",
2262 s
->inode
.name
, s
->inode
.snap_id
, s
->inode
.vdi_id
);
2271 * We implement rollback(loadvm) operation to the specified snapshot by
2272 * 1) switch to the snapshot
2273 * 2) rely on sd_create_branch to delete working VDI and
2274 * 3) create a new working VDI based on the specified snapshot
2276 static int sd_snapshot_goto(BlockDriverState
*bs
, const char *snapshot_id
)
2278 BDRVSheepdogState
*s
= bs
->opaque
;
2279 BDRVSheepdogState
*old_s
;
2280 char tag
[SD_MAX_VDI_TAG_LEN
];
2281 uint32_t snapid
= 0;
2284 old_s
= g_new(BDRVSheepdogState
, 1);
2286 memcpy(old_s
, s
, sizeof(BDRVSheepdogState
));
2288 snapid
= strtoul(snapshot_id
, NULL
, 10);
2292 pstrcpy(tag
, sizeof(tag
), snapshot_id
);
2295 ret
= reload_inode(s
, snapid
, tag
);
2300 ret
= sd_create_branch(s
);
2309 /* recover bdrv_sd_state */
2310 memcpy(s
, old_s
, sizeof(BDRVSheepdogState
));
2313 error_report("failed to open. recover old bdrv_sd_state.");
2318 static int sd_snapshot_delete(BlockDriverState
*bs
,
2319 const char *snapshot_id
,
2323 /* FIXME: Delete specified snapshot id. */
2327 static int sd_snapshot_list(BlockDriverState
*bs
, QEMUSnapshotInfo
**psn_tab
)
2329 Error
*local_err
= NULL
;
2330 BDRVSheepdogState
*s
= bs
->opaque
;
2332 int fd
, nr
= 1024, ret
, max
= BITS_TO_LONGS(SD_NR_VDIS
) * sizeof(long);
2333 QEMUSnapshotInfo
*sn_tab
= NULL
;
2334 unsigned wlen
, rlen
;
2336 static SheepdogInode inode
;
2337 unsigned long *vdi_inuse
;
2338 unsigned int start_nr
;
2342 vdi_inuse
= g_malloc(max
);
2344 fd
= connect_to_sdog(s
, &local_err
);
2346 error_report("%s", error_get_pretty(local_err
));;
2347 error_free(local_err
);
2355 memset(&req
, 0, sizeof(req
));
2357 req
.opcode
= SD_OP_READ_VDIS
;
2358 req
.data_length
= max
;
2360 ret
= do_req(fd
, s
->aio_context
, (SheepdogReq
*)&req
,
2361 vdi_inuse
, &wlen
, &rlen
);
2368 sn_tab
= g_new0(QEMUSnapshotInfo
, nr
);
2370 /* calculate a vdi id with hash function */
2371 hval
= fnv_64a_buf(s
->name
, strlen(s
->name
), FNV1A_64_INIT
);
2372 start_nr
= hval
& (SD_NR_VDIS
- 1);
2374 fd
= connect_to_sdog(s
, &local_err
);
2376 error_report("%s", error_get_pretty(local_err
));;
2377 error_free(local_err
);
2382 for (vid
= start_nr
; found
< nr
; vid
= (vid
+ 1) % SD_NR_VDIS
) {
2383 if (!test_bit(vid
, vdi_inuse
)) {
2387 /* we don't need to read entire object */
2388 ret
= read_object(fd
, s
->aio_context
, (char *)&inode
,
2389 vid_to_vdi_oid(vid
),
2390 0, SD_INODE_SIZE
- sizeof(inode
.data_vdi_id
), 0,
2397 if (!strcmp(inode
.name
, s
->name
) && is_snapshot(&inode
)) {
2398 sn_tab
[found
].date_sec
= inode
.snap_ctime
>> 32;
2399 sn_tab
[found
].date_nsec
= inode
.snap_ctime
& 0xffffffff;
2400 sn_tab
[found
].vm_state_size
= inode
.vm_state_size
;
2401 sn_tab
[found
].vm_clock_nsec
= inode
.vm_clock_nsec
;
2403 snprintf(sn_tab
[found
].id_str
, sizeof(sn_tab
[found
].id_str
),
2404 "%" PRIu32
, inode
.snap_id
);
2405 pstrcpy(sn_tab
[found
].name
,
2406 MIN(sizeof(sn_tab
[found
].name
), sizeof(inode
.tag
)),
2425 static int do_load_save_vmstate(BDRVSheepdogState
*s
, uint8_t *data
,
2426 int64_t pos
, int size
, int load
)
2428 Error
*local_err
= NULL
;
2430 int fd
, ret
= 0, remaining
= size
;
2431 unsigned int data_len
;
2432 uint64_t vmstate_oid
;
2435 uint32_t vdi_id
= load
? s
->inode
.parent_vdi_id
: s
->inode
.vdi_id
;
2437 fd
= connect_to_sdog(s
, &local_err
);
2439 error_report("%s", error_get_pretty(local_err
));;
2440 error_free(local_err
);
2445 vdi_index
= pos
/ SD_DATA_OBJ_SIZE
;
2446 offset
= pos
% SD_DATA_OBJ_SIZE
;
2448 data_len
= MIN(remaining
, SD_DATA_OBJ_SIZE
- offset
);
2450 vmstate_oid
= vid_to_vmstate_oid(vdi_id
, vdi_index
);
2452 create
= (offset
== 0);
2454 ret
= read_object(fd
, s
->aio_context
, (char *)data
, vmstate_oid
,
2455 s
->inode
.nr_copies
, data_len
, offset
,
2458 ret
= write_object(fd
, s
->aio_context
, (char *)data
, vmstate_oid
,
2459 s
->inode
.nr_copies
, data_len
, offset
, create
,
2464 error_report("failed to save vmstate %s", strerror(errno
));
2470 remaining
-= data_len
;
2478 static int sd_save_vmstate(BlockDriverState
*bs
, QEMUIOVector
*qiov
,
2481 BDRVSheepdogState
*s
= bs
->opaque
;
2485 buf
= qemu_blockalign(bs
, qiov
->size
);
2486 qemu_iovec_to_buf(qiov
, 0, buf
, qiov
->size
);
2487 ret
= do_load_save_vmstate(s
, (uint8_t *) buf
, pos
, qiov
->size
, 0);
2493 static int sd_load_vmstate(BlockDriverState
*bs
, uint8_t *data
,
2494 int64_t pos
, int size
)
2496 BDRVSheepdogState
*s
= bs
->opaque
;
2498 return do_load_save_vmstate(s
, data
, pos
, size
, 1);
2502 static coroutine_fn
int sd_co_discard(BlockDriverState
*bs
, int64_t sector_num
,
2507 BDRVSheepdogState
*s
= bs
->opaque
;
2510 if (!s
->discard_supported
) {
2514 acb
= sd_aio_setup(bs
, &dummy
, sector_num
, nb_sectors
);
2515 acb
->aiocb_type
= AIOCB_DISCARD_OBJ
;
2516 acb
->aio_done_func
= sd_finish_aiocb
;
2518 ret
= sd_co_rw_vector(acb
);
2520 qemu_aio_release(acb
);
2524 qemu_coroutine_yield();
2529 static coroutine_fn
int64_t
2530 sd_co_get_block_status(BlockDriverState
*bs
, int64_t sector_num
, int nb_sectors
,
2533 BDRVSheepdogState
*s
= bs
->opaque
;
2534 SheepdogInode
*inode
= &s
->inode
;
2535 uint64_t offset
= sector_num
* BDRV_SECTOR_SIZE
;
2536 unsigned long start
= offset
/ SD_DATA_OBJ_SIZE
,
2537 end
= DIV_ROUND_UP((sector_num
+ nb_sectors
) *
2538 BDRV_SECTOR_SIZE
, SD_DATA_OBJ_SIZE
);
2540 int64_t ret
= BDRV_BLOCK_DATA
| BDRV_BLOCK_OFFSET_VALID
| offset
;
2542 for (idx
= start
; idx
< end
; idx
++) {
2543 if (inode
->data_vdi_id
[idx
] == 0) {
2548 /* Get the longest length of unallocated sectors */
2550 for (idx
= start
+ 1; idx
< end
; idx
++) {
2551 if (inode
->data_vdi_id
[idx
] != 0) {
2557 *pnum
= (idx
- start
) * SD_DATA_OBJ_SIZE
/ BDRV_SECTOR_SIZE
;
2558 if (*pnum
> nb_sectors
) {
2564 static int64_t sd_get_allocated_file_size(BlockDriverState
*bs
)
2566 BDRVSheepdogState
*s
= bs
->opaque
;
2567 SheepdogInode
*inode
= &s
->inode
;
2568 unsigned long i
, last
= DIV_ROUND_UP(inode
->vdi_size
, SD_DATA_OBJ_SIZE
);
2571 for (i
= 0; i
< last
; i
++) {
2572 if (inode
->data_vdi_id
[i
] == 0) {
2575 size
+= SD_DATA_OBJ_SIZE
;
2580 static QemuOptsList sd_create_opts
= {
2581 .name
= "sheepdog-create-opts",
2582 .head
= QTAILQ_HEAD_INITIALIZER(sd_create_opts
.head
),
2585 .name
= BLOCK_OPT_SIZE
,
2586 .type
= QEMU_OPT_SIZE
,
2587 .help
= "Virtual disk size"
2590 .name
= BLOCK_OPT_BACKING_FILE
,
2591 .type
= QEMU_OPT_STRING
,
2592 .help
= "File name of a base image"
2595 .name
= BLOCK_OPT_PREALLOC
,
2596 .type
= QEMU_OPT_STRING
,
2597 .help
= "Preallocation mode (allowed values: off, full)"
2600 .name
= BLOCK_OPT_REDUNDANCY
,
2601 .type
= QEMU_OPT_STRING
,
2602 .help
= "Redundancy of the image"
2604 { /* end of list */ }
2608 static BlockDriver bdrv_sheepdog
= {
2609 .format_name
= "sheepdog",
2610 .protocol_name
= "sheepdog",
2611 .instance_size
= sizeof(BDRVSheepdogState
),
2612 .bdrv_needs_filename
= true,
2613 .bdrv_file_open
= sd_open
,
2614 .bdrv_close
= sd_close
,
2615 .bdrv_create
= sd_create
,
2616 .bdrv_has_zero_init
= bdrv_has_zero_init_1
,
2617 .bdrv_getlength
= sd_getlength
,
2618 .bdrv_get_allocated_file_size
= sd_get_allocated_file_size
,
2619 .bdrv_truncate
= sd_truncate
,
2621 .bdrv_co_readv
= sd_co_readv
,
2622 .bdrv_co_writev
= sd_co_writev
,
2623 .bdrv_co_flush_to_disk
= sd_co_flush_to_disk
,
2624 .bdrv_co_discard
= sd_co_discard
,
2625 .bdrv_co_get_block_status
= sd_co_get_block_status
,
2627 .bdrv_snapshot_create
= sd_snapshot_create
,
2628 .bdrv_snapshot_goto
= sd_snapshot_goto
,
2629 .bdrv_snapshot_delete
= sd_snapshot_delete
,
2630 .bdrv_snapshot_list
= sd_snapshot_list
,
2632 .bdrv_save_vmstate
= sd_save_vmstate
,
2633 .bdrv_load_vmstate
= sd_load_vmstate
,
2635 .bdrv_detach_aio_context
= sd_detach_aio_context
,
2636 .bdrv_attach_aio_context
= sd_attach_aio_context
,
2638 .create_opts
= &sd_create_opts
,
2641 static BlockDriver bdrv_sheepdog_tcp
= {
2642 .format_name
= "sheepdog",
2643 .protocol_name
= "sheepdog+tcp",
2644 .instance_size
= sizeof(BDRVSheepdogState
),
2645 .bdrv_needs_filename
= true,
2646 .bdrv_file_open
= sd_open
,
2647 .bdrv_close
= sd_close
,
2648 .bdrv_create
= sd_create
,
2649 .bdrv_has_zero_init
= bdrv_has_zero_init_1
,
2650 .bdrv_getlength
= sd_getlength
,
2651 .bdrv_get_allocated_file_size
= sd_get_allocated_file_size
,
2652 .bdrv_truncate
= sd_truncate
,
2654 .bdrv_co_readv
= sd_co_readv
,
2655 .bdrv_co_writev
= sd_co_writev
,
2656 .bdrv_co_flush_to_disk
= sd_co_flush_to_disk
,
2657 .bdrv_co_discard
= sd_co_discard
,
2658 .bdrv_co_get_block_status
= sd_co_get_block_status
,
2660 .bdrv_snapshot_create
= sd_snapshot_create
,
2661 .bdrv_snapshot_goto
= sd_snapshot_goto
,
2662 .bdrv_snapshot_delete
= sd_snapshot_delete
,
2663 .bdrv_snapshot_list
= sd_snapshot_list
,
2665 .bdrv_save_vmstate
= sd_save_vmstate
,
2666 .bdrv_load_vmstate
= sd_load_vmstate
,
2668 .bdrv_detach_aio_context
= sd_detach_aio_context
,
2669 .bdrv_attach_aio_context
= sd_attach_aio_context
,
2671 .create_opts
= &sd_create_opts
,
2674 static BlockDriver bdrv_sheepdog_unix
= {
2675 .format_name
= "sheepdog",
2676 .protocol_name
= "sheepdog+unix",
2677 .instance_size
= sizeof(BDRVSheepdogState
),
2678 .bdrv_needs_filename
= true,
2679 .bdrv_file_open
= sd_open
,
2680 .bdrv_close
= sd_close
,
2681 .bdrv_create
= sd_create
,
2682 .bdrv_has_zero_init
= bdrv_has_zero_init_1
,
2683 .bdrv_getlength
= sd_getlength
,
2684 .bdrv_get_allocated_file_size
= sd_get_allocated_file_size
,
2685 .bdrv_truncate
= sd_truncate
,
2687 .bdrv_co_readv
= sd_co_readv
,
2688 .bdrv_co_writev
= sd_co_writev
,
2689 .bdrv_co_flush_to_disk
= sd_co_flush_to_disk
,
2690 .bdrv_co_discard
= sd_co_discard
,
2691 .bdrv_co_get_block_status
= sd_co_get_block_status
,
2693 .bdrv_snapshot_create
= sd_snapshot_create
,
2694 .bdrv_snapshot_goto
= sd_snapshot_goto
,
2695 .bdrv_snapshot_delete
= sd_snapshot_delete
,
2696 .bdrv_snapshot_list
= sd_snapshot_list
,
2698 .bdrv_save_vmstate
= sd_save_vmstate
,
2699 .bdrv_load_vmstate
= sd_load_vmstate
,
2701 .bdrv_detach_aio_context
= sd_detach_aio_context
,
2702 .bdrv_attach_aio_context
= sd_attach_aio_context
,
2704 .create_opts
= &sd_create_opts
,
2707 static void bdrv_sheepdog_init(void)
2709 bdrv_register(&bdrv_sheepdog
);
2710 bdrv_register(&bdrv_sheepdog_tcp
);
2711 bdrv_register(&bdrv_sheepdog_unix
);
2713 block_init(bdrv_sheepdog_init
);