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"
27 #include <libssh/libssh.h>
28 #include <libssh/sftp.h>
30 #include "block/block_int.h"
31 #include "block/qdict.h"
32 #include "qapi/error.h"
33 #include "qemu/error-report.h"
34 #include "qemu/module.h"
35 #include "qemu/option.h"
36 #include "qemu/ctype.h"
37 #include "qemu/cutils.h"
38 #include "qemu/sockets.h"
40 #include "qapi/qapi-visit-sockets.h"
41 #include "qapi/qapi-visit-block-core.h"
42 #include "qapi/qmp/qdict.h"
43 #include "qapi/qmp/qstring.h"
44 #include "qapi/qobject-input-visitor.h"
45 #include "qapi/qobject-output-visitor.h"
49 * TRACE_LIBSSH=<level> enables tracing in libssh itself.
50 * The meaning of <level> is described here:
51 * http://api.libssh.org/master/group__libssh__log.html
53 #define TRACE_LIBSSH 0 /* see: SSH_LOG_* */
55 typedef struct BDRVSSHState
{
60 int sock
; /* socket */
61 ssh_session session
; /* ssh session */
62 sftp_session sftp
; /* sftp session */
63 sftp_file sftp_handle
; /* sftp remote file handle */
66 * File attributes at open. We try to keep the .size field
67 * updated if it changes (eg by writing at the end of the file).
69 sftp_attributes attrs
;
71 InetSocketAddress
*inet
;
73 /* Used to warn if 'flush' is not supported. */
74 bool unsafe_flush_warning
;
77 * Store the user name for ssh_refresh_filename() because the
78 * default depends on the system you are on -- therefore, when we
79 * generate a filename, it should always contain the user name we
85 static void ssh_state_init(BDRVSSHState
*s
)
87 memset(s
, 0, sizeof *s
);
89 qemu_co_mutex_init(&s
->lock
);
92 static void ssh_state_free(BDRVSSHState
*s
)
97 sftp_attributes_free(s
->attrs
);
100 sftp_close(s
->sftp_handle
);
106 ssh_disconnect(s
->session
);
107 ssh_free(s
->session
); /* This frees s->sock */
111 static void GCC_FMT_ATTR(3, 4)
112 session_error_setg(Error
**errp
, BDRVSSHState
*s
, const char *fs
, ...)
118 msg
= g_strdup_vprintf(fs
, args
);
125 /* This is not an errno. See <libssh/libssh.h>. */
126 ssh_err
= ssh_get_error(s
->session
);
127 ssh_err_code
= ssh_get_error_code(s
->session
);
128 error_setg(errp
, "%s: %s (libssh error code: %d)",
129 msg
, ssh_err
, ssh_err_code
);
131 error_setg(errp
, "%s", msg
);
136 static void GCC_FMT_ATTR(3, 4)
137 sftp_error_setg(Error
**errp
, BDRVSSHState
*s
, const char *fs
, ...)
143 msg
= g_strdup_vprintf(fs
, args
);
151 /* This is not an errno. See <libssh/libssh.h>. */
152 ssh_err
= ssh_get_error(s
->session
);
153 ssh_err_code
= ssh_get_error_code(s
->session
);
154 /* See <libssh/sftp.h>. */
155 sftp_err_code
= sftp_get_error(s
->sftp
);
158 "%s: %s (libssh error code: %d, sftp error code: %d)",
159 msg
, ssh_err
, ssh_err_code
, sftp_err_code
);
161 error_setg(errp
, "%s", msg
);
166 static void sftp_error_trace(BDRVSSHState
*s
, const char *op
)
172 /* This is not an errno. See <libssh/libssh.h>. */
173 ssh_err
= ssh_get_error(s
->session
);
174 ssh_err_code
= ssh_get_error_code(s
->session
);
175 /* See <libssh/sftp.h>. */
176 sftp_err_code
= sftp_get_error(s
->sftp
);
178 trace_sftp_error(op
, ssh_err
, ssh_err_code
, sftp_err_code
);
181 static int parse_uri(const char *filename
, QDict
*options
, Error
**errp
)
188 uri
= uri_parse(filename
);
193 if (g_strcmp0(uri
->scheme
, "ssh") != 0) {
194 error_setg(errp
, "URI scheme must be 'ssh'");
198 if (!uri
->server
|| strcmp(uri
->server
, "") == 0) {
199 error_setg(errp
, "missing hostname in URI");
203 if (!uri
->path
|| strcmp(uri
->path
, "") == 0) {
204 error_setg(errp
, "missing remote path in URI");
208 qp
= query_params_parse(uri
->query
);
210 error_setg(errp
, "could not parse query parameters");
214 if(uri
->user
&& strcmp(uri
->user
, "") != 0) {
215 qdict_put_str(options
, "user", uri
->user
);
218 qdict_put_str(options
, "server.host", uri
->server
);
220 port_str
= g_strdup_printf("%d", uri
->port
?: 22);
221 qdict_put_str(options
, "server.port", port_str
);
224 qdict_put_str(options
, "path", uri
->path
);
226 /* Pick out any query parameters that we understand, and ignore
229 for (i
= 0; i
< qp
->n
; ++i
) {
230 if (strcmp(qp
->p
[i
].name
, "host_key_check") == 0) {
231 qdict_put_str(options
, "host_key_check", qp
->p
[i
].value
);
235 query_params_free(qp
);
244 static bool ssh_has_filename_options_conflict(QDict
*options
, Error
**errp
)
246 const QDictEntry
*qe
;
248 for (qe
= qdict_first(options
); qe
; qe
= qdict_next(options
, qe
)) {
249 if (!strcmp(qe
->key
, "host") ||
250 !strcmp(qe
->key
, "port") ||
251 !strcmp(qe
->key
, "path") ||
252 !strcmp(qe
->key
, "user") ||
253 !strcmp(qe
->key
, "host_key_check") ||
254 strstart(qe
->key
, "server.", NULL
))
256 error_setg(errp
, "Option '%s' cannot be used with a file name",
265 static void ssh_parse_filename(const char *filename
, QDict
*options
,
268 if (ssh_has_filename_options_conflict(options
, errp
)) {
272 parse_uri(filename
, options
, errp
);
275 static int check_host_key_knownhosts(BDRVSSHState
*s
, Error
**errp
)
278 enum ssh_known_hosts_e state
;
281 enum ssh_keytypes_e pubkey_type
;
282 unsigned char *server_hash
= NULL
;
283 size_t server_hash_len
;
284 char *fingerprint
= NULL
;
286 state
= ssh_session_is_known_server(s
->session
);
287 trace_ssh_server_status(state
);
290 case SSH_KNOWN_HOSTS_OK
:
292 trace_ssh_check_host_key_knownhosts();
294 case SSH_KNOWN_HOSTS_CHANGED
:
296 r
= ssh_get_server_publickey(s
->session
, &pubkey
);
298 r
= ssh_get_publickey_hash(pubkey
, SSH_PUBLICKEY_HASH_SHA256
,
299 &server_hash
, &server_hash_len
);
300 pubkey_type
= ssh_key_type(pubkey
);
301 ssh_key_free(pubkey
);
304 fingerprint
= ssh_get_fingerprint_hash(SSH_PUBLICKEY_HASH_SHA256
,
307 ssh_clean_pubkey_hash(&server_hash
);
311 "host key (%s key with fingerprint %s) does not match "
312 "the one in known_hosts; this may be a possible attack",
313 ssh_key_type_to_char(pubkey_type
), fingerprint
);
314 ssh_string_free_char(fingerprint
);
317 "host key does not match the one in known_hosts; this "
318 "may be a possible attack");
321 case SSH_KNOWN_HOSTS_OTHER
:
324 "host key for this server not found, another type exists");
326 case SSH_KNOWN_HOSTS_UNKNOWN
:
328 error_setg(errp
, "no host key was found in known_hosts");
330 case SSH_KNOWN_HOSTS_NOT_FOUND
:
332 error_setg(errp
, "known_hosts file not found");
334 case SSH_KNOWN_HOSTS_ERROR
:
336 error_setg(errp
, "error while checking the host");
340 error_setg(errp
, "error while checking for known server (%d)", state
);
344 /* known_hosts checking successful. */
351 static unsigned hex2decimal(char ch
)
353 if (ch
>= '0' && ch
<= '9') {
355 } else if (ch
>= 'a' && ch
<= 'f') {
356 return 10 + (ch
- 'a');
357 } else if (ch
>= 'A' && ch
<= 'F') {
358 return 10 + (ch
- 'A');
364 /* Compare the binary fingerprint (hash of host key) with the
365 * host_key_check parameter.
367 static int compare_fingerprint(const unsigned char *fingerprint
, size_t len
,
368 const char *host_key_check
)
373 while (*host_key_check
== ':')
375 if (!qemu_isxdigit(host_key_check
[0]) ||
376 !qemu_isxdigit(host_key_check
[1]))
378 c
= hex2decimal(host_key_check
[0]) * 16 +
379 hex2decimal(host_key_check
[1]);
380 if (c
- *fingerprint
!= 0)
381 return c
- *fingerprint
;
386 return *host_key_check
- '\0';
390 check_host_key_hash(BDRVSSHState
*s
, const char *hash
,
391 enum ssh_publickey_hash_type type
, Error
**errp
)
395 unsigned char *server_hash
;
396 size_t server_hash_len
;
398 r
= ssh_get_server_publickey(s
->session
, &pubkey
);
400 session_error_setg(errp
, s
, "failed to read remote host key");
404 r
= ssh_get_publickey_hash(pubkey
, type
, &server_hash
, &server_hash_len
);
405 ssh_key_free(pubkey
);
407 session_error_setg(errp
, s
,
408 "failed reading the hash of the server SSH key");
412 r
= compare_fingerprint(server_hash
, server_hash_len
, hash
);
413 ssh_clean_pubkey_hash(&server_hash
);
415 error_setg(errp
, "remote host key does not match host_key_check '%s'",
423 static int check_host_key(BDRVSSHState
*s
, SshHostKeyCheck
*hkc
, Error
**errp
)
425 SshHostKeyCheckMode mode
;
430 mode
= SSH_HOST_KEY_CHECK_MODE_KNOWN_HOSTS
;
434 case SSH_HOST_KEY_CHECK_MODE_NONE
:
436 case SSH_HOST_KEY_CHECK_MODE_HASH
:
437 if (hkc
->u
.hash
.type
== SSH_HOST_KEY_CHECK_HASH_TYPE_MD5
) {
438 return check_host_key_hash(s
, hkc
->u
.hash
.hash
,
439 SSH_PUBLICKEY_HASH_MD5
, errp
);
440 } else if (hkc
->u
.hash
.type
== SSH_HOST_KEY_CHECK_HASH_TYPE_SHA1
) {
441 return check_host_key_hash(s
, hkc
->u
.hash
.hash
,
442 SSH_PUBLICKEY_HASH_SHA1
, errp
);
443 } else if (hkc
->u
.hash
.type
== SSH_HOST_KEY_CHECK_HASH_TYPE_SHA256
) {
444 return check_host_key_hash(s
, hkc
->u
.hash
.hash
,
445 SSH_PUBLICKEY_HASH_SHA256
, errp
);
447 g_assert_not_reached();
449 case SSH_HOST_KEY_CHECK_MODE_KNOWN_HOSTS
:
450 return check_host_key_knownhosts(s
, errp
);
452 g_assert_not_reached();
458 static int authenticate(BDRVSSHState
*s
, Error
**errp
)
463 /* Try to authenticate with the "none" method. */
464 r
= ssh_userauth_none(s
->session
, NULL
);
465 if (r
== SSH_AUTH_ERROR
) {
467 session_error_setg(errp
, s
, "failed to authenticate using none "
470 } else if (r
== SSH_AUTH_SUCCESS
) {
476 method
= ssh_userauth_list(s
->session
, NULL
);
477 trace_ssh_auth_methods(method
);
480 * Try to authenticate with publickey, using the ssh-agent
483 if (method
& SSH_AUTH_METHOD_PUBLICKEY
) {
484 r
= ssh_userauth_publickey_auto(s
->session
, NULL
, NULL
);
485 if (r
== SSH_AUTH_ERROR
) {
487 session_error_setg(errp
, s
, "failed to authenticate using "
488 "publickey authentication");
490 } else if (r
== SSH_AUTH_SUCCESS
) {
498 error_setg(errp
, "failed to authenticate using publickey authentication "
499 "and the identities held by your ssh-agent");
505 static QemuOptsList ssh_runtime_opts
= {
507 .head
= QTAILQ_HEAD_INITIALIZER(ssh_runtime_opts
.head
),
511 .type
= QEMU_OPT_STRING
,
512 .help
= "Host to connect to",
516 .type
= QEMU_OPT_NUMBER
,
517 .help
= "Port to connect to",
520 .name
= "host_key_check",
521 .type
= QEMU_OPT_STRING
,
522 .help
= "Defines how and what to check the host key against",
524 { /* end of list */ }
528 static bool ssh_process_legacy_options(QDict
*output_opts
,
529 QemuOpts
*legacy_opts
,
532 const char *host
= qemu_opt_get(legacy_opts
, "host");
533 const char *port
= qemu_opt_get(legacy_opts
, "port");
534 const char *host_key_check
= qemu_opt_get(legacy_opts
, "host_key_check");
537 error_setg(errp
, "port may not be used without host");
542 qdict_put_str(output_opts
, "server.host", host
);
543 qdict_put_str(output_opts
, "server.port", port
?: stringify(22));
546 if (host_key_check
) {
547 if (strcmp(host_key_check
, "no") == 0) {
548 qdict_put_str(output_opts
, "host-key-check.mode", "none");
549 } else if (strncmp(host_key_check
, "md5:", 4) == 0) {
550 qdict_put_str(output_opts
, "host-key-check.mode", "hash");
551 qdict_put_str(output_opts
, "host-key-check.type", "md5");
552 qdict_put_str(output_opts
, "host-key-check.hash",
554 } else if (strncmp(host_key_check
, "sha1:", 5) == 0) {
555 qdict_put_str(output_opts
, "host-key-check.mode", "hash");
556 qdict_put_str(output_opts
, "host-key-check.type", "sha1");
557 qdict_put_str(output_opts
, "host-key-check.hash",
559 } else if (strcmp(host_key_check
, "yes") == 0) {
560 qdict_put_str(output_opts
, "host-key-check.mode", "known_hosts");
562 error_setg(errp
, "unknown host_key_check setting (%s)",
571 static BlockdevOptionsSsh
*ssh_parse_options(QDict
*options
, Error
**errp
)
573 BlockdevOptionsSsh
*result
= NULL
;
574 QemuOpts
*opts
= NULL
;
578 /* Translate legacy options */
579 opts
= qemu_opts_create(&ssh_runtime_opts
, NULL
, 0, &error_abort
);
580 if (!qemu_opts_absorb_qdict(opts
, options
, errp
)) {
584 if (!ssh_process_legacy_options(options
, opts
, errp
)) {
588 /* Create the QAPI object */
589 v
= qobject_input_visitor_new_flat_confused(options
, errp
);
594 visit_type_BlockdevOptionsSsh(v
, NULL
, &result
, errp
);
600 /* Remove the processed options from the QDict (the visitor processes
601 * _all_ options in the QDict) */
602 while ((e
= qdict_first(options
))) {
603 qdict_del(options
, e
->key
);
611 static int connect_to_ssh(BDRVSSHState
*s
, BlockdevOptionsSsh
*opts
,
612 int ssh_flags
, int creat_mode
, Error
**errp
)
615 unsigned int port
= 0;
618 if (opts
->has_user
) {
619 s
->user
= g_strdup(opts
->user
);
621 s
->user
= g_strdup(g_get_user_name());
623 error_setg_errno(errp
, errno
, "Can't get user name");
629 /* Pop the config into our state object, Exit if invalid */
630 s
->inet
= opts
->server
;
633 if (qemu_strtoui(s
->inet
->port
, NULL
, 10, &port
) < 0) {
634 error_setg(errp
, "Use only numeric port value");
639 /* Open the socket and connect. */
640 new_sock
= inet_connect_saddr(s
->inet
, errp
);
647 * Try to disable the Nagle algorithm on TCP sockets to reduce latency,
648 * but do not fail if it cannot be disabled.
650 r
= socket_set_nodelay(new_sock
);
652 warn_report("can't set TCP_NODELAY for the ssh server %s: %s",
653 s
->inet
->host
, strerror(errno
));
656 /* Create SSH session. */
657 s
->session
= ssh_new();
660 session_error_setg(errp
, s
, "failed to initialize libssh session");
665 * Make sure we are in blocking mode during the connection and
666 * authentication phases.
668 ssh_set_blocking(s
->session
, 1);
670 r
= ssh_options_set(s
->session
, SSH_OPTIONS_USER
, s
->user
);
673 session_error_setg(errp
, s
,
674 "failed to set the user in the libssh session");
678 r
= ssh_options_set(s
->session
, SSH_OPTIONS_HOST
, s
->inet
->host
);
681 session_error_setg(errp
, s
,
682 "failed to set the host in the libssh session");
687 r
= ssh_options_set(s
->session
, SSH_OPTIONS_PORT
, &port
);
690 session_error_setg(errp
, s
,
691 "failed to set the port in the libssh session");
696 r
= ssh_options_set(s
->session
, SSH_OPTIONS_COMPRESSION
, "none");
699 session_error_setg(errp
, s
,
700 "failed to disable the compression in the libssh "
705 /* Read ~/.ssh/config. */
706 r
= ssh_options_parse_config(s
->session
, NULL
);
709 session_error_setg(errp
, s
, "failed to parse ~/.ssh/config");
713 r
= ssh_options_set(s
->session
, SSH_OPTIONS_FD
, &new_sock
);
716 session_error_setg(errp
, s
,
717 "failed to set the socket in the libssh session");
720 /* libssh took ownership of the socket. */
725 r
= ssh_connect(s
->session
);
728 session_error_setg(errp
, s
, "failed to establish SSH session");
732 /* Check the remote host's key against known_hosts. */
733 ret
= check_host_key(s
, opts
->host_key_check
, errp
);
739 ret
= authenticate(s
, errp
);
745 s
->sftp
= sftp_new(s
->session
);
747 session_error_setg(errp
, s
, "failed to create sftp handle");
752 r
= sftp_init(s
->sftp
);
754 sftp_error_setg(errp
, s
, "failed to initialize sftp handle");
759 /* Open the remote file. */
760 trace_ssh_connect_to_ssh(opts
->path
, ssh_flags
, creat_mode
);
761 s
->sftp_handle
= sftp_open(s
->sftp
, opts
->path
, ssh_flags
, creat_mode
);
762 if (!s
->sftp_handle
) {
763 sftp_error_setg(errp
, s
, "failed to open remote file '%s'",
769 /* Make sure the SFTP file is handled in blocking mode. */
770 sftp_file_set_blocking(s
->sftp_handle
);
772 s
->attrs
= sftp_fstat(s
->sftp_handle
);
774 sftp_error_setg(errp
, s
, "failed to read file attributes");
782 sftp_attributes_free(s
->attrs
);
785 if (s
->sftp_handle
) {
786 sftp_close(s
->sftp_handle
);
788 s
->sftp_handle
= NULL
;
794 ssh_disconnect(s
->session
);
795 ssh_free(s
->session
);
806 static int ssh_file_open(BlockDriverState
*bs
, QDict
*options
, int bdrv_flags
,
809 BDRVSSHState
*s
= bs
->opaque
;
810 BlockdevOptionsSsh
*opts
;
817 if (bdrv_flags
& BDRV_O_RDWR
) {
820 ssh_flags
|= O_RDONLY
;
823 opts
= ssh_parse_options(options
, errp
);
829 ret
= connect_to_ssh(s
, opts
, ssh_flags
, 0, errp
);
834 /* Go non-blocking. */
835 ssh_set_blocking(s
->session
, 0);
837 if (s
->attrs
->type
== SSH_FILEXFER_TYPE_REGULAR
) {
838 bs
->supported_truncate_flags
= BDRV_REQ_ZERO_WRITE
;
841 qapi_free_BlockdevOptionsSsh(opts
);
846 qapi_free_BlockdevOptionsSsh(opts
);
851 /* Note: This is a blocking operation */
852 static int ssh_grow_file(BDRVSSHState
*s
, int64_t offset
, Error
**errp
)
855 char c
[1] = { '\0' };
856 int was_blocking
= ssh_is_blocking(s
->session
);
858 /* offset must be strictly greater than the current size so we do
859 * not overwrite anything */
860 assert(offset
> 0 && offset
> s
->attrs
->size
);
862 ssh_set_blocking(s
->session
, 1);
864 sftp_seek64(s
->sftp_handle
, offset
- 1);
865 ret
= sftp_write(s
->sftp_handle
, c
, 1);
867 ssh_set_blocking(s
->session
, was_blocking
);
870 sftp_error_setg(errp
, s
, "Failed to grow file");
874 s
->attrs
->size
= offset
;
878 static QemuOptsList ssh_create_opts
= {
879 .name
= "ssh-create-opts",
880 .head
= QTAILQ_HEAD_INITIALIZER(ssh_create_opts
.head
),
883 .name
= BLOCK_OPT_SIZE
,
884 .type
= QEMU_OPT_SIZE
,
885 .help
= "Virtual disk size"
887 { /* end of list */ }
891 static int ssh_co_create(BlockdevCreateOptions
*options
, Error
**errp
)
893 BlockdevCreateOptionsSsh
*opts
= &options
->u
.ssh
;
897 assert(options
->driver
== BLOCKDEV_DRIVER_SSH
);
901 ret
= connect_to_ssh(&s
, opts
->location
,
902 O_RDWR
| O_CREAT
| O_TRUNC
,
908 if (opts
->size
> 0) {
909 ret
= ssh_grow_file(&s
, opts
->size
, errp
);
921 static int coroutine_fn
ssh_co_create_opts(BlockDriver
*drv
,
922 const char *filename
,
926 BlockdevCreateOptions
*create_options
;
927 BlockdevCreateOptionsSsh
*ssh_opts
;
929 QDict
*uri_options
= NULL
;
931 create_options
= g_new0(BlockdevCreateOptions
, 1);
932 create_options
->driver
= BLOCKDEV_DRIVER_SSH
;
933 ssh_opts
= &create_options
->u
.ssh
;
935 /* Get desired file size. */
936 ssh_opts
->size
= ROUND_UP(qemu_opt_get_size_del(opts
, BLOCK_OPT_SIZE
, 0),
938 trace_ssh_co_create_opts(ssh_opts
->size
);
940 uri_options
= qdict_new();
941 ret
= parse_uri(filename
, uri_options
, errp
);
946 ssh_opts
->location
= ssh_parse_options(uri_options
, errp
);
947 if (ssh_opts
->location
== NULL
) {
952 ret
= ssh_co_create(create_options
, errp
);
955 qobject_unref(uri_options
);
956 qapi_free_BlockdevCreateOptions(create_options
);
960 static void ssh_close(BlockDriverState
*bs
)
962 BDRVSSHState
*s
= bs
->opaque
;
967 static int ssh_has_zero_init(BlockDriverState
*bs
)
969 BDRVSSHState
*s
= bs
->opaque
;
970 /* Assume false, unless we can positively prove it's true. */
971 int has_zero_init
= 0;
973 if (s
->attrs
->type
== SSH_FILEXFER_TYPE_REGULAR
) {
977 return has_zero_init
;
980 typedef struct BDRVSSHRestart
{
981 BlockDriverState
*bs
;
985 static void restart_coroutine(void *opaque
)
987 BDRVSSHRestart
*restart
= opaque
;
988 BlockDriverState
*bs
= restart
->bs
;
989 BDRVSSHState
*s
= bs
->opaque
;
990 AioContext
*ctx
= bdrv_get_aio_context(bs
);
992 trace_ssh_restart_coroutine(restart
->co
);
993 aio_set_fd_handler(ctx
, s
->sock
, false, NULL
, NULL
, NULL
, NULL
);
995 aio_co_wake(restart
->co
);
998 /* A non-blocking call returned EAGAIN, so yield, ensuring the
999 * handlers are set up so that we'll be rescheduled when there is an
1000 * interesting event on the socket.
1002 static coroutine_fn
void co_yield(BDRVSSHState
*s
, BlockDriverState
*bs
)
1005 IOHandler
*rd_handler
= NULL
, *wr_handler
= NULL
;
1006 BDRVSSHRestart restart
= {
1008 .co
= qemu_coroutine_self()
1011 r
= ssh_get_poll_flags(s
->session
);
1013 if (r
& SSH_READ_PENDING
) {
1014 rd_handler
= restart_coroutine
;
1016 if (r
& SSH_WRITE_PENDING
) {
1017 wr_handler
= restart_coroutine
;
1020 trace_ssh_co_yield(s
->sock
, rd_handler
, wr_handler
);
1022 aio_set_fd_handler(bdrv_get_aio_context(bs
), s
->sock
,
1023 false, rd_handler
, wr_handler
, NULL
, &restart
);
1024 qemu_coroutine_yield();
1025 trace_ssh_co_yield_back(s
->sock
);
1028 static coroutine_fn
int ssh_read(BDRVSSHState
*s
, BlockDriverState
*bs
,
1029 int64_t offset
, size_t size
,
1034 char *buf
, *end_of_vec
;
1037 trace_ssh_read(offset
, size
);
1039 trace_ssh_seek(offset
);
1040 sftp_seek64(s
->sftp_handle
, offset
);
1042 /* This keeps track of the current iovec element ('i'), where we
1043 * will write to next ('buf'), and the end of the current iovec
1048 end_of_vec
= i
->iov_base
+ i
->iov_len
;
1050 for (got
= 0; got
< size
; ) {
1051 size_t request_read_size
;
1054 * The size of SFTP packets is limited to 32K bytes, so limit
1055 * the amount of data requested to 16K, as libssh currently
1056 * does not handle multiple requests on its own.
1058 request_read_size
= MIN(end_of_vec
- buf
, 16384);
1059 trace_ssh_read_buf(buf
, end_of_vec
- buf
, request_read_size
);
1060 r
= sftp_read(s
->sftp_handle
, buf
, request_read_size
);
1061 trace_ssh_read_return(r
, sftp_get_error(s
->sftp
));
1063 if (r
== SSH_AGAIN
) {
1067 if (r
== SSH_EOF
|| (r
== 0 && sftp_get_error(s
->sftp
) == SSH_FX_EOF
)) {
1068 /* EOF: Short read so pad the buffer with zeroes and return it. */
1069 qemu_iovec_memset(qiov
, got
, 0, size
- got
);
1073 sftp_error_trace(s
, "read");
1079 if (buf
>= end_of_vec
&& got
< size
) {
1082 end_of_vec
= i
->iov_base
+ i
->iov_len
;
1089 static coroutine_fn
int ssh_co_readv(BlockDriverState
*bs
,
1091 int nb_sectors
, QEMUIOVector
*qiov
)
1093 BDRVSSHState
*s
= bs
->opaque
;
1096 qemu_co_mutex_lock(&s
->lock
);
1097 ret
= ssh_read(s
, bs
, sector_num
* BDRV_SECTOR_SIZE
,
1098 nb_sectors
* BDRV_SECTOR_SIZE
, qiov
);
1099 qemu_co_mutex_unlock(&s
->lock
);
1104 static int ssh_write(BDRVSSHState
*s
, BlockDriverState
*bs
,
1105 int64_t offset
, size_t size
,
1110 char *buf
, *end_of_vec
;
1113 trace_ssh_write(offset
, size
);
1115 trace_ssh_seek(offset
);
1116 sftp_seek64(s
->sftp_handle
, offset
);
1118 /* This keeps track of the current iovec element ('i'), where we
1119 * will read from next ('buf'), and the end of the current iovec
1124 end_of_vec
= i
->iov_base
+ i
->iov_len
;
1126 for (written
= 0; written
< size
; ) {
1127 size_t request_write_size
;
1130 * Avoid too large data packets, as libssh currently does not
1131 * handle multiple requests on its own.
1133 request_write_size
= MIN(end_of_vec
- buf
, 131072);
1134 trace_ssh_write_buf(buf
, end_of_vec
- buf
, request_write_size
);
1135 r
= sftp_write(s
->sftp_handle
, buf
, request_write_size
);
1136 trace_ssh_write_return(r
, sftp_get_error(s
->sftp
));
1138 if (r
== SSH_AGAIN
) {
1143 sftp_error_trace(s
, "write");
1149 if (buf
>= end_of_vec
&& written
< size
) {
1152 end_of_vec
= i
->iov_base
+ i
->iov_len
;
1155 if (offset
+ written
> s
->attrs
->size
) {
1156 s
->attrs
->size
= offset
+ written
;
1163 static coroutine_fn
int ssh_co_writev(BlockDriverState
*bs
,
1165 int nb_sectors
, QEMUIOVector
*qiov
,
1168 BDRVSSHState
*s
= bs
->opaque
;
1172 qemu_co_mutex_lock(&s
->lock
);
1173 ret
= ssh_write(s
, bs
, sector_num
* BDRV_SECTOR_SIZE
,
1174 nb_sectors
* BDRV_SECTOR_SIZE
, qiov
);
1175 qemu_co_mutex_unlock(&s
->lock
);
1180 static void unsafe_flush_warning(BDRVSSHState
*s
, const char *what
)
1182 if (!s
->unsafe_flush_warning
) {
1183 warn_report("ssh server %s does not support fsync",
1186 error_report("to support fsync, you need %s", what
);
1188 s
->unsafe_flush_warning
= true;
1192 static coroutine_fn
int ssh_flush(BDRVSSHState
*s
, BlockDriverState
*bs
)
1198 if (!sftp_extension_supported(s
->sftp
, "fsync@openssh.com", "1")) {
1199 unsafe_flush_warning(s
, "OpenSSH >= 6.3");
1203 r
= sftp_fsync(s
->sftp_handle
);
1204 if (r
== SSH_AGAIN
) {
1209 sftp_error_trace(s
, "fsync");
1216 static coroutine_fn
int ssh_co_flush(BlockDriverState
*bs
)
1218 BDRVSSHState
*s
= bs
->opaque
;
1221 qemu_co_mutex_lock(&s
->lock
);
1222 ret
= ssh_flush(s
, bs
);
1223 qemu_co_mutex_unlock(&s
->lock
);
1228 static int64_t ssh_getlength(BlockDriverState
*bs
)
1230 BDRVSSHState
*s
= bs
->opaque
;
1233 /* Note we cannot make a libssh call here. */
1234 length
= (int64_t) s
->attrs
->size
;
1235 trace_ssh_getlength(length
);
1240 static int coroutine_fn
ssh_co_truncate(BlockDriverState
*bs
, int64_t offset
,
1241 bool exact
, PreallocMode prealloc
,
1242 BdrvRequestFlags flags
, Error
**errp
)
1244 BDRVSSHState
*s
= bs
->opaque
;
1246 if (prealloc
!= PREALLOC_MODE_OFF
) {
1247 error_setg(errp
, "Unsupported preallocation mode '%s'",
1248 PreallocMode_str(prealloc
));
1252 if (offset
< s
->attrs
->size
) {
1253 error_setg(errp
, "ssh driver does not support shrinking files");
1257 if (offset
== s
->attrs
->size
) {
1261 return ssh_grow_file(s
, offset
, errp
);
1264 static void ssh_refresh_filename(BlockDriverState
*bs
)
1266 BDRVSSHState
*s
= bs
->opaque
;
1267 const char *path
, *host_key_check
;
1271 * None of these options can be represented in a plain "host:port"
1272 * format, so if any was given, we have to abort.
1274 if (s
->inet
->has_ipv4
|| s
->inet
->has_ipv6
|| s
->inet
->has_to
||
1275 s
->inet
->has_numeric
)
1280 path
= qdict_get_try_str(bs
->full_open_options
, "path");
1281 assert(path
); /* mandatory option */
1283 host_key_check
= qdict_get_try_str(bs
->full_open_options
, "host_key_check");
1285 ret
= snprintf(bs
->exact_filename
, sizeof(bs
->exact_filename
),
1286 "ssh://%s@%s:%s%s%s%s",
1287 s
->user
, s
->inet
->host
, s
->inet
->port
, path
,
1288 host_key_check
? "?host_key_check=" : "",
1289 host_key_check
?: "");
1290 if (ret
>= sizeof(bs
->exact_filename
)) {
1291 /* An overflow makes the filename unusable, so do not report any */
1292 bs
->exact_filename
[0] = '\0';
1296 static char *ssh_bdrv_dirname(BlockDriverState
*bs
, Error
**errp
)
1298 if (qdict_haskey(bs
->full_open_options
, "host_key_check")) {
1300 * We cannot generate a simple prefix if we would have to
1301 * append a query string.
1304 "Cannot generate a base directory with host_key_check set");
1308 if (bs
->exact_filename
[0] == '\0') {
1309 error_setg(errp
, "Cannot generate a base directory for this ssh node");
1313 return path_combine(bs
->exact_filename
, "");
1316 static const char *const ssh_strong_runtime_opts
[] = {
1327 static BlockDriver bdrv_ssh
= {
1328 .format_name
= "ssh",
1329 .protocol_name
= "ssh",
1330 .instance_size
= sizeof(BDRVSSHState
),
1331 .bdrv_parse_filename
= ssh_parse_filename
,
1332 .bdrv_file_open
= ssh_file_open
,
1333 .bdrv_co_create
= ssh_co_create
,
1334 .bdrv_co_create_opts
= ssh_co_create_opts
,
1335 .bdrv_close
= ssh_close
,
1336 .bdrv_has_zero_init
= ssh_has_zero_init
,
1337 .bdrv_co_readv
= ssh_co_readv
,
1338 .bdrv_co_writev
= ssh_co_writev
,
1339 .bdrv_getlength
= ssh_getlength
,
1340 .bdrv_co_truncate
= ssh_co_truncate
,
1341 .bdrv_co_flush_to_disk
= ssh_co_flush
,
1342 .bdrv_refresh_filename
= ssh_refresh_filename
,
1343 .bdrv_dirname
= ssh_bdrv_dirname
,
1344 .create_opts
= &ssh_create_opts
,
1345 .strong_runtime_opts
= ssh_strong_runtime_opts
,
1348 static void bdrv_ssh_init(void)
1354 fprintf(stderr
, "libssh initialization failed, %d\n", r
);
1358 #if TRACE_LIBSSH != 0
1359 ssh_set_log_level(TRACE_LIBSSH
);
1362 bdrv_register(&bdrv_ssh
);
1365 block_init(bdrv_ssh_init
);