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"
16 #include "qemu/error-report.h"
17 #include "qemu/sockets.h"
18 #include "block/block_int.h"
19 #include "qemu/bitops.h"
21 #define SD_PROTO_VER 0x01
23 #define SD_DEFAULT_ADDR "localhost"
24 #define SD_DEFAULT_PORT "7000"
26 #define SD_OP_CREATE_AND_WRITE_OBJ 0x01
27 #define SD_OP_READ_OBJ 0x02
28 #define SD_OP_WRITE_OBJ 0x03
30 #define SD_OP_NEW_VDI 0x11
31 #define SD_OP_LOCK_VDI 0x12
32 #define SD_OP_RELEASE_VDI 0x13
33 #define SD_OP_GET_VDI_INFO 0x14
34 #define SD_OP_READ_VDIS 0x15
35 #define SD_OP_FLUSH_VDI 0x16
37 #define SD_FLAG_CMD_WRITE 0x01
38 #define SD_FLAG_CMD_COW 0x02
39 #define SD_FLAG_CMD_CACHE 0x04 /* Writeback mode for cache */
40 #define SD_FLAG_CMD_DIRECT 0x08 /* Don't use cache */
42 #define SD_RES_SUCCESS 0x00 /* Success */
43 #define SD_RES_UNKNOWN 0x01 /* Unknown error */
44 #define SD_RES_NO_OBJ 0x02 /* No object found */
45 #define SD_RES_EIO 0x03 /* I/O error */
46 #define SD_RES_VDI_EXIST 0x04 /* Vdi exists already */
47 #define SD_RES_INVALID_PARMS 0x05 /* Invalid parameters */
48 #define SD_RES_SYSTEM_ERROR 0x06 /* System error */
49 #define SD_RES_VDI_LOCKED 0x07 /* Vdi is locked */
50 #define SD_RES_NO_VDI 0x08 /* No vdi found */
51 #define SD_RES_NO_BASE_VDI 0x09 /* No base vdi found */
52 #define SD_RES_VDI_READ 0x0A /* Cannot read requested vdi */
53 #define SD_RES_VDI_WRITE 0x0B /* Cannot write requested vdi */
54 #define SD_RES_BASE_VDI_READ 0x0C /* Cannot read base vdi */
55 #define SD_RES_BASE_VDI_WRITE 0x0D /* Cannot write base vdi */
56 #define SD_RES_NO_TAG 0x0E /* Requested tag is not found */
57 #define SD_RES_STARTUP 0x0F /* Sheepdog is on starting up */
58 #define SD_RES_VDI_NOT_LOCKED 0x10 /* Vdi is not locked */
59 #define SD_RES_SHUTDOWN 0x11 /* Sheepdog is shutting down */
60 #define SD_RES_NO_MEM 0x12 /* Cannot allocate memory */
61 #define SD_RES_FULL_VDI 0x13 /* we already have the maximum vdis */
62 #define SD_RES_VER_MISMATCH 0x14 /* Protocol version mismatch */
63 #define SD_RES_NO_SPACE 0x15 /* Server has no room for new objects */
64 #define SD_RES_WAIT_FOR_FORMAT 0x16 /* Waiting for a format operation */
65 #define SD_RES_WAIT_FOR_JOIN 0x17 /* Waiting for other nodes joining */
66 #define SD_RES_JOIN_FAILED 0x18 /* Target node had failed to join sheepdog */
71 * 0 - 19 (20 bits): data object space
72 * 20 - 31 (12 bits): reserved data object space
73 * 32 - 55 (24 bits): vdi object space
74 * 56 - 59 ( 4 bits): reserved vdi object space
75 * 60 - 63 ( 4 bits): object type identifier space
78 #define VDI_SPACE_SHIFT 32
79 #define VDI_BIT (UINT64_C(1) << 63)
80 #define VMSTATE_BIT (UINT64_C(1) << 62)
81 #define MAX_DATA_OBJS (UINT64_C(1) << 20)
82 #define MAX_CHILDREN 1024
83 #define SD_MAX_VDI_LEN 256
84 #define SD_MAX_VDI_TAG_LEN 256
85 #define SD_NR_VDIS (1U << 24)
86 #define SD_DATA_OBJ_SIZE (UINT64_C(1) << 22)
87 #define SD_MAX_VDI_SIZE (SD_DATA_OBJ_SIZE * MAX_DATA_OBJS)
88 #define SECTOR_SIZE 512
90 #define SD_INODE_SIZE (sizeof(SheepdogInode))
91 #define CURRENT_VDI_ID 0
93 typedef struct SheepdogReq
{
100 uint32_t opcode_specific
[8];
103 typedef struct SheepdogRsp
{
109 uint32_t data_length
;
111 uint32_t opcode_specific
[7];
114 typedef struct SheepdogObjReq
{
120 uint32_t data_length
;
128 typedef struct SheepdogObjRsp
{
134 uint32_t data_length
;
140 typedef struct SheepdogVdiReq
{
146 uint32_t data_length
;
148 uint32_t base_vdi_id
;
154 typedef struct SheepdogVdiRsp
{
160 uint32_t data_length
;
167 typedef struct SheepdogInode
{
168 char name
[SD_MAX_VDI_LEN
];
169 char tag
[SD_MAX_VDI_TAG_LEN
];
172 uint64_t vm_clock_nsec
;
174 uint64_t vm_state_size
;
175 uint16_t copy_policy
;
177 uint8_t block_size_shift
;
180 uint32_t parent_vdi_id
;
181 uint32_t child_vdi_id
[MAX_CHILDREN
];
182 uint32_t data_vdi_id
[MAX_DATA_OBJS
];
186 * 64 bit FNV-1a non-zero initial basis
188 #define FNV1A_64_INIT ((uint64_t)0xcbf29ce484222325ULL)
191 * 64 bit Fowler/Noll/Vo FNV-1a hash code
193 static inline uint64_t fnv_64a_buf(void *buf
, size_t len
, uint64_t hval
)
195 unsigned char *bp
= buf
;
196 unsigned char *be
= bp
+ len
;
198 hval
^= (uint64_t) *bp
++;
199 hval
+= (hval
<< 1) + (hval
<< 4) + (hval
<< 5) +
200 (hval
<< 7) + (hval
<< 8) + (hval
<< 40);
205 static inline bool is_data_obj_writable(SheepdogInode
*inode
, unsigned int idx
)
207 return inode
->vdi_id
== inode
->data_vdi_id
[idx
];
210 static inline bool is_data_obj(uint64_t oid
)
212 return !(VDI_BIT
& oid
);
215 static inline uint64_t data_oid_to_idx(uint64_t oid
)
217 return oid
& (MAX_DATA_OBJS
- 1);
220 static inline uint64_t vid_to_vdi_oid(uint32_t vid
)
222 return VDI_BIT
| ((uint64_t)vid
<< VDI_SPACE_SHIFT
);
225 static inline uint64_t vid_to_vmstate_oid(uint32_t vid
, uint32_t idx
)
227 return VMSTATE_BIT
| ((uint64_t)vid
<< VDI_SPACE_SHIFT
) | idx
;
230 static inline uint64_t vid_to_data_oid(uint32_t vid
, uint32_t idx
)
232 return ((uint64_t)vid
<< VDI_SPACE_SHIFT
) | idx
;
235 static inline bool is_snapshot(struct SheepdogInode
*inode
)
237 return !!inode
->snap_ctime
;
242 #define dprintf(fmt, args...) \
244 fprintf(stdout, "%s %d: " fmt, __func__, __LINE__, ##args); \
247 #define dprintf(fmt, args...)
250 typedef struct SheepdogAIOCB SheepdogAIOCB
;
252 typedef struct AIOReq
{
253 SheepdogAIOCB
*aiocb
;
254 unsigned int iov_offset
;
259 unsigned int data_len
;
263 QLIST_ENTRY(AIOReq
) aio_siblings
;
271 struct SheepdogAIOCB
{
272 BlockDriverAIOCB common
;
280 enum AIOCBState aiocb_type
;
282 Coroutine
*coroutine
;
283 void (*aio_done_func
)(SheepdogAIOCB
*);
289 typedef struct BDRVSheepdogState
{
292 uint32_t min_dirty_data_idx
;
293 uint32_t max_dirty_data_idx
;
295 char name
[SD_MAX_VDI_LEN
];
297 uint32_t cache_flags
;
308 uint32_t aioreq_seq_num
;
309 QLIST_HEAD(inflight_aio_head
, AIOReq
) inflight_aio_head
;
310 QLIST_HEAD(pending_aio_head
, AIOReq
) pending_aio_head
;
313 static const char * sd_strerror(int err
)
317 static const struct {
321 {SD_RES_SUCCESS
, "Success"},
322 {SD_RES_UNKNOWN
, "Unknown error"},
323 {SD_RES_NO_OBJ
, "No object found"},
324 {SD_RES_EIO
, "I/O error"},
325 {SD_RES_VDI_EXIST
, "VDI exists already"},
326 {SD_RES_INVALID_PARMS
, "Invalid parameters"},
327 {SD_RES_SYSTEM_ERROR
, "System error"},
328 {SD_RES_VDI_LOCKED
, "VDI is already locked"},
329 {SD_RES_NO_VDI
, "No vdi found"},
330 {SD_RES_NO_BASE_VDI
, "No base VDI found"},
331 {SD_RES_VDI_READ
, "Failed read the requested VDI"},
332 {SD_RES_VDI_WRITE
, "Failed to write the requested VDI"},
333 {SD_RES_BASE_VDI_READ
, "Failed to read the base VDI"},
334 {SD_RES_BASE_VDI_WRITE
, "Failed to write the base VDI"},
335 {SD_RES_NO_TAG
, "Failed to find the requested tag"},
336 {SD_RES_STARTUP
, "The system is still booting"},
337 {SD_RES_VDI_NOT_LOCKED
, "VDI isn't locked"},
338 {SD_RES_SHUTDOWN
, "The system is shutting down"},
339 {SD_RES_NO_MEM
, "Out of memory on the server"},
340 {SD_RES_FULL_VDI
, "We already have the maximum vdis"},
341 {SD_RES_VER_MISMATCH
, "Protocol version mismatch"},
342 {SD_RES_NO_SPACE
, "Server has no space for new objects"},
343 {SD_RES_WAIT_FOR_FORMAT
, "Sheepdog is waiting for a format operation"},
344 {SD_RES_WAIT_FOR_JOIN
, "Sheepdog is waiting for other nodes joining"},
345 {SD_RES_JOIN_FAILED
, "Target node had failed to join sheepdog"},
348 for (i
= 0; i
< ARRAY_SIZE(errors
); ++i
) {
349 if (errors
[i
].err
== err
) {
350 return errors
[i
].desc
;
354 return "Invalid error code";
358 * Sheepdog I/O handling:
360 * 1. In sd_co_rw_vector, we send the I/O requests to the server and
361 * link the requests to the inflight_list in the
362 * BDRVSheepdogState. The function exits without waiting for
363 * receiving the response.
365 * 2. We receive the response in aio_read_response, the fd handler to
366 * the sheepdog connection. If metadata update is needed, we send
367 * the write request to the vdi object in sd_write_done, the write
368 * completion function. We switch back to sd_co_readv/writev after
369 * all the requests belonging to the AIOCB are finished.
372 static inline AIOReq
*alloc_aio_req(BDRVSheepdogState
*s
, SheepdogAIOCB
*acb
,
373 uint64_t oid
, unsigned int data_len
,
374 uint64_t offset
, uint8_t flags
,
375 uint64_t base_oid
, unsigned int iov_offset
)
379 aio_req
= g_malloc(sizeof(*aio_req
));
380 aio_req
->aiocb
= acb
;
381 aio_req
->iov_offset
= iov_offset
;
383 aio_req
->base_oid
= base_oid
;
384 aio_req
->offset
= offset
;
385 aio_req
->data_len
= data_len
;
386 aio_req
->flags
= flags
;
387 aio_req
->id
= s
->aioreq_seq_num
++;
393 static inline void free_aio_req(BDRVSheepdogState
*s
, AIOReq
*aio_req
)
395 SheepdogAIOCB
*acb
= aio_req
->aiocb
;
397 QLIST_REMOVE(aio_req
, aio_siblings
);
403 static void coroutine_fn
sd_finish_aiocb(SheepdogAIOCB
*acb
)
405 if (!acb
->canceled
) {
406 qemu_coroutine_enter(acb
->coroutine
, NULL
);
408 qemu_aio_release(acb
);
411 static void sd_aio_cancel(BlockDriverAIOCB
*blockacb
)
413 SheepdogAIOCB
*acb
= (SheepdogAIOCB
*)blockacb
;
416 * Sheepdog cannot cancel the requests which are already sent to
417 * the servers, so we just complete the request with -EIO here.
420 qemu_coroutine_enter(acb
->coroutine
, NULL
);
421 acb
->canceled
= true;
424 static const AIOCBInfo sd_aiocb_info
= {
425 .aiocb_size
= sizeof(SheepdogAIOCB
),
426 .cancel
= sd_aio_cancel
,
429 static SheepdogAIOCB
*sd_aio_setup(BlockDriverState
*bs
, QEMUIOVector
*qiov
,
430 int64_t sector_num
, int nb_sectors
,
431 BlockDriverCompletionFunc
*cb
, void *opaque
)
435 acb
= qemu_aio_get(&sd_aiocb_info
, bs
, cb
, opaque
);
439 acb
->sector_num
= sector_num
;
440 acb
->nb_sectors
= nb_sectors
;
442 acb
->aio_done_func
= NULL
;
443 acb
->canceled
= false;
444 acb
->coroutine
= qemu_coroutine_self();
450 static int connect_to_sdog(const char *addr
, const char *port
)
452 char hbuf
[NI_MAXHOST
], sbuf
[NI_MAXSERV
];
454 struct addrinfo hints
, *res
, *res0
;
457 addr
= SD_DEFAULT_ADDR
;
458 port
= SD_DEFAULT_PORT
;
461 memset(&hints
, 0, sizeof(hints
));
462 hints
.ai_socktype
= SOCK_STREAM
;
464 ret
= getaddrinfo(addr
, port
, &hints
, &res0
);
466 error_report("unable to get address info %s, %s",
467 addr
, strerror(errno
));
471 for (res
= res0
; res
; res
= res
->ai_next
) {
472 ret
= getnameinfo(res
->ai_addr
, res
->ai_addrlen
, hbuf
, sizeof(hbuf
),
473 sbuf
, sizeof(sbuf
), NI_NUMERICHOST
| NI_NUMERICSERV
);
478 fd
= socket(res
->ai_family
, res
->ai_socktype
, res
->ai_protocol
);
484 ret
= connect(fd
, res
->ai_addr
, res
->ai_addrlen
);
486 if (errno
== EINTR
) {
493 dprintf("connected to %s:%s\n", addr
, port
);
497 error_report("failed connect to %s:%s", addr
, port
);
503 static coroutine_fn
int send_co_req(int sockfd
, SheepdogReq
*hdr
, void *data
,
508 ret
= qemu_co_send(sockfd
, hdr
, sizeof(*hdr
));
509 if (ret
< sizeof(*hdr
)) {
510 error_report("failed to send a req, %s", strerror(errno
));
514 ret
= qemu_co_send(sockfd
, data
, *wlen
);
516 error_report("failed to send a req, %s", strerror(errno
));
522 static void restart_co_req(void *opaque
)
524 Coroutine
*co
= opaque
;
526 qemu_coroutine_enter(co
, NULL
);
529 typedef struct SheepdogReqCo
{
539 static coroutine_fn
void do_co_req(void *opaque
)
543 SheepdogReqCo
*srco
= opaque
;
544 int sockfd
= srco
->sockfd
;
545 SheepdogReq
*hdr
= srco
->hdr
;
546 void *data
= srco
->data
;
547 unsigned int *wlen
= srco
->wlen
;
548 unsigned int *rlen
= srco
->rlen
;
550 co
= qemu_coroutine_self();
551 qemu_aio_set_fd_handler(sockfd
, NULL
, restart_co_req
, NULL
, co
);
553 socket_set_block(sockfd
);
554 ret
= send_co_req(sockfd
, hdr
, data
, wlen
);
559 qemu_aio_set_fd_handler(sockfd
, restart_co_req
, NULL
, NULL
, co
);
561 ret
= qemu_co_recv(sockfd
, hdr
, sizeof(*hdr
));
562 if (ret
< sizeof(*hdr
)) {
563 error_report("failed to get a rsp, %s", strerror(errno
));
568 if (*rlen
> hdr
->data_length
) {
569 *rlen
= hdr
->data_length
;
573 ret
= qemu_co_recv(sockfd
, data
, *rlen
);
575 error_report("failed to get the data, %s", strerror(errno
));
582 qemu_aio_set_fd_handler(sockfd
, NULL
, NULL
, NULL
, NULL
);
583 socket_set_nonblock(sockfd
);
586 srco
->finished
= true;
589 static int do_req(int sockfd
, SheepdogReq
*hdr
, void *data
,
590 unsigned int *wlen
, unsigned int *rlen
)
593 SheepdogReqCo srco
= {
603 if (qemu_in_coroutine()) {
606 co
= qemu_coroutine_create(do_co_req
);
607 qemu_coroutine_enter(co
, &srco
);
608 while (!srco
.finished
) {
616 static int coroutine_fn
add_aio_request(BDRVSheepdogState
*s
, AIOReq
*aio_req
,
617 struct iovec
*iov
, int niov
, bool create
,
618 enum AIOCBState aiocb_type
);
621 static AIOReq
*find_pending_req(BDRVSheepdogState
*s
, uint64_t oid
)
625 QLIST_FOREACH(aio_req
, &s
->pending_aio_head
, aio_siblings
) {
626 if (aio_req
->oid
== oid
) {
635 * This function searchs pending requests to the object `oid', and
638 static void coroutine_fn
send_pending_req(BDRVSheepdogState
*s
, uint64_t oid
)
644 while ((aio_req
= find_pending_req(s
, oid
)) != NULL
) {
645 acb
= aio_req
->aiocb
;
646 /* move aio_req from pending list to inflight one */
647 QLIST_REMOVE(aio_req
, aio_siblings
);
648 QLIST_INSERT_HEAD(&s
->inflight_aio_head
, aio_req
, aio_siblings
);
649 ret
= add_aio_request(s
, aio_req
, acb
->qiov
->iov
,
650 acb
->qiov
->niov
, false, acb
->aiocb_type
);
652 error_report("add_aio_request is failed");
653 free_aio_req(s
, aio_req
);
654 if (!acb
->nr_pending
) {
655 sd_finish_aiocb(acb
);
662 * Receive responses of the I/O requests.
664 * This function is registered as a fd handler, and called from the
665 * main loop when s->fd is ready for reading responses.
667 static void coroutine_fn
aio_read_response(void *opaque
)
670 BDRVSheepdogState
*s
= opaque
;
673 AIOReq
*aio_req
= NULL
;
677 if (QLIST_EMPTY(&s
->inflight_aio_head
)) {
682 ret
= qemu_co_recv(fd
, &rsp
, sizeof(rsp
));
684 error_report("failed to get the header, %s", strerror(errno
));
688 /* find the right aio_req from the inflight aio list */
689 QLIST_FOREACH(aio_req
, &s
->inflight_aio_head
, aio_siblings
) {
690 if (aio_req
->id
== rsp
.id
) {
695 error_report("cannot find aio_req %x", rsp
.id
);
699 acb
= aio_req
->aiocb
;
701 switch (acb
->aiocb_type
) {
702 case AIOCB_WRITE_UDATA
:
703 /* this coroutine context is no longer suitable for co_recv
704 * because we may send data to update vdi objects */
706 if (!is_data_obj(aio_req
->oid
)) {
709 idx
= data_oid_to_idx(aio_req
->oid
);
711 if (s
->inode
.data_vdi_id
[idx
] != s
->inode
.vdi_id
) {
713 * If the object is newly created one, we need to update
714 * the vdi object (metadata object). min_dirty_data_idx
715 * and max_dirty_data_idx are changed to include updated
716 * index between them.
718 if (rsp
.result
== SD_RES_SUCCESS
) {
719 s
->inode
.data_vdi_id
[idx
] = s
->inode
.vdi_id
;
720 s
->max_dirty_data_idx
= MAX(idx
, s
->max_dirty_data_idx
);
721 s
->min_dirty_data_idx
= MIN(idx
, s
->min_dirty_data_idx
);
724 * Some requests may be blocked because simultaneous
725 * create requests are not allowed, so we search the
726 * pending requests here.
728 send_pending_req(s
, aio_req
->oid
);
731 case AIOCB_READ_UDATA
:
732 ret
= qemu_co_recvv(fd
, acb
->qiov
->iov
, acb
->qiov
->niov
,
733 aio_req
->iov_offset
, rsp
.data_length
);
735 error_report("failed to get the data, %s", strerror(errno
));
741 if (rsp
.result
!= SD_RES_SUCCESS
) {
743 error_report("%s", sd_strerror(rsp
.result
));
746 free_aio_req(s
, aio_req
);
747 if (!acb
->nr_pending
) {
749 * We've finished all requests which belong to the AIOCB, so
750 * we can switch back to sd_co_readv/writev now.
752 acb
->aio_done_func(acb
);
758 static void co_read_response(void *opaque
)
760 BDRVSheepdogState
*s
= opaque
;
763 s
->co_recv
= qemu_coroutine_create(aio_read_response
);
766 qemu_coroutine_enter(s
->co_recv
, opaque
);
769 static void co_write_request(void *opaque
)
771 BDRVSheepdogState
*s
= opaque
;
773 qemu_coroutine_enter(s
->co_send
, NULL
);
776 static int aio_flush_request(void *opaque
)
778 BDRVSheepdogState
*s
= opaque
;
780 return !QLIST_EMPTY(&s
->inflight_aio_head
) ||
781 !QLIST_EMPTY(&s
->pending_aio_head
);
784 static int set_nodelay(int fd
)
789 ret
= setsockopt(fd
, IPPROTO_TCP
, TCP_NODELAY
, (char *)&opt
, sizeof(opt
));
794 * Return a socket discriptor to read/write objects.
796 * We cannot use this discriptor for other operations because
797 * the block driver may be on waiting response from the server.
799 static int get_sheep_fd(BDRVSheepdogState
*s
)
803 fd
= connect_to_sdog(s
->addr
, s
->port
);
805 error_report("%s", strerror(errno
));
809 socket_set_nonblock(fd
);
811 ret
= set_nodelay(fd
);
813 error_report("%s", strerror(errno
));
818 qemu_aio_set_fd_handler(fd
, co_read_response
, NULL
, aio_flush_request
, s
);
825 * filename must be one of the following formats:
827 * 2. [vdiname]:[snapid]
829 * 4. [hostname]:[port]:[vdiname]
830 * 5. [hostname]:[port]:[vdiname]:[snapid]
831 * 6. [hostname]:[port]:[vdiname]:[tag]
833 * You can boot from the snapshot images by specifying `snapid` or
836 * You can run VMs outside the Sheepdog cluster by specifying
837 * `hostname' and `port' (experimental).
839 static int parse_vdiname(BDRVSheepdogState
*s
, const char *filename
,
840 char *vdi
, uint32_t *snapid
, char *tag
)
845 p
= q
= g_strdup(filename
);
847 /* count the number of separators */
857 /* use the first two tokens as hostname and port number. */
871 pstrcpy(vdi
, SD_MAX_VDI_LEN
, p
);
873 p
= strchr(vdi
, ':');
876 *snapid
= strtoul(p
, NULL
, 10);
878 pstrcpy(tag
, SD_MAX_VDI_TAG_LEN
, p
);
881 *snapid
= CURRENT_VDI_ID
; /* search current vdi */
884 if (s
->addr
== NULL
) {
891 static int find_vdi_name(BDRVSheepdogState
*s
, char *filename
, uint32_t snapid
,
892 char *tag
, uint32_t *vid
, int for_snapshot
)
896 SheepdogVdiRsp
*rsp
= (SheepdogVdiRsp
*)&hdr
;
897 unsigned int wlen
, rlen
= 0;
898 char buf
[SD_MAX_VDI_LEN
+ SD_MAX_VDI_TAG_LEN
];
900 fd
= connect_to_sdog(s
->addr
, s
->port
);
905 /* This pair of strncpy calls ensures that the buffer is zero-filled,
906 * which is desirable since we'll soon be sending those bytes, and
907 * don't want the send_req to read uninitialized data.
909 strncpy(buf
, filename
, SD_MAX_VDI_LEN
);
910 strncpy(buf
+ SD_MAX_VDI_LEN
, tag
, SD_MAX_VDI_TAG_LEN
);
912 memset(&hdr
, 0, sizeof(hdr
));
914 hdr
.opcode
= SD_OP_GET_VDI_INFO
;
916 hdr
.opcode
= SD_OP_LOCK_VDI
;
918 wlen
= SD_MAX_VDI_LEN
+ SD_MAX_VDI_TAG_LEN
;
919 hdr
.proto_ver
= SD_PROTO_VER
;
920 hdr
.data_length
= wlen
;
922 hdr
.flags
= SD_FLAG_CMD_WRITE
;
924 ret
= do_req(fd
, (SheepdogReq
*)&hdr
, buf
, &wlen
, &rlen
);
929 if (rsp
->result
!= SD_RES_SUCCESS
) {
930 error_report("cannot get vdi info, %s, %s %d %s",
931 sd_strerror(rsp
->result
), filename
, snapid
, tag
);
932 if (rsp
->result
== SD_RES_NO_VDI
) {
947 static int coroutine_fn
add_aio_request(BDRVSheepdogState
*s
, AIOReq
*aio_req
,
948 struct iovec
*iov
, int niov
, bool create
,
949 enum AIOCBState aiocb_type
)
951 int nr_copies
= s
->inode
.nr_copies
;
955 uint64_t oid
= aio_req
->oid
;
956 unsigned int datalen
= aio_req
->data_len
;
957 uint64_t offset
= aio_req
->offset
;
958 uint8_t flags
= aio_req
->flags
;
959 uint64_t old_oid
= aio_req
->base_oid
;
965 memset(&hdr
, 0, sizeof(hdr
));
967 if (aiocb_type
== AIOCB_READ_UDATA
) {
969 hdr
.opcode
= SD_OP_READ_OBJ
;
973 hdr
.opcode
= SD_OP_CREATE_AND_WRITE_OBJ
;
974 hdr
.flags
= SD_FLAG_CMD_WRITE
| flags
;
977 hdr
.opcode
= SD_OP_WRITE_OBJ
;
978 hdr
.flags
= SD_FLAG_CMD_WRITE
| flags
;
981 if (s
->cache_flags
) {
982 hdr
.flags
|= s
->cache_flags
;
986 hdr
.cow_oid
= old_oid
;
987 hdr
.copies
= s
->inode
.nr_copies
;
989 hdr
.data_length
= datalen
;
992 hdr
.id
= aio_req
->id
;
994 qemu_co_mutex_lock(&s
->lock
);
995 s
->co_send
= qemu_coroutine_self();
996 qemu_aio_set_fd_handler(s
->fd
, co_read_response
, co_write_request
,
997 aio_flush_request
, s
);
998 socket_set_cork(s
->fd
, 1);
1001 ret
= qemu_co_send(s
->fd
, &hdr
, sizeof(hdr
));
1003 qemu_co_mutex_unlock(&s
->lock
);
1004 error_report("failed to send a req, %s", strerror(errno
));
1009 ret
= qemu_co_sendv(s
->fd
, iov
, niov
, aio_req
->iov_offset
, wlen
);
1011 qemu_co_mutex_unlock(&s
->lock
);
1012 error_report("failed to send a data, %s", strerror(errno
));
1017 socket_set_cork(s
->fd
, 0);
1018 qemu_aio_set_fd_handler(s
->fd
, co_read_response
, NULL
,
1019 aio_flush_request
, s
);
1020 qemu_co_mutex_unlock(&s
->lock
);
1025 static int read_write_object(int fd
, char *buf
, uint64_t oid
, int copies
,
1026 unsigned int datalen
, uint64_t offset
,
1027 bool write
, bool create
, uint32_t cache_flags
)
1030 SheepdogObjRsp
*rsp
= (SheepdogObjRsp
*)&hdr
;
1031 unsigned int wlen
, rlen
;
1034 memset(&hdr
, 0, sizeof(hdr
));
1039 hdr
.flags
= SD_FLAG_CMD_WRITE
;
1041 hdr
.opcode
= SD_OP_CREATE_AND_WRITE_OBJ
;
1043 hdr
.opcode
= SD_OP_WRITE_OBJ
;
1048 hdr
.opcode
= SD_OP_READ_OBJ
;
1051 hdr
.flags
|= cache_flags
;
1054 hdr
.data_length
= datalen
;
1055 hdr
.offset
= offset
;
1056 hdr
.copies
= copies
;
1058 ret
= do_req(fd
, (SheepdogReq
*)&hdr
, buf
, &wlen
, &rlen
);
1060 error_report("failed to send a request to the sheep");
1064 switch (rsp
->result
) {
1065 case SD_RES_SUCCESS
:
1068 error_report("%s", sd_strerror(rsp
->result
));
1073 static int read_object(int fd
, char *buf
, uint64_t oid
, int copies
,
1074 unsigned int datalen
, uint64_t offset
,
1075 uint32_t cache_flags
)
1077 return read_write_object(fd
, buf
, oid
, copies
, datalen
, offset
, false,
1078 false, cache_flags
);
1081 static int write_object(int fd
, char *buf
, uint64_t oid
, int copies
,
1082 unsigned int datalen
, uint64_t offset
, bool create
,
1083 uint32_t cache_flags
)
1085 return read_write_object(fd
, buf
, oid
, copies
, datalen
, offset
, true,
1086 create
, cache_flags
);
1089 static int sd_open(BlockDriverState
*bs
, const char *filename
, int flags
)
1093 BDRVSheepdogState
*s
= bs
->opaque
;
1094 char vdi
[SD_MAX_VDI_LEN
], tag
[SD_MAX_VDI_TAG_LEN
];
1098 strstart(filename
, "sheepdog:", (const char **)&filename
);
1100 QLIST_INIT(&s
->inflight_aio_head
);
1101 QLIST_INIT(&s
->pending_aio_head
);
1104 memset(vdi
, 0, sizeof(vdi
));
1105 memset(tag
, 0, sizeof(tag
));
1106 if (parse_vdiname(s
, filename
, vdi
, &snapid
, tag
) < 0) {
1110 s
->fd
= get_sheep_fd(s
);
1116 ret
= find_vdi_name(s
, vdi
, snapid
, tag
, &vid
, 0);
1122 * QEMU block layer emulates writethrough cache as 'writeback + flush', so
1123 * we always set SD_FLAG_CMD_CACHE (writeback cache) as default.
1125 s
->cache_flags
= SD_FLAG_CMD_CACHE
;
1126 if (flags
& BDRV_O_NOCACHE
) {
1127 s
->cache_flags
= SD_FLAG_CMD_DIRECT
;
1130 if (s
->cache_flags
== SD_FLAG_CMD_CACHE
) {
1131 s
->flush_fd
= connect_to_sdog(s
->addr
, s
->port
);
1132 if (s
->flush_fd
< 0) {
1133 error_report("failed to connect");
1139 if (snapid
|| tag
[0] != '\0') {
1140 dprintf("%" PRIx32
" snapshot inode was open.\n", vid
);
1141 s
->is_snapshot
= true;
1144 fd
= connect_to_sdog(s
->addr
, s
->port
);
1146 error_report("failed to connect");
1151 buf
= g_malloc(SD_INODE_SIZE
);
1152 ret
= read_object(fd
, buf
, vid_to_vdi_oid(vid
), 0, SD_INODE_SIZE
, 0,
1161 memcpy(&s
->inode
, buf
, sizeof(s
->inode
));
1162 s
->min_dirty_data_idx
= UINT32_MAX
;
1163 s
->max_dirty_data_idx
= 0;
1165 bs
->total_sectors
= s
->inode
.vdi_size
/ SECTOR_SIZE
;
1166 pstrcpy(s
->name
, sizeof(s
->name
), vdi
);
1167 qemu_co_mutex_init(&s
->lock
);
1171 qemu_aio_set_fd_handler(s
->fd
, NULL
, NULL
, NULL
, NULL
);
1179 static int do_sd_create(char *filename
, int64_t vdi_size
,
1180 uint32_t base_vid
, uint32_t *vdi_id
, int snapshot
,
1181 const char *addr
, const char *port
)
1184 SheepdogVdiRsp
*rsp
= (SheepdogVdiRsp
*)&hdr
;
1186 unsigned int wlen
, rlen
= 0;
1187 char buf
[SD_MAX_VDI_LEN
];
1189 fd
= connect_to_sdog(addr
, port
);
1194 /* FIXME: would it be better to fail (e.g., return -EIO) when filename
1195 * does not fit in buf? For now, just truncate and avoid buffer overrun.
1197 memset(buf
, 0, sizeof(buf
));
1198 pstrcpy(buf
, sizeof(buf
), filename
);
1200 memset(&hdr
, 0, sizeof(hdr
));
1201 hdr
.opcode
= SD_OP_NEW_VDI
;
1202 hdr
.base_vdi_id
= base_vid
;
1204 wlen
= SD_MAX_VDI_LEN
;
1206 hdr
.flags
= SD_FLAG_CMD_WRITE
;
1207 hdr
.snapid
= snapshot
;
1209 hdr
.data_length
= wlen
;
1210 hdr
.vdi_size
= vdi_size
;
1212 ret
= do_req(fd
, (SheepdogReq
*)&hdr
, buf
, &wlen
, &rlen
);
1220 if (rsp
->result
!= SD_RES_SUCCESS
) {
1221 error_report("%s, %s", sd_strerror(rsp
->result
), filename
);
1226 *vdi_id
= rsp
->vdi_id
;
1232 static int sd_prealloc(const char *filename
)
1234 BlockDriverState
*bs
= NULL
;
1235 uint32_t idx
, max_idx
;
1237 void *buf
= g_malloc0(SD_DATA_OBJ_SIZE
);
1240 ret
= bdrv_file_open(&bs
, filename
, BDRV_O_RDWR
);
1245 vdi_size
= bdrv_getlength(bs
);
1250 max_idx
= DIV_ROUND_UP(vdi_size
, SD_DATA_OBJ_SIZE
);
1252 for (idx
= 0; idx
< max_idx
; idx
++) {
1254 * The created image can be a cloned image, so we need to read
1255 * a data from the source image.
1257 ret
= bdrv_pread(bs
, idx
* SD_DATA_OBJ_SIZE
, buf
, SD_DATA_OBJ_SIZE
);
1261 ret
= bdrv_pwrite(bs
, idx
* SD_DATA_OBJ_SIZE
, buf
, SD_DATA_OBJ_SIZE
);
1275 static int sd_create(const char *filename
, QEMUOptionParameter
*options
)
1278 uint32_t vid
= 0, base_vid
= 0;
1279 int64_t vdi_size
= 0;
1280 char *backing_file
= NULL
;
1281 BDRVSheepdogState
*s
;
1282 char vdi
[SD_MAX_VDI_LEN
], tag
[SD_MAX_VDI_TAG_LEN
];
1284 bool prealloc
= false;
1285 const char *vdiname
;
1287 s
= g_malloc0(sizeof(BDRVSheepdogState
));
1289 strstart(filename
, "sheepdog:", &vdiname
);
1291 memset(vdi
, 0, sizeof(vdi
));
1292 memset(tag
, 0, sizeof(tag
));
1293 if (parse_vdiname(s
, vdiname
, vdi
, &snapid
, tag
) < 0) {
1294 error_report("invalid filename");
1299 while (options
&& options
->name
) {
1300 if (!strcmp(options
->name
, BLOCK_OPT_SIZE
)) {
1301 vdi_size
= options
->value
.n
;
1302 } else if (!strcmp(options
->name
, BLOCK_OPT_BACKING_FILE
)) {
1303 backing_file
= options
->value
.s
;
1304 } else if (!strcmp(options
->name
, BLOCK_OPT_PREALLOC
)) {
1305 if (!options
->value
.s
|| !strcmp(options
->value
.s
, "off")) {
1307 } else if (!strcmp(options
->value
.s
, "full")) {
1310 error_report("Invalid preallocation mode: '%s'",
1319 if (vdi_size
> SD_MAX_VDI_SIZE
) {
1320 error_report("too big image size");
1326 BlockDriverState
*bs
;
1327 BDRVSheepdogState
*s
;
1330 /* Currently, only Sheepdog backing image is supported. */
1331 drv
= bdrv_find_protocol(backing_file
);
1332 if (!drv
|| strcmp(drv
->protocol_name
, "sheepdog") != 0) {
1333 error_report("backing_file must be a sheepdog image");
1338 ret
= bdrv_file_open(&bs
, backing_file
, 0);
1345 if (!is_snapshot(&s
->inode
)) {
1346 error_report("cannot clone from a non snapshot vdi");
1352 base_vid
= s
->inode
.vdi_id
;
1356 ret
= do_sd_create(vdi
, vdi_size
, base_vid
, &vid
, 0, s
->addr
, s
->port
);
1357 if (!prealloc
|| ret
) {
1361 ret
= sd_prealloc(filename
);
1367 static void sd_close(BlockDriverState
*bs
)
1369 BDRVSheepdogState
*s
= bs
->opaque
;
1371 SheepdogVdiRsp
*rsp
= (SheepdogVdiRsp
*)&hdr
;
1372 unsigned int wlen
, rlen
= 0;
1375 dprintf("%s\n", s
->name
);
1377 fd
= connect_to_sdog(s
->addr
, s
->port
);
1382 memset(&hdr
, 0, sizeof(hdr
));
1384 hdr
.opcode
= SD_OP_RELEASE_VDI
;
1385 wlen
= strlen(s
->name
) + 1;
1386 hdr
.data_length
= wlen
;
1387 hdr
.flags
= SD_FLAG_CMD_WRITE
;
1389 ret
= do_req(fd
, (SheepdogReq
*)&hdr
, s
->name
, &wlen
, &rlen
);
1393 if (!ret
&& rsp
->result
!= SD_RES_SUCCESS
&&
1394 rsp
->result
!= SD_RES_VDI_NOT_LOCKED
) {
1395 error_report("%s, %s", sd_strerror(rsp
->result
), s
->name
);
1398 qemu_aio_set_fd_handler(s
->fd
, NULL
, NULL
, NULL
, NULL
);
1400 if (s
->cache_flags
) {
1401 closesocket(s
->flush_fd
);
1406 static int64_t sd_getlength(BlockDriverState
*bs
)
1408 BDRVSheepdogState
*s
= bs
->opaque
;
1410 return s
->inode
.vdi_size
;
1413 static int sd_truncate(BlockDriverState
*bs
, int64_t offset
)
1415 BDRVSheepdogState
*s
= bs
->opaque
;
1417 unsigned int datalen
;
1419 if (offset
< s
->inode
.vdi_size
) {
1420 error_report("shrinking is not supported");
1422 } else if (offset
> SD_MAX_VDI_SIZE
) {
1423 error_report("too big image size");
1427 fd
= connect_to_sdog(s
->addr
, s
->port
);
1432 /* we don't need to update entire object */
1433 datalen
= SD_INODE_SIZE
- sizeof(s
->inode
.data_vdi_id
);
1434 s
->inode
.vdi_size
= offset
;
1435 ret
= write_object(fd
, (char *)&s
->inode
, vid_to_vdi_oid(s
->inode
.vdi_id
),
1436 s
->inode
.nr_copies
, datalen
, 0, false, s
->cache_flags
);
1440 error_report("failed to update an inode.");
1447 * This function is called after writing data objects. If we need to
1448 * update metadata, this sends a write request to the vdi object.
1449 * Otherwise, this switches back to sd_co_readv/writev.
1451 static void coroutine_fn
sd_write_done(SheepdogAIOCB
*acb
)
1454 BDRVSheepdogState
*s
= acb
->common
.bs
->opaque
;
1457 uint32_t offset
, data_len
, mn
, mx
;
1459 mn
= s
->min_dirty_data_idx
;
1460 mx
= s
->max_dirty_data_idx
;
1462 /* we need to update the vdi object. */
1463 offset
= sizeof(s
->inode
) - sizeof(s
->inode
.data_vdi_id
) +
1464 mn
* sizeof(s
->inode
.data_vdi_id
[0]);
1465 data_len
= (mx
- mn
+ 1) * sizeof(s
->inode
.data_vdi_id
[0]);
1467 s
->min_dirty_data_idx
= UINT32_MAX
;
1468 s
->max_dirty_data_idx
= 0;
1470 iov
.iov_base
= &s
->inode
;
1471 iov
.iov_len
= sizeof(s
->inode
);
1472 aio_req
= alloc_aio_req(s
, acb
, vid_to_vdi_oid(s
->inode
.vdi_id
),
1473 data_len
, offset
, 0, 0, offset
);
1474 QLIST_INSERT_HEAD(&s
->inflight_aio_head
, aio_req
, aio_siblings
);
1475 ret
= add_aio_request(s
, aio_req
, &iov
, 1, false, AIOCB_WRITE_UDATA
);
1477 free_aio_req(s
, aio_req
);
1482 acb
->aio_done_func
= sd_finish_aiocb
;
1483 acb
->aiocb_type
= AIOCB_WRITE_UDATA
;
1487 sd_finish_aiocb(acb
);
1491 * Create a writable VDI from a snapshot
1493 static int sd_create_branch(BDRVSheepdogState
*s
)
1499 dprintf("%" PRIx32
" is snapshot.\n", s
->inode
.vdi_id
);
1501 buf
= g_malloc(SD_INODE_SIZE
);
1503 ret
= do_sd_create(s
->name
, s
->inode
.vdi_size
, s
->inode
.vdi_id
, &vid
, 1,
1509 dprintf("%" PRIx32
" is created.\n", vid
);
1511 fd
= connect_to_sdog(s
->addr
, s
->port
);
1513 error_report("failed to connect");
1518 ret
= read_object(fd
, buf
, vid_to_vdi_oid(vid
), s
->inode
.nr_copies
,
1519 SD_INODE_SIZE
, 0, s
->cache_flags
);
1527 memcpy(&s
->inode
, buf
, sizeof(s
->inode
));
1529 s
->is_snapshot
= false;
1531 dprintf("%" PRIx32
" was newly created.\n", s
->inode
.vdi_id
);
1540 * Send I/O requests to the server.
1542 * This function sends requests to the server, links the requests to
1543 * the inflight_list in BDRVSheepdogState, and exits without
1544 * waiting the response. The responses are received in the
1545 * `aio_read_response' function which is called from the main loop as
1548 * Returns 1 when we need to wait a response, 0 when there is no sent
1549 * request and -errno in error cases.
1551 static int coroutine_fn
sd_co_rw_vector(void *p
)
1553 SheepdogAIOCB
*acb
= p
;
1555 unsigned long len
, done
= 0, total
= acb
->nb_sectors
* SECTOR_SIZE
;
1556 unsigned long idx
= acb
->sector_num
* SECTOR_SIZE
/ SD_DATA_OBJ_SIZE
;
1558 uint64_t offset
= (acb
->sector_num
* SECTOR_SIZE
) % SD_DATA_OBJ_SIZE
;
1559 BDRVSheepdogState
*s
= acb
->common
.bs
->opaque
;
1560 SheepdogInode
*inode
= &s
->inode
;
1563 if (acb
->aiocb_type
== AIOCB_WRITE_UDATA
&& s
->is_snapshot
) {
1565 * In the case we open the snapshot VDI, Sheepdog creates the
1566 * writable VDI when we do a write operation first.
1568 ret
= sd_create_branch(s
);
1576 * Make sure we don't free the aiocb before we are done with all requests.
1577 * This additional reference is dropped at the end of this function.
1581 while (done
!= total
) {
1583 uint64_t old_oid
= 0;
1584 bool create
= false;
1586 oid
= vid_to_data_oid(inode
->data_vdi_id
[idx
], idx
);
1588 len
= MIN(total
- done
, SD_DATA_OBJ_SIZE
- offset
);
1590 switch (acb
->aiocb_type
) {
1591 case AIOCB_READ_UDATA
:
1592 if (!inode
->data_vdi_id
[idx
]) {
1593 qemu_iovec_memset(acb
->qiov
, done
, 0, len
);
1597 case AIOCB_WRITE_UDATA
:
1598 if (!inode
->data_vdi_id
[idx
]) {
1600 } else if (!is_data_obj_writable(inode
, idx
)) {
1604 flags
= SD_FLAG_CMD_COW
;
1612 dprintf("update ino (%" PRIu32
") %" PRIu64
" %" PRIu64
" %ld\n",
1614 vid_to_data_oid(inode
->data_vdi_id
[idx
], idx
), idx
);
1615 oid
= vid_to_data_oid(inode
->vdi_id
, idx
);
1616 dprintf("new oid %" PRIx64
"\n", oid
);
1619 aio_req
= alloc_aio_req(s
, acb
, oid
, len
, offset
, flags
, old_oid
, done
);
1623 QLIST_FOREACH(areq
, &s
->inflight_aio_head
, aio_siblings
) {
1624 if (areq
->oid
== oid
) {
1626 * Sheepdog cannot handle simultaneous create
1627 * requests to the same object. So we cannot send
1628 * the request until the previous request
1632 aio_req
->base_oid
= 0;
1633 QLIST_INSERT_HEAD(&s
->pending_aio_head
, aio_req
,
1640 QLIST_INSERT_HEAD(&s
->inflight_aio_head
, aio_req
, aio_siblings
);
1641 ret
= add_aio_request(s
, aio_req
, acb
->qiov
->iov
, acb
->qiov
->niov
,
1642 create
, acb
->aiocb_type
);
1644 error_report("add_aio_request is failed");
1645 free_aio_req(s
, aio_req
);
1655 if (!--acb
->nr_pending
) {
1661 static coroutine_fn
int sd_co_writev(BlockDriverState
*bs
, int64_t sector_num
,
1662 int nb_sectors
, QEMUIOVector
*qiov
)
1667 if (bs
->growable
&& sector_num
+ nb_sectors
> bs
->total_sectors
) {
1668 ret
= sd_truncate(bs
, (sector_num
+ nb_sectors
) * SECTOR_SIZE
);
1672 bs
->total_sectors
= sector_num
+ nb_sectors
;
1675 acb
= sd_aio_setup(bs
, qiov
, sector_num
, nb_sectors
, NULL
, NULL
);
1676 acb
->aio_done_func
= sd_write_done
;
1677 acb
->aiocb_type
= AIOCB_WRITE_UDATA
;
1679 ret
= sd_co_rw_vector(acb
);
1681 qemu_aio_release(acb
);
1685 qemu_coroutine_yield();
1690 static coroutine_fn
int sd_co_readv(BlockDriverState
*bs
, int64_t sector_num
,
1691 int nb_sectors
, QEMUIOVector
*qiov
)
1696 acb
= sd_aio_setup(bs
, qiov
, sector_num
, nb_sectors
, NULL
, NULL
);
1697 acb
->aiocb_type
= AIOCB_READ_UDATA
;
1698 acb
->aio_done_func
= sd_finish_aiocb
;
1700 ret
= sd_co_rw_vector(acb
);
1702 qemu_aio_release(acb
);
1706 qemu_coroutine_yield();
1711 static int coroutine_fn
sd_co_flush_to_disk(BlockDriverState
*bs
)
1713 BDRVSheepdogState
*s
= bs
->opaque
;
1714 SheepdogObjReq hdr
= { 0 };
1715 SheepdogObjRsp
*rsp
= (SheepdogObjRsp
*)&hdr
;
1716 SheepdogInode
*inode
= &s
->inode
;
1718 unsigned int wlen
= 0, rlen
= 0;
1720 if (s
->cache_flags
!= SD_FLAG_CMD_CACHE
) {
1724 hdr
.opcode
= SD_OP_FLUSH_VDI
;
1725 hdr
.oid
= vid_to_vdi_oid(inode
->vdi_id
);
1727 ret
= do_req(s
->flush_fd
, (SheepdogReq
*)&hdr
, NULL
, &wlen
, &rlen
);
1729 error_report("failed to send a request to the sheep");
1733 if (rsp
->result
== SD_RES_INVALID_PARMS
) {
1734 dprintf("disable write cache since the server doesn't support it\n");
1736 s
->cache_flags
= SD_FLAG_CMD_DIRECT
;
1737 closesocket(s
->flush_fd
);
1741 if (rsp
->result
!= SD_RES_SUCCESS
) {
1742 error_report("%s", sd_strerror(rsp
->result
));
1749 static int sd_snapshot_create(BlockDriverState
*bs
, QEMUSnapshotInfo
*sn_info
)
1751 BDRVSheepdogState
*s
= bs
->opaque
;
1754 SheepdogInode
*inode
;
1755 unsigned int datalen
;
1757 dprintf("sn_info: name %s id_str %s s: name %s vm_state_size %" PRId64
" "
1758 "is_snapshot %d\n", sn_info
->name
, sn_info
->id_str
,
1759 s
->name
, sn_info
->vm_state_size
, s
->is_snapshot
);
1761 if (s
->is_snapshot
) {
1762 error_report("You can't create a snapshot of a snapshot VDI, "
1763 "%s (%" PRIu32
").", s
->name
, s
->inode
.vdi_id
);
1768 dprintf("%s %s\n", sn_info
->name
, sn_info
->id_str
);
1770 s
->inode
.vm_state_size
= sn_info
->vm_state_size
;
1771 s
->inode
.vm_clock_nsec
= sn_info
->vm_clock_nsec
;
1772 /* It appears that inode.tag does not require a NUL terminator,
1773 * which means this use of strncpy is ok.
1775 strncpy(s
->inode
.tag
, sn_info
->name
, sizeof(s
->inode
.tag
));
1776 /* we don't need to update entire object */
1777 datalen
= SD_INODE_SIZE
- sizeof(s
->inode
.data_vdi_id
);
1779 /* refresh inode. */
1780 fd
= connect_to_sdog(s
->addr
, s
->port
);
1786 ret
= write_object(fd
, (char *)&s
->inode
, vid_to_vdi_oid(s
->inode
.vdi_id
),
1787 s
->inode
.nr_copies
, datalen
, 0, false, s
->cache_flags
);
1789 error_report("failed to write snapshot's inode.");
1793 ret
= do_sd_create(s
->name
, s
->inode
.vdi_size
, s
->inode
.vdi_id
, &new_vid
, 1,
1796 error_report("failed to create inode for snapshot. %s",
1801 inode
= (SheepdogInode
*)g_malloc(datalen
);
1803 ret
= read_object(fd
, (char *)inode
, vid_to_vdi_oid(new_vid
),
1804 s
->inode
.nr_copies
, datalen
, 0, s
->cache_flags
);
1807 error_report("failed to read new inode info. %s", strerror(errno
));
1811 memcpy(&s
->inode
, inode
, datalen
);
1812 dprintf("s->inode: name %s snap_id %x oid %x\n",
1813 s
->inode
.name
, s
->inode
.snap_id
, s
->inode
.vdi_id
);
1820 static int sd_snapshot_goto(BlockDriverState
*bs
, const char *snapshot_id
)
1822 BDRVSheepdogState
*s
= bs
->opaque
;
1823 BDRVSheepdogState
*old_s
;
1824 char vdi
[SD_MAX_VDI_LEN
], tag
[SD_MAX_VDI_TAG_LEN
];
1827 uint32_t snapid
= 0;
1830 old_s
= g_malloc(sizeof(BDRVSheepdogState
));
1832 memcpy(old_s
, s
, sizeof(BDRVSheepdogState
));
1834 pstrcpy(vdi
, sizeof(vdi
), s
->name
);
1836 snapid
= strtoul(snapshot_id
, NULL
, 10);
1840 pstrcpy(tag
, sizeof(tag
), s
->name
);
1843 ret
= find_vdi_name(s
, vdi
, snapid
, tag
, &vid
, 1);
1845 error_report("Failed to find_vdi_name");
1849 fd
= connect_to_sdog(s
->addr
, s
->port
);
1851 error_report("failed to connect");
1856 buf
= g_malloc(SD_INODE_SIZE
);
1857 ret
= read_object(fd
, buf
, vid_to_vdi_oid(vid
), s
->inode
.nr_copies
,
1858 SD_INODE_SIZE
, 0, s
->cache_flags
);
1866 memcpy(&s
->inode
, buf
, sizeof(s
->inode
));
1868 if (!s
->inode
.vm_state_size
) {
1869 error_report("Invalid snapshot");
1874 s
->is_snapshot
= true;
1881 /* recover bdrv_sd_state */
1882 memcpy(s
, old_s
, sizeof(BDRVSheepdogState
));
1886 error_report("failed to open. recover old bdrv_sd_state.");
1891 static int sd_snapshot_delete(BlockDriverState
*bs
, const char *snapshot_id
)
1893 /* FIXME: Delete specified snapshot id. */
1897 static int sd_snapshot_list(BlockDriverState
*bs
, QEMUSnapshotInfo
**psn_tab
)
1899 BDRVSheepdogState
*s
= bs
->opaque
;
1901 int fd
, nr
= 1024, ret
, max
= BITS_TO_LONGS(SD_NR_VDIS
) * sizeof(long);
1902 QEMUSnapshotInfo
*sn_tab
= NULL
;
1903 unsigned wlen
, rlen
;
1905 static SheepdogInode inode
;
1906 unsigned long *vdi_inuse
;
1907 unsigned int start_nr
;
1911 vdi_inuse
= g_malloc(max
);
1913 fd
= connect_to_sdog(s
->addr
, s
->port
);
1922 memset(&req
, 0, sizeof(req
));
1924 req
.opcode
= SD_OP_READ_VDIS
;
1925 req
.data_length
= max
;
1927 ret
= do_req(fd
, (SheepdogReq
*)&req
, vdi_inuse
, &wlen
, &rlen
);
1934 sn_tab
= g_malloc0(nr
* sizeof(*sn_tab
));
1936 /* calculate a vdi id with hash function */
1937 hval
= fnv_64a_buf(s
->name
, strlen(s
->name
), FNV1A_64_INIT
);
1938 start_nr
= hval
& (SD_NR_VDIS
- 1);
1940 fd
= connect_to_sdog(s
->addr
, s
->port
);
1942 error_report("failed to connect");
1947 for (vid
= start_nr
; found
< nr
; vid
= (vid
+ 1) % SD_NR_VDIS
) {
1948 if (!test_bit(vid
, vdi_inuse
)) {
1952 /* we don't need to read entire object */
1953 ret
= read_object(fd
, (char *)&inode
, vid_to_vdi_oid(vid
),
1954 0, SD_INODE_SIZE
- sizeof(inode
.data_vdi_id
), 0,
1961 if (!strcmp(inode
.name
, s
->name
) && is_snapshot(&inode
)) {
1962 sn_tab
[found
].date_sec
= inode
.snap_ctime
>> 32;
1963 sn_tab
[found
].date_nsec
= inode
.snap_ctime
& 0xffffffff;
1964 sn_tab
[found
].vm_state_size
= inode
.vm_state_size
;
1965 sn_tab
[found
].vm_clock_nsec
= inode
.vm_clock_nsec
;
1967 snprintf(sn_tab
[found
].id_str
, sizeof(sn_tab
[found
].id_str
), "%u",
1969 pstrcpy(sn_tab
[found
].name
,
1970 MIN(sizeof(sn_tab
[found
].name
), sizeof(inode
.tag
)),
1989 static int do_load_save_vmstate(BDRVSheepdogState
*s
, uint8_t *data
,
1990 int64_t pos
, int size
, int load
)
1993 int fd
, ret
= 0, remaining
= size
;
1994 unsigned int data_len
;
1995 uint64_t vmstate_oid
;
1999 fd
= connect_to_sdog(s
->addr
, s
->port
);
2005 vdi_index
= pos
/ SD_DATA_OBJ_SIZE
;
2006 offset
= pos
% SD_DATA_OBJ_SIZE
;
2008 data_len
= MIN(remaining
, SD_DATA_OBJ_SIZE
- offset
);
2010 vmstate_oid
= vid_to_vmstate_oid(s
->inode
.vdi_id
, vdi_index
);
2012 create
= (offset
== 0);
2014 ret
= read_object(fd
, (char *)data
, vmstate_oid
,
2015 s
->inode
.nr_copies
, data_len
, offset
,
2018 ret
= write_object(fd
, (char *)data
, vmstate_oid
,
2019 s
->inode
.nr_copies
, data_len
, offset
, create
,
2024 error_report("failed to save vmstate %s", strerror(errno
));
2030 remaining
-= data_len
;
2038 static int sd_save_vmstate(BlockDriverState
*bs
, const uint8_t *data
,
2039 int64_t pos
, int size
)
2041 BDRVSheepdogState
*s
= bs
->opaque
;
2043 return do_load_save_vmstate(s
, (uint8_t *)data
, pos
, size
, 0);
2046 static int sd_load_vmstate(BlockDriverState
*bs
, uint8_t *data
,
2047 int64_t pos
, int size
)
2049 BDRVSheepdogState
*s
= bs
->opaque
;
2051 return do_load_save_vmstate(s
, data
, pos
, size
, 1);
2055 static QEMUOptionParameter sd_create_options
[] = {
2057 .name
= BLOCK_OPT_SIZE
,
2059 .help
= "Virtual disk size"
2062 .name
= BLOCK_OPT_BACKING_FILE
,
2064 .help
= "File name of a base image"
2067 .name
= BLOCK_OPT_PREALLOC
,
2069 .help
= "Preallocation mode (allowed values: off, full)"
2074 BlockDriver bdrv_sheepdog
= {
2075 .format_name
= "sheepdog",
2076 .protocol_name
= "sheepdog",
2077 .instance_size
= sizeof(BDRVSheepdogState
),
2078 .bdrv_file_open
= sd_open
,
2079 .bdrv_close
= sd_close
,
2080 .bdrv_create
= sd_create
,
2081 .bdrv_getlength
= sd_getlength
,
2082 .bdrv_truncate
= sd_truncate
,
2084 .bdrv_co_readv
= sd_co_readv
,
2085 .bdrv_co_writev
= sd_co_writev
,
2086 .bdrv_co_flush_to_disk
= sd_co_flush_to_disk
,
2088 .bdrv_snapshot_create
= sd_snapshot_create
,
2089 .bdrv_snapshot_goto
= sd_snapshot_goto
,
2090 .bdrv_snapshot_delete
= sd_snapshot_delete
,
2091 .bdrv_snapshot_list
= sd_snapshot_list
,
2093 .bdrv_save_vmstate
= sd_save_vmstate
,
2094 .bdrv_load_vmstate
= sd_load_vmstate
,
2096 .create_options
= sd_create_options
,
2099 static void bdrv_sheepdog_init(void)
2101 bdrv_register(&bdrv_sheepdog
);
2103 block_init(bdrv_sheepdog_init
);