2
0

migration-exec.c 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  1. /*
  2. * QEMU live migration
  3. *
  4. * Copyright IBM, Corp. 2008
  5. * Copyright Dell MessageOne 2008
  6. *
  7. * Authors:
  8. * Anthony Liguori <aliguori@us.ibm.com>
  9. * Charles Duffy <charles_duffy@messageone.com>
  10. *
  11. * This work is licensed under the terms of the GNU GPL, version 2. See
  12. * the COPYING file in the top-level directory.
  13. *
  14. * Contributions after 2012-01-13 are licensed under the terms of the
  15. * GNU GPL, version 2 or (at your option) any later version.
  16. */
  17. #include "qemu-common.h"
  18. #include "qemu_socket.h"
  19. #include "migration.h"
  20. #include "qemu-char.h"
  21. #include "buffered_file.h"
  22. #include "block.h"
  23. #include <sys/types.h>
  24. #include <sys/wait.h>
  25. //#define DEBUG_MIGRATION_EXEC
  26. #ifdef DEBUG_MIGRATION_EXEC
  27. #define DPRINTF(fmt, ...) \
  28. do { printf("migration-exec: " fmt, ## __VA_ARGS__); } while (0)
  29. #else
  30. #define DPRINTF(fmt, ...) \
  31. do { } while (0)
  32. #endif
  33. static int file_errno(MigrationState *s)
  34. {
  35. return errno;
  36. }
  37. static int file_write(MigrationState *s, const void * buf, size_t size)
  38. {
  39. return write(s->fd, buf, size);
  40. }
  41. static int exec_close(MigrationState *s)
  42. {
  43. int ret = 0;
  44. DPRINTF("exec_close\n");
  45. if (s->opaque) {
  46. ret = qemu_fclose(s->opaque);
  47. s->opaque = NULL;
  48. s->fd = -1;
  49. if (ret >= 0 && !(WIFEXITED(ret) && WEXITSTATUS(ret) == 0)) {
  50. /* close succeeded, but non-zero exit code: */
  51. ret = -EIO; /* fake errno value */
  52. }
  53. }
  54. return ret;
  55. }
  56. int exec_start_outgoing_migration(MigrationState *s, const char *command)
  57. {
  58. FILE *f;
  59. f = popen(command, "w");
  60. if (f == NULL) {
  61. DPRINTF("Unable to popen exec target\n");
  62. goto err_after_popen;
  63. }
  64. s->fd = fileno(f);
  65. if (s->fd == -1) {
  66. DPRINTF("Unable to retrieve file descriptor for popen'd handle\n");
  67. goto err_after_open;
  68. }
  69. socket_set_nonblock(s->fd);
  70. s->opaque = qemu_popen(f, "w");
  71. s->close = exec_close;
  72. s->get_error = file_errno;
  73. s->write = file_write;
  74. migrate_fd_connect(s);
  75. return 0;
  76. err_after_open:
  77. pclose(f);
  78. err_after_popen:
  79. return -1;
  80. }
  81. static void exec_accept_incoming_migration(void *opaque)
  82. {
  83. QEMUFile *f = opaque;
  84. process_incoming_migration(f);
  85. qemu_set_fd_handler2(qemu_stdio_fd(f), NULL, NULL, NULL, NULL);
  86. qemu_fclose(f);
  87. }
  88. int exec_start_incoming_migration(const char *command)
  89. {
  90. QEMUFile *f;
  91. DPRINTF("Attempting to start an incoming migration\n");
  92. f = qemu_popen_cmd(command, "r");
  93. if(f == NULL) {
  94. DPRINTF("Unable to apply qemu wrapper to popen file\n");
  95. return -errno;
  96. }
  97. qemu_set_fd_handler2(qemu_stdio_fd(f), NULL,
  98. exec_accept_incoming_migration, NULL, f);
  99. return 0;
  100. }