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/>.
12 #include "qemu-common.h"
13 #include "qemu-error.h"
14 #include "qemu_socket.h"
15 #include "block_int.h"
17 #define SD_PROTO_VER 0x01
19 #define SD_DEFAULT_ADDR "localhost"
20 #define SD_DEFAULT_PORT "7000"
22 #define SD_OP_CREATE_AND_WRITE_OBJ 0x01
23 #define SD_OP_READ_OBJ 0x02
24 #define SD_OP_WRITE_OBJ 0x03
26 #define SD_OP_NEW_VDI 0x11
27 #define SD_OP_LOCK_VDI 0x12
28 #define SD_OP_RELEASE_VDI 0x13
29 #define SD_OP_GET_VDI_INFO 0x14
30 #define SD_OP_READ_VDIS 0x15
32 #define SD_FLAG_CMD_WRITE 0x01
33 #define SD_FLAG_CMD_COW 0x02
35 #define SD_RES_SUCCESS 0x00 /* Success */
36 #define SD_RES_UNKNOWN 0x01 /* Unknown error */
37 #define SD_RES_NO_OBJ 0x02 /* No object found */
38 #define SD_RES_EIO 0x03 /* I/O error */
39 #define SD_RES_VDI_EXIST 0x04 /* Vdi exists already */
40 #define SD_RES_INVALID_PARMS 0x05 /* Invalid parameters */
41 #define SD_RES_SYSTEM_ERROR 0x06 /* System error */
42 #define SD_RES_VDI_LOCKED 0x07 /* Vdi is locked */
43 #define SD_RES_NO_VDI 0x08 /* No vdi found */
44 #define SD_RES_NO_BASE_VDI 0x09 /* No base vdi found */
45 #define SD_RES_VDI_READ 0x0A /* Cannot read requested vdi */
46 #define SD_RES_VDI_WRITE 0x0B /* Cannot write requested vdi */
47 #define SD_RES_BASE_VDI_READ 0x0C /* Cannot read base vdi */
48 #define SD_RES_BASE_VDI_WRITE 0x0D /* Cannot write base vdi */
49 #define SD_RES_NO_TAG 0x0E /* Requested tag is not found */
50 #define SD_RES_STARTUP 0x0F /* Sheepdog is on starting up */
51 #define SD_RES_VDI_NOT_LOCKED 0x10 /* Vdi is not locked */
52 #define SD_RES_SHUTDOWN 0x11 /* Sheepdog is shutting down */
53 #define SD_RES_NO_MEM 0x12 /* Cannot allocate memory */
54 #define SD_RES_FULL_VDI 0x13 /* we already have the maximum vdis */
55 #define SD_RES_VER_MISMATCH 0x14 /* Protocol version mismatch */
56 #define SD_RES_NO_SPACE 0x15 /* Server has no room for new objects */
57 #define SD_RES_WAIT_FOR_FORMAT 0x16 /* Waiting for a format operation */
58 #define SD_RES_WAIT_FOR_JOIN 0x17 /* Waiting for other nodes joining */
59 #define SD_RES_JOIN_FAILED 0x18 /* Target node had failed to join sheepdog */
64 * 0 - 19 (20 bits): data object space
65 * 20 - 31 (12 bits): reserved data object space
66 * 32 - 55 (24 bits): vdi object space
67 * 56 - 59 ( 4 bits): reserved vdi object space
68 * 60 - 63 ( 4 bits): object type indentifier space
71 #define VDI_SPACE_SHIFT 32
72 #define VDI_BIT (UINT64_C(1) << 63)
73 #define VMSTATE_BIT (UINT64_C(1) << 62)
74 #define MAX_DATA_OBJS (UINT64_C(1) << 20)
75 #define MAX_CHILDREN 1024
76 #define SD_MAX_VDI_LEN 256
77 #define SD_MAX_VDI_TAG_LEN 256
78 #define SD_NR_VDIS (1U << 24)
79 #define SD_DATA_OBJ_SIZE (UINT64_C(1) << 22)
80 #define SD_MAX_VDI_SIZE (SD_DATA_OBJ_SIZE * MAX_DATA_OBJS)
81 #define SECTOR_SIZE 512
83 #define SD_INODE_SIZE (sizeof(SheepdogInode))
84 #define CURRENT_VDI_ID 0
86 typedef struct SheepdogReq
{
93 uint32_t opcode_specific
[8];
96 typedef struct SheepdogRsp
{
102 uint32_t data_length
;
104 uint32_t opcode_specific
[7];
107 typedef struct SheepdogObjReq
{
113 uint32_t data_length
;
121 typedef struct SheepdogObjRsp
{
127 uint32_t data_length
;
133 typedef struct SheepdogVdiReq
{
139 uint32_t data_length
;
141 uint32_t base_vdi_id
;
147 typedef struct SheepdogVdiRsp
{
153 uint32_t data_length
;
160 typedef struct SheepdogInode
{
161 char name
[SD_MAX_VDI_LEN
];
162 char tag
[SD_MAX_VDI_TAG_LEN
];
165 uint64_t vm_clock_nsec
;
167 uint64_t vm_state_size
;
168 uint16_t copy_policy
;
170 uint8_t block_size_shift
;
173 uint32_t parent_vdi_id
;
174 uint32_t child_vdi_id
[MAX_CHILDREN
];
175 uint32_t data_vdi_id
[MAX_DATA_OBJS
];
179 * 64 bit FNV-1a non-zero initial basis
181 #define FNV1A_64_INIT ((uint64_t)0xcbf29ce484222325ULL)
184 * 64 bit Fowler/Noll/Vo FNV-1a hash code
186 static inline uint64_t fnv_64a_buf(void *buf
, size_t len
, uint64_t hval
)
188 unsigned char *bp
= buf
;
189 unsigned char *be
= bp
+ len
;
191 hval
^= (uint64_t) *bp
++;
192 hval
+= (hval
<< 1) + (hval
<< 4) + (hval
<< 5) +
193 (hval
<< 7) + (hval
<< 8) + (hval
<< 40);
198 static inline int is_data_obj_writeable(SheepdogInode
*inode
, unsigned int idx
)
200 return inode
->vdi_id
== inode
->data_vdi_id
[idx
];
203 static inline int is_data_obj(uint64_t oid
)
205 return !(VDI_BIT
& oid
);
208 static inline uint64_t data_oid_to_idx(uint64_t oid
)
210 return oid
& (MAX_DATA_OBJS
- 1);
213 static inline uint64_t vid_to_vdi_oid(uint32_t vid
)
215 return VDI_BIT
| ((uint64_t)vid
<< VDI_SPACE_SHIFT
);
218 static inline uint64_t vid_to_vmstate_oid(uint32_t vid
, uint32_t idx
)
220 return VMSTATE_BIT
| ((uint64_t)vid
<< VDI_SPACE_SHIFT
) | idx
;
223 static inline uint64_t vid_to_data_oid(uint32_t vid
, uint32_t idx
)
225 return ((uint64_t)vid
<< VDI_SPACE_SHIFT
) | idx
;
228 static inline int is_snapshot(struct SheepdogInode
*inode
)
230 return !!inode
->snap_ctime
;
235 #define dprintf(fmt, args...) \
237 fprintf(stdout, "%s %d: " fmt, __func__, __LINE__, ##args); \
240 #define dprintf(fmt, args...)
243 typedef struct SheepdogAIOCB SheepdogAIOCB
;
245 typedef struct AIOReq
{
246 SheepdogAIOCB
*aiocb
;
247 unsigned int iov_offset
;
252 unsigned int data_len
;
256 QLIST_ENTRY(AIOReq
) outstanding_aio_siblings
;
257 QLIST_ENTRY(AIOReq
) aioreq_siblings
;
265 struct SheepdogAIOCB
{
266 BlockDriverAIOCB common
;
274 enum AIOCBState aiocb_type
;
277 void (*aio_done_func
)(SheepdogAIOCB
*);
281 QLIST_HEAD(aioreq_head
, AIOReq
) aioreq_head
;
284 typedef struct BDRVSheepdogState
{
287 uint32_t min_dirty_data_idx
;
288 uint32_t max_dirty_data_idx
;
290 char name
[SD_MAX_VDI_LEN
];
297 uint32_t aioreq_seq_num
;
298 QLIST_HEAD(outstanding_aio_head
, AIOReq
) outstanding_aio_head
;
301 static const char * sd_strerror(int err
)
305 static const struct {
309 {SD_RES_SUCCESS
, "Success"},
310 {SD_RES_UNKNOWN
, "Unknown error"},
311 {SD_RES_NO_OBJ
, "No object found"},
312 {SD_RES_EIO
, "I/O error"},
313 {SD_RES_VDI_EXIST
, "VDI exists already"},
314 {SD_RES_INVALID_PARMS
, "Invalid parameters"},
315 {SD_RES_SYSTEM_ERROR
, "System error"},
316 {SD_RES_VDI_LOCKED
, "VDI is already locked"},
317 {SD_RES_NO_VDI
, "No vdi found"},
318 {SD_RES_NO_BASE_VDI
, "No base VDI found"},
319 {SD_RES_VDI_READ
, "Failed read the requested VDI"},
320 {SD_RES_VDI_WRITE
, "Failed to write the requested VDI"},
321 {SD_RES_BASE_VDI_READ
, "Failed to read the base VDI"},
322 {SD_RES_BASE_VDI_WRITE
, "Failed to write the base VDI"},
323 {SD_RES_NO_TAG
, "Failed to find the requested tag"},
324 {SD_RES_STARTUP
, "The system is still booting"},
325 {SD_RES_VDI_NOT_LOCKED
, "VDI isn't locked"},
326 {SD_RES_SHUTDOWN
, "The system is shutting down"},
327 {SD_RES_NO_MEM
, "Out of memory on the server"},
328 {SD_RES_FULL_VDI
, "We already have the maximum vdis"},
329 {SD_RES_VER_MISMATCH
, "Protocol version mismatch"},
330 {SD_RES_NO_SPACE
, "Server has no space for new objects"},
331 {SD_RES_WAIT_FOR_FORMAT
, "Sheepdog is waiting for a format operation"},
332 {SD_RES_WAIT_FOR_JOIN
, "Sheepdog is waiting for other nodes joining"},
333 {SD_RES_JOIN_FAILED
, "Target node had failed to join sheepdog"},
336 for (i
= 0; i
< ARRAY_SIZE(errors
); ++i
) {
337 if (errors
[i
].err
== err
) {
338 return errors
[i
].desc
;
342 return "Invalid error code";
346 * Sheepdog I/O handling:
348 * 1. In the sd_aio_readv/writev, read/write requests are added to the
349 * QEMU Bottom Halves.
351 * 2. In sd_readv_writev_bh_cb, the callbacks of BHs, we send the I/O
352 * requests to the server and link the requests to the
353 * outstanding_list in the BDRVSheepdogState. we exits the
354 * function without waiting for receiving the response.
356 * 3. We receive the response in aio_read_response, the fd handler to
357 * the sheepdog connection. If metadata update is needed, we send
358 * the write request to the vdi object in sd_write_done, the write
359 * completion function. The AIOCB callback is not called until all
360 * the requests belonging to the AIOCB are finished.
363 static inline AIOReq
*alloc_aio_req(BDRVSheepdogState
*s
, SheepdogAIOCB
*acb
,
364 uint64_t oid
, unsigned int data_len
,
365 uint64_t offset
, uint8_t flags
,
366 uint64_t base_oid
, unsigned int iov_offset
)
370 aio_req
= qemu_malloc(sizeof(*aio_req
));
371 aio_req
->aiocb
= acb
;
372 aio_req
->iov_offset
= iov_offset
;
374 aio_req
->base_oid
= base_oid
;
375 aio_req
->offset
= offset
;
376 aio_req
->data_len
= data_len
;
377 aio_req
->flags
= flags
;
378 aio_req
->id
= s
->aioreq_seq_num
++;
380 QLIST_INSERT_HEAD(&s
->outstanding_aio_head
, aio_req
,
381 outstanding_aio_siblings
);
382 QLIST_INSERT_HEAD(&acb
->aioreq_head
, aio_req
, aioreq_siblings
);
387 static inline int free_aio_req(BDRVSheepdogState
*s
, AIOReq
*aio_req
)
389 SheepdogAIOCB
*acb
= aio_req
->aiocb
;
390 QLIST_REMOVE(aio_req
, outstanding_aio_siblings
);
391 QLIST_REMOVE(aio_req
, aioreq_siblings
);
394 return !QLIST_EMPTY(&acb
->aioreq_head
);
397 static void sd_finish_aiocb(SheepdogAIOCB
*acb
)
399 if (!acb
->canceled
) {
400 acb
->common
.cb(acb
->common
.opaque
, acb
->ret
);
402 qemu_aio_release(acb
);
405 static void sd_aio_cancel(BlockDriverAIOCB
*blockacb
)
407 SheepdogAIOCB
*acb
= (SheepdogAIOCB
*)blockacb
;
410 * Sheepdog cannot cancel the requests which are already sent to
411 * the servers, so we just complete the request with -EIO here.
413 acb
->common
.cb(acb
->common
.opaque
, -EIO
);
417 static AIOPool sd_aio_pool
= {
418 .aiocb_size
= sizeof(SheepdogAIOCB
),
419 .cancel
= sd_aio_cancel
,
422 static SheepdogAIOCB
*sd_aio_setup(BlockDriverState
*bs
, QEMUIOVector
*qiov
,
423 int64_t sector_num
, int nb_sectors
,
424 BlockDriverCompletionFunc
*cb
, void *opaque
)
428 acb
= qemu_aio_get(&sd_aio_pool
, bs
, cb
, opaque
);
432 acb
->sector_num
= sector_num
;
433 acb
->nb_sectors
= nb_sectors
;
435 acb
->aio_done_func
= NULL
;
439 QLIST_INIT(&acb
->aioreq_head
);
443 static int sd_schedule_bh(QEMUBHFunc
*cb
, SheepdogAIOCB
*acb
)
446 error_report("bug: %d %d\n", acb
->aiocb_type
, acb
->aiocb_type
);
450 acb
->bh
= qemu_bh_new(cb
, acb
);
452 error_report("oom: %d %d\n", acb
->aiocb_type
, acb
->aiocb_type
);
456 qemu_bh_schedule(acb
->bh
);
464 struct iovec
*msg_iov
;
468 static ssize_t
sendmsg(int s
, const struct msghdr
*msg
, int flags
)
474 /* count the msg size */
475 for (i
= 0; i
< msg
->msg_iovlen
; i
++) {
476 size
+= msg
->msg_iov
[i
].iov_len
;
478 buf
= qemu_malloc(size
);
481 for (i
= 0; i
< msg
->msg_iovlen
; i
++) {
482 memcpy(p
, msg
->msg_iov
[i
].iov_base
, msg
->msg_iov
[i
].iov_len
);
483 p
+= msg
->msg_iov
[i
].iov_len
;
486 ret
= send(s
, buf
, size
, flags
);
492 static ssize_t
recvmsg(int s
, struct msghdr
*msg
, int flags
)
498 /* count the msg size */
499 for (i
= 0; i
< msg
->msg_iovlen
; i
++) {
500 size
+= msg
->msg_iov
[i
].iov_len
;
502 buf
= qemu_malloc(size
);
504 ret
= recv(s
, buf
, size
, flags
);
510 for (i
= 0; i
< msg
->msg_iovlen
; i
++) {
511 memcpy(msg
->msg_iov
[i
].iov_base
, p
, msg
->msg_iov
[i
].iov_len
);
512 p
+= msg
->msg_iov
[i
].iov_len
;
522 * Send/recv data with iovec buffers
524 * This function send/recv data from/to the iovec buffer directly.
525 * The first `offset' bytes in the iovec buffer are skipped and next
526 * `len' bytes are used.
530 * do_send_recv(sockfd, iov, len, offset, 1);
534 * char *buf = malloc(size);
535 * iov_to_buf(iov, iovcnt, buf, offset, size);
536 * send(sockfd, buf, size, 0);
539 static int do_send_recv(int sockfd
, struct iovec
*iov
, int len
, int offset
,
545 memset(&msg
, 0, sizeof(msg
));
551 while (iov
->iov_len
< len
) {
558 diff
= iov
->iov_len
- len
;
559 iov
->iov_len
-= diff
;
561 while (msg
.msg_iov
->iov_len
<= offset
) {
562 offset
-= msg
.msg_iov
->iov_len
;
568 msg
.msg_iov
->iov_base
= (char *) msg
.msg_iov
->iov_base
+ offset
;
569 msg
.msg_iov
->iov_len
-= offset
;
572 ret
= sendmsg(sockfd
, &msg
, 0);
574 ret
= recvmsg(sockfd
, &msg
, 0);
577 msg
.msg_iov
->iov_base
= (char *) msg
.msg_iov
->iov_base
- offset
;
578 msg
.msg_iov
->iov_len
+= offset
;
580 iov
->iov_len
+= diff
;
584 static int connect_to_sdog(const char *addr
, const char *port
)
586 char hbuf
[NI_MAXHOST
], sbuf
[NI_MAXSERV
];
588 struct addrinfo hints
, *res
, *res0
;
591 addr
= SD_DEFAULT_ADDR
;
592 port
= SD_DEFAULT_PORT
;
595 memset(&hints
, 0, sizeof(hints
));
596 hints
.ai_socktype
= SOCK_STREAM
;
598 ret
= getaddrinfo(addr
, port
, &hints
, &res0
);
600 error_report("unable to get address info %s, %s\n",
601 addr
, strerror(errno
));
605 for (res
= res0
; res
; res
= res
->ai_next
) {
606 ret
= getnameinfo(res
->ai_addr
, res
->ai_addrlen
, hbuf
, sizeof(hbuf
),
607 sbuf
, sizeof(sbuf
), NI_NUMERICHOST
| NI_NUMERICSERV
);
612 fd
= socket(res
->ai_family
, res
->ai_socktype
, res
->ai_protocol
);
618 ret
= connect(fd
, res
->ai_addr
, res
->ai_addrlen
);
620 if (errno
== EINTR
) {
626 dprintf("connected to %s:%s\n", addr
, port
);
630 error_report("failed connect to %s:%s\n", addr
, port
);
636 static int do_readv_writev(int sockfd
, struct iovec
*iov
, int len
,
637 int iov_offset
, int write
)
641 ret
= do_send_recv(sockfd
, iov
, len
, iov_offset
, write
);
643 if (errno
== EINTR
|| errno
== EAGAIN
) {
646 error_report("failed to recv a rsp, %s\n", strerror(errno
));
659 static int do_readv(int sockfd
, struct iovec
*iov
, int len
, int iov_offset
)
661 return do_readv_writev(sockfd
, iov
, len
, iov_offset
, 0);
664 static int do_writev(int sockfd
, struct iovec
*iov
, int len
, int iov_offset
)
666 return do_readv_writev(sockfd
, iov
, len
, iov_offset
, 1);
669 static int do_read_write(int sockfd
, void *buf
, int len
, int write
)
676 return do_readv_writev(sockfd
, &iov
, len
, 0, write
);
679 static int do_read(int sockfd
, void *buf
, int len
)
681 return do_read_write(sockfd
, buf
, len
, 0);
684 static int do_write(int sockfd
, void *buf
, int len
)
686 return do_read_write(sockfd
, buf
, len
, 1);
689 static int send_req(int sockfd
, SheepdogReq
*hdr
, void *data
,
695 iov
[0].iov_base
= hdr
;
696 iov
[0].iov_len
= sizeof(*hdr
);
699 iov
[1].iov_base
= data
;
700 iov
[1].iov_len
= *wlen
;
703 ret
= do_writev(sockfd
, iov
, sizeof(*hdr
) + *wlen
, 0);
705 error_report("failed to send a req, %s\n", strerror(errno
));
712 static int do_req(int sockfd
, SheepdogReq
*hdr
, void *data
,
713 unsigned int *wlen
, unsigned int *rlen
)
717 ret
= send_req(sockfd
, hdr
, data
, wlen
);
723 ret
= do_read(sockfd
, hdr
, sizeof(*hdr
));
725 error_report("failed to get a rsp, %s\n", strerror(errno
));
730 if (*rlen
> hdr
->data_length
) {
731 *rlen
= hdr
->data_length
;
735 ret
= do_read(sockfd
, data
, *rlen
);
737 error_report("failed to get the data, %s\n", strerror(errno
));
747 static int add_aio_request(BDRVSheepdogState
*s
, AIOReq
*aio_req
,
748 struct iovec
*iov
, int niov
, int create
,
749 enum AIOCBState aiocb_type
);
752 * This function searchs pending requests to the object `oid', and
755 static void send_pending_req(BDRVSheepdogState
*s
, uint64_t oid
, uint32_t id
)
757 AIOReq
*aio_req
, *next
;
761 QLIST_FOREACH_SAFE(aio_req
, &s
->outstanding_aio_head
,
762 outstanding_aio_siblings
, next
) {
763 if (id
== aio_req
->id
) {
766 if (aio_req
->oid
!= oid
) {
770 acb
= aio_req
->aiocb
;
771 ret
= add_aio_request(s
, aio_req
, acb
->qiov
->iov
,
772 acb
->qiov
->niov
, 0, acb
->aiocb_type
);
774 error_report("add_aio_request is failed\n");
775 free_aio_req(s
, aio_req
);
776 if (QLIST_EMPTY(&acb
->aioreq_head
)) {
777 sd_finish_aiocb(acb
);
784 * Receive responses of the I/O requests.
786 * This function is registered as a fd handler, and called from the
787 * main loop when s->fd is ready for reading responses.
789 static void aio_read_response(void *opaque
)
792 BDRVSheepdogState
*s
= opaque
;
795 AIOReq
*aio_req
= NULL
;
800 if (QLIST_EMPTY(&s
->outstanding_aio_head
)) {
805 ret
= do_read(fd
, &rsp
, sizeof(rsp
));
807 error_report("failed to get the header, %s\n", strerror(errno
));
811 /* find the right aio_req from the outstanding_aio list */
812 QLIST_FOREACH(aio_req
, &s
->outstanding_aio_head
, outstanding_aio_siblings
) {
813 if (aio_req
->id
== rsp
.id
) {
818 error_report("cannot find aio_req %x\n", rsp
.id
);
822 acb
= aio_req
->aiocb
;
824 switch (acb
->aiocb_type
) {
825 case AIOCB_WRITE_UDATA
:
826 if (!is_data_obj(aio_req
->oid
)) {
829 idx
= data_oid_to_idx(aio_req
->oid
);
831 if (s
->inode
.data_vdi_id
[idx
] != s
->inode
.vdi_id
) {
833 * If the object is newly created one, we need to update
834 * the vdi object (metadata object). min_dirty_data_idx
835 * and max_dirty_data_idx are changed to include updated
836 * index between them.
838 s
->inode
.data_vdi_id
[idx
] = s
->inode
.vdi_id
;
839 s
->max_dirty_data_idx
= MAX(idx
, s
->max_dirty_data_idx
);
840 s
->min_dirty_data_idx
= MIN(idx
, s
->min_dirty_data_idx
);
843 * Some requests may be blocked because simultaneous
844 * create requests are not allowed, so we search the
845 * pending requests here.
847 send_pending_req(s
, vid_to_data_oid(s
->inode
.vdi_id
, idx
), rsp
.id
);
850 case AIOCB_READ_UDATA
:
851 ret
= do_readv(fd
, acb
->qiov
->iov
, rsp
.data_length
,
852 aio_req
->iov_offset
);
854 error_report("failed to get the data, %s\n", strerror(errno
));
860 if (rsp
.result
!= SD_RES_SUCCESS
) {
862 error_report("%s\n", sd_strerror(rsp
.result
));
865 rest
= free_aio_req(s
, aio_req
);
868 * We've finished all requests which belong to the AIOCB, so
869 * we can call the callback now.
871 acb
->aio_done_func(acb
);
875 static int aio_flush_request(void *opaque
)
877 BDRVSheepdogState
*s
= opaque
;
879 return !QLIST_EMPTY(&s
->outstanding_aio_head
);
882 #if !defined(SOL_TCP) || !defined(TCP_CORK)
884 static int set_cork(int fd
, int v
)
891 static int set_cork(int fd
, int v
)
893 return setsockopt(fd
, SOL_TCP
, TCP_CORK
, &v
, sizeof(v
));
898 static int set_nodelay(int fd
)
903 ret
= setsockopt(fd
, IPPROTO_TCP
, TCP_NODELAY
, (char *)&opt
, sizeof(opt
));
908 * Return a socket discriptor to read/write objects.
910 * We cannot use this discriptor for other operations because
911 * the block driver may be on waiting response from the server.
913 static int get_sheep_fd(BDRVSheepdogState
*s
)
917 fd
= connect_to_sdog(s
->addr
, s
->port
);
919 error_report("%s\n", strerror(errno
));
923 socket_set_nonblock(fd
);
925 ret
= set_nodelay(fd
);
927 error_report("%s\n", strerror(errno
));
932 qemu_aio_set_fd_handler(fd
, aio_read_response
, NULL
, aio_flush_request
,
940 * filename must be one of the following formats:
942 * 2. [vdiname]:[snapid]
944 * 4. [hostname]:[port]:[vdiname]
945 * 5. [hostname]:[port]:[vdiname]:[snapid]
946 * 6. [hostname]:[port]:[vdiname]:[tag]
948 * You can boot from the snapshot images by specifying `snapid` or
951 * You can run VMs outside the Sheepdog cluster by specifying
952 * `hostname' and `port' (experimental).
954 static int parse_vdiname(BDRVSheepdogState
*s
, const char *filename
,
955 char *vdi
, uint32_t *snapid
, char *tag
)
960 p
= q
= qemu_strdup(filename
);
962 /* count the number of separators */
972 /* use the first two tokens as hostname and port number. */
986 strncpy(vdi
, p
, SD_MAX_VDI_LEN
);
988 p
= strchr(vdi
, ':');
991 *snapid
= strtoul(p
, NULL
, 10);
993 strncpy(tag
, p
, SD_MAX_VDI_TAG_LEN
);
996 *snapid
= CURRENT_VDI_ID
; /* search current vdi */
999 if (s
->addr
== NULL
) {
1006 static int find_vdi_name(BDRVSheepdogState
*s
, char *filename
, uint32_t snapid
,
1007 char *tag
, uint32_t *vid
, int for_snapshot
)
1011 SheepdogVdiRsp
*rsp
= (SheepdogVdiRsp
*)&hdr
;
1012 unsigned int wlen
, rlen
= 0;
1013 char buf
[SD_MAX_VDI_LEN
+ SD_MAX_VDI_TAG_LEN
];
1015 fd
= connect_to_sdog(s
->addr
, s
->port
);
1020 memset(buf
, 0, sizeof(buf
));
1021 strncpy(buf
, filename
, SD_MAX_VDI_LEN
);
1022 strncpy(buf
+ SD_MAX_VDI_LEN
, tag
, SD_MAX_VDI_TAG_LEN
);
1024 memset(&hdr
, 0, sizeof(hdr
));
1026 hdr
.opcode
= SD_OP_GET_VDI_INFO
;
1028 hdr
.opcode
= SD_OP_LOCK_VDI
;
1030 wlen
= SD_MAX_VDI_LEN
+ SD_MAX_VDI_TAG_LEN
;
1031 hdr
.proto_ver
= SD_PROTO_VER
;
1032 hdr
.data_length
= wlen
;
1033 hdr
.snapid
= snapid
;
1034 hdr
.flags
= SD_FLAG_CMD_WRITE
;
1036 ret
= do_req(fd
, (SheepdogReq
*)&hdr
, buf
, &wlen
, &rlen
);
1042 if (rsp
->result
!= SD_RES_SUCCESS
) {
1043 error_report("cannot get vdi info, %s, %s %d %s\n",
1044 sd_strerror(rsp
->result
), filename
, snapid
, tag
);
1056 static int add_aio_request(BDRVSheepdogState
*s
, AIOReq
*aio_req
,
1057 struct iovec
*iov
, int niov
, int create
,
1058 enum AIOCBState aiocb_type
)
1060 int nr_copies
= s
->inode
.nr_copies
;
1064 uint64_t oid
= aio_req
->oid
;
1065 unsigned int datalen
= aio_req
->data_len
;
1066 uint64_t offset
= aio_req
->offset
;
1067 uint8_t flags
= aio_req
->flags
;
1068 uint64_t old_oid
= aio_req
->base_oid
;
1071 error_report("bug\n");
1074 memset(&hdr
, 0, sizeof(hdr
));
1076 if (aiocb_type
== AIOCB_READ_UDATA
) {
1078 hdr
.opcode
= SD_OP_READ_OBJ
;
1080 } else if (create
) {
1082 hdr
.opcode
= SD_OP_CREATE_AND_WRITE_OBJ
;
1083 hdr
.flags
= SD_FLAG_CMD_WRITE
| flags
;
1086 hdr
.opcode
= SD_OP_WRITE_OBJ
;
1087 hdr
.flags
= SD_FLAG_CMD_WRITE
| flags
;
1091 hdr
.cow_oid
= old_oid
;
1092 hdr
.copies
= s
->inode
.nr_copies
;
1094 hdr
.data_length
= datalen
;
1095 hdr
.offset
= offset
;
1097 hdr
.id
= aio_req
->id
;
1102 ret
= do_write(s
->fd
, &hdr
, sizeof(hdr
));
1104 error_report("failed to send a req, %s\n", strerror(errno
));
1109 ret
= do_writev(s
->fd
, iov
, wlen
, aio_req
->iov_offset
);
1111 error_report("failed to send a data, %s\n", strerror(errno
));
1121 static int read_write_object(int fd
, char *buf
, uint64_t oid
, int copies
,
1122 unsigned int datalen
, uint64_t offset
,
1123 int write
, int create
)
1126 SheepdogObjRsp
*rsp
= (SheepdogObjRsp
*)&hdr
;
1127 unsigned int wlen
, rlen
;
1130 memset(&hdr
, 0, sizeof(hdr
));
1135 hdr
.flags
= SD_FLAG_CMD_WRITE
;
1137 hdr
.opcode
= SD_OP_CREATE_AND_WRITE_OBJ
;
1139 hdr
.opcode
= SD_OP_WRITE_OBJ
;
1144 hdr
.opcode
= SD_OP_READ_OBJ
;
1147 hdr
.data_length
= datalen
;
1148 hdr
.offset
= offset
;
1149 hdr
.copies
= copies
;
1151 ret
= do_req(fd
, (SheepdogReq
*)&hdr
, buf
, &wlen
, &rlen
);
1153 error_report("failed to send a request to the sheep\n");
1157 switch (rsp
->result
) {
1158 case SD_RES_SUCCESS
:
1161 error_report("%s\n", sd_strerror(rsp
->result
));
1166 static int read_object(int fd
, char *buf
, uint64_t oid
, int copies
,
1167 unsigned int datalen
, uint64_t offset
)
1169 return read_write_object(fd
, buf
, oid
, copies
, datalen
, offset
, 0, 0);
1172 static int write_object(int fd
, char *buf
, uint64_t oid
, int copies
,
1173 unsigned int datalen
, uint64_t offset
, int create
)
1175 return read_write_object(fd
, buf
, oid
, copies
, datalen
, offset
, 1, create
);
1178 static int sd_open(BlockDriverState
*bs
, const char *filename
, int flags
)
1182 BDRVSheepdogState
*s
= bs
->opaque
;
1183 char vdi
[SD_MAX_VDI_LEN
], tag
[SD_MAX_VDI_TAG_LEN
];
1187 strstart(filename
, "sheepdog:", (const char **)&filename
);
1189 QLIST_INIT(&s
->outstanding_aio_head
);
1192 memset(vdi
, 0, sizeof(vdi
));
1193 memset(tag
, 0, sizeof(tag
));
1194 if (parse_vdiname(s
, filename
, vdi
, &snapid
, tag
) < 0) {
1197 s
->fd
= get_sheep_fd(s
);
1202 ret
= find_vdi_name(s
, vdi
, snapid
, tag
, &vid
, 0);
1208 dprintf("%" PRIx32
" snapshot inode was open.\n", vid
);
1212 fd
= connect_to_sdog(s
->addr
, s
->port
);
1214 error_report("failed to connect\n");
1218 buf
= qemu_malloc(SD_INODE_SIZE
);
1219 ret
= read_object(fd
, buf
, vid_to_vdi_oid(vid
), 0, SD_INODE_SIZE
, 0);
1227 memcpy(&s
->inode
, buf
, sizeof(s
->inode
));
1228 s
->min_dirty_data_idx
= UINT32_MAX
;
1229 s
->max_dirty_data_idx
= 0;
1231 bs
->total_sectors
= s
->inode
.vdi_size
/ SECTOR_SIZE
;
1232 strncpy(s
->name
, vdi
, sizeof(s
->name
));
1236 qemu_aio_set_fd_handler(s
->fd
, NULL
, NULL
, NULL
, NULL
, NULL
);
1244 static int do_sd_create(char *filename
, int64_t vdi_size
,
1245 uint32_t base_vid
, uint32_t *vdi_id
, int snapshot
,
1246 const char *addr
, const char *port
)
1249 SheepdogVdiRsp
*rsp
= (SheepdogVdiRsp
*)&hdr
;
1251 unsigned int wlen
, rlen
= 0;
1252 char buf
[SD_MAX_VDI_LEN
];
1254 fd
= connect_to_sdog(addr
, port
);
1259 memset(buf
, 0, sizeof(buf
));
1260 strncpy(buf
, filename
, SD_MAX_VDI_LEN
);
1262 memset(&hdr
, 0, sizeof(hdr
));
1263 hdr
.opcode
= SD_OP_NEW_VDI
;
1264 hdr
.base_vdi_id
= base_vid
;
1266 wlen
= SD_MAX_VDI_LEN
;
1268 hdr
.flags
= SD_FLAG_CMD_WRITE
;
1269 hdr
.snapid
= snapshot
;
1271 hdr
.data_length
= wlen
;
1272 hdr
.vdi_size
= vdi_size
;
1274 ret
= do_req(fd
, (SheepdogReq
*)&hdr
, buf
, &wlen
, &rlen
);
1282 if (rsp
->result
!= SD_RES_SUCCESS
) {
1283 error_report("%s, %s\n", sd_strerror(rsp
->result
), filename
);
1288 *vdi_id
= rsp
->vdi_id
;
1294 static int sd_create(const char *filename
, QEMUOptionParameter
*options
)
1298 int64_t vdi_size
= 0;
1299 char *backing_file
= NULL
;
1301 strstart(filename
, "sheepdog:", (const char **)&filename
);
1303 while (options
&& options
->name
) {
1304 if (!strcmp(options
->name
, BLOCK_OPT_SIZE
)) {
1305 vdi_size
= options
->value
.n
;
1306 } else if (!strcmp(options
->name
, BLOCK_OPT_BACKING_FILE
)) {
1307 backing_file
= options
->value
.s
;
1312 if (vdi_size
> SD_MAX_VDI_SIZE
) {
1313 error_report("too big image size\n");
1318 BlockDriverState
*bs
;
1319 BDRVSheepdogState
*s
;
1322 /* Currently, only Sheepdog backing image is supported. */
1323 drv
= bdrv_find_protocol(backing_file
);
1324 if (!drv
|| strcmp(drv
->protocol_name
, "sheepdog") != 0) {
1325 error_report("backing_file must be a sheepdog image\n");
1329 ret
= bdrv_file_open(&bs
, backing_file
, 0);
1335 if (!is_snapshot(&s
->inode
)) {
1336 error_report("cannot clone from a non snapshot vdi\n");
1341 vid
= s
->inode
.vdi_id
;
1345 return do_sd_create((char *)filename
, vdi_size
, vid
, NULL
, 0, NULL
, NULL
);
1348 static void sd_close(BlockDriverState
*bs
)
1350 BDRVSheepdogState
*s
= bs
->opaque
;
1352 SheepdogVdiRsp
*rsp
= (SheepdogVdiRsp
*)&hdr
;
1353 unsigned int wlen
, rlen
= 0;
1356 dprintf("%s\n", s
->name
);
1358 fd
= connect_to_sdog(s
->addr
, s
->port
);
1363 memset(&hdr
, 0, sizeof(hdr
));
1365 hdr
.opcode
= SD_OP_RELEASE_VDI
;
1366 wlen
= strlen(s
->name
) + 1;
1367 hdr
.data_length
= wlen
;
1368 hdr
.flags
= SD_FLAG_CMD_WRITE
;
1370 ret
= do_req(fd
, (SheepdogReq
*)&hdr
, s
->name
, &wlen
, &rlen
);
1374 if (!ret
&& rsp
->result
!= SD_RES_SUCCESS
&&
1375 rsp
->result
!= SD_RES_VDI_NOT_LOCKED
) {
1376 error_report("%s, %s\n", sd_strerror(rsp
->result
), s
->name
);
1379 qemu_aio_set_fd_handler(s
->fd
, NULL
, NULL
, NULL
, NULL
, NULL
);
1384 static int64_t sd_getlength(BlockDriverState
*bs
)
1386 BDRVSheepdogState
*s
= bs
->opaque
;
1388 return s
->inode
.vdi_size
;
1391 static int sd_truncate(BlockDriverState
*bs
, int64_t offset
)
1393 BDRVSheepdogState
*s
= bs
->opaque
;
1395 unsigned int datalen
;
1397 if (offset
< s
->inode
.vdi_size
) {
1398 error_report("shrinking is not supported\n");
1400 } else if (offset
> SD_MAX_VDI_SIZE
) {
1401 error_report("too big image size\n");
1405 fd
= connect_to_sdog(s
->addr
, s
->port
);
1410 /* we don't need to update entire object */
1411 datalen
= SD_INODE_SIZE
- sizeof(s
->inode
.data_vdi_id
);
1412 s
->inode
.vdi_size
= offset
;
1413 ret
= write_object(fd
, (char *)&s
->inode
, vid_to_vdi_oid(s
->inode
.vdi_id
),
1414 s
->inode
.nr_copies
, datalen
, 0, 0);
1418 error_report("failed to update an inode.\n");
1426 * This function is called after writing data objects. If we need to
1427 * update metadata, this sends a write request to the vdi object.
1428 * Otherwise, this calls the AIOCB callback.
1430 static void sd_write_done(SheepdogAIOCB
*acb
)
1433 BDRVSheepdogState
*s
= acb
->common
.bs
->opaque
;
1436 uint32_t offset
, data_len
, mn
, mx
;
1438 mn
= s
->min_dirty_data_idx
;
1439 mx
= s
->max_dirty_data_idx
;
1441 /* we need to update the vdi object. */
1442 offset
= sizeof(s
->inode
) - sizeof(s
->inode
.data_vdi_id
) +
1443 mn
* sizeof(s
->inode
.data_vdi_id
[0]);
1444 data_len
= (mx
- mn
+ 1) * sizeof(s
->inode
.data_vdi_id
[0]);
1446 s
->min_dirty_data_idx
= UINT32_MAX
;
1447 s
->max_dirty_data_idx
= 0;
1449 iov
.iov_base
= &s
->inode
;
1450 iov
.iov_len
= sizeof(s
->inode
);
1451 aio_req
= alloc_aio_req(s
, acb
, vid_to_vdi_oid(s
->inode
.vdi_id
),
1452 data_len
, offset
, 0, 0, offset
);
1453 ret
= add_aio_request(s
, aio_req
, &iov
, 1, 0, AIOCB_WRITE_UDATA
);
1455 free_aio_req(s
, aio_req
);
1460 acb
->aio_done_func
= sd_finish_aiocb
;
1461 acb
->aiocb_type
= AIOCB_WRITE_UDATA
;
1465 sd_finish_aiocb(acb
);
1469 * Create a writable VDI from a snapshot
1471 static int sd_create_branch(BDRVSheepdogState
*s
)
1477 dprintf("%" PRIx32
" is snapshot.\n", s
->inode
.vdi_id
);
1479 buf
= qemu_malloc(SD_INODE_SIZE
);
1481 ret
= do_sd_create(s
->name
, s
->inode
.vdi_size
, s
->inode
.vdi_id
, &vid
, 1,
1487 dprintf("%" PRIx32
" is created.\n", vid
);
1489 fd
= connect_to_sdog(s
->addr
, s
->port
);
1491 error_report("failed to connect\n");
1495 ret
= read_object(fd
, buf
, vid_to_vdi_oid(vid
), s
->inode
.nr_copies
,
1504 memcpy(&s
->inode
, buf
, sizeof(s
->inode
));
1508 dprintf("%" PRIx32
" was newly created.\n", s
->inode
.vdi_id
);
1517 * Send I/O requests to the server.
1519 * This function sends requests to the server, links the requests to
1520 * the outstanding_list in BDRVSheepdogState, and exits without
1521 * waiting the response. The responses are received in the
1522 * `aio_read_response' function which is called from the main loop as
1525 static void sd_readv_writev_bh_cb(void *p
)
1527 SheepdogAIOCB
*acb
= p
;
1529 unsigned long len
, done
= 0, total
= acb
->nb_sectors
* SECTOR_SIZE
;
1530 unsigned long idx
= acb
->sector_num
* SECTOR_SIZE
/ SD_DATA_OBJ_SIZE
;
1532 uint64_t offset
= (acb
->sector_num
* SECTOR_SIZE
) % SD_DATA_OBJ_SIZE
;
1533 BDRVSheepdogState
*s
= acb
->common
.bs
->opaque
;
1534 SheepdogInode
*inode
= &s
->inode
;
1537 qemu_bh_delete(acb
->bh
);
1540 if (acb
->aiocb_type
== AIOCB_WRITE_UDATA
&& s
->is_snapshot
) {
1542 * In the case we open the snapshot VDI, Sheepdog creates the
1543 * writable VDI when we do a write operation first.
1545 ret
= sd_create_branch(s
);
1552 while (done
!= total
) {
1554 uint64_t old_oid
= 0;
1557 oid
= vid_to_data_oid(inode
->data_vdi_id
[idx
], idx
);
1559 len
= MIN(total
- done
, SD_DATA_OBJ_SIZE
- offset
);
1561 if (!inode
->data_vdi_id
[idx
]) {
1562 if (acb
->aiocb_type
== AIOCB_READ_UDATA
) {
1567 } else if (acb
->aiocb_type
== AIOCB_WRITE_UDATA
1568 && !is_data_obj_writeable(inode
, idx
)) {
1572 flags
= SD_FLAG_CMD_COW
;
1576 dprintf("update ino (%" PRIu32
") %" PRIu64
" %" PRIu64
1577 " %" PRIu64
"\n", inode
->vdi_id
, oid
,
1578 vid_to_data_oid(inode
->data_vdi_id
[idx
], idx
), idx
);
1579 oid
= vid_to_data_oid(inode
->vdi_id
, idx
);
1580 dprintf("new oid %lx\n", oid
);
1583 aio_req
= alloc_aio_req(s
, acb
, oid
, len
, offset
, flags
, old_oid
, done
);
1587 QLIST_FOREACH(areq
, &s
->outstanding_aio_head
,
1588 outstanding_aio_siblings
) {
1589 if (areq
== aio_req
) {
1592 if (areq
->oid
== oid
) {
1594 * Sheepdog cannot handle simultaneous create
1595 * requests to the same object. So we cannot send
1596 * the request until the previous request
1600 aio_req
->base_oid
= 0;
1606 ret
= add_aio_request(s
, aio_req
, acb
->qiov
->iov
, acb
->qiov
->niov
,
1607 create
, acb
->aiocb_type
);
1609 error_report("add_aio_request is failed\n");
1610 free_aio_req(s
, aio_req
);
1620 if (QLIST_EMPTY(&acb
->aioreq_head
)) {
1621 sd_finish_aiocb(acb
);
1625 static BlockDriverAIOCB
*sd_aio_writev(BlockDriverState
*bs
, int64_t sector_num
,
1626 QEMUIOVector
*qiov
, int nb_sectors
,
1627 BlockDriverCompletionFunc
*cb
,
1632 if (bs
->growable
&& sector_num
+ nb_sectors
> bs
->total_sectors
) {
1633 /* TODO: shouldn't block here */
1634 if (sd_truncate(bs
, (sector_num
+ nb_sectors
) * SECTOR_SIZE
) < 0) {
1637 bs
->total_sectors
= sector_num
+ nb_sectors
;
1640 acb
= sd_aio_setup(bs
, qiov
, sector_num
, nb_sectors
, cb
, opaque
);
1641 acb
->aio_done_func
= sd_write_done
;
1642 acb
->aiocb_type
= AIOCB_WRITE_UDATA
;
1644 sd_schedule_bh(sd_readv_writev_bh_cb
, acb
);
1645 return &acb
->common
;
1648 static BlockDriverAIOCB
*sd_aio_readv(BlockDriverState
*bs
, int64_t sector_num
,
1649 QEMUIOVector
*qiov
, int nb_sectors
,
1650 BlockDriverCompletionFunc
*cb
,
1656 acb
= sd_aio_setup(bs
, qiov
, sector_num
, nb_sectors
, cb
, opaque
);
1657 acb
->aiocb_type
= AIOCB_READ_UDATA
;
1658 acb
->aio_done_func
= sd_finish_aiocb
;
1661 * TODO: we can do better; we don't need to initialize
1664 for (i
= 0; i
< qiov
->niov
; i
++) {
1665 memset(qiov
->iov
[i
].iov_base
, 0, qiov
->iov
[i
].iov_len
);
1668 sd_schedule_bh(sd_readv_writev_bh_cb
, acb
);
1669 return &acb
->common
;
1672 static int sd_snapshot_create(BlockDriverState
*bs
, QEMUSnapshotInfo
*sn_info
)
1674 BDRVSheepdogState
*s
= bs
->opaque
;
1677 SheepdogInode
*inode
;
1678 unsigned int datalen
;
1680 dprintf("sn_info: name %s id_str %s s: name %s vm_state_size %d "
1681 "is_snapshot %d\n", sn_info
->name
, sn_info
->id_str
,
1682 s
->name
, sn_info
->vm_state_size
, s
->is_snapshot
);
1684 if (s
->is_snapshot
) {
1685 error_report("You can't create a snapshot of a snapshot VDI, "
1686 "%s (%" PRIu32
").\n", s
->name
, s
->inode
.vdi_id
);
1691 dprintf("%s %s\n", sn_info
->name
, sn_info
->id_str
);
1693 s
->inode
.vm_state_size
= sn_info
->vm_state_size
;
1694 s
->inode
.vm_clock_nsec
= sn_info
->vm_clock_nsec
;
1695 strncpy(s
->inode
.tag
, sn_info
->name
, sizeof(s
->inode
.tag
));
1696 /* we don't need to update entire object */
1697 datalen
= SD_INODE_SIZE
- sizeof(s
->inode
.data_vdi_id
);
1699 /* refresh inode. */
1700 fd
= connect_to_sdog(s
->addr
, s
->port
);
1706 ret
= write_object(fd
, (char *)&s
->inode
, vid_to_vdi_oid(s
->inode
.vdi_id
),
1707 s
->inode
.nr_copies
, datalen
, 0, 0);
1709 error_report("failed to write snapshot's inode.\n");
1714 ret
= do_sd_create(s
->name
, s
->inode
.vdi_size
, s
->inode
.vdi_id
, &new_vid
, 1,
1717 error_report("failed to create inode for snapshot. %s\n",
1723 inode
= (SheepdogInode
*)qemu_malloc(datalen
);
1725 ret
= read_object(fd
, (char *)inode
, vid_to_vdi_oid(new_vid
),
1726 s
->inode
.nr_copies
, datalen
, 0);
1729 error_report("failed to read new inode info. %s\n", strerror(errno
));
1734 memcpy(&s
->inode
, inode
, datalen
);
1735 dprintf("s->inode: name %s snap_id %x oid %x\n",
1736 s
->inode
.name
, s
->inode
.snap_id
, s
->inode
.vdi_id
);
1743 static int sd_snapshot_goto(BlockDriverState
*bs
, const char *snapshot_id
)
1745 BDRVSheepdogState
*s
= bs
->opaque
;
1746 BDRVSheepdogState
*old_s
;
1747 char vdi
[SD_MAX_VDI_LEN
], tag
[SD_MAX_VDI_TAG_LEN
];
1750 uint32_t snapid
= 0;
1751 int ret
= -ENOENT
, fd
;
1753 old_s
= qemu_malloc(sizeof(BDRVSheepdogState
));
1755 memcpy(old_s
, s
, sizeof(BDRVSheepdogState
));
1757 memset(vdi
, 0, sizeof(vdi
));
1758 strncpy(vdi
, s
->name
, sizeof(vdi
));
1760 memset(tag
, 0, sizeof(tag
));
1761 snapid
= strtoul(snapshot_id
, NULL
, 10);
1763 strncpy(tag
, s
->name
, sizeof(tag
));
1766 ret
= find_vdi_name(s
, vdi
, snapid
, tag
, &vid
, 1);
1768 error_report("Failed to find_vdi_name\n");
1773 fd
= connect_to_sdog(s
->addr
, s
->port
);
1775 error_report("failed to connect\n");
1779 buf
= qemu_malloc(SD_INODE_SIZE
);
1780 ret
= read_object(fd
, buf
, vid_to_vdi_oid(vid
), s
->inode
.nr_copies
,
1790 memcpy(&s
->inode
, buf
, sizeof(s
->inode
));
1792 if (!s
->inode
.vm_state_size
) {
1793 error_report("Invalid snapshot\n");
1805 /* recover bdrv_sd_state */
1806 memcpy(s
, old_s
, sizeof(BDRVSheepdogState
));
1810 error_report("failed to open. recover old bdrv_sd_state.\n");
1815 static int sd_snapshot_delete(BlockDriverState
*bs
, const char *snapshot_id
)
1817 /* FIXME: Delete specified snapshot id. */
1821 #define DIV_ROUND_UP(n,d) (((n) + (d) - 1) / (d))
1822 #define BITS_PER_BYTE 8
1823 #define BITS_TO_LONGS(nr) DIV_ROUND_UP(nr, BITS_PER_BYTE * sizeof(long))
1824 #define DECLARE_BITMAP(name,bits) \
1825 unsigned long name[BITS_TO_LONGS(bits)]
1827 #define BITS_PER_LONG (BITS_PER_BYTE * sizeof(long))
1829 static inline int test_bit(unsigned int nr
, const unsigned long *addr
)
1831 return ((1UL << (nr
% BITS_PER_LONG
)) &
1832 (((unsigned long *)addr
)[nr
/ BITS_PER_LONG
])) != 0;
1835 static int sd_snapshot_list(BlockDriverState
*bs
, QEMUSnapshotInfo
**psn_tab
)
1837 BDRVSheepdogState
*s
= bs
->opaque
;
1839 int fd
, nr
= 1024, ret
, max
= BITS_TO_LONGS(SD_NR_VDIS
) * sizeof(long);
1840 QEMUSnapshotInfo
*sn_tab
= NULL
;
1841 unsigned wlen
, rlen
;
1843 static SheepdogInode inode
;
1844 unsigned long *vdi_inuse
;
1845 unsigned int start_nr
;
1849 vdi_inuse
= qemu_malloc(max
);
1851 fd
= connect_to_sdog(s
->addr
, s
->port
);
1859 memset(&req
, 0, sizeof(req
));
1861 req
.opcode
= SD_OP_READ_VDIS
;
1862 req
.data_length
= max
;
1864 ret
= do_req(fd
, (SheepdogReq
*)&req
, vdi_inuse
, &wlen
, &rlen
);
1871 sn_tab
= qemu_mallocz(nr
* sizeof(*sn_tab
));
1873 /* calculate a vdi id with hash function */
1874 hval
= fnv_64a_buf(s
->name
, strlen(s
->name
), FNV1A_64_INIT
);
1875 start_nr
= hval
& (SD_NR_VDIS
- 1);
1877 fd
= connect_to_sdog(s
->addr
, s
->port
);
1879 error_report("failed to connect\n");
1883 for (vid
= start_nr
; found
< nr
; vid
= (vid
+ 1) % SD_NR_VDIS
) {
1884 if (!test_bit(vid
, vdi_inuse
)) {
1888 /* we don't need to read entire object */
1889 ret
= read_object(fd
, (char *)&inode
, vid_to_vdi_oid(vid
),
1890 0, SD_INODE_SIZE
- sizeof(inode
.data_vdi_id
), 0);
1896 if (!strcmp(inode
.name
, s
->name
) && is_snapshot(&inode
)) {
1897 sn_tab
[found
].date_sec
= inode
.snap_ctime
>> 32;
1898 sn_tab
[found
].date_nsec
= inode
.snap_ctime
& 0xffffffff;
1899 sn_tab
[found
].vm_state_size
= inode
.vm_state_size
;
1900 sn_tab
[found
].vm_clock_nsec
= inode
.vm_clock_nsec
;
1902 snprintf(sn_tab
[found
].id_str
, sizeof(sn_tab
[found
].id_str
), "%u",
1904 strncpy(sn_tab
[found
].name
, inode
.tag
,
1905 MIN(sizeof(sn_tab
[found
].name
), sizeof(inode
.tag
)));
1914 qemu_free(vdi_inuse
);
1919 static int do_load_save_vmstate(BDRVSheepdogState
*s
, uint8_t *data
,
1920 int64_t pos
, int size
, int load
)
1924 unsigned int data_len
;
1925 uint64_t vmstate_oid
;
1929 fd
= connect_to_sdog(s
->addr
, s
->port
);
1936 vdi_index
= pos
/ SD_DATA_OBJ_SIZE
;
1937 offset
= pos
% SD_DATA_OBJ_SIZE
;
1939 data_len
= MIN(size
, SD_DATA_OBJ_SIZE
);
1941 vmstate_oid
= vid_to_vmstate_oid(s
->inode
.vdi_id
, vdi_index
);
1943 create
= (offset
== 0);
1945 ret
= read_object(fd
, (char *)data
, vmstate_oid
,
1946 s
->inode
.nr_copies
, data_len
, offset
);
1948 ret
= write_object(fd
, (char *)data
, vmstate_oid
,
1949 s
->inode
.nr_copies
, data_len
, offset
, create
);
1953 error_report("failed to save vmstate %s\n", strerror(errno
));
1967 static int sd_save_vmstate(BlockDriverState
*bs
, const uint8_t *data
,
1968 int64_t pos
, int size
)
1970 BDRVSheepdogState
*s
= bs
->opaque
;
1972 return do_load_save_vmstate(s
, (uint8_t *)data
, pos
, size
, 0);
1975 static int sd_load_vmstate(BlockDriverState
*bs
, uint8_t *data
,
1976 int64_t pos
, int size
)
1978 BDRVSheepdogState
*s
= bs
->opaque
;
1980 return do_load_save_vmstate(s
, data
, pos
, size
, 1);
1984 static QEMUOptionParameter sd_create_options
[] = {
1986 .name
= BLOCK_OPT_SIZE
,
1988 .help
= "Virtual disk size"
1991 .name
= BLOCK_OPT_BACKING_FILE
,
1993 .help
= "File name of a base image"
1998 BlockDriver bdrv_sheepdog
= {
1999 .format_name
= "sheepdog",
2000 .protocol_name
= "sheepdog",
2001 .instance_size
= sizeof(BDRVSheepdogState
),
2002 .bdrv_file_open
= sd_open
,
2003 .bdrv_close
= sd_close
,
2004 .bdrv_create
= sd_create
,
2005 .bdrv_getlength
= sd_getlength
,
2006 .bdrv_truncate
= sd_truncate
,
2008 .bdrv_aio_readv
= sd_aio_readv
,
2009 .bdrv_aio_writev
= sd_aio_writev
,
2011 .bdrv_snapshot_create
= sd_snapshot_create
,
2012 .bdrv_snapshot_goto
= sd_snapshot_goto
,
2013 .bdrv_snapshot_delete
= sd_snapshot_delete
,
2014 .bdrv_snapshot_list
= sd_snapshot_list
,
2016 .bdrv_save_vmstate
= sd_save_vmstate
,
2017 .bdrv_load_vmstate
= sd_load_vmstate
,
2019 .create_options
= sd_create_options
,
2022 static void bdrv_sheepdog_init(void)
2024 bdrv_register(&bdrv_sheepdog
);
2026 block_init(bdrv_sheepdog_init
);