2 * Secure Shell (ssh) backend for QEMU.
4 * Copyright (C) 2013 Red Hat Inc., Richard W.M. Jones <rjones@redhat.com>
6 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 * of this software and associated documentation files (the "Software"), to deal
8 * in the Software without restriction, including without limitation the rights
9 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10 * copies of the Software, and to permit persons to whom the Software is
11 * furnished to do so, subject to the following conditions:
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
25 #include "qemu/osdep.h"
28 #include <libssh2_sftp.h>
30 #include "block/block_int.h"
31 #include "qapi/error.h"
32 #include "qemu/error-report.h"
33 #include "qemu/option.h"
34 #include "qemu/cutils.h"
35 #include "qemu/sockets.h"
37 #include "qapi/qapi-visit-sockets.h"
38 #include "qapi/qapi-visit-block-core.h"
39 #include "qapi/qmp/qdict.h"
40 #include "qapi/qmp/qstring.h"
41 #include "qapi/qobject-input-visitor.h"
42 #include "qapi/qobject-output-visitor.h"
44 /* DEBUG_SSH=1 enables the DPRINTF (debugging printf) statements in
45 * this block driver code.
47 * TRACE_LIBSSH2=<bitmask> enables tracing in libssh2 itself. Note
48 * that this requires that libssh2 was specially compiled with the
49 * `./configure --enable-debug' option, so most likely you will have
50 * to compile it yourself. The meaning of <bitmask> is described
51 * here: http://www.libssh2.org/libssh2_trace.html
54 #define TRACE_LIBSSH2 0 /* or try: LIBSSH2_TRACE_SFTP */
56 #define DPRINTF(fmt, ...) \
59 fprintf(stderr, "ssh: %-15s " fmt "\n", \
60 __func__, ##__VA_ARGS__); \
64 typedef struct BDRVSSHState
{
69 int sock
; /* socket */
70 LIBSSH2_SESSION
*session
; /* ssh session */
71 LIBSSH2_SFTP
*sftp
; /* sftp session */
72 LIBSSH2_SFTP_HANDLE
*sftp_handle
; /* sftp remote file handle */
74 /* See ssh_seek() function below. */
78 /* File attributes at open. We try to keep the .filesize field
79 * updated if it changes (eg by writing at the end of the file).
81 LIBSSH2_SFTP_ATTRIBUTES attrs
;
83 InetSocketAddress
*inet
;
85 /* Used to warn if 'flush' is not supported. */
86 bool unsafe_flush_warning
;
89 static void ssh_state_init(BDRVSSHState
*s
)
91 memset(s
, 0, sizeof *s
);
94 qemu_co_mutex_init(&s
->lock
);
97 static void ssh_state_free(BDRVSSHState
*s
)
100 libssh2_sftp_close(s
->sftp_handle
);
103 libssh2_sftp_shutdown(s
->sftp
);
106 libssh2_session_disconnect(s
->session
,
107 "from qemu ssh client: "
108 "user closed the connection");
109 libssh2_session_free(s
->session
);
116 static void GCC_FMT_ATTR(3, 4)
117 session_error_setg(Error
**errp
, BDRVSSHState
*s
, const char *fs
, ...)
123 msg
= g_strdup_vprintf(fs
, args
);
130 /* This is not an errno. See <libssh2.h>. */
131 ssh_err_code
= libssh2_session_last_error(s
->session
,
133 error_setg(errp
, "%s: %s (libssh2 error code: %d)",
134 msg
, ssh_err
, ssh_err_code
);
136 error_setg(errp
, "%s", msg
);
141 static void GCC_FMT_ATTR(3, 4)
142 sftp_error_setg(Error
**errp
, BDRVSSHState
*s
, const char *fs
, ...)
148 msg
= g_strdup_vprintf(fs
, args
);
154 unsigned long sftp_err_code
;
156 /* This is not an errno. See <libssh2.h>. */
157 ssh_err_code
= libssh2_session_last_error(s
->session
,
159 /* See <libssh2_sftp.h>. */
160 sftp_err_code
= libssh2_sftp_last_error((s
)->sftp
);
163 "%s: %s (libssh2 error code: %d, sftp error code: %lu)",
164 msg
, ssh_err
, ssh_err_code
, sftp_err_code
);
166 error_setg(errp
, "%s", msg
);
171 static void GCC_FMT_ATTR(2, 3)
172 sftp_error_report(BDRVSSHState
*s
, const char *fs
, ...)
177 error_vprintf(fs
, args
);
182 unsigned long sftp_err_code
;
184 /* This is not an errno. See <libssh2.h>. */
185 ssh_err_code
= libssh2_session_last_error(s
->session
,
187 /* See <libssh2_sftp.h>. */
188 sftp_err_code
= libssh2_sftp_last_error((s
)->sftp
);
190 error_printf(": %s (libssh2 error code: %d, sftp error code: %lu)",
191 ssh_err
, ssh_err_code
, sftp_err_code
);
198 static int parse_uri(const char *filename
, QDict
*options
, Error
**errp
)
205 uri
= uri_parse(filename
);
210 if (g_strcmp0(uri
->scheme
, "ssh") != 0) {
211 error_setg(errp
, "URI scheme must be 'ssh'");
215 if (!uri
->server
|| strcmp(uri
->server
, "") == 0) {
216 error_setg(errp
, "missing hostname in URI");
220 if (!uri
->path
|| strcmp(uri
->path
, "") == 0) {
221 error_setg(errp
, "missing remote path in URI");
225 qp
= query_params_parse(uri
->query
);
227 error_setg(errp
, "could not parse query parameters");
231 if(uri
->user
&& strcmp(uri
->user
, "") != 0) {
232 qdict_put_str(options
, "user", uri
->user
);
235 qdict_put_str(options
, "server.host", uri
->server
);
237 port_str
= g_strdup_printf("%d", uri
->port
?: 22);
238 qdict_put_str(options
, "server.port", port_str
);
241 qdict_put_str(options
, "path", uri
->path
);
243 /* Pick out any query parameters that we understand, and ignore
246 for (i
= 0; i
< qp
->n
; ++i
) {
247 if (strcmp(qp
->p
[i
].name
, "host_key_check") == 0) {
248 qdict_put_str(options
, "host_key_check", qp
->p
[i
].value
);
252 query_params_free(qp
);
263 static bool ssh_has_filename_options_conflict(QDict
*options
, Error
**errp
)
265 const QDictEntry
*qe
;
267 for (qe
= qdict_first(options
); qe
; qe
= qdict_next(options
, qe
)) {
268 if (!strcmp(qe
->key
, "host") ||
269 !strcmp(qe
->key
, "port") ||
270 !strcmp(qe
->key
, "path") ||
271 !strcmp(qe
->key
, "user") ||
272 !strcmp(qe
->key
, "host_key_check") ||
273 strstart(qe
->key
, "server.", NULL
))
275 error_setg(errp
, "Option '%s' cannot be used with a file name",
284 static void ssh_parse_filename(const char *filename
, QDict
*options
,
287 if (ssh_has_filename_options_conflict(options
, errp
)) {
291 parse_uri(filename
, options
, errp
);
294 static int check_host_key_knownhosts(BDRVSSHState
*s
,
295 const char *host
, int port
, Error
**errp
)
298 char *knh_file
= NULL
;
299 LIBSSH2_KNOWNHOSTS
*knh
= NULL
;
300 struct libssh2_knownhost
*found
;
306 hostkey
= libssh2_session_hostkey(s
->session
, &len
, &type
);
309 session_error_setg(errp
, s
, "failed to read remote host key");
313 knh
= libssh2_knownhost_init(s
->session
);
316 session_error_setg(errp
, s
,
317 "failed to initialize known hosts support");
321 home
= getenv("HOME");
323 knh_file
= g_strdup_printf("%s/.ssh/known_hosts", home
);
325 knh_file
= g_strdup_printf("/root/.ssh/known_hosts");
328 /* Read all known hosts from OpenSSH-style known_hosts file. */
329 libssh2_knownhost_readfile(knh
, knh_file
, LIBSSH2_KNOWNHOST_FILE_OPENSSH
);
331 r
= libssh2_knownhost_checkp(knh
, host
, port
, hostkey
, len
,
332 LIBSSH2_KNOWNHOST_TYPE_PLAIN
|
333 LIBSSH2_KNOWNHOST_KEYENC_RAW
,
336 case LIBSSH2_KNOWNHOST_CHECK_MATCH
:
338 DPRINTF("host key OK: %s", found
->key
);
340 case LIBSSH2_KNOWNHOST_CHECK_MISMATCH
:
342 session_error_setg(errp
, s
,
343 "host key does not match the one in known_hosts"
344 " (found key %s)", found
->key
);
346 case LIBSSH2_KNOWNHOST_CHECK_NOTFOUND
:
348 session_error_setg(errp
, s
, "no host key was found in known_hosts");
350 case LIBSSH2_KNOWNHOST_CHECK_FAILURE
:
352 session_error_setg(errp
, s
,
353 "failure matching the host key with known_hosts");
357 session_error_setg(errp
, s
, "unknown error matching the host key"
358 " with known_hosts (%d)", r
);
362 /* known_hosts checking successful. */
367 libssh2_knownhost_free(knh
);
373 static unsigned hex2decimal(char ch
)
375 if (ch
>= '0' && ch
<= '9') {
377 } else if (ch
>= 'a' && ch
<= 'f') {
378 return 10 + (ch
- 'a');
379 } else if (ch
>= 'A' && ch
<= 'F') {
380 return 10 + (ch
- 'A');
386 /* Compare the binary fingerprint (hash of host key) with the
387 * host_key_check parameter.
389 static int compare_fingerprint(const unsigned char *fingerprint
, size_t len
,
390 const char *host_key_check
)
395 while (*host_key_check
== ':')
397 if (!qemu_isxdigit(host_key_check
[0]) ||
398 !qemu_isxdigit(host_key_check
[1]))
400 c
= hex2decimal(host_key_check
[0]) * 16 +
401 hex2decimal(host_key_check
[1]);
402 if (c
- *fingerprint
!= 0)
403 return c
- *fingerprint
;
408 return *host_key_check
- '\0';
412 check_host_key_hash(BDRVSSHState
*s
, const char *hash
,
413 int hash_type
, size_t fingerprint_len
, Error
**errp
)
415 const char *fingerprint
;
417 fingerprint
= libssh2_hostkey_hash(s
->session
, hash_type
);
419 session_error_setg(errp
, s
, "failed to read remote host key");
423 if(compare_fingerprint((unsigned char *) fingerprint
, fingerprint_len
,
425 error_setg(errp
, "remote host key does not match host_key_check '%s'",
433 static int check_host_key(BDRVSSHState
*s
, const char *host
, int port
,
434 SshHostKeyCheck
*hkc
, Error
**errp
)
436 SshHostKeyCheckMode mode
;
441 mode
= SSH_HOST_KEY_CHECK_MODE_KNOWN_HOSTS
;
445 case SSH_HOST_KEY_CHECK_MODE_NONE
:
447 case SSH_HOST_KEY_CHECK_MODE_HASH
:
448 if (hkc
->u
.hash
.type
== SSH_HOST_KEY_CHECK_HASH_TYPE_MD5
) {
449 return check_host_key_hash(s
, hkc
->u
.hash
.hash
,
450 LIBSSH2_HOSTKEY_HASH_MD5
, 16, errp
);
451 } else if (hkc
->u
.hash
.type
== SSH_HOST_KEY_CHECK_HASH_TYPE_SHA1
) {
452 return check_host_key_hash(s
, hkc
->u
.hash
.hash
,
453 LIBSSH2_HOSTKEY_HASH_SHA1
, 20, errp
);
455 g_assert_not_reached();
457 case SSH_HOST_KEY_CHECK_MODE_KNOWN_HOSTS
:
458 return check_host_key_knownhosts(s
, host
, port
, errp
);
460 g_assert_not_reached();
466 static int authenticate(BDRVSSHState
*s
, const char *user
, Error
**errp
)
469 const char *userauthlist
;
470 LIBSSH2_AGENT
*agent
= NULL
;
471 struct libssh2_agent_publickey
*identity
;
472 struct libssh2_agent_publickey
*prev_identity
= NULL
;
474 userauthlist
= libssh2_userauth_list(s
->session
, user
, strlen(user
));
475 if (strstr(userauthlist
, "publickey") == NULL
) {
478 "remote server does not support \"publickey\" authentication");
482 /* Connect to ssh-agent and try each identity in turn. */
483 agent
= libssh2_agent_init(s
->session
);
486 session_error_setg(errp
, s
, "failed to initialize ssh-agent support");
489 if (libssh2_agent_connect(agent
)) {
491 session_error_setg(errp
, s
, "failed to connect to ssh-agent");
494 if (libssh2_agent_list_identities(agent
)) {
496 session_error_setg(errp
, s
,
497 "failed requesting identities from ssh-agent");
502 r
= libssh2_agent_get_identity(agent
, &identity
, prev_identity
);
503 if (r
== 1) { /* end of list */
508 session_error_setg(errp
, s
,
509 "failed to obtain identity from ssh-agent");
512 r
= libssh2_agent_userauth(agent
, user
, identity
);
518 /* Failed to authenticate with this identity, try the next one. */
519 prev_identity
= identity
;
523 error_setg(errp
, "failed to authenticate using publickey authentication "
524 "and the identities held by your ssh-agent");
528 /* Note: libssh2 implementation implicitly calls
529 * libssh2_agent_disconnect if necessary.
531 libssh2_agent_free(agent
);
537 static QemuOptsList ssh_runtime_opts
= {
539 .head
= QTAILQ_HEAD_INITIALIZER(ssh_runtime_opts
.head
),
543 .type
= QEMU_OPT_STRING
,
544 .help
= "Host to connect to",
548 .type
= QEMU_OPT_NUMBER
,
549 .help
= "Port to connect to",
552 .name
= "host_key_check",
553 .type
= QEMU_OPT_STRING
,
554 .help
= "Defines how and what to check the host key against",
556 { /* end of list */ }
560 static bool ssh_process_legacy_options(QDict
*output_opts
,
561 QemuOpts
*legacy_opts
,
564 const char *host
= qemu_opt_get(legacy_opts
, "host");
565 const char *port
= qemu_opt_get(legacy_opts
, "port");
566 const char *host_key_check
= qemu_opt_get(legacy_opts
, "host_key_check");
569 error_setg(errp
, "port may not be used without host");
574 qdict_put_str(output_opts
, "server.host", host
);
575 qdict_put_str(output_opts
, "server.port", port
?: stringify(22));
578 if (host_key_check
) {
579 if (strcmp(host_key_check
, "no") == 0) {
580 qdict_put_str(output_opts
, "host-key-check.mode", "none");
581 } else if (strncmp(host_key_check
, "md5:", 4) == 0) {
582 qdict_put_str(output_opts
, "host-key-check.mode", "hash");
583 qdict_put_str(output_opts
, "host-key-check.type", "md5");
584 qdict_put_str(output_opts
, "host-key-check.hash",
586 } else if (strncmp(host_key_check
, "sha1:", 5) == 0) {
587 qdict_put_str(output_opts
, "host-key-check.mode", "hash");
588 qdict_put_str(output_opts
, "host-key-check.type", "sha1");
589 qdict_put_str(output_opts
, "host-key-check.hash",
591 } else if (strcmp(host_key_check
, "yes") == 0) {
592 qdict_put_str(output_opts
, "host-key-check.mode", "known_hosts");
594 error_setg(errp
, "unknown host_key_check setting (%s)",
603 static BlockdevOptionsSsh
*ssh_parse_options(QDict
*options
, Error
**errp
)
605 BlockdevOptionsSsh
*result
= NULL
;
606 QemuOpts
*opts
= NULL
;
607 Error
*local_err
= NULL
;
612 /* Translate legacy options */
613 opts
= qemu_opts_create(&ssh_runtime_opts
, NULL
, 0, &error_abort
);
614 qemu_opts_absorb_qdict(opts
, options
, &local_err
);
616 error_propagate(errp
, local_err
);
620 if (!ssh_process_legacy_options(options
, opts
, errp
)) {
624 /* Create the QAPI object */
625 crumpled
= qdict_crumple(options
, errp
);
626 if (crumpled
== NULL
) {
631 * FIXME .numeric, .to, .ipv4 or .ipv6 don't work with -drive.
632 * .to doesn't matter, it's ignored anyway.
633 * That's because when @options come from -blockdev or
634 * blockdev_add, members are typed according to the QAPI schema,
635 * but when they come from -drive, they're all QString. The
636 * visitor expects the former.
638 v
= qobject_input_visitor_new(crumpled
);
639 visit_type_BlockdevOptionsSsh(v
, NULL
, &result
, &local_err
);
641 qobject_unref(crumpled
);
644 error_propagate(errp
, local_err
);
648 /* Remove the processed options from the QDict (the visitor processes
649 * _all_ options in the QDict) */
650 while ((e
= qdict_first(options
))) {
651 qdict_del(options
, e
->key
);
659 static int connect_to_ssh(BDRVSSHState
*s
, BlockdevOptionsSsh
*opts
,
660 int ssh_flags
, int creat_mode
, Error
**errp
)
666 if (opts
->has_user
) {
669 user
= g_get_user_name();
671 error_setg_errno(errp
, errno
, "Can't get user name");
677 /* Pop the config into our state object, Exit if invalid */
678 s
->inet
= opts
->server
;
681 if (qemu_strtol(s
->inet
->port
, NULL
, 10, &port
) < 0) {
682 error_setg(errp
, "Use only numeric port value");
687 /* Open the socket and connect. */
688 s
->sock
= inet_connect_saddr(s
->inet
, errp
);
694 /* Create SSH session. */
695 s
->session
= libssh2_session_init();
698 session_error_setg(errp
, s
, "failed to initialize libssh2 session");
702 #if TRACE_LIBSSH2 != 0
703 libssh2_trace(s
->session
, TRACE_LIBSSH2
);
706 r
= libssh2_session_handshake(s
->session
, s
->sock
);
709 session_error_setg(errp
, s
, "failed to establish SSH session");
713 /* Check the remote host's key against known_hosts. */
714 ret
= check_host_key(s
, s
->inet
->host
, port
, opts
->host_key_check
, errp
);
720 ret
= authenticate(s
, user
, errp
);
726 s
->sftp
= libssh2_sftp_init(s
->session
);
728 session_error_setg(errp
, s
, "failed to initialize sftp handle");
733 /* Open the remote file. */
734 DPRINTF("opening file %s flags=0x%x creat_mode=0%o",
735 opts
->path
, ssh_flags
, creat_mode
);
736 s
->sftp_handle
= libssh2_sftp_open(s
->sftp
, opts
->path
, ssh_flags
,
738 if (!s
->sftp_handle
) {
739 session_error_setg(errp
, s
, "failed to open remote file '%s'",
745 r
= libssh2_sftp_fstat(s
->sftp_handle
, &s
->attrs
);
747 sftp_error_setg(errp
, s
, "failed to read file attributes");
754 if (s
->sftp_handle
) {
755 libssh2_sftp_close(s
->sftp_handle
);
757 s
->sftp_handle
= NULL
;
759 libssh2_sftp_shutdown(s
->sftp
);
763 libssh2_session_disconnect(s
->session
,
764 "from qemu ssh client: "
765 "error opening connection");
766 libssh2_session_free(s
->session
);
773 static int ssh_file_open(BlockDriverState
*bs
, QDict
*options
, int bdrv_flags
,
776 BDRVSSHState
*s
= bs
->opaque
;
777 BlockdevOptionsSsh
*opts
;
783 ssh_flags
= LIBSSH2_FXF_READ
;
784 if (bdrv_flags
& BDRV_O_RDWR
) {
785 ssh_flags
|= LIBSSH2_FXF_WRITE
;
788 opts
= ssh_parse_options(options
, errp
);
794 ret
= connect_to_ssh(s
, opts
, ssh_flags
, 0, errp
);
799 /* Go non-blocking. */
800 libssh2_session_set_blocking(s
->session
, 0);
802 qapi_free_BlockdevOptionsSsh(opts
);
812 qapi_free_BlockdevOptionsSsh(opts
);
817 /* Note: This is a blocking operation */
818 static int ssh_grow_file(BDRVSSHState
*s
, int64_t offset
, Error
**errp
)
821 char c
[1] = { '\0' };
822 int was_blocking
= libssh2_session_get_blocking(s
->session
);
824 /* offset must be strictly greater than the current size so we do
825 * not overwrite anything */
826 assert(offset
> 0 && offset
> s
->attrs
.filesize
);
828 libssh2_session_set_blocking(s
->session
, 1);
830 libssh2_sftp_seek64(s
->sftp_handle
, offset
- 1);
831 ret
= libssh2_sftp_write(s
->sftp_handle
, c
, 1);
833 libssh2_session_set_blocking(s
->session
, was_blocking
);
836 sftp_error_setg(errp
, s
, "Failed to grow file");
840 s
->attrs
.filesize
= offset
;
844 static QemuOptsList ssh_create_opts
= {
845 .name
= "ssh-create-opts",
846 .head
= QTAILQ_HEAD_INITIALIZER(ssh_create_opts
.head
),
849 .name
= BLOCK_OPT_SIZE
,
850 .type
= QEMU_OPT_SIZE
,
851 .help
= "Virtual disk size"
853 { /* end of list */ }
857 static int ssh_co_create(BlockdevCreateOptions
*options
, Error
**errp
)
859 BlockdevCreateOptionsSsh
*opts
= &options
->u
.ssh
;
863 assert(options
->driver
== BLOCKDEV_DRIVER_SSH
);
867 ret
= connect_to_ssh(&s
, opts
->location
,
868 LIBSSH2_FXF_READ
|LIBSSH2_FXF_WRITE
|
869 LIBSSH2_FXF_CREAT
|LIBSSH2_FXF_TRUNC
,
875 if (opts
->size
> 0) {
876 ret
= ssh_grow_file(&s
, opts
->size
, errp
);
888 static int coroutine_fn
ssh_co_create_opts(const char *filename
, QemuOpts
*opts
,
891 BlockdevCreateOptions
*create_options
;
892 BlockdevCreateOptionsSsh
*ssh_opts
;
894 QDict
*uri_options
= NULL
;
896 create_options
= g_new0(BlockdevCreateOptions
, 1);
897 create_options
->driver
= BLOCKDEV_DRIVER_SSH
;
898 ssh_opts
= &create_options
->u
.ssh
;
900 /* Get desired file size. */
901 ssh_opts
->size
= ROUND_UP(qemu_opt_get_size_del(opts
, BLOCK_OPT_SIZE
, 0),
903 DPRINTF("total_size=%" PRIi64
, ssh_opts
->size
);
905 uri_options
= qdict_new();
906 ret
= parse_uri(filename
, uri_options
, errp
);
911 ssh_opts
->location
= ssh_parse_options(uri_options
, errp
);
912 if (ssh_opts
->location
== NULL
) {
917 ret
= ssh_co_create(create_options
, errp
);
920 qobject_unref(uri_options
);
921 qapi_free_BlockdevCreateOptions(create_options
);
925 static void ssh_close(BlockDriverState
*bs
)
927 BDRVSSHState
*s
= bs
->opaque
;
932 static int ssh_has_zero_init(BlockDriverState
*bs
)
934 BDRVSSHState
*s
= bs
->opaque
;
935 /* Assume false, unless we can positively prove it's true. */
936 int has_zero_init
= 0;
938 if (s
->attrs
.flags
& LIBSSH2_SFTP_ATTR_PERMISSIONS
) {
939 if (s
->attrs
.permissions
& LIBSSH2_SFTP_S_IFREG
) {
944 return has_zero_init
;
947 typedef struct BDRVSSHRestart
{
948 BlockDriverState
*bs
;
952 static void restart_coroutine(void *opaque
)
954 BDRVSSHRestart
*restart
= opaque
;
955 BlockDriverState
*bs
= restart
->bs
;
956 BDRVSSHState
*s
= bs
->opaque
;
957 AioContext
*ctx
= bdrv_get_aio_context(bs
);
959 DPRINTF("co=%p", restart
->co
);
960 aio_set_fd_handler(ctx
, s
->sock
, false, NULL
, NULL
, NULL
, NULL
);
962 aio_co_wake(restart
->co
);
965 /* A non-blocking call returned EAGAIN, so yield, ensuring the
966 * handlers are set up so that we'll be rescheduled when there is an
967 * interesting event on the socket.
969 static coroutine_fn
void co_yield(BDRVSSHState
*s
, BlockDriverState
*bs
)
972 IOHandler
*rd_handler
= NULL
, *wr_handler
= NULL
;
973 BDRVSSHRestart restart
= {
975 .co
= qemu_coroutine_self()
978 r
= libssh2_session_block_directions(s
->session
);
980 if (r
& LIBSSH2_SESSION_BLOCK_INBOUND
) {
981 rd_handler
= restart_coroutine
;
983 if (r
& LIBSSH2_SESSION_BLOCK_OUTBOUND
) {
984 wr_handler
= restart_coroutine
;
987 DPRINTF("s->sock=%d rd_handler=%p wr_handler=%p", s
->sock
,
988 rd_handler
, wr_handler
);
990 aio_set_fd_handler(bdrv_get_aio_context(bs
), s
->sock
,
991 false, rd_handler
, wr_handler
, NULL
, &restart
);
992 qemu_coroutine_yield();
993 DPRINTF("s->sock=%d - back", s
->sock
);
996 /* SFTP has a function `libssh2_sftp_seek64' which seeks to a position
997 * in the remote file. Notice that it just updates a field in the
998 * sftp_handle structure, so there is no network traffic and it cannot
1001 * However, `libssh2_sftp_seek64' does have a catastrophic effect on
1002 * performance since it causes the handle to throw away all in-flight
1003 * reads and buffered readahead data. Therefore this function tries
1004 * to be intelligent about when to call the underlying libssh2 function.
1006 #define SSH_SEEK_WRITE 0
1007 #define SSH_SEEK_READ 1
1008 #define SSH_SEEK_FORCE 2
1010 static void ssh_seek(BDRVSSHState
*s
, int64_t offset
, int flags
)
1012 bool op_read
= (flags
& SSH_SEEK_READ
) != 0;
1013 bool force
= (flags
& SSH_SEEK_FORCE
) != 0;
1015 if (force
|| op_read
!= s
->offset_op_read
|| offset
!= s
->offset
) {
1016 DPRINTF("seeking to offset=%" PRIi64
, offset
);
1017 libssh2_sftp_seek64(s
->sftp_handle
, offset
);
1019 s
->offset_op_read
= op_read
;
1023 static coroutine_fn
int ssh_read(BDRVSSHState
*s
, BlockDriverState
*bs
,
1024 int64_t offset
, size_t size
,
1029 char *buf
, *end_of_vec
;
1032 DPRINTF("offset=%" PRIi64
" size=%zu", offset
, size
);
1034 ssh_seek(s
, offset
, SSH_SEEK_READ
);
1036 /* This keeps track of the current iovec element ('i'), where we
1037 * will write to next ('buf'), and the end of the current iovec
1042 end_of_vec
= i
->iov_base
+ i
->iov_len
;
1044 /* libssh2 has a hard-coded limit of 2000 bytes per request,
1045 * although it will also do readahead behind our backs. Therefore
1046 * we may have to do repeated reads here until we have read 'size'
1049 for (got
= 0; got
< size
; ) {
1051 DPRINTF("sftp_read buf=%p size=%zu", buf
, end_of_vec
- buf
);
1052 r
= libssh2_sftp_read(s
->sftp_handle
, buf
, end_of_vec
- buf
);
1053 DPRINTF("sftp_read returned %zd", r
);
1055 if (r
== LIBSSH2_ERROR_EAGAIN
|| r
== LIBSSH2_ERROR_TIMEOUT
) {
1060 sftp_error_report(s
, "read failed");
1065 /* EOF: Short read so pad the buffer with zeroes and return it. */
1066 qemu_iovec_memset(qiov
, got
, 0, size
- got
);
1073 if (buf
>= end_of_vec
&& got
< size
) {
1076 end_of_vec
= i
->iov_base
+ i
->iov_len
;
1083 static coroutine_fn
int ssh_co_readv(BlockDriverState
*bs
,
1085 int nb_sectors
, QEMUIOVector
*qiov
)
1087 BDRVSSHState
*s
= bs
->opaque
;
1090 qemu_co_mutex_lock(&s
->lock
);
1091 ret
= ssh_read(s
, bs
, sector_num
* BDRV_SECTOR_SIZE
,
1092 nb_sectors
* BDRV_SECTOR_SIZE
, qiov
);
1093 qemu_co_mutex_unlock(&s
->lock
);
1098 static int ssh_write(BDRVSSHState
*s
, BlockDriverState
*bs
,
1099 int64_t offset
, size_t size
,
1104 char *buf
, *end_of_vec
;
1107 DPRINTF("offset=%" PRIi64
" size=%zu", offset
, size
);
1109 ssh_seek(s
, offset
, SSH_SEEK_WRITE
);
1111 /* This keeps track of the current iovec element ('i'), where we
1112 * will read from next ('buf'), and the end of the current iovec
1117 end_of_vec
= i
->iov_base
+ i
->iov_len
;
1119 for (written
= 0; written
< size
; ) {
1121 DPRINTF("sftp_write buf=%p size=%zu", buf
, end_of_vec
- buf
);
1122 r
= libssh2_sftp_write(s
->sftp_handle
, buf
, end_of_vec
- buf
);
1123 DPRINTF("sftp_write returned %zd", r
);
1125 if (r
== LIBSSH2_ERROR_EAGAIN
|| r
== LIBSSH2_ERROR_TIMEOUT
) {
1130 sftp_error_report(s
, "write failed");
1134 /* The libssh2 API is very unclear about this. A comment in
1135 * the code says "nothing was acked, and no EAGAIN was
1136 * received!" which apparently means that no data got sent
1137 * out, and the underlying channel didn't return any EAGAIN
1138 * indication. I think this is a bug in either libssh2 or
1139 * OpenSSH (server-side). In any case, forcing a seek (to
1140 * discard libssh2 internal buffers), and then trying again
1144 ssh_seek(s
, offset
+ written
, SSH_SEEK_WRITE
|SSH_SEEK_FORCE
);
1152 if (buf
>= end_of_vec
&& written
< size
) {
1155 end_of_vec
= i
->iov_base
+ i
->iov_len
;
1158 if (offset
+ written
> s
->attrs
.filesize
)
1159 s
->attrs
.filesize
= offset
+ written
;
1165 static coroutine_fn
int ssh_co_writev(BlockDriverState
*bs
,
1167 int nb_sectors
, QEMUIOVector
*qiov
,
1170 BDRVSSHState
*s
= bs
->opaque
;
1174 qemu_co_mutex_lock(&s
->lock
);
1175 ret
= ssh_write(s
, bs
, sector_num
* BDRV_SECTOR_SIZE
,
1176 nb_sectors
* BDRV_SECTOR_SIZE
, qiov
);
1177 qemu_co_mutex_unlock(&s
->lock
);
1182 static void unsafe_flush_warning(BDRVSSHState
*s
, const char *what
)
1184 if (!s
->unsafe_flush_warning
) {
1185 warn_report("ssh server %s does not support fsync",
1188 error_report("to support fsync, you need %s", what
);
1190 s
->unsafe_flush_warning
= true;
1194 #ifdef HAS_LIBSSH2_SFTP_FSYNC
1196 static coroutine_fn
int ssh_flush(BDRVSSHState
*s
, BlockDriverState
*bs
)
1202 r
= libssh2_sftp_fsync(s
->sftp_handle
);
1203 if (r
== LIBSSH2_ERROR_EAGAIN
|| r
== LIBSSH2_ERROR_TIMEOUT
) {
1207 if (r
== LIBSSH2_ERROR_SFTP_PROTOCOL
&&
1208 libssh2_sftp_last_error(s
->sftp
) == LIBSSH2_FX_OP_UNSUPPORTED
) {
1209 unsafe_flush_warning(s
, "OpenSSH >= 6.3");
1213 sftp_error_report(s
, "fsync failed");
1220 static coroutine_fn
int ssh_co_flush(BlockDriverState
*bs
)
1222 BDRVSSHState
*s
= bs
->opaque
;
1225 qemu_co_mutex_lock(&s
->lock
);
1226 ret
= ssh_flush(s
, bs
);
1227 qemu_co_mutex_unlock(&s
->lock
);
1232 #else /* !HAS_LIBSSH2_SFTP_FSYNC */
1234 static coroutine_fn
int ssh_co_flush(BlockDriverState
*bs
)
1236 BDRVSSHState
*s
= bs
->opaque
;
1238 unsafe_flush_warning(s
, "libssh2 >= 1.4.4");
1242 #endif /* !HAS_LIBSSH2_SFTP_FSYNC */
1244 static int64_t ssh_getlength(BlockDriverState
*bs
)
1246 BDRVSSHState
*s
= bs
->opaque
;
1249 /* Note we cannot make a libssh2 call here. */
1250 length
= (int64_t) s
->attrs
.filesize
;
1251 DPRINTF("length=%" PRIi64
, length
);
1256 static int ssh_truncate(BlockDriverState
*bs
, int64_t offset
,
1257 PreallocMode prealloc
, Error
**errp
)
1259 BDRVSSHState
*s
= bs
->opaque
;
1261 if (prealloc
!= PREALLOC_MODE_OFF
) {
1262 error_setg(errp
, "Unsupported preallocation mode '%s'",
1263 PreallocMode_str(prealloc
));
1267 if (offset
< s
->attrs
.filesize
) {
1268 error_setg(errp
, "ssh driver does not support shrinking files");
1272 if (offset
== s
->attrs
.filesize
) {
1276 return ssh_grow_file(s
, offset
, errp
);
1279 static BlockDriver bdrv_ssh
= {
1280 .format_name
= "ssh",
1281 .protocol_name
= "ssh",
1282 .instance_size
= sizeof(BDRVSSHState
),
1283 .bdrv_parse_filename
= ssh_parse_filename
,
1284 .bdrv_file_open
= ssh_file_open
,
1285 .bdrv_co_create
= ssh_co_create
,
1286 .bdrv_co_create_opts
= ssh_co_create_opts
,
1287 .bdrv_close
= ssh_close
,
1288 .bdrv_has_zero_init
= ssh_has_zero_init
,
1289 .bdrv_co_readv
= ssh_co_readv
,
1290 .bdrv_co_writev
= ssh_co_writev
,
1291 .bdrv_getlength
= ssh_getlength
,
1292 .bdrv_truncate
= ssh_truncate
,
1293 .bdrv_co_flush_to_disk
= ssh_co_flush
,
1294 .create_opts
= &ssh_create_opts
,
1297 static void bdrv_ssh_init(void)
1301 r
= libssh2_init(0);
1303 fprintf(stderr
, "libssh2 initialization failed, %d\n", r
);
1307 bdrv_register(&bdrv_ssh
);
1310 block_init(bdrv_ssh_init
);