All of lore.kernel.org
 help / color / mirror / Atom feed
From: Michael Roth <mdroth@linux.vnet.ibm.com>
To: qemu-devel@nongnu.org
Cc: peter.maydell@linaro.org, Jonathon Reinhart <jreinhart@cc-sw.com>
Subject: [Qemu-devel] [PULL v3 01/24] qga: Support Unicode paths in guest-file-open on win32
Date: Wed, 31 Oct 2018 09:19:02 -0500	[thread overview]
Message-ID: <20181031141925.30026-2-mdroth@linux.vnet.ibm.com> (raw)
In-Reply-To: <20181031141925.30026-1-mdroth@linux.vnet.ibm.com>

From: Jonathon Reinhart <jreinhart@cc-sw.com>

Currently, the win32 port of QEMU Guest Agent does not properly handle Unicode
paths. The JSON decoder produces a valid UTF-8 path string, but this is passed
directly to CreateFileA, which is expecting an ANSI string and not UTF-8. This
leads to mangled filenames.

This patch follows the example of qmp_guest_set_user_password() and uses
g_utf8_to_utf16() to convert the string to UTF-16 and calls CreateFileW()
explicitly.

Signed-off-by: Jonathon Reinhart <jreinhart@cc-sw.com>
Signed-off-by: Michael Roth <mdroth@linux.vnet.ibm.com>
---
 qga/commands-win32.c | 24 +++++++++++++++++++-----
 1 file changed, 19 insertions(+), 5 deletions(-)

diff --git a/qga/commands-win32.c b/qga/commands-win32.c
index 98d9735389..416343b97b 100644
--- a/qga/commands-win32.c
+++ b/qga/commands-win32.c
@@ -160,13 +160,15 @@ static void handle_set_nonblocking(HANDLE fh)
 int64_t qmp_guest_file_open(const char *path, bool has_mode,
                             const char *mode, Error **errp)
 {
-    int64_t fd;
+    int64_t fd = -1;
     HANDLE fh;
     HANDLE templ_file = NULL;
     DWORD share_mode = FILE_SHARE_READ;
     DWORD flags_and_attr = FILE_ATTRIBUTE_NORMAL;
     LPSECURITY_ATTRIBUTES sa_attr = NULL;
     OpenFlags *guest_flags;
+    GError *gerr = NULL;
+    wchar_t *w_path = NULL;
 
     if (!has_mode) {
         mode = "r";
@@ -175,16 +177,21 @@ int64_t qmp_guest_file_open(const char *path, bool has_mode,
     guest_flags = find_open_flag(mode);
     if (guest_flags == NULL) {
         error_setg(errp, "invalid file open mode");
-        return -1;
+        goto done;
+    }
+
+    w_path = g_utf8_to_utf16(path, -1, NULL, NULL, &gerr);
+    if (!w_path) {
+        goto done;
     }
 
-    fh = CreateFile(path, guest_flags->desired_access, share_mode, sa_attr,
+    fh = CreateFileW(w_path, guest_flags->desired_access, share_mode, sa_attr,
                     guest_flags->creation_disposition, flags_and_attr,
                     templ_file);
     if (fh == INVALID_HANDLE_VALUE) {
         error_setg_win32(errp, GetLastError(), "failed to open file '%s'",
                          path);
-        return -1;
+        goto done;
     }
 
     /* set fd non-blocking to avoid common use cases (like reading from a
@@ -196,10 +203,17 @@ int64_t qmp_guest_file_open(const char *path, bool has_mode,
     if (fd < 0) {
         CloseHandle(fh);
         error_setg(errp, "failed to add handle to qmp handle table");
-        return -1;
+        goto done;
     }
 
     slog("guest-file-open, handle: % " PRId64, fd);
+
+done:
+    if (gerr) {
+        error_setg(errp, QERR_QGA_COMMAND_FAILED, gerr->message);
+        g_error_free(gerr);
+    }
+    g_free(w_path);
     return fd;
 }
 
-- 
2.17.1

  reply	other threads:[~2018-10-31 14:21 UTC|newest]

Thread overview: 27+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-10-31 14:19 [Qemu-devel] [PULL v3 00/24] qemu-ga patch queue for soft-freeze Michael Roth
2018-10-31 14:19 ` Michael Roth [this message]
2018-10-31 14:19 ` [Qemu-devel] [PULL v3 02/24] qga-win: add support for qmp_guest_fsfreeze_freeze_list Michael Roth
2018-10-31 14:19 ` [Qemu-devel] [PULL v3 03/24] qga: ignore non present cpus when handling qmp_guest_get_vcpus() Michael Roth
2018-10-31 14:19 ` [Qemu-devel] [PULL v3 04/24] configure: add test for libudev Michael Roth
2018-10-31 14:19 ` [Qemu-devel] [PULL v3 05/24] qga: linux: report disk serial number Michael Roth
2018-10-31 14:19 ` [Qemu-devel] [PULL v3 06/24] qga: linux: return disk device in guest-get-fsinfo Michael Roth
2018-10-31 14:19 ` [Qemu-devel] [PULL v3 07/24] qga-win: prevent crash when executing fsinfo command Michael Roth
2018-10-31 14:19 ` [Qemu-devel] [PULL v3 08/24] qga-win: fsinfo: pci-info: allow partial info Michael Roth
2018-10-31 14:19 ` [Qemu-devel] [PULL v3 09/24] build: rename CONFIG_QGA_NTDDDISK to CONFIG_QGA_NTDDSCSI Michael Roth
2018-10-31 14:19 ` [Qemu-devel] [PULL v3 10/24] qga-win: add debugging information Michael Roth
2018-10-31 14:19 ` [Qemu-devel] [PULL v3 11/24] qga-win: refactor disk properties (bus) Michael Roth
2018-10-31 14:19 ` [Qemu-devel] [PULL v3 12/24] qga-win: report disk serial number Michael Roth
2018-10-31 14:19 ` [Qemu-devel] [PULL v3 13/24] qga-win: refactor disk info Michael Roth
2018-10-31 14:19 ` [Qemu-devel] [PULL v3 14/24] qga-win: handle multi-disk volumes Michael Roth
2018-10-31 14:19 ` [Qemu-devel] [PULL v3 15/24] qga-win: return disk device in guest-get-fsinfo Michael Roth
2018-10-31 14:19 ` [Qemu-devel] [PULL v3 16/24] qga-win: demystify namespace stripping Michael Roth
2018-10-31 14:19 ` [Qemu-devel] [PULL v3 17/24] qga: fix an off-by-one issue Michael Roth
2018-10-31 14:19 ` [Qemu-devel] [PULL v3 18/24] qga: group agent init/cleanup init separate routines Michael Roth
2018-10-31 14:19 ` [Qemu-devel] [PULL v3 19/24] qga: hang GAConfig/socket_activation off of GAState global Michael Roth
2018-10-31 14:19 ` [Qemu-devel] [PULL v3 20/24] qga: move w32 service handling out of run_agent() Michael Roth
2018-10-31 14:19 ` [Qemu-devel] [PULL v3 21/24] qga: add --retry-path option for re-initializing channel on failure Michael Roth
2018-10-31 14:19 ` [Qemu-devel] [PULL v3 22/24] qga-win: install service with --retry-path set by default Michael Roth
2018-10-31 14:19 ` [Qemu-devel] [PULL v3 23/24] qga-win: report specific error when failing to open channel Michael Roth
2018-10-31 14:19 ` [Qemu-devel] [PULL v3 24/24] qga-win: changing --retry-path option behavior Michael Roth
2018-11-01 18:28 ` [Qemu-devel] [PULL v3 00/24] qemu-ga patch queue for soft-freeze Peter Maydell
2018-11-02  0:27 ` no-reply

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20181031141925.30026-2-mdroth@linux.vnet.ibm.com \
    --to=mdroth@linux.vnet.ibm.com \
    --cc=jreinhart@cc-sw.com \
    --cc=peter.maydell@linaro.org \
    --cc=qemu-devel@nongnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.