[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [PATCH spice-server 06/13] server: send SPICE_MSG_MAIN_MIGR
From: |
Yonit Halperin |
Subject: |
[Qemu-devel] [PATCH spice-server 06/13] server: send SPICE_MSG_MAIN_MIGRATE_END on spice_server_migrate_end |
Date: |
Wed, 21 Sep 2011 18:51:16 +0300 |
Signed-off-by: Yonit Halperin <address@hidden>
---
server/reds.c | 86 +++++++++++++++++++++++++++++++++++++++++++++------------
1 files changed, 68 insertions(+), 18 deletions(-)
diff --git a/server/reds.c b/server/reds.c
index 845b0ee..e088b08 100644
--- a/server/reds.c
+++ b/server/reds.c
@@ -275,6 +275,7 @@ typedef struct RedsState {
int mig_wait_connect;
int mig_wait_disconnect;
int mig_inprogress;
+ int expect_migrate;
int mig_target;
RedsMigSpice *mig_spice;
int num_of_channels;
@@ -4038,13 +4039,21 @@ static void reds_mig_continue(void)
core->timer_start(reds->mig_timer, MIGRATE_TIMEOUT);
}
-static void reds_mig_started(void)
+static void reds_listen_start(void)
{
- red_printf("");
- ASSERT(reds->mig_spice);
+ ASSERT(reds);
+ if (reds->listen_watch != NULL) {
+ core->watch_update_mask(reds->listen_watch, SPICE_WATCH_EVENT_READ);
+ }
- reds->mig_inprogress = TRUE;
+ if (reds->secure_listen_watch != NULL) {
+ core->watch_update_mask(reds->secure_listen_watch,
SPICE_WATCH_EVENT_READ);
+ }
+}
+static void reds_listen_stop(void)
+{
+ ASSERT(reds);
if (reds->listen_watch != NULL) {
core->watch_update_mask(reds->listen_watch, 0);
}
@@ -4052,6 +4061,14 @@ static void reds_mig_started(void)
if (reds->secure_listen_watch != NULL) {
core->watch_update_mask(reds->secure_listen_watch, 0);
}
+}
+
+static void reds_mig_started(void)
+{
+ red_printf("");
+ ASSERT(reds->mig_spice);
+
+ reds->mig_inprogress = TRUE;
if (reds->stream == NULL) {
red_printf("not connected to stream");
@@ -4071,13 +4088,6 @@ static void reds_mig_finished(int completed)
RedsOutItem *item;
red_printf("");
- if (reds->listen_watch != NULL) {
- core->watch_update_mask(reds->listen_watch, SPICE_WATCH_EVENT_READ);
- }
-
- if (reds->secure_listen_watch != NULL) {
- core->watch_update_mask(reds->secure_listen_watch,
SPICE_WATCH_EVENT_READ);
- }
if (reds->stream == NULL) {
red_printf("no stream connected");
@@ -4086,22 +4096,25 @@ static void reds_mig_finished(int completed)
reds->mig_inprogress = TRUE;
if (completed) {
+#ifdef SPICE_SEAMLESS_MIGRATION
Channel *channel;
SpiceMsgMigrate migrate;
- reds->mig_wait_disconnect = TRUE;
- core->timer_start(reds->mig_timer, MIGRATE_TIMEOUT);
-
item = new_out_item(SPICE_MSG_MIGRATE);
migrate.flags = SPICE_MIGRATE_NEED_FLUSH |
SPICE_MIGRATE_NEED_DATA_TRANSFER;
spice_marshall_msg_migrate(item->m, &migrate);
-
reds_push_pipe_item(item);
channel = reds->channels;
while (channel) {
channel->migrate(channel);
channel = channel->next;
}
+#else
+ item = new_out_item(SPICE_MSG_MAIN_MIGRATE_END);
+ reds_push_pipe_item(item);
+#endif
+ reds->mig_wait_disconnect = TRUE;
+ core->timer_start(reds->mig_timer, MIGRATE_TIMEOUT);
} else {
item = new_out_item(SPICE_MSG_MAIN_MIGRATE_CANCEL);
reds_push_pipe_item(item);
@@ -4116,6 +4129,8 @@ static void reds_mig_switch(void)
RedsOutItem *item;
if (s == NULL) {
+ red_printf("warning: migration target was not set. disconnecting
client");
+ reds_disconnect();
return;
}
@@ -4956,6 +4971,12 @@ SPICE_GNUC_VISIBLE int
spice_server_migrate_connect(SpiceServer *s, const char*
ASSERT(migration_interface);
ASSERT(reds == s);
+
+ if (reds->expect_migrate && reds->client_semi_mig_cap) {
+ red_printf("warning: consecutive calls without migration. Canceling
previous call");
+ reds_mig_finished(FALSE);
+ }
+
sif = SPICE_CONTAINEROF(migration_interface->base.sif,
SpiceMigrateInterface, base);
if (!reds_set_migration_dest_info(dest, port, secure_port, cert_subject)) {
@@ -4963,6 +4984,9 @@ SPICE_GNUC_VISIBLE int
spice_server_migrate_connect(SpiceServer *s, const char*
return -1;
}
+ reds->expect_migrate = TRUE;
+ reds_listen_stop();
+
if (reds->client_semi_mig_cap) {
reds_mig_started();
} else {
@@ -4975,13 +4999,13 @@ SPICE_GNUC_VISIBLE int
spice_server_migrate_info(SpiceServer *s, const char* des
int port, int secure_port,
const char* cert_subject)
{
+ red_printf("");
ASSERT(!migration_interface);
ASSERT(reds == s);
if (!reds_set_migration_dest_info(dest, port, secure_port, cert_subject)) {
return -1;
}
-
return 0;
}
@@ -5018,20 +5042,46 @@ SPICE_GNUC_VISIBLE int
spice_server_migrate_client_state(SpiceServer *s)
SPICE_GNUC_VISIBLE int spice_server_migrate_end(SpiceServer *s, int completed)
{
SpiceMigrateInterface *sif;
+ int ret = 0;
+
+ red_printf("");
+
ASSERT(migration_interface);
ASSERT(reds == s);
- reds_mig_finished(completed);
+
+ reds_listen_start();
sif = SPICE_CONTAINEROF(migration_interface->base.sif,
SpiceMigrateInterface, base);
+ if (!reds->expect_migrate && reds->stream) {
+ red_printf("spice_server_migrate_info was not called, disconnecting
client");
+ reds_disconnect("");
+ ret = -1;
+ goto complete;
+ }
+
+ reds->expect_migrate = FALSE;
+ if (reds->client_semi_mig_cap) {
+ reds_mig_finished(completed);
+ } else {
+ ret = spice_server_migrate_switch(s);
+ goto complete;
+ }
+ ret = 0;
+complete:
if (sif->migrate_end_complete) {
sif->migrate_end_complete(migration_interface);
}
- return 0;
+ return ret;
}
/* interface for switch-host migration */
SPICE_GNUC_VISIBLE int spice_server_migrate_switch(SpiceServer *s)
{
ASSERT(reds == s);
+ red_printf("");
+ if (!reds->stream) {
+ return 0;
+ }
+ reds->expect_migrate = FALSE;
reds_mig_switch();
return 0;
}
--
1.7.4.4
- [Qemu-devel] [PATCH spice-server 00/13] semi-seamless migration v2 (RHBZ #738266, 725009), Yonit Halperin, 2011/09/21
- [Qemu-devel] [PATCH spice-server 03/13] configure: spice-protocol >= 0.8.2 (semi-seamless migration protocol), Yonit Halperin, 2011/09/21
- [Qemu-devel] [PATCH spice-server 06/13] server: send SPICE_MSG_MAIN_MIGRATE_END on spice_server_migrate_end,
Yonit Halperin <=
- [Qemu-devel] [PATCH spice-server 05/13] spice.proto: add SPICE_MSG_MAIN_MIGRATE_END & SPICE_MSGC_MAIN_MIGRATE_END, Yonit Halperin, 2011/09/21
- [Qemu-devel] [PATCH spice-server 07/13] server: move SPICE_MSG_MAIN_INIT sending code to a separate routine, Yonit Halperin, 2011/09/21
- [Qemu-devel] [PATCH spice-server 08/13] server: move the linking of channels to a separate routine, Yonit Halperin, 2011/09/21
- [Qemu-devel] [PATCH spice-server 09/13] server: handling semi-seamless migration in the target side, Yonit Halperin, 2011/09/21
- [Qemu-devel] [PATCH spice-server 11/13] server: turn spice_server_migrate_start into a valid call, Yonit Halperin, 2011/09/21
- [Qemu-devel] [PATCH spice-server 13/13] Release 0.8.3, Yonit Halperin, 2011/09/21
- [Qemu-devel] [PATCH spice-server 04/13] server, proto: tell the client to connect to the migration target before migraton starts, Yonit Halperin, 2011/09/21