/* * This is the callback function for rbd_aio_read and _write * * Note: this function is being called from a non qemu thread so * we need to be careful about what we do here. Generally we only * schedule a BH, and do the rest of the io completion handling * from rbd_finish_bh() which runs in a qemu context. */ static void rbd_finish_aiocb(rbd_completion_t c, RADOSCB *rcb) { RBDAIOCB *acb = rcb->acb; rcb->ret = rbd_aio_get_return_value(c); rbd_aio_release(c); acb->bh = qemu_bh_new(rbd_finish_bh, rcb); qemu_bh_schedule(acb->bh); }
/* * This is the callback function for rbd_aio_read and _write * * Note: this function is being called from a non qemu thread so * we need to be careful about what we do here. Generally we only * schedule a BH, and do the rest of the io completion handling * from rbd_finish_bh() which runs in a qemu context. */ static void rbd_finish_aiocb(rbd_completion_t c, RADOSCB *rcb) { RBDAIOCB *acb = rcb->acb; rcb->ret = rbd_aio_get_return_value(c); rbd_aio_release(c); aio_bh_schedule_oneshot(bdrv_get_aio_context(acb->common.bs), rbd_finish_bh, rcb); }
/* * This is the callback function for rbd_aio_read and _write * * Note: this function is being called from a non qemu thread so * we need to be careful about what we do here. Generally we only * write to the block notification pipe, and do the rest of the * io completion handling from qemu_rbd_aio_event_reader() which * runs in a qemu context. */ static void rbd_finish_aiocb(rbd_completion_t c, RADOSCB *rcb) { int ret; rcb->ret = rbd_aio_get_return_value(c); rbd_aio_release(c); ret = qemu_rbd_send_pipe(rcb->s, rcb); if (ret < 0) { error_report("failed writing to acb->s->fds"); g_free(rcb); } }
void aio_write_test_data(rbd_image_t image, const char *test_data, uint64_t off, size_t len) { rbd_completion_t comp; rbd_aio_create_completion(NULL, (rbd_callback_t) simple_write_cb, &comp); printf("created completion\n"); rbd_aio_write(image, off, len, test_data, comp); printf("started write\n"); rbd_aio_wait_for_complete(comp); int r = rbd_aio_get_return_value(comp); printf("return value is: %d\n", r); assert(r == 0); printf("finished write\n"); rbd_aio_release(comp); }
static void app_finish_aiocb(rbd_completion_t c, char *buf) { int ret; ret = rbd_aio_get_return_value(c); if (ret < 0) { fprintf(stderr, "error reading image:%s, %s", imagename, strerror(-ret)); } fprintf(stdout, "buffer read:\n" "========================================\n" "%s\n" "========================================\n", buf); rbd_aio_release(c); done = 1; }
void aio_read_test_data(rbd_image_t image, const char *expected, uint64_t off, size_t len) { rbd_completion_t comp; char *result; assert((result = malloc(sizeof(result) * (len + 1))) != 0); rbd_aio_create_completion(NULL, (rbd_callback_t) simple_read_cb, &comp); printf("created completion\n"); rbd_aio_read(image, off, len, result, comp); printf("started read\n"); rbd_aio_wait_for_complete(comp); int r = rbd_aio_get_return_value(comp); printf("return value is: %d\n", r); assert(r == (ssize_t)len); rbd_aio_release(comp); printf("read: %s\nexpected: %s\n", result, expected); assert(memcmp(result, expected, len) == 0); free(result); }
static BlockAIOCB *rbd_start_aio(BlockDriverState *bs, int64_t off, QEMUIOVector *qiov, int64_t size, BlockCompletionFunc *cb, void *opaque, RBDAIOCmd cmd) { RBDAIOCB *acb; RADOSCB *rcb = NULL; rbd_completion_t c; int r; BDRVRBDState *s = bs->opaque; acb = qemu_aio_get(&rbd_aiocb_info, bs, cb, opaque); acb->cmd = cmd; acb->qiov = qiov; assert(!qiov || qiov->size == size); rcb = g_new(RADOSCB, 1); if (!LIBRBD_USE_IOVEC) { if (cmd == RBD_AIO_DISCARD || cmd == RBD_AIO_FLUSH) { acb->bounce = NULL; } else { acb->bounce = qemu_try_blockalign(bs, qiov->size); if (acb->bounce == NULL) { goto failed; } } if (cmd == RBD_AIO_WRITE) { qemu_iovec_to_buf(acb->qiov, 0, acb->bounce, qiov->size); } rcb->buf = acb->bounce; } acb->ret = 0; acb->error = 0; acb->s = s; rcb->acb = acb; rcb->s = acb->s; rcb->size = size; r = rbd_aio_create_completion(rcb, (rbd_callback_t) rbd_finish_aiocb, &c); if (r < 0) { goto failed; } switch (cmd) { case RBD_AIO_WRITE: #ifdef LIBRBD_SUPPORTS_IOVEC r = rbd_aio_writev(s->image, qiov->iov, qiov->niov, off, c); #else r = rbd_aio_write(s->image, off, size, rcb->buf, c); #endif break; case RBD_AIO_READ: #ifdef LIBRBD_SUPPORTS_IOVEC r = rbd_aio_readv(s->image, qiov->iov, qiov->niov, off, c); #else r = rbd_aio_read(s->image, off, size, rcb->buf, c); #endif break; case RBD_AIO_DISCARD: r = rbd_aio_discard_wrapper(s->image, off, size, c); break; case RBD_AIO_FLUSH: r = rbd_aio_flush_wrapper(s->image, c); break; default: r = -EINVAL; } if (r < 0) { goto failed_completion; } return &acb->common; failed_completion: rbd_aio_release(c); failed: g_free(rcb); if (!LIBRBD_USE_IOVEC) { qemu_vfree(acb->bounce); } qemu_aio_unref(acb); return NULL; }
static BlockDriverAIOCB *rbd_start_aio(BlockDriverState *bs, int64_t sector_num, QEMUIOVector *qiov, int nb_sectors, BlockDriverCompletionFunc *cb, void *opaque, RBDAIOCmd cmd) { RBDAIOCB *acb; RADOSCB *rcb; rbd_completion_t c; int64_t off, size; char *buf; int r; BDRVRBDState *s = bs->opaque; acb = qemu_aio_get(&rbd_aiocb_info, bs, cb, opaque); acb->cmd = cmd; acb->qiov = qiov; if (cmd == RBD_AIO_DISCARD || cmd == RBD_AIO_FLUSH) { acb->bounce = NULL; } else { acb->bounce = qemu_blockalign(bs, qiov->size); } acb->ret = 0; acb->error = 0; acb->s = s; acb->cancelled = 0; acb->bh = NULL; acb->status = -EINPROGRESS; if (cmd == RBD_AIO_WRITE) { qemu_iovec_to_buf(acb->qiov, 0, acb->bounce, qiov->size); } buf = acb->bounce; off = sector_num * BDRV_SECTOR_SIZE; size = nb_sectors * BDRV_SECTOR_SIZE; rcb = g_malloc(sizeof(RADOSCB)); rcb->done = 0; rcb->acb = acb; rcb->buf = buf; rcb->s = acb->s; rcb->size = size; r = rbd_aio_create_completion(rcb, (rbd_callback_t) rbd_finish_aiocb, &c); if (r < 0) { goto failed; } switch (cmd) { case RBD_AIO_WRITE: r = rbd_aio_write(s->image, off, size, buf, c); break; case RBD_AIO_READ: r = rbd_aio_read(s->image, off, size, buf, c); break; case RBD_AIO_DISCARD: r = rbd_aio_discard_wrapper(s->image, off, size, c); break; case RBD_AIO_FLUSH: r = rbd_aio_flush_wrapper(s->image, c); break; default: r = -EINVAL; } if (r < 0) { goto failed_completion; } return &acb->common; failed_completion: rbd_aio_release(c); failed: g_free(rcb); qemu_vfree(acb->bounce); qemu_aio_release(acb); return NULL; }
int main() { int ret,len = 0; rados_t cluster; char *buf, *out_buf = NULL; char *pool = "rbd"; char *rbd_name = "vol1"; int fd = -1; int i = 0; rados_completion_t read_comp, write_comp; rbd_image_t rbd_image; time_t start_t, end_t, total_t = 0; unsigned char *cipher_key = (unsigned char *) "7190c8bc27ac4a1bbe1ab1cf55cf3b097190c8bc27ac4a1bbe1ab1cf55cf3b09"; unsigned char *iv = (unsigned char *) "dcbfdd41e40f74a2"; ERR_load_crypto_strings(); OpenSSL_add_all_algorithms(); ret = rados_create(&cluster, NULL); if (ret) { printf("error creating rados_t object\n"); return -1; } ret = rados_conf_read_file(cluster,"/home/shishir/repos/ceph/src/ceph.conf"); if (ret) { printf("Error reading conf files \n"); return -1; } ret = rados_connect(cluster); if (ret) { printf("Could not connect to cluster\n"); return -1; } rados_ioctx_t io; ret = rados_ioctx_create(cluster, pool, &io); if (ret) { printf("Could not open connection to cluster\n"); return -1; } ret = rbd_open(io, rbd_name, &rbd_image, NULL); if (ret) { printf("Failed to open image %s\n",rbd_name); return -1; } posix_memalign((void**)&buf, 4096, 65536); if (!buf) { printf("Failed to malloc\n"); return -1; } fd = open("/tmp/input_file", O_RDONLY); if (fd > 0) { read(fd, buf, 65536); close(fd); } posix_memalign((void**)&out_buf, 4096, 65536); if (!out_buf) { printf("Failed to malloc\n"); return -1; } len = strlen((char*)buf); //printf("plain text length %lld\n",strlen((char*)buf)); //printf("===========plain text========\n"); //BIO_dump_fp(stdout,(const char*)buf,len); //printf("=================\n"); start_t = clock(); len = encrypt (buf, strlen((char*)buf), cipher_key, iv, out_buf); end_t = clock(); total_t = (double)(end_t - start_t)/ CLOCKS_PER_SEC; //printf("encrypted len is %d timetaken is %fsec\n",len,total_t); //printf("===========encrypted text========\n"); //BIO_dump_fp(stdout,(const char*)out_buf,len); //printf("=================\n"); fd = open("/tmp/encrypted_file", O_CREAT|O_RDWR); if (fd > 0) { write(fd, out_buf, 65536); close(fd); } ret = rbd_aio_create_completion(NULL, NULL, &write_comp); if (ret) { printf ("Failed to create aio completion\n"); return -1; } ret = rbd_aio_write(rbd_image, 0, 65536, out_buf, write_comp); if (ret < 0) { printf ("Failed to write aio completion\n"); return -1; } rbd_aio_wait_for_complete(write_comp); rbd_aio_release(write_comp); ret = rbd_aio_create_completion(NULL, NULL, &read_comp); if (ret) { printf ("Failed to create aio completion\n"); return -1; } memset(buf, 0, 65536); memset(out_buf, 0, 65536); ret = rbd_aio_read(rbd_image, 0, 65536, buf, read_comp); if (ret < 0) { printf ("Failed to read aio completion\n"); return -1; } rbd_aio_wait_for_complete(read_comp); rbd_aio_release(read_comp); len=65536; start_t = clock(); len = decrypt(buf, len, cipher_key, iv, out_buf); end_t = clock(); total_t = (double)(end_t - start_t)/ CLOCKS_PER_SEC; //printf("decrypted len is %d time taken: %fs\n",len,total_t); //printf("===========decrypted text========\n"); //BIO_dump_fp(stdout,(const char*)out_buf,len); //printf("=================\n"); fd = open("/tmp/decrypted_file", O_CREAT|O_RDWR); if (fd > 0) { write(fd, out_buf, 65536); close(fd); } rados_ioctx_destroy(io); rados_shutdown(cluster); free(buf); free(out_buf); return 0; }