cryptospore / rpms / qemu-kvm

Forked from rpms/qemu-kvm 2 years ago
Clone
76daa3
From 9ff701a5129653d6bd27c0b3cc249691cb6ce6a7 Mon Sep 17 00:00:00 2001
76daa3
From: Gerd Hoffmann <kraxel@redhat.com>
76daa3
Date: Tue, 14 Mar 2017 13:21:06 +0100
76daa3
Subject: add qxl_screendump monitor command
76daa3
76daa3
RH-Author: Gerd Hoffmann <kraxel@redhat.com>
76daa3
Message-id: <1375866764-17766-2-git-send-email-kraxel@redhat.com>
76daa3
Patchwork-id: 53033
76daa3
O-Subject: [RHEL-7 qemu-kvm PATCH 1/1] add qxl_screendump monitor command
76daa3
Bugzilla: 903910
76daa3
RH-Acked-by: Hans de Goede <hdegoede@redhat.com>
76daa3
RH-Acked-by: Laszlo Ersek <lersek@redhat.com>
76daa3
RH-Acked-by: Michal Novotny <minovotn@redhat.com>
76daa3
76daa3
This patch ports the rhel-6 specific qxl_screendump command to rhel-7.
76daa3
qxl_screendump takes the device id as additional argument and thus can
76daa3
be used to take screenshots from non-primary displays.
76daa3
76daa3
The plan to get that functionality upstream in time failed, so we go for
76daa3
plan b and carry forward the rhel-6 specific qxl_screendump command.
76daa3
Thanks to the major console subsystem cleanups which made it upstream
76daa3
the implementation is (a) alot less hackier than the rhel-6 one and (b)
76daa3
not qxl-specific any more.  Given that qxl is the only graphic device
76daa3
which can work as secondary vga card the later is only a theoretical
76daa3
benefit though ;)
76daa3
76daa3
RHEL-6 commit: 1c6074d107dff93c7c7b0edfb5da871504802946
76daa3
76daa3
bugzilla: #903910 - RHEL7 does not have equivalent functionality for
76daa3
__com.redhat_qxl_screendump
76daa3
76daa3
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
76daa3
(cherry picked from commit 211321c693f46d283205830c6c49b54d7250e98c)
76daa3
76daa3
Rebase notes (2.9.0):
76daa3
- documentation moved to qapi schema
76daa3
76daa3
Rebase notes (2.8.0):
76daa3
- qmp-commands.hx replaced by docs/qmp-commands.txt (commit bd6092e)
76daa3
- mhandler.cmd attribute renamed to cmd (commit 2b9e357)
76daa3
76daa3
Rebase notes (2.4.0):
76daa3
- replace QERR_DEVICE_NOT_FOUND with ERROR_CLASS_DEVICE_NOT_FOUND
76daa3
76daa3
Merged patches (2.9.0):
76daa3
- a3b59c0 HMP: Fix user manual typo of __com.redhat_qxl_screendump
76daa3
76daa3
Merged patches (2.6.0):
76daa3
- f12846f __com.redhat_qxl_screendump: add docs
76daa3
76daa3
(cherry picked from commit 4c87d4e33880c72d93d53dfae81dc7c4ff2e6a2d)
76daa3
---
76daa3
 hmp-commands.hx  | 14 ++++++++++++++
76daa3
 hmp.c            | 10 ++++++++++
76daa3
 hmp.h            |  1 +
76daa3
 qapi-schema.json | 22 ++++++++++++++++++++++
76daa3
 ui/console.c     | 24 ++++++++++++++++++++++++
76daa3
 5 files changed, 71 insertions(+)
76daa3
76daa3
diff --git a/hmp-commands.hx b/hmp-commands.hx
76daa3
index 8819281..c3c2f33 100644
76daa3
--- a/hmp-commands.hx
76daa3
+++ b/hmp-commands.hx
76daa3
@@ -266,6 +266,20 @@ Save screen into PPM image @var{filename}.
76daa3
 ETEXI
76daa3
 
76daa3
     {
76daa3
+        .name       = "__com.redhat_qxl_screendump",
76daa3
+        .args_type  = "id:s,filename:F",
76daa3
+        .params     = "id filename",
76daa3
+        .help       = "save screen from qxl device 'id' into PPM image 'filename'",
76daa3
+        .cmd = hmp___com_redhat_qxl_screen_dump,
76daa3
+    },
76daa3
+
76daa3
+STEXI
76daa3
+@item __com.redhat_qxl_screendump @var{id} @var{filename}
76daa3
+@findex __com.redhat_qxl_screendump
76daa3
+Save screen from qxl device @var{id} into PPM image @var{filename}.
76daa3
+ETEXI
76daa3
+
76daa3
+    {
76daa3
         .name       = "logfile",
76daa3
         .args_type  = "filename:F",
76daa3
         .params     = "filename",
76daa3
diff --git a/hmp.c b/hmp.c
76daa3
index edb8970..33ee308 100644
76daa3
--- a/hmp.c
76daa3
+++ b/hmp.c
76daa3
@@ -1928,6 +1928,16 @@ void hmp_screendump(Monitor *mon, const QDict *qdict)
76daa3
     hmp_handle_error(mon, &err;;
76daa3
 }
76daa3
 
76daa3
+void hmp___com_redhat_qxl_screen_dump(Monitor *mon, const QDict *qdict)
76daa3
+{
76daa3
+    const char *id = qdict_get_str(qdict, "id");
76daa3
+    const char *filename = qdict_get_str(qdict, "filename");
76daa3
+    Error *err = NULL;
76daa3
+
76daa3
+    qmp___com_redhat_qxl_screendump(id, filename, &err;;
76daa3
+    hmp_handle_error(mon, &err;;
76daa3
+}
76daa3
+
76daa3
 void hmp_nbd_server_start(Monitor *mon, const QDict *qdict)
76daa3
 {
76daa3
     const char *uri = qdict_get_str(qdict, "uri");
76daa3
diff --git a/hmp.h b/hmp.h
76daa3
index 799fd37..f7ca3b7 100644
76daa3
--- a/hmp.h
76daa3
+++ b/hmp.h
76daa3
@@ -94,6 +94,7 @@ void hmp_getfd(Monitor *mon, const QDict *qdict);
76daa3
 void hmp_closefd(Monitor *mon, const QDict *qdict);
76daa3
 void hmp_sendkey(Monitor *mon, const QDict *qdict);
76daa3
 void hmp_screendump(Monitor *mon, const QDict *qdict);
76daa3
+void hmp___com_redhat_qxl_screen_dump(Monitor *mon, const QDict *qdict);
76daa3
 void hmp_nbd_server_start(Monitor *mon, const QDict *qdict);
76daa3
 void hmp_nbd_server_add(Monitor *mon, const QDict *qdict);
76daa3
 void hmp_nbd_server_stop(Monitor *mon, const QDict *qdict);
76daa3
diff --git a/qapi-schema.json b/qapi-schema.json
76daa3
index 250e4dc..cefbaf5 100644
76daa3
--- a/qapi-schema.json
76daa3
+++ b/qapi-schema.json
76daa3
@@ -4831,6 +4831,28 @@
76daa3
                                        '*logappend': 'bool' } }
76daa3
 
76daa3
 ##
76daa3
+# @__com.redhat_qxl_screendump:
76daa3
+#
76daa3
+# Write a PPM of secondary qxl devices to a file.
76daa3
+#
76daa3
+# @id: qxl device id
76daa3
+# @filename: the path of a new PPM file to store the image
76daa3
+#
76daa3
+# Returns: Nothing on success
76daa3
+#
76daa3
+# Since: never (rhel-only, not upstream)
76daa3
+#
76daa3
+# Example:
76daa3
+#
76daa3
+# -> { "execute": "__com.redhat_qxl_screendump",
76daa3
+#      "arguments": { "id": video1", "filename": "v1.ppm" } }
76daa3
+# <- { "return": {} }
76daa3
+#
76daa3
+##
76daa3
+{ 'command': '__com.redhat_qxl_screendump', 'data': { 'id' : 'str',
76daa3
+                                                      'filename': 'str' } }
76daa3
+
76daa3
+##
76daa3
 # @ChardevFile:
76daa3
 #
76daa3
 # Configuration info for file chardevs.
76daa3
diff --git a/ui/console.c b/ui/console.c
76daa3
index 419b098..8736fe5 100644
76daa3
--- a/ui/console.c
76daa3
+++ b/ui/console.c
76daa3
@@ -357,6 +357,30 @@ void qmp_screendump(const char *filename, Error **errp)
76daa3
     ppm_save(filename, surface, errp);
76daa3
 }
76daa3
 
76daa3
+void qmp___com_redhat_qxl_screendump(const char *id, const char *filename, Error **errp)
76daa3
+{
76daa3
+    DeviceState *dev;
76daa3
+    QemuConsole *con;
76daa3
+    DisplaySurface *surface;
76daa3
+
76daa3
+    dev = qdev_find_recursive(sysbus_get_default(), id);
76daa3
+    if (NULL == dev) {
76daa3
+        error_set(errp, ERROR_CLASS_DEVICE_NOT_FOUND,
76daa3
+                  "Device '%s' not found", id);
76daa3
+        return;
76daa3
+    }
76daa3
+
76daa3
+    con = qemu_console_lookup_by_device(dev, 0);
76daa3
+    if (con == NULL) {
76daa3
+        error_setg(errp, "Device %s has no QemuConsole attached to it.", id);
76daa3
+        return;
76daa3
+    }
76daa3
+
76daa3
+    graphic_hw_update(con);
76daa3
+    surface = qemu_console_surface(con);
76daa3
+    ppm_save(filename, surface, errp);
76daa3
+}
76daa3
+
76daa3
 void graphic_hw_text_update(QemuConsole *con, console_ch_t *chardata)
76daa3
 {
76daa3
     if (!con) {
76daa3
-- 
76daa3
1.8.3.1
76daa3