qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PULL for-2.5 0/3] qemu-ga patch queue
@ 2015-11-04 20:12 Michael Roth
  2015-11-04 20:12 ` [Qemu-devel] [PULL 1/3] qga: drop hand-made guest_file_toggle_flags helper Michael Roth
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: Michael Roth @ 2015-11-04 20:12 UTC (permalink / raw)
  To: qemu-devel; +Cc: peter.maydell

The following changes since commit 79cf9fad341e6e7bd6b55395b71d5c5727d7f5b0:

  Merge remote-tracking branch 'remotes/pmaydell/tags/pull-target-arm-20151103' into staging (2015-11-03 14:54:40 +0000)

are available in the git repository at:


  git://github.com/mdroth/qemu.git tags/qga-pull-2015-11-04-tag

for you to fetch changes up to fb68777312887000cd0367d72621fdd67cc4a0a0:

  qga: set file descriptor in qmp_guest_file_open non-blocking on Win32 (2015-11-04 07:37:56 -0600)

----------------------------------------------------------------
qemu-ga patch queue

* fix file handle cleanup on w32
* use non-blocking mode for file handles on w32 to avoid
  hangs on guest-file-read/guest-file-write to pipes

----------------------------------------------------------------
Denis V. Lunev (1):
      qga: drop hand-made guest_file_toggle_flags helper

Olga Krishtal (2):
      qga: fixed CloseHandle in qmp_guest_file_open
      qga: set file descriptor in qmp_guest_file_open non-blocking on Win32

 qga/commands-posix.c | 27 ++-------------------------
 qga/commands-win32.c | 29 ++++++++++++++++++++++++++++-
 2 files changed, 30 insertions(+), 26 deletions(-)

^ permalink raw reply	[flat|nested] 5+ messages in thread

* [Qemu-devel] [PULL 1/3] qga: drop hand-made guest_file_toggle_flags helper
  2015-11-04 20:12 [Qemu-devel] [PULL for-2.5 0/3] qemu-ga patch queue Michael Roth
@ 2015-11-04 20:12 ` Michael Roth
  2015-11-04 20:12 ` [Qemu-devel] [PULL 2/3] qga: fixed CloseHandle in qmp_guest_file_open Michael Roth
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 5+ messages in thread
From: Michael Roth @ 2015-11-04 20:12 UTC (permalink / raw)
  To: qemu-devel; +Cc: peter.maydell, Michael Roth, Denis V. Lunev

From: "Denis V. Lunev" <den@openvz.org>

We'd better use generic qemu_set_nonblock directly.

Signed-off-by: Denis V. Lunev <den@openvz.org>
Reviewed-by: Yuri Pudgorodskiy <yur@virtuozzo.com>
Reviewed-by: Eric Blake <eblake@redhat.com>
CC: Michael Roth <mdroth@linux.vnet.ibm.com>
Signed-off-by: Michael Roth <mdroth@linux.vnet.ibm.com>
---
 qga/commands-posix.c | 27 ++-------------------------
 1 file changed, 2 insertions(+), 25 deletions(-)

diff --git a/qga/commands-posix.c b/qga/commands-posix.c
index 67a173a..0ebd473 100644
--- a/qga/commands-posix.c
+++ b/qga/commands-posix.c
@@ -28,6 +28,7 @@
 #include "qapi/qmp/qerror.h"
 #include "qemu/queue.h"
 #include "qemu/host-utils.h"
+#include "qemu/sockets.h"
 
 #ifndef CONFIG_HAS_ENVIRON
 #ifdef __APPLE__
@@ -385,27 +386,6 @@ safe_open_or_create(const char *path, const char *mode, Error **errp)
     return NULL;
 }
 
-static int guest_file_toggle_flags(int fd, int flags, bool set, Error **err)
-{
-    int ret, old_flags;
-
-    old_flags = fcntl(fd, F_GETFL);
-    if (old_flags == -1) {
-        error_setg_errno(err, errno, QERR_QGA_COMMAND_FAILED,
-                         "failed to fetch filehandle flags");
-        return -1;
-    }
-
-    ret = fcntl(fd, F_SETFL, set ? (old_flags | flags) : (old_flags & ~flags));
-    if (ret == -1) {
-        error_setg_errno(err, errno, QERR_QGA_COMMAND_FAILED,
-                         "failed to set filehandle flags");
-        return -1;
-    }
-
-    return ret;
-}
-
 int64_t qmp_guest_file_open(const char *path, bool has_mode, const char *mode,
                             Error **errp)
 {
@@ -426,10 +406,7 @@ int64_t qmp_guest_file_open(const char *path, bool has_mode, const char *mode,
     /* set fd non-blocking to avoid common use cases (like reading from a
      * named pipe) from hanging the agent
      */
-    if (guest_file_toggle_flags(fileno(fh), O_NONBLOCK, true, errp) < 0) {
-        fclose(fh);
-        return -1;
-    }
+    qemu_set_nonblock(fileno(fh));
 
     handle = guest_file_handle_add(fh, errp);
     if (handle < 0) {
-- 
1.9.1

^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [Qemu-devel] [PULL 2/3] qga: fixed CloseHandle in qmp_guest_file_open
  2015-11-04 20:12 [Qemu-devel] [PULL for-2.5 0/3] qemu-ga patch queue Michael Roth
  2015-11-04 20:12 ` [Qemu-devel] [PULL 1/3] qga: drop hand-made guest_file_toggle_flags helper Michael Roth
@ 2015-11-04 20:12 ` Michael Roth
  2015-11-04 20:12 ` [Qemu-devel] [PULL 3/3] qga: set file descriptor in qmp_guest_file_open non-blocking on Win32 Michael Roth
  2015-11-05 11:43 ` [Qemu-devel] [PULL for-2.5 0/3] qemu-ga patch queue Peter Maydell
  3 siblings, 0 replies; 5+ messages in thread
From: Michael Roth @ 2015-11-04 20:12 UTC (permalink / raw)
  To: qemu-devel; +Cc: Denis V. Lunev, peter.maydell, Michael Roth, Olga Krishtal

From: Olga Krishtal <okrishtal@parallels.com>

CloseHandle use HANDLE as an argument, but not *HANDLE

Signed-off-by: Olga Krishtal <okrishtal@parallels.com>
Signed-off-by: Denis V. Lunev <den@openvz.org>
Reviewed-by: Stefan Weil <sw@weilnetz.de>
CC: Michael Roth <mdroth@linux.vnet.ibm.com>
Signed-off-by: Michael Roth <mdroth@linux.vnet.ibm.com>
---
 qga/commands-win32.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/qga/commands-win32.c b/qga/commands-win32.c
index d9de23b..97f19d5 100644
--- a/qga/commands-win32.c
+++ b/qga/commands-win32.c
@@ -160,7 +160,7 @@ int64_t qmp_guest_file_open(const char *path, bool has_mode,
 
     fd = guest_file_handle_add(fh, errp);
     if (fd < 0) {
-        CloseHandle(&fh);
+        CloseHandle(fh);
         error_setg(errp, "failed to add handle to qmp handle table");
         return -1;
     }
-- 
1.9.1

^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [Qemu-devel] [PULL 3/3] qga: set file descriptor in qmp_guest_file_open non-blocking on Win32
  2015-11-04 20:12 [Qemu-devel] [PULL for-2.5 0/3] qemu-ga patch queue Michael Roth
  2015-11-04 20:12 ` [Qemu-devel] [PULL 1/3] qga: drop hand-made guest_file_toggle_flags helper Michael Roth
  2015-11-04 20:12 ` [Qemu-devel] [PULL 2/3] qga: fixed CloseHandle in qmp_guest_file_open Michael Roth
@ 2015-11-04 20:12 ` Michael Roth
  2015-11-05 11:43 ` [Qemu-devel] [PULL for-2.5 0/3] qemu-ga patch queue Peter Maydell
  3 siblings, 0 replies; 5+ messages in thread
From: Michael Roth @ 2015-11-04 20:12 UTC (permalink / raw)
  To: qemu-devel
  Cc: Denis V. Lunev, peter.maydell, Stefan Weil, Michael Roth,
	Olga Krishtal

From: Olga Krishtal <okrishtal@parallels.com>

Set fd non-blocking to avoid common use cases (like reading from a
named pipe) from hanging the agent. This was missed in the original
code.

The patch introduces qemu_set_handle_nonoblocking, the local analog
of qemu_set_nonblock for HANDLES.
The usage of handles in qemu_set_non/block is impossible, because for
win32 there is a difference between file discriptors and file handles,
and all file ops are made via Win32 api.

Signed-off-by: Olga Krishtal <okrishtal@parallels.com>
Signed-off-by: Denis V. Lunev <den@openvz.org>
CC: Michael Roth <mdroth@linux.vnet.ibm.com>
CC: Stefan Weil <sw@weilnetz.de>
Signed-off-by: Michael Roth <mdroth@linux.vnet.ibm.com>
---
 qga/commands-win32.c | 27 +++++++++++++++++++++++++++
 1 file changed, 27 insertions(+)

diff --git a/qga/commands-win32.c b/qga/commands-win32.c
index 97f19d5..a5306e7 100644
--- a/qga/commands-win32.c
+++ b/qga/commands-win32.c
@@ -128,6 +128,28 @@ static GuestFileHandle *guest_file_handle_find(int64_t id, Error **errp)
     return NULL;
 }
 
+static void handle_set_nonblocking(HANDLE fh)
+{
+    DWORD file_type, pipe_state;
+    file_type = GetFileType(fh);
+    if (file_type != FILE_TYPE_PIPE) {
+        return;
+    }
+    /* If file_type == FILE_TYPE_PIPE, according to MSDN
+     * the specified file is socket or named pipe */
+    if (!GetNamedPipeHandleState(fh, &pipe_state, NULL,
+                                 NULL, NULL, NULL, 0)) {
+        return;
+    }
+    /* The fd is named pipe fd */
+    if (pipe_state & PIPE_NOWAIT) {
+        return;
+    }
+
+    pipe_state |= PIPE_NOWAIT;
+    SetNamedPipeHandleState(fh, &pipe_state, NULL, NULL);
+}
+
 int64_t qmp_guest_file_open(const char *path, bool has_mode,
                             const char *mode, Error **errp)
 {
@@ -158,6 +180,11 @@ int64_t qmp_guest_file_open(const char *path, bool has_mode,
         return -1;
     }
 
+    /* set fd non-blocking to avoid common use cases (like reading from a
+     * named pipe) from hanging the agent
+     */
+    handle_set_nonblocking(fh);
+
     fd = guest_file_handle_add(fh, errp);
     if (fd < 0) {
         CloseHandle(fh);
-- 
1.9.1

^ permalink raw reply related	[flat|nested] 5+ messages in thread

* Re: [Qemu-devel] [PULL for-2.5 0/3] qemu-ga patch queue
  2015-11-04 20:12 [Qemu-devel] [PULL for-2.5 0/3] qemu-ga patch queue Michael Roth
                   ` (2 preceding siblings ...)
  2015-11-04 20:12 ` [Qemu-devel] [PULL 3/3] qga: set file descriptor in qmp_guest_file_open non-blocking on Win32 Michael Roth
@ 2015-11-05 11:43 ` Peter Maydell
  3 siblings, 0 replies; 5+ messages in thread
From: Peter Maydell @ 2015-11-05 11:43 UTC (permalink / raw)
  To: Michael Roth; +Cc: QEMU Developers

On 4 November 2015 at 20:12, Michael Roth <mdroth@linux.vnet.ibm.com> wrote:
> The following changes since commit 79cf9fad341e6e7bd6b55395b71d5c5727d7f5b0:
>
>   Merge remote-tracking branch 'remotes/pmaydell/tags/pull-target-arm-20151103' into staging (2015-11-03 14:54:40 +0000)
>
> are available in the git repository at:
>
>
>   git://github.com/mdroth/qemu.git tags/qga-pull-2015-11-04-tag
>
> for you to fetch changes up to fb68777312887000cd0367d72621fdd67cc4a0a0:
>
>   qga: set file descriptor in qmp_guest_file_open non-blocking on Win32 (2015-11-04 07:37:56 -0600)
>
> ----------------------------------------------------------------
> qemu-ga patch queue
>
> * fix file handle cleanup on w32
> * use non-blocking mode for file handles on w32 to avoid
>   hangs on guest-file-read/guest-file-write to pipes
>
> ----------------------------------------------------------------
> Denis V. Lunev (1):
>       qga: drop hand-made guest_file_toggle_flags helper
>
> Olga Krishtal (2):
>       qga: fixed CloseHandle in qmp_guest_file_open
>       qga: set file descriptor in qmp_guest_file_open non-blocking on Win32
>

Applied, thanks.

-- PMM

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2015-11-05 11:44 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-11-04 20:12 [Qemu-devel] [PULL for-2.5 0/3] qemu-ga patch queue Michael Roth
2015-11-04 20:12 ` [Qemu-devel] [PULL 1/3] qga: drop hand-made guest_file_toggle_flags helper Michael Roth
2015-11-04 20:12 ` [Qemu-devel] [PULL 2/3] qga: fixed CloseHandle in qmp_guest_file_open Michael Roth
2015-11-04 20:12 ` [Qemu-devel] [PULL 3/3] qga: set file descriptor in qmp_guest_file_open non-blocking on Win32 Michael Roth
2015-11-05 11:43 ` [Qemu-devel] [PULL for-2.5 0/3] qemu-ga patch queue Peter Maydell

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).