From patchwork Fri Jul 23 10:45:15 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Amit Shah X-Patchwork-Id: 59764 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [199.232.76.165]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id 88C8E1007D1 for ; Fri, 23 Jul 2010 20:49:19 +1000 (EST) Received: from localhost ([127.0.0.1]:45855 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1OcFnG-0006mg-7n for incoming@patchwork.ozlabs.org; Fri, 23 Jul 2010 06:47:54 -0400 Received: from [140.186.70.92] (port=42039 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1OcFl6-0005QM-Gp for qemu-devel@nongnu.org; Fri, 23 Jul 2010 06:45:45 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1OcFl1-00040j-L6 for qemu-devel@nongnu.org; Fri, 23 Jul 2010 06:45:40 -0400 Received: from mx1.redhat.com ([209.132.183.28]:24674) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1OcFl1-00040P-Cd for qemu-devel@nongnu.org; Fri, 23 Jul 2010 06:45:35 -0400 Received: from int-mx01.intmail.prod.int.phx2.redhat.com (int-mx01.intmail.prod.int.phx2.redhat.com [10.5.11.11]) by mx1.redhat.com (8.13.8/8.13.8) with ESMTP id o6NAjXIq021641 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Fri, 23 Jul 2010 06:45:33 -0400 Received: from localhost (dhcp1-88.pnq.redhat.com [10.65.193.88]) by int-mx01.intmail.prod.int.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id o6NAjV08015422; Fri, 23 Jul 2010 06:45:32 -0400 From: Amit Shah To: qemu list Date: Fri, 23 Jul 2010 16:15:15 +0530 Message-Id: X-Scanned-By: MIMEDefang 2.67 on 10.5.11.11 X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. Cc: quintela@redhat.com, Luiz Capitulino , laine@redhat.com, Amit Shah , Paolo Bonzini Subject: [Qemu-devel] [PATCH] migration: Issue 'cont' only on successful incoming migration X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org When a 'cont' is issued on a VM that's just waiting for an incoming migration, the VM reboots and boots into the guest, possibly corrupting its storage since it could be shared with another VM running elsewhere. Ensure that a VM started with '-incoming' is only run when an incoming migration successfully completes. Reported-by: Laine Stump Signed-off-by: Amit Shah --- migration.c | 3 +++ monitor.c | 4 ++++ sysemu.h | 1 + vl.c | 3 +++ 4 files changed, 11 insertions(+), 0 deletions(-) diff --git a/migration.c b/migration.c index 650eb78..84d7e4a 100644 --- a/migration.c +++ b/migration.c @@ -67,6 +67,9 @@ void process_incoming_migration(QEMUFile *f) qemu_announce_self(); DPRINTF("successfully loaded vm state\n"); + incoming_expected = false; + incoming_done = true; + if (autostart) vm_start(); } diff --git a/monitor.c b/monitor.c index 45fd482..d12a7b5 100644 --- a/monitor.c +++ b/monitor.c @@ -1056,6 +1056,10 @@ static int do_cont(Monitor *mon, const QDict *qdict, QObject **ret_data) { struct bdrv_iterate_context context = { mon, 0 }; + if (incoming_expected && !incoming_done) { + autostart = 1; + return 1; /* Waiting for incoming migration */ + } bdrv_iterate(encrypted_bdrv_it, &context); /* only resume the vm if all keys are set and valid */ if (!context.err) { diff --git a/sysemu.h b/sysemu.h index 9c988bb..f9c1962 100644 --- a/sysemu.h +++ b/sysemu.h @@ -99,6 +99,7 @@ typedef enum DisplayType } DisplayType; extern int autostart; +extern int incoming_expected, incoming_done; extern int bios_size; typedef enum { diff --git a/vl.c b/vl.c index ba6ee11..b69c11b 100644 --- a/vl.c +++ b/vl.c @@ -182,6 +182,8 @@ int nb_nics; NICInfo nd_table[MAX_NICS]; int vm_running; int autostart; +int incoming_expected; /* Started with -incoming and waiting for incoming */ +int incoming_done; /* Incoming migration successful */ static int rtc_utc = 1; static int rtc_date_offset = -1; /* -1 means no change */ QEMUClock *rtc_clock; @@ -2557,6 +2559,7 @@ int main(int argc, char **argv, char **envp) break; case QEMU_OPTION_incoming: incoming = optarg; + incoming_expected = true; break; case QEMU_OPTION_nodefaults: default_serial = 0;