summaryrefslogtreecommitdiffstats
path: root/qemu-monitor.hx
diff options
context:
space:
mode:
authorLuiz Capitulino2009-12-04 18:24:09 +0100
committerAnthony Liguori2009-12-07 21:04:20 +0100
commita3a55a2edb7c0fd72bc62a8a4c719a1e1983e6ac (patch)
tree8fa0a51eabc12097bdd551cae3aa9da3f0edde6c /qemu-monitor.hx
parentQError: Add class for invalid passwords (diff)
downloadqemu-a3a55a2edb7c0fd72bc62a8a4c719a1e1983e6ac.tar.gz
qemu-a3a55a2edb7c0fd72bc62a8a4c719a1e1983e6ac.tar.xz
qemu-a3a55a2edb7c0fd72bc62a8a4c719a1e1983e6ac.zip
monitor: Introduce 'block_passwd' command
When using encrypted disk images, QEMU will prompt the user for passwords when started. This makes sense for the user protocol, but doesn't for QMP. The solution is to have Monitor command which allows the user or a Client to set passwords in advance, so that we avoid the prompt completely. This is what block_passwd does, for example: (QEMU) block_passwd ide0-hd0 foobar Signed-off-by: Luiz Capitulino <lcapitulino@redhat.com> Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'qemu-monitor.hx')
-rw-r--r--qemu-monitor.hx14
1 files changed, 14 insertions, 0 deletions
diff --git a/qemu-monitor.hx b/qemu-monitor.hx
index 62e395bffd..c2670ee1d9 100644
--- a/qemu-monitor.hx
+++ b/qemu-monitor.hx
@@ -1047,6 +1047,20 @@ Close the file descriptor previously assigned to @var{fdname} using the
used by another monitor command.
ETEXI
+ {
+ .name = "block_passwd",
+ .args_type = "device:B,password:s",
+ .params = "block_passwd device password",
+ .help = "set the password of encrypted block devices",
+ .user_print = monitor_user_noop,
+ .mhandler.cmd_new = do_block_set_passwd,
+ },
+
+STEXI
+@item block_passwd @var{device} @var{password}
+Set the encrypted device @var{device} password to @var{password}
+ETEXI
+
STEXI
@end table
ETEXI