Make GUESTFWD_PORT into a string.
[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_ADDR "10.0.2.4"
89 #define GUESTFWD_PORT "6666"
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:" GUESTFWD_ADDR ":" GUESTFWD_PORT
1030                 "-chardev:guestfsvmc");
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," GUESTFWD_PORT ":unix:%s,server,nowait", 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
1212   /* Wait for qemu to start and to connect back to us via vmchannel and
1213    * send the GUESTFS_LAUNCH_FLAG message.
1214    */
1215   uint32_t size;
1216   void *buf = NULL;
1217   r = recv_from_daemon (g, &size, &buf);
1218   free (buf);
1219
1220   if (r == -1) return -1;
1221
1222   if (size != GUESTFS_LAUNCH_FLAG) {
1223     error (g, _("guestfs_launch failed, see earlier error messages"));
1224     goto cleanup2;
1225   }
1226
1227   /* This is possible in some really strange situations, such as
1228    * guestfsd starts up OK but then qemu immediately exits.  Check for
1229    * it because the caller is probably expecting to be able to send
1230    * commands after this function returns.
1231    */
1232   if (g->state != READY) {
1233     error (g, _("qemu launched and contacted daemon, but state != READY"));
1234     goto cleanup2;
1235   }
1236
1237   return 0;
1238
1239  cleanup2:
1240   close (g->sock);
1241
1242  cleanup1:
1243   close (wfd[1]);
1244   close (rfd[0]);
1245   kill (g->pid, 9);
1246   if (g->recoverypid > 0) kill (g->recoverypid, 9);
1247   waitpid (g->pid, NULL, 0);
1248   if (g->recoverypid > 0) waitpid (g->recoverypid, NULL, 0);
1249   g->fd[0] = -1;
1250   g->fd[1] = -1;
1251   g->sock = -1;
1252   g->pid = 0;
1253   g->recoverypid = 0;
1254   g->start_t = 0;
1255
1256  cleanup0:
1257   free (kernel);
1258   free (initrd);
1259   return -1;
1260 }
1261
1262 /* This function is used to print the qemu command line before it gets
1263  * executed, when in verbose mode.
1264  */
1265 static void
1266 print_cmdline (guestfs_h *g)
1267 {
1268   int i = 0;
1269   int needs_quote;
1270
1271   while (g->cmdline[i]) {
1272     if (g->cmdline[i][0] == '-') /* -option starts a new line */
1273       fprintf (stderr, " \\\n   ");
1274
1275     if (i > 0) fputc (' ', stderr);
1276
1277     /* Does it need shell quoting?  This only deals with simple cases. */
1278     needs_quote = strcspn (g->cmdline[i], " ") != strlen (g->cmdline[i]);
1279
1280     if (needs_quote) fputc ('\'', stderr);
1281     fprintf (stderr, "%s", g->cmdline[i]);
1282     if (needs_quote) fputc ('\'', stderr);
1283     i++;
1284   }
1285
1286   fputc ('\n', stderr);
1287 }
1288
1289 /* This function does the hard work of building the supermin appliance
1290  * on the fly.  'path' is the directory containing the control files.
1291  * 'kernel' and 'initrd' are where we will return the names of the
1292  * kernel and initrd (only initrd is built).  The work is done by
1293  * an external script.  We just tell it where to put the result.
1294  */
1295 static int
1296 build_supermin_appliance (guestfs_h *g, const char *path,
1297                           char **kernel, char **initrd)
1298 {
1299   char cmd[4096];
1300   int r, len;
1301
1302   len = strlen (g->tmpdir);
1303   *kernel = safe_malloc (g, len + 8);
1304   snprintf (*kernel, len+8, "%s/kernel", g->tmpdir);
1305   *initrd = safe_malloc (g, len + 8);
1306   snprintf (*initrd, len+8, "%s/initrd", g->tmpdir);
1307
1308   snprintf (cmd, sizeof cmd,
1309             "PATH='%s':$PATH "
1310             "libguestfs-supermin-helper '%s' %s %s",
1311             path,
1312             path, *kernel, *initrd);
1313
1314   r = system (cmd);
1315   if (r == -1 || WEXITSTATUS(r) != 0) {
1316     error (g, _("external command failed: %s"), cmd);
1317     free (*kernel);
1318     free (*initrd);
1319     *kernel = *initrd = NULL;
1320     return -1;
1321   }
1322
1323   return 0;
1324 }
1325
1326 static int read_all (guestfs_h *g, FILE *fp, char **ret);
1327
1328 /* Test qemu binary (or wrapper) runs, and do 'qemu -help' and
1329  * 'qemu -version' so we know what options this qemu supports and
1330  * the version.
1331  */
1332 static int
1333 test_qemu (guestfs_h *g)
1334 {
1335   char cmd[1024];
1336   FILE *fp;
1337
1338   free (g->qemu_help);
1339   free (g->qemu_version);
1340   g->qemu_help = NULL;
1341   g->qemu_version = NULL;
1342
1343   snprintf (cmd, sizeof cmd, "'%s' -help", g->qemu);
1344
1345   fp = popen (cmd, "r");
1346   /* qemu -help should always work (qemu -version OTOH wasn't
1347    * supported by qemu 0.9).  If this command doesn't work then it
1348    * probably indicates that the qemu binary is missing.
1349    */
1350   if (!fp) {
1351     /* XXX This error is never printed, even if the qemu binary
1352      * doesn't exist.  Why?
1353      */
1354   error:
1355     perrorf (g, _("%s: command failed: If qemu is located on a non-standard path, try setting the LIBGUESTFS_QEMU environment variable."), cmd);
1356     return -1;
1357   }
1358
1359   if (read_all (g, fp, &g->qemu_help) == -1)
1360     goto error;
1361
1362   if (pclose (fp) == -1)
1363     goto error;
1364
1365   snprintf (cmd, sizeof cmd, "'%s' -version 2>/dev/null", g->qemu);
1366
1367   fp = popen (cmd, "r");
1368   if (fp) {
1369     /* Intentionally ignore errors. */
1370     read_all (g, fp, &g->qemu_version);
1371     pclose (fp);
1372   }
1373
1374   return 0;
1375 }
1376
1377 static int
1378 read_all (guestfs_h *g, FILE *fp, char **ret)
1379 {
1380   int r, n = 0;
1381   char *p;
1382
1383  again:
1384   if (feof (fp)) {
1385     *ret = safe_realloc (g, *ret, n + 1);
1386     (*ret)[n] = '\0';
1387     return n;
1388   }
1389
1390   *ret = safe_realloc (g, *ret, n + BUFSIZ);
1391   p = &(*ret)[n];
1392   r = fread (p, 1, BUFSIZ, fp);
1393   if (ferror (fp)) {
1394     perrorf (g, "read");
1395     return -1;
1396   }
1397   n += r;
1398   goto again;
1399 }
1400
1401 /* Test if option is supported by qemu command line (just by grepping
1402  * the help text).
1403  */
1404 static int
1405 qemu_supports (guestfs_h *g, const char *option)
1406 {
1407   return g->qemu_help && strstr (g->qemu_help, option) != NULL;
1408 }
1409
1410 /* You had to call this function after launch in versions <= 1.0.70,
1411  * but it is now a no-op.
1412  */
1413 int
1414 guestfs__wait_ready (guestfs_h *g)
1415 {
1416   if (g->state != READY)  {
1417     error (g, _("qemu has not been launched yet"));
1418     return -1;
1419   }
1420
1421   return 0;
1422 }
1423
1424 int
1425 guestfs__kill_subprocess (guestfs_h *g)
1426 {
1427   if (g->state == CONFIG) {
1428     error (g, _("no subprocess to kill"));
1429     return -1;
1430   }
1431
1432   if (g->verbose)
1433     fprintf (stderr, "sending SIGTERM to process %d\n", g->pid);
1434
1435   kill (g->pid, SIGTERM);
1436   if (g->recoverypid > 0) kill (g->recoverypid, 9);
1437
1438   return 0;
1439 }
1440
1441 /* Access current state. */
1442 int
1443 guestfs__is_config (guestfs_h *g)
1444 {
1445   return g->state == CONFIG;
1446 }
1447
1448 int
1449 guestfs__is_launching (guestfs_h *g)
1450 {
1451   return g->state == LAUNCHING;
1452 }
1453
1454 int
1455 guestfs__is_ready (guestfs_h *g)
1456 {
1457   return g->state == READY;
1458 }
1459
1460 int
1461 guestfs__is_busy (guestfs_h *g)
1462 {
1463   return g->state == BUSY;
1464 }
1465
1466 int
1467 guestfs__get_state (guestfs_h *g)
1468 {
1469   return g->state;
1470 }
1471
1472 void
1473 guestfs_set_log_message_callback (guestfs_h *g,
1474                                   guestfs_log_message_cb cb, void *opaque)
1475 {
1476   g->log_message_cb = cb;
1477   g->log_message_cb_data = opaque;
1478 }
1479
1480 void
1481 guestfs_set_subprocess_quit_callback (guestfs_h *g,
1482                                       guestfs_subprocess_quit_cb cb, void *opaque)
1483 {
1484   g->subprocess_quit_cb = cb;
1485   g->subprocess_quit_cb_data = opaque;
1486 }
1487
1488 void
1489 guestfs_set_launch_done_callback (guestfs_h *g,
1490                                   guestfs_launch_done_cb cb, void *opaque)
1491 {
1492   g->launch_done_cb = cb;
1493   g->launch_done_cb_data = opaque;
1494 }
1495
1496 /*----------------------------------------------------------------------*/
1497
1498 /* This is the code used to send and receive RPC messages and (for
1499  * certain types of message) to perform file transfers.  This code is
1500  * driven from the generated actions (src/guestfs-actions.c).  There
1501  * are five different cases to consider:
1502  *
1503  * (1) A non-daemon function.  There is no RPC involved at all, it's
1504  * all handled inside the library.
1505  *
1506  * (2) A simple RPC (eg. "mount").  We write the request, then read
1507  * the reply.  The sequence of calls is:
1508  *
1509  *   guestfs___set_busy
1510  *   guestfs___send
1511  *   guestfs___recv
1512  *   guestfs___end_busy
1513  *
1514  * (3) An RPC with FileOut parameters (eg. "upload").  We write the
1515  * request, then write the file(s), then read the reply.  The sequence
1516  * of calls is:
1517  *
1518  *   guestfs___set_busy
1519  *   guestfs___send
1520  *   guestfs___send_file  (possibly multiple times)
1521  *   guestfs___recv
1522  *   guestfs___end_busy
1523  *
1524  * (4) An RPC with FileIn parameters (eg. "download").  We write the
1525  * request, then read the reply, then read the file(s).  The sequence
1526  * of calls is:
1527  *
1528  *   guestfs___set_busy
1529  *   guestfs___send
1530  *   guestfs___recv
1531  *   guestfs___recv_file  (possibly multiple times)
1532  *   guestfs___end_busy
1533  *
1534  * (5) Both FileOut and FileIn parameters.  There are no calls like
1535  * this in the current API, but they would be implemented as a
1536  * combination of cases (3) and (4).
1537  *
1538  * During all writes and reads, we also select(2) on qemu stdout
1539  * looking for messages (guestfsd stderr and guest kernel dmesg), and
1540  * anything received is passed up through the log_message_cb.  This is
1541  * also the reason why all the sockets are non-blocking.  We also have
1542  * to check for EOF (qemu died).  All of this is handled by the
1543  * functions send_to_daemon and recv_from_daemon.
1544  */
1545
1546 int
1547 guestfs___set_busy (guestfs_h *g)
1548 {
1549   if (g->state != READY) {
1550     error (g, _("guestfs_set_busy: called when in state %d != READY"),
1551            g->state);
1552     return -1;
1553   }
1554   g->state = BUSY;
1555   return 0;
1556 }
1557
1558 int
1559 guestfs___end_busy (guestfs_h *g)
1560 {
1561   switch (g->state)
1562     {
1563     case BUSY:
1564       g->state = READY;
1565       break;
1566     case CONFIG:
1567     case READY:
1568       break;
1569
1570     case LAUNCHING:
1571     case NO_HANDLE:
1572     default:
1573       error (g, _("guestfs_end_busy: called when in state %d"), g->state);
1574       return -1;
1575     }
1576   return 0;
1577 }
1578
1579 /* This is called if we detect EOF, ie. qemu died. */
1580 static void
1581 child_cleanup (guestfs_h *g)
1582 {
1583   if (g->verbose)
1584     fprintf (stderr, "child_cleanup: %p: child process died\n", g);
1585
1586   /*kill (g->pid, SIGTERM);*/
1587   if (g->recoverypid > 0) kill (g->recoverypid, 9);
1588   waitpid (g->pid, NULL, 0);
1589   if (g->recoverypid > 0) waitpid (g->recoverypid, NULL, 0);
1590   close (g->fd[0]);
1591   close (g->fd[1]);
1592   close (g->sock);
1593   g->fd[0] = -1;
1594   g->fd[1] = -1;
1595   g->sock = -1;
1596   g->pid = 0;
1597   g->recoverypid = 0;
1598   g->start_t = 0;
1599   g->state = CONFIG;
1600   if (g->subprocess_quit_cb)
1601     g->subprocess_quit_cb (g, g->subprocess_quit_cb_data);
1602 }
1603
1604 static int
1605 read_log_message_or_eof (guestfs_h *g, int fd)
1606 {
1607   char buf[BUFSIZ];
1608   int n;
1609
1610 #if 0
1611   if (g->verbose)
1612     fprintf (stderr,
1613              "read_log_message_or_eof: %p g->state = %d, fd = %d\n",
1614              g, g->state, fd);
1615 #endif
1616
1617   /* QEMU's console emulates a 16550A serial port.  The real 16550A
1618    * device has a small FIFO buffer (16 bytes) which means here we see
1619    * lots of small reads of 1-16 bytes in length, usually single
1620    * bytes.
1621    */
1622   n = read (fd, buf, sizeof buf);
1623   if (n == 0) {
1624     /* Hopefully this indicates the qemu child process has died. */
1625     child_cleanup (g);
1626     return -1;
1627   }
1628
1629   if (n == -1) {
1630     if (errno == EINTR || errno == EAGAIN)
1631       return 0;
1632
1633     perrorf (g, "read");
1634     return -1;
1635   }
1636
1637   /* In verbose mode, copy all log messages to stderr. */
1638   if (g->verbose)
1639     ignore_value (write (STDERR_FILENO, buf, n));
1640
1641   /* It's an actual log message, send it upwards if anyone is listening. */
1642   if (g->log_message_cb)
1643     g->log_message_cb (g, g->log_message_cb_data, buf, n);
1644
1645   return 0;
1646 }
1647
1648 static int
1649 check_for_daemon_cancellation_or_eof (guestfs_h *g, int fd)
1650 {
1651   char buf[4];
1652   int n;
1653   uint32_t flag;
1654   XDR xdr;
1655
1656   if (g->verbose)
1657     fprintf (stderr,
1658              "check_for_daemon_cancellation_or_eof: %p g->state = %d, fd = %d\n",
1659              g, g->state, fd);
1660
1661   n = read (fd, buf, 4);
1662   if (n == 0) {
1663     /* Hopefully this indicates the qemu child process has died. */
1664     child_cleanup (g);
1665     return -1;
1666   }
1667
1668   if (n == -1) {
1669     if (errno == EINTR || errno == EAGAIN)
1670       return 0;
1671
1672     perrorf (g, "read");
1673     return -1;
1674   }
1675
1676   xdrmem_create (&xdr, buf, 4, XDR_DECODE);
1677   xdr_uint32_t (&xdr, &flag);
1678   xdr_destroy (&xdr);
1679
1680   if (flag != GUESTFS_CANCEL_FLAG) {
1681     error (g, _("check_for_daemon_cancellation_or_eof: read 0x%x from daemon, expected 0x%x\n"),
1682            flag, GUESTFS_CANCEL_FLAG);
1683     return -1;
1684   }
1685
1686   return -2;
1687 }
1688
1689 /* This writes the whole N bytes of BUF to the daemon socket.
1690  *
1691  * If the whole write is successful, it returns 0.
1692  * If there was an error, it returns -1.
1693  * If the daemon sent a cancellation message, it returns -2.
1694  *
1695  * It also checks qemu stdout for log messages and passes those up
1696  * through log_message_cb.
1697  *
1698  * It also checks for EOF (qemu died) and passes that up through the
1699  * child_cleanup function above.
1700  */
1701 static int
1702 send_to_daemon (guestfs_h *g, const void *v_buf, size_t n)
1703 {
1704   const char *buf = v_buf;
1705   fd_set rset, rset2;
1706   fd_set wset, wset2;
1707
1708   if (g->verbose)
1709     fprintf (stderr,
1710              "send_to_daemon: %p g->state = %d, n = %zu\n", g, g->state, n);
1711
1712   FD_ZERO (&rset);
1713   FD_ZERO (&wset);
1714
1715   FD_SET (g->fd[1], &rset);     /* Read qemu stdout for log messages & EOF. */
1716   FD_SET (g->sock, &rset);      /* Read socket for cancellation & EOF. */
1717   FD_SET (g->sock, &wset);      /* Write to socket to send the data. */
1718
1719   int max_fd = g->sock > g->fd[1] ? g->sock : g->fd[1];
1720
1721   while (n > 0) {
1722     rset2 = rset;
1723     wset2 = wset;
1724     int r = select (max_fd+1, &rset2, &wset2, NULL, NULL);
1725     if (r == -1) {
1726       if (errno == EINTR || errno == EAGAIN)
1727         continue;
1728       perrorf (g, "select");
1729       return -1;
1730     }
1731
1732     if (FD_ISSET (g->fd[1], &rset2)) {
1733       if (read_log_message_or_eof (g, g->fd[1]) == -1)
1734         return -1;
1735     }
1736     if (FD_ISSET (g->sock, &rset2)) {
1737       r = check_for_daemon_cancellation_or_eof (g, g->sock);
1738       if (r < 0)
1739         return r;
1740     }
1741     if (FD_ISSET (g->sock, &wset2)) {
1742       r = write (g->sock, buf, n);
1743       if (r == -1) {
1744         if (errno == EINTR || errno == EAGAIN)
1745           continue;
1746         perrorf (g, "write");
1747         if (errno == EPIPE) /* Disconnected from guest (RHBZ#508713). */
1748           child_cleanup (g);
1749         return -1;
1750       }
1751       buf += r;
1752       n -= r;
1753     }
1754   }
1755
1756   return 0;
1757 }
1758
1759 /* This reads a single message, file chunk, launch flag or
1760  * cancellation flag from the daemon.  If something was read, it
1761  * returns 0, otherwise -1.
1762  *
1763  * Both size_rtn and buf_rtn must be passed by the caller as non-NULL.
1764  *
1765  * *size_rtn returns the size of the returned message or it may be
1766  * GUESTFS_LAUNCH_FLAG or GUESTFS_CANCEL_FLAG.
1767  *
1768  * *buf_rtn is returned containing the message (if any) or will be set
1769  * to NULL.  *buf_rtn must be freed by the caller.
1770  *
1771  * It also checks qemu stdout for log messages and passes those up
1772  * through log_message_cb.
1773  *
1774  * It also checks for EOF (qemu died) and passes that up through the
1775  * child_cleanup function above.
1776  */
1777 static int
1778 recv_from_daemon (guestfs_h *g, uint32_t *size_rtn, void **buf_rtn)
1779 {
1780   fd_set rset, rset2;
1781
1782   if (g->verbose)
1783     fprintf (stderr,
1784              "recv_from_daemon: %p g->state = %d, size_rtn = %p, buf_rtn = %p\n",
1785              g, g->state, size_rtn, buf_rtn);
1786
1787   FD_ZERO (&rset);
1788
1789   FD_SET (g->fd[1], &rset);     /* Read qemu stdout for log messages & EOF. */
1790   FD_SET (g->sock, &rset);      /* Read socket for data & EOF. */
1791
1792   int max_fd = g->sock > g->fd[1] ? g->sock : g->fd[1];
1793
1794   *size_rtn = 0;
1795   *buf_rtn = NULL;
1796
1797   char lenbuf[4];
1798   /* nr is the size of the message, but we prime it as -4 because we
1799    * have to read the message length word first.
1800    */
1801   ssize_t nr = -4;
1802
1803   while (nr < (ssize_t) *size_rtn) {
1804     rset2 = rset;
1805     int r = select (max_fd+1, &rset2, NULL, NULL, NULL);
1806     if (r == -1) {
1807       if (errno == EINTR || errno == EAGAIN)
1808         continue;
1809       perrorf (g, "select");
1810       free (*buf_rtn);
1811       *buf_rtn = NULL;
1812       return -1;
1813     }
1814
1815     if (FD_ISSET (g->fd[1], &rset2)) {
1816       if (read_log_message_or_eof (g, g->fd[1]) == -1) {
1817         free (*buf_rtn);
1818         *buf_rtn = NULL;
1819         return -1;
1820       }
1821     }
1822     if (FD_ISSET (g->sock, &rset2)) {
1823       if (nr < 0) {    /* Have we read the message length word yet? */
1824         r = read (g->sock, lenbuf+nr+4, -nr);
1825         if (r == -1) {
1826           if (errno == EINTR || errno == EAGAIN)
1827             continue;
1828           int err = errno;
1829           perrorf (g, "read");
1830           /* Under some circumstances we see "Connection reset by peer"
1831            * here when the child dies suddenly.  Catch this and call
1832            * the cleanup function, same as for EOF.
1833            */
1834           if (err == ECONNRESET)
1835             child_cleanup (g);
1836           return -1;
1837         }
1838         if (r == 0) {
1839           error (g, _("unexpected end of file when reading from daemon"));
1840           child_cleanup (g);
1841           return -1;
1842         }
1843         nr += r;
1844
1845         if (nr < 0)         /* Still not got the whole length word. */
1846           continue;
1847
1848         XDR xdr;
1849         xdrmem_create (&xdr, lenbuf, 4, XDR_DECODE);
1850         xdr_uint32_t (&xdr, size_rtn);
1851         xdr_destroy (&xdr);
1852
1853         if (*size_rtn == GUESTFS_LAUNCH_FLAG) {
1854           if (g->state != LAUNCHING)
1855             error (g, _("received magic signature from guestfsd, but in state %d"),
1856                    g->state);
1857           else {
1858             g->state = READY;
1859             if (g->launch_done_cb)
1860               g->launch_done_cb (g, g->launch_done_cb_data);
1861           }
1862           return 0;
1863         }
1864         else if (*size_rtn == GUESTFS_CANCEL_FLAG)
1865           return 0;
1866         /* If this happens, it's pretty bad and we've probably lost
1867          * synchronization.
1868          */
1869         else if (*size_rtn > GUESTFS_MESSAGE_MAX) {
1870           error (g, _("message length (%u) > maximum possible size (%d)"),
1871                  (unsigned) *size_rtn, GUESTFS_MESSAGE_MAX);
1872           return -1;
1873         }
1874
1875         /* Allocate the complete buffer, size now known. */
1876         *buf_rtn = safe_malloc (g, *size_rtn);
1877         /*FALLTHROUGH*/
1878       }
1879
1880       size_t sizetoread = *size_rtn - nr;
1881       if (sizetoread > BUFSIZ) sizetoread = BUFSIZ;
1882
1883       r = read (g->sock, (char *) (*buf_rtn) + nr, sizetoread);
1884       if (r == -1) {
1885         if (errno == EINTR || errno == EAGAIN)
1886           continue;
1887         perrorf (g, "read");
1888         free (*buf_rtn);
1889         *buf_rtn = NULL;
1890         return -1;
1891       }
1892       if (r == 0) {
1893         error (g, _("unexpected end of file when reading from daemon"));
1894         child_cleanup (g);
1895         free (*buf_rtn);
1896         *buf_rtn = NULL;
1897         return -1;
1898       }
1899       nr += r;
1900     }
1901   }
1902
1903   /* Got the full message, caller can start processing it. */
1904 #ifdef ENABLE_PACKET_DUMP
1905   if (g->verbose) {
1906     ssize_t i, j;
1907
1908     for (i = 0; i < nr; i += 16) {
1909       printf ("%04zx: ", i);
1910       for (j = i; j < MIN (i+16, nr); ++j)
1911         printf ("%02x ", (*(unsigned char **)buf_rtn)[j]);
1912       for (; j < i+16; ++j)
1913         printf ("   ");
1914       printf ("|");
1915       for (j = i; j < MIN (i+16, nr); ++j)
1916         if (isprint ((*(char **)buf_rtn)[j]))
1917           printf ("%c", (*(char **)buf_rtn)[j]);
1918         else
1919           printf (".");
1920       for (; j < i+16; ++j)
1921         printf (" ");
1922       printf ("|\n");
1923     }
1924   }
1925 #endif
1926
1927   return 0;
1928 }
1929
1930 int
1931 guestfs___send (guestfs_h *g, int proc_nr, xdrproc_t xdrp, char *args)
1932 {
1933   struct guestfs_message_header hdr;
1934   XDR xdr;
1935   u_int32_t len;
1936   int serial = g->msg_next_serial++;
1937   int r;
1938   char *msg_out;
1939   size_t msg_out_size;
1940
1941   if (g->state != BUSY) {
1942     error (g, _("guestfs___send: state %d != BUSY"), g->state);
1943     return -1;
1944   }
1945
1946   /* We have to allocate this message buffer on the heap because
1947    * it is quite large (although will be mostly unused).  We
1948    * can't allocate it on the stack because in some environments
1949    * we have quite limited stack space available, notably when
1950    * running in the JVM.
1951    */
1952   msg_out = safe_malloc (g, GUESTFS_MESSAGE_MAX + 4);
1953   xdrmem_create (&xdr, msg_out + 4, GUESTFS_MESSAGE_MAX, XDR_ENCODE);
1954
1955   /* Serialize the header. */
1956   hdr.prog = GUESTFS_PROGRAM;
1957   hdr.vers = GUESTFS_PROTOCOL_VERSION;
1958   hdr.proc = proc_nr;
1959   hdr.direction = GUESTFS_DIRECTION_CALL;
1960   hdr.serial = serial;
1961   hdr.status = GUESTFS_STATUS_OK;
1962
1963   if (!xdr_guestfs_message_header (&xdr, &hdr)) {
1964     error (g, _("xdr_guestfs_message_header failed"));
1965     goto cleanup1;
1966   }
1967
1968   /* Serialize the args.  If any, because some message types
1969    * have no parameters.
1970    */
1971   if (xdrp) {
1972     if (!(*xdrp) (&xdr, args)) {
1973       error (g, _("dispatch failed to marshal args"));
1974       goto cleanup1;
1975     }
1976   }
1977
1978   /* Get the actual length of the message, resize the buffer to match
1979    * the actual length, and write the length word at the beginning.
1980    */
1981   len = xdr_getpos (&xdr);
1982   xdr_destroy (&xdr);
1983
1984   msg_out = safe_realloc (g, msg_out, len + 4);
1985   msg_out_size = len + 4;
1986
1987   xdrmem_create (&xdr, msg_out, 4, XDR_ENCODE);
1988   xdr_uint32_t (&xdr, &len);
1989
1990  again:
1991   r = send_to_daemon (g, msg_out, msg_out_size);
1992   if (r == -2)                  /* Ignore stray daemon cancellations. */
1993     goto again;
1994   if (r == -1)
1995     goto cleanup1;
1996   free (msg_out);
1997
1998   return serial;
1999
2000  cleanup1:
2001   free (msg_out);
2002   return -1;
2003 }
2004
2005 static int cancel = 0; /* XXX Implement file cancellation. */
2006 static int send_file_chunk (guestfs_h *g, int cancel, const char *buf, size_t len);
2007 static int send_file_data (guestfs_h *g, const char *buf, size_t len);
2008 static int send_file_cancellation (guestfs_h *g);
2009 static int send_file_complete (guestfs_h *g);
2010
2011 /* Send a file.
2012  * Returns:
2013  *   0 OK
2014  *   -1 error
2015  *   -2 daemon cancelled (we must read the error message)
2016  */
2017 int
2018 guestfs___send_file (guestfs_h *g, const char *filename)
2019 {
2020   char buf[GUESTFS_MAX_CHUNK_SIZE];
2021   int fd, r, err;
2022
2023   fd = open (filename, O_RDONLY);
2024   if (fd == -1) {
2025     perrorf (g, "open: %s", filename);
2026     send_file_cancellation (g);
2027     /* Daemon sees cancellation and won't reply, so caller can
2028      * just return here.
2029      */
2030     return -1;
2031   }
2032
2033   /* Send file in chunked encoding. */
2034   while (!cancel) {
2035     r = read (fd, buf, sizeof buf);
2036     if (r == -1 && (errno == EINTR || errno == EAGAIN))
2037       continue;
2038     if (r <= 0) break;
2039     err = send_file_data (g, buf, r);
2040     if (err < 0) {
2041       if (err == -2)            /* daemon sent cancellation */
2042         send_file_cancellation (g);
2043       return err;
2044     }
2045   }
2046
2047   if (cancel) {                 /* cancel from either end */
2048     send_file_cancellation (g);
2049     return -1;
2050   }
2051
2052   if (r == -1) {
2053     perrorf (g, "read: %s", filename);
2054     send_file_cancellation (g);
2055     return -1;
2056   }
2057
2058   /* End of file, but before we send that, we need to close
2059    * the file and check for errors.
2060    */
2061   if (close (fd) == -1) {
2062     perrorf (g, "close: %s", filename);
2063     send_file_cancellation (g);
2064     return -1;
2065   }
2066
2067   return send_file_complete (g);
2068 }
2069
2070 /* Send a chunk of file data. */
2071 static int
2072 send_file_data (guestfs_h *g, const char *buf, size_t len)
2073 {
2074   return send_file_chunk (g, 0, buf, len);
2075 }
2076
2077 /* Send a cancellation message. */
2078 static int
2079 send_file_cancellation (guestfs_h *g)
2080 {
2081   return send_file_chunk (g, 1, NULL, 0);
2082 }
2083
2084 /* Send a file complete chunk. */
2085 static int
2086 send_file_complete (guestfs_h *g)
2087 {
2088   char buf[1];
2089   return send_file_chunk (g, 0, buf, 0);
2090 }
2091
2092 static int
2093 send_file_chunk (guestfs_h *g, int cancel, const char *buf, size_t buflen)
2094 {
2095   u_int32_t len;
2096   int r;
2097   guestfs_chunk chunk;
2098   XDR xdr;
2099   char *msg_out;
2100   size_t msg_out_size;
2101
2102   if (g->state != BUSY) {
2103     error (g, _("send_file_chunk: state %d != READY"), g->state);
2104     return -1;
2105   }
2106
2107   /* Allocate the chunk buffer.  Don't use the stack to avoid
2108    * excessive stack usage and unnecessary copies.
2109    */
2110   msg_out = safe_malloc (g, GUESTFS_MAX_CHUNK_SIZE + 4 + 48);
2111   xdrmem_create (&xdr, msg_out + 4, GUESTFS_MAX_CHUNK_SIZE + 48, XDR_ENCODE);
2112
2113   /* Serialize the chunk. */
2114   chunk.cancel = cancel;
2115   chunk.data.data_len = buflen;
2116   chunk.data.data_val = (char *) buf;
2117
2118   if (!xdr_guestfs_chunk (&xdr, &chunk)) {
2119     error (g, _("xdr_guestfs_chunk failed (buf = %p, buflen = %zu)"),
2120            buf, buflen);
2121     xdr_destroy (&xdr);
2122     goto cleanup1;
2123   }
2124
2125   len = xdr_getpos (&xdr);
2126   xdr_destroy (&xdr);
2127
2128   /* Reduce the size of the outgoing message buffer to the real length. */
2129   msg_out = safe_realloc (g, msg_out, len + 4);
2130   msg_out_size = len + 4;
2131
2132   xdrmem_create (&xdr, msg_out, 4, XDR_ENCODE);
2133   xdr_uint32_t (&xdr, &len);
2134
2135   r = send_to_daemon (g, msg_out, msg_out_size);
2136
2137   /* Did the daemon send a cancellation message? */
2138   if (r == -2) {
2139     if (g->verbose)
2140       fprintf (stderr, "got daemon cancellation\n");
2141     return -2;
2142   }
2143
2144   if (r == -1)
2145     goto cleanup1;
2146
2147   free (msg_out);
2148
2149   return 0;
2150
2151  cleanup1:
2152   free (msg_out);
2153   return -1;
2154 }
2155
2156 /* Receive a reply. */
2157 int
2158 guestfs___recv (guestfs_h *g, const char *fn,
2159                 guestfs_message_header *hdr,
2160                 guestfs_message_error *err,
2161                 xdrproc_t xdrp, char *ret)
2162 {
2163   XDR xdr;
2164   void *buf;
2165   uint32_t size;
2166   int r;
2167
2168  again:
2169   r = recv_from_daemon (g, &size, &buf);
2170   if (r == -1)
2171     return -1;
2172
2173   /* This can happen if a cancellation happens right at the end
2174    * of us sending a FileIn parameter to the daemon.  Discard.  The
2175    * daemon should send us an error message next.
2176    */
2177   if (size == GUESTFS_CANCEL_FLAG)
2178     goto again;
2179
2180   if (size == GUESTFS_LAUNCH_FLAG) {
2181     error (g, "%s: received unexpected launch flag from daemon when expecting reply", fn);
2182     return -1;
2183   }
2184
2185   xdrmem_create (&xdr, buf, size, XDR_DECODE);
2186
2187   if (!xdr_guestfs_message_header (&xdr, hdr)) {
2188     error (g, "%s: failed to parse reply header", fn);
2189     xdr_destroy (&xdr);
2190     free (buf);
2191     return -1;
2192   }
2193   if (hdr->status == GUESTFS_STATUS_ERROR) {
2194     if (!xdr_guestfs_message_error (&xdr, err)) {
2195       error (g, "%s: failed to parse reply error", fn);
2196       xdr_destroy (&xdr);
2197       free (buf);
2198       return -1;
2199     }
2200   } else {
2201     if (xdrp && ret && !xdrp (&xdr, ret)) {
2202       error (g, "%s: failed to parse reply", fn);
2203       xdr_destroy (&xdr);
2204       free (buf);
2205       return -1;
2206     }
2207   }
2208   xdr_destroy (&xdr);
2209   free (buf);
2210
2211   return 0;
2212 }
2213
2214 /* Receive a file. */
2215
2216 /* Returns -1 = error, 0 = EOF, > 0 = more data */
2217 static ssize_t receive_file_data (guestfs_h *g, void **buf);
2218
2219 int
2220 guestfs___recv_file (guestfs_h *g, const char *filename)
2221 {
2222   void *buf;
2223   int fd, r;
2224   size_t len;
2225
2226   fd = open (filename, O_WRONLY|O_CREAT|O_TRUNC|O_NOCTTY, 0666);
2227   if (fd == -1) {
2228     perrorf (g, "open: %s", filename);
2229     goto cancel;
2230   }
2231
2232   /* Receive the file in chunked encoding. */
2233   while ((r = receive_file_data (g, &buf)) > 0) {
2234     if (xwrite (fd, buf, r) == -1) {
2235       perrorf (g, "%s: write", filename);
2236       free (buf);
2237       goto cancel;
2238     }
2239     free (buf);
2240   }
2241
2242   if (r == -1) {
2243     error (g, _("%s: error in chunked encoding"), filename);
2244     return -1;
2245   }
2246
2247   if (close (fd) == -1) {
2248     perrorf (g, "close: %s", filename);
2249     return -1;
2250   }
2251
2252   return 0;
2253
2254  cancel: ;
2255   /* Send cancellation message to daemon, then wait until it
2256    * cancels (just throwing away data).
2257    */
2258   XDR xdr;
2259   char fbuf[4];
2260   uint32_t flag = GUESTFS_CANCEL_FLAG;
2261
2262   if (g->verbose)
2263     fprintf (stderr, "%s: waiting for daemon to acknowledge cancellation\n",
2264              __func__);
2265
2266   xdrmem_create (&xdr, fbuf, sizeof fbuf, XDR_ENCODE);
2267   xdr_uint32_t (&xdr, &flag);
2268   xdr_destroy (&xdr);
2269
2270   if (xwrite (g->sock, fbuf, sizeof fbuf) == -1) {
2271     perrorf (g, _("write to daemon socket"));
2272     return -1;
2273   }
2274
2275   while (receive_file_data (g, NULL) > 0)
2276     ;                           /* just discard it */
2277
2278   return -1;
2279 }
2280
2281 /* Receive a chunk of file data. */
2282 /* Returns -1 = error, 0 = EOF, > 0 = more data */
2283 static ssize_t
2284 receive_file_data (guestfs_h *g, void **buf_r)
2285 {
2286   int r;
2287   void *buf;
2288   uint32_t len;
2289   XDR xdr;
2290   guestfs_chunk chunk;
2291
2292   r = recv_from_daemon (g, &len, &buf);
2293   if (r == -1) {
2294     error (g, _("receive_file_data: parse error in reply callback"));
2295     return -1;
2296   }
2297
2298   if (len == GUESTFS_LAUNCH_FLAG || len == GUESTFS_CANCEL_FLAG) {
2299     error (g, _("receive_file_data: unexpected flag received when reading file chunks"));
2300     return -1;
2301   }
2302
2303   memset (&chunk, 0, sizeof chunk);
2304
2305   xdrmem_create (&xdr, buf, len, XDR_DECODE);
2306   if (!xdr_guestfs_chunk (&xdr, &chunk)) {
2307     error (g, _("failed to parse file chunk"));
2308     free (buf);
2309     return -1;
2310   }
2311   xdr_destroy (&xdr);
2312   /* After decoding, the original buffer is no longer used. */
2313   free (buf);
2314
2315   if (chunk.cancel) {
2316     error (g, _("file receive cancelled by daemon"));
2317     free (chunk.data.data_val);
2318     return -1;
2319   }
2320
2321   if (chunk.data.data_len == 0) { /* end of transfer */
2322     free (chunk.data.data_val);
2323     return 0;
2324   }
2325
2326   if (buf_r) *buf_r = chunk.data.data_val;
2327   else free (chunk.data.data_val); /* else caller frees */
2328
2329   return chunk.data.data_len;
2330 }