]> git.proxmox.com Git - pve-qemu-kvm.git/blame - debian/patches/backup-add-pve-monitor-commands.patch
qemu : add drive-mirror sleep patches
[pve-qemu-kvm.git] / debian / patches / backup-add-pve-monitor-commands.patch
CommitLineData
cbf9030a
DM
1Index: new/blockdev.c
2===================================================================
24bb7da3
DM
3--- new.orig/blockdev.c 2014-11-20 07:36:12.000000000 +0100
4+++ new/blockdev.c 2014-11-20 07:47:31.000000000 +0100
5@@ -46,6 +46,7 @@
cbf9030a
DM
6 #include "qmp-commands.h"
7 #include "trace.h"
8 #include "sysemu/arch_init.h"
9+#include "vma.h"
10
24bb7da3
DM
11 static const char *const if_name[IF_COUNT] = {
12 [IF_NONE] = "none",
58117ea6 13@@ -1954,6 +1955,439 @@
81300c8b
DM
14 bdrv_put_ref_bh_schedule(bs);
15 }
16
cbf9030a
DM
17+/* PVE backup related function */
18+
19+static struct PVEBackupState {
20+ Error *error;
21+ bool cancel;
22+ uuid_t uuid;
23+ char uuid_str[37];
24+ int64_t speed;
25+ time_t start_time;
26+ time_t end_time;
27+ char *backup_file;
28+ VmaWriter *vmaw;
29+ GList *di_list;
30+ size_t total;
31+ size_t transferred;
32+ size_t zero_bytes;
33+} backup_state;
34+
35+typedef struct PVEBackupDevInfo {
36+ BlockDriverState *bs;
e72ed697 37+ size_t size;
cbf9030a
DM
38+ uint8_t dev_id;
39+ //bool started;
40+ bool completed;
41+} PVEBackupDevInfo;
42+
43+static void pvebackup_run_next_job(void);
44+
e72ed697
DM
45+static int pvebackup_dump_cb(void *opaque, BlockDriverState *target,
46+ int64_t sector_num, int n_sectors,
47+ unsigned char *buf)
cbf9030a
DM
48+{
49+ PVEBackupDevInfo *di = opaque;
50+
e72ed697
DM
51+ if (sector_num & 0x7f) {
52+ if (!backup_state.error) {
53+ error_setg(&backup_state.error,
54+ "got unaligned write inside backup dump "
55+ "callback (sector %ld)", sector_num);
56+ }
57+ return -1; // not aligned to cluster size
58+ }
cbf9030a 59+
e72ed697
DM
60+ int64_t cluster_num = sector_num >> 7;
61+ int size = n_sectors * BDRV_SECTOR_SIZE;
cbf9030a 62+
e72ed697 63+ int ret = -1;
cbf9030a 64+
e72ed697
DM
65+ if (backup_state.vmaw) {
66+ size_t zero_bytes = 0;
67+ ret = vma_writer_write(backup_state.vmaw, di->dev_id, cluster_num,
68+ buf, &zero_bytes);
69+ backup_state.zero_bytes += zero_bytes;
70+ } else {
71+ ret = size;
72+ if (!buf) {
73+ backup_state.zero_bytes += size;
cbf9030a
DM
74+ }
75+ }
76+
e72ed697
DM
77+ backup_state.transferred += size;
78+
79+ return ret;
cbf9030a
DM
80+}
81+
82+static void pvebackup_cleanup(void)
83+{
b38014b6
DM
84+ backup_state.end_time = time(NULL);
85+
cbf9030a 86+ if (backup_state.vmaw) {
cbf9030a 87+ Error *local_err = NULL;
cbf9030a
DM
88+ vma_writer_close(backup_state.vmaw, &local_err);
89+ error_propagate(&backup_state.error, local_err);
90+ backup_state.vmaw = NULL;
91+ }
92+
93+ if (backup_state.di_list) {
94+ GList *l = backup_state.di_list;
95+ while (l) {
96+ PVEBackupDevInfo *di = (PVEBackupDevInfo *)l->data;
97+ l = g_list_next(l);
98+ g_free(di);
99+ }
100+ g_list_free(backup_state.di_list);
101+ backup_state.di_list = NULL;
102+ }
103+}
104+
105+static void pvebackup_complete_cb(void *opaque, int ret)
106+{
107+ PVEBackupDevInfo *di = opaque;
108+
109+ assert(backup_state.vmaw);
110+
111+ di->completed = true;
81300c8b 112+
be73ac8a
DM
113+ if (ret < 0 && !backup_state.error) {
114+ error_setg(&backup_state.error, "job failed with err %d - %s",
115+ ret, strerror(-ret));
116+ }
117+
81300c8b
DM
118+ BlockDriverState *bs = di->bs;
119+
b07588bd 120+ di->bs = NULL;
cbf9030a
DM
121+
122+ vma_writer_close_stream(backup_state.vmaw, di->dev_id);
123+
81300c8b
DM
124+ block_job_cb(bs, ret);
125+
cbf9030a
DM
126+ if (!backup_state.cancel) {
127+ pvebackup_run_next_job();
128+ }
129+}
130+
0c5f6a91 131+static void pvebackup_cancel(void *opaque)
cbf9030a
DM
132+{
133+ backup_state.cancel = true;
134+
135+ if (!backup_state.error) {
136+ error_setg(&backup_state.error, "backup cancelled");
137+ }
138+
139+ /* drain all i/o (awake jobs waiting for aio) */
140+ bdrv_drain_all();
141+
cbf9030a
DM
142+ GList *l = backup_state.di_list;
143+ while (l) {
144+ PVEBackupDevInfo *di = (PVEBackupDevInfo *)l->data;
145+ l = g_list_next(l);
e72ed697 146+ if (!di->completed && di->bs) {
b07588bd
DM
147+ BlockJob *job = di->bs->job;
148+ if (job) {
149+ if (!di->completed) {
150+ block_job_cancel_sync(job);
151+ }
cbf9030a
DM
152+ }
153+ }
154+ }
155+
156+ pvebackup_cleanup();
157+}
158+
159+void qmp_backup_cancel(Error **errp)
160+{
0c5f6a91
DM
161+ Coroutine *co = qemu_coroutine_create(pvebackup_cancel);
162+ qemu_coroutine_enter(co, NULL);
163+
164+ while (backup_state.vmaw) {
e549ff74
DM
165+ /* vma writer use main aio context */
166+ aio_poll(qemu_get_aio_context(), true);
0c5f6a91 167+ }
cbf9030a
DM
168+}
169+
170+static void pvebackup_run_next_job(void)
171+{
172+ GList *l = backup_state.di_list;
173+ while (l) {
174+ PVEBackupDevInfo *di = (PVEBackupDevInfo *)l->data;
175+ l = g_list_next(l);
b07588bd
DM
176+ if (!di->completed && di->bs && di->bs->job) {
177+ BlockJob *job = di->bs->job;
bd240f3b 178+ if (block_job_is_paused(job)) {
cbf9030a
DM
179+ bool cancel = backup_state.error || backup_state.cancel;
180+ if (cancel) {
bd240f3b 181+ block_job_cancel(job);
cbf9030a 182+ } else {
bd240f3b 183+ block_job_resume(job);
cbf9030a
DM
184+ }
185+ }
186+ return;
187+ }
188+ }
189+
190+ pvebackup_cleanup();
191+}
192+
193+char *qmp_backup(const char *backup_file, bool has_format,
194+ BackupFormat format,
195+ bool has_config_file, const char *config_file,
196+ bool has_devlist, const char *devlist,
197+ bool has_speed, int64_t speed, Error **errp)
198+{
58117ea6
WB
199+ BlockBackend *blk;
200+ BlockDriverState *bs = NULL;
cbf9030a
DM
201+ Error *local_err = NULL;
202+ uuid_t uuid;
203+ VmaWriter *vmaw = NULL;
204+ gchar **devs = NULL;
205+ GList *di_list = NULL;
206+ GList *l;
207+
208+ if (backup_state.di_list) {
209+ error_set(errp, ERROR_CLASS_GENERIC_ERROR,
210+ "previous backup not finished");
211+ return NULL;
212+ }
213+
214+ /* Todo: try to auto-detect format based on file name */
215+ format = has_format ? format : BACKUP_FORMAT_VMA;
216+
217+ if (format != BACKUP_FORMAT_VMA) {
218+ error_set(errp, ERROR_CLASS_GENERIC_ERROR, "unknown backup format");
219+ return NULL;
220+ }
221+
222+ if (has_devlist) {
223+ devs = g_strsplit_set(devlist, ",;:", -1);
224+
225+ gchar **d = devs;
226+ while (d && *d) {
58117ea6
WB
227+ blk = blk_by_name(*d);
228+ if (blk) {
229+ bs = blk_bs(blk);
cbf9030a
DM
230+ if (bdrv_is_read_only(bs)) {
231+ error_set(errp, QERR_DEVICE_IS_READ_ONLY, *d);
232+ goto err;
233+ }
234+ if (!bdrv_is_inserted(bs)) {
235+ error_set(errp, QERR_DEVICE_HAS_NO_MEDIUM, *d);
236+ goto err;
237+ }
238+ PVEBackupDevInfo *di = g_new0(PVEBackupDevInfo, 1);
239+ di->bs = bs;
240+ di_list = g_list_append(di_list, di);
241+ } else {
242+ error_set(errp, QERR_DEVICE_NOT_FOUND, *d);
243+ goto err;
244+ }
245+ d++;
246+ }
247+
248+ } else {
249+
250+ bs = NULL;
251+ while ((bs = bdrv_next(bs))) {
252+
253+ if (!bdrv_is_inserted(bs) || bdrv_is_read_only(bs)) {
254+ continue;
255+ }
256+
257+ PVEBackupDevInfo *di = g_new0(PVEBackupDevInfo, 1);
258+ di->bs = bs;
259+ di_list = g_list_append(di_list, di);
260+ }
261+ }
262+
263+ if (!di_list) {
264+ error_set(errp, ERROR_CLASS_GENERIC_ERROR, "empty device list");
265+ goto err;
266+ }
267+
e72ed697
DM
268+ size_t total = 0;
269+
cbf9030a
DM
270+ l = di_list;
271+ while (l) {
272+ PVEBackupDevInfo *di = (PVEBackupDevInfo *)l->data;
273+ l = g_list_next(l);
fbe817e2 274+ if (bdrv_op_is_blocked(di->bs, BLOCK_OP_TYPE_BACKUP_SOURCE, errp)) {
cbf9030a
DM
275+ goto err;
276+ }
e72ed697
DM
277+
278+ ssize_t size = bdrv_getlength(di->bs);
279+ if (size < 0) {
280+ error_setg_errno(errp, -di->size, "bdrv_getlength failed");
281+ goto err;
282+ }
283+ di->size = size;
284+ total += size;
cbf9030a
DM
285+ }
286+
287+ uuid_generate(uuid);
288+
289+ vmaw = vma_writer_create(backup_file, uuid, &local_err);
290+ if (!vmaw) {
fbe817e2 291+ if (local_err) {
cbf9030a
DM
292+ error_propagate(errp, local_err);
293+ }
294+ goto err;
295+ }
296+
297+ /* register all devices for vma writer */
298+ l = di_list;
299+ while (l) {
300+ PVEBackupDevInfo *di = (PVEBackupDevInfo *)l->data;
301+ l = g_list_next(l);
302+
cbf9030a 303+ const char *devname = bdrv_get_device_name(di->bs);
e72ed697 304+ di->dev_id = vma_writer_register_stream(vmaw, devname, di->size);
cbf9030a
DM
305+ if (di->dev_id <= 0) {
306+ error_set(errp, ERROR_CLASS_GENERIC_ERROR,
307+ "register_stream failed");
308+ goto err;
309+ }
310+ }
311+
312+ /* add configuration file to archive */
313+ if (has_config_file) {
314+ char *cdata = NULL;
315+ gsize clen = 0;
316+ GError *err = NULL;
317+ if (!g_file_get_contents(config_file, &cdata, &clen, &err)) {
318+ error_setg(errp, "unable to read file '%s'", config_file);
319+ goto err;
320+ }
321+
322+ const char *basename = g_path_get_basename(config_file);
323+ if (vma_writer_add_config(vmaw, basename, cdata, clen) != 0) {
324+ error_setg(errp, "unable to add config data to vma archive");
325+ g_free(cdata);
326+ goto err;
327+ }
328+ g_free(cdata);
329+ }
330+
331+ /* initialize global backup_state now */
332+
333+ backup_state.cancel = false;
334+
335+ if (backup_state.error) {
336+ error_free(backup_state.error);
337+ backup_state.error = NULL;
338+ }
339+
340+ backup_state.speed = (has_speed && speed > 0) ? speed : 0;
341+
342+ backup_state.start_time = time(NULL);
343+ backup_state.end_time = 0;
344+
345+ if (backup_state.backup_file) {
346+ g_free(backup_state.backup_file);
347+ }
348+ backup_state.backup_file = g_strdup(backup_file);
349+
350+ backup_state.vmaw = vmaw;
351+
352+ uuid_copy(backup_state.uuid, uuid);
353+ uuid_unparse_lower(uuid, backup_state.uuid_str);
354+
355+ backup_state.di_list = di_list;
356+
e72ed697
DM
357+ backup_state.total = total;
358+ backup_state.transferred = 0;
359+ backup_state.zero_bytes = 0;
cbf9030a
DM
360+
361+ /* start all jobs (paused state) */
362+ l = di_list;
363+ while (l) {
364+ PVEBackupDevInfo *di = (PVEBackupDevInfo *)l->data;
365+ l = g_list_next(l);
366+
367+ backup_start(di->bs, NULL, speed, MIRROR_SYNC_MODE_FULL,
368+ BLOCKDEV_ON_ERROR_REPORT, BLOCKDEV_ON_ERROR_REPORT,
bd240f3b
DM
369+ pvebackup_dump_cb, pvebackup_complete_cb, di,
370+ true, &local_err);
cbf9030a
DM
371+ if (local_err != NULL) {
372+ error_setg(&backup_state.error, "backup_job_create failed");
0c5f6a91 373+ pvebackup_cancel(NULL);
cbf9030a
DM
374+ }
375+ }
376+
377+ if (!backup_state.error) {
378+ pvebackup_run_next_job(); // run one job
379+ }
380+
381+ return g_strdup(backup_state.uuid_str);
382+
383+err:
384+
385+ l = di_list;
386+ while (l) {
387+ g_free(l->data);
388+ l = g_list_next(l);
389+ }
390+ g_list_free(di_list);
391+
392+ if (devs) {
393+ g_strfreev(devs);
394+ }
395+
396+ if (vmaw) {
397+ Error *err = NULL;
398+ vma_writer_close(vmaw, &err);
399+ unlink(backup_file);
400+ }
401+
402+ return NULL;
403+}
404+
405+BackupStatus *qmp_query_backup(Error **errp)
406+{
407+ BackupStatus *info = g_malloc0(sizeof(*info));
408+
409+ if (!backup_state.start_time) {
410+ /* not started, return {} */
411+ return info;
412+ }
413+
414+ info->has_status = true;
415+ info->has_start_time = true;
416+ info->start_time = backup_state.start_time;
417+
418+ if (backup_state.backup_file) {
419+ info->has_backup_file = true;
420+ info->backup_file = g_strdup(backup_state.backup_file);
421+ }
422+
423+ info->has_uuid = true;
424+ info->uuid = g_strdup(backup_state.uuid_str);
425+
426+ if (backup_state.end_time) {
427+ if (backup_state.error) {
428+ info->status = g_strdup("error");
429+ info->has_errmsg = true;
430+ info->errmsg = g_strdup(error_get_pretty(backup_state.error));
431+ } else {
432+ info->status = g_strdup("done");
433+ }
434+ info->has_end_time = true;
435+ info->end_time = backup_state.end_time;
436+ } else {
437+ info->status = g_strdup("active");
438+ }
439+
cbf9030a
DM
440+ info->has_total = true;
441+ info->total = backup_state.total;
442+ info->has_zero_bytes = true;
443+ info->zero_bytes = backup_state.zero_bytes;
444+ info->has_transferred = true;
445+ info->transferred = backup_state.transferred;
446+
447+ return info;
448+}
81300c8b 449+
e549ff74
DM
450 void qmp_block_stream(const char *device,
451 bool has_base, const char *base,
452 bool has_backing_file, const char *backing_file,
cbf9030a
DM
453Index: new/hmp-commands.hx
454===================================================================
24bb7da3
DM
455--- new.orig/hmp-commands.hx 2014-11-20 06:45:05.000000000 +0100
456+++ new/hmp-commands.hx 2014-11-20 07:47:31.000000000 +0100
9a1821d4 457@@ -88,6 +88,35 @@
cbf9030a
DM
458 Copy data from a backing file into a block device.
459 ETEXI
460
461+ {
462+ .name = "backup",
463+ .args_type = "backupfile:s,speed:o?,devlist:s?",
464+ .params = "backupfile [speed [devlist]]",
465+ .help = "create a VM Backup.",
466+ .mhandler.cmd = hmp_backup,
467+ },
468+
469+STEXI
470+@item backup
471+@findex backup
472+Create a VM backup.
473+ETEXI
474+
475+ {
476+ .name = "backup_cancel",
477+ .args_type = "",
478+ .params = "",
479+ .help = "cancel the current VM backup",
480+ .mhandler.cmd = hmp_backup_cancel,
481+ },
482+
483+STEXI
484+@item backup_cancel
485+@findex backup_cancel
486+Cancel the current VM backup.
487+
488+ETEXI
489+
490 {
491 .name = "block_job_set_speed",
492 .args_type = "device:B,speed:o",
24bb7da3 493@@ -1760,6 +1789,8 @@
cbf9030a
DM
494 show CPU statistics
495 @item info usernet
496 show user network stack connection states
497+@item info backup
498+show backup status
499 @item info migrate
500 show migration status
501 @item info migrate_capabilities
502Index: new/hmp.c
503===================================================================
24bb7da3
DM
504--- new.orig/hmp.c 2014-11-20 07:26:23.000000000 +0100
505+++ new/hmp.c 2014-11-20 07:47:31.000000000 +0100
e549ff74 506@@ -137,6 +137,44 @@
cbf9030a
DM
507 qapi_free_MouseInfoList(mice_list);
508 }
509
510+void hmp_info_backup(Monitor *mon, const QDict *qdict)
511+{
512+ BackupStatus *info;
513+
514+ info = qmp_query_backup(NULL);
515+ if (info->has_status) {
516+ if (info->has_errmsg) {
517+ monitor_printf(mon, "Backup status: %s - %s\n",
518+ info->status, info->errmsg);
519+ } else {
520+ monitor_printf(mon, "Backup status: %s\n", info->status);
521+ }
522+ }
219f966c 523+
cbf9030a 524+ if (info->has_backup_file) {
219f966c
DM
525+ monitor_printf(mon, "Start time: %s", ctime(&info->start_time));
526+ if (info->end_time) {
527+ monitor_printf(mon, "End time: %s", ctime(&info->end_time));
528+ }
529+
cbf9030a
DM
530+ int per = (info->has_total && info->total &&
531+ info->has_transferred && info->transferred) ?
532+ (info->transferred * 100)/info->total : 0;
533+ int zero_per = (info->has_total && info->total &&
534+ info->has_zero_bytes && info->zero_bytes) ?
535+ (info->zero_bytes * 100)/info->total : 0;
536+ monitor_printf(mon, "Backup file: %s\n", info->backup_file);
537+ monitor_printf(mon, "Backup uuid: %s\n", info->uuid);
538+ monitor_printf(mon, "Total size: %zd\n", info->total);
539+ monitor_printf(mon, "Transferred bytes: %zd (%d%%)\n",
540+ info->transferred, per);
541+ monitor_printf(mon, "Zero bytes: %zd (%d%%)\n",
542+ info->zero_bytes, zero_per);
543+ }
544+
545+ qapi_free_BackupStatus(info);
546+}
547+
548 void hmp_info_migrate(Monitor *mon, const QDict *qdict)
549 {
550 MigrationInfo *info;
24bb7da3 551@@ -1212,6 +1250,29 @@
219f966c 552
cbf9030a
DM
553 hmp_handle_error(mon, &error);
554 }
219f966c 555+
cbf9030a
DM
556+void hmp_backup_cancel(Monitor *mon, const QDict *qdict)
557+{
219f966c 558+ Error *error = NULL;
cbf9030a 559+
219f966c 560+ qmp_backup_cancel(&error);
cbf9030a 561+
219f966c 562+ hmp_handle_error(mon, &error);
cbf9030a
DM
563+}
564+
565+void hmp_backup(Monitor *mon, const QDict *qdict)
566+{
219f966c
DM
567+ Error *error = NULL;
568+
569+ const char *backup_file = qdict_get_str(qdict, "backupfile");
cbf9030a
DM
570+ const char *devlist = qdict_get_try_str(qdict, "devlist");
571+ int64_t speed = qdict_get_try_int(qdict, "speed", 0);
572+
cbf9030a 573+ qmp_backup(backup_file, true, BACKUP_FORMAT_VMA, false, NULL, !!devlist,
219f966c 574+ devlist, qdict_haskey(qdict, "speed"), speed, &error);
cbf9030a 575+
219f966c 576+ hmp_handle_error(mon, &error);
cbf9030a 577+}
219f966c 578
cbf9030a
DM
579 void hmp_block_job_set_speed(Monitor *mon, const QDict *qdict)
580 {
cbf9030a
DM
581Index: new/hmp.h
582===================================================================
24bb7da3
DM
583--- new.orig/hmp.h 2014-11-20 06:45:05.000000000 +0100
584+++ new/hmp.h 2014-11-20 07:47:31.000000000 +0100
fbe817e2 585@@ -29,6 +29,7 @@
cbf9030a
DM
586 void hmp_info_migrate(Monitor *mon, const QDict *qdict);
587 void hmp_info_migrate_capabilities(Monitor *mon, const QDict *qdict);
588 void hmp_info_migrate_cache_size(Monitor *mon, const QDict *qdict);
589+void hmp_info_backup(Monitor *mon, const QDict *qdict);
590 void hmp_info_cpus(Monitor *mon, const QDict *qdict);
591 void hmp_info_block(Monitor *mon, const QDict *qdict);
592 void hmp_info_blockstats(Monitor *mon, const QDict *qdict);
fbe817e2 593@@ -70,6 +71,8 @@
cbf9030a
DM
594 void hmp_change(Monitor *mon, const QDict *qdict);
595 void hmp_block_set_io_throttle(Monitor *mon, const QDict *qdict);
596 void hmp_block_stream(Monitor *mon, const QDict *qdict);
597+void hmp_backup(Monitor *mon, const QDict *qdict);
598+void hmp_backup_cancel(Monitor *mon, const QDict *qdict);
599 void hmp_block_job_set_speed(Monitor *mon, const QDict *qdict);
600 void hmp_block_job_cancel(Monitor *mon, const QDict *qdict);
601 void hmp_block_job_pause(Monitor *mon, const QDict *qdict);
602Index: new/monitor.c
603===================================================================
24bb7da3
DM
604--- new.orig/monitor.c 2014-11-20 06:45:06.000000000 +0100
605+++ new/monitor.c 2014-11-20 07:47:31.000000000 +0100
e549ff74 606@@ -2848,6 +2848,13 @@
cbf9030a
DM
607 },
608 #endif
609 {
610+ .name = "backup",
611+ .args_type = "",
612+ .params = "",
613+ .help = "show backup status",
614+ .mhandler.cmd = hmp_info_backup,
615+ },
616+ {
617 .name = "migrate",
618 .args_type = "",
619 .params = "",
620Index: new/qapi-schema.json
621===================================================================
24bb7da3
DM
622--- new.orig/qapi-schema.json 2014-11-20 07:26:43.000000000 +0100
623+++ new/qapi-schema.json 2014-11-20 07:47:31.000000000 +0100
624@@ -352,6 +352,95 @@
cbf9030a
DM
625 ##
626 { 'command': 'query-events', 'returns': ['EventInfo'] }
627
628+# @BackupStatus:
629+#
630+# Detailed backup status.
631+#
632+# @status: #optional string describing the current backup status.
633+# This can be 'active', 'done', 'error'. If this field is not
634+# returned, no backup process has been initiated
635+#
636+# @errmsg: #optional error message (only returned if status is 'error')
637+#
638+# @total: #optional total amount of bytes involved in the backup process
639+#
640+# @transferred: #optional amount of bytes already backed up.
641+#
642+# @zero-bytes: #optional amount of 'zero' bytes detected.
643+#
644+# @start-time: #optional time (epoch) when backup job started.
645+#
646+# @end-time: #optional time (epoch) when backup job finished.
647+#
648+# @backupfile: #optional backup file name
649+#
650+# @uuid: #optional uuid for this backup job
651+#
652+##
653+{ 'type': 'BackupStatus',
654+ 'data': {'*status': 'str', '*errmsg': 'str', '*total': 'int',
655+ '*transferred': 'int', '*zero-bytes': 'int',
656+ '*start-time': 'int', '*end-time': 'int',
657+ '*backup-file': 'str', '*uuid': 'str' } }
658+
659+##
660+# @BackupFormat
661+#
662+# An enumeration of supported backup formats.
663+#
664+# @vma: Proxmox vma backup format
665+##
666+{ 'enum': 'BackupFormat',
667+ 'data': [ 'vma' ] }
668+
669+##
670+# @backup:
671+#
672+# Starts a VM backup.
673+#
674+# @backup-file: the backup file name
675+#
676+# @format: format of the backup file
677+#
678+# @config-filename: #optional name of a configuration file to include into
679+# the backup archive.
680+#
681+# @speed: #optional the maximum speed, in bytes per second
682+#
683+# @devlist: #optional list of block device names (separated by ',', ';'
684+# or ':'). By default the backup includes all writable block devices.
685+#
686+# Returns: the uuid of the backup job
687+#
688+##
689+{ 'command': 'backup', 'data': { 'backup-file': 'str',
690+ '*format': 'BackupFormat',
691+ '*config-file': 'str',
692+ '*devlist': 'str', '*speed': 'int' },
693+ 'returns': 'str' }
694+
695+##
696+# @query-backup
697+#
698+# Returns information about current/last backup task.
699+#
700+# Returns: @BackupStatus
701+#
702+##
703+{ 'command': 'query-backup', 'returns': 'BackupStatus' }
704+
705+##
706+# @backup-cancel
707+#
708+# Cancel the current executing backup process.
709+#
710+# Returns: nothing on success
711+#
712+# Notes: This command succeeds even if there is no backup process running.
713+#
714+##
715+{ 'command': 'backup-cancel' }
716+
717 ##
718 # @MigrationStats
719 #
720Index: new/qmp-commands.hx
721===================================================================
24bb7da3
DM
722--- new.orig/qmp-commands.hx 2014-11-20 07:26:23.000000000 +0100
723+++ new/qmp-commands.hx 2014-11-20 07:47:31.000000000 +0100
724@@ -1097,6 +1097,24 @@
cbf9030a
DM
725 EQMP
726
727 {
728+ .name = "backup",
729+ .args_type = "backup-file:s,format:s?,config-file:F?,speed:o?,devlist:s?",
730+ .mhandler.cmd_new = qmp_marshal_input_backup,
731+ },
732+
733+ {
734+ .name = "backup-cancel",
735+ .args_type = "",
736+ .mhandler.cmd_new = qmp_marshal_input_backup_cancel,
737+ },
738+
739+ {
740+ .name = "query-backup",
741+ .args_type = "",
742+ .mhandler.cmd_new = qmp_marshal_input_query_backup,
743+ },
744+
745+ {
746 .name = "block-job-set-speed",
747 .args_type = "device:B,speed:o",
748 .mhandler.cmd_new = qmp_marshal_input_block_job_set_speed,