Add user cancellation to the C API.
[libguestfs.git] / src / guestfs.c
1 /* libguestfs
2  * Copyright (C) 2009-2011 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 <assert.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 "hash.h"
67 #include "hash-pjw.h"
68
69 #include "guestfs.h"
70 #include "guestfs-internal.h"
71 #include "guestfs-internal-actions.h"
72 #include "guestfs_protocol.h"
73
74 static void default_error_cb (guestfs_h *g, void *data, const char *msg);
75 static void remove_tmpdir (guestfs_h *g);
76 static void close_handles (void);
77
78 gl_lock_define_initialized (static, handles_lock);
79 static guestfs_h *handles = NULL;
80 static int atexit_handler_set = 0;
81
82 guestfs_h *
83 guestfs_create (void)
84 {
85   guestfs_h *g;
86   const char *str;
87
88   g = malloc (sizeof (*g));
89   if (!g) return NULL;
90
91   memset (g, 0, sizeof (*g));
92
93   g->state = CONFIG;
94
95   g->fd[0] = -1;
96   g->fd[1] = -1;
97   g->sock = -1;
98
99   g->abort_cb = abort;
100   g->error_cb = default_error_cb;
101   g->error_cb_data = NULL;
102
103   g->recovery_proc = 1;
104   g->autosync = 1;
105
106   str = getenv ("LIBGUESTFS_DEBUG");
107   g->verbose = str != NULL && STREQ (str, "1");
108
109   str = getenv ("LIBGUESTFS_TRACE");
110   g->trace = str != NULL && STREQ (str, "1");
111
112   str = getenv ("LIBGUESTFS_PATH");
113   g->path = str != NULL ? strdup (str) : strdup (GUESTFS_DEFAULT_PATH);
114   if (!g->path) goto error;
115
116   str = getenv ("LIBGUESTFS_QEMU");
117   g->qemu = str != NULL ? strdup (str) : strdup (QEMU);
118   if (!g->qemu) goto error;
119
120   str = getenv ("LIBGUESTFS_APPEND");
121   if (str) {
122     g->append = strdup (str);
123     if (!g->append) goto error;
124   }
125
126   /* Choose a suitable memory size.  Previously we tried to choose
127    * a minimal memory size, but this isn't really necessary since
128    * recent QEMU and KVM don't do anything nasty like locking
129    * memory into core any more.  Thus we can safely choose a
130    * large, generous amount of memory, and it'll just get swapped
131    * on smaller systems.
132    */
133   str = getenv ("LIBGUESTFS_MEMSIZE");
134   if (str) {
135     if (sscanf (str, "%d", &g->memsize) != 1 || g->memsize <= 256) {
136       warning (g, "non-numeric or too small value for LIBGUESTFS_MEMSIZE");
137       goto error;
138     }
139   } else
140     g->memsize = 500;
141
142   /* Start with large serial numbers so they are easy to spot
143    * inside the protocol.
144    */
145   g->msg_next_serial = 0x00123400;
146
147   /* Link the handles onto a global list. */
148   gl_lock_lock (handles_lock);
149   g->next = handles;
150   handles = g;
151   if (!atexit_handler_set) {
152     atexit (close_handles);
153     atexit_handler_set = 1;
154   }
155   gl_lock_unlock (handles_lock);
156
157   debug (g, "new guestfs handle %p", g);
158
159   return g;
160
161  error:
162   free (g->path);
163   free (g->qemu);
164   free (g->append);
165   free (g);
166   return NULL;
167 }
168
169 void
170 guestfs_close (guestfs_h *g)
171 {
172   if (g->state == NO_HANDLE) {
173     /* Not safe to call ANY callbacks here, so ... */
174     fprintf (stderr, _("guestfs_close: called twice on the same handle\n"));
175     return;
176   }
177
178   if (g->trace) {
179     const char trace_msg[] = "close";
180
181     guestfs___call_callbacks_message (g, GUESTFS_EVENT_TRACE,
182                                       trace_msg, strlen (trace_msg));
183   }
184
185   debug (g, "closing guestfs handle %p (state %d)", g, g->state);
186
187   /* Try to sync if autosync flag is set. */
188   if (g->autosync && g->state == READY)
189     guestfs_internal_autosync (g);
190
191   /* Kill the qemu subprocess. */
192   if (g->state != CONFIG)
193     guestfs_kill_subprocess (g);
194
195   /* Run user close callbacks. */
196   guestfs___call_callbacks_void (g, GUESTFS_EVENT_CLOSE);
197
198   /* Remove all other registered callbacks.  Since we've already
199    * called the close callbacks, we shouldn't call any others.
200    */
201   free (g->events);
202   g->nr_events = 0;
203   g->events = NULL;
204
205   guestfs___free_inspect_info (g);
206
207   /* Close sockets. */
208   if (g->fd[0] >= 0)
209     close (g->fd[0]);
210   if (g->fd[1] >= 0)
211     close (g->fd[1]);
212   if (g->sock >= 0)
213     close (g->sock);
214   g->fd[0] = -1;
215   g->fd[1] = -1;
216   g->sock = -1;
217
218   /* Wait for subprocess(es) to exit. */
219   if (g->pid > 0) waitpid (g->pid, NULL, 0);
220   if (g->recoverypid > 0) waitpid (g->recoverypid, NULL, 0);
221
222   /* Remove whole temporary directory. */
223   remove_tmpdir (g);
224
225   if (g->cmdline) {
226     size_t i;
227
228     for (i = 0; i < g->cmdline_size; ++i)
229       free (g->cmdline[i]);
230     free (g->cmdline);
231   }
232
233   /* Mark the handle as dead before freeing it. */
234   g->state = NO_HANDLE;
235
236   gl_lock_lock (handles_lock);
237   if (handles == g)
238     handles = g->next;
239   else {
240     guestfs_h *gg;
241
242     for (gg = handles; gg->next != g; gg = gg->next)
243       ;
244     gg->next = g->next;
245   }
246   gl_lock_unlock (handles_lock);
247
248   if (g->pda)
249     hash_free (g->pda);
250   free (g->last_error);
251   free (g->path);
252   free (g->qemu);
253   free (g->append);
254   free (g->qemu_help);
255   free (g->qemu_version);
256   free (g);
257 }
258
259 /* g->tmpdir can contain any files (but not subdirectories).  Remove
260  * those and the directory itself.  Note that errors in this function
261  * aren't really that important: if we end up not deleting temporary
262  * files it's only annoying.
263  */
264 static void
265 remove_tmpdir (guestfs_h *g)
266 {
267   DIR *dir;
268   struct dirent *d;
269
270   if (!g->tmpdir)
271     return;
272
273   dir = opendir (g->tmpdir);
274   if (dir == NULL) {
275     perror (g->tmpdir);
276     return;
277   }
278
279   while ((d = readdir (dir)) != NULL) {
280     if (STRNEQ (d->d_name, ".") && STRNEQ (d->d_name, "..")) {
281       if (unlinkat (dirfd (dir), d->d_name, 0) == -1)
282         perror (d->d_name);
283     }
284   }
285
286   if (closedir (dir) == -1)
287     perror (g->tmpdir);
288
289   if (rmdir (g->tmpdir) == -1)
290     perror (g->tmpdir);
291
292   free (g->tmpdir);
293   g->tmpdir = NULL;
294 }
295
296 /* Close all open handles (called from atexit(3)). */
297 static void
298 close_handles (void)
299 {
300   while (handles) guestfs_close (handles);
301 }
302
303 const char *
304 guestfs_last_error (guestfs_h *g)
305 {
306   return g->last_error;
307 }
308
309 int
310 guestfs_last_errno (guestfs_h *g)
311 {
312   return g->last_errnum;
313 }
314
315 static void
316 set_last_error (guestfs_h *g, int errnum, const char *msg)
317 {
318   free (g->last_error);
319   g->last_error = strdup (msg);
320   g->last_errnum = errnum;
321 }
322
323 /* Warning are printed unconditionally.  We try to make these rare.
324  * Generally speaking, a warning should either be an error, or if it's
325  * not important for end users then it should be a debug message.
326  */
327 void
328 guestfs___warning (guestfs_h *g, const char *fs, ...)
329 {
330   va_list args;
331   char *msg, *msg2;
332   int len;
333
334   va_start (args, fs);
335   len = vasprintf (&msg, fs, args);
336   va_end (args);
337
338   if (len < 0) return;
339
340   len = asprintf (&msg2, _("warning: %s"), msg);
341   free (msg);
342
343   if (len < 0) return;
344
345   guestfs___call_callbacks_message (g, GUESTFS_EVENT_LIBRARY, msg2, len);
346
347   free (msg2);
348 }
349
350 /* Debug messages. */
351 void
352 guestfs___debug (guestfs_h *g, const char *fs, ...)
353 {
354   va_list args;
355   char *msg;
356   int len;
357
358   /* The cpp macro "debug" has already checked that g->verbose is true
359    * before calling this function, but we check it again just in case
360    * anyone calls this function directly.
361    */
362   if (!g->verbose)
363     return;
364
365   va_start (args, fs);
366   len = vasprintf (&msg, fs, args);
367   va_end (args);
368
369   if (len < 0) return;
370
371   guestfs___call_callbacks_message (g, GUESTFS_EVENT_LIBRARY, msg, len);
372 }
373
374 /* Call trace messages.  These are enabled by setting g->trace, and
375  * calls to this function should only happen from the generated code
376  * in src/actions.c
377  */
378 void
379 guestfs___trace (guestfs_h *g, const char *fs, ...)
380 {
381   va_list args;
382   char *msg;
383   int len;
384
385   va_start (args, fs);
386   len = vasprintf (&msg, fs, args);
387   va_end (args);
388
389   if (len < 0) return;
390
391   guestfs___call_callbacks_message (g, GUESTFS_EVENT_TRACE, msg, len);
392
393   free (msg);
394 }
395
396 static void
397 default_error_cb (guestfs_h *g, void *data, const char *msg)
398 {
399   fprintf (stderr, _("libguestfs: error: %s\n"), msg);
400 }
401
402 void
403 guestfs_error_errno (guestfs_h *g, int errnum, const char *fs, ...)
404 {
405   va_list args;
406   char *msg;
407
408   va_start (args, fs);
409   int err = vasprintf (&msg, fs, args);
410   va_end (args);
411
412   if (err < 0) return;
413
414   /* set_last_error first so that the callback can access the error
415    * message and errno through the handle if it wishes.
416    */
417   set_last_error (g, errnum, msg);
418   if (g->error_cb) g->error_cb (g, g->error_cb_data, msg);
419
420   free (msg);
421 }
422
423 void
424 guestfs_perrorf (guestfs_h *g, const char *fs, ...)
425 {
426   va_list args;
427   char *msg;
428   int errnum = errno;
429
430   va_start (args, fs);
431   int err = vasprintf (&msg, fs, args);
432   va_end (args);
433
434   if (err < 0) return;
435
436 #if !defined(_GNU_SOURCE) || defined(__APPLE__)
437   char buf[256];
438   strerror_r (errnum, buf, sizeof buf);
439 #else
440   char _buf[256];
441   char *buf;
442   buf = strerror_r (errnum, _buf, sizeof _buf);
443 #endif
444
445   msg = safe_realloc (g, msg, strlen (msg) + 2 + strlen (buf) + 1);
446   strcat (msg, ": ");
447   strcat (msg, buf);
448
449   /* set_last_error first so that the callback can access the error
450    * message and errno through the handle if it wishes.
451    */
452   set_last_error (g, errnum, msg);
453   if (g->error_cb) g->error_cb (g, g->error_cb_data, msg);
454
455   free (msg);
456 }
457
458 void *
459 guestfs_safe_malloc (guestfs_h *g, size_t nbytes)
460 {
461   void *ptr = malloc (nbytes);
462   if (nbytes > 0 && !ptr) g->abort_cb ();
463   return ptr;
464 }
465
466 /* Return 1 if an array of N objects, each of size S, cannot exist due
467    to size arithmetic overflow.  S must be positive and N must be
468    nonnegative.  This is a macro, not an inline function, so that it
469    works correctly even when SIZE_MAX < N.
470
471    By gnulib convention, SIZE_MAX represents overflow in size
472    calculations, so the conservative dividend to use here is
473    SIZE_MAX - 1, since SIZE_MAX might represent an overflowed value.
474    However, malloc (SIZE_MAX) fails on all known hosts where
475    sizeof (ptrdiff_t) <= sizeof (size_t), so do not bother to test for
476    exactly-SIZE_MAX allocations on such hosts; this avoids a test and
477    branch when S is known to be 1.  */
478 # define xalloc_oversized(n, s) \
479     ((size_t) (sizeof (ptrdiff_t) <= sizeof (size_t) ? -1 : -2) / (s) < (n))
480
481 /* Technically we should add an autoconf test for this, testing for the desired
482    functionality, like what's done in gnulib, but for now, this is fine.  */
483 #if defined(__GLIBC__)
484 #define HAVE_GNU_CALLOC (__GLIBC__ >= 2)
485 #else
486 #define HAVE_GNU_CALLOC 0
487 #endif
488
489 /* Allocate zeroed memory for N elements of S bytes, with error
490    checking.  S must be nonzero.  */
491 void *
492 guestfs_safe_calloc (guestfs_h *g, size_t n, size_t s)
493 {
494   /* From gnulib's calloc function in xmalloc.c.  */
495   void *p;
496   /* Test for overflow, since some calloc implementations don't have
497      proper overflow checks.  But omit overflow and size-zero tests if
498      HAVE_GNU_CALLOC, since GNU calloc catches overflow and never
499      returns NULL if successful.  */
500   if ((! HAVE_GNU_CALLOC && xalloc_oversized (n, s))
501       || (! (p = calloc (n, s)) && (HAVE_GNU_CALLOC || n != 0)))
502     g->abort_cb ();
503   return p;
504 }
505
506 void *
507 guestfs_safe_realloc (guestfs_h *g, void *ptr, int nbytes)
508 {
509   void *p = realloc (ptr, nbytes);
510   if (nbytes > 0 && !p) g->abort_cb ();
511   return p;
512 }
513
514 char *
515 guestfs_safe_strdup (guestfs_h *g, const char *str)
516 {
517   char *s = strdup (str);
518   if (!s) g->abort_cb ();
519   return s;
520 }
521
522 char *
523 guestfs_safe_strndup (guestfs_h *g, const char *str, size_t n)
524 {
525   char *s = strndup (str, n);
526   if (!s) g->abort_cb ();
527   return s;
528 }
529
530 void *
531 guestfs_safe_memdup (guestfs_h *g, void *ptr, size_t size)
532 {
533   void *p = malloc (size);
534   if (!p) g->abort_cb ();
535   memcpy (p, ptr, size);
536   return p;
537 }
538
539 char *
540 guestfs_safe_asprintf (guestfs_h *g, const char *fs, ...)
541 {
542   va_list args;
543   char *msg;
544
545   va_start (args, fs);
546   int err = vasprintf (&msg, fs, args);
547   va_end (args);
548
549   if (err == -1)
550     g->abort_cb ();
551
552   return msg;
553 }
554
555 void
556 guestfs_set_out_of_memory_handler (guestfs_h *g, guestfs_abort_cb cb)
557 {
558   g->abort_cb = cb;
559 }
560
561 guestfs_abort_cb
562 guestfs_get_out_of_memory_handler (guestfs_h *g)
563 {
564   return g->abort_cb;
565 }
566
567 void
568 guestfs_set_error_handler (guestfs_h *g, guestfs_error_handler_cb cb, void *data)
569 {
570   g->error_cb = cb;
571   g->error_cb_data = data;
572 }
573
574 guestfs_error_handler_cb
575 guestfs_get_error_handler (guestfs_h *g, void **data_rtn)
576 {
577   if (data_rtn) *data_rtn = g->error_cb_data;
578   return g->error_cb;
579 }
580
581 void
582 guestfs_user_cancel (guestfs_h *g)
583 {
584   g->user_cancel = 1;
585 }
586
587 int
588 guestfs__set_verbose (guestfs_h *g, int v)
589 {
590   g->verbose = !!v;
591   return 0;
592 }
593
594 int
595 guestfs__get_verbose (guestfs_h *g)
596 {
597   return g->verbose;
598 }
599
600 int
601 guestfs__set_autosync (guestfs_h *g, int a)
602 {
603   g->autosync = !!a;
604   return 0;
605 }
606
607 int
608 guestfs__get_autosync (guestfs_h *g)
609 {
610   return g->autosync;
611 }
612
613 int
614 guestfs__set_path (guestfs_h *g, const char *path)
615 {
616   free (g->path);
617   g->path = NULL;
618
619   g->path =
620     path == NULL ?
621     safe_strdup (g, GUESTFS_DEFAULT_PATH) : safe_strdup (g, path);
622   return 0;
623 }
624
625 const char *
626 guestfs__get_path (guestfs_h *g)
627 {
628   return g->path;
629 }
630
631 int
632 guestfs__set_qemu (guestfs_h *g, const char *qemu)
633 {
634   free (g->qemu);
635   g->qemu = NULL;
636
637   g->qemu = qemu == NULL ? safe_strdup (g, QEMU) : safe_strdup (g, qemu);
638   return 0;
639 }
640
641 const char *
642 guestfs__get_qemu (guestfs_h *g)
643 {
644   return g->qemu;
645 }
646
647 int
648 guestfs__set_append (guestfs_h *g, const char *append)
649 {
650   free (g->append);
651   g->append = NULL;
652
653   g->append = append ? safe_strdup (g, append) : NULL;
654   return 0;
655 }
656
657 const char *
658 guestfs__get_append (guestfs_h *g)
659 {
660   return g->append;
661 }
662
663 int
664 guestfs__set_memsize (guestfs_h *g, int memsize)
665 {
666   g->memsize = memsize;
667   return 0;
668 }
669
670 int
671 guestfs__get_memsize (guestfs_h *g)
672 {
673   return g->memsize;
674 }
675
676 int
677 guestfs__set_selinux (guestfs_h *g, int selinux)
678 {
679   g->selinux = selinux;
680   return 0;
681 }
682
683 int
684 guestfs__get_selinux (guestfs_h *g)
685 {
686   return g->selinux;
687 }
688
689 int
690 guestfs__get_pid (guestfs_h *g)
691 {
692   if (g->pid > 0)
693     return g->pid;
694   else {
695     error (g, "get_pid: no qemu subprocess");
696     return -1;
697   }
698 }
699
700 struct guestfs_version *
701 guestfs__version (guestfs_h *g)
702 {
703   struct guestfs_version *r;
704
705   r = safe_malloc (g, sizeof *r);
706   r->major = PACKAGE_VERSION_MAJOR;
707   r->minor = PACKAGE_VERSION_MINOR;
708   r->release = PACKAGE_VERSION_RELEASE;
709   r->extra = safe_strdup (g, PACKAGE_VERSION_EXTRA);
710   return r;
711 }
712
713 int
714 guestfs__set_trace (guestfs_h *g, int t)
715 {
716   g->trace = !!t;
717   return 0;
718 }
719
720 int
721 guestfs__get_trace (guestfs_h *g)
722 {
723   return g->trace;
724 }
725
726 int
727 guestfs__set_direct (guestfs_h *g, int d)
728 {
729   g->direct = !!d;
730   return 0;
731 }
732
733 int
734 guestfs__get_direct (guestfs_h *g)
735 {
736   return g->direct;
737 }
738
739 int
740 guestfs__set_recovery_proc (guestfs_h *g, int f)
741 {
742   g->recovery_proc = !!f;
743   return 0;
744 }
745
746 int
747 guestfs__get_recovery_proc (guestfs_h *g)
748 {
749   return g->recovery_proc;
750 }
751
752 int
753 guestfs__set_network (guestfs_h *g, int v)
754 {
755   g->enable_network = !!v;
756   return 0;
757 }
758
759 int
760 guestfs__get_network (guestfs_h *g)
761 {
762   return g->enable_network;
763 }
764
765 int
766 guestfs__set_attach_method (guestfs_h *g, const char *method)
767 {
768   if (STREQ (method, "appliance")) {
769     g->attach_method = ATTACH_METHOD_APPLIANCE;
770     free (g->attach_method_arg);
771     g->attach_method_arg = NULL;
772   }
773   else if (STRPREFIX (method, "unix:") && strlen (method) > 5) {
774     g->attach_method = ATTACH_METHOD_UNIX;
775     free (g->attach_method_arg);
776     g->attach_method_arg = safe_strdup (g, method + 5);
777     /* Note that we don't check the path exists until launch is called. */
778   }
779   else {
780     error (g, "invalid attach method: %s", method);
781     return -1;
782   }
783
784   return 0;
785 }
786
787 char *
788 guestfs__get_attach_method (guestfs_h *g)
789 {
790   char *ret;
791
792   switch (g->attach_method) {
793   case ATTACH_METHOD_APPLIANCE:
794     ret = safe_strdup (g, "appliance");
795     break;
796
797   case ATTACH_METHOD_UNIX:
798     ret = safe_malloc (g, strlen (g->attach_method_arg) + 5 + 1);
799     strcpy (ret, "unix:");
800     strcat (ret, g->attach_method_arg);
801     break;
802
803   default: /* keep GCC happy - this is not reached */
804     abort ();
805   }
806
807   return ret;
808 }
809
810 int
811 guestfs__set_pgroup (guestfs_h *g, int v)
812 {
813   g->pgroup = !!v;
814   return 0;
815 }
816
817 int
818 guestfs__get_pgroup (guestfs_h *g)
819 {
820   return g->pgroup;
821 }
822
823 /* Note the private data area is allocated lazily, since the vast
824  * majority of callers will never use it.  This means g->pda is
825  * likely to be NULL.
826  */
827 struct pda_entry {
828   char *key;                    /* key */
829   void *data;                   /* opaque user data pointer */
830 };
831
832 static size_t
833 hasher (void const *x, size_t table_size)
834 {
835   struct pda_entry const *p = x;
836   return hash_pjw (p->key, table_size);
837 }
838
839 static bool
840 comparator (void const *x, void const *y)
841 {
842   struct pda_entry const *a = x;
843   struct pda_entry const *b = y;
844   return STREQ (a->key, b->key);
845 }
846
847 static void
848 freer (void *x)
849 {
850   if (x) {
851     struct pda_entry *p = x;
852     free (p->key);
853     free (p);
854   }
855 }
856
857 void
858 guestfs_set_private (guestfs_h *g, const char *key, void *data)
859 {
860   if (g->pda == NULL) {
861     g->pda = hash_initialize (16, NULL, hasher, comparator, freer);
862     if (g->pda == NULL)
863       g->abort_cb ();
864   }
865
866   struct pda_entry *new_entry = safe_malloc (g, sizeof *new_entry);
867   new_entry->key = safe_strdup (g, key);
868   new_entry->data = data;
869
870   struct pda_entry *old_entry = hash_delete (g->pda, new_entry);
871   freer (old_entry);
872
873   struct pda_entry *entry = hash_insert (g->pda, new_entry);
874   if (entry == NULL)
875     g->abort_cb ();
876   assert (entry == new_entry);
877 }
878
879 static inline char *
880 bad_cast (char const *s)
881 {
882   return (char *) s;
883 }
884
885 void *
886 guestfs_get_private (guestfs_h *g, const char *key)
887 {
888   if (g->pda == NULL)
889     return NULL;                /* no keys have been set */
890
891   const struct pda_entry k = { .key = bad_cast (key) };
892   struct pda_entry *entry = hash_lookup (g->pda, &k);
893   if (entry)
894     return entry->data;
895   else
896     return NULL;
897 }
898
899 /* Iterator. */
900 void *
901 guestfs_first_private (guestfs_h *g, const char **key_rtn)
902 {
903   if (g->pda == NULL)
904     return NULL;
905
906   g->pda_next = hash_get_first (g->pda);
907
908   /* Ignore any keys with NULL data pointers. */
909   while (g->pda_next && g->pda_next->data == NULL)
910     g->pda_next = hash_get_next (g->pda, g->pda_next);
911
912   if (g->pda_next == NULL)
913     return NULL;
914
915   *key_rtn = g->pda_next->key;
916   return g->pda_next->data;
917 }
918
919 void *
920 guestfs_next_private (guestfs_h *g, const char **key_rtn)
921 {
922   if (g->pda == NULL)
923     return NULL;
924
925   if (g->pda_next == NULL)
926     return NULL;
927
928   /* Walk to the next key with a non-NULL data pointer. */
929   do {
930     g->pda_next = hash_get_next (g->pda, g->pda_next);
931   } while (g->pda_next && g->pda_next->data == NULL);
932
933   if (g->pda_next == NULL)
934     return NULL;
935
936   *key_rtn = g->pda_next->key;
937   return g->pda_next->data;
938 }
939
940 /* When tracing, be careful how we print BufferIn parameters which
941  * usually contain large amounts of binary data (RHBZ#646822).
942  */
943 void
944 guestfs___print_BufferIn (FILE *out, const char *buf, size_t buf_size)
945 {
946   size_t i;
947   size_t orig_size = buf_size;
948
949   if (buf_size > 256)
950     buf_size = 256;
951
952   fputc ('"', out);
953
954   for (i = 0; i < buf_size; ++i) {
955     if (c_isprint (buf[i]))
956       fputc (buf[i], out);
957     else
958       fprintf (out, "\\x%02x", (unsigned char) buf[i]);
959   }
960
961   fputc ('"', out);
962
963   if (orig_size > buf_size)
964     fprintf (out,
965              _("<truncated, original size %zu bytes>"), orig_size);
966 }
967
968 void
969 guestfs___print_BufferOut (FILE *out, const char *buf, size_t buf_size)
970 {
971   guestfs___print_BufferIn (out, buf, buf_size);
972 }
973
974 void
975 guestfs___free_string_list (char **argv)
976 {
977   size_t i;
978   for (i = 0; argv[i] != NULL; ++i)
979     free (argv[i]);
980   free (argv);
981 }