1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719
|
/* This example shows you how to make libnbd interoperate with the
* libev event loop. For more information about libvev see:
*
* http://pod.tst.eu/http://cvs.schmorp.de/libev/ev.pod
*
* To build it you need the libev-devel package.
*
* To run it:
*
* SRC=/tmp/src.sock
* DST=/tmp/dst.sock
* nbdkit -r pattern size=1G -U $SRC
* nbdkit memory size=1g -U $DST
* ./copy-libev nbd+unix:///?socket=$SRC nbd+unix:///?socket=$DST
*
* To debug it:
*
* COPY_LIBEV_DEBUG=1 ./copy-ev ...
*/
#include <stdio.h>
#include <stdlib.h>
#include <stdbool.h>
#include <stdint.h>
#include <inttypes.h>
#include <string.h>
#include <unistd.h>
#include <errno.h>
#include <assert.h>
#include <libnbd.h>
#include <ev.h>
/* These values depend on the environment tested.
*
* For shared storage using direct I/O:
*
* MAX_REQUESTS 16
* REQUEST_SIZE (1024 * 1024)
*
* For nbdkit memory plugin:
*
* MAX_REQUESTS 8
* REQUEST_SIZE (128 * 1024)
*/
#define MAX_REQUESTS 16
#define REQUEST_SIZE (1024 * 1024)
#define EXTENTS_SIZE (128 * 1024 * 1024)
#define GIB (1024 * 1024 * 1024)
#define MIN(a,b) (a) < (b) ? (a) : (b)
#define PROG "copy-libev"
#define DEBUG(fmt, ...) \
do { \
if (debug) \
fprintf (stderr, PROG ": " fmt "\n", ## __VA_ARGS__); \
} while (0)
#define FAIL(fmt, ...) \
do { \
fprintf (stderr, PROG ": " fmt "\n", ## __VA_ARGS__); \
exit (EXIT_FAILURE); \
} while (0)
struct connection {
ev_io watcher;
struct nbd_handle *nbd;
bool can_zero;
bool can_extents;
};
enum request_state {
IDLE, /* Not used yet. */
EXTENTS, /* Getting extents from source. */
READ, /* Read from source. */
WRITE, /* Write to destination. */
ZERO, /* Write zeroes to destination. */
SLEEP /* Waiting for extents completion. */
};
static const char *state_names[] = {
"idle", "extents", "read", "write", "zero", "sleep"
};
struct request {
ev_timer watcher; /* For starting on next loop iteration. */
int64_t offset;
size_t length;
bool zero;
unsigned char *data;
size_t index;
ev_tstamp started;
enum request_state state;
};
struct extent {
uint64_t length;
bool zero;
};
static struct ev_loop *loop;
static ev_prepare prepare;
static struct connection src;
static struct connection dst;
static struct request requests[MAX_REQUESTS];
/* List of extents received from source server. */
static struct extent *extents;
static size_t extents_len;
static size_t extents_pos;
/* Set when we start asynchronous block status request. */
static bool extents_in_progress;
static int64_t size;
static int64_t offset;
static int64_t written;
static bool debug;
static ev_tstamp started;
static ev_timer progress;
static inline void start_request_soon (struct request *r);
static void start_request_cb (struct ev_loop *loop, ev_timer *w, int revents);
static void start_request (struct request *r);
static void start_read (struct request *r);
static void start_write (struct request *r);
static void start_zero (struct request *r);
static int read_completed (void *user_data, int *error);
static int request_completed (void *user_data, int *error);
/* Return true iff data is all zero bytes.
*
* Based on Rusty Russell's memeqzero:
* https://rusty.ozlabs.org/?p=560
*/
static bool
is_buf_zero (const unsigned char *data, size_t len)
{
const unsigned char *p = data;
size_t i;
for (i = 0; i < 16; i++) {
if (len == 0)
return true;
if (*p)
return false;
p++;
len--;
}
return memcmp (data, p, len) == 0;
}
static inline const char *
request_state (struct request *r)
{
return state_names[r->state];
}
static inline int
get_fd (struct connection *c)
{
return nbd_aio_get_fd (c->nbd);
}
static inline int
get_events (struct connection *c)
{
unsigned dir = nbd_aio_get_direction (c->nbd);
switch (dir) {
case LIBNBD_AIO_DIRECTION_READ:
return EV_READ;
case LIBNBD_AIO_DIRECTION_WRITE:
return EV_WRITE;
case LIBNBD_AIO_DIRECTION_BOTH:
return EV_READ | EV_WRITE;
default:
return 0;
}
}
static int
extent_callback (void *user_data, const char *metacontext, uint64_t offset,
nbd_extent *entries, size_t nr_entries, int *error)
{
struct request *r = user_data;
if (strcmp (metacontext, LIBNBD_CONTEXT_BASE_ALLOCATION) != 0) {
DEBUG ("Unexpected meta context: %s", metacontext);
return 1;
}
if (*error) {
DEBUG ("r%zu: extent callback for %s failed: %s",
r->index, LIBNBD_CONTEXT_BASE_ALLOCATION, strerror (*error));
return 1;
}
extents_len = nr_entries;
extents = malloc (extents_len * sizeof *extents);
if (extents == NULL)
FAIL ("Cannot allocated extents: %s", strerror (errno));
/* Copy libnbd entries to extents array. */
for (int i = 0; i < extents_len; i++) {
extents[i].length = entries[i].length;
/* Libnbd exposes both ZERO and HOLE flags. We care only about
* ZERO status, meaning we can copy this extent using efficinet
* zero method.
*/
extents[i].zero = (entries[i].flags & LIBNBD_STATE_ZERO) != 0;
}
DEBUG ("r%zu: received %zu extents for %s",
r->index, extents_len, metacontext);
return 1;
}
static inline void put_to_sleep (struct request *r)
{
DEBUG ("r%zu: sleeping", r->index);
r->state = SLEEP;
}
static void wake_up_requests ()
{
/* Start requests on the next loop iteration to avoid a deadlock if
* this is called from source nbd callback, and we need to start a
* read.
*/
for (int i = 0; i < MAX_REQUESTS; i++) {
struct request *r = &requests[i];
if (r->state == SLEEP) {
DEBUG ("r%zu: woke up time=%.6f",
r->index, ev_now (loop) - r->started);
start_request_soon (r);
}
}
}
static int
extents_completed (void *user_data, int *error)
{
struct request *r = (struct request *)user_data;
DEBUG ("r%zu: extents completed time=%.6f",
r->index, ev_now (loop) - r->started);
extents_in_progress = false;
/*
* If extents failed (*error != 0), the extent callback was not
* called, or called with an error, so we did not allocate new
* extents array.
*/
if (extents == NULL) {
DEBUG ("r%zu: received no extents, disabling extents", r->index);
src.can_extents = false;
}
/* Start the request to process recvievd extents. This must be done on the
* next loop iteration, to avoid deadlock if we need to start a read.
*/
start_request_soon (r);
/* Also wake up requests waiting for extents completion */
wake_up_requests ();
return 1;
}
static bool
start_extents (struct request *r)
{
size_t count = MIN (EXTENTS_SIZE, size - offset);
int64_t cookie;
DEBUG ("r%zu: start extents offset=%" PRIi64 " count=%zu",
r->index, offset, count);
cookie = nbd_aio_block_status_64 (
src.nbd, count, offset,
(nbd_extent64_callback) { .callback=extent_callback,
.user_data=r },
(nbd_completion_callback) { .callback=extents_completed,
.user_data=r },
0);
if (cookie == -1) {
DEBUG ("Cannot get extents: %s", nbd_get_error ());
src.can_extents = false;
return false;
}
r->state = EXTENTS;
extents_in_progress = true;
return true;
}
/* Return next extent to process. */
static void
next_extent (struct request *r)
{
uint32_t limit;
uint32_t length = 0;
bool is_zero;
assert (extents);
is_zero = extents[extents_pos].zero;
/* Zero can be much faster, so try to zero entire extent. */
if (is_zero && dst.can_zero)
limit = MIN (EXTENTS_SIZE, size - offset);
else
limit = MIN (REQUEST_SIZE, size - offset);
while (length < limit) {
DEBUG ("e%zu: offset=%" PRIi64 " len=%" PRIu64 " zero=%d",
extents_pos, offset, extents[extents_pos].length, is_zero);
/* If this extent is too large, steal some data from it to
* complete the request.
*/
if (length + extents[extents_pos].length > limit) {
uint32_t stolen = limit - length;
extents[extents_pos].length -= stolen;
length += stolen;
break;
}
/* Consume the entire extent and start looking at the next one. */
length += extents[extents_pos].length;
extents[extents_pos].length = 0;
if (extents_pos + 1 == extents_len)
break;
extents_pos++;
/* If next extent is different, we are done. */
if (extents[extents_pos].zero != is_zero)
break;
}
assert (length > 0 && length <= limit);
r->offset = offset;
r->length = length;
r->zero = is_zero;
DEBUG ("r%zu: extent offset=%" PRIi64 " len=%zu zero=%d",
r->index, r->offset, r->length, r->zero);
offset += length;
if (extents_pos + 1 == extents_len && extents[extents_pos].length == 0) {
/* Processed all extents, clear extents. */
DEBUG ("r%zu: consumed all extents offset=%" PRIi64, r->index, offset);
free (extents);
extents = NULL;
extents_pos = 0;
extents_len = 0;
}
}
static inline void
start_request_soon (struct request *r)
{
r->state = IDLE;
ev_timer_init (&r->watcher, start_request_cb, 0, 0);
ev_timer_start (loop, &r->watcher);
}
static void
start_request_cb (struct ev_loop *loop, ev_timer *w, int revents)
{
struct request *r = (struct request *)w;
start_request (r);
}
/* Start async copy or zero request. */
static void
start_request (struct request *r)
{
/* Cancel the request if we are done. */
if (offset == size)
return;
r->started = ev_now (loop);
/* If needed, get more extents from server. */
if (src.can_extents && extents == NULL) {
if (extents_in_progress) {
put_to_sleep (r);
return;
}
if (start_extents (r))
return;
}
if (src.can_extents) {
/* Handle the next extent. */
next_extent (r);
if (r->zero) {
if (dst.can_zero) {
start_zero (r);
} else {
memset (r->data, 0, r->length);
start_write (r);
}
} else {
start_read (r);
}
} else {
/* Extents not available. */
r->length = MIN (REQUEST_SIZE, size - offset);
r->offset = offset;
start_read (r);
offset += r->length;
}
}
static void
start_read (struct request *r)
{
int64_t cookie;
r->state = READ;
DEBUG ("r%zu: start read offset=%" PRIi64 " len=%zu",
r->index, r->offset, r->length);
cookie = nbd_aio_pread (
src.nbd, r->data, r->length, r->offset,
(nbd_completion_callback) { .callback=read_completed,
.user_data=r },
0);
if (cookie == -1)
FAIL ("Cannot start read: %s", nbd_get_error ());
}
static int
read_completed (void *user_data, int *error)
{
struct request *r = (struct request *)user_data;
if (*error)
FAIL ("r%zu: read failed: %s", r->index, strerror (*error));
DEBUG ("r%zu: read completed offset=%" PRIi64 " len=%zu",
r->index, r->offset, r->length);
if (dst.can_zero && is_buf_zero (r->data, r->length))
start_zero (r);
else
start_write (r);
return 1;
}
static void
start_write (struct request *r)
{
int64_t cookie;
r->state = WRITE;
DEBUG ("r%zu: start write offset=%" PRIi64 " len=%zu",
r->index, r->offset, r->length);
cookie = nbd_aio_pwrite (
dst.nbd, r->data, r->length, r->offset,
(nbd_completion_callback) { .callback=request_completed,
.user_data=r },
0);
if (cookie == -1)
FAIL ("Cannot start write: %s", nbd_get_error ());
}
static void
start_zero (struct request *r)
{
int64_t cookie;
r->state = ZERO;
DEBUG ("r%zu: start zero offset=%" PRIi64 " len=%zu",
r->index, r->offset, r->length);
cookie = nbd_aio_zero (
dst.nbd, r->length, r->offset,
(nbd_completion_callback) { .callback=request_completed,
.user_data=r },
0);
if (cookie == -1)
FAIL ("Cannot start zero: %s", nbd_get_error ());
}
/* Called when async copy or zero request completed. */
static int
request_completed (void *user_data, int *error)
{
struct request *r = (struct request *)user_data;
if (*error)
FAIL ("r%zu: %s failed: %s",
r->index, request_state (r), strerror (*error));
written += r->length;
DEBUG ("r%zu: %s completed offset=%" PRIi64 " len=%zu, time=%.6f",
r->index, request_state (r), r->offset, r->length,
ev_now (loop) - r->started);
if (written == size) {
/* The last write completed. Stop all watchers and break out
* from the event loop.
*/
ev_io_stop (loop, &src.watcher);
ev_io_stop (loop, &dst.watcher);
ev_prepare_stop (loop, &prepare);
ev_break (loop, EVBREAK_ALL);
}
/* If we have more work, start a new request on the next loop
* iteration, to avoid deadlock if we need to start a zero or write.
*/
if (offset < size)
start_request_soon (r);
return 1;
}
/* Notify libnbd about io events. */
static void
io_cb (struct ev_loop *loop, ev_io *w, int revents)
{
struct connection *c = (struct connection *)w;
/* Based on lib/poll.c, we need to prefer read over write, and avoid
* invoking both notify_read() and notify_write(), since notify_read() may
* change the state of the handle.
*/
if (revents & EV_READ)
nbd_aio_notify_read (c->nbd);
else if (revents & EV_WRITE)
nbd_aio_notify_write (c->nbd);
}
static void
progress_cb (struct ev_loop *loop, ev_timer *w, int revents)
{
ev_tstamp duration = ev_now (loop) - started;
printf ("[ %6.2f%% ] %.2f GiB, %.2f seconds, %.2f GiB/s %c",
(double) written / size * 100,
(double) size / GIB,
duration,
(double) written / GIB / duration,
revents ? '\r' : '\n');
fflush (stdout);
}
static void
start_progress ()
{
started = ev_now (loop);
ev_timer_init (&progress, progress_cb, 0, 0.1);
ev_timer_start (loop, &progress);
}
static void
finish_progress ()
{
ev_now_update (loop);
progress_cb (loop, &progress, 0);
}
static inline void
update_watcher (struct connection *c)
{
int events = get_events (c);
if (events != c->watcher.events) {
ev_io_stop (loop, &c->watcher);
ev_io_set (&c->watcher, get_fd (c), events);
ev_io_start (loop, &c->watcher);
}
}
/* Update watchers events based on libnbd handle state. */
static void
prepare_cb (struct ev_loop *loop, ev_prepare *w, int revents)
{
update_watcher (&src);
update_watcher (&dst);
}
int
main (int argc, char *argv[])
{
int i;
loop = EV_DEFAULT;
if (argc != 3)
FAIL ("Usage: %s src-uri dst-uri", PROG);
start_progress ();
src.nbd = nbd_create ();
if (src.nbd == NULL)
FAIL ("Cannot create source: %s", nbd_get_error ());
dst.nbd = nbd_create ();
if (dst.nbd == NULL)
FAIL ("Cannot create destination: %s", nbd_get_error ());
debug = getenv ("COPY_LIBEV_DEBUG") != NULL;
/* Configure source to report extents. */
if (nbd_add_meta_context (src.nbd, LIBNBD_CONTEXT_BASE_ALLOCATION))
FAIL ("Cannot add base:allocation: %s", nbd_get_error ());
/* Connecting is fast, so use the synchronous API. */
if (nbd_connect_uri (src.nbd, argv[1]))
FAIL ("Cannot connect to source: %s", nbd_get_error ());
src.can_extents = nbd_can_meta_context (
src.nbd, LIBNBD_CONTEXT_BASE_ALLOCATION) > 0;
if (nbd_connect_uri (dst.nbd, argv[2]))
FAIL ("Cannot connect to destination: %s", nbd_get_error ());
size = nbd_get_size (src.nbd);
if (size > nbd_get_size (dst.nbd))
FAIL ("Destinatio is not large enough\n");
/* Check destination server capabilities. */
dst.can_zero = nbd_can_zero (dst.nbd) > 0;
/* Start the copy "loop". When request completes, it starts the
* next request, until entire image was copied. */
for (i = 0; i < MAX_REQUESTS; i++) {
struct request *r = &requests[i];
r->index = i;
/*
* Clear the buffer before starting the copy, so if we fail to
* handle a read error we will not write uninitilized data to
* the destination server, which may leak sensitive data to
* remote host.
*/
r->data = calloc (1, REQUEST_SIZE);
if (r->data == NULL)
FAIL ("Cannot allocate buffer: %s", strerror (errno));
start_request (r);
}
/* Start watching events on src and dst handles. */
ev_io_init (&src.watcher, io_cb, get_fd (&src), get_events (&src));
ev_io_start (loop, &src.watcher);
ev_io_init (&dst.watcher, io_cb, get_fd (&dst), get_events (&dst));
ev_io_start (loop, &dst.watcher);
/* Register a prepare watcher for updating src and dst events once
* before the event loop waits for new events.
*/
ev_prepare_init (&prepare, prepare_cb);
ev_prepare_start (loop, &prepare);
/* Run the event loop. The call will return when entire image was
* copied.
*/
ev_run (loop, 0);
/* Copy completed - flush data to storage. */
DEBUG ("flush");
if (nbd_flush (dst.nbd, 0))
FAIL ("Cannot flush: %s", nbd_get_error ());
/* We don't care about errors here since data was flushed. */
nbd_shutdown (dst.nbd, 0);
nbd_close (dst.nbd);
nbd_shutdown (src.nbd, 0);
nbd_close (src.nbd);
/* We can free requests data here, but it is not really needed. */
finish_progress ();
return 0;
}
|