From nobody Thu Dec 18 13:17:48 2025 Delivered-To: importer@patchew.org Received-SPF: pass (zoho.com: domain of gnu.org designates 208.118.235.17 as permitted sender) client-ip=208.118.235.17; envelope-from=qemu-devel-bounces+importer=patchew.org@nongnu.org; helo=lists.gnu.org; Authentication-Results: mx.zohomail.com; spf=pass (zoho.com: domain of gnu.org designates 208.118.235.17 as permitted sender) smtp.mailfrom=qemu-devel-bounces+importer=patchew.org@nongnu.org; dmarc=fail(p=none dis=none) header.from=redhat.com Return-Path: Received: from lists.gnu.org (lists.gnu.org [208.118.235.17]) by mx.zohomail.com with SMTPS id 1520614459350301.54093428146984; Fri, 9 Mar 2018 08:54:19 -0800 (PST) Received: from localhost ([::1]:46489 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1euLHe-00059p-Ga for importer@patchew.org; Fri, 09 Mar 2018 11:54:18 -0500 Received: from eggs.gnu.org ([2001:4830:134:3::10]:34145) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1euKlJ-0001VS-ED for qemu-devel@nongnu.org; Fri, 09 Mar 2018 11:20:55 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1euKlG-0007Ln-2y for qemu-devel@nongnu.org; Fri, 09 Mar 2018 11:20:53 -0500 Received: from mx3-rdu2.redhat.com ([66.187.233.73]:44714 helo=mx1.redhat.com) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1euKlC-0007Ha-PJ; Fri, 09 Mar 2018 11:20:46 -0500 Received: from smtp.corp.redhat.com (int-mx06.intmail.prod.int.rdu2.redhat.com [10.11.54.6]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id 640B08182D0A; Fri, 9 Mar 2018 16:20:46 +0000 (UTC) Received: from localhost.localdomain.com (ovpn-117-234.ams2.redhat.com [10.36.117.234]) by smtp.corp.redhat.com (Postfix) with ESMTP id B3D8A215CDAA; Fri, 9 Mar 2018 16:20:45 +0000 (UTC) From: Kevin Wolf To: qemu-block@nongnu.org Date: Fri, 9 Mar 2018 17:19:23 +0100 Message-Id: <20180309161933.8168-47-kwolf@redhat.com> In-Reply-To: <20180309161933.8168-1-kwolf@redhat.com> References: <20180309161933.8168-1-kwolf@redhat.com> X-Scanned-By: MIMEDefang 2.78 on 10.11.54.6 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.11.55.8]); Fri, 09 Mar 2018 16:20:46 +0000 (UTC) X-Greylist: inspected by milter-greylist-4.5.16 (mx1.redhat.com [10.11.55.8]); Fri, 09 Mar 2018 16:20:46 +0000 (UTC) for IP:'10.11.54.6' DOMAIN:'int-mx06.intmail.prod.int.rdu2.redhat.com' HELO:'smtp.corp.redhat.com' FROM:'kwolf@redhat.com' RCPT:'' X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] [fuzzy] X-Received-From: 66.187.233.73 Subject: [Qemu-devel] [PULL 46/56] ssh: Pass BlockdevOptionsSsh to connect_to_ssh() X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: kwolf@redhat.com, qemu-devel@nongnu.org Errors-To: qemu-devel-bounces+importer=patchew.org@nongnu.org Sender: "Qemu-devel" X-ZohoMail: RSF_0 Z_629925259 SPT_0 Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Move the parsing of the QDict options up to the callers, in preparation for the .bdrv_co_create implementation that directly gets a QAPI type. Signed-off-by: Kevin Wolf Reviewed-by: Max Reitz --- block/ssh.c | 34 +++++++++++++++++++++------------- 1 file changed, 21 insertions(+), 13 deletions(-) diff --git a/block/ssh.c b/block/ssh.c index 30cdf9a99f..80f59055cc 100644 --- a/block/ssh.c +++ b/block/ssh.c @@ -656,19 +656,13 @@ fail: return result; } =20 -static int connect_to_ssh(BDRVSSHState *s, QDict *options, +static int connect_to_ssh(BDRVSSHState *s, BlockdevOptionsSsh *opts, int ssh_flags, int creat_mode, Error **errp) { - BlockdevOptionsSsh *opts; int r, ret; const char *user; long port =3D 0; =20 - opts =3D ssh_parse_options(options, errp); - if (opts =3D=3D NULL) { - return -EINVAL; - } - if (opts->has_user) { user =3D opts->user; } else { @@ -748,8 +742,6 @@ static int connect_to_ssh(BDRVSSHState *s, QDict *optio= ns, goto err; } =20 - qapi_free_BlockdevOptionsSsh(opts); - r =3D libssh2_sftp_fstat(s->sftp_handle, &s->attrs); if (r < 0) { sftp_error_setg(errp, s, "failed to read file attributes"); @@ -775,8 +767,6 @@ static int connect_to_ssh(BDRVSSHState *s, QDict *optio= ns, } s->session =3D NULL; =20 - qapi_free_BlockdevOptionsSsh(opts); - return ret; } =20 @@ -784,6 +774,7 @@ static int ssh_file_open(BlockDriverState *bs, QDict *o= ptions, int bdrv_flags, Error **errp) { BDRVSSHState *s =3D bs->opaque; + BlockdevOptionsSsh *opts; int ret; int ssh_flags; =20 @@ -794,8 +785,13 @@ static int ssh_file_open(BlockDriverState *bs, QDict *= options, int bdrv_flags, ssh_flags |=3D LIBSSH2_FXF_WRITE; } =20 + opts =3D ssh_parse_options(options, errp); + if (opts =3D=3D NULL) { + return -EINVAL; + } + /* Start up SSH. */ - ret =3D connect_to_ssh(s, options, ssh_flags, 0, errp); + ret =3D connect_to_ssh(s, opts, ssh_flags, 0, errp); if (ret < 0) { goto err; } @@ -803,6 +799,8 @@ static int ssh_file_open(BlockDriverState *bs, QDict *o= ptions, int bdrv_flags, /* Go non-blocking. */ libssh2_session_set_blocking(s->session, 0); =20 + qapi_free_BlockdevOptionsSsh(opts); + return 0; =20 err: @@ -811,6 +809,8 @@ static int ssh_file_open(BlockDriverState *bs, QDict *o= ptions, int bdrv_flags, } s->sock =3D -1; =20 + qapi_free_BlockdevOptionsSsh(opts); + return ret; } =20 @@ -860,6 +860,7 @@ static int coroutine_fn ssh_co_create_opts(const char *= filename, QemuOpts *opts, int r, ret; int64_t total_size =3D 0; QDict *uri_options =3D NULL; + BlockdevOptionsSsh *ssh_opts =3D NULL; BDRVSSHState s; =20 ssh_state_init(&s); @@ -876,7 +877,13 @@ static int coroutine_fn ssh_co_create_opts(const char = *filename, QemuOpts *opts, goto out; } =20 - r =3D connect_to_ssh(&s, uri_options, + ssh_opts =3D ssh_parse_options(uri_options, errp); + if (ssh_opts =3D=3D NULL) { + ret =3D -EINVAL; + goto out; + } + + r =3D connect_to_ssh(&s, ssh_opts, LIBSSH2_FXF_READ|LIBSSH2_FXF_WRITE| LIBSSH2_FXF_CREAT|LIBSSH2_FXF_TRUNC, 0644, errp); @@ -899,6 +906,7 @@ static int coroutine_fn ssh_co_create_opts(const char *= filename, QemuOpts *opts, if (uri_options !=3D NULL) { QDECREF(uri_options); } + qapi_free_BlockdevOptionsSsh(ssh_opts); return ret; } =20 --=20 2.13.6