26ba25
From 0af062f39429cd402392d6580fcb4c530935c4d3 Mon Sep 17 00:00:00 2001
26ba25
From: John Snow <jsnow@redhat.com>
26ba25
Date: Wed, 18 Jul 2018 22:55:04 +0200
26ba25
Subject: [PATCH 246/268] qapi: new qmp command nbd-server-add-bitmap
26ba25
26ba25
RH-Author: John Snow <jsnow@redhat.com>
26ba25
Message-id: <20180718225511.14878-29-jsnow@redhat.com>
26ba25
Patchwork-id: 81408
26ba25
O-Subject: [RHEL-7.6 qemu-kvm-rhev PATCH 28/35] qapi: new qmp command nbd-server-add-bitmap
26ba25
Bugzilla: 1207657
26ba25
RH-Acked-by: Eric Blake <eblake@redhat.com>
26ba25
RH-Acked-by: Stefan Hajnoczi <stefanha@redhat.com>
26ba25
RH-Acked-by: Fam Zheng <famz@redhat.com>
26ba25
26ba25
From: Vladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com>
26ba25
26ba25
For now, the actual command ix x-nbd-server-add-bitmap, reflecting
26ba25
the fact that we are still working on libvirt code that proves the
26ba25
command works as needed, and also the fact that we may remove
26ba25
bitmap-export-name (and just require that the exported name be the
26ba25
bitmap name).
26ba25
26ba25
Signed-off-by: Vladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com>
26ba25
Message-Id: <20180609151758.17343-6-vsementsov@virtuozzo.com>
26ba25
Reviewed-by: Eric Blake <eblake@redhat.com>
26ba25
[eblake: make the command experimental by adding x- prefix]
26ba25
Signed-off-by: Eric Blake <eblake@redhat.com>
26ba25
(cherry picked from commit 767f0c7d6cddedbc97ad700bd1e0229cc2ce5eb5)
26ba25
Signed-off-by: John Snow <jsnow@redhat.com>
26ba25
26ba25
Signed-off-by: Miroslav Rezanina <mrezanin@redhat.com>
26ba25
---
26ba25
 blockdev-nbd.c  | 23 +++++++++++++++++++++++
26ba25
 qapi/block.json | 23 +++++++++++++++++++++++
26ba25
 2 files changed, 46 insertions(+)
26ba25
26ba25
diff --git a/blockdev-nbd.c b/blockdev-nbd.c
26ba25
index 65a8473..1ef1104 100644
26ba25
--- a/blockdev-nbd.c
26ba25
+++ b/blockdev-nbd.c
26ba25
@@ -220,3 +220,26 @@ void qmp_nbd_server_stop(Error **errp)
26ba25
     nbd_server_free(nbd_server);
26ba25
     nbd_server = NULL;
26ba25
 }
26ba25
+
26ba25
+void qmp_x_nbd_server_add_bitmap(const char *name, const char *bitmap,
26ba25
+                                 bool has_bitmap_export_name,
26ba25
+                                 const char *bitmap_export_name,
26ba25
+                                 Error **errp)
26ba25
+{
26ba25
+    NBDExport *exp;
26ba25
+
26ba25
+    if (!nbd_server) {
26ba25
+        error_setg(errp, "NBD server not running");
26ba25
+        return;
26ba25
+    }
26ba25
+
26ba25
+    exp = nbd_export_find(name);
26ba25
+    if (exp == NULL) {
26ba25
+        error_setg(errp, "Export '%s' is not found", name);
26ba25
+        return;
26ba25
+    }
26ba25
+
26ba25
+    nbd_export_bitmap(exp, bitmap,
26ba25
+                      has_bitmap_export_name ? bitmap_export_name : bitmap,
26ba25
+                      errp);
26ba25
+}
26ba25
diff --git a/qapi/block.json b/qapi/block.json
26ba25
index 528c1e6..8b8678b 100644
26ba25
--- a/qapi/block.json
26ba25
+++ b/qapi/block.json
26ba25
@@ -296,6 +296,29 @@
26ba25
   'data': {'name': 'str', '*mode': 'NbdServerRemoveMode'} }
26ba25
 
26ba25
 ##
26ba25
+# @x-nbd-server-add-bitmap:
26ba25
+#
26ba25
+# Expose a dirty bitmap associated with the selected export. The bitmap search
26ba25
+# starts at the device attached to the export, and includes all backing files.
26ba25
+# The exported bitmap is then locked until the NBD export is removed.
26ba25
+#
26ba25
+# @name: Export name.
26ba25
+#
26ba25
+# @bitmap: Bitmap name to search for.
26ba25
+#
26ba25
+# @bitmap-export-name: How the bitmap will be seen by nbd clients
26ba25
+#                      (default @bitmap)
26ba25
+#
26ba25
+# Note: the client must use NBD_OPT_SET_META_CONTEXT with a query of
26ba25
+# "qemu:dirty-bitmap:NAME" (where NAME matches @bitmap-export-name) to access
26ba25
+# the exposed bitmap.
26ba25
+#
26ba25
+# Since: 3.0
26ba25
+##
26ba25
+  { 'command': 'x-nbd-server-add-bitmap',
26ba25
+    'data': {'name': 'str', 'bitmap': 'str', '*bitmap-export-name': 'str'} }
26ba25
+
26ba25
+##
26ba25
 # @nbd-server-stop:
26ba25
 #
26ba25
 # Stop QEMU's embedded NBD server, and unregister all devices previously
26ba25
-- 
26ba25
1.8.3.1
26ba25