[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [PATCH 10/11] Error out when tls-channel option is used wit
From: |
Gerd Hoffmann |
Subject: |
[Qemu-devel] [PATCH 10/11] Error out when tls-channel option is used without TLS |
Date: |
Tue, 28 Feb 2012 17:30:01 +0100 |
From: Christophe Fergeau <address@hidden>
It's currently possible to setup spice channels using TLS when
no TLS port has been specified (ie TLS is disabled). This cannot
work, so better to error out in such a situation.
Signed-off-by: Gerd Hoffmann <address@hidden>
---
ui/spice-core.c | 8 +++++++-
1 files changed, 7 insertions(+), 1 deletions(-)
diff --git a/ui/spice-core.c b/ui/spice-core.c
index e761813..c1091e1 100644
--- a/ui/spice-core.c
+++ b/ui/spice-core.c
@@ -511,6 +511,12 @@ static int add_channel(const char *name, const char
*value, void *opaque)
int rc;
if (strcmp(name, "tls-channel") == 0) {
+ int *tls_port = opaque;
+ if (!*tls_port) {
+ error_report("spice: tried to setup tls-channel"
+ " without specifying a TLS port");
+ exit(1);
+ }
security = SPICE_CHANNEL_SECURITY_SSL;
}
if (strcmp(name, "plaintext-channel") == 0) {
@@ -680,7 +686,7 @@ void qemu_spice_init(void)
spice_server_set_playback_compression
(spice_server, qemu_opt_get_bool(opts, "playback-compression", 1));
- qemu_opt_foreach(opts, add_channel, NULL, 0);
+ qemu_opt_foreach(opts, add_channel, &tls_port, 0);
if (0 != spice_server_init(spice_server, &core_interface)) {
error_report("failed to initialize spice server");
--
1.7.1
- [Qemu-devel] [PATCH 3/9] qxl: set only off-screen surfaces dirty instead of the whole vram, (continued)
- [Qemu-devel] [PATCH 3/9] qxl: set only off-screen surfaces dirty instead of the whole vram, Gerd Hoffmann, 2012/02/21
- [Qemu-devel] [PATCH 4/9] qxl: make sure primary surface is saved on migration also in compat mode, Gerd Hoffmann, 2012/02/21
- [Qemu-devel] [PATCH 7/9] qxl: drop vram bar minimum size, Gerd Hoffmann, 2012/02/21
- [Qemu-devel] [PATCH 8/9] qxl: move ram size init to new function, Gerd Hoffmann, 2012/02/21
- [Qemu-devel] [PATCH 9/9] qxl: add user-friendly bar size properties, Gerd Hoffmann, 2012/02/21
- Re: [Qemu-devel] [PULL] spice patch queue, Anthony Liguori, 2012/02/22
- [Qemu-devel] [PULL] spice patch queue, Gerd Hoffmann, 2012/02/28
- [Qemu-devel] [PATCH 02/11] sdl: remove NULL check, g_malloc0 can't fail, Gerd Hoffmann, 2012/02/28
- [Qemu-devel] [PATCH 04/11] qxl: require spice >= 0.8.2, Gerd Hoffmann, 2012/02/28
- [Qemu-devel] [PATCH 07/11] qxl: make qxl_render_update async, Gerd Hoffmann, 2012/02/28
- [Qemu-devel] [PATCH 10/11] Error out when tls-channel option is used without TLS,
Gerd Hoffmann <=
- [Qemu-devel] [PATCH 08/11] qxl: add optinal 64bit vram bar, Gerd Hoffmann, 2012/02/28
- [Qemu-devel] [PATCH 01/11] qxl: fix spice+sdl no cursor regression, Gerd Hoffmann, 2012/02/28
- [Qemu-devel] [PATCH 03/11] qxl: drop qxl_spice_update_area_async definition, Gerd Hoffmann, 2012/02/28
- [Qemu-devel] [PATCH 05/11] qxl: remove flipped, Gerd Hoffmann, 2012/02/28
- [Qemu-devel] [PATCH 06/11] qxl: introduce QXLCookie, Gerd Hoffmann, 2012/02/28
- [Qemu-devel] [PATCH 11/11] qxl: properly handle upright and non-shared surfaces, Gerd Hoffmann, 2012/02/28
- [Qemu-devel] [PATCH 09/11] spice: use error_report to report errors, Gerd Hoffmann, 2012/02/28
- Re: [Qemu-devel] [PULL] spice patch queue, Anthony Liguori, 2012/02/29