17d812acd0c5a6c0567803c351323b6d3e0a19b0
[libguestfs.git] / src / guestfs.c
1 /* libguestfs
2  * Copyright (C) 2009 Red Hat Inc.
3  *
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.
8  *
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.
13  *
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
17  */
18
19 #include <config.h>
20
21 #define _BSD_SOURCE /* for mkdtemp, usleep */
22
23 #include <stdio.h>
24 #include <stdlib.h>
25 #include <stdarg.h>
26 #include <stddef.h>
27 #include <unistd.h>
28 #include <ctype.h>
29 #include <string.h>
30 #include <fcntl.h>
31 #include <time.h>
32 #include <sys/stat.h>
33 #include <sys/select.h>
34 #include <dirent.h>
35
36 #include <rpc/types.h>
37 #include <rpc/xdr.h>
38
39 #ifdef HAVE_ERRNO_H
40 #include <errno.h>
41 #endif
42
43 #ifdef HAVE_SYS_TYPES_H
44 #include <sys/types.h>
45 #endif
46
47 #ifdef HAVE_SYS_WAIT_H
48 #include <sys/wait.h>
49 #endif
50
51 #ifdef HAVE_SYS_SOCKET_H
52 #include <sys/socket.h>
53 #endif
54
55 #ifdef HAVE_SYS_UN_H
56 #include <sys/un.h>
57 #endif
58
59 #include "guestfs.h"
60 #include "guestfs-internal-actions.h"
61 #include "guestfs_protocol.h"
62 #include "ignore-value.h"
63
64 #ifdef HAVE_GETTEXT
65 #include "gettext.h"
66 #define _(str) dgettext(PACKAGE, (str))
67 //#define N_(str) dgettext(PACKAGE, (str))
68 #else
69 #define _(str) str
70 //#define N_(str) str
71 #endif
72
73 #define error guestfs_error
74 #define perrorf guestfs_perrorf
75 #define safe_malloc guestfs_safe_malloc
76 #define safe_realloc guestfs_safe_realloc
77 #define safe_strdup guestfs_safe_strdup
78 //#define safe_memdup guestfs_safe_memdup
79
80 static void default_error_cb (guestfs_h *g, void *data, const char *msg);
81 static int send_to_daemon (guestfs_h *g, const void *v_buf, size_t n);
82 static int recv_from_daemon (guestfs_h *g, uint32_t *size_rtn, void **buf_rtn);
83 static void close_handles (void);
84
85 #define UNIX_PATH_MAX 108
86
87 /* Also in guestfsd.c */
88 #define GUESTFWD_PORT 6666
89 #define GUESTFWD_ADDR "10.0.2.4"
90
91 /* GuestFS handle and connection. */
92 enum state { CONFIG, LAUNCHING, READY, BUSY, NO_HANDLE };
93
94 struct guestfs_h
95 {
96   struct guestfs_h *next;       /* Linked list of open handles. */
97
98   /* State: see the state machine diagram in the man page guestfs(3). */
99   enum state state;
100
101   int fd[2];                    /* Stdin/stdout of qemu. */
102   int sock;                     /* Daemon communications socket. */
103   pid_t pid;                    /* Qemu PID. */
104   pid_t recoverypid;            /* Recovery process PID. */
105   time_t start_t;               /* The time when we started qemu. */
106
107   char *tmpdir;                 /* Temporary directory containing socket. */
108
109   char *qemu_help, *qemu_version; /* Output of qemu -help, qemu -version. */
110
111   char **cmdline;               /* Qemu command line. */
112   int cmdline_size;
113
114   int verbose;
115   int trace;
116   int autosync;
117
118   char *path;                   /* Path to kernel, initrd. */
119   char *qemu;                   /* Qemu binary. */
120   char *append;                 /* Append to kernel command line. */
121
122   int memsize;                  /* Size of RAM (megabytes). */
123
124   int selinux;                  /* selinux enabled? */
125
126   char *last_error;
127
128   /* Callbacks. */
129   guestfs_abort_cb           abort_cb;
130   guestfs_error_handler_cb   error_cb;
131   void *                     error_cb_data;
132   guestfs_log_message_cb     log_message_cb;
133   void *                     log_message_cb_data;
134   guestfs_subprocess_quit_cb subprocess_quit_cb;
135   void *                     subprocess_quit_cb_data;
136   guestfs_launch_done_cb     launch_done_cb;
137   void *                     launch_done_cb_data;
138
139   int msg_next_serial;
140 };
141
142 static guestfs_h *handles = NULL;
143 static int atexit_handler_set = 0;
144
145 guestfs_h *
146 guestfs_create (void)
147 {
148   guestfs_h *g;
149   const char *str;
150
151   g = malloc (sizeof (*g));
152   if (!g) return NULL;
153
154   memset (g, 0, sizeof (*g));
155
156   g->state = CONFIG;
157
158   g->fd[0] = -1;
159   g->fd[1] = -1;
160   g->sock = -1;
161
162   g->abort_cb = abort;
163   g->error_cb = default_error_cb;
164   g->error_cb_data = NULL;
165
166   str = getenv ("LIBGUESTFS_DEBUG");
167   g->verbose = str != NULL && strcmp (str, "1") == 0;
168
169   str = getenv ("LIBGUESTFS_TRACE");
170   g->trace = str != NULL && strcmp (str, "1") == 0;
171
172   str = getenv ("LIBGUESTFS_PATH");
173   g->path = str != NULL ? strdup (str) : strdup (GUESTFS_DEFAULT_PATH);
174   if (!g->path) goto error;
175
176   str = getenv ("LIBGUESTFS_QEMU");
177   g->qemu = str != NULL ? strdup (str) : strdup (QEMU);
178   if (!g->qemu) goto error;
179
180   str = getenv ("LIBGUESTFS_APPEND");
181   if (str) {
182     g->append = strdup (str);
183     if (!g->append) goto error;
184   }
185
186   /* Choose a suitable memory size.  Previously we tried to choose
187    * a minimal memory size, but this isn't really necessary since
188    * recent QEMU and KVM don't do anything nasty like locking
189    * memory into core any more.  Thus we can safely choose a
190    * large, generous amount of memory, and it'll just get swapped
191    * on smaller systems.
192    */
193   str = getenv ("LIBGUESTFS_MEMSIZE");
194   if (str) {
195     if (sscanf (str, "%d", &g->memsize) != 1 || g->memsize <= 256) {
196       fprintf (stderr, "libguestfs: non-numeric or too small value for LIBGUESTFS_MEMSIZE\n");
197       goto error;
198     }
199   } else
200     g->memsize = 500;
201
202   /* Start with large serial numbers so they are easy to spot
203    * inside the protocol.
204    */
205   g->msg_next_serial = 0x00123400;
206
207   /* Link the handles onto a global list.  This is the one area
208    * where the library needs to be made thread-safe. (XXX)
209    */
210   /* acquire mutex (XXX) */
211   g->next = handles;
212   handles = g;
213   if (!atexit_handler_set) {
214     atexit (close_handles);
215     atexit_handler_set = 1;
216   }
217   /* release mutex (XXX) */
218
219   if (g->verbose)
220     fprintf (stderr, "new guestfs handle %p\n", g);
221
222   return g;
223
224  error:
225   free (g->path);
226   free (g->qemu);
227   free (g->append);
228   free (g);
229   return NULL;
230 }
231
232 void
233 guestfs_close (guestfs_h *g)
234 {
235   int i;
236   char filename[256];
237   guestfs_h *gg;
238
239   if (g->state == NO_HANDLE) {
240     /* Not safe to call 'error' here, so ... */
241     fprintf (stderr, _("guestfs_close: called twice on the same handle\n"));
242     return;
243   }
244
245   if (g->verbose)
246     fprintf (stderr, "closing guestfs handle %p (state %d)\n", g, g->state);
247
248   /* Try to sync if autosync flag is set. */
249   if (g->autosync && g->state == READY) {
250     guestfs_umount_all (g);
251     guestfs_sync (g);
252   }
253
254   /* Remove any handlers that might be called back before we kill the
255    * subprocess.
256    */
257   g->log_message_cb = NULL;
258
259   if (g->state != CONFIG)
260     guestfs_kill_subprocess (g);
261
262   /* Close sockets. */
263   if (g->fd[0] >= 0)
264     close (g->fd[0]);
265   if (g->fd[1] >= 0)
266     close (g->fd[1]);
267   if (g->sock >= 0)
268     close (g->sock);
269   g->fd[0] = -1;
270   g->fd[1] = -1;
271   g->sock = -1;
272
273   /* Wait for subprocess(es) to exit. */
274   waitpid (g->pid, NULL, 0);
275   if (g->recoverypid > 0) waitpid (g->recoverypid, NULL, 0);
276
277   /* Remove tmpfiles. */
278   if (g->tmpdir) {
279     snprintf (filename, sizeof filename, "%s/sock", g->tmpdir);
280     unlink (filename);
281
282     snprintf (filename, sizeof filename, "%s/initrd", g->tmpdir);
283     unlink (filename);
284
285     snprintf (filename, sizeof filename, "%s/kernel", g->tmpdir);
286     unlink (filename);
287
288     rmdir (g->tmpdir);
289
290     free (g->tmpdir);
291   }
292
293   if (g->cmdline) {
294     for (i = 0; i < g->cmdline_size; ++i)
295       free (g->cmdline[i]);
296     free (g->cmdline);
297   }
298
299   /* Mark the handle as dead before freeing it. */
300   g->state = NO_HANDLE;
301
302   /* acquire mutex (XXX) */
303   if (handles == g)
304     handles = g->next;
305   else {
306     for (gg = handles; gg->next != g; gg = gg->next)
307       ;
308     gg->next = g->next;
309   }
310   /* release mutex (XXX) */
311
312   free (g->last_error);
313   free (g->path);
314   free (g->qemu);
315   free (g->append);
316   free (g->qemu_help);
317   free (g->qemu_version);
318   free (g);
319 }
320
321 /* Close all open handles (called from atexit(3)). */
322 static void
323 close_handles (void)
324 {
325   while (handles) guestfs_close (handles);
326 }
327
328 const char *
329 guestfs_last_error (guestfs_h *g)
330 {
331   return g->last_error;
332 }
333
334 static void
335 set_last_error (guestfs_h *g, const char *msg)
336 {
337   free (g->last_error);
338   g->last_error = strdup (msg);
339 }
340
341 static void
342 default_error_cb (guestfs_h *g, void *data, const char *msg)
343 {
344   fprintf (stderr, _("libguestfs: error: %s\n"), msg);
345 }
346
347 void
348 guestfs_error (guestfs_h *g, const char *fs, ...)
349 {
350   va_list args;
351   char *msg;
352
353   va_start (args, fs);
354   int err = vasprintf (&msg, fs, args);
355   va_end (args);
356
357   if (err < 0) return;
358
359   if (g->error_cb) g->error_cb (g, g->error_cb_data, msg);
360   set_last_error (g, msg);
361
362   free (msg);
363 }
364
365 void
366 guestfs_perrorf (guestfs_h *g, const char *fs, ...)
367 {
368   va_list args;
369   char *msg;
370   int errnum = errno;
371
372   va_start (args, fs);
373   int err = vasprintf (&msg, fs, args);
374   va_end (args);
375
376   if (err < 0) return;
377
378 #ifndef _GNU_SOURCE
379   char buf[256];
380   strerror_r (errnum, buf, sizeof buf);
381 #else
382   char _buf[256];
383   char *buf;
384   buf = strerror_r (errnum, _buf, sizeof _buf);
385 #endif
386
387   msg = safe_realloc (g, msg, strlen (msg) + 2 + strlen (buf) + 1);
388   strcat (msg, ": ");
389   strcat (msg, buf);
390
391   if (g->error_cb) g->error_cb (g, g->error_cb_data, msg);
392   set_last_error (g, msg);
393
394   free (msg);
395 }
396
397 void *
398 guestfs_safe_malloc (guestfs_h *g, size_t nbytes)
399 {
400   void *ptr = malloc (nbytes);
401   if (nbytes > 0 && !ptr) g->abort_cb ();
402   return ptr;
403 }
404
405 /* Return 1 if an array of N objects, each of size S, cannot exist due
406    to size arithmetic overflow.  S must be positive and N must be
407    nonnegative.  This is a macro, not an inline function, so that it
408    works correctly even when SIZE_MAX < N.
409
410    By gnulib convention, SIZE_MAX represents overflow in size
411    calculations, so the conservative dividend to use here is
412    SIZE_MAX - 1, since SIZE_MAX might represent an overflowed value.
413    However, malloc (SIZE_MAX) fails on all known hosts where
414    sizeof (ptrdiff_t) <= sizeof (size_t), so do not bother to test for
415    exactly-SIZE_MAX allocations on such hosts; this avoids a test and
416    branch when S is known to be 1.  */
417 # define xalloc_oversized(n, s) \
418     ((size_t) (sizeof (ptrdiff_t) <= sizeof (size_t) ? -1 : -2) / (s) < (n))
419
420 /* Technically we should add an autoconf test for this, testing for the desired
421    functionality, like what's done in gnulib, but for now, this is fine.  */
422 #define HAVE_GNU_CALLOC (__GLIBC__ >= 2)
423
424 /* Allocate zeroed memory for N elements of S bytes, with error
425    checking.  S must be nonzero.  */
426 void *
427 guestfs_safe_calloc (guestfs_h *g, size_t n, size_t s)
428 {
429   /* From gnulib's calloc function in xmalloc.c.  */
430   void *p;
431   /* Test for overflow, since some calloc implementations don't have
432      proper overflow checks.  But omit overflow and size-zero tests if
433      HAVE_GNU_CALLOC, since GNU calloc catches overflow and never
434      returns NULL if successful.  */
435   if ((! HAVE_GNU_CALLOC && xalloc_oversized (n, s))
436       || (! (p = calloc (n, s)) && (HAVE_GNU_CALLOC || n != 0)))
437     g->abort_cb ();
438   return p;
439 }
440
441 void *
442 guestfs_safe_realloc (guestfs_h *g, void *ptr, int nbytes)
443 {
444   void *p = realloc (ptr, nbytes);
445   if (nbytes > 0 && !p) g->abort_cb ();
446   return p;
447 }
448
449 char *
450 guestfs_safe_strdup (guestfs_h *g, const char *str)
451 {
452   char *s = strdup (str);
453   if (!s) g->abort_cb ();
454   return s;
455 }
456
457 void *
458 guestfs_safe_memdup (guestfs_h *g, void *ptr, size_t size)
459 {
460   void *p = malloc (size);
461   if (!p) g->abort_cb ();
462   memcpy (p, ptr, size);
463   return p;
464 }
465
466 static int
467 xwrite (int fd, const void *v_buf, size_t len)
468 {
469   const char *buf = v_buf;
470   int r;
471
472   while (len > 0) {
473     r = write (fd, buf, len);
474     if (r == -1)
475       return -1;
476
477     buf += r;
478     len -= r;
479   }
480
481   return 0;
482 }
483
484 void
485 guestfs_set_out_of_memory_handler (guestfs_h *g, guestfs_abort_cb cb)
486 {
487   g->abort_cb = cb;
488 }
489
490 guestfs_abort_cb
491 guestfs_get_out_of_memory_handler (guestfs_h *g)
492 {
493   return g->abort_cb;
494 }
495
496 void
497 guestfs_set_error_handler (guestfs_h *g, guestfs_error_handler_cb cb, void *data)
498 {
499   g->error_cb = cb;
500   g->error_cb_data = data;
501 }
502
503 guestfs_error_handler_cb
504 guestfs_get_error_handler (guestfs_h *g, void **data_rtn)
505 {
506   if (data_rtn) *data_rtn = g->error_cb_data;
507   return g->error_cb;
508 }
509
510 int
511 guestfs__set_verbose (guestfs_h *g, int v)
512 {
513   g->verbose = !!v;
514   return 0;
515 }
516
517 int
518 guestfs__get_verbose (guestfs_h *g)
519 {
520   return g->verbose;
521 }
522
523 int
524 guestfs__set_autosync (guestfs_h *g, int a)
525 {
526   g->autosync = !!a;
527   return 0;
528 }
529
530 int
531 guestfs__get_autosync (guestfs_h *g)
532 {
533   return g->autosync;
534 }
535
536 int
537 guestfs__set_path (guestfs_h *g, const char *path)
538 {
539   free (g->path);
540   g->path = NULL;
541
542   g->path =
543     path == NULL ?
544     safe_strdup (g, GUESTFS_DEFAULT_PATH) : safe_strdup (g, path);
545   return 0;
546 }
547
548 const char *
549 guestfs__get_path (guestfs_h *g)
550 {
551   return g->path;
552 }
553
554 int
555 guestfs__set_qemu (guestfs_h *g, const char *qemu)
556 {
557   free (g->qemu);
558   g->qemu = NULL;
559
560   g->qemu = qemu == NULL ? safe_strdup (g, QEMU) : safe_strdup (g, qemu);
561   return 0;
562 }
563
564 const char *
565 guestfs__get_qemu (guestfs_h *g)
566 {
567   return g->qemu;
568 }
569
570 int
571 guestfs__set_append (guestfs_h *g, const char *append)
572 {
573   free (g->append);
574   g->append = NULL;
575
576   g->append = append ? safe_strdup (g, append) : NULL;
577   return 0;
578 }
579
580 const char *
581 guestfs__get_append (guestfs_h *g)
582 {
583   return g->append;
584 }
585
586 int
587 guestfs__set_memsize (guestfs_h *g, int memsize)
588 {
589   g->memsize = memsize;
590   return 0;
591 }
592
593 int
594 guestfs__get_memsize (guestfs_h *g)
595 {
596   return g->memsize;
597 }
598
599 int
600 guestfs__set_selinux (guestfs_h *g, int selinux)
601 {
602   g->selinux = selinux;
603   return 0;
604 }
605
606 int
607 guestfs__get_selinux (guestfs_h *g)
608 {
609   return g->selinux;
610 }
611
612 int
613 guestfs__get_pid (guestfs_h *g)
614 {
615   if (g->pid > 0)
616     return g->pid;
617   else {
618     error (g, "get_pid: no qemu subprocess");
619     return -1;
620   }
621 }
622
623 struct guestfs_version *
624 guestfs__version (guestfs_h *g)
625 {
626   struct guestfs_version *r;
627
628   r = safe_malloc (g, sizeof *r);
629   r->major = PACKAGE_VERSION_MAJOR;
630   r->minor = PACKAGE_VERSION_MINOR;
631   r->release = PACKAGE_VERSION_RELEASE;
632   r->extra = safe_strdup (g, PACKAGE_VERSION_EXTRA);
633   return r;
634 }
635
636 int
637 guestfs__set_trace (guestfs_h *g, int t)
638 {
639   g->trace = !!t;
640   return 0;
641 }
642
643 int
644 guestfs__get_trace (guestfs_h *g)
645 {
646   return g->trace;
647 }
648
649 /* Add a string to the current command line. */
650 static void
651 incr_cmdline_size (guestfs_h *g)
652 {
653   if (g->cmdline == NULL) {
654     /* g->cmdline[0] is reserved for argv[0], set in guestfs_launch. */
655     g->cmdline_size = 1;
656     g->cmdline = safe_malloc (g, sizeof (char *));
657     g->cmdline[0] = NULL;
658   }
659
660   g->cmdline_size++;
661   g->cmdline = safe_realloc (g, g->cmdline, sizeof (char *) * g->cmdline_size);
662 }
663
664 static int
665 add_cmdline (guestfs_h *g, const char *str)
666 {
667   if (g->state != CONFIG) {
668     error (g,
669         _("command line cannot be altered after qemu subprocess launched"));
670     return -1;
671   }
672
673   incr_cmdline_size (g);
674   g->cmdline[g->cmdline_size-1] = safe_strdup (g, str);
675   return 0;
676 }
677
678 int
679 guestfs__config (guestfs_h *g,
680                  const char *qemu_param, const char *qemu_value)
681 {
682   if (qemu_param[0] != '-') {
683     error (g, _("guestfs_config: parameter must begin with '-' character"));
684     return -1;
685   }
686
687   /* A bit fascist, but the user will probably break the extra
688    * parameters that we add if they try to set any of these.
689    */
690   if (strcmp (qemu_param, "-kernel") == 0 ||
691       strcmp (qemu_param, "-initrd") == 0 ||
692       strcmp (qemu_param, "-nographic") == 0 ||
693       strcmp (qemu_param, "-serial") == 0 ||
694       strcmp (qemu_param, "-full-screen") == 0 ||
695       strcmp (qemu_param, "-std-vga") == 0 ||
696       strcmp (qemu_param, "-vnc") == 0) {
697     error (g, _("guestfs_config: parameter '%s' isn't allowed"), qemu_param);
698     return -1;
699   }
700
701   if (add_cmdline (g, qemu_param) != 0) return -1;
702
703   if (qemu_value != NULL) {
704     if (add_cmdline (g, qemu_value) != 0) return -1;
705   }
706
707   return 0;
708 }
709
710 int
711 guestfs__add_drive (guestfs_h *g, const char *filename)
712 {
713   size_t len = strlen (filename) + 64;
714   char buf[len];
715
716   if (strchr (filename, ',') != NULL) {
717     error (g, _("filename cannot contain ',' (comma) character"));
718     return -1;
719   }
720
721   /* cache=off improves reliability in the event of a host crash.
722    *
723    * However this option causes qemu to try to open the file with
724    * O_DIRECT.  This fails on some filesystem types (notably tmpfs).
725    * So we check if we can open the file with or without O_DIRECT,
726    * and use cache=off (or not) accordingly.
727    *
728    * This test also checks for the presence of the file, which
729    * is a documented semantic of this interface.
730    */
731   int fd = open (filename, O_RDONLY|O_DIRECT);
732   if (fd >= 0) {
733     close (fd);
734     snprintf (buf, len, "file=%s,cache=off,if=" DRIVE_IF, filename);
735   } else {
736     fd = open (filename, O_RDONLY);
737     if (fd >= 0) {
738       close (fd);
739       snprintf (buf, len, "file=%s,if=" DRIVE_IF, filename);
740     } else {
741       perrorf (g, "%s", filename);
742       return -1;
743     }
744   }
745
746   return guestfs__config (g, "-drive", buf);
747 }
748
749 int
750 guestfs__add_drive_ro (guestfs_h *g, const char *filename)
751 {
752   size_t len = strlen (filename) + 64;
753   char buf[len];
754
755   if (strchr (filename, ',') != NULL) {
756     error (g, _("filename cannot contain ',' (comma) character"));
757     return -1;
758   }
759
760   if (access (filename, F_OK) == -1) {
761     perrorf (g, "%s", filename);
762     return -1;
763   }
764
765   snprintf (buf, len, "file=%s,snapshot=on,if=%s", filename, DRIVE_IF);
766
767   return guestfs__config (g, "-drive", buf);
768 }
769
770 int
771 guestfs__add_cdrom (guestfs_h *g, const char *filename)
772 {
773   if (strchr (filename, ',') != NULL) {
774     error (g, _("filename cannot contain ',' (comma) character"));
775     return -1;
776   }
777
778   if (access (filename, F_OK) == -1) {
779     perrorf (g, "%s", filename);
780     return -1;
781   }
782
783   return guestfs__config (g, "-cdrom", filename);
784 }
785
786 /* Returns true iff file is contained in dir. */
787 static int
788 dir_contains_file (const char *dir, const char *file)
789 {
790   int dirlen = strlen (dir);
791   int filelen = strlen (file);
792   int len = dirlen+filelen+2;
793   char path[len];
794
795   snprintf (path, len, "%s/%s", dir, file);
796   return access (path, F_OK) == 0;
797 }
798
799 /* Returns true iff every listed file is contained in 'dir'. */
800 static int
801 dir_contains_files (const char *dir, ...)
802 {
803   va_list args;
804   const char *file;
805
806   va_start (args, dir);
807   while ((file = va_arg (args, const char *)) != NULL) {
808     if (!dir_contains_file (dir, file)) {
809       va_end (args);
810       return 0;
811     }
812   }
813   va_end (args);
814   return 1;
815 }
816
817 static int build_supermin_appliance (guestfs_h *g, const char *path, char **kernel, char **initrd);
818 static int test_qemu (guestfs_h *g);
819 static int qemu_supports (guestfs_h *g, const char *option);
820 static void print_cmdline (guestfs_h *g);
821
822 static const char *kernel_name = "vmlinuz." REPO "." host_cpu;
823 static const char *initrd_name = "initramfs." REPO "." host_cpu ".img";
824 static const char *supermin_name =
825   "initramfs." REPO "." host_cpu ".supermin.img";
826 static const char *supermin_hostfiles_name =
827   "initramfs." REPO "." host_cpu ".supermin.hostfiles";
828
829 int
830 guestfs__launch (guestfs_h *g)
831 {
832   const char *tmpdir;
833   char dir_template[PATH_MAX];
834   int r, pmore;
835   size_t len;
836   int wfd[2], rfd[2];
837   int tries;
838   char *path, *pelem, *pend;
839   char *kernel = NULL, *initrd = NULL;
840   char unixsock[256];
841   struct sockaddr_un addr;
842
843 #ifdef P_tmpdir
844   tmpdir = P_tmpdir;
845 #else
846   tmpdir = "/tmp";
847 #endif
848
849   tmpdir = getenv ("TMPDIR") ? : tmpdir;
850   snprintf (dir_template, sizeof dir_template, "%s/libguestfsXXXXXX", tmpdir);
851
852   /* Configured? */
853   if (!g->cmdline) {
854     error (g, _("you must call guestfs_add_drive before guestfs_launch"));
855     return -1;
856   }
857
858   if (g->state != CONFIG) {
859     error (g, _("qemu has already been launched"));
860     return -1;
861   }
862
863   /* Make the temporary directory. */
864   if (!g->tmpdir) {
865     g->tmpdir = safe_strdup (g, dir_template);
866     if (mkdtemp (g->tmpdir) == NULL) {
867       perrorf (g, _("%s: cannot create temporary directory"), dir_template);
868       goto cleanup0;
869     }
870   }
871
872   /* First search g->path for the supermin appliance, and try to
873    * synthesize a kernel and initrd from that.  If it fails, we
874    * try the path search again looking for a backup ordinary
875    * appliance.
876    */
877   pelem = path = safe_strdup (g, g->path);
878   do {
879     pend = strchrnul (pelem, ':');
880     pmore = *pend == ':';
881     *pend = '\0';
882     len = pend - pelem;
883
884     /* Empty element of "." means cwd. */
885     if (len == 0 || (len == 1 && *pelem == '.')) {
886       if (g->verbose)
887         fprintf (stderr,
888                  "looking for supermin appliance in current directory\n");
889       if (dir_contains_files (".",
890                               supermin_name, supermin_hostfiles_name,
891                               "kmod.whitelist", NULL)) {
892         if (build_supermin_appliance (g, ".", &kernel, &initrd) == -1)
893           return -1;
894         break;
895       }
896     }
897     /* Look at <path>/supermin* etc. */
898     else {
899       if (g->verbose)
900         fprintf (stderr, "looking for supermin appliance in %s\n", pelem);
901
902       if (dir_contains_files (pelem,
903                               supermin_name, supermin_hostfiles_name,
904                               "kmod.whitelist", NULL)) {
905         if (build_supermin_appliance (g, pelem, &kernel, &initrd) == -1)
906           return -1;
907         break;
908       }
909     }
910
911     pelem = pend + 1;
912   } while (pmore);
913
914   free (path);
915
916   if (kernel == NULL || initrd == NULL) {
917     /* Search g->path for the kernel and initrd. */
918     pelem = path = safe_strdup (g, g->path);
919     do {
920       pend = strchrnul (pelem, ':');
921       pmore = *pend == ':';
922       *pend = '\0';
923       len = pend - pelem;
924
925       /* Empty element or "." means cwd. */
926       if (len == 0 || (len == 1 && *pelem == '.')) {
927         if (g->verbose)
928           fprintf (stderr,
929                    "looking for appliance in current directory\n");
930         if (dir_contains_files (".", kernel_name, initrd_name, NULL)) {
931           kernel = safe_strdup (g, kernel_name);
932           initrd = safe_strdup (g, initrd_name);
933           break;
934         }
935       }
936       /* Look at <path>/kernel etc. */
937       else {
938         if (g->verbose)
939           fprintf (stderr, "looking for appliance in %s\n", pelem);
940
941         if (dir_contains_files (pelem, kernel_name, initrd_name, NULL)) {
942           kernel = safe_malloc (g, len + strlen (kernel_name) + 2);
943           initrd = safe_malloc (g, len + strlen (initrd_name) + 2);
944           sprintf (kernel, "%s/%s", pelem, kernel_name);
945           sprintf (initrd, "%s/%s", pelem, initrd_name);
946           break;
947         }
948       }
949
950       pelem = pend + 1;
951     } while (pmore);
952
953     free (path);
954   }
955
956   if (kernel == NULL || initrd == NULL) {
957     error (g, _("cannot find %s or %s on LIBGUESTFS_PATH (current path = %s)"),
958            kernel_name, initrd_name, g->path);
959     goto cleanup0;
960   }
961
962   /* Get qemu help text and version. */
963   if (test_qemu (g) == -1)
964     goto cleanup0;
965
966   /* Make the vmchannel socket. */
967   snprintf (unixsock, sizeof unixsock, "%s/sock", g->tmpdir);
968   unlink (unixsock);
969
970   if (pipe (wfd) == -1 || pipe (rfd) == -1) {
971     perrorf (g, "pipe");
972     goto cleanup0;
973   }
974
975   r = fork ();
976   if (r == -1) {
977     perrorf (g, "fork");
978     close (wfd[0]);
979     close (wfd[1]);
980     close (rfd[0]);
981     close (rfd[1]);
982     goto cleanup0;
983   }
984
985   if (r == 0) {                 /* Child (qemu). */
986     char buf[256];
987
988     /* Set up the full command line.  Do this in the subprocess so we
989      * don't need to worry about cleaning up.
990      */
991     g->cmdline[0] = g->qemu;
992
993     snprintf (buf, sizeof buf, "%d", g->memsize);
994     add_cmdline (g, "-m");
995     add_cmdline (g, buf);
996
997     add_cmdline (g, "-no-reboot"); /* Force exit instead of reboot on panic */
998     add_cmdline (g, "-nographic");
999     add_cmdline (g, "-serial");
1000     add_cmdline (g, "stdio");
1001
1002     /* These options recommended by KVM developers to improve reliability. */
1003     if (qemu_supports (g, "-no-hpet"))
1004       add_cmdline (g, "-no-hpet");
1005
1006     if (qemu_supports (g, "-rtc-td-hack"))
1007       add_cmdline (g, "-rtc-td-hack");
1008
1009     if (qemu_supports (g, "-chardev") && qemu_supports (g, "guestfwd")) {
1010       /* New-style -net user,guestfwd=... syntax for guestfwd.  See:
1011        *
1012        * http://git.savannah.gnu.org/cgit/qemu.git/commit/?id=c92ef6a22d3c71538fcc48fb61ad353f7ba03b62
1013        *
1014        * The original suggested format doesn't work, see:
1015        *
1016        * http://lists.gnu.org/archive/html/qemu-devel/2009-07/msg01654.html
1017        *
1018        * However Gerd Hoffman privately suggested to me using -chardev
1019        * instead, which does work.
1020        */
1021       snprintf (buf, sizeof buf,
1022                 "socket,id=guestfsvmc,path=%s,server,nowait", unixsock);
1023
1024       add_cmdline (g, "-chardev");
1025       add_cmdline (g, buf);
1026
1027       snprintf (buf, sizeof buf,
1028                 "user,vlan=0,net=10.0.2.0/8,"
1029                 "guestfwd=tcp:%s:%d-chardev:guestfsvmc",
1030                 GUESTFWD_ADDR, GUESTFWD_PORT);
1031
1032       add_cmdline (g, "-net");
1033       add_cmdline (g, buf);
1034     } else {
1035       /* Not guestfwd.  HOPEFULLY this qemu uses the older -net channel
1036        * syntax, or if not then we'll get a quick failure.
1037        */
1038       snprintf (buf, sizeof buf,
1039                 "channel,%d:unix:%s,server,nowait", GUESTFWD_PORT, unixsock);
1040
1041       add_cmdline (g, "-net");
1042       add_cmdline (g, buf);
1043       add_cmdline (g, "-net");
1044       add_cmdline (g, "user,vlan=0,net=10.0.2.0/8");
1045     }
1046     add_cmdline (g, "-net");
1047     add_cmdline (g, "nic,model=" NET_IF ",vlan=0");
1048
1049 #define LINUX_CMDLINE                                                   \
1050     "panic=1 "         /* force kernel to panic if daemon exits */      \
1051     "console=ttyS0 "   /* serial console */                             \
1052     "udevtimeout=300 " /* good for very slow systems (RHBZ#480319) */   \
1053     "noapic "          /* workaround for RHBZ#502058 - ok if not SMP */ \
1054     "acpi=off "        /* we don't need ACPI, turn it off */            \
1055     "cgroup_disable=memory " /* saves us about 5 MB of RAM */
1056
1057     /* Linux kernel command line. */
1058     snprintf (buf, sizeof buf,
1059               LINUX_CMDLINE
1060               "%s"              /* (selinux) */
1061               "%s"              /* (verbose) */
1062               "%s",             /* (append) */
1063               g->selinux ? "selinux=1 enforcing=0 " : "selinux=0 ",
1064               g->verbose ? "guestfs_verbose=1 " : " ",
1065               g->append ? g->append : "");
1066
1067     add_cmdline (g, "-kernel");
1068     add_cmdline (g, (char *) kernel);
1069     add_cmdline (g, "-initrd");
1070     add_cmdline (g, (char *) initrd);
1071     add_cmdline (g, "-append");
1072     add_cmdline (g, buf);
1073
1074     /* Finish off the command line. */
1075     incr_cmdline_size (g);
1076     g->cmdline[g->cmdline_size-1] = NULL;
1077
1078     if (g->verbose)
1079       print_cmdline (g);
1080
1081     /* Set up stdin, stdout. */
1082     close (0);
1083     close (1);
1084     close (wfd[1]);
1085     close (rfd[0]);
1086
1087     if (dup (wfd[0]) == -1) {
1088     dup_failed:
1089       perror ("dup failed");
1090       _exit (1);
1091     }
1092     if (dup (rfd[1]) == -1)
1093       goto dup_failed;
1094
1095     close (wfd[0]);
1096     close (rfd[1]);
1097
1098 #if 0
1099     /* Set up a new process group, so we can signal this process
1100      * and all subprocesses (eg. if qemu is really a shell script).
1101      */
1102     setpgid (0, 0);
1103 #endif
1104
1105     execv (g->qemu, g->cmdline); /* Run qemu. */
1106     perror (g->qemu);
1107     _exit (1);
1108   }
1109
1110   /* Parent (library). */
1111   g->pid = r;
1112
1113   free (kernel);
1114   kernel = NULL;
1115   free (initrd);
1116   initrd = NULL;
1117
1118   /* Fork the recovery process off which will kill qemu if the parent
1119    * process fails to do so (eg. if the parent segfaults).
1120    */
1121   r = fork ();
1122   if (r == 0) {
1123     pid_t qemu_pid = g->pid;
1124     pid_t parent_pid = getppid ();
1125
1126     /* Writing to argv is hideously complicated and error prone.  See:
1127      * http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/backend/utils/misc/ps_status.c?rev=1.33.2.1;content-type=text%2Fplain
1128      */
1129
1130     /* Loop around waiting for one or both of the other processes to
1131      * disappear.  It's fair to say this is very hairy.  The PIDs that
1132      * we are looking at might be reused by another process.  We are
1133      * effectively polling.  Is the cure worse than the disease?
1134      */
1135     for (;;) {
1136       if (kill (qemu_pid, 0) == -1) /* qemu's gone away, we aren't needed */
1137         _exit (0);
1138       if (kill (parent_pid, 0) == -1) {
1139         /* Parent's gone away, qemu still around, so kill qemu. */
1140         kill (qemu_pid, 9);
1141         _exit (0);
1142       }
1143       sleep (2);
1144     }
1145   }
1146
1147   /* Don't worry, if the fork failed, this will be -1.  The recovery
1148    * process isn't essential.
1149    */
1150   g->recoverypid = r;
1151
1152   /* Start the clock ... */
1153   time (&g->start_t);
1154
1155   /* Close the other ends of the pipe. */
1156   close (wfd[0]);
1157   close (rfd[1]);
1158
1159   if (fcntl (wfd[1], F_SETFL, O_NONBLOCK) == -1 ||
1160       fcntl (rfd[0], F_SETFL, O_NONBLOCK) == -1) {
1161     perrorf (g, "fcntl");
1162     goto cleanup1;
1163   }
1164
1165   g->fd[0] = wfd[1];            /* stdin of child */
1166   g->fd[1] = rfd[0];            /* stdout of child */
1167
1168   /* Open the Unix socket.  The vmchannel implementation that got
1169    * merged with qemu sucks in a number of ways.  Both ends do
1170    * connect(2), which means that no one knows what, if anything, is
1171    * connected to the other end, or if it becomes disconnected.  Even
1172    * worse, we have to wait some indeterminate time for qemu to create
1173    * the socket and connect to it (which happens very early in qemu's
1174    * start-up), so any code that uses vmchannel is inherently racy.
1175    * Hence this silly loop.
1176    */
1177   g->sock = socket (AF_UNIX, SOCK_STREAM, 0);
1178   if (g->sock == -1) {
1179     perrorf (g, "socket");
1180     goto cleanup1;
1181   }
1182
1183   if (fcntl (g->sock, F_SETFL, O_NONBLOCK) == -1) {
1184     perrorf (g, "fcntl");
1185     goto cleanup2;
1186   }
1187
1188   addr.sun_family = AF_UNIX;
1189   strncpy (addr.sun_path, unixsock, UNIX_PATH_MAX);
1190   addr.sun_path[UNIX_PATH_MAX-1] = '\0';
1191
1192   tries = 100;
1193   /* Always sleep at least once to give qemu a small chance to start up. */
1194   usleep (10000);
1195   while (tries > 0) {
1196     r = connect (g->sock, (struct sockaddr *) &addr, sizeof addr);
1197     if ((r == -1 && errno == EINPROGRESS) || r == 0)
1198       goto connected;
1199
1200     if (errno != ENOENT)
1201       perrorf (g, "connect");
1202     tries--;
1203     usleep (100000);
1204   }
1205
1206   error (g, _("failed to connect to vmchannel socket"));
1207   goto cleanup2;
1208
1209  connected:
1210   g->state = LAUNCHING;
1211   return 0;
1212
1213  cleanup2:
1214   close (g->sock);
1215
1216  cleanup1:
1217   close (wfd[1]);
1218   close (rfd[0]);
1219   kill (g->pid, 9);
1220   if (g->recoverypid > 0) kill (g->recoverypid, 9);
1221   waitpid (g->pid, NULL, 0);
1222   if (g->recoverypid > 0) waitpid (g->recoverypid, NULL, 0);
1223   g->fd[0] = -1;
1224   g->fd[1] = -1;
1225   g->sock = -1;
1226   g->pid = 0;
1227   g->recoverypid = 0;
1228   g->start_t = 0;
1229
1230  cleanup0:
1231   free (kernel);
1232   free (initrd);
1233   return -1;
1234 }
1235
1236 /* This function is used to print the qemu command line before it gets
1237  * executed, when in verbose mode.
1238  */
1239 static void
1240 print_cmdline (guestfs_h *g)
1241 {
1242   int i = 0;
1243   int needs_quote;
1244
1245   while (g->cmdline[i]) {
1246     if (g->cmdline[i][0] == '-') /* -option starts a new line */
1247       fprintf (stderr, " \\\n   ");
1248
1249     if (i > 0) fputc (' ', stderr);
1250
1251     /* Does it need shell quoting?  This only deals with simple cases. */
1252     needs_quote = strcspn (g->cmdline[i], " ") != strlen (g->cmdline[i]);
1253
1254     if (needs_quote) fputc ('\'', stderr);
1255     fprintf (stderr, "%s", g->cmdline[i]);
1256     if (needs_quote) fputc ('\'', stderr);
1257     i++;
1258   }
1259
1260   fputc ('\n', stderr);
1261 }
1262
1263 /* This function does the hard work of building the supermin appliance
1264  * on the fly.  'path' is the directory containing the control files.
1265  * 'kernel' and 'initrd' are where we will return the names of the
1266  * kernel and initrd (only initrd is built).  The work is done by
1267  * an external script.  We just tell it where to put the result.
1268  */
1269 static int
1270 build_supermin_appliance (guestfs_h *g, const char *path,
1271                           char **kernel, char **initrd)
1272 {
1273   char cmd[4096];
1274   int r, len;
1275
1276   len = strlen (g->tmpdir);
1277   *kernel = safe_malloc (g, len + 8);
1278   snprintf (*kernel, len+8, "%s/kernel", g->tmpdir);
1279   *initrd = safe_malloc (g, len + 8);
1280   snprintf (*initrd, len+8, "%s/initrd", g->tmpdir);
1281
1282   snprintf (cmd, sizeof cmd,
1283             "PATH='%s':$PATH "
1284             "libguestfs-supermin-helper '%s' %s %s",
1285             path,
1286             path, *kernel, *initrd);
1287
1288   r = system (cmd);
1289   if (r == -1 || WEXITSTATUS(r) != 0) {
1290     error (g, _("external command failed: %s"), cmd);
1291     free (*kernel);
1292     free (*initrd);
1293     *kernel = *initrd = NULL;
1294     return -1;
1295   }
1296
1297   return 0;
1298 }
1299
1300 static int read_all (guestfs_h *g, FILE *fp, char **ret);
1301
1302 /* Test qemu binary (or wrapper) runs, and do 'qemu -help' and
1303  * 'qemu -version' so we know what options this qemu supports and
1304  * the version.
1305  */
1306 static int
1307 test_qemu (guestfs_h *g)
1308 {
1309   char cmd[1024];
1310   FILE *fp;
1311
1312   free (g->qemu_help);
1313   free (g->qemu_version);
1314   g->qemu_help = NULL;
1315   g->qemu_version = NULL;
1316
1317   snprintf (cmd, sizeof cmd, "'%s' -help", g->qemu);
1318
1319   fp = popen (cmd, "r");
1320   /* qemu -help should always work (qemu -version OTOH wasn't
1321    * supported by qemu 0.9).  If this command doesn't work then it
1322    * probably indicates that the qemu binary is missing.
1323    */
1324   if (!fp) {
1325     /* XXX This error is never printed, even if the qemu binary
1326      * doesn't exist.  Why?
1327      */
1328   error:
1329     perrorf (g, _("%s: command failed: If qemu is located on a non-standard path, try setting the LIBGUESTFS_QEMU environment variable."), cmd);
1330     return -1;
1331   }
1332
1333   if (read_all (g, fp, &g->qemu_help) == -1)
1334     goto error;
1335
1336   if (pclose (fp) == -1)
1337     goto error;
1338
1339   snprintf (cmd, sizeof cmd, "'%s' -version 2>/dev/null", g->qemu);
1340
1341   fp = popen (cmd, "r");
1342   if (fp) {
1343     /* Intentionally ignore errors. */
1344     read_all (g, fp, &g->qemu_version);
1345     pclose (fp);
1346   }
1347
1348   return 0;
1349 }
1350
1351 static int
1352 read_all (guestfs_h *g, FILE *fp, char **ret)
1353 {
1354   int r, n = 0;
1355   char *p;
1356
1357  again:
1358   if (feof (fp)) {
1359     *ret = safe_realloc (g, *ret, n + 1);
1360     (*ret)[n] = '\0';
1361     return n;
1362   }
1363
1364   *ret = safe_realloc (g, *ret, n + BUFSIZ);
1365   p = &(*ret)[n];
1366   r = fread (p, 1, BUFSIZ, fp);
1367   if (ferror (fp)) {
1368     perrorf (g, "read");
1369     return -1;
1370   }
1371   n += r;
1372   goto again;
1373 }
1374
1375 /* Test if option is supported by qemu command line (just by grepping
1376  * the help text).
1377  */
1378 static int
1379 qemu_supports (guestfs_h *g, const char *option)
1380 {
1381   return g->qemu_help && strstr (g->qemu_help, option) != NULL;
1382 }
1383
1384 int
1385 guestfs__wait_ready (guestfs_h *g)
1386 {
1387   int r;
1388   uint32_t size;
1389   void *buf = NULL;
1390
1391   if (g->state == READY) return 0;
1392
1393   if (g->state == BUSY) {
1394     error (g, _("qemu has finished launching already"));
1395     return -1;
1396   }
1397
1398   if (g->state != LAUNCHING) {
1399     error (g, _("qemu has not been launched yet"));
1400     return -1;
1401   }
1402
1403   r = recv_from_daemon (g, &size, &buf);
1404   free (buf);
1405
1406   if (r == -1) return -1;
1407
1408   if (size != GUESTFS_LAUNCH_FLAG) {
1409     error (g, _("guestfs_wait_ready failed, see earlier error messages"));
1410     return -1;
1411   }
1412
1413   /* This is possible in some really strange situations, such as
1414    * guestfsd starts up OK but then qemu immediately exits.  Check for
1415    * it because the caller is probably expecting to be able to send
1416    * commands after this function returns.
1417    */
1418   if (g->state != READY) {
1419     error (g, _("qemu launched and contacted daemon, but state != READY"));
1420     return -1;
1421   }
1422
1423   return 0;
1424 }
1425
1426 int
1427 guestfs__kill_subprocess (guestfs_h *g)
1428 {
1429   if (g->state == CONFIG) {
1430     error (g, _("no subprocess to kill"));
1431     return -1;
1432   }
1433
1434   if (g->verbose)
1435     fprintf (stderr, "sending SIGTERM to process %d\n", g->pid);
1436
1437   kill (g->pid, SIGTERM);
1438   if (g->recoverypid > 0) kill (g->recoverypid, 9);
1439
1440   return 0;
1441 }
1442
1443 /* Access current state. */
1444 int
1445 guestfs__is_config (guestfs_h *g)
1446 {
1447   return g->state == CONFIG;
1448 }
1449
1450 int
1451 guestfs__is_launching (guestfs_h *g)
1452 {
1453   return g->state == LAUNCHING;
1454 }
1455
1456 int
1457 guestfs__is_ready (guestfs_h *g)
1458 {
1459   return g->state == READY;
1460 }
1461
1462 int
1463 guestfs__is_busy (guestfs_h *g)
1464 {
1465   return g->state == BUSY;
1466 }
1467
1468 int
1469 guestfs__get_state (guestfs_h *g)
1470 {
1471   return g->state;
1472 }
1473
1474 void
1475 guestfs_set_log_message_callback (guestfs_h *g,
1476                                   guestfs_log_message_cb cb, void *opaque)
1477 {
1478   g->log_message_cb = cb;
1479   g->log_message_cb_data = opaque;
1480 }
1481
1482 void
1483 guestfs_set_subprocess_quit_callback (guestfs_h *g,
1484                                       guestfs_subprocess_quit_cb cb, void *opaque)
1485 {
1486   g->subprocess_quit_cb = cb;
1487   g->subprocess_quit_cb_data = opaque;
1488 }
1489
1490 void
1491 guestfs_set_launch_done_callback (guestfs_h *g,
1492                                   guestfs_launch_done_cb cb, void *opaque)
1493 {
1494   g->launch_done_cb = cb;
1495   g->launch_done_cb_data = opaque;
1496 }
1497
1498 /*----------------------------------------------------------------------*/
1499
1500 /* This is the code used to send and receive RPC messages and (for
1501  * certain types of message) to perform file transfers.  This code is
1502  * driven from the generated actions (src/guestfs-actions.c).  There
1503  * are five different cases to consider:
1504  *
1505  * (1) A non-daemon function.  There is no RPC involved at all, it's
1506  * all handled inside the library.
1507  *
1508  * (2) A simple RPC (eg. "mount").  We write the request, then read
1509  * the reply.  The sequence of calls is:
1510  *
1511  *   guestfs___set_busy
1512  *   guestfs___send
1513  *   guestfs___recv
1514  *   guestfs___end_busy
1515  *
1516  * (3) An RPC with FileOut parameters (eg. "upload").  We write the
1517  * request, then write the file(s), then read the reply.  The sequence
1518  * of calls is:
1519  *
1520  *   guestfs___set_busy
1521  *   guestfs___send
1522  *   guestfs___send_file  (possibly multiple times)
1523  *   guestfs___recv
1524  *   guestfs___end_busy
1525  *
1526  * (4) An RPC with FileIn parameters (eg. "download").  We write the
1527  * request, then read the reply, then read the file(s).  The sequence
1528  * of calls is:
1529  *
1530  *   guestfs___set_busy
1531  *   guestfs___send
1532  *   guestfs___recv
1533  *   guestfs___recv_file  (possibly multiple times)
1534  *   guestfs___end_busy
1535  *
1536  * (5) Both FileOut and FileIn parameters.  There are no calls like
1537  * this in the current API, but they would be implemented as a
1538  * combination of cases (3) and (4).
1539  *
1540  * During all writes and reads, we also select(2) on qemu stdout
1541  * looking for messages (guestfsd stderr and guest kernel dmesg), and
1542  * anything received is passed up through the log_message_cb.  This is
1543  * also the reason why all the sockets are non-blocking.  We also have
1544  * to check for EOF (qemu died).  All of this is handled by the
1545  * functions send_to_daemon and recv_from_daemon.
1546  */
1547
1548 int
1549 guestfs___set_busy (guestfs_h *g)
1550 {
1551   if (g->state != READY) {
1552     error (g, _("guestfs_set_busy: called when in state %d != READY"),
1553            g->state);
1554     return -1;
1555   }
1556   g->state = BUSY;
1557   return 0;
1558 }
1559
1560 int
1561 guestfs___end_busy (guestfs_h *g)
1562 {
1563   switch (g->state)
1564     {
1565     case BUSY:
1566       g->state = READY;
1567       break;
1568     case CONFIG:
1569     case READY:
1570       break;
1571
1572     case LAUNCHING:
1573     case NO_HANDLE:
1574     default:
1575       error (g, _("guestfs_end_busy: called when in state %d"), g->state);
1576       return -1;
1577     }
1578   return 0;
1579 }
1580
1581 /* This is called if we detect EOF, ie. qemu died. */
1582 static void
1583 child_cleanup (guestfs_h *g)
1584 {
1585   if (g->verbose)
1586     fprintf (stderr, "child_cleanup: %p: child process died\n", g);
1587
1588   /*kill (g->pid, SIGTERM);*/
1589   if (g->recoverypid > 0) kill (g->recoverypid, 9);
1590   waitpid (g->pid, NULL, 0);
1591   if (g->recoverypid > 0) waitpid (g->recoverypid, NULL, 0);
1592   close (g->fd[0]);
1593   close (g->fd[1]);
1594   close (g->sock);
1595   g->fd[0] = -1;
1596   g->fd[1] = -1;
1597   g->sock = -1;
1598   g->pid = 0;
1599   g->recoverypid = 0;
1600   g->start_t = 0;
1601   g->state = CONFIG;
1602   if (g->subprocess_quit_cb)
1603     g->subprocess_quit_cb (g, g->subprocess_quit_cb_data);
1604 }
1605
1606 static int
1607 read_log_message_or_eof (guestfs_h *g, int fd)
1608 {
1609   char buf[BUFSIZ];
1610   int n;
1611
1612 #if 0
1613   if (g->verbose)
1614     fprintf (stderr,
1615              "read_log_message_or_eof: %p g->state = %d, fd = %d\n",
1616              g, g->state, fd);
1617 #endif
1618
1619   /* QEMU's console emulates a 16550A serial port.  The real 16550A
1620    * device has a small FIFO buffer (16 bytes) which means here we see
1621    * lots of small reads of 1-16 bytes in length, usually single
1622    * bytes.
1623    */
1624   n = read (fd, buf, sizeof buf);
1625   if (n == 0) {
1626     /* Hopefully this indicates the qemu child process has died. */
1627     child_cleanup (g);
1628     return -1;
1629   }
1630
1631   if (n == -1) {
1632     if (errno == EINTR || errno == EAGAIN)
1633       return 0;
1634
1635     perrorf (g, "read");
1636     return -1;
1637   }
1638
1639   /* In verbose mode, copy all log messages to stderr. */
1640   if (g->verbose)
1641     ignore_value (write (STDERR_FILENO, buf, n));
1642
1643   /* It's an actual log message, send it upwards if anyone is listening. */
1644   if (g->log_message_cb)
1645     g->log_message_cb (g, g->log_message_cb_data, buf, n);
1646
1647   return 0;
1648 }
1649
1650 static int
1651 check_for_daemon_cancellation_or_eof (guestfs_h *g, int fd)
1652 {
1653   char buf[4];
1654   int n;
1655   uint32_t flag;
1656   XDR xdr;
1657
1658   if (g->verbose)
1659     fprintf (stderr,
1660              "check_for_daemon_cancellation_or_eof: %p g->state = %d, fd = %d\n",
1661              g, g->state, fd);
1662
1663   n = read (fd, buf, 4);
1664   if (n == 0) {
1665     /* Hopefully this indicates the qemu child process has died. */
1666     child_cleanup (g);
1667     return -1;
1668   }
1669
1670   if (n == -1) {
1671     if (errno == EINTR || errno == EAGAIN)
1672       return 0;
1673
1674     perrorf (g, "read");
1675     return -1;
1676   }
1677
1678   xdrmem_create (&xdr, buf, 4, XDR_DECODE);
1679   xdr_uint32_t (&xdr, &flag);
1680   xdr_destroy (&xdr);
1681
1682   if (flag != GUESTFS_CANCEL_FLAG) {
1683     error (g, _("check_for_daemon_cancellation_or_eof: read 0x%x from daemon, expected 0x%x\n"),
1684            flag, GUESTFS_CANCEL_FLAG);
1685     return -1;
1686   }
1687
1688   return -2;
1689 }
1690
1691 /* This writes the whole N bytes of BUF to the daemon socket.
1692  *
1693  * If the whole write is successful, it returns 0.
1694  * If there was an error, it returns -1.
1695  * If the daemon sent a cancellation message, it returns -2.
1696  *
1697  * It also checks qemu stdout for log messages and passes those up
1698  * through log_message_cb.
1699  *
1700  * It also checks for EOF (qemu died) and passes that up through the
1701  * child_cleanup function above.
1702  */
1703 static int
1704 send_to_daemon (guestfs_h *g, const void *v_buf, size_t n)
1705 {
1706   const char *buf = v_buf;
1707   fd_set rset, rset2;
1708   fd_set wset, wset2;
1709
1710   if (g->verbose)
1711     fprintf (stderr,
1712              "send_to_daemon: %p g->state = %d, n = %zu\n", g, g->state, n);
1713
1714   FD_ZERO (&rset);
1715   FD_ZERO (&wset);
1716
1717   FD_SET (g->fd[1], &rset);     /* Read qemu stdout for log messages & EOF. */
1718   FD_SET (g->sock, &rset);      /* Read socket for cancellation & EOF. */
1719   FD_SET (g->sock, &wset);      /* Write to socket to send the data. */
1720
1721   int max_fd = g->sock > g->fd[1] ? g->sock : g->fd[1];
1722
1723   while (n > 0) {
1724     rset2 = rset;
1725     wset2 = wset;
1726     int r = select (max_fd+1, &rset2, &wset2, NULL, NULL);
1727     if (r == -1) {
1728       if (errno == EINTR || errno == EAGAIN)
1729         continue;
1730       perrorf (g, "select");
1731       return -1;
1732     }
1733
1734     if (FD_ISSET (g->fd[1], &rset2)) {
1735       if (read_log_message_or_eof (g, g->fd[1]) == -1)
1736         return -1;
1737     }
1738     if (FD_ISSET (g->sock, &rset2)) {
1739       r = check_for_daemon_cancellation_or_eof (g, g->sock);
1740       if (r < 0)
1741         return r;
1742     }
1743     if (FD_ISSET (g->sock, &wset2)) {
1744       r = write (g->sock, buf, n);
1745       if (r == -1) {
1746         if (errno == EINTR || errno == EAGAIN)
1747           continue;
1748         perrorf (g, "write");
1749         if (errno == EPIPE) /* Disconnected from guest (RHBZ#508713). */
1750           child_cleanup (g);
1751         return -1;
1752       }
1753       buf += r;
1754       n -= r;
1755     }
1756   }
1757
1758   return 0;
1759 }
1760
1761 /* This reads a single message, file chunk, launch flag or
1762  * cancellation flag from the daemon.  If something was read, it
1763  * returns 0, otherwise -1.
1764  *
1765  * Both size_rtn and buf_rtn must be passed by the caller as non-NULL.
1766  *
1767  * *size_rtn returns the size of the returned message or it may be
1768  * GUESTFS_LAUNCH_FLAG or GUESTFS_CANCEL_FLAG.
1769  *
1770  * *buf_rtn is returned containing the message (if any) or will be set
1771  * to NULL.  *buf_rtn must be freed by the caller.
1772  *
1773  * It also checks qemu stdout for log messages and passes those up
1774  * through log_message_cb.
1775  *
1776  * It also checks for EOF (qemu died) and passes that up through the
1777  * child_cleanup function above.
1778  */
1779 static int
1780 recv_from_daemon (guestfs_h *g, uint32_t *size_rtn, void **buf_rtn)
1781 {
1782   fd_set rset, rset2;
1783
1784   if (g->verbose)
1785     fprintf (stderr,
1786              "recv_from_daemon: %p g->state = %d, size_rtn = %p, buf_rtn = %p\n",
1787              g, g->state, size_rtn, buf_rtn);
1788
1789   FD_ZERO (&rset);
1790
1791   FD_SET (g->fd[1], &rset);     /* Read qemu stdout for log messages & EOF. */
1792   FD_SET (g->sock, &rset);      /* Read socket for data & EOF. */
1793
1794   int max_fd = g->sock > g->fd[1] ? g->sock : g->fd[1];
1795
1796   *size_rtn = 0;
1797   *buf_rtn = NULL;
1798
1799   char lenbuf[4];
1800   /* nr is the size of the message, but we prime it as -4 because we
1801    * have to read the message length word first.
1802    */
1803   ssize_t nr = -4;
1804
1805   while (nr < (ssize_t) *size_rtn) {
1806     rset2 = rset;
1807     int r = select (max_fd+1, &rset2, NULL, NULL, NULL);
1808     if (r == -1) {
1809       if (errno == EINTR || errno == EAGAIN)
1810         continue;
1811       perrorf (g, "select");
1812       free (*buf_rtn);
1813       *buf_rtn = NULL;
1814       return -1;
1815     }
1816
1817     if (FD_ISSET (g->fd[1], &rset2)) {
1818       if (read_log_message_or_eof (g, g->fd[1]) == -1) {
1819         free (*buf_rtn);
1820         *buf_rtn = NULL;
1821         return -1;
1822       }
1823     }
1824     if (FD_ISSET (g->sock, &rset2)) {
1825       if (nr < 0) {    /* Have we read the message length word yet? */
1826         r = read (g->sock, lenbuf+nr+4, -nr);
1827         if (r == -1) {
1828           if (errno == EINTR || errno == EAGAIN)
1829             continue;
1830           int err = errno;
1831           perrorf (g, "read");
1832           /* Under some circumstances we see "Connection reset by peer"
1833            * here when the child dies suddenly.  Catch this and call
1834            * the cleanup function, same as for EOF.
1835            */
1836           if (err == ECONNRESET)
1837             child_cleanup (g);
1838           return -1;
1839         }
1840         if (r == 0) {
1841           error (g, _("unexpected end of file when reading from daemon"));
1842           child_cleanup (g);
1843           return -1;
1844         }
1845         nr += r;
1846
1847         if (nr < 0)         /* Still not got the whole length word. */
1848           continue;
1849
1850         XDR xdr;
1851         xdrmem_create (&xdr, lenbuf, 4, XDR_DECODE);
1852         xdr_uint32_t (&xdr, size_rtn);
1853         xdr_destroy (&xdr);
1854
1855         if (*size_rtn == GUESTFS_LAUNCH_FLAG) {
1856           if (g->state != LAUNCHING)
1857             error (g, _("received magic signature from guestfsd, but in state %d"),
1858                    g->state);
1859           else {
1860             g->state = READY;
1861             if (g->launch_done_cb)
1862               g->launch_done_cb (g, g->launch_done_cb_data);
1863           }
1864           return 0;
1865         }
1866         else if (*size_rtn == GUESTFS_CANCEL_FLAG)
1867           return 0;
1868         /* If this happens, it's pretty bad and we've probably lost
1869          * synchronization.
1870          */
1871         else if (*size_rtn > GUESTFS_MESSAGE_MAX) {
1872           error (g, _("message length (%u) > maximum possible size (%d)"),
1873                  (unsigned) *size_rtn, GUESTFS_MESSAGE_MAX);
1874           return -1;
1875         }
1876
1877         /* Allocate the complete buffer, size now known. */
1878         *buf_rtn = safe_malloc (g, *size_rtn);
1879         /*FALLTHROUGH*/
1880       }
1881
1882       size_t sizetoread = *size_rtn - nr;
1883       if (sizetoread > BUFSIZ) sizetoread = BUFSIZ;
1884
1885       r = read (g->sock, (char *) (*buf_rtn) + nr, sizetoread);
1886       if (r == -1) {
1887         if (errno == EINTR || errno == EAGAIN)
1888           continue;
1889         perrorf (g, "read");
1890         free (*buf_rtn);
1891         *buf_rtn = NULL;
1892         return -1;
1893       }
1894       if (r == 0) {
1895         error (g, _("unexpected end of file when reading from daemon"));
1896         child_cleanup (g);
1897         free (*buf_rtn);
1898         *buf_rtn = NULL;
1899         return -1;
1900       }
1901       nr += r;
1902     }
1903   }
1904
1905   /* Got the full message, caller can start processing it. */
1906 #ifdef ENABLE_PACKET_DUMP
1907   if (g->verbose) {
1908     ssize_t i, j;
1909
1910     for (i = 0; i < nr; i += 16) {
1911       printf ("%04zx: ", i);
1912       for (j = i; j < MIN (i+16, nr); ++j)
1913         printf ("%02x ", (*(unsigned char **)buf_rtn)[j]);
1914       for (; j < i+16; ++j)
1915         printf ("   ");
1916       printf ("|");
1917       for (j = i; j < MIN (i+16, nr); ++j)
1918         if (isprint ((*(char **)buf_rtn)[j]))
1919           printf ("%c", (*(char **)buf_rtn)[j]);
1920         else
1921           printf (".");
1922       for (; j < i+16; ++j)
1923         printf (" ");
1924       printf ("|\n");
1925     }
1926   }
1927 #endif
1928
1929   return 0;
1930 }
1931
1932 int
1933 guestfs___send (guestfs_h *g, int proc_nr, xdrproc_t xdrp, char *args)
1934 {
1935   struct guestfs_message_header hdr;
1936   XDR xdr;
1937   u_int32_t len;
1938   int serial = g->msg_next_serial++;
1939   int r;
1940   char *msg_out;
1941   size_t msg_out_size;
1942
1943   if (g->state != BUSY) {
1944     error (g, _("guestfs___send: state %d != BUSY"), g->state);
1945     return -1;
1946   }
1947
1948   /* We have to allocate this message buffer on the heap because
1949    * it is quite large (although will be mostly unused).  We
1950    * can't allocate it on the stack because in some environments
1951    * we have quite limited stack space available, notably when
1952    * running in the JVM.
1953    */
1954   msg_out = safe_malloc (g, GUESTFS_MESSAGE_MAX + 4);
1955   xdrmem_create (&xdr, msg_out + 4, GUESTFS_MESSAGE_MAX, XDR_ENCODE);
1956
1957   /* Serialize the header. */
1958   hdr.prog = GUESTFS_PROGRAM;
1959   hdr.vers = GUESTFS_PROTOCOL_VERSION;
1960   hdr.proc = proc_nr;
1961   hdr.direction = GUESTFS_DIRECTION_CALL;
1962   hdr.serial = serial;
1963   hdr.status = GUESTFS_STATUS_OK;
1964
1965   if (!xdr_guestfs_message_header (&xdr, &hdr)) {
1966     error (g, _("xdr_guestfs_message_header failed"));
1967     goto cleanup1;
1968   }
1969
1970   /* Serialize the args.  If any, because some message types
1971    * have no parameters.
1972    */
1973   if (xdrp) {
1974     if (!(*xdrp) (&xdr, args)) {
1975       error (g, _("dispatch failed to marshal args"));
1976       goto cleanup1;
1977     }
1978   }
1979
1980   /* Get the actual length of the message, resize the buffer to match
1981    * the actual length, and write the length word at the beginning.
1982    */
1983   len = xdr_getpos (&xdr);
1984   xdr_destroy (&xdr);
1985
1986   msg_out = safe_realloc (g, msg_out, len + 4);
1987   msg_out_size = len + 4;
1988
1989   xdrmem_create (&xdr, msg_out, 4, XDR_ENCODE);
1990   xdr_uint32_t (&xdr, &len);
1991
1992  again:
1993   r = send_to_daemon (g, msg_out, msg_out_size);
1994   if (r == -2)                  /* Ignore stray daemon cancellations. */
1995     goto again;
1996   if (r == -1)
1997     goto cleanup1;
1998   free (msg_out);
1999
2000   return serial;
2001
2002  cleanup1:
2003   free (msg_out);
2004   return -1;
2005 }
2006
2007 static int cancel = 0; /* XXX Implement file cancellation. */
2008 static int send_file_chunk (guestfs_h *g, int cancel, const char *buf, size_t len);
2009 static int send_file_data (guestfs_h *g, const char *buf, size_t len);
2010 static int send_file_cancellation (guestfs_h *g);
2011 static int send_file_complete (guestfs_h *g);
2012
2013 /* Send a file.
2014  * Returns:
2015  *   0 OK
2016  *   -1 error
2017  *   -2 daemon cancelled (we must read the error message)
2018  */
2019 int
2020 guestfs___send_file (guestfs_h *g, const char *filename)
2021 {
2022   char buf[GUESTFS_MAX_CHUNK_SIZE];
2023   int fd, r, err;
2024
2025   fd = open (filename, O_RDONLY);
2026   if (fd == -1) {
2027     perrorf (g, "open: %s", filename);
2028     send_file_cancellation (g);
2029     /* Daemon sees cancellation and won't reply, so caller can
2030      * just return here.
2031      */
2032     return -1;
2033   }
2034
2035   /* Send file in chunked encoding. */
2036   while (!cancel) {
2037     r = read (fd, buf, sizeof buf);
2038     if (r == -1 && (errno == EINTR || errno == EAGAIN))
2039       continue;
2040     if (r <= 0) break;
2041     err = send_file_data (g, buf, r);
2042     if (err < 0) {
2043       if (err == -2)            /* daemon sent cancellation */
2044         send_file_cancellation (g);
2045       return err;
2046     }
2047   }
2048
2049   if (cancel) {                 /* cancel from either end */
2050     send_file_cancellation (g);
2051     return -1;
2052   }
2053
2054   if (r == -1) {
2055     perrorf (g, "read: %s", filename);
2056     send_file_cancellation (g);
2057     return -1;
2058   }
2059
2060   /* End of file, but before we send that, we need to close
2061    * the file and check for errors.
2062    */
2063   if (close (fd) == -1) {
2064     perrorf (g, "close: %s", filename);
2065     send_file_cancellation (g);
2066     return -1;
2067   }
2068
2069   return send_file_complete (g);
2070 }
2071
2072 /* Send a chunk of file data. */
2073 static int
2074 send_file_data (guestfs_h *g, const char *buf, size_t len)
2075 {
2076   return send_file_chunk (g, 0, buf, len);
2077 }
2078
2079 /* Send a cancellation message. */
2080 static int
2081 send_file_cancellation (guestfs_h *g)
2082 {
2083   return send_file_chunk (g, 1, NULL, 0);
2084 }
2085
2086 /* Send a file complete chunk. */
2087 static int
2088 send_file_complete (guestfs_h *g)
2089 {
2090   char buf[1];
2091   return send_file_chunk (g, 0, buf, 0);
2092 }
2093
2094 static int
2095 send_file_chunk (guestfs_h *g, int cancel, const char *buf, size_t buflen)
2096 {
2097   u_int32_t len;
2098   int r;
2099   guestfs_chunk chunk;
2100   XDR xdr;
2101   char *msg_out;
2102   size_t msg_out_size;
2103
2104   if (g->state != BUSY) {
2105     error (g, _("send_file_chunk: state %d != READY"), g->state);
2106     return -1;
2107   }
2108
2109   /* Allocate the chunk buffer.  Don't use the stack to avoid
2110    * excessive stack usage and unnecessary copies.
2111    */
2112   msg_out = safe_malloc (g, GUESTFS_MAX_CHUNK_SIZE + 4 + 48);
2113   xdrmem_create (&xdr, msg_out + 4, GUESTFS_MAX_CHUNK_SIZE + 48, XDR_ENCODE);
2114
2115   /* Serialize the chunk. */
2116   chunk.cancel = cancel;
2117   chunk.data.data_len = buflen;
2118   chunk.data.data_val = (char *) buf;
2119
2120   if (!xdr_guestfs_chunk (&xdr, &chunk)) {
2121     error (g, _("xdr_guestfs_chunk failed (buf = %p, buflen = %zu)"),
2122            buf, buflen);
2123     xdr_destroy (&xdr);
2124     goto cleanup1;
2125   }
2126
2127   len = xdr_getpos (&xdr);
2128   xdr_destroy (&xdr);
2129
2130   /* Reduce the size of the outgoing message buffer to the real length. */
2131   msg_out = safe_realloc (g, msg_out, len + 4);
2132   msg_out_size = len + 4;
2133
2134   xdrmem_create (&xdr, msg_out, 4, XDR_ENCODE);
2135   xdr_uint32_t (&xdr, &len);
2136
2137   r = send_to_daemon (g, msg_out, msg_out_size);
2138
2139   /* Did the daemon send a cancellation message? */
2140   if (r == -2) {
2141     if (g->verbose)
2142       fprintf (stderr, "got daemon cancellation\n");
2143     return -2;
2144   }
2145
2146   if (r == -1)
2147     goto cleanup1;
2148
2149   free (msg_out);
2150
2151   return 0;
2152
2153  cleanup1:
2154   free (msg_out);
2155   return -1;
2156 }
2157
2158 /* Receive a reply. */
2159 int
2160 guestfs___recv (guestfs_h *g, const char *fn,
2161                 guestfs_message_header *hdr,
2162                 guestfs_message_error *err,
2163                 xdrproc_t xdrp, char *ret)
2164 {
2165   XDR xdr;
2166   void *buf;
2167   uint32_t size;
2168   int r;
2169
2170  again:
2171   r = recv_from_daemon (g, &size, &buf);
2172   if (r == -1)
2173     return -1;
2174
2175   /* This can happen if a cancellation happens right at the end
2176    * of us sending a FileIn parameter to the daemon.  Discard.  The
2177    * daemon should send us an error message next.
2178    */
2179   if (size == GUESTFS_CANCEL_FLAG)
2180     goto again;
2181
2182   if (size == GUESTFS_LAUNCH_FLAG) {
2183     error (g, "%s: received unexpected launch flag from daemon when expecting reply", fn);
2184     return -1;
2185   }
2186
2187   xdrmem_create (&xdr, buf, size, XDR_DECODE);
2188
2189   if (!xdr_guestfs_message_header (&xdr, hdr)) {
2190     error (g, "%s: failed to parse reply header", fn);
2191     xdr_destroy (&xdr);
2192     free (buf);
2193     return -1;
2194   }
2195   if (hdr->status == GUESTFS_STATUS_ERROR) {
2196     if (!xdr_guestfs_message_error (&xdr, err)) {
2197       error (g, "%s: failed to parse reply error", fn);
2198       xdr_destroy (&xdr);
2199       free (buf);
2200       return -1;
2201     }
2202   } else {
2203     if (xdrp && ret && !xdrp (&xdr, ret)) {
2204       error (g, "%s: failed to parse reply", fn);
2205       xdr_destroy (&xdr);
2206       free (buf);
2207       return -1;
2208     }
2209   }
2210   xdr_destroy (&xdr);
2211   free (buf);
2212
2213   return 0;
2214 }
2215
2216 /* Receive a file. */
2217
2218 /* Returns -1 = error, 0 = EOF, > 0 = more data */
2219 static ssize_t receive_file_data (guestfs_h *g, void **buf);
2220
2221 int
2222 guestfs___recv_file (guestfs_h *g, const char *filename)
2223 {
2224   void *buf;
2225   int fd, r;
2226   size_t len;
2227
2228   fd = open (filename, O_WRONLY|O_CREAT|O_TRUNC|O_NOCTTY, 0666);
2229   if (fd == -1) {
2230     perrorf (g, "open: %s", filename);
2231     goto cancel;
2232   }
2233
2234   /* Receive the file in chunked encoding. */
2235   while ((r = receive_file_data (g, &buf)) > 0) {
2236     if (xwrite (fd, buf, r) == -1) {
2237       perrorf (g, "%s: write", filename);
2238       free (buf);
2239       goto cancel;
2240     }
2241     free (buf);
2242   }
2243
2244   if (r == -1) {
2245     error (g, _("%s: error in chunked encoding"), filename);
2246     return -1;
2247   }
2248
2249   if (close (fd) == -1) {
2250     perrorf (g, "close: %s", filename);
2251     return -1;
2252   }
2253
2254   return 0;
2255
2256  cancel: ;
2257   /* Send cancellation message to daemon, then wait until it
2258    * cancels (just throwing away data).
2259    */
2260   XDR xdr;
2261   char fbuf[4];
2262   uint32_t flag = GUESTFS_CANCEL_FLAG;
2263
2264   if (g->verbose)
2265     fprintf (stderr, "%s: waiting for daemon to acknowledge cancellation\n",
2266              __func__);
2267
2268   xdrmem_create (&xdr, fbuf, sizeof fbuf, XDR_ENCODE);
2269   xdr_uint32_t (&xdr, &flag);
2270   xdr_destroy (&xdr);
2271
2272   if (xwrite (g->sock, fbuf, sizeof fbuf) == -1) {
2273     perrorf (g, _("write to daemon socket"));
2274     return -1;
2275   }
2276
2277   while (receive_file_data (g, NULL) > 0)
2278     ;                           /* just discard it */
2279
2280   return -1;
2281 }
2282
2283 /* Receive a chunk of file data. */
2284 /* Returns -1 = error, 0 = EOF, > 0 = more data */
2285 static ssize_t
2286 receive_file_data (guestfs_h *g, void **buf_r)
2287 {
2288   int r;
2289   void *buf;
2290   uint32_t len;
2291   XDR xdr;
2292   guestfs_chunk chunk;
2293
2294   r = recv_from_daemon (g, &len, &buf);
2295   if (r == -1) {
2296     error (g, _("receive_file_data: parse error in reply callback"));
2297     return -1;
2298   }
2299
2300   if (len == GUESTFS_LAUNCH_FLAG || len == GUESTFS_CANCEL_FLAG) {
2301     error (g, _("receive_file_data: unexpected flag received when reading file chunks"));
2302     return -1;
2303   }
2304
2305   memset (&chunk, 0, sizeof chunk);
2306
2307   xdrmem_create (&xdr, buf, len, XDR_DECODE);
2308   if (!xdr_guestfs_chunk (&xdr, &chunk)) {
2309     error (g, _("failed to parse file chunk"));
2310     free (buf);
2311     return -1;
2312   }
2313   xdr_destroy (&xdr);
2314   /* After decoding, the original buffer is no longer used. */
2315   free (buf);
2316
2317   if (chunk.cancel) {
2318     error (g, _("file receive cancelled by daemon"));
2319     free (chunk.data.data_val);
2320     return -1;
2321   }
2322
2323   if (chunk.data.data_len == 0) { /* end of transfer */
2324     free (chunk.data.data_val);
2325     return 0;
2326   }
2327
2328   if (buf_r) *buf_r = chunk.data.data_val;
2329   else free (chunk.data.data_val); /* else caller frees */
2330
2331   return chunk.data.data_len;
2332 }