New APIs: set-network and get-network to enable network support.
[libguestfs.git] / src / launch.c
1 /* libguestfs
2  * Copyright (C) 2009-2010 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 <stdint.h>
28 #include <inttypes.h>
29 #include <unistd.h>
30 #include <string.h>
31 #include <fcntl.h>
32 #include <time.h>
33 #include <sys/stat.h>
34 #include <sys/select.h>
35 #include <dirent.h>
36 #include <signal.h>
37
38 #include <rpc/types.h>
39 #include <rpc/xdr.h>
40
41 #ifdef HAVE_ERRNO_H
42 #include <errno.h>
43 #endif
44
45 #ifdef HAVE_SYS_TYPES_H
46 #include <sys/types.h>
47 #endif
48
49 #ifdef HAVE_SYS_WAIT_H
50 #include <sys/wait.h>
51 #endif
52
53 #ifdef HAVE_SYS_SOCKET_H
54 #include <sys/socket.h>
55 #endif
56
57 #ifdef HAVE_SYS_UN_H
58 #include <sys/un.h>
59 #endif
60
61 #include <arpa/inet.h>
62 #include <netinet/in.h>
63
64 #include "c-ctype.h"
65 #include "glthread/lock.h"
66 #include "ignore-value.h"
67
68 #include "guestfs.h"
69 #include "guestfs-internal.h"
70 #include "guestfs-internal-actions.h"
71 #include "guestfs_protocol.h"
72
73 static int qemu_supports (guestfs_h *g, const char *option);
74
75 /* Add a string to the current command line. */
76 static void
77 incr_cmdline_size (guestfs_h *g)
78 {
79   if (g->cmdline == NULL) {
80     /* g->cmdline[0] is reserved for argv[0], set in guestfs_launch. */
81     g->cmdline_size = 1;
82     g->cmdline = safe_malloc (g, sizeof (char *));
83     g->cmdline[0] = NULL;
84   }
85
86   g->cmdline_size++;
87   g->cmdline = safe_realloc (g, g->cmdline, sizeof (char *) * g->cmdline_size);
88 }
89
90 static int
91 add_cmdline (guestfs_h *g, const char *str)
92 {
93   if (g->state != CONFIG) {
94     error (g,
95         _("command line cannot be altered after qemu subprocess launched"));
96     return -1;
97   }
98
99   incr_cmdline_size (g);
100   g->cmdline[g->cmdline_size-1] = safe_strdup (g, str);
101   return 0;
102 }
103
104 int
105 guestfs__config (guestfs_h *g,
106                  const char *qemu_param, const char *qemu_value)
107 {
108   if (qemu_param[0] != '-') {
109     error (g, _("guestfs_config: parameter must begin with '-' character"));
110     return -1;
111   }
112
113   /* A bit fascist, but the user will probably break the extra
114    * parameters that we add if they try to set any of these.
115    */
116   if (STREQ (qemu_param, "-kernel") ||
117       STREQ (qemu_param, "-initrd") ||
118       STREQ (qemu_param, "-nographic") ||
119       STREQ (qemu_param, "-serial") ||
120       STREQ (qemu_param, "-full-screen") ||
121       STREQ (qemu_param, "-std-vga") ||
122       STREQ (qemu_param, "-vnc")) {
123     error (g, _("guestfs_config: parameter '%s' isn't allowed"), qemu_param);
124     return -1;
125   }
126
127   if (add_cmdline (g, qemu_param) != 0) return -1;
128
129   if (qemu_value != NULL) {
130     if (add_cmdline (g, qemu_value) != 0) return -1;
131   }
132
133   return 0;
134 }
135
136 int
137 guestfs__add_drive_with_if (guestfs_h *g, const char *filename,
138                             const char *drive_if)
139 {
140   size_t len = strlen (filename) + 64;
141   char buf[len];
142
143   if (strchr (filename, ',') != NULL) {
144     error (g, _("filename cannot contain ',' (comma) character"));
145     return -1;
146   }
147
148   /* cache=off improves reliability in the event of a host crash.
149    *
150    * However this option causes qemu to try to open the file with
151    * O_DIRECT.  This fails on some filesystem types (notably tmpfs).
152    * So we check if we can open the file with or without O_DIRECT,
153    * and use cache=off (or not) accordingly.
154    *
155    * This test also checks for the presence of the file, which
156    * is a documented semantic of this interface.
157    */
158   int fd = open (filename, O_RDONLY|O_DIRECT);
159   if (fd >= 0) {
160     close (fd);
161     snprintf (buf, len, "file=%s,cache=off,if=%s", filename, drive_if);
162   } else {
163     fd = open (filename, O_RDONLY);
164     if (fd >= 0) {
165       close (fd);
166       snprintf (buf, len, "file=%s,if=%s", filename, drive_if);
167     } else {
168       perrorf (g, "%s", filename);
169       return -1;
170     }
171   }
172
173   return guestfs__config (g, "-drive", buf);
174 }
175
176 int
177 guestfs__add_drive_ro_with_if (guestfs_h *g, const char *filename,
178                                const char *drive_if)
179 {
180   if (strchr (filename, ',') != NULL) {
181     error (g, _("filename cannot contain ',' (comma) character"));
182     return -1;
183   }
184
185   if (access (filename, F_OK) == -1) {
186     perrorf (g, "%s", filename);
187     return -1;
188   }
189
190   size_t len = strlen (filename) + 64;
191   char buf[len];
192
193   snprintf (buf, len, "file=%s,snapshot=on,if=%s", filename, drive_if);
194
195   return guestfs__config (g, "-drive", buf);
196 }
197
198 int
199 guestfs__add_drive (guestfs_h *g, const char *filename)
200 {
201   return guestfs__add_drive_with_if (g, filename, DRIVE_IF);
202 }
203
204 int
205 guestfs__add_drive_ro (guestfs_h *g, const char *filename)
206 {
207   return guestfs__add_drive_ro_with_if (g, filename, DRIVE_IF);
208 }
209
210 int
211 guestfs__add_cdrom (guestfs_h *g, const char *filename)
212 {
213   if (strchr (filename, ',') != NULL) {
214     error (g, _("filename cannot contain ',' (comma) character"));
215     return -1;
216   }
217
218   if (access (filename, F_OK) == -1) {
219     perrorf (g, "%s", filename);
220     return -1;
221   }
222
223   return guestfs__config (g, "-cdrom", filename);
224 }
225
226 static int is_openable (guestfs_h *g, const char *path, int flags);
227 static void print_cmdline (guestfs_h *g);
228
229 int
230 guestfs__launch (guestfs_h *g)
231 {
232   int r;
233   int wfd[2], rfd[2];
234   int tries;
235   char unixsock[256];
236   struct sockaddr_un addr;
237
238   /* Configured? */
239   if (!g->cmdline) {
240     error (g, _("you must call guestfs_add_drive before guestfs_launch"));
241     return -1;
242   }
243
244   if (g->state != CONFIG) {
245     error (g, _("the libguestfs handle has already been launched"));
246     return -1;
247   }
248
249   /* Start the clock ... */
250   gettimeofday (&g->launch_t, NULL);
251
252   /* Make the temporary directory. */
253   if (!g->tmpdir) {
254     const char *tmpdir = guestfs___tmpdir ();
255     char dir_template[strlen (tmpdir) + 32];
256     sprintf (dir_template, "%s/libguestfsXXXXXX", tmpdir);
257
258     g->tmpdir = safe_strdup (g, dir_template);
259     if (mkdtemp (g->tmpdir) == NULL) {
260       perrorf (g, _("%s: cannot create temporary directory"), dir_template);
261       goto cleanup0;
262     }
263   }
264
265   /* Allow anyone to read the temporary directory.  The socket in this
266    * directory won't be readable but anyone can see it exists if they
267    * want. (RHBZ#610880).
268    */
269   if (chmod (g->tmpdir, 0755) == -1)
270     fprintf (stderr, "chmod: %s: %m (ignored)\n", g->tmpdir);
271
272   /* Locate and/or build the appliance. */
273   char *kernel = NULL, *initrd = NULL, *appliance = NULL;
274   if (guestfs___build_appliance (g, &kernel, &initrd, &appliance) == -1)
275     return -1;
276
277   if (g->verbose)
278     guestfs___print_timestamped_message (g, "begin testing qemu features");
279
280   /* Get qemu help text and version. */
281   if (qemu_supports (g, NULL) == -1)
282     goto cleanup0;
283
284   /* Using virtio-serial, we need to create a local Unix domain socket
285    * for qemu to connect to.
286    */
287   snprintf (unixsock, sizeof unixsock, "%s/sock", g->tmpdir);
288   unlink (unixsock);
289
290   g->sock = socket (AF_UNIX, SOCK_STREAM, 0);
291   if (g->sock == -1) {
292     perrorf (g, "socket");
293     goto cleanup0;
294   }
295
296   if (fcntl (g->sock, F_SETFL, O_NONBLOCK) == -1) {
297     perrorf (g, "fcntl");
298     goto cleanup0;
299   }
300
301   addr.sun_family = AF_UNIX;
302   strncpy (addr.sun_path, unixsock, UNIX_PATH_MAX);
303   addr.sun_path[UNIX_PATH_MAX-1] = '\0';
304
305   if (bind (g->sock, &addr, sizeof addr) == -1) {
306     perrorf (g, "bind");
307     goto cleanup0;
308   }
309
310   if (listen (g->sock, 1) == -1) {
311     perrorf (g, "listen");
312     goto cleanup0;
313   }
314
315   if (!g->direct) {
316     if (pipe (wfd) == -1 || pipe (rfd) == -1) {
317       perrorf (g, "pipe");
318       goto cleanup0;
319     }
320   }
321
322   if (g->verbose)
323     guestfs___print_timestamped_message (g, "finished testing qemu features");
324
325   r = fork ();
326   if (r == -1) {
327     perrorf (g, "fork");
328     if (!g->direct) {
329       close (wfd[0]);
330       close (wfd[1]);
331       close (rfd[0]);
332       close (rfd[1]);
333     }
334     goto cleanup0;
335   }
336
337   if (r == 0) {                 /* Child (qemu). */
338     char buf[256];
339
340     /* Set up the full command line.  Do this in the subprocess so we
341      * don't need to worry about cleaning up.
342      */
343     g->cmdline[0] = g->qemu;
344
345     /* qemu sometimes needs this option to enable hardware
346      * virtualization, but some versions of 'qemu-kvm' will use KVM
347      * regardless (even where this option appears in the help text).
348      * It is rumoured that there are versions of qemu where supplying
349      * this option when hardware virtualization is not available will
350      * cause qemu to fail, so we we have to check at least that
351      * /dev/kvm is openable.  That's not reliable, since /dev/kvm
352      * might be openable by qemu but not by us (think: SELinux) in
353      * which case the user would not get hardware virtualization,
354      * although at least shouldn't fail.  A giant clusterfuck with the
355      * qemu command line, again.
356      */
357     if (qemu_supports (g, "-enable-kvm") &&
358         is_openable (g, "/dev/kvm", O_RDWR))
359       add_cmdline (g, "-enable-kvm");
360
361     /* Newer versions of qemu (from around 2009/12) changed the
362      * behaviour of monitors so that an implicit '-monitor stdio' is
363      * assumed if we are in -nographic mode and there is no other
364      * -monitor option.  Only a single stdio device is allowed, so
365      * this broke the '-serial stdio' option.  There is a new flag
366      * called -nodefaults which gets rid of all this default crud, so
367      * let's use that to avoid this and any future surprises.
368      */
369     if (qemu_supports (g, "-nodefaults"))
370       add_cmdline (g, "-nodefaults");
371
372     add_cmdline (g, "-nographic");
373
374     snprintf (buf, sizeof buf, "%d", g->memsize);
375     add_cmdline (g, "-m");
376     add_cmdline (g, buf);
377
378     /* Force exit instead of reboot on panic */
379     add_cmdline (g, "-no-reboot");
380
381     /* These options recommended by KVM developers to improve reliability. */
382     if (qemu_supports (g, "-no-hpet"))
383       add_cmdline (g, "-no-hpet");
384
385     if (qemu_supports (g, "-rtc-td-hack"))
386       add_cmdline (g, "-rtc-td-hack");
387
388     /* Create the virtio serial bus. */
389     add_cmdline (g, "-device");
390     add_cmdline (g, "virtio-serial");
391
392 #if 0
393     /* Use virtio-console (a variant form of virtio-serial) for the
394      * guest's serial console.
395      */
396     add_cmdline (g, "-chardev");
397     add_cmdline (g, "stdio,id=console");
398     add_cmdline (g, "-device");
399     add_cmdline (g, "virtconsole,chardev=console,name=org.libguestfs.console.0");
400 #else
401     /* When the above works ...  until then: */
402     add_cmdline (g, "-serial");
403     add_cmdline (g, "stdio");
404 #endif
405
406     /* Set up virtio-serial for the communications channel. */
407     add_cmdline (g, "-chardev");
408     snprintf (buf, sizeof buf, "socket,path=%s,id=channel0", unixsock);
409     add_cmdline (g, buf);
410     add_cmdline (g, "-device");
411     add_cmdline (g, "virtserialport,chardev=channel0,name=org.libguestfs.channel.0");
412
413     /* Enable user networking. */
414     if (g->enable_network) {
415       add_cmdline (g, "-netdev");
416       add_cmdline (g, "user,id=usernet");
417       add_cmdline (g, "-device");
418       add_cmdline (g, NET_IF ",netdev=usernet");
419     }
420
421 #define LINUX_CMDLINE                                                   \
422     "panic=1 "         /* force kernel to panic if daemon exits */      \
423     "console=ttyS0 "   /* serial console */                             \
424     "udevtimeout=300 " /* good for very slow systems (RHBZ#480319) */   \
425     "noapic "          /* workaround for RHBZ#502058 - ok if not SMP */ \
426     "acpi=off "        /* we don't need ACPI, turn it off */            \
427     "printk.time=1 "   /* display timestamp before kernel messages */   \
428     "cgroup_disable=memory " /* saves us about 5 MB of RAM */
429
430     /* Linux kernel command line. */
431     snprintf (buf, sizeof buf,
432               LINUX_CMDLINE
433               "%s "             /* (selinux) */
434               "%s "             /* (verbose) */
435               "TERM=%s "        /* (TERM environment variable) */
436               "%s",             /* (append) */
437               g->selinux ? "selinux=1 enforcing=0" : "selinux=0",
438               g->verbose ? "guestfs_verbose=1" : "",
439               getenv ("TERM") ? : "linux",
440               g->append ? g->append : "");
441
442     add_cmdline (g, "-kernel");
443     add_cmdline (g, kernel);
444     add_cmdline (g, "-initrd");
445     add_cmdline (g, initrd);
446     add_cmdline (g, "-append");
447     add_cmdline (g, buf);
448
449     /* Add the ext2 appliance drive (last of all). */
450     if (appliance) {
451       const char *cachemode = "";
452       if (qemu_supports (g, "cache=")) {
453         if (qemu_supports (g, "unsafe"))
454           cachemode = ",cache=unsafe";
455         else if (qemu_supports (g, "writeback"))
456           cachemode = ",cache=writeback";
457       }
458
459       char buf2[PATH_MAX + 64];
460       add_cmdline (g, "-drive");
461       snprintf (buf2, sizeof buf2, "file=%s,snapshot=on,if=" DRIVE_IF "%s",
462                 appliance, cachemode);
463       add_cmdline (g, buf2);
464     }
465
466     /* Finish off the command line. */
467     incr_cmdline_size (g);
468     g->cmdline[g->cmdline_size-1] = NULL;
469
470     if (g->verbose)
471       print_cmdline (g);
472
473     if (!g->direct) {
474       /* Set up stdin, stdout. */
475       close (0);
476       close (1);
477       close (wfd[1]);
478       close (rfd[0]);
479
480       if (dup (wfd[0]) == -1) {
481       dup_failed:
482         perror ("dup failed");
483         _exit (EXIT_FAILURE);
484       }
485       if (dup (rfd[1]) == -1)
486         goto dup_failed;
487
488       close (wfd[0]);
489       close (rfd[1]);
490     }
491
492 #if 0
493     /* Set up a new process group, so we can signal this process
494      * and all subprocesses (eg. if qemu is really a shell script).
495      */
496     setpgid (0, 0);
497 #endif
498
499     setenv ("LC_ALL", "C", 1);
500
501     execv (g->qemu, g->cmdline); /* Run qemu. */
502     perror (g->qemu);
503     _exit (EXIT_FAILURE);
504   }
505
506   /* Parent (library). */
507   g->pid = r;
508
509   free (kernel);
510   kernel = NULL;
511   free (initrd);
512   initrd = NULL;
513
514   /* Fork the recovery process off which will kill qemu if the parent
515    * process fails to do so (eg. if the parent segfaults).
516    */
517   g->recoverypid = -1;
518   if (g->recovery_proc) {
519     r = fork ();
520     if (r == 0) {
521       pid_t qemu_pid = g->pid;
522       pid_t parent_pid = getppid ();
523
524       /* Writing to argv is hideously complicated and error prone.  See:
525        * http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/backend/utils/misc/ps_status.c?rev=1.33.2.1;content-type=text%2Fplain
526        */
527
528       /* Loop around waiting for one or both of the other processes to
529        * disappear.  It's fair to say this is very hairy.  The PIDs that
530        * we are looking at might be reused by another process.  We are
531        * effectively polling.  Is the cure worse than the disease?
532        */
533       for (;;) {
534         if (kill (qemu_pid, 0) == -1) /* qemu's gone away, we aren't needed */
535           _exit (EXIT_SUCCESS);
536         if (kill (parent_pid, 0) == -1) {
537           /* Parent's gone away, qemu still around, so kill qemu. */
538           kill (qemu_pid, 9);
539           _exit (EXIT_SUCCESS);
540         }
541         sleep (2);
542       }
543     }
544
545     /* Don't worry, if the fork failed, this will be -1.  The recovery
546      * process isn't essential.
547      */
548     g->recoverypid = r;
549   }
550
551   if (!g->direct) {
552     /* Close the other ends of the pipe. */
553     close (wfd[0]);
554     close (rfd[1]);
555
556     if (fcntl (wfd[1], F_SETFL, O_NONBLOCK) == -1 ||
557         fcntl (rfd[0], F_SETFL, O_NONBLOCK) == -1) {
558       perrorf (g, "fcntl");
559       goto cleanup1;
560     }
561
562     g->fd[0] = wfd[1];          /* stdin of child */
563     g->fd[1] = rfd[0];          /* stdout of child */
564   } else {
565     g->fd[0] = open ("/dev/null", O_RDWR);
566     if (g->fd[0] == -1) {
567       perrorf (g, "open /dev/null");
568       goto cleanup1;
569     }
570     g->fd[1] = dup (g->fd[0]);
571     if (g->fd[1] == -1) {
572       perrorf (g, "dup");
573       close (g->fd[0]);
574       goto cleanup1;
575     }
576   }
577
578   g->state = LAUNCHING;
579
580   /* Wait for qemu to start and to connect back to us via
581    * virtio-serial and send the GUESTFS_LAUNCH_FLAG message.
582    */
583   r = guestfs___accept_from_daemon (g);
584   if (r == -1)
585     goto cleanup1;
586
587   close (g->sock); /* Close the listening socket. */
588   g->sock = r; /* This is the accepted data socket. */
589
590   if (fcntl (g->sock, F_SETFL, O_NONBLOCK) == -1) {
591     perrorf (g, "fcntl");
592     goto cleanup1;
593   }
594
595   uint32_t size;
596   void *buf = NULL;
597   r = guestfs___recv_from_daemon (g, &size, &buf);
598   free (buf);
599
600   if (r == -1) return -1;
601
602   if (size != GUESTFS_LAUNCH_FLAG) {
603     error (g, _("guestfs_launch failed, see earlier error messages"));
604     goto cleanup1;
605   }
606
607   if (g->verbose)
608     guestfs___print_timestamped_message (g, "appliance is up");
609
610   /* This is possible in some really strange situations, such as
611    * guestfsd starts up OK but then qemu immediately exits.  Check for
612    * it because the caller is probably expecting to be able to send
613    * commands after this function returns.
614    */
615   if (g->state != READY) {
616     error (g, _("qemu launched and contacted daemon, but state != READY"));
617     goto cleanup1;
618   }
619
620   return 0;
621
622  cleanup1:
623   if (!g->direct) {
624     close (wfd[1]);
625     close (rfd[0]);
626   }
627   if (g->pid > 0) kill (g->pid, 9);
628   if (g->recoverypid > 0) kill (g->recoverypid, 9);
629   waitpid (g->pid, NULL, 0);
630   if (g->recoverypid > 0) waitpid (g->recoverypid, NULL, 0);
631   g->fd[0] = -1;
632   g->fd[1] = -1;
633   g->pid = 0;
634   g->recoverypid = 0;
635   memset (&g->launch_t, 0, sizeof g->launch_t);
636
637  cleanup0:
638   if (g->sock >= 0) {
639     close (g->sock);
640     g->sock = -1;
641   }
642   g->state = CONFIG;
643   free (kernel);
644   free (initrd);
645   free (appliance);
646   return -1;
647 }
648
649 const char *
650 guestfs___tmpdir (void)
651 {
652   const char *tmpdir;
653
654 #ifdef P_tmpdir
655   tmpdir = P_tmpdir;
656 #else
657   tmpdir = "/tmp";
658 #endif
659
660   const char *t = getenv ("TMPDIR");
661   if (t) tmpdir = t;
662
663   return tmpdir;
664 }
665
666 /* This function is used to print the qemu command line before it gets
667  * executed, when in verbose mode.
668  */
669 static void
670 print_cmdline (guestfs_h *g)
671 {
672   int i = 0;
673   int needs_quote;
674
675   while (g->cmdline[i]) {
676     if (g->cmdline[i][0] == '-') /* -option starts a new line */
677       fprintf (stderr, " \\\n   ");
678
679     if (i > 0) fputc (' ', stderr);
680
681     /* Does it need shell quoting?  This only deals with simple cases. */
682     needs_quote = strcspn (g->cmdline[i], " ") != strlen (g->cmdline[i]);
683
684     if (needs_quote) fputc ('\'', stderr);
685     fprintf (stderr, "%s", g->cmdline[i]);
686     if (needs_quote) fputc ('\'', stderr);
687     i++;
688   }
689
690   fputc ('\n', stderr);
691 }
692
693 /* Compute Y - X and return the result in milliseconds.
694  * Approximately the same as this code:
695  * http://www.mpp.mpg.de/~huber/util/timevaldiff.c
696  */
697 static int64_t
698 timeval_diff (const struct timeval *x, const struct timeval *y)
699 {
700   int64_t msec;
701
702   msec = (y->tv_sec - x->tv_sec) * 1000;
703   msec += (y->tv_usec - x->tv_usec) / 1000;
704   return msec;
705 }
706
707 void
708 guestfs___print_timestamped_message (guestfs_h *g, const char *fs, ...)
709 {
710   va_list args;
711   char *msg;
712   int err;
713   struct timeval tv;
714
715   va_start (args, fs);
716   err = vasprintf (&msg, fs, args);
717   va_end (args);
718
719   if (err < 0) return;
720
721   gettimeofday (&tv, NULL);
722
723   fprintf (stderr, "[%05" PRIi64 "ms] %s\n",
724            timeval_diff (&g->launch_t, &tv), msg);
725
726   free (msg);
727 }
728
729 static int read_all (guestfs_h *g, FILE *fp, char **ret);
730
731 /* Test qemu binary (or wrapper) runs, and do 'qemu -help' and
732  * 'qemu -version' so we know what options this qemu supports and
733  * the version.
734  */
735 static int
736 test_qemu (guestfs_h *g)
737 {
738   char cmd[1024];
739   FILE *fp;
740
741   snprintf (cmd, sizeof cmd, "LC_ALL=C '%s' -nographic -help", g->qemu);
742
743   fp = popen (cmd, "r");
744   /* qemu -help should always work (qemu -version OTOH wasn't
745    * supported by qemu 0.9).  If this command doesn't work then it
746    * probably indicates that the qemu binary is missing.
747    */
748   if (!fp) {
749     /* XXX This error is never printed, even if the qemu binary
750      * doesn't exist.  Why?
751      */
752   error:
753     perrorf (g, _("%s: command failed: If qemu is located on a non-standard path, try setting the LIBGUESTFS_QEMU environment variable."), cmd);
754     return -1;
755   }
756
757   if (read_all (g, fp, &g->qemu_help) == -1)
758     goto error;
759
760   if (pclose (fp) == -1)
761     goto error;
762
763   snprintf (cmd, sizeof cmd, "LC_ALL=C '%s' -nographic -version 2>/dev/null",
764             g->qemu);
765
766   fp = popen (cmd, "r");
767   if (fp) {
768     /* Intentionally ignore errors. */
769     read_all (g, fp, &g->qemu_version);
770     pclose (fp);
771   }
772
773   return 0;
774 }
775
776 static int
777 read_all (guestfs_h *g, FILE *fp, char **ret)
778 {
779   int r, n = 0;
780   char *p;
781
782  again:
783   if (feof (fp)) {
784     *ret = safe_realloc (g, *ret, n + 1);
785     (*ret)[n] = '\0';
786     return n;
787   }
788
789   *ret = safe_realloc (g, *ret, n + BUFSIZ);
790   p = &(*ret)[n];
791   r = fread (p, 1, BUFSIZ, fp);
792   if (ferror (fp)) {
793     perrorf (g, "read");
794     return -1;
795   }
796   n += r;
797   goto again;
798 }
799
800 /* Test if option is supported by qemu command line (just by grepping
801  * the help text).
802  *
803  * The first time this is used, it has to run the external qemu
804  * binary.  If that fails, it returns -1.
805  *
806  * To just do the first-time run of the qemu binary, call this with
807  * option == NULL, in which case it will return -1 if there was an
808  * error doing that.
809  */
810 static int
811 qemu_supports (guestfs_h *g, const char *option)
812 {
813   if (!g->qemu_help) {
814     if (test_qemu (g) == -1)
815       return -1;
816   }
817
818   if (option == NULL)
819     return 1;
820
821   return strstr (g->qemu_help, option) != NULL;
822 }
823
824 /* Check if a file can be opened. */
825 static int
826 is_openable (guestfs_h *g, const char *path, int flags)
827 {
828   int fd = open (path, flags);
829   if (fd == -1) {
830     if (g->verbose)
831       perror (path);
832     return 0;
833   }
834   close (fd);
835   return 1;
836 }
837
838 /* You had to call this function after launch in versions <= 1.0.70,
839  * but it is now a no-op.
840  */
841 int
842 guestfs__wait_ready (guestfs_h *g)
843 {
844   if (g->state != READY)  {
845     error (g, _("qemu has not been launched yet"));
846     return -1;
847   }
848
849   return 0;
850 }
851
852 int
853 guestfs__kill_subprocess (guestfs_h *g)
854 {
855   if (g->state == CONFIG) {
856     error (g, _("no subprocess to kill"));
857     return -1;
858   }
859
860   if (g->verbose)
861     fprintf (stderr, "sending SIGTERM to process %d\n", g->pid);
862
863   if (g->pid > 0) kill (g->pid, SIGTERM);
864   if (g->recoverypid > 0) kill (g->recoverypid, 9);
865
866   return 0;
867 }
868
869 /* Access current state. */
870 int
871 guestfs__is_config (guestfs_h *g)
872 {
873   return g->state == CONFIG;
874 }
875
876 int
877 guestfs__is_launching (guestfs_h *g)
878 {
879   return g->state == LAUNCHING;
880 }
881
882 int
883 guestfs__is_ready (guestfs_h *g)
884 {
885   return g->state == READY;
886 }
887
888 int
889 guestfs__is_busy (guestfs_h *g)
890 {
891   return g->state == BUSY;
892 }
893
894 int
895 guestfs__get_state (guestfs_h *g)
896 {
897   return g->state;
898 }