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 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868
|
/* nbdkit
* Copyright Red Hat
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are
* met:
*
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
*
* * Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* * Neither the name of Red Hat nor the names of its contributors may be
* used to endorse or promote products derived from this software without
* specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY RED HAT AND CONTRIBUTORS ''AS IS'' AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
* THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
* PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL RED HAT OR
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
* USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
* OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*/
#include <config.h>
#include <stdio.h>
#include <stdlib.h>
#include <inttypes.h>
#include <string.h>
#include <assert.h>
#include <dlfcn.h>
#include "ascii-ctype.h"
#include "minmax.h"
#include "internal.h"
/* Helpers for registering a new backend. */
/* Use:
* -D nbdkit.backend.controlpath=0 to suppress control path debugging.
* -D nbdkit.backend.datapath=0 to suppress data path debugging.
*/
NBDKIT_DLL_PUBLIC int nbdkit_debug_backend_controlpath = 1;
NBDKIT_DLL_PUBLIC int nbdkit_debug_backend_datapath = 1;
#define controlpath_debug(fs, ...) \
do { \
if (nbdkit_debug_backend_controlpath) debug ((fs), ##__VA_ARGS__); \
} while (0)
#define datapath_debug(fs, ...) \
do { \
if (nbdkit_debug_backend_datapath) debug ((fs), ##__VA_ARGS__); \
} while (0)
void
backend_init (struct backend *b, struct backend *next, size_t index,
const char *filename, void *dl, const char *type)
{
b->magic = BACKEND_MAGIC;
b->next = next;
b->i = index;
b->type = type;
b->filename = strdup (filename);
if (b->filename == NULL) {
perror ("strdup");
exit (EXIT_FAILURE);
}
b->dl = dl;
debug ("registering %s %s", type, filename);
}
void
backend_load (struct backend *b, const char *name, void (*load) (void))
{
size_t i, len;
/* name is required. */
if (name == NULL) {
fprintf (stderr, "%s: %s: %s must have a .name field\n",
program_name, b->filename, b->type);
exit (EXIT_FAILURE);
}
len = strlen (name);
if (len == 0) {
fprintf (stderr, "%s: %s: %s.name field must not be empty\n",
program_name, b->filename, b->type);
exit (EXIT_FAILURE);
}
if (! ascii_isalnum (*name)) {
fprintf (stderr,
"%s: %s: %s.name ('%s') field must begin with an "
"ASCII alphanumeric character\n",
program_name, b->filename, b->type, name);
exit (EXIT_FAILURE);
}
for (i = 1; i < len; ++i) {
unsigned char c = name[i];
if (! ascii_isalnum (c) && c != '-') {
fprintf (stderr,
"%s: %s: %s.name ('%s') field must contain only "
"ASCII alphanumeric or dash characters\n",
program_name, b->filename, b->type, name);
exit (EXIT_FAILURE);
}
}
/* Copy the module's name into local storage, so that name
* survives past unload.
*/
b->name = strdup (name);
if (b->name == NULL) {
perror ("strdup");
exit (EXIT_FAILURE);
}
debug ("registered %s %s (name %s)", b->type, b->filename, b->name);
/* Apply debug flags before calling load. */
apply_debug_flags (b->dl, name);
/* Call the on-load callback if it exists. */
controlpath_debug ("%s: load", name);
if (load)
load ();
}
void
backend_unload (struct backend *b, void (*unload) (void))
{
/* Acquiring this lock prevents any other backend callbacks from running
* simultaneously.
*/
lock_unload ();
controlpath_debug ("%s: unload %s", b->name, b->type);
if (unload)
unload ();
if (DO_DLCLOSE)
dlclose (b->dl);
free (b->filename);
unlock_unload ();
free (b->name);
}
int
backend_list_exports (struct backend *b, int readonly,
struct nbdkit_exports *exports)
{
GET_CONN;
size_t count;
controlpath_debug ("%s: list_exports readonly=%d tls=%d",
b->name, readonly, conn->using_tls);
assert (conn->top_context == NULL);
if (b->list_exports (b, readonly, conn->using_tls, exports) == -1 ||
exports_resolve_default (exports, b, readonly) == -1) {
controlpath_debug ("%s: list_exports failed", b->name);
return -1;
}
count = nbdkit_exports_count (exports);
controlpath_debug ("%s: list_exports returned %zu names", b->name, count);
return 0;
}
const char *
backend_default_export (struct backend *b, int readonly)
{
GET_CONN;
const char *s;
controlpath_debug ("%s: default_export readonly=%d tls=%d",
b->name, readonly, conn->using_tls);
if (conn->default_exportname[b->i] == NULL) {
assert (conn->top_context == NULL);
s = b->default_export (b, readonly, conn->using_tls);
/* Ignore over-length strings. XXX Also ignore non-UTF8? */
if (s && strnlen (s, NBD_MAX_STRING + 1) > NBD_MAX_STRING) {
controlpath_debug ("%s: default_export: ignoring invalid string",
b->name);
s = NULL;
}
if (s) {
/* Best effort caching */
conn->default_exportname[b->i] = strdup (s);
if (conn->default_exportname[b->i] == NULL)
return s;
}
}
return conn->default_exportname[b->i];
}
static struct nbdkit_next_ops next_ops = {
.prepare = backend_prepare,
.finalize = backend_finalize,
.export_description = backend_export_description,
.get_size = backend_get_size,
.block_size = backend_block_size,
.can_write = backend_can_write,
.can_flush = backend_can_flush,
.is_rotational = backend_is_rotational,
.can_trim = backend_can_trim,
.can_zero = backend_can_zero,
.can_fast_zero = backend_can_fast_zero,
.can_extents = backend_can_extents,
.can_fua = backend_can_fua,
.can_multi_conn = backend_can_multi_conn,
.can_cache = backend_can_cache,
.pread = backend_pread,
.pwrite = backend_pwrite,
.flush = backend_flush,
.trim = backend_trim,
.zero = backend_zero,
.extents = backend_extents,
.cache = backend_cache,
};
struct context *
backend_open (struct backend *b, int readonly, const char *exportname,
int shared)
{
struct connection *conn = threadlocal_get_conn ();
bool using_tls;
struct context *c;
if (shared)
using_tls = tls == 2;
else {
assert (conn);
using_tls = conn->using_tls;
}
c = calloc (1, sizeof *c);
if (c == NULL) {
nbdkit_error ("malloc: %m");
return NULL;
}
c->magic = CONTEXT_MAGIC;
PUSH_CONTEXT_FOR_SCOPE (c);
controlpath_debug ("%s: open readonly=%d exportname=\"%s\" tls=%d",
b->name, readonly, exportname, using_tls);
c->next = next_ops;
c->handle = NULL;
c->b = b;
c->c_next = NULL;
c->conn = shared ? NULL : conn;
c->state = 0;
c->exportsize = -1;
c->minimum_block_size = c->preferred_block_size = c->maximum_block_size = -1;
c->can_write = readonly ? 0 : -1;
c->can_flush = -1;
c->is_rotational = -1;
c->can_trim = -1;
c->can_zero = -1;
c->can_fast_zero = -1;
c->can_fua = -1;
c->can_multi_conn = -1;
c->can_extents = -1;
c->can_cache = -1;
/* Determine the canonical name for default export */
if (!*exportname && c->conn) {
exportname = backend_default_export (b, readonly);
if (exportname == NULL) {
nbdkit_error ("default export (\"\") not permitted");
free (c);
return NULL;
}
}
/* Most filters will call next_open first, resulting in
* inner-to-outer ordering.
*/
c->handle = b->open (c, readonly, exportname, using_tls);
controlpath_debug ("%s: open returned handle %p", b->name, c->handle);
if (c->handle == NULL) {
if (b->i && c->c_next != NULL)
backend_close (c->c_next);
free (c);
return NULL;
}
c->state |= HANDLE_OPEN;
return c;
}
int
backend_prepare (struct context *c)
{
PUSH_CONTEXT_FOR_SCOPE (c);
struct backend *b = c->b;
assert (b->magic == BACKEND_MAGIC);
assert (c->handle);
assert (c->state & HANDLE_OPEN);
if (c->state & HANDLE_CONNECTED)
return 0;
/* Call these in order starting from the filter closest to the
* plugin, similar to typical .open order. But remember that
* a filter may skip opening its backend.
*/
if (b->i && c->c_next != NULL && backend_prepare (c->c_next) == -1)
return -1;
controlpath_debug ("%s: prepare readonly=%d", b->name, c->can_write == 0);
if (b->prepare (c, c->can_write == 0) == -1)
return -1;
c->state |= HANDLE_CONNECTED;
return 0;
}
int
backend_finalize (struct context *c)
{
PUSH_CONTEXT_FOR_SCOPE (c);
struct backend *b = c->b;
assert (b->magic == BACKEND_MAGIC);
/* Call these in reverse order to .prepare above, starting from the
* filter furthest away from the plugin, and matching .close order.
*/
/* Once finalize fails, we can do nothing further on this connection */
if (c->state & HANDLE_FAILED)
return -1;
if (c->state & HANDLE_CONNECTED) {
assert (c->state & HANDLE_OPEN && c->handle);
controlpath_debug ("%s: finalize", b->name);
if (b->finalize (c) == -1) {
c->state |= HANDLE_FAILED;
return -1;
}
}
if (b->i && c->c_next != NULL)
return backend_finalize (c->c_next);
return 0;
}
void
backend_close (struct context *c)
{
PUSH_CONTEXT_FOR_SCOPE (c);
struct backend *b = c->b;
struct context *c_next = c->c_next;
/* outer-to-inner order, opposite .open */
assert (b->magic == BACKEND_MAGIC);
assert (c->handle);
assert (c->state & HANDLE_OPEN);
controlpath_debug ("%s: close", b->name);
b->close (c);
free (c);
if (c_next != NULL)
backend_close (c_next);
}
bool
backend_valid_range (struct context *c, uint64_t offset, uint32_t count)
{
assert (c->exportsize <= INT64_MAX); /* Guaranteed by negotiation phase */
return count > 0 && offset <= c->exportsize &&
offset + count <= c->exportsize;
}
/* Wrappers for all callbacks in a filter's struct nbdkit_next_ops. */
const char *
backend_export_description (struct context *c)
{
PUSH_CONTEXT_FOR_SCOPE (c);
struct backend *b = c->b;
const char *s;
assert (b->magic == BACKEND_MAGIC);
controlpath_debug ("%s: export_description", b->name);
assert (c->handle && (c->state & HANDLE_CONNECTED));
/* Caching is not useful for this value. */
s = b->export_description (c);
/* Ignore over-length strings. XXX Also ignore non-UTF8? */
if (s && strnlen (s, NBD_MAX_STRING + 1) > NBD_MAX_STRING) {
controlpath_debug ("%s: export_description: ignoring invalid string",
b->name);
s = NULL;
}
return s;
}
int64_t
backend_get_size (struct context *c)
{
PUSH_CONTEXT_FOR_SCOPE (c);
struct backend *b = c->b;
assert (b->magic == BACKEND_MAGIC);
assert (c->handle && (c->state & HANDLE_CONNECTED));
if (c->exportsize == -1) {
controlpath_debug ("%s: get_size", b->name);
c->exportsize = b->get_size (c);
}
return c->exportsize;
}
int
backend_block_size (struct context *c,
uint32_t *minimum, uint32_t *preferred, uint32_t *maximum)
{
PUSH_CONTEXT_FOR_SCOPE (c);
struct backend *b = c->b;
int r;
assert (b->magic == BACKEND_MAGIC);
assert (c->handle && (c->state & HANDLE_CONNECTED));
if (c->minimum_block_size != -1) {
*minimum = c->minimum_block_size;
*preferred = c->preferred_block_size;
*maximum = c->maximum_block_size;
return 0;
}
else {
controlpath_debug ("%s: block_size", b->name);
r = b->block_size (c, minimum, preferred, maximum);
if (r == 0) {
c->minimum_block_size = *minimum;
c->preferred_block_size = *preferred;
c->maximum_block_size = *maximum;
}
return r;
}
}
int
backend_can_write (struct context *c)
{
PUSH_CONTEXT_FOR_SCOPE (c);
struct backend *b = c->b;
assert (b->magic == BACKEND_MAGIC);
assert (c->handle && (c->state & HANDLE_CONNECTED));
if (c->can_write == -1) {
controlpath_debug ("%s: can_write", b->name);
c->can_write = b->can_write (c);
}
return c->can_write;
}
int
backend_can_flush (struct context *c)
{
PUSH_CONTEXT_FOR_SCOPE (c);
struct backend *b = c->b;
assert (b->magic == BACKEND_MAGIC);
assert (c->handle && (c->state & HANDLE_CONNECTED));
if (c->can_flush == -1) {
controlpath_debug ("%s: can_flush", b->name);
c->can_flush = b->can_flush (c);
}
return c->can_flush;
}
int
backend_is_rotational (struct context *c)
{
PUSH_CONTEXT_FOR_SCOPE (c);
struct backend *b = c->b;
assert (b->magic == BACKEND_MAGIC);
assert (c->handle && (c->state & HANDLE_CONNECTED));
if (c->is_rotational == -1) {
controlpath_debug ("%s: is_rotational", b->name);
c->is_rotational = b->is_rotational (c);
}
return c->is_rotational;
}
int
backend_can_trim (struct context *c)
{
PUSH_CONTEXT_FOR_SCOPE (c);
struct backend *b = c->b;
int r;
assert (b->magic == BACKEND_MAGIC);
assert (c->handle && (c->state & HANDLE_CONNECTED));
if (c->can_trim == -1) {
controlpath_debug ("%s: can_trim", b->name);
r = backend_can_write (c);
if (r != 1) {
c->can_trim = 0;
return r;
}
c->can_trim = b->can_trim (c);
}
return c->can_trim;
}
int
backend_can_zero (struct context *c)
{
PUSH_CONTEXT_FOR_SCOPE (c);
struct backend *b = c->b;
int r;
assert (b->magic == BACKEND_MAGIC);
assert (c->handle && (c->state & HANDLE_CONNECTED));
if (c->can_zero == -1) {
controlpath_debug ("%s: can_zero", b->name);
r = backend_can_write (c);
if (r != 1) {
c->can_zero = NBDKIT_ZERO_NONE;
return r; /* Relies on 0 == NBDKIT_ZERO_NONE */
}
c->can_zero = b->can_zero (c);
}
return c->can_zero;
}
int
backend_can_fast_zero (struct context *c)
{
PUSH_CONTEXT_FOR_SCOPE (c);
struct backend *b = c->b;
int r;
assert (b->magic == BACKEND_MAGIC);
assert (c->handle && (c->state & HANDLE_CONNECTED));
if (c->can_fast_zero == -1) {
controlpath_debug ("%s: can_fast_zero", b->name);
r = backend_can_zero (c);
if (r < NBDKIT_ZERO_EMULATE) {
c->can_fast_zero = 0;
return r; /* Relies on 0 == NBDKIT_ZERO_NONE */
}
c->can_fast_zero = b->can_fast_zero (c);
}
return c->can_fast_zero;
}
int
backend_can_extents (struct context *c)
{
PUSH_CONTEXT_FOR_SCOPE (c);
struct backend *b = c->b;
assert (b->magic == BACKEND_MAGIC);
assert (c->handle && (c->state & HANDLE_CONNECTED));
if (c->can_extents == -1) {
controlpath_debug ("%s: can_extents", b->name);
c->can_extents = b->can_extents (c);
}
return c->can_extents;
}
int
backend_can_fua (struct context *c)
{
PUSH_CONTEXT_FOR_SCOPE (c);
struct backend *b = c->b;
int r;
assert (b->magic == BACKEND_MAGIC);
assert (c->handle && (c->state & HANDLE_CONNECTED));
if (c->can_fua == -1) {
controlpath_debug ("%s: can_fua", b->name);
r = backend_can_write (c);
if (r != 1) {
c->can_fua = NBDKIT_FUA_NONE;
return r; /* Relies on 0 == NBDKIT_FUA_NONE */
}
c->can_fua = b->can_fua (c);
}
return c->can_fua;
}
int
backend_can_multi_conn (struct context *c)
{
PUSH_CONTEXT_FOR_SCOPE (c);
struct backend *b = c->b;
assert (b->magic == BACKEND_MAGIC);
assert (c->handle && (c->state & HANDLE_CONNECTED));
if (c->can_multi_conn == -1) {
controlpath_debug ("%s: can_multi_conn", b->name);
c->can_multi_conn = b->can_multi_conn (c);
}
return c->can_multi_conn;
}
int
backend_can_cache (struct context *c)
{
PUSH_CONTEXT_FOR_SCOPE (c);
struct backend *b = c->b;
assert (b->magic == BACKEND_MAGIC);
assert (c->handle && (c->state & HANDLE_CONNECTED));
if (c->can_cache == -1) {
controlpath_debug ("%s: can_cache", b->name);
c->can_cache = b->can_cache (c);
}
return c->can_cache;
}
int
backend_pread (struct context *c,
void *buf, uint32_t count, uint64_t offset,
uint32_t flags, int *err)
{
PUSH_CONTEXT_FOR_SCOPE (c);
struct backend *b = c->b;
int r;
assert (b->magic == BACKEND_MAGIC);
assert (c->handle && (c->state & HANDLE_CONNECTED));
assert (backend_valid_range (c, offset, count));
assert (flags == 0);
datapath_debug ("%s: pread count=%" PRIu32 " offset=%" PRIu64,
b->name, count, offset);
r = b->pread (c, buf, count, offset, flags, err);
if (r == -1)
assert (*err);
return r;
}
int
backend_pwrite (struct context *c,
const void *buf, uint32_t count, uint64_t offset,
uint32_t flags, int *err)
{
PUSH_CONTEXT_FOR_SCOPE (c);
struct backend *b = c->b;
bool fua = !!(flags & NBDKIT_FLAG_FUA);
int r;
assert (b->magic == BACKEND_MAGIC);
assert (c->handle && (c->state & HANDLE_CONNECTED));
assert (c->can_write == 1);
assert (backend_valid_range (c, offset, count));
assert (!(flags & ~NBDKIT_FLAG_FUA));
if (fua)
assert (c->can_fua > NBDKIT_FUA_NONE);
datapath_debug ("%s: pwrite count=%" PRIu32 " offset=%" PRIu64 " fua=%d",
b->name, count, offset, fua);
r = b->pwrite (c, buf, count, offset, flags, err);
if (r == -1)
assert (*err);
return r;
}
int
backend_flush (struct context *c,
uint32_t flags, int *err)
{
PUSH_CONTEXT_FOR_SCOPE (c);
struct backend *b = c->b;
int r;
assert (b->magic == BACKEND_MAGIC);
assert (c->handle && (c->state & HANDLE_CONNECTED));
assert (c->can_flush == 1);
assert (flags == 0);
controlpath_debug ("%s: flush", b->name);
r = b->flush (c, flags, err);
if (r == -1)
assert (*err);
return r;
}
int
backend_trim (struct context *c,
uint32_t count, uint64_t offset, uint32_t flags,
int *err)
{
PUSH_CONTEXT_FOR_SCOPE (c);
struct backend *b = c->b;
bool fua = !!(flags & NBDKIT_FLAG_FUA);
int r;
assert (b->magic == BACKEND_MAGIC);
assert (c->handle && (c->state & HANDLE_CONNECTED));
assert (c->can_write == 1);
assert (c->can_trim == 1);
assert (backend_valid_range (c, offset, count));
assert (!(flags & ~NBDKIT_FLAG_FUA));
if (fua)
assert (c->can_fua > NBDKIT_FUA_NONE);
datapath_debug ("%s: trim count=%" PRIu32 " offset=%" PRIu64 " fua=%d",
b->name, count, offset, fua);
r = b->trim (c, count, offset, flags, err);
if (r == -1)
assert (*err);
return r;
}
int
backend_zero (struct context *c,
uint32_t count, uint64_t offset, uint32_t flags,
int *err)
{
PUSH_CONTEXT_FOR_SCOPE (c);
struct backend *b = c->b;
bool fua = !!(flags & NBDKIT_FLAG_FUA);
bool fast = !!(flags & NBDKIT_FLAG_FAST_ZERO);
int r;
assert (b->magic == BACKEND_MAGIC);
assert (c->handle && (c->state & HANDLE_CONNECTED));
assert (c->can_write == 1);
assert (c->can_zero > NBDKIT_ZERO_NONE);
assert (backend_valid_range (c, offset, count));
assert (!(flags & ~(NBDKIT_FLAG_MAY_TRIM | NBDKIT_FLAG_FUA |
NBDKIT_FLAG_FAST_ZERO)));
if (fua)
assert (c->can_fua > NBDKIT_FUA_NONE);
if (fast)
assert (c->can_fast_zero == 1);
datapath_debug ("%s: zero count=%" PRIu32 " offset=%" PRIu64
" may_trim=%d fua=%d fast=%d",
b->name, count, offset,
!!(flags & NBDKIT_FLAG_MAY_TRIM), fua, fast);
if (c->can_zero == NBDKIT_ZERO_NATIVE)
r = b->zero (c, count, offset, flags, err);
else { /* NBDKIT_ZERO_EMULATE */
int writeflags = 0;
bool need_flush = false;
if (fast) {
*err = ENOTSUP;
return -1;
}
if (fua) {
if (c->can_fua == NBDKIT_FUA_EMULATE)
need_flush = true;
else
writeflags = NBDKIT_FLAG_FUA;
}
while (count) {
/* Always contains zeroes, but we can't use const or else gcc 9
* will use .rodata instead of .bss and inflate the binary size.
*/
static /* const */ char buffer[MAX_REQUEST_SIZE];
uint32_t limit = MIN (count, MAX_REQUEST_SIZE);
if (limit == count && need_flush)
writeflags = NBDKIT_FLAG_FUA;
if (backend_pwrite (c, buffer, limit, offset, writeflags, err) == -1)
return -1;
offset += limit;
count -= limit;
}
r = 0;
}
if (r == -1) {
assert (*err);
if (!fast)
assert (*err != ENOTSUP && *err != EOPNOTSUPP);
}
return r;
}
int
backend_extents (struct context *c,
uint32_t count, uint64_t offset, uint32_t flags,
struct nbdkit_extents *extents, int *err)
{
PUSH_CONTEXT_FOR_SCOPE (c);
struct backend *b = c->b;
int r;
assert (b->magic == BACKEND_MAGIC);
assert (c->handle && (c->state & HANDLE_CONNECTED));
assert (c->can_extents >= 0);
assert (backend_valid_range (c, offset, count));
assert (!(flags & ~NBDKIT_FLAG_REQ_ONE));
datapath_debug ("%s: extents count=%" PRIu32 " offset=%" PRIu64 " req_one=%d",
b->name, count, offset, !!(flags & NBDKIT_FLAG_REQ_ONE));
if (c->can_extents == 0) {
/* By default it is safe assume that everything in the range is
* allocated.
*/
r = nbdkit_add_extent (extents, offset, count, 0 /* allocated data */);
if (r == -1)
*err = errno;
return r;
}
r = b->extents (c, count, offset, flags, extents, err);
if (r == -1)
assert (*err);
return r;
}
int
backend_cache (struct context *c,
uint32_t count, uint64_t offset,
uint32_t flags, int *err)
{
PUSH_CONTEXT_FOR_SCOPE (c);
struct backend *b = c->b;
int r;
assert (b->magic == BACKEND_MAGIC);
assert (c->handle && (c->state & HANDLE_CONNECTED));
assert (c->can_cache > NBDKIT_CACHE_NONE);
assert (backend_valid_range (c, offset, count));
assert (flags == 0);
datapath_debug ("%s: cache count=%" PRIu32 " offset=%" PRIu64,
b->name, count, offset);
if (c->can_cache == NBDKIT_CACHE_EMULATE) {
static char buf[MAX_REQUEST_SIZE]; /* data sink, never read */
uint32_t limit;
while (count) {
limit = MIN (count, sizeof buf);
if (backend_pread (c, buf, limit, offset, flags, err) == -1)
return -1;
count -= limit;
offset += limit;
}
return 0;
}
r = b->cache (c, count, offset, flags, err);
if (r == -1)
assert (*err);
return r;
}
|