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