| 
									
										
										
										
											2008-11-11 16:46:33 +00:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * QEMU live migration | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Copyright IBM, Corp. 2008 | 
					
						
							|  |  |  |  * Copyright Dell MessageOne 2008 | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Authors: | 
					
						
							|  |  |  |  *  Anthony Liguori   <aliguori@us.ibm.com> | 
					
						
							|  |  |  |  *  Charles Duffy     <charles_duffy@messageone.com> | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * This work is licensed under the terms of the GNU GPL, version 2.  See | 
					
						
							|  |  |  |  * the COPYING file in the top-level directory. | 
					
						
							|  |  |  |  * | 
					
						
							| 
									
										
										
										
											2012-01-13 17:44:23 +01:00
										 |  |  |  * Contributions after 2012-01-13 are licensed under the terms of the | 
					
						
							|  |  |  |  * GNU GPL, version 2 or (at your option) any later version. | 
					
						
							| 
									
										
										
										
											2008-11-11 16:46:33 +00:00
										 |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include "qemu-common.h"
 | 
					
						
							| 
									
										
										
										
											2012-12-17 18:20:00 +01:00
										 |  |  | #include "qemu/sockets.h"
 | 
					
						
							| 
									
										
										
										
											2013-08-21 16:02:47 +01:00
										 |  |  | #include "qemu/main-loop.h"
 | 
					
						
							| 
									
										
										
										
											2012-12-17 18:19:50 +01:00
										 |  |  | #include "migration/migration.h"
 | 
					
						
							| 
									
										
										
										
											2012-10-03 14:07:31 +02:00
										 |  |  | #include "migration/qemu-file.h"
 | 
					
						
							| 
									
										
										
										
											2012-12-17 18:19:44 +01:00
										 |  |  | #include "block/block.h"
 | 
					
						
							| 
									
										
										
										
											2010-06-04 20:01:07 +00:00
										 |  |  | #include <sys/types.h>
 | 
					
						
							|  |  |  | #include <sys/wait.h>
 | 
					
						
							| 
									
										
										
										
											2008-11-11 16:46:33 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | //#define DEBUG_MIGRATION_EXEC
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #ifdef DEBUG_MIGRATION_EXEC
 | 
					
						
							| 
									
										
										
										
											2010-02-07 02:03:50 +03:00
										 |  |  | #define DPRINTF(fmt, ...) \
 | 
					
						
							| 
									
										
										
										
											2008-11-11 16:46:33 +00:00
										 |  |  |     do { printf("migration-exec: " fmt, ## __VA_ARGS__); } while (0) | 
					
						
							|  |  |  | #else
 | 
					
						
							| 
									
										
										
										
											2010-02-07 02:03:50 +03:00
										 |  |  | #define DPRINTF(fmt, ...) \
 | 
					
						
							| 
									
										
										
										
											2008-11-11 16:46:33 +00:00
										 |  |  |     do { } while (0) | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-10-02 10:02:46 +02:00
										 |  |  | void exec_start_outgoing_migration(MigrationState *s, const char *command, Error **errp) | 
					
						
							| 
									
										
										
										
											2008-11-11 16:46:33 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2013-02-22 17:36:47 +01:00
										 |  |  |     s->file = qemu_popen_cmd(command, "w"); | 
					
						
							|  |  |  |     if (s->file == NULL) { | 
					
						
							| 
									
										
										
										
											2012-10-02 10:02:46 +02:00
										 |  |  |         error_setg_errno(errp, errno, "failed to popen the migration target"); | 
					
						
							|  |  |  |         return; | 
					
						
							| 
									
										
										
										
											2008-11-11 16:46:33 +00:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     migrate_fd_connect(s); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-05-25 16:38:23 +02:00
										 |  |  | static void exec_accept_incoming_migration(void *opaque) | 
					
						
							| 
									
										
										
										
											2008-11-11 16:46:33 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2009-05-25 16:38:23 +02:00
										 |  |  |     QEMUFile *f = opaque; | 
					
						
							| 
									
										
										
										
											2008-11-11 16:46:33 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-08-08 10:21:26 +02:00
										 |  |  |     qemu_set_fd_handler2(qemu_get_fd(f), NULL, NULL, NULL, NULL); | 
					
						
							| 
									
										
										
										
											2012-08-07 10:49:13 +02:00
										 |  |  |     process_incoming_migration(f); | 
					
						
							| 
									
										
										
										
											2009-05-25 16:38:23 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-10-02 18:21:18 +02:00
										 |  |  | void exec_start_incoming_migration(const char *command, Error **errp) | 
					
						
							| 
									
										
										
										
											2009-05-25 16:38:23 +02:00
										 |  |  | { | 
					
						
							|  |  |  |     QEMUFile *f; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-02-07 02:03:50 +03:00
										 |  |  |     DPRINTF("Attempting to start an incoming migration\n"); | 
					
						
							| 
									
										
										
										
											2009-05-25 16:38:23 +02:00
										 |  |  |     f = qemu_popen_cmd(command, "r"); | 
					
						
							|  |  |  |     if(f == NULL) { | 
					
						
							| 
									
										
										
										
											2012-10-02 18:21:18 +02:00
										 |  |  |         error_setg_errno(errp, errno, "failed to popen the migration source"); | 
					
						
							|  |  |  |         return; | 
					
						
							| 
									
										
										
										
											2009-05-25 16:38:23 +02:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-08-08 10:21:26 +02:00
										 |  |  |     qemu_set_fd_handler2(qemu_get_fd(f), NULL, | 
					
						
							| 
									
										
										
										
											2010-03-11 17:55:38 +01:00
										 |  |  | 			 exec_accept_incoming_migration, NULL, f); | 
					
						
							| 
									
										
										
										
											2008-11-11 16:46:33 +00:00
										 |  |  | } |