2 * Copyright (C) 2009 Red Hat Inc.
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2 of the License, or (at your option) any later version.
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
21 #define _BSD_SOURCE /* for mkdtemp, usleep */
22 #define _GNU_SOURCE /* for vasprintf, GNU strerror_r, strchrnul */
34 #include <sys/select.h>
37 #include <rpc/types.h>
44 #ifdef HAVE_SYS_TYPES_H
45 #include <sys/types.h>
48 #ifdef HAVE_SYS_WAIT_H
52 #ifdef HAVE_SYS_SOCKET_H
53 #include <sys/socket.h>
61 #include "guestfs_protocol.h"
65 #define _(str) dgettext(PACKAGE, (str))
66 #define N_(str) dgettext(PACKAGE, (str))
72 #define error guestfs_error
73 #define perrorf guestfs_perrorf
74 #define safe_malloc guestfs_safe_malloc
75 #define safe_realloc guestfs_safe_realloc
76 #define safe_strdup guestfs_safe_strdup
77 #define safe_memdup guestfs_safe_memdup
79 static void default_error_cb (guestfs_h *g, void *data, const char *msg);
80 static void stdout_event (struct guestfs_main_loop *ml, guestfs_h *g, void *data, int watch, int fd, int events);
81 static void sock_read_event (struct guestfs_main_loop *ml, guestfs_h *g, void *data, int watch, int fd, int events);
82 static void sock_write_event (struct guestfs_main_loop *ml, guestfs_h *g, void *data, int watch, int fd, int events);
84 static void close_handles (void);
86 static int select_add_handle (guestfs_main_loop *ml, guestfs_h *g, int fd, int events, guestfs_handle_event_cb cb, void *data);
87 static int select_remove_handle (guestfs_main_loop *ml, guestfs_h *g, int watch);
88 static int select_add_timeout (guestfs_main_loop *ml, guestfs_h *g, int interval, guestfs_handle_timeout_cb cb, void *data);
89 static int select_remove_timeout (guestfs_main_loop *ml, guestfs_h *g, int timer);
90 static int select_main_loop_run (guestfs_main_loop *ml, guestfs_h *g);
91 static int select_main_loop_quit (guestfs_main_loop *ml, guestfs_h *g);
93 /* Default select-based main loop. */
94 struct select_handle_cb_data {
95 guestfs_handle_event_cb cb;
100 struct select_main_loop {
101 /* NB. These fields must be the same as in struct guestfs_main_loop: */
102 guestfs_add_handle_cb add_handle;
103 guestfs_remove_handle_cb remove_handle;
104 guestfs_add_timeout_cb add_timeout;
105 guestfs_remove_timeout_cb remove_timeout;
106 guestfs_main_loop_run_cb main_loop_run;
107 guestfs_main_loop_quit_cb main_loop_quit;
109 /* Additional private data: */
118 struct select_handle_cb_data *handle_cb_data;
121 /* Default main loop. */
122 static struct select_main_loop default_main_loop = {
123 .add_handle = select_add_handle,
124 .remove_handle = select_remove_handle,
125 .add_timeout = select_add_timeout,
126 .remove_timeout = select_remove_timeout,
127 .main_loop_run = select_main_loop_run,
128 .main_loop_quit = select_main_loop_quit,
130 /* XXX hopefully .rset, .wset, .xset are initialized to the empty
131 * set by the normal action of everything being initialized to zero.
136 .handle_cb_data = NULL,
139 #define UNIX_PATH_MAX 108
141 /* Also in guestfsd.c */
142 #define VMCHANNEL_PORT 6666
143 #define VMCHANNEL_ADDR "10.0.2.4"
145 /* GuestFS handle and connection. */
146 enum state { CONFIG, LAUNCHING, READY, BUSY, NO_HANDLE };
150 struct guestfs_h *next; /* Linked list of open handles. */
152 /* State: see the state machine diagram in the man page guestfs(3). */
155 int fd[2]; /* Stdin/stdout of qemu. */
156 int sock; /* Daemon communications socket. */
157 pid_t pid; /* Qemu PID. */
158 pid_t recoverypid; /* Recovery process PID. */
159 time_t start_t; /* The time when we started qemu. */
161 int stdout_watch; /* Watches qemu stdout for log messages. */
162 int sock_watch; /* Watches daemon comm socket. */
164 char *tmpdir; /* Temporary directory containing socket. */
166 char *qemu_help, *qemu_version; /* Output of qemu -help, qemu -version. */
168 char **cmdline; /* Qemu command line. */
174 char *path; /* Path to kernel, initrd. */
175 char *qemu; /* Qemu binary. */
176 char *append; /* Append to kernel command line. */
178 int memsize; /* Size of RAM (megabytes). */
183 guestfs_abort_cb abort_cb;
184 guestfs_error_handler_cb error_cb;
185 void * error_cb_data;
186 guestfs_send_cb send_cb;
188 guestfs_reply_cb reply_cb;
189 void * reply_cb_data;
190 guestfs_log_message_cb log_message_cb;
191 void * log_message_cb_data;
192 guestfs_subprocess_quit_cb subprocess_quit_cb;
193 void * subprocess_quit_cb_data;
194 guestfs_launch_done_cb launch_done_cb;
195 void * launch_done_cb_data;
197 /* Main loop used by this handle. */
198 guestfs_main_loop *main_loop;
200 /* Messages sent and received from the daemon. */
202 int msg_in_size, msg_in_allocated;
204 int msg_out_size, msg_out_pos;
209 static guestfs_h *handles = NULL;
210 static int atexit_handler_set = 0;
213 guestfs_create (void)
218 g = malloc (sizeof (*g));
221 memset (g, 0, sizeof (*g));
228 g->stdout_watch = -1;
232 g->error_cb = default_error_cb;
233 g->error_cb_data = NULL;
235 str = getenv ("LIBGUESTFS_DEBUG");
236 g->verbose = str != NULL && strcmp (str, "1") == 0;
238 str = getenv ("LIBGUESTFS_PATH");
239 g->path = str != NULL ? strdup (str) : strdup (GUESTFS_DEFAULT_PATH);
240 if (!g->path) goto error;
242 str = getenv ("LIBGUESTFS_QEMU");
243 g->qemu = str != NULL ? strdup (str) : strdup (QEMU);
244 if (!g->qemu) goto error;
246 str = getenv ("LIBGUESTFS_APPEND");
248 g->append = strdup (str);
249 if (!g->append) goto error;
252 /* Choose a suitable memory size. Previously we tried to choose
253 * a minimal memory size, but this isn't really necessary since
254 * recent QEMU and KVM don't do anything nasty like locking
255 * memory into core any more. Thus we can safely choose a
256 * large, generous amount of memory, and it'll just get swapped
257 * on smaller systems.
259 str = getenv ("LIBGUESTFS_MEMSIZE");
261 if (sscanf (str, "%d", &g->memsize) != 1 || g->memsize <= 256) {
262 fprintf (stderr, "libguestfs: non-numeric or too small value for LIBGUESTFS_MEMSIZE\n");
268 g->main_loop = guestfs_get_default_main_loop ();
270 /* Start with large serial numbers so they are easy to spot
271 * inside the protocol.
273 g->msg_next_serial = 0x00123400;
275 /* Link the handles onto a global list. This is the one area
276 * where the library needs to be made thread-safe. (XXX)
278 /* acquire mutex (XXX) */
281 if (!atexit_handler_set) {
282 atexit (close_handles);
283 atexit_handler_set = 1;
285 /* release mutex (XXX) */
288 fprintf (stderr, "new guestfs handle %p\n", g);
301 guestfs_close (guestfs_h *g)
307 if (g->state == NO_HANDLE) {
308 /* Not safe to call 'error' here, so ... */
309 fprintf (stderr, _("guestfs_close: called twice on the same handle\n"));
314 fprintf (stderr, "closing guestfs handle %p (state %d)\n", g, g->state);
316 /* Try to sync if autosync flag is set. */
317 if (g->autosync && g->state == READY) {
318 guestfs_umount_all (g);
322 /* Remove any handlers that might be called back before we kill the
325 g->log_message_cb = NULL;
327 if (g->state != CONFIG)
328 guestfs_kill_subprocess (g);
330 /* Close any sockets and deregister any handlers. */
331 if (g->stdout_watch >= 0)
332 g->main_loop->remove_handle (g->main_loop, g, g->stdout_watch);
333 if (g->sock_watch >= 0)
334 g->main_loop->remove_handle (g->main_loop, g, g->sock_watch);
335 g->stdout_watch = -1;
348 /* Remove tmpfiles. */
350 snprintf (filename, sizeof filename, "%s/sock", g->tmpdir);
353 snprintf (filename, sizeof filename, "%s/initrd", g->tmpdir);
356 snprintf (filename, sizeof filename, "%s/kernel", g->tmpdir);
365 for (i = 0; i < g->cmdline_size; ++i)
366 free (g->cmdline[i]);
370 /* Mark the handle as dead before freeing it. */
371 g->state = NO_HANDLE;
373 /* acquire mutex (XXX) */
377 for (gg = handles; gg->next != g; gg = gg->next)
381 /* release mutex (XXX) */
385 free (g->last_error);
390 free (g->qemu_version);
394 /* Close all open handles (called from atexit(3)). */
398 while (handles) guestfs_close (handles);
402 guestfs_last_error (guestfs_h *g)
404 return g->last_error;
408 set_last_error (guestfs_h *g, const char *msg)
410 free (g->last_error);
411 g->last_error = strdup (msg);
415 default_error_cb (guestfs_h *g, void *data, const char *msg)
417 fprintf (stderr, _("libguestfs: error: %s\n"), msg);
421 guestfs_error (guestfs_h *g, const char *fs, ...)
427 int err = vasprintf (&msg, fs, args);
432 if (g->error_cb) g->error_cb (g, g->error_cb_data, msg);
433 set_last_error (g, msg);
439 guestfs_perrorf (guestfs_h *g, const char *fs, ...)
446 vasprintf (&msg, fs, args);
451 strerror_r (err, buf, sizeof buf);
455 buf = strerror_r (err, _buf, sizeof _buf);
458 msg = safe_realloc (g, msg, strlen (msg) + 2 + strlen (buf) + 1);
462 if (g->error_cb) g->error_cb (g, g->error_cb_data, msg);
463 set_last_error (g, msg);
469 guestfs_safe_malloc (guestfs_h *g, size_t nbytes)
471 void *ptr = malloc (nbytes);
472 if (nbytes > 0 && !ptr) g->abort_cb ();
476 /* Return 1 if an array of N objects, each of size S, cannot exist due
477 to size arithmetic overflow. S must be positive and N must be
478 nonnegative. This is a macro, not an inline function, so that it
479 works correctly even when SIZE_MAX < N.
481 By gnulib convention, SIZE_MAX represents overflow in size
482 calculations, so the conservative dividend to use here is
483 SIZE_MAX - 1, since SIZE_MAX might represent an overflowed value.
484 However, malloc (SIZE_MAX) fails on all known hosts where
485 sizeof (ptrdiff_t) <= sizeof (size_t), so do not bother to test for
486 exactly-SIZE_MAX allocations on such hosts; this avoids a test and
487 branch when S is known to be 1. */
488 # define xalloc_oversized(n, s) \
489 ((size_t) (sizeof (ptrdiff_t) <= sizeof (size_t) ? -1 : -2) / (s) < (n))
491 /* Technically we should add an autoconf test for this, testing for the desired
492 functionality, like what's done in gnulib, but for now, this is fine. */
493 #define HAVE_GNU_CALLOC (__GLIBC__ >= 2)
495 /* Allocate zeroed memory for N elements of S bytes, with error
496 checking. S must be nonzero. */
498 guestfs_safe_calloc (guestfs_h *g, size_t n, size_t s)
500 /* From gnulib's calloc function in xmalloc.c. */
502 /* Test for overflow, since some calloc implementations don't have
503 proper overflow checks. But omit overflow and size-zero tests if
504 HAVE_GNU_CALLOC, since GNU calloc catches overflow and never
505 returns NULL if successful. */
506 if ((! HAVE_GNU_CALLOC && xalloc_oversized (n, s))
507 || (! (p = calloc (n, s)) && (HAVE_GNU_CALLOC || n != 0)))
513 guestfs_safe_realloc (guestfs_h *g, void *ptr, int nbytes)
515 void *p = realloc (ptr, nbytes);
516 if (nbytes > 0 && !p) g->abort_cb ();
521 guestfs_safe_strdup (guestfs_h *g, const char *str)
523 char *s = strdup (str);
524 if (!s) g->abort_cb ();
529 guestfs_safe_memdup (guestfs_h *g, void *ptr, size_t size)
531 void *p = malloc (size);
532 if (!p) g->abort_cb ();
533 memcpy (p, ptr, size);
538 xwrite (int fd, const void *buf, size_t len)
543 r = write (fd, buf, len);
555 xread (int fd, void *buf, size_t len)
560 r = read (fd, buf, len);
562 if (errno == EINTR || errno == EAGAIN)
575 guestfs_set_out_of_memory_handler (guestfs_h *g, guestfs_abort_cb cb)
581 guestfs_get_out_of_memory_handler (guestfs_h *g)
587 guestfs_set_error_handler (guestfs_h *g, guestfs_error_handler_cb cb, void *data)
590 g->error_cb_data = data;
593 guestfs_error_handler_cb
594 guestfs_get_error_handler (guestfs_h *g, void **data_rtn)
596 if (data_rtn) *data_rtn = g->error_cb_data;
601 guestfs_set_verbose (guestfs_h *g, int v)
608 guestfs_get_verbose (guestfs_h *g)
614 guestfs_set_autosync (guestfs_h *g, int a)
621 guestfs_get_autosync (guestfs_h *g)
627 guestfs_set_path (guestfs_h *g, const char *path)
634 safe_strdup (g, GUESTFS_DEFAULT_PATH) : safe_strdup (g, path);
639 guestfs_get_path (guestfs_h *g)
645 guestfs_set_qemu (guestfs_h *g, const char *qemu)
650 g->qemu = qemu == NULL ? safe_strdup (g, QEMU) : safe_strdup (g, qemu);
655 guestfs_get_qemu (guestfs_h *g)
661 guestfs_set_append (guestfs_h *g, const char *append)
666 g->append = append ? safe_strdup (g, append) : NULL;
671 guestfs_get_append (guestfs_h *g)
677 guestfs_set_memsize (guestfs_h *g, int memsize)
679 g->memsize = memsize;
684 guestfs_get_memsize (guestfs_h *g)
690 guestfs_get_pid (guestfs_h *g)
695 error (g, "get_pid: no qemu subprocess");
700 struct guestfs_version *
701 guestfs_version (guestfs_h *g)
703 struct guestfs_version *r;
705 r = safe_malloc (g, sizeof *r);
706 r->major = PACKAGE_VERSION_MAJOR;
707 r->minor = PACKAGE_VERSION_MINOR;
708 r->release = PACKAGE_VERSION_RELEASE;
709 r->extra = safe_strdup (g, PACKAGE_VERSION_EXTRA);
713 /* Add a string to the current command line. */
715 incr_cmdline_size (guestfs_h *g)
717 if (g->cmdline == NULL) {
718 /* g->cmdline[0] is reserved for argv[0], set in guestfs_launch. */
720 g->cmdline = safe_malloc (g, sizeof (char *));
721 g->cmdline[0] = NULL;
725 g->cmdline = safe_realloc (g, g->cmdline, sizeof (char *) * g->cmdline_size);
729 add_cmdline (guestfs_h *g, const char *str)
731 if (g->state != CONFIG) {
733 _("command line cannot be altered after qemu subprocess launched"));
737 incr_cmdline_size (g);
738 g->cmdline[g->cmdline_size-1] = safe_strdup (g, str);
743 guestfs_config (guestfs_h *g,
744 const char *qemu_param, const char *qemu_value)
746 if (qemu_param[0] != '-') {
747 error (g, _("guestfs_config: parameter must begin with '-' character"));
751 /* A bit fascist, but the user will probably break the extra
752 * parameters that we add if they try to set any of these.
754 if (strcmp (qemu_param, "-kernel") == 0 ||
755 strcmp (qemu_param, "-initrd") == 0 ||
756 strcmp (qemu_param, "-nographic") == 0 ||
757 strcmp (qemu_param, "-serial") == 0 ||
758 strcmp (qemu_param, "-full-screen") == 0 ||
759 strcmp (qemu_param, "-std-vga") == 0 ||
760 strcmp (qemu_param, "-vnc") == 0) {
761 error (g, _("guestfs_config: parameter '%s' isn't allowed"), qemu_param);
765 if (add_cmdline (g, qemu_param) != 0) return -1;
767 if (qemu_value != NULL) {
768 if (add_cmdline (g, qemu_value) != 0) return -1;
775 guestfs_add_drive (guestfs_h *g, const char *filename)
777 size_t len = strlen (filename) + 64;
780 if (strchr (filename, ',') != NULL) {
781 error (g, _("filename cannot contain ',' (comma) character"));
785 if (access (filename, F_OK) == -1) {
786 perrorf (g, "%s", filename);
790 /* cache=off improves reliability in the event of a host crash. */
791 snprintf (buf, len, "file=%s,cache=off,if=%s", filename, DRIVE_IF);
793 return guestfs_config (g, "-drive", buf);
797 guestfs_add_drive_ro (guestfs_h *g, const char *filename)
799 size_t len = strlen (filename) + 64;
802 if (strchr (filename, ',') != NULL) {
803 error (g, _("filename cannot contain ',' (comma) character"));
807 if (access (filename, F_OK) == -1) {
808 perrorf (g, "%s", filename);
812 snprintf (buf, len, "file=%s,snapshot=on,if=%s", filename, DRIVE_IF);
814 return guestfs_config (g, "-drive", buf);
818 guestfs_add_cdrom (guestfs_h *g, const char *filename)
820 if (strchr (filename, ',') != NULL) {
821 error (g, _("filename cannot contain ',' (comma) character"));
825 if (access (filename, F_OK) == -1) {
826 perrorf (g, "%s", filename);
830 return guestfs_config (g, "-cdrom", filename);
833 /* Returns true iff file is contained in dir. */
835 dir_contains_file (const char *dir, const char *file)
837 int dirlen = strlen (dir);
838 int filelen = strlen (file);
839 int len = dirlen+filelen+2;
842 snprintf (path, len, "%s/%s", dir, file);
843 return access (path, F_OK) == 0;
846 /* Returns true iff every listed file is contained in 'dir'. */
848 dir_contains_files (const char *dir, ...)
853 va_start (args, dir);
854 while ((file = va_arg (args, const char *)) != NULL) {
855 if (!dir_contains_file (dir, file)) {
864 static int build_supermin_appliance (guestfs_h *g, const char *path, char **kernel, char **initrd);
865 static int test_qemu (guestfs_h *g);
866 static int qemu_supports (guestfs_h *g, const char *option);
868 static const char *kernel_name = "vmlinuz." REPO "." host_cpu;
869 static const char *initrd_name = "initramfs." REPO "." host_cpu ".img";
870 static const char *supermin_name =
871 "initramfs." REPO "." host_cpu ".supermin.img";
872 static const char *supermin_hostfiles_name =
873 "initramfs." REPO "." host_cpu ".supermin.hostfiles";
876 guestfs_launch (guestfs_h *g)
879 char dir_template[PATH_MAX];
884 char *path, *pelem, *pend;
885 char *kernel = NULL, *initrd = NULL;
887 struct sockaddr_un addr;
895 tmpdir = getenv ("TMPDIR") ? : tmpdir;
896 snprintf (dir_template, sizeof dir_template, "%s/libguestfsXXXXXX", tmpdir);
900 error (g, _("you must call guestfs_add_drive before guestfs_launch"));
904 if (g->state != CONFIG) {
905 error (g, _("qemu has already been launched"));
909 /* Make the temporary directory. */
911 g->tmpdir = safe_strdup (g, dir_template);
912 if (mkdtemp (g->tmpdir) == NULL) {
913 perrorf (g, _("%s: cannot create temporary directory"), dir_template);
918 /* First search g->path for the supermin appliance, and try to
919 * synthesize a kernel and initrd from that. If it fails, we
920 * try the path search again looking for a backup ordinary
923 pelem = path = safe_strdup (g, g->path);
925 pend = strchrnul (pelem, ':');
926 pmore = *pend == ':';
930 /* Empty element of "." means cwd. */
931 if (len == 0 || (len == 1 && *pelem == '.')) {
934 "looking for supermin appliance in current directory\n");
935 if (dir_contains_files (".",
936 supermin_name, supermin_hostfiles_name,
937 "kmod.whitelist", NULL)) {
938 if (build_supermin_appliance (g, ".", &kernel, &initrd) == -1)
943 /* Look at <path>/supermin* etc. */
946 fprintf (stderr, "looking for supermin appliance in %s\n", pelem);
948 if (dir_contains_files (pelem,
949 supermin_name, supermin_hostfiles_name,
950 "kmod.whitelist", NULL)) {
951 if (build_supermin_appliance (g, pelem, &kernel, &initrd) == -1)
962 if (kernel == NULL || initrd == NULL) {
963 /* Search g->path for the kernel and initrd. */
964 pelem = path = safe_strdup (g, g->path);
966 pend = strchrnul (pelem, ':');
967 pmore = *pend == ':';
971 /* Empty element or "." means cwd. */
972 if (len == 0 || (len == 1 && *pelem == '.')) {
975 "looking for appliance in current directory\n");
976 if (dir_contains_files (".", kernel_name, initrd_name, NULL)) {
977 kernel = safe_strdup (g, kernel_name);
978 initrd = safe_strdup (g, initrd_name);
982 /* Look at <path>/kernel etc. */
985 fprintf (stderr, "looking for appliance in %s\n", pelem);
987 if (dir_contains_files (pelem, kernel_name, initrd_name, NULL)) {
988 kernel = safe_malloc (g, len + strlen (kernel_name) + 2);
989 initrd = safe_malloc (g, len + strlen (initrd_name) + 2);
990 sprintf (kernel, "%s/%s", pelem, kernel_name);
991 sprintf (initrd, "%s/%s", pelem, initrd_name);
1002 if (kernel == NULL || initrd == NULL) {
1003 error (g, _("cannot find %s or %s on LIBGUESTFS_PATH (current path = %s)"),
1004 kernel_name, initrd_name, g->path);
1008 /* Get qemu help text and version. */
1009 if (test_qemu (g) == -1)
1012 /* Make the vmchannel socket. */
1013 snprintf (unixsock, sizeof unixsock, "%s/sock", g->tmpdir);
1016 if (pipe (wfd) == -1 || pipe (rfd) == -1) {
1017 perrorf (g, "pipe");
1023 perrorf (g, "fork");
1031 if (r == 0) { /* Child (qemu). */
1032 char vmchannel[256];
1034 char memsize_str[256];
1036 /* Set up the full command line. Do this in the subprocess so we
1037 * don't need to worry about cleaning up.
1039 g->cmdline[0] = g->qemu;
1041 /* Construct the -net channel parameter for qemu. */
1042 snprintf (vmchannel, sizeof vmchannel,
1043 "channel,%d:unix:%s,server,nowait",
1044 VMCHANNEL_PORT, unixsock);
1046 /* Linux kernel command line. */
1047 snprintf (append, sizeof append,
1048 "panic=1 console=ttyS0 guestfs=%s:%d%s%s%s",
1049 VMCHANNEL_ADDR, VMCHANNEL_PORT,
1050 g->verbose ? " guestfs_verbose=1" : "",
1051 g->append ? " " : "", g->append ? g->append : "");
1053 snprintf (memsize_str, sizeof memsize_str, "%d", g->memsize);
1055 add_cmdline (g, "-m");
1056 add_cmdline (g, memsize_str);
1057 add_cmdline (g, "-no-reboot"); /* Force exit instead of reboot on panic */
1058 add_cmdline (g, "-kernel");
1059 add_cmdline (g, (char *) kernel);
1060 add_cmdline (g, "-initrd");
1061 add_cmdline (g, (char *) initrd);
1062 add_cmdline (g, "-append");
1063 add_cmdline (g, append);
1064 add_cmdline (g, "-nographic");
1065 add_cmdline (g, "-serial");
1066 add_cmdline (g, "stdio");
1067 add_cmdline (g, "-net");
1068 add_cmdline (g, vmchannel);
1069 add_cmdline (g, "-net");
1070 add_cmdline (g, "user,vlan=0");
1071 add_cmdline (g, "-net");
1072 add_cmdline (g, "nic,model=virtio,vlan=0");
1074 /* These options recommended by KVM developers to improve reliability. */
1075 if (qemu_supports (g, "-no-hpet"))
1076 add_cmdline (g, "-no-hpet");
1078 if (qemu_supports (g, "-rtc-td-hack"))
1079 add_cmdline (g, "-rtc-td-hack");
1081 /* Finish off the command line. */
1082 incr_cmdline_size (g);
1083 g->cmdline[g->cmdline_size-1] = NULL;
1086 fprintf (stderr, "%s", g->qemu);
1087 for (i = 0; g->cmdline[i]; ++i)
1088 fprintf (stderr, " %s", g->cmdline[i]);
1089 fprintf (stderr, "\n");
1092 /* Set up stdin, stdout. */
1103 /* Set up a new process group, so we can signal this process
1104 * and all subprocesses (eg. if qemu is really a shell script).
1109 execv (g->qemu, g->cmdline); /* Run qemu. */
1114 /* Parent (library). */
1122 /* Fork the recovery process off which will kill qemu if the parent
1123 * process fails to do so (eg. if the parent segfaults).
1127 pid_t qemu_pid = g->pid;
1128 pid_t parent_pid = getppid ();
1130 /* Writing to argv is hideously complicated and error prone. See:
1131 * http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/backend/utils/misc/ps_status.c?rev=1.33.2.1;content-type=text%2Fplain
1134 /* Loop around waiting for one or both of the other processes to
1135 * disappear. It's fair to say this is very hairy. The PIDs that
1136 * we are looking at might be reused by another process. We are
1137 * effectively polling. Is the cure worse than the disease?
1140 if (kill (qemu_pid, 0) == -1) /* qemu's gone away, we aren't needed */
1142 if (kill (parent_pid, 0) == -1) {
1143 /* Parent's gone away, qemu still around, so kill qemu. */
1151 /* Don't worry, if the fork failed, this will be -1. The recovery
1152 * process isn't essential.
1156 /* Start the clock ... */
1159 /* Close the other ends of the pipe. */
1163 if (fcntl (wfd[1], F_SETFL, O_NONBLOCK) == -1 ||
1164 fcntl (rfd[0], F_SETFL, O_NONBLOCK) == -1) {
1165 perrorf (g, "fcntl");
1169 g->fd[0] = wfd[1]; /* stdin of child */
1170 g->fd[1] = rfd[0]; /* stdout of child */
1172 /* Open the Unix socket. The vmchannel implementation that got
1173 * merged with qemu sucks in a number of ways. Both ends do
1174 * connect(2), which means that no one knows what, if anything, is
1175 * connected to the other end, or if it becomes disconnected. Even
1176 * worse, we have to wait some indeterminate time for qemu to create
1177 * the socket and connect to it (which happens very early in qemu's
1178 * start-up), so any code that uses vmchannel is inherently racy.
1179 * Hence this silly loop.
1181 g->sock = socket (AF_UNIX, SOCK_STREAM, 0);
1182 if (g->sock == -1) {
1183 perrorf (g, "socket");
1187 if (fcntl (g->sock, F_SETFL, O_NONBLOCK) == -1) {
1188 perrorf (g, "fcntl");
1192 addr.sun_family = AF_UNIX;
1193 strncpy (addr.sun_path, unixsock, UNIX_PATH_MAX);
1194 addr.sun_path[UNIX_PATH_MAX-1] = '\0';
1197 /* Always sleep at least once to give qemu a small chance to start up. */
1200 r = connect (g->sock, (struct sockaddr *) &addr, sizeof addr);
1201 if ((r == -1 && errno == EINPROGRESS) || r == 0)
1204 if (errno != ENOENT)
1205 perrorf (g, "connect");
1210 error (g, _("failed to connect to vmchannel socket"));
1214 /* Watch the file descriptors. */
1217 g->msg_in_size = g->msg_in_allocated = 0;
1221 g->msg_out_size = 0;
1225 g->main_loop->add_handle (g->main_loop, g, g->fd[1],
1226 GUESTFS_HANDLE_READABLE,
1227 stdout_event, NULL);
1228 if (g->stdout_watch == -1) {
1229 error (g, _("could not watch qemu stdout"));
1233 if (guestfs__switch_to_receiving (g) == -1)
1236 g->state = LAUNCHING;
1240 if (g->stdout_watch >= 0)
1241 g->main_loop->remove_handle (g->main_loop, g, g->stdout_watch);
1242 if (g->sock_watch >= 0)
1243 g->main_loop->remove_handle (g->main_loop, g, g->sock_watch);
1252 if (g->recoverypid > 0) kill (g->recoverypid, 9);
1253 waitpid (g->pid, NULL, 0);
1254 if (g->recoverypid > 0) waitpid (g->recoverypid, NULL, 0);
1261 g->stdout_watch = -1;
1270 /* This function does the hard work of building the supermin appliance
1271 * on the fly. 'path' is the directory containing the control files.
1272 * 'kernel' and 'initrd' are where we will return the names of the
1273 * kernel and initrd (only initrd is built). The work is done by
1274 * an external script. We just tell it where to put the result.
1277 build_supermin_appliance (guestfs_h *g, const char *path,
1278 char **kernel, char **initrd)
1283 len = strlen (g->tmpdir);
1284 *kernel = safe_malloc (g, len + 8);
1285 snprintf (*kernel, len+8, "%s/kernel", g->tmpdir);
1286 *initrd = safe_malloc (g, len + 8);
1287 snprintf (*initrd, len+8, "%s/initrd", g->tmpdir);
1289 snprintf (cmd, sizeof cmd,
1291 "libguestfs-supermin-helper '%s' %s %s",
1293 path, *kernel, *initrd);
1296 if (r == -1 || WEXITSTATUS(r) != 0) {
1297 error (g, _("external command failed: %s"), cmd);
1300 *kernel = *initrd = NULL;
1307 static int read_all (guestfs_h *g, FILE *fp, char **ret);
1309 /* Test qemu binary (or wrapper) runs, and do 'qemu -help' and
1310 * 'qemu -version' so we know what options this qemu supports and
1314 test_qemu (guestfs_h *g)
1319 free (g->qemu_help);
1320 free (g->qemu_version);
1321 g->qemu_help = NULL;
1322 g->qemu_version = NULL;
1324 snprintf (cmd, sizeof cmd, "'%s' -help", g->qemu);
1326 fp = popen (cmd, "r");
1327 /* qemu -help should always work (qemu -version OTOH wasn't
1328 * supported by qemu 0.9). If this command doesn't work then it
1329 * probably indicates that the qemu binary is missing.
1332 /* XXX This error is never printed, even if the qemu binary
1333 * doesn't exist. Why?
1336 perrorf (g, _("%s: command failed: If qemu is located on a non-standard path, try setting the LIBGUESTFS_QEMU environment variable."), cmd);
1340 if (read_all (g, fp, &g->qemu_help) == -1)
1343 if (pclose (fp) == -1)
1346 snprintf (cmd, sizeof cmd, "'%s' -version 2>/dev/null", g->qemu);
1348 fp = popen (cmd, "r");
1350 /* Intentionally ignore errors. */
1351 read_all (g, fp, &g->qemu_version);
1359 read_all (guestfs_h *g, FILE *fp, char **ret)
1366 *ret = safe_realloc (g, *ret, n + 1);
1371 *ret = safe_realloc (g, *ret, n + BUFSIZ);
1373 r = fread (p, 1, BUFSIZ, fp);
1375 perrorf (g, "read");
1382 /* Test if option is supported by qemu command line (just by grepping
1386 qemu_supports (guestfs_h *g, const char *option)
1388 return g->qemu_help && strstr (g->qemu_help, option) != NULL;
1392 finish_wait_ready (guestfs_h *g, void *vp)
1395 fprintf (stderr, "finish_wait_ready called, %p, vp = %p\n", g, vp);
1398 g->main_loop->main_loop_quit (g->main_loop, g);
1402 guestfs_wait_ready (guestfs_h *g)
1404 int finished = 0, r;
1406 if (g->state == READY) return 0;
1408 if (g->state == BUSY) {
1409 error (g, _("qemu has finished launching already"));
1413 if (g->state != LAUNCHING) {
1414 error (g, _("qemu has not been launched yet"));
1418 g->launch_done_cb = finish_wait_ready;
1419 g->launch_done_cb_data = &finished;
1420 r = g->main_loop->main_loop_run (g->main_loop, g);
1421 g->launch_done_cb = NULL;
1422 g->launch_done_cb_data = NULL;
1424 if (r == -1) return -1;
1426 if (finished != 1) {
1427 error (g, _("guestfs_wait_ready failed, see earlier error messages"));
1431 /* This is possible in some really strange situations, such as
1432 * guestfsd starts up OK but then qemu immediately exits. Check for
1433 * it because the caller is probably expecting to be able to send
1434 * commands after this function returns.
1436 if (g->state != READY) {
1437 error (g, _("qemu launched and contacted daemon, but state != READY"));
1445 guestfs_kill_subprocess (guestfs_h *g)
1447 if (g->state == CONFIG) {
1448 error (g, _("no subprocess to kill"));
1453 fprintf (stderr, "sending SIGTERM to process %d\n", g->pid);
1455 kill (g->pid, SIGTERM);
1456 if (g->recoverypid > 0) kill (g->recoverypid, 9);
1461 /* Access current state. */
1463 guestfs_is_config (guestfs_h *g)
1465 return g->state == CONFIG;
1469 guestfs_is_launching (guestfs_h *g)
1471 return g->state == LAUNCHING;
1475 guestfs_is_ready (guestfs_h *g)
1477 return g->state == READY;
1481 guestfs_is_busy (guestfs_h *g)
1483 return g->state == BUSY;
1487 guestfs_get_state (guestfs_h *g)
1493 guestfs_set_ready (guestfs_h *g)
1495 if (g->state != BUSY) {
1496 error (g, _("guestfs_set_ready: called when in state %d != BUSY"),
1505 guestfs_set_busy (guestfs_h *g)
1507 if (g->state != READY) {
1508 error (g, _("guestfs_set_busy: called when in state %d != READY"),
1517 guestfs_end_busy (guestfs_h *g)
1529 error (g, _("guestfs_end_busy: called when in state %d"), g->state);
1535 /* We don't know if stdout_event or sock_read_event will be the
1536 * first to receive EOF if the qemu process dies. This function
1537 * has the common cleanup code for both.
1540 child_cleanup (guestfs_h *g)
1543 fprintf (stderr, "stdout_event: %p: child process died\n", g);
1544 /*kill (g->pid, SIGTERM);*/
1545 if (g->recoverypid > 0) kill (g->recoverypid, 9);
1546 waitpid (g->pid, NULL, 0);
1547 if (g->recoverypid > 0) waitpid (g->recoverypid, NULL, 0);
1548 if (g->stdout_watch >= 0)
1549 g->main_loop->remove_handle (g->main_loop, g, g->stdout_watch);
1550 if (g->sock_watch >= 0)
1551 g->main_loop->remove_handle (g->main_loop, g, g->sock_watch);
1561 g->stdout_watch = -1;
1564 if (g->subprocess_quit_cb)
1565 g->subprocess_quit_cb (g, g->subprocess_quit_cb_data);
1568 /* This function is called whenever qemu prints something on stdout.
1569 * Qemu's stdout is also connected to the guest's serial console, so
1570 * we see kernel messages here too.
1573 stdout_event (struct guestfs_main_loop *ml, guestfs_h *g, void *data,
1574 int watch, int fd, int events)
1582 "stdout_event: %p g->state = %d, fd = %d, events = 0x%x\n",
1583 g, g->state, fd, events);
1586 if (g->fd[1] != fd) {
1587 error (g, _("stdout_event: internal error: %d != %d"), g->fd[1], fd);
1591 n = read (fd, buf, sizeof buf);
1593 /* Hopefully this indicates the qemu child process has died. */
1599 if (errno != EINTR && errno != EAGAIN)
1600 perrorf (g, "read");
1604 /* In verbose mode, copy all log messages to stderr. */
1608 /* It's an actual log message, send it upwards if anyone is listening. */
1609 if (g->log_message_cb)
1610 g->log_message_cb (g, g->log_message_cb_data, buf, n);
1613 /* The function is called whenever we can read something on the
1614 * guestfsd (daemon inside the guest) communication socket.
1617 sock_read_event (struct guestfs_main_loop *ml, guestfs_h *g, void *data,
1618 int watch, int fd, int events)
1626 "sock_read_event: %p g->state = %d, fd = %d, events = 0x%x\n",
1627 g, g->state, fd, events);
1629 if (g->sock != fd) {
1630 error (g, _("sock_read_event: internal error: %d != %d"), g->sock, fd);
1634 if (g->msg_in_size <= g->msg_in_allocated) {
1635 g->msg_in_allocated += 4096;
1636 g->msg_in = safe_realloc (g, g->msg_in, g->msg_in_allocated);
1638 n = read (g->sock, g->msg_in + g->msg_in_size,
1639 g->msg_in_allocated - g->msg_in_size);
1647 if (errno != EINTR && errno != EAGAIN)
1648 perrorf (g, "read");
1652 g->msg_in_size += n;
1654 /* Have we got enough of a message to be able to process it yet? */
1656 if (g->msg_in_size < 4) return;
1658 xdrmem_create (&xdr, g->msg_in, g->msg_in_size, XDR_DECODE);
1659 if (!xdr_uint32_t (&xdr, &len)) {
1660 error (g, _("can't decode length word"));
1664 /* Length is normally the length of the message, but when guestfsd
1665 * starts up it sends a "magic" value (longer than any possible
1666 * message). Check for this.
1668 if (len == GUESTFS_LAUNCH_FLAG) {
1669 if (g->state != LAUNCHING)
1670 error (g, _("received magic signature from guestfsd, but in state %d"),
1672 else if (g->msg_in_size != 4)
1673 error (g, _("received magic signature from guestfsd, but msg size is %d"),
1677 if (g->launch_done_cb)
1678 g->launch_done_cb (g, g->launch_done_cb_data);
1684 /* This can happen if a cancellation happens right at the end
1685 * of us sending a FileIn parameter to the daemon. Discard. The
1686 * daemon should send us an error message next.
1688 if (len == GUESTFS_CANCEL_FLAG) {
1689 g->msg_in_size -= 4;
1690 memmove (g->msg_in, g->msg_in+4, g->msg_in_size);
1694 /* If this happens, it's pretty bad and we've probably lost
1697 if (len > GUESTFS_MESSAGE_MAX) {
1698 error (g, _("message length (%u) > maximum possible size (%d)"),
1699 len, GUESTFS_MESSAGE_MAX);
1703 if (g->msg_in_size-4 < len) return; /* Need more of this message. */
1705 /* Got the full message, begin processing it. */
1710 for (i = 0; i < g->msg_in_size; i += 16) {
1711 printf ("%04x: ", i);
1712 for (j = i; j < MIN (i+16, g->msg_in_size); ++j)
1713 printf ("%02x ", (unsigned char) g->msg_in[j]);
1714 for (; j < i+16; ++j)
1717 for (j = i; j < MIN (i+16, g->msg_in_size); ++j)
1718 if (isprint (g->msg_in[j]))
1719 printf ("%c", g->msg_in[j]);
1722 for (; j < i+16; ++j)
1729 /* Not in the expected state. */
1730 if (g->state != BUSY)
1731 error (g, _("state %d != BUSY"), g->state);
1733 /* Push the message up to the higher layer. */
1735 g->reply_cb (g, g->reply_cb_data, &xdr);
1737 /* This message (probably) should never be printed. */
1738 fprintf (stderr, "libguesfs: sock_read_event: !!! dropped message !!!\n");
1740 g->msg_in_size -= len + 4;
1741 memmove (g->msg_in, g->msg_in+len+4, g->msg_in_size);
1742 if (g->msg_in_size > 0) goto again;
1745 /* Free the message buffer if it's grown excessively large. */
1746 if (g->msg_in_allocated > 65536) {
1749 g->msg_in_size = g->msg_in_allocated = 0;
1756 /* The function is called whenever we can write something on the
1757 * guestfsd (daemon inside the guest) communication socket.
1760 sock_write_event (struct guestfs_main_loop *ml, guestfs_h *g, void *data,
1761 int watch, int fd, int events)
1767 "sock_write_event: %p g->state = %d, fd = %d, events = 0x%x\n",
1768 g, g->state, fd, events);
1770 if (g->sock != fd) {
1771 error (g, _("sock_write_event: internal error: %d != %d"), g->sock, fd);
1775 if (g->state != BUSY) {
1776 error (g, _("sock_write_event: state %d != BUSY"), g->state);
1781 fprintf (stderr, "sock_write_event: writing %d bytes ...\n",
1782 g->msg_out_size - g->msg_out_pos);
1784 n = write (g->sock, g->msg_out + g->msg_out_pos,
1785 g->msg_out_size - g->msg_out_pos);
1789 perrorf (g, "write");
1790 if (err == EPIPE) /* Disconnected from guest (RHBZ#508713). */
1796 fprintf (stderr, "sock_write_event: wrote %d bytes\n", n);
1798 g->msg_out_pos += n;
1800 /* More to write? */
1801 if (g->msg_out_pos < g->msg_out_size)
1805 fprintf (stderr, "sock_write_event: done writing, calling send_cb\n");
1809 g->msg_out_pos = g->msg_out_size = 0;
1811 /* Done writing, call the higher layer. */
1813 g->send_cb (g, g->send_cb_data);
1817 guestfs_set_send_callback (guestfs_h *g,
1818 guestfs_send_cb cb, void *opaque)
1821 g->send_cb_data = opaque;
1825 guestfs_set_reply_callback (guestfs_h *g,
1826 guestfs_reply_cb cb, void *opaque)
1829 g->reply_cb_data = opaque;
1833 guestfs_set_log_message_callback (guestfs_h *g,
1834 guestfs_log_message_cb cb, void *opaque)
1836 g->log_message_cb = cb;
1837 g->log_message_cb_data = opaque;
1841 guestfs_set_subprocess_quit_callback (guestfs_h *g,
1842 guestfs_subprocess_quit_cb cb, void *opaque)
1844 g->subprocess_quit_cb = cb;
1845 g->subprocess_quit_cb_data = opaque;
1849 guestfs_set_launch_done_callback (guestfs_h *g,
1850 guestfs_launch_done_cb cb, void *opaque)
1852 g->launch_done_cb = cb;
1853 g->launch_done_cb_data = opaque;
1856 /* Access to the handle's main loop and the default main loop. */
1858 guestfs_set_main_loop (guestfs_h *g, guestfs_main_loop *main_loop)
1860 g->main_loop = main_loop;
1864 guestfs_get_main_loop (guestfs_h *g)
1866 return g->main_loop;
1870 guestfs_get_default_main_loop (void)
1872 return (guestfs_main_loop *) &default_main_loop;
1875 /* Change the daemon socket handler so that we are now writing.
1876 * This sets the handle to sock_write_event.
1879 guestfs__switch_to_sending (guestfs_h *g)
1881 if (g->sock_watch >= 0) {
1882 if (g->main_loop->remove_handle (g->main_loop, g, g->sock_watch) == -1) {
1883 error (g, _("remove_handle failed"));
1890 g->main_loop->add_handle (g->main_loop, g, g->sock,
1891 GUESTFS_HANDLE_WRITABLE,
1892 sock_write_event, NULL);
1893 if (g->sock_watch == -1) {
1894 error (g, _("add_handle failed"));
1902 guestfs__switch_to_receiving (guestfs_h *g)
1904 if (g->sock_watch >= 0) {
1905 if (g->main_loop->remove_handle (g->main_loop, g, g->sock_watch) == -1) {
1906 error (g, _("remove_handle failed"));
1913 g->main_loop->add_handle (g->main_loop, g, g->sock,
1914 GUESTFS_HANDLE_READABLE,
1915 sock_read_event, NULL);
1916 if (g->sock_watch == -1) {
1917 error (g, _("add_handle failed"));
1924 /* Dispatch a call (len + header + args) to the remote daemon,
1925 * synchronously (ie. using the guest's main loop to wait until
1926 * it has been sent). Returns -1 for error, or the serial
1927 * number of the message.
1930 send_cb (guestfs_h *g, void *data)
1932 guestfs_main_loop *ml = guestfs_get_main_loop (g);
1935 ml->main_loop_quit (ml, g);
1939 guestfs__send_sync (guestfs_h *g, int proc_nr,
1940 xdrproc_t xdrp, char *args)
1942 struct guestfs_message_header hdr;
1945 int serial = g->msg_next_serial++;
1947 guestfs_main_loop *ml = guestfs_get_main_loop (g);
1949 if (g->state != BUSY) {
1950 error (g, _("guestfs__send_sync: state %d != BUSY"), g->state);
1954 /* This is probably an internal error. Or perhaps we should just
1955 * free the buffer anyway?
1957 if (g->msg_out != NULL) {
1958 error (g, _("guestfs__send_sync: msg_out should be NULL"));
1962 /* We have to allocate this message buffer on the heap because
1963 * it is quite large (although will be mostly unused). We
1964 * can't allocate it on the stack because in some environments
1965 * we have quite limited stack space available, notably when
1966 * running in the JVM.
1968 g->msg_out = safe_malloc (g, GUESTFS_MESSAGE_MAX + 4);
1969 xdrmem_create (&xdr, g->msg_out + 4, GUESTFS_MESSAGE_MAX, XDR_ENCODE);
1971 /* Serialize the header. */
1972 hdr.prog = GUESTFS_PROGRAM;
1973 hdr.vers = GUESTFS_PROTOCOL_VERSION;
1975 hdr.direction = GUESTFS_DIRECTION_CALL;
1976 hdr.serial = serial;
1977 hdr.status = GUESTFS_STATUS_OK;
1979 if (!xdr_guestfs_message_header (&xdr, &hdr)) {
1980 error (g, _("xdr_guestfs_message_header failed"));
1984 /* Serialize the args. If any, because some message types
1985 * have no parameters.
1988 if (!(*xdrp) (&xdr, args)) {
1989 error (g, _("dispatch failed to marshal args"));
1994 /* Get the actual length of the message, resize the buffer to match
1995 * the actual length, and write the length word at the beginning.
1997 len = xdr_getpos (&xdr);
2000 g->msg_out = safe_realloc (g, g->msg_out, len + 4);
2001 g->msg_out_size = len + 4;
2004 xdrmem_create (&xdr, g->msg_out, 4, XDR_ENCODE);
2005 xdr_uint32_t (&xdr, &len);
2007 if (guestfs__switch_to_sending (g) == -1)
2011 guestfs_set_send_callback (g, send_cb, &sent);
2012 if (ml->main_loop_run (ml, g) == -1)
2015 error (g, _("send failed, see earlier error messages"));
2024 g->msg_out_size = 0;
2028 static int cancel = 0; /* XXX Implement file cancellation. */
2029 static int send_file_chunk_sync (guestfs_h *g, int cancel, const char *buf, size_t len);
2030 static int send_file_data_sync (guestfs_h *g, const char *buf, size_t len);
2031 static int send_file_cancellation_sync (guestfs_h *g);
2032 static int send_file_complete_sync (guestfs_h *g);
2034 /* Synchronously send a file.
2038 * -2 daemon cancelled (we must read the error message)
2041 guestfs__send_file_sync (guestfs_h *g, const char *filename)
2043 char buf[GUESTFS_MAX_CHUNK_SIZE];
2046 fd = open (filename, O_RDONLY);
2048 perrorf (g, "open: %s", filename);
2049 send_file_cancellation_sync (g);
2050 /* Daemon sees cancellation and won't reply, so caller can
2056 /* Send file in chunked encoding. */
2058 r = read (fd, buf, sizeof buf);
2059 if (r == -1 && (errno == EINTR || errno == EAGAIN))
2062 err = send_file_data_sync (g, buf, r);
2064 if (err == -2) /* daemon sent cancellation */
2065 send_file_cancellation_sync (g);
2070 if (cancel) { /* cancel from either end */
2071 send_file_cancellation_sync (g);
2076 perrorf (g, "read: %s", filename);
2077 send_file_cancellation_sync (g);
2081 /* End of file, but before we send that, we need to close
2082 * the file and check for errors.
2084 if (close (fd) == -1) {
2085 perrorf (g, "close: %s", filename);
2086 send_file_cancellation_sync (g);
2090 return send_file_complete_sync (g);
2093 /* Send a chunk of file data. */
2095 send_file_data_sync (guestfs_h *g, const char *buf, size_t len)
2097 return send_file_chunk_sync (g, 0, buf, len);
2100 /* Send a cancellation message. */
2102 send_file_cancellation_sync (guestfs_h *g)
2104 return send_file_chunk_sync (g, 1, NULL, 0);
2107 /* Send a file complete chunk. */
2109 send_file_complete_sync (guestfs_h *g)
2112 return send_file_chunk_sync (g, 0, buf, 0);
2115 /* Send a chunk, cancellation or end of file, synchronously (ie. wait
2118 static int check_for_daemon_cancellation (guestfs_h *g);
2121 send_file_chunk_sync (guestfs_h *g, int cancel, const char *buf, size_t buflen)
2125 guestfs_chunk chunk;
2127 guestfs_main_loop *ml = guestfs_get_main_loop (g);
2129 if (g->state != BUSY) {
2130 error (g, _("send_file_chunk_sync: state %d != READY"), g->state);
2134 /* This is probably an internal error. Or perhaps we should just
2135 * free the buffer anyway?
2137 if (g->msg_out != NULL) {
2138 error (g, _("guestfs__send_sync: msg_out should be NULL"));
2142 /* Did the daemon send a cancellation message? */
2143 if (check_for_daemon_cancellation (g)) {
2145 fprintf (stderr, "got daemon cancellation\n");
2149 /* Allocate the chunk buffer. Don't use the stack to avoid
2150 * excessive stack usage and unnecessary copies.
2152 g->msg_out = safe_malloc (g, GUESTFS_MAX_CHUNK_SIZE + 4 + 48);
2153 xdrmem_create (&xdr, g->msg_out + 4, GUESTFS_MAX_CHUNK_SIZE + 48, XDR_ENCODE);
2155 /* Serialize the chunk. */
2156 chunk.cancel = cancel;
2157 chunk.data.data_len = buflen;
2158 chunk.data.data_val = (char *) buf;
2160 if (!xdr_guestfs_chunk (&xdr, &chunk)) {
2161 error (g, _("xdr_guestfs_chunk failed (buf = %p, buflen = %zu)"),
2167 len = xdr_getpos (&xdr);
2170 /* Reduce the size of the outgoing message buffer to the real length. */
2171 g->msg_out = safe_realloc (g, g->msg_out, len + 4);
2172 g->msg_out_size = len + 4;
2175 xdrmem_create (&xdr, g->msg_out, 4, XDR_ENCODE);
2176 xdr_uint32_t (&xdr, &len);
2178 if (guestfs__switch_to_sending (g) == -1)
2182 guestfs_set_send_callback (g, send_cb, &sent);
2183 if (ml->main_loop_run (ml, g) == -1)
2186 error (g, _("send file chunk failed, see earlier error messages"));
2195 g->msg_out_size = 0;
2199 /* At this point we are sending FileIn file(s) to the guest, and not
2200 * expecting to read anything, so if we do read anything, it must be
2201 * a cancellation message. This checks for this case without blocking.
2204 check_for_daemon_cancellation (guestfs_h *g)
2214 FD_SET (g->sock, &rset);
2217 r = select (g->sock+1, &rset, NULL, NULL, &tv);
2219 perrorf (g, "select");
2225 /* Read the message from the daemon. */
2226 r = xread (g->sock, buf, sizeof buf);
2228 perrorf (g, "read");
2232 xdrmem_create (&xdr, buf, sizeof buf, XDR_DECODE);
2233 xdr_uint32_t (&xdr, &flag);
2236 if (flag != GUESTFS_CANCEL_FLAG) {
2237 error (g, _("check_for_daemon_cancellation: read 0x%x from daemon, expected 0x%x\n"),
2238 flag, GUESTFS_CANCEL_FLAG);
2245 /* Synchronously receive a file. */
2247 /* Returns -1 = error, 0 = EOF, 1 = more data */
2248 static int receive_file_data_sync (guestfs_h *g, void **buf, size_t *len);
2251 guestfs__receive_file_sync (guestfs_h *g, const char *filename)
2257 fd = open (filename, O_WRONLY|O_CREAT|O_TRUNC|O_NOCTTY, 0666);
2259 perrorf (g, "open: %s", filename);
2263 /* Receive the file in chunked encoding. */
2264 while ((r = receive_file_data_sync (g, &buf, &len)) >= 0) {
2265 if (xwrite (fd, buf, len) == -1) {
2266 perrorf (g, "%s: write", filename);
2271 if (r == 0) break; /* End of file. */
2275 error (g, _("%s: error in chunked encoding"), filename);
2279 if (close (fd) == -1) {
2280 perrorf (g, "close: %s", filename);
2287 /* Send cancellation message to daemon, then wait until it
2288 * cancels (just throwing away data).
2292 uint32_t flag = GUESTFS_CANCEL_FLAG;
2295 fprintf (stderr, "%s: waiting for daemon to acknowledge cancellation\n",
2298 xdrmem_create (&xdr, fbuf, sizeof fbuf, XDR_ENCODE);
2299 xdr_uint32_t (&xdr, &flag);
2302 if (xwrite (g->sock, fbuf, sizeof fbuf) == -1) {
2303 perrorf (g, _("write to daemon socket"));
2307 while ((r = receive_file_data_sync (g, NULL, NULL)) > 0)
2308 ; /* just discard it */
2313 /* Note that the reply callback can be called multiple times before
2314 * the main loop quits and we get back to the synchronous code. So
2315 * we have to be prepared to save multiple chunks on a list here.
2317 struct receive_file_ctx {
2318 int count; /* 0 if receive_file_cb not called, or
2319 * else count number of chunks.
2321 guestfs_chunk *chunks; /* Array of chunks. */
2325 free_chunks (struct receive_file_ctx *ctx)
2329 for (i = 0; i < ctx->count; ++i)
2330 free (ctx->chunks[i].data.data_val);
2336 receive_file_cb (guestfs_h *g, void *data, XDR *xdr)
2338 guestfs_main_loop *ml = guestfs_get_main_loop (g);
2339 struct receive_file_ctx *ctx = (struct receive_file_ctx *) data;
2340 guestfs_chunk chunk;
2342 if (ctx->count == -1) /* Parse error occurred previously. */
2345 ml->main_loop_quit (ml, g);
2347 memset (&chunk, 0, sizeof chunk);
2349 if (!xdr_guestfs_chunk (xdr, &chunk)) {
2350 error (g, _("failed to parse file chunk"));
2357 /* Copy the chunk to the list. */
2358 ctx->chunks = safe_realloc (g, ctx->chunks,
2359 sizeof (guestfs_chunk) * (ctx->count+1));
2360 ctx->chunks[ctx->count] = chunk;
2364 /* Receive a chunk of file data. */
2365 /* Returns -1 = error, 0 = EOF, 1 = more data */
2367 receive_file_data_sync (guestfs_h *g, void **buf, size_t *len_r)
2369 struct receive_file_ctx ctx;
2370 guestfs_main_loop *ml = guestfs_get_main_loop (g);
2377 guestfs_set_reply_callback (g, receive_file_cb, &ctx);
2378 (void) ml->main_loop_run (ml, g);
2379 guestfs_set_reply_callback (g, NULL, NULL);
2381 if (ctx.count == 0) {
2382 error (g, _("receive_file_data_sync: reply callback not called\n"));
2386 if (ctx.count == -1) {
2387 error (g, _("receive_file_data_sync: parse error in reply callback\n"));
2388 /* callback already freed the chunks */
2393 fprintf (stderr, "receive_file_data_sync: got %d chunks\n", ctx.count);
2395 /* Process each chunk in the list. */
2396 if (buf) *buf = NULL; /* Accumulate data in this buffer. */
2399 for (i = 0; i < ctx.count; ++i) {
2400 if (ctx.chunks[i].cancel) {
2401 error (g, _("file receive cancelled by daemon"));
2403 if (buf) free (*buf);
2404 if (len_r) *len_r = 0;
2408 if (ctx.chunks[i].data.data_len == 0) { /* end of transfer */
2410 if (len_r) *len_r = len;
2415 *buf = safe_realloc (g, *buf, len + ctx.chunks[i].data.data_len);
2416 memcpy (*buf+len, ctx.chunks[i].data.data_val,
2417 ctx.chunks[i].data.data_len);
2419 len += ctx.chunks[i].data.data_len;
2422 if (len_r) *len_r = len;
2427 /* This is the default main loop implementation, using select(2). */
2430 select_add_handle (guestfs_main_loop *mlv, guestfs_h *g, int fd, int events,
2431 guestfs_handle_event_cb cb, void *data)
2433 struct select_main_loop *ml = (struct select_main_loop *) mlv;
2435 if (fd < 0 || fd >= FD_SETSIZE) {
2436 error (g, _("fd %d is out of range"), fd);
2440 if ((events & ~(GUESTFS_HANDLE_READABLE |
2441 GUESTFS_HANDLE_WRITABLE |
2442 GUESTFS_HANDLE_HANGUP |
2443 GUESTFS_HANDLE_ERROR)) != 0) {
2444 error (g, _("set of events (0x%x) contains unknown events"), events);
2449 error (g, _("set of events is empty"));
2453 if (FD_ISSET (fd, &ml->rset) ||
2454 FD_ISSET (fd, &ml->wset) ||
2455 FD_ISSET (fd, &ml->xset)) {
2456 error (g, _("fd %d is already registered"), fd);
2461 error (g, _("callback is NULL"));
2465 if ((events & GUESTFS_HANDLE_READABLE))
2466 FD_SET (fd, &ml->rset);
2467 if ((events & GUESTFS_HANDLE_WRITABLE))
2468 FD_SET (fd, &ml->wset);
2469 if ((events & GUESTFS_HANDLE_HANGUP) || (events & GUESTFS_HANDLE_ERROR))
2470 FD_SET (fd, &ml->xset);
2472 if (fd > ml->max_fd) {
2474 ml->handle_cb_data =
2475 safe_realloc (g, ml->handle_cb_data,
2476 sizeof (struct select_handle_cb_data) * (ml->max_fd+1));
2478 ml->handle_cb_data[fd].cb = cb;
2479 ml->handle_cb_data[fd].g = g;
2480 ml->handle_cb_data[fd].data = data;
2484 /* Any integer >= 0 can be the handle, and this is as good as any ... */
2489 select_remove_handle (guestfs_main_loop *mlv, guestfs_h *g, int fd)
2491 struct select_main_loop *ml = (struct select_main_loop *) mlv;
2493 if (fd < 0 || fd >= FD_SETSIZE) {
2494 error (g, _("fd %d is out of range"), fd);
2498 if (!FD_ISSET (fd, &ml->rset) &&
2499 !FD_ISSET (fd, &ml->wset) &&
2500 !FD_ISSET (fd, &ml->xset)) {
2501 error (g, _("fd %d was not registered"), fd);
2505 FD_CLR (fd, &ml->rset);
2506 FD_CLR (fd, &ml->wset);
2507 FD_CLR (fd, &ml->xset);
2509 if (fd == ml->max_fd) {
2511 ml->handle_cb_data =
2512 safe_realloc (g, ml->handle_cb_data,
2513 sizeof (struct select_handle_cb_data) * (ml->max_fd+1));
2522 select_add_timeout (guestfs_main_loop *mlv, guestfs_h *g, int interval,
2523 guestfs_handle_timeout_cb cb, void *data)
2525 //struct select_main_loop *ml = (struct select_main_loop *) mlv;
2527 abort (); /* XXX not implemented yet */
2531 select_remove_timeout (guestfs_main_loop *mlv, guestfs_h *g, int timer)
2533 //struct select_main_loop *ml = (struct select_main_loop *) mlv;
2535 abort (); /* XXX not implemented yet */
2538 /* The 'g' parameter is just used for error reporting. Events
2539 * for multiple handles can be dispatched by running the main
2543 select_main_loop_run (guestfs_main_loop *mlv, guestfs_h *g)
2545 struct select_main_loop *ml = (struct select_main_loop *) mlv;
2547 fd_set rset2, wset2, xset2;
2549 if (ml->is_running) {
2550 error (g, _("select_main_loop_run: this cannot be called recursively"));
2556 while (ml->is_running) {
2557 if (ml->nr_fds == 0)
2563 r = select (ml->max_fd+1, &rset2, &wset2, &xset2, NULL);
2565 if (errno == EINTR || errno == EAGAIN)
2567 perrorf (g, "select");
2572 for (fd = 0; r > 0 && fd <= ml->max_fd; ++fd) {
2574 if (FD_ISSET (fd, &rset2))
2575 events |= GUESTFS_HANDLE_READABLE;
2576 if (FD_ISSET (fd, &wset2))
2577 events |= GUESTFS_HANDLE_WRITABLE;
2578 if (FD_ISSET (fd, &xset2))
2579 events |= GUESTFS_HANDLE_ERROR | GUESTFS_HANDLE_HANGUP;
2582 ml->handle_cb_data[fd].cb ((guestfs_main_loop *) ml,
2583 ml->handle_cb_data[fd].g,
2584 ml->handle_cb_data[fd].data,
2595 select_main_loop_quit (guestfs_main_loop *mlv, guestfs_h *g)
2597 struct select_main_loop *ml = (struct select_main_loop *) mlv;
2599 /* Note that legitimately ml->is_running can be zero when
2600 * this function is called.