yeahuh / rpms / qemu-kvm

Forked from rpms/qemu-kvm 2 years ago
Clone

Blame SOURCES/kvm-block-ssh-Propagate-errors-to-open-and-create-method.patch

9ae3a8
From 82480db1c89f2ac291e44c74274bd0b6a860a720 Mon Sep 17 00:00:00 2001
9ae3a8
From: Richard Jones <rjones@redhat.com>
9ae3a8
Date: Mon, 8 Jun 2015 11:56:59 +0200
9ae3a8
Subject: [PATCH 06/30] block/ssh: Propagate errors to open and create methods
9ae3a8
9ae3a8
Message-id: <1433764620-20506-6-git-send-email-rjones@redhat.com>
9ae3a8
Patchwork-id: 65482
9ae3a8
O-Subject: [RHEL-7.2 qemu-kvm PATCH 5/6] block/ssh: Propagate errors to open and create methods
9ae3a8
Bugzilla: 1226683
9ae3a8
RH-Acked-by: Miroslav Rezanina <mrezanin@redhat.com>
9ae3a8
RH-Acked-by: Stefan Hajnoczi <stefanha@redhat.com>
9ae3a8
RH-Acked-by: Laszlo Ersek <lersek@redhat.com>
9ae3a8
9ae3a8
From: Markus Armbruster <armbru@redhat.com>
9ae3a8
9ae3a8
Completes the conversion to Error started in commit 015a103^..d5124c0.
9ae3a8
9ae3a8
Signed-off-by: Markus Armbruster <armbru@redhat.com>
9ae3a8
Reviewed-by: Richard W.M. Jones <rjones@redhat.com>
9ae3a8
Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
9ae3a8
9ae3a8
Upstream-status: 5496fb1aebb624b379a503a8b2a156922a275fa1
9ae3a8
Signed-off-by: Miroslav Rezanina <mrezanin@redhat.com>
9ae3a8
---
9ae3a8
 block/ssh.c | 47 ++++++++++++++++++++++-------------------------
9ae3a8
 1 file changed, 22 insertions(+), 25 deletions(-)
9ae3a8
9ae3a8
diff --git a/block/ssh.c b/block/ssh.c
9ae3a8
index 07f8a2c..3b4d9e7 100644
9ae3a8
--- a/block/ssh.c
9ae3a8
+++ b/block/ssh.c
9ae3a8
@@ -131,29 +131,34 @@ session_error_setg(Error **errp, BDRVSSHState *s, const char *fs, ...)
9ae3a8
     g_free(msg);
9ae3a8
 }
9ae3a8
 
9ae3a8
-/* Wrappers around error_report which make sure to dump as much
9ae3a8
- * information from libssh2 as possible.
9ae3a8
- */
9ae3a8
-static void GCC_FMT_ATTR(2, 3)
9ae3a8
-session_error_report(BDRVSSHState *s, const char *fs, ...)
9ae3a8
+static void GCC_FMT_ATTR(3, 4)
9ae3a8
+sftp_error_setg(Error **errp, BDRVSSHState *s, const char *fs, ...)
9ae3a8
 {
9ae3a8
     va_list args;
9ae3a8
+    char *msg;
9ae3a8
 
9ae3a8
     va_start(args, fs);
9ae3a8
-    error_vprintf(fs, args);
9ae3a8
+    msg = g_strdup_vprintf(fs, args);
9ae3a8
+    va_end(args);
9ae3a8
 
9ae3a8
-    if ((s)->session) {
9ae3a8
+    if (s->sftp) {
9ae3a8
         char *ssh_err;
9ae3a8
         int ssh_err_code;
9ae3a8
+        unsigned long sftp_err_code;
9ae3a8
 
9ae3a8
         /* This is not an errno.  See <libssh2.h>. */
9ae3a8
         ssh_err_code = libssh2_session_last_error(s->session,
9ae3a8
                                                   &ssh_err, NULL, 0);
9ae3a8
-        error_printf(": %s (libssh2 error code: %d)", ssh_err, ssh_err_code);
9ae3a8
-    }
9ae3a8
+        /* See <libssh2_sftp.h>. */
9ae3a8
+        sftp_err_code = libssh2_sftp_last_error((s)->sftp);
9ae3a8
 
9ae3a8
-    va_end(args);
9ae3a8
-    error_printf("\n");
9ae3a8
+        error_setg(errp,
9ae3a8
+                   "%s: %s (libssh2 error code: %d, sftp error code: %lu)",
9ae3a8
+                   msg, ssh_err, ssh_err_code, sftp_err_code);
9ae3a8
+    } else {
9ae3a8
+        error_setg(errp, "%s", msg);
9ae3a8
+    }
9ae3a8
+    g_free(msg);
9ae3a8
 }
9ae3a8
 
9ae3a8
 static void GCC_FMT_ATTR(2, 3)
9ae3a8
@@ -594,14 +599,14 @@ static int connect_to_ssh(BDRVSSHState *s, QDict *options,
9ae3a8
             path, ssh_flags, creat_mode);
9ae3a8
     s->sftp_handle = libssh2_sftp_open(s->sftp, path, ssh_flags, creat_mode);
9ae3a8
     if (!s->sftp_handle) {
9ae3a8
-        session_error_report(s, "failed to open remote file '%s'", path);
9ae3a8
+        session_error_setg(errp, s, "failed to open remote file '%s'", path);
9ae3a8
         ret = -EINVAL;
9ae3a8
         goto err;
9ae3a8
     }
9ae3a8
 
9ae3a8
     r = libssh2_sftp_fstat(s->sftp_handle, &s->attrs);
9ae3a8
     if (r < 0) {
9ae3a8
-        sftp_error_report(s, "failed to read file attributes");
9ae3a8
+        sftp_error_setg(errp, s, "failed to read file attributes");
9ae3a8
         return -EINVAL;
9ae3a8
     }
9ae3a8
 
9ae3a8
@@ -639,7 +644,6 @@ static int connect_to_ssh(BDRVSSHState *s, QDict *options,
9ae3a8
 static int ssh_file_open(BlockDriverState *bs, QDict *options, int bdrv_flags,
9ae3a8
                          Error **errp)
9ae3a8
 {
9ae3a8
-    Error *local_err = NULL;
9ae3a8
     BDRVSSHState *s = bs->opaque;
9ae3a8
     int ret;
9ae3a8
     int ssh_flags;
9ae3a8
@@ -652,10 +656,8 @@ static int ssh_file_open(BlockDriverState *bs, QDict *options, int bdrv_flags,
9ae3a8
     }
9ae3a8
 
9ae3a8
     /* Start up SSH. */
9ae3a8
-    ret = connect_to_ssh(s, options, ssh_flags, 0, &local_err);
9ae3a8
+    ret = connect_to_ssh(s, options, ssh_flags, 0, errp);
9ae3a8
     if (ret < 0) {
9ae3a8
-        qerror_report_err(local_err);
9ae3a8
-        error_free(local_err);
9ae3a8
         goto err;
9ae3a8
     }
9ae3a8
 
9ae3a8
@@ -686,7 +688,6 @@ static int ssh_create(const char *filename, QEMUOptionParameter *options,
9ae3a8
                       Error **errp)
9ae3a8
 {
9ae3a8
     int r, ret;
9ae3a8
-    Error *local_err = NULL;
9ae3a8
     int64_t total_size = 0;
9ae3a8
     QDict *uri_options = NULL;
9ae3a8
     BDRVSSHState s;
9ae3a8
@@ -705,10 +706,8 @@ static int ssh_create(const char *filename, QEMUOptionParameter *options,
9ae3a8
     DPRINTF("total_size=%" PRIi64, total_size);
9ae3a8
 
9ae3a8
     uri_options = qdict_new();
9ae3a8
-    r = parse_uri(filename, uri_options, &local_err);
9ae3a8
+    r = parse_uri(filename, uri_options, errp);
9ae3a8
     if (r < 0) {
9ae3a8
-        qerror_report_err(local_err);
9ae3a8
-        error_free(local_err);
9ae3a8
         ret = r;
9ae3a8
         goto out;
9ae3a8
     }
9ae3a8
@@ -716,10 +715,8 @@ static int ssh_create(const char *filename, QEMUOptionParameter *options,
9ae3a8
     r = connect_to_ssh(&s, uri_options,
9ae3a8
                        LIBSSH2_FXF_READ|LIBSSH2_FXF_WRITE|
9ae3a8
                        LIBSSH2_FXF_CREAT|LIBSSH2_FXF_TRUNC,
9ae3a8
-                       0644, &local_err);
9ae3a8
+                       0644, errp);
9ae3a8
     if (r < 0) {
9ae3a8
-        qerror_report_err(local_err);
9ae3a8
-        error_free(local_err);
9ae3a8
         ret = r;
9ae3a8
         goto out;
9ae3a8
     }
9ae3a8
@@ -728,7 +725,7 @@ static int ssh_create(const char *filename, QEMUOptionParameter *options,
9ae3a8
         libssh2_sftp_seek64(s.sftp_handle, total_size-1);
9ae3a8
         r2 = libssh2_sftp_write(s.sftp_handle, c, 1);
9ae3a8
         if (r2 < 0) {
9ae3a8
-            sftp_error_report(&s, "truncate failed");
9ae3a8
+            sftp_error_setg(errp, &s, "truncate failed");
9ae3a8
             ret = -EINVAL;
9ae3a8
             goto out;
9ae3a8
         }
9ae3a8
-- 
9ae3a8
1.8.3.1
9ae3a8