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
|
/* 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 <stdbool.h>
#include <stdarg.h>
#include <stdint.h>
#include <inttypes.h>
#include <limits.h>
#include <string.h>
#include <unistd.h>
#include <fcntl.h>
#include <sys/stat.h>
#include <pthread.h>
#include <libssh/libssh.h>
#include <libssh/sftp.h>
#include <libssh/callbacks.h>
#include <nbdkit-plugin.h>
#include "array-size.h"
#include "cleanup.h"
#include "const-string-vector.h"
#include "minmax.h"
static const char *host = NULL;
static const char *path = NULL;
static const char *port = NULL;
static const char *user = NULL;
static char *password = NULL;
static bool verify_remote_host = true;
static const char *known_hosts = NULL;
static const_string_vector identities = empty_vector;
static uint32_t timeout = 0;
static bool compression = false;
static bool create = false;
static int64_t create_size = -1;
static unsigned create_mode = S_IRUSR | S_IWUSR /* 0600 */;
/* config can be:
* NULL => parse options from default file
* "" => do NOT parse options
* some filename => parse options from filename
*/
static const char *config = NULL;
/* Use '-D ssh.log=N' to set. */
NBDKIT_DLL_PUBLIC int ssh_debug_log = 0;
/* If ssh_debug_log > 0 then the library will call this function with
* log messages.
*/
static void
log_callback (int priority, const char *function, const char *message, void *vp)
{
const char *levels[] =
{ "none", "warning", "protocol", "packet", "function" };
const char *level;
if (priority >= 0 && priority < ARRAY_SIZE (levels))
level = levels[priority];
else
level = "unknown";
/* NB We don't need to print the function parameter because it is
* always prefixed to the message.
*/
nbdkit_debug ("libssh: %s: %s", level, message);
}
static void
ssh_unload (void)
{
free (identities.ptr);
free (password);
}
/* Called for each key=value passed on the command line. */
static int
ssh_config (const char *key, const char *value)
{
int r;
if (strcmp (key, "host") == 0)
host = value;
else if (strcmp (key, "path") == 0)
path = value;
else if (strcmp (key, "port") == 0)
port = value;
else if (strcmp (key, "user") == 0)
user = value;
else if (strcmp (key, "password") == 0) {
free (password);
if (nbdkit_read_password (value, &password) == -1)
return -1;
}
else if (strcmp (key, "config") == 0)
config = value; /* %-expanded, cannot use nbdkit_absolute_path */
else if (strcmp (key, "known-hosts") == 0)
known_hosts = value; /* %-expanded, cannot use nbdkit_absolute_path */
else if (strcmp (key, "identity") == 0) {
/* %-expanded, cannot use nbdkit_absolute_path on value */
if (const_string_vector_append (&identities, value) == -1) {
nbdkit_error ("realloc: %m");
return -1;
}
}
else if (strcmp (key, "verify-remote-host") == 0) {
r = nbdkit_parse_bool (value);
if (r == -1)
return -1;
verify_remote_host = r;
}
else if (strcmp (key, "timeout") == 0) {
if (nbdkit_parse_uint32_t ("timeout", value, &timeout) == -1)
return -1;
#if LONG_MAX < UINT32_MAX
/* C17 5.2.4.2.1 requires that LONG_MAX is at least 2^31 - 1.
* However a large positive number might still exceed the limit.
*/
if (timeout > LONG_MAX) {
nbdkit_error ("timeout is too large");
return -1;
}
#endif
}
else if (strcmp (key, "compression") == 0) {
r = nbdkit_parse_bool (value);
if (r == -1)
return -1;
compression = r;
}
else if (strcmp (key, "create") == 0) {
r = nbdkit_parse_bool (value);
if (r == -1)
return -1;
create = r;
}
else if (strcmp (key, "create-size") == 0) {
create_size = nbdkit_parse_size (value);
if (create_size == -1)
return -1;
}
else if (strcmp (key, "create-mode") == 0) {
r = nbdkit_parse_unsigned (key, value, &create_mode);
if (r == -1)
return -1;
/* OpenSSH checks this too. */
if (create_mode > 0777) {
nbdkit_error ("create-mode must be <= 0777");
return -1;
}
}
else {
nbdkit_error ("unknown parameter '%s'", key);
return -1;
}
return 0;
}
/* The host and path parameters are mandatory. */
static int
ssh_config_complete (void)
{
if (host == NULL || path == NULL) {
nbdkit_error ("you must supply the host and path parameters "
"after the plugin name on the command line");
return -1;
}
/* If create=true, create-size must be supplied. */
if (create && create_size == -1) {
nbdkit_error ("if using create=true, you must specify the size "
"of the new remote file using create-size=SIZE");
return -1;
}
return 0;
}
#define ssh_config_help \
"host=<HOST> (required) SSH server hostname.\n" \
"[path=]<PATH> (required) SSH remote path.\n" \
"port=<PORT> SSH protocol port number.\n" \
"user=<USER> SSH user name.\n" \
"password=<PASSWORD> SSH password.\n" \
"config=<CONFIG> Alternate local SSH configuration file.\n" \
"known-hosts=<FILENAME> Set location of known_hosts file.\n" \
"identity=<FILENAME> Prepend private key (identity) file.\n" \
"timeout=SECS Set SSH connection timeout.\n" \
"verify-remote-host=false Ignore known_hosts.\n" \
"compression=true Enable compression.\n" \
"create=true Create the remote file.\n" \
"create-mode=MODE Set the permissions of the remote file.\n" \
"create-size=SIZE Set the size of the remote file."
/* Since we must simulate atomic pread and pwrite using seek +
* read/write, calls on each handle must be serialized.
*/
#define THREAD_MODEL NBDKIT_THREAD_MODEL_SERIALIZE_REQUESTS
/* The per-connection handle. */
struct ssh_handle {
ssh_session session;
sftp_session sftp;
sftp_file file;
};
/* Verify the remote host.
* See: http://api.libssh.org/master/libssh_tutor_guided_tour.html
*/
static int
do_verify_remote_host (struct ssh_handle *h)
{
enum ssh_known_hosts_e state;
state = ssh_session_is_known_server (h->session);
switch (state) {
case SSH_KNOWN_HOSTS_OK:
/* OK */
break;
case SSH_KNOWN_HOSTS_CHANGED:
nbdkit_error ("host key for server changed");
return -1;
case SSH_KNOWN_HOSTS_OTHER:
nbdkit_error ("host key for server was not found "
"but another type of key exists");
return -1;
case SSH_KNOWN_HOSTS_NOT_FOUND:
/* This is not actually an error, but the user must ensure the
* host key is set up before using nbdkit so we error out here.
*/
nbdkit_error ("could not find known_hosts file");
return -1;
case SSH_KNOWN_HOSTS_UNKNOWN:
/* See: https://gitlab.com/nbdkit/nbdkit/-/issues/10 */
nbdkit_error ("either the host key is unknown, you must use ssh "
"first and accept the host key; or the known_hosts "
"file (usually ~/.ssh/known_hosts) could not be opened, "
"check that the file exists and file permissions");
return -1;
case SSH_KNOWN_HOSTS_ERROR:
nbdkit_error ("known hosts error: %s", ssh_get_error (h->session));
return -1;
}
return 0;
}
/* Authenticate.
* See: http://api.libssh.org/master/libssh_tutor_authentication.html
*/
static int
authenticate_pubkey (ssh_session session)
{
int rc;
rc = ssh_userauth_publickey_auto (session, NULL, NULL);
if (rc == SSH_AUTH_ERROR)
nbdkit_debug ("public key authentication failed: %s",
ssh_get_error (session));
return rc;
}
static int
authenticate_password (ssh_session session, const char *pass)
{
int rc;
rc = ssh_userauth_password (session, NULL, pass);
if (rc == SSH_AUTH_ERROR)
nbdkit_debug ("password authentication failed: %s",
ssh_get_error (session));
return rc;
}
static int
authenticate (struct ssh_handle *h)
{
int method, rc;
rc = ssh_userauth_none (h->session, NULL);
if (rc == SSH_AUTH_SUCCESS)
return 0;
if (rc == SSH_AUTH_ERROR)
return -1;
method = ssh_userauth_list (h->session, NULL);
nbdkit_debug ("authentication methods offered by the server [0x%x]: "
"%s%s%s%s%s%s%s",
method,
method & SSH_AUTH_METHOD_NONE ? " none" : "",
method & SSH_AUTH_METHOD_PASSWORD ? " password" : "",
method & SSH_AUTH_METHOD_PUBLICKEY ? " publickey" : "",
method & SSH_AUTH_METHOD_HOSTBASED ? " hostbased" : "",
method & SSH_AUTH_METHOD_INTERACTIVE
? " keyboard-interactive" : "",
method & SSH_AUTH_METHOD_GSSAPI_MIC
? " gssapi-with-mic" : "",
method & ~0x3f
? " (and other unknown methods)" : "");
if (method & SSH_AUTH_METHOD_PUBLICKEY) {
rc = authenticate_pubkey (h->session);
if (rc == SSH_AUTH_SUCCESS) return 0;
}
if (password != NULL && (method & SSH_AUTH_METHOD_PASSWORD)) {
rc = authenticate_password (h->session, password);
if (rc == SSH_AUTH_SUCCESS) return 0;
}
/* All compatible methods were tried and none worked. Come up with
* an actionable diagnostic message if we recognise the problem.
*/
if (!(method & SSH_AUTH_METHOD_PUBLICKEY) && password == NULL) {
nbdkit_error ("the server does not offer public key authentication; "
"try using the password=... parameter");
return -1;
}
if ((method & SSH_AUTH_METHOD_PASSWORD) && password != NULL) {
nbdkit_error ("password authentication failed, "
"is the username and password correct?");
return -1;
}
if (!(method & SSH_AUTH_METHOD_PASSWORD) && password != NULL) {
nbdkit_error ("the server does not offer password authentication "
"but you tried to use a password; if you have root access "
"to the server, try editing 'sshd_config' and setting "
"'PasswordAuthentication yes'; otherwise try setting up "
"public key authentication");
return -1;
}
nbdkit_error ("all possible authentication methods failed");
return -1;
}
/* This function opens or creates the remote file (depending on
* create=false|true). Parallel connections might call this function
* at the same time, and so we must hold a lock to ensure that the
* file is created at most once.
*/
static pthread_mutex_t create_lock = PTHREAD_MUTEX_INITIALIZER;
static sftp_file
open_or_create_path (ssh_session session, sftp_session sftp, int readonly)
{
ACQUIRE_LOCK_FOR_CURRENT_SCOPE (&create_lock);
int access_type;
int r;
sftp_file file;
access_type = readonly ? O_RDONLY : O_RDWR;
if (create) access_type |= O_CREAT | O_TRUNC;
file = sftp_open (sftp, path, access_type, S_IRWXU);
if (!file) {
nbdkit_error ("%s: cannot %s file for %s: %s",
path,
create ? "create" : "open",
readonly ? "reading" : "writing",
ssh_get_error (session));
return NULL;
}
if (create) {
/* There's no sftp_truncate call. However OpenSSH lets you call
* SSH_FXP_SETSTAT + SSH_FILEXFER_ATTR_SIZE which invokes
* truncate(2) on the server. Libssh doesn't provide a binding
* for SSH_FXP_FSETSTAT so we have to pass the session + path.
*/
struct sftp_attributes_struct attrs = {
.flags = SSH_FILEXFER_ATTR_SIZE |
SSH_FILEXFER_ATTR_PERMISSIONS,
.size = create_size,
.permissions = create_mode,
};
r = sftp_setstat (sftp, path, &attrs);
if (r != SSH_OK) {
nbdkit_error ("setstat failed: %s", ssh_get_error (session));
/* Best-effort attempt to delete the remote file on failure. */
r = sftp_unlink (sftp, path);
if (r != SSH_OK)
nbdkit_debug ("unlink failed: %s", ssh_get_error (session));
return NULL;
}
}
/* On the next connection, don't create or truncate the file. */
create = false;
return file;
}
/* Create the per-connection handle. */
static void *
ssh_open (int readonly)
{
struct ssh_handle *h;
const int set = 1;
size_t i;
int r;
h = calloc (1, sizeof *h);
if (h == NULL) {
nbdkit_error ("calloc: %m");
return NULL;
}
/* Set up the SSH session. */
h->session = ssh_new ();
if (!h->session) {
nbdkit_error ("failed to initialize libssh session");
goto err;
}
if (ssh_debug_log > 0) {
ssh_options_set (h->session, SSH_OPTIONS_LOG_VERBOSITY, &ssh_debug_log);
/* Even though this is setting a "global", we must call it every
* time we set the session otherwise messages go to stderr.
*/
ssh_set_log_callback (log_callback);
}
/* Disable Nagle's algorithm which is recommended by the libssh
* developers to improve performance of sftp. Ignore any error if
* we fail to set this.
*/
ssh_options_set (h->session, SSH_OPTIONS_NODELAY, &set);
r = ssh_options_set (h->session, SSH_OPTIONS_HOST, host);
if (r != SSH_OK) {
nbdkit_error ("failed to set host in libssh session: %s: %s",
host, ssh_get_error (h->session));
goto err;
}
if (port != NULL) {
r = ssh_options_set (h->session, SSH_OPTIONS_PORT_STR, port);
if (r != SSH_OK) {
nbdkit_error ("failed to set port in libssh session: %s: %s",
port, ssh_get_error (h->session));
goto err;
}
}
if (user != NULL) {
r = ssh_options_set (h->session, SSH_OPTIONS_USER, user);
if (r != SSH_OK) {
nbdkit_error ("failed to set user in libssh session: %s: %s",
user, ssh_get_error (h->session));
goto err;
}
}
if (known_hosts != NULL) {
r = ssh_options_set (h->session, SSH_OPTIONS_KNOWNHOSTS, known_hosts);
if (r != SSH_OK) {
nbdkit_error ("failed to set known_hosts in libssh session: %s: %s",
known_hosts, ssh_get_error (h->session));
goto err;
}
/* XXX This is still going to read the global file, and there
* seems to be no way to disable that. However it doesn't matter
* as this file is rarely present.
*/
}
for (i = 0; i < identities.len; ++i) {
r = ssh_options_set (h->session,
SSH_OPTIONS_ADD_IDENTITY, identities.ptr[i]);
if (r != SSH_OK) {
nbdkit_error ("failed to add identity in libssh session: %s: %s",
identities.ptr[i], ssh_get_error (h->session));
goto err;
}
}
if (timeout > 0) {
long arg = timeout;
r = ssh_options_set (h->session, SSH_OPTIONS_TIMEOUT, &arg);
if (r != SSH_OK) {
nbdkit_error ("failed to set timeout in libssh session: %" PRIu32 ": %s",
timeout, ssh_get_error (h->session));
goto err;
}
}
if (compression) {
r = ssh_options_set (h->session, SSH_OPTIONS_COMPRESSION, "yes");
if (r != SSH_OK) {
nbdkit_error ("failed to enable compression in libssh session: %s",
ssh_get_error (h->session));
goto err;
}
}
/* Read SSH config or alternative file. Must happen last so that
* the hostname has been set already.
*/
if (config == NULL) {
/* NULL means parse the default files, which are ~/.ssh/config and
* /etc/ssh/ssh_config. If either are missing then they are
* ignored.
*/
r = ssh_options_parse_config (h->session, NULL);
if (r != SSH_OK) {
nbdkit_error ("failed to parse local SSH configuration: %s",
ssh_get_error (h->session));
goto err;
}
}
else if (strcmp (config, "") != 0) {
/* User has specified a single file. This function ignores the
* case where the file is missing - should we check this? XXX
*/
r = ssh_options_parse_config (h->session, config);
if (r != SSH_OK) {
nbdkit_error ("failed to parse SSH configuration: %s: %s",
config, ssh_get_error (h->session));
goto err;
}
}
/* Connect. */
r = ssh_connect (h->session);
if (r != SSH_OK) {
nbdkit_error ("failed to connect to remote host: %s: %s",
host, ssh_get_error (h->session));
goto err;
}
/* Verify the remote host. */
if (verify_remote_host && do_verify_remote_host (h) == -1)
goto err;
/* Authenticate. */
if (authenticate (h) == -1)
goto err;
/* Open the SFTP connection. */
h->sftp = sftp_new (h->session);
if (!h->sftp) {
nbdkit_error ("failed to allocate sftp session: %s",
ssh_get_error (h->session));
goto err;
}
r = sftp_init (h->sftp);
if (r != SSH_OK) {
nbdkit_error ("failed to initialize sftp session: %s",
ssh_get_error (h->session));
goto err;
}
/* Open or create the remote file. */
h->file = open_or_create_path (h->session, h->sftp, readonly);
if (!h->file)
goto err;
nbdkit_debug ("opened libssh handle");
return h;
err:
if (h->file)
sftp_close (h->file);
if (h->sftp)
sftp_free (h->sftp);
if (h->session) {
ssh_disconnect (h->session);
ssh_free (h->session);
}
free (h);
return NULL;
}
/* Free up the per-connection handle. */
static void
ssh_close (void *handle)
{
struct ssh_handle *h = handle;
int r;
r = sftp_close (h->file);
if (r != SSH_OK)
nbdkit_error ("cannot close file: %s", ssh_get_error (h->session));
sftp_free (h->sftp);
ssh_disconnect (h->session);
ssh_free (h->session);
free (h);
}
/* Get the file size. */
static int64_t
ssh_get_size (void *handle)
{
struct ssh_handle *h = handle;
sftp_attributes attrs;
int64_t r;
attrs = sftp_fstat (h->file);
r = attrs->size;
sftp_attributes_free (attrs);
return r;
}
/* Read data from the remote server. */
static int
ssh_pread (void *handle, void *buf, uint32_t count, uint64_t offset)
{
struct ssh_handle *h = handle;
int r;
ssize_t rs;
r = sftp_seek64 (h->file, offset);
if (r != SSH_OK) {
nbdkit_error ("seek64 failed: %s", ssh_get_error (h->session));
return -1;
}
while (count > 0) {
rs = sftp_read (h->file, buf, count);
if (rs < 0) {
nbdkit_error ("read failed: %s (%zd)", ssh_get_error (h->session), rs);
return -1;
}
buf += rs;
count -= rs;
}
return 0;
}
/* Write data to the remote server. */
static int
ssh_pwrite (void *handle, const void *buf, uint32_t count, uint64_t offset)
{
struct ssh_handle *h = handle;
int r;
ssize_t rs;
r = sftp_seek64 (h->file, offset);
if (r != SSH_OK) {
nbdkit_error ("seek64 failed: %s", ssh_get_error (h->session));
return -1;
}
while (count > 0) {
/* Openssh has a maximum packet size of 256K, so any write
* requests larger than this will fail in a peculiar way. (This
* limit doesn't seem to include the SFTP protocol overhead).
* Therefore if the count is larger than 128K, reduce the size of
* the request. I don't know whether 256K is a limit that applies
* to all servers.
*/
rs = sftp_write (h->file, buf, MIN (count, 128*1024));
if (rs < 0) {
nbdkit_error ("write failed: %s (%zd)", ssh_get_error (h->session), rs);
return -1;
}
buf += rs;
count -= rs;
}
return 0;
}
static int
ssh_can_flush (void *handle)
{
struct ssh_handle *h = handle;
/* I added this extension to openssh 6.5 (April 2013). It may not
* be available in other SSH servers.
*/
return sftp_extension_supported (h->sftp, "fsync@openssh.com", "1");
}
static int
ssh_can_multi_conn (void *handle)
{
struct ssh_handle *h = handle;
/* After examining the OpenSSH implementation of sftp-server we
* concluded that its write/flush behaviour is safe for advertising
* multi-conn. Other servers may not be safe. Use the
* fsync@openssh.com feature as a proxy.
*/
return sftp_extension_supported (h->sftp, "fsync@openssh.com", "1");
}
static int
ssh_flush (void *handle)
{
struct ssh_handle *h = handle;
int r;
again:
r = sftp_fsync (h->file);
if (r == SSH_AGAIN)
goto again;
else if (r != SSH_OK) {
nbdkit_error ("fsync failed: %s", ssh_get_error (h->session));
return -1;
}
return 0;
}
static struct nbdkit_plugin plugin = {
.name = "ssh",
.version = PACKAGE_VERSION,
.unload = ssh_unload,
.config = ssh_config,
.config_complete = ssh_config_complete,
.config_help = ssh_config_help,
.magic_config_key = "path",
.open = ssh_open,
.close = ssh_close,
.get_size = ssh_get_size,
.pread = ssh_pread,
.pwrite = ssh_pwrite,
.can_flush = ssh_can_flush,
.flush = ssh_flush,
.can_multi_conn = ssh_can_multi_conn,
};
NBDKIT_REGISTER_PLUGIN (plugin)
|