Document new version numbering policy.
[libguestfs.git] / src / guestfs.pod
1 =encoding utf8
2
3 =head1 NAME
4
5 guestfs - Library for accessing and modifying virtual machine images
6
7 =head1 SYNOPSIS
8
9  #include <guestfs.h>
10  
11  guestfs_h *g = guestfs_create ();
12  guestfs_add_drive (g, "guest.img");
13  guestfs_launch (g);
14  guestfs_mount (g, "/dev/sda1", "/");
15  guestfs_touch (g, "/hello");
16  guestfs_umount (g, "/");
17  guestfs_sync (g);
18  guestfs_close (g);
19
20  cc prog.c -o prog -lguestfs
21 or:
22  cc prog.c -o prog `pkg-config libguestfs --cflags --libs`
23
24 =head1 DESCRIPTION
25
26 Libguestfs is a library for accessing and modifying guest disk images.
27 Amongst the things this is good for: making batch configuration
28 changes to guests, getting disk used/free statistics (see also:
29 virt-df), migrating between virtualization systems (see also:
30 virt-p2v), performing partial backups, performing partial guest
31 clones, cloning guests and changing registry/UUID/hostname info, and
32 much else besides.
33
34 Libguestfs uses Linux kernel and qemu code, and can access any type of
35 guest filesystem that Linux and qemu can, including but not limited
36 to: ext2/3/4, btrfs, FAT and NTFS, LVM, many different disk partition
37 schemes, qcow, qcow2, vmdk.
38
39 Libguestfs provides ways to enumerate guest storage (eg. partitions,
40 LVs, what filesystem is in each LV, etc.).  It can also run commands
41 in the context of the guest.  Also you can access filesystems over
42 FUSE.
43
44 Libguestfs is a library that can be linked with C and C++ management
45 programs (or management programs written in OCaml, Perl, Python, Ruby,
46 Java, Haskell or C#).  You can also use it from shell scripts or the
47 command line.
48
49 You don't need to be root to use libguestfs, although obviously you do
50 need enough permissions to access the disk images.
51
52 Libguestfs is a large API because it can do many things.  For a gentle
53 introduction, please read the L</API OVERVIEW> section next.
54
55 =head1 API OVERVIEW
56
57 This section provides a gentler overview of the libguestfs API.  We
58 also try to group API calls together, where that may not be obvious
59 from reading about the individual calls below.
60
61 =head2 HANDLES
62
63 Before you can use libguestfs calls, you have to create a handle.
64 Then you must add at least one disk image to the handle, followed by
65 launching the handle, then performing whatever operations you want,
66 and finally closing the handle.  By convention we use the single
67 letter C<g> for the name of the handle variable, although of course
68 you can use any name you want.
69
70 The general structure of all libguestfs-using programs looks like
71 this:
72
73  guestfs_h *g = guestfs_create ();
74  
75  /* Call guestfs_add_drive additional times if there are
76   * multiple disk images.
77   */
78  guestfs_add_drive (g, "guest.img");
79  
80  /* Most manipulation calls won't work until you've launched
81   * the handle 'g'.  You have to do this _after_ adding drives
82   * and _before_ other commands.
83   */
84  guestfs_launch (g);
85  
86  /* Now you can examine what partitions, LVs etc are available.
87   */
88  char **partitions = guestfs_list_partitions (g);
89  char **logvols = guestfs_lvs (g);
90  
91  /* To access a filesystem in the image, you must mount it.
92   */
93  guestfs_mount (g, "/dev/sda1", "/");
94  
95  /* Now you can perform filesystem actions on the guest
96   * disk image.
97   */
98  guestfs_touch (g, "/hello");
99  
100  /* You only need to call guestfs_sync if you have made
101   * changes to the guest image.  (But if you've made changes
102   * then you *must* sync).
103   */
104  guestfs_sync (g);
105  
106  /* Close the handle 'g'. */
107  guestfs_close (g);
108
109 The code above doesn't include any error checking.  In real code you
110 should check return values carefully for errors.  In general all
111 functions that return integers return C<-1> on error, and all
112 functions that return pointers return C<NULL> on error.  See section
113 L</ERROR HANDLING> below for how to handle errors, and consult the
114 documentation for each function call below to see precisely how they
115 return error indications.
116
117 =head2 DISK IMAGES
118
119 The image filename (C<"guest.img"> in the example above) could be a
120 disk image from a virtual machine, a L<dd(1)> copy of a physical hard
121 disk, an actual block device, or simply an empty file of zeroes that
122 you have created through L<posix_fallocate(3)>.  Libguestfs lets you
123 do useful things to all of these.
124
125 You can add a disk read-only using C<guestfs_add_drive_ro>, in which
126 case libguestfs won't modify the file.
127
128 Be extremely cautious if the disk image is in use, eg. if it is being
129 used by a virtual machine.  Adding it read-write will almost certainly
130 cause disk corruption, but adding it read-only is safe.
131
132 You must add at least one disk image, and you may add multiple disk
133 images.  In the API, the disk images are usually referred to as
134 C</dev/sda> (for the first one you added), C</dev/sdb> (for the second
135 one you added), etc.
136
137 Once C<guestfs_launch> has been called you cannot add any more images.
138 You can call C<guestfs_list_devices> to get a list of the device
139 names, in the order that you added them.  See also L</BLOCK DEVICE
140 NAMING> below.
141
142 =head2 MOUNTING
143
144 Before you can read or write files, create directories and so on in a
145 disk image that contains filesystems, you have to mount those
146 filesystems using C<guestfs_mount>.  If you already know that a disk
147 image contains (for example) one partition with a filesystem on that
148 partition, then you can mount it directly:
149
150  guestfs_mount (g, "/dev/sda1", "/");
151
152 where C</dev/sda1> means literally the first partition (C<1>) of the
153 first disk image that we added (C</dev/sda>).  If the disk contains
154 Linux LVM2 logical volumes you could refer to those instead (eg. C</dev/VG/LV>).
155
156 If you are given a disk image and you don't know what it contains then
157 you have to find out.  Libguestfs can do that too: use
158 C<guestfs_list_partitions> and C<guestfs_lvs> to list possible
159 partitions and LVs, and either try mounting each to see what is
160 mountable, or else examine them with C<guestfs_file>.  But you might
161 find it easier to look at higher level programs built on top of
162 libguestfs, in particular L<virt-inspector(1)>.
163
164 To mount a disk image read-only, use C<guestfs_mount_ro>.  There are
165 several other variations of the C<guestfs_mount_*> call.
166
167 =head2 FILESYSTEM ACCESS AND MODIFICATION
168
169 The majority of the libguestfs API consists of fairly low-level calls
170 for accessing and modifying the files, directories, symlinks etc on
171 mounted filesystems.  There are over a hundred such calls which you
172 can find listed in detail below in this man page, and we don't even
173 pretend to cover them all in this overview.
174
175 Specify filenames as full paths including the mount point.
176
177 For example, if you mounted a filesystem at C<"/"> and you want to
178 read the file called C<"etc/passwd"> then you could do:
179
180  char *data = guestfs_cat (g, "/etc/passwd");
181
182 This would return C<data> as a newly allocated buffer containing the
183 full content of that file (with some conditions: see also
184 L</DOWNLOADING> below), or C<NULL> if there was an error.
185
186 As another example, to create a top-level directory on that filesystem
187 called C<"var"> you would do:
188
189  guestfs_mkdir (g, "/var");
190
191 To create a symlink you could do:
192
193  guestfs_ln_s (g, "/etc/init.d/portmap",
194                "/etc/rc3.d/S30portmap");
195
196 Libguestfs will reject attempts to use relative paths.  There is no
197 concept of a current working directory.  Libguestfs can return errors
198 in many situations: for example if the filesystem isn't writable, or
199 if a file or directory that you requested doesn't exist.  If you are
200 using the C API (documented here) you have to check for those error
201 conditions after each call.  (Other language bindings turn these
202 errors into exceptions).
203
204 File writes are affected by the per-handle umask, set by calling
205 C<guestfs_umask> and defaulting to 022.  See L</UMASK>.
206
207 =head2 PARTITIONING
208
209 Libguestfs contains API calls to read, create and modify partition
210 tables on disk images.
211
212 In the common case where you want to create a single partition
213 covering the whole disk, you should use the C<guestfs_part_disk>
214 call:
215
216  const char *parttype = "mbr";
217  if (disk_is_larger_than_2TB)
218    parttype = "gpt";
219  guestfs_part_disk (g, "/dev/sda", parttype);
220
221 Obviously this effectively wipes anything that was on that disk image
222 before.
223
224 In general MBR partitions are both unnecessarily complicated and
225 depend on archaic details, namely the Cylinder-Head-Sector (CHS)
226 geometry of the disk.  C<guestfs_sfdiskM> can be used to
227 create more complex arrangements where the relative sizes are
228 expressed in megabytes instead of cylinders, which is a small win.
229 C<guestfs_sfdiskM> will choose the nearest cylinder to approximate the
230 requested size.  There's a lot of crazy stuff to do with IDE and
231 virtio disks having different, incompatible CHS geometries, that you
232 probably don't want to know about.
233
234 My advice: make a single partition to cover the whole disk, then use
235 LVM on top.
236
237 =head2 LVM2
238
239 Libguestfs provides access to a large part of the LVM2 API, such as
240 C<guestfs_lvcreate> and C<guestfs_vgremove>.  It won't make much sense
241 unless you familiarize yourself with the concepts of physical volumes,
242 volume groups and logical volumes.
243
244 This author strongly recommends reading the LVM HOWTO, online at
245 L<http://tldp.org/HOWTO/LVM-HOWTO/>.
246
247 =head2 DOWNLOADING
248
249 Use C<guestfs_cat> to download small, text only files.  This call
250 is limited to files which are less than 2 MB and which cannot contain
251 any ASCII NUL (C<\0>) characters.  However it has a very simple
252 to use API.
253
254 C<guestfs_read_file> can be used to read files which contain
255 arbitrary 8 bit data, since it returns a (pointer, size) pair.
256 However it is still limited to "small" files, less than 2 MB.
257
258 C<guestfs_download> can be used to download any file, with no
259 limits on content or size (even files larger than 4 GB).
260
261 To download multiple files, see C<guestfs_tar_out> and
262 C<guestfs_tgz_out>.
263
264 =head2 UPLOADING
265
266 It's often the case that you want to write a file or files to the disk
267 image.
268
269 For small, single files, use C<guestfs_write_file>.  This call
270 currently contains a bug which limits the call to plain text files
271 (not containing ASCII NUL characters).
272
273 To upload a single file, use C<guestfs_upload>.  This call has no
274 limits on file content or size (even files larger than 4 GB).
275
276 To upload multiple files, see C<guestfs_tar_in> and C<guestfs_tgz_in>.
277
278 However the fastest way to upload I<large numbers of arbitrary files>
279 is to turn them into a squashfs or CD ISO (see L<mksquashfs(8)> and
280 L<mkisofs(8)>), then attach this using C<guestfs_add_drive_ro>.  If
281 you add the drive in a predictable way (eg. adding it last after all
282 other drives) then you can get the device name from
283 C<guestfs_list_devices> and mount it directly using
284 C<guestfs_mount_ro>.  Note that squashfs images are sometimes
285 non-portable between kernel versions, and they don't support labels or
286 UUIDs.  If you want to pre-build an image or you need to mount it
287 using a label or UUID, use an ISO image instead.
288
289 =head2 COPYING
290
291 There are various different commands for copying between files and
292 devices and in and out of the guest filesystem.  These are summarised
293 in the table below.
294
295 =over 4
296
297 =item B<file> to B<file>
298
299 Use L</guestfs_cp> to copy a single file, or
300 L</guestfs_cp_a> to copy directories recursively.
301
302 =item B<file or device> to B<file or device>
303
304 Use L</guestfs_dd> which efficiently uses L<dd(1)>
305 to copy between files and devices in the guest.
306
307 Example: duplicate the contents of an LV:
308
309  guestfs_dd (g, "/dev/VG/Original", "/dev/VG/Copy");
310
311 The destination (C</dev/VG/Copy>) must be at least as large as the
312 source (C</dev/VG/Original>).
313
314 =item B<file on the host> to B<file or device>
315
316 Use L</guestfs_upload>.  See L</UPLOADING> above.
317
318 =item B<file or device> to B<file on the host>
319
320 Use L</guestfs_download>.  See L</DOWNLOADING> above.
321
322 =back
323
324 =head2 LISTING FILES
325
326 C<guestfs_ll> is just designed for humans to read (mainly when using
327 the L<guestfish(1)>-equivalent command C<ll>).
328
329 C<guestfs_ls> is a quick way to get a list of files in a directory
330 from programs, as a flat list of strings.
331
332 C<guestfs_readdir> is a programmatic way to get a list of files in a
333 directory, plus additional information about each one.  It is more
334 equivalent to using the L<readdir(3)> call on a local filesystem.
335
336 C<guestfs_find> can be used to recursively list files.
337
338 =head2 RUNNING COMMANDS
339
340 Although libguestfs is a primarily an API for manipulating files
341 inside guest images, we also provide some limited facilities for
342 running commands inside guests.
343
344 There are many limitations to this:
345
346 =over 4
347
348 =item *
349
350 The kernel version that the command runs under will be different
351 from what it expects.
352
353 =item *
354
355 If the command needs to communicate with daemons, then most likely
356 they won't be running.
357
358 =item *
359
360 The command will be running in limited memory.
361
362 =item *
363
364 Only supports Linux guests (not Windows, BSD, etc).
365
366 =item *
367
368 Architecture limitations (eg. won't work for a PPC guest on
369 an X86 host).
370
371 =item *
372
373 For SELinux guests, you may need to enable SELinux and load policy
374 first.  See L</SELINUX> in this manpage.
375
376 =back
377
378 The two main API calls to run commands are C<guestfs_command> and
379 C<guestfs_sh> (there are also variations).
380
381 The difference is that C<guestfs_sh> runs commands using the shell, so
382 any shell globs, redirections, etc will work.
383
384 =head2 CONFIGURATION FILES
385
386 To read and write configuration files in Linux guest filesystems, we
387 strongly recommend using Augeas.  For example, Augeas understands how
388 to read and write, say, a Linux shadow password file or X.org
389 configuration file, and so avoids you having to write that code.
390
391 The main Augeas calls are bound through the C<guestfs_aug_*> APIs.  We
392 don't document Augeas itself here because there is excellent
393 documentation on the L<http://augeas.net/> website.
394
395 If you don't want to use Augeas (you fool!) then try calling
396 C<guestfs_read_lines> to get the file as a list of lines which
397 you can iterate over.
398
399 =head2 SELINUX
400
401 We support SELinux guests.  To ensure that labeling happens correctly
402 in SELinux guests, you need to enable SELinux and load the guest's
403 policy:
404
405 =over 4
406
407 =item 1.
408
409 Before launching, do:
410
411  guestfs_set_selinux (g, 1);
412
413 =item 2.
414
415 After mounting the guest's filesystem(s), load the policy.  This
416 is best done by running the L<load_policy(8)> command in the
417 guest itself:
418
419  guestfs_sh (g, "/usr/sbin/load_policy");
420
421 (Older versions of C<load_policy> require you to specify the
422 name of the policy file).
423
424 =item 3.
425
426 Optionally, set the security context for the API.  The correct
427 security context to use can only be known by inspecting the
428 guest.  As an example:
429
430  guestfs_setcon (g, "unconfined_u:unconfined_r:unconfined_t:s0");
431
432 =back
433
434 This will work for running commands and editing existing files.
435
436 When new files are created, you may need to label them explicitly,
437 for example by running the external command
438 C<restorecon pathname>.
439
440 =head2 UMASK
441
442 Certain calls are affected by the current file mode creation mask (the
443 "umask").  In particular ones which create files or directories, such
444 as C<guestfs_touch>, C<guestfs_mknod> or C<guestfs_mkdir>.  This
445 affects either the default mode that the file is created with or
446 modifies the mode that you supply.
447
448 The default umask is C<022>, so files are created with modes such as
449 C<0644> and directories with C<0755>.
450
451 There are two ways to avoid being affected by umask.  Either set umask
452 to 0 (call C<guestfs_umask (g, 0)> early after launching).  Or call
453 C<guestfs_chmod> after creating each file or directory.
454
455 For more information about umask, see L<umask(2)>.
456
457 =head2 SPECIAL CONSIDERATIONS FOR WINDOWS GUESTS
458
459 Libguestfs can mount NTFS partitions.  It does this using the
460 L<http://www.ntfs-3g.org/> driver.
461
462 DOS and Windows still use drive letters, and the filesystems are
463 always treated as case insensitive by Windows itself, and therefore
464 you might find a Windows configuration file referring to a path like
465 C<c:\windows\system32>.  When the filesystem is mounted in libguestfs,
466 that directory might be referred to as C</WINDOWS/System32>.
467
468 Drive letter mappings are outside the scope of libguestfs.  You have
469 to use libguestfs to read the appropriate Windows Registry and
470 configuration files, to determine yourself how drives are mapped (see
471 also L<virt-inspector(1)>).
472
473 Replacing backslash characters with forward slash characters is also
474 outside the scope of libguestfs, but something that you can easily do.
475
476 Where we can help is in resolving the case insensitivity of paths.
477 For this, call C<guestfs_case_sensitive_path>.
478
479 Libguestfs also provides some help for decoding Windows Registry
480 "hive" files, through the library C<hivex> which is part of the
481 libguestfs project.  You have to locate and download the hive file(s)
482 yourself, and then pass them to C<hivex> functions.  See also the
483 programs L<hivexml(1)>, L<hivexsh(1)> and L<virt-win-reg(1)> for more
484 help on this issue.
485
486 =head2 USING LIBGUESTFS WITH OTHER PROGRAMMING LANGUAGES
487
488 Although we don't want to discourage you from using the C API, we will
489 mention here that the same API is also available in other languages.
490
491 The API is broadly identical in all supported languages.  This means
492 that the C call C<guestfs_mount(g,path)> is
493 C<$g-E<gt>mount($path)> in Perl, C<g.mount(path)> in Python,
494 and C<Guestfs.mount g path> in OCaml.  In other words, a
495 straightforward, predictable isomorphism between each language.
496
497 Error messages are automatically transformed
498 into exceptions if the language supports it.
499
500 We don't try to "object orientify" parts of the API in OO languages,
501 although contributors are welcome to write higher level APIs above
502 what we provide in their favourite languages if they wish.
503
504 =over 4
505
506 =item B<C++>
507
508 You can use the I<guestfs.h> header file from C++ programs.  The C++
509 API is identical to the C API.  C++ classes and exceptions are
510 not implemented.
511
512 =item B<C#>
513
514 The C# bindings are highly experimental.  Please read the warnings
515 at the top of C<csharp/Libguestfs.cs>.
516
517 =item B<Haskell>
518
519 This is the only language binding that working but incomplete.  Only
520 calls which return simple integers have been bound in Haskell, and we
521 are looking for help to complete this binding.
522
523 =item B<Java>
524
525 Full documentation is contained in the Javadoc which is distributed
526 with libguestfs.
527
528 =item B<OCaml>
529
530 For documentation see the file C<guestfs.mli>.
531
532 =item B<Perl>
533
534 For documentation see L<Sys::Guestfs(3)>.
535
536 =item B<Python>
537
538 For documentation do:
539
540  $ python
541  >>> import guestfs
542  >>> help (guestfs)
543
544 =item B<Ruby>
545
546 Use the Guestfs module.  There is no Ruby-specific documentation, but
547 you can find examples written in Ruby in the libguestfs source.
548
549 =item B<shell scripts>
550
551 For documentation see L<guestfish(1)>.
552
553 =back
554
555 =head2 LIBGUESTFS GOTCHAS
556
557 L<http://en.wikipedia.org/wiki/Gotcha_(programming)>: "A feature of a
558 system [...] that works in the way it is documented but is
559 counterintuitive and almost invites mistakes."
560
561 Since we developed libguestfs and the associated tools, there are
562 several things we would have designed differently, but are now stuck
563 with for backwards compatibility or other reasons.  If there is ever a
564 libguestfs 2.0 release, you can expect these to change.  Beware of
565 them.
566
567 =over 4
568
569 =item Autosync / forgetting to sync.
570
571 When modifying a filesystem from C or another language, you B<must>
572 unmount all filesystems and call L</guestfs_sync> explicitly before
573 you close the libguestfs handle.  You can also call:
574
575  guestfs_set_autosync (g, 1);
576
577 to have the unmount/sync done automatically for you when the handle 'g'
578 is closed.  (This feature is called "autosync", L</guestfs_set_autosync>
579 q.v.)
580
581 If you forget to do this, then it is entirely possible that your
582 changes won't be written out, or will be partially written, or (very
583 rarely) that you'll get disk corruption.
584
585 Note that in L<guestfish(3)> I<autosync is the default>.  So quick and
586 dirty guestfish scripts that forget to sync will work just fine, which
587 can make this extra-puzzling if you are trying to debug a problem.
588
589 =item Mount option C<-o sync> should not be the default.
590
591 If you use C<guestfs_mount>, then C<-o sync,noatime> are added
592 implicitly.  However C<-o sync> does not add any reliability benefit,
593 but does have a very large performance impact.
594
595 The work around is to use C<guestfs_mount_options> and set the mount
596 options that you actually want to use.
597
598 =item Read-only should be the default.
599
600 In L<guestfish(3)>, I<--ro> should be the default, and you should
601 have to specify I<--rw> if you want to make changes to the image.
602
603 This would reduce the potential to corrupt live VM images.
604
605 Note that many filesystems change the disk when you just mount and
606 unmount, even if you didn't perform any writes.  You need to use
607 C<guestfs_add_drive_ro> to guarantee that the disk is not changed.
608
609 =item guestfish command line is hard to use.
610
611 C<guestfish disk.img> doesn't do what people expect (open C<disk.img>
612 for examination).  It tries to run a guestfish command C<disk.img>
613 which doesn't exist, so it fails, and it fails with a strange and
614 unintuitive error message.  Like the Bourne shell, we should have used
615 C<guestfish -c command> to run commands.
616
617 =back
618
619 =head2 PROTOCOL LIMITS
620
621 Internally libguestfs uses a message-based protocol to pass API calls
622 and their responses to and from a small "appliance" (see L</INTERNALS>
623 for plenty more detail about this).  The maximum message size used by
624 the protocol is slightly less than 4 MB.  For some API calls you may
625 need to be aware of this limit.  The API calls which may be affected
626 are individually documented, with a link back to this section of the
627 documentation.
628
629 A simple call such as C<guestfs_cat> returns its result (the file
630 data) in a simple string.  Because this string is at some point
631 internally encoded as a message, the maximum size that it can return
632 is slightly under 4 MB.  If the requested file is larger than this
633 then you will get an error.
634
635 In order to transfer large files into and out of the guest filesystem,
636 you need to use particular calls that support this.  The sections
637 L</UPLOADING> and L</DOWNLOADING> document how to do this.
638
639 You might also consider mounting the disk image using our FUSE
640 filesystem support (L<guestmount(1)>).
641
642 =head1 CONNECTION MANAGEMENT
643
644 =head2 guestfs_h *
645
646 C<guestfs_h> is the opaque type representing a connection handle.
647 Create a handle by calling C<guestfs_create>.  Call C<guestfs_close>
648 to free the handle and release all resources used.
649
650 For information on using multiple handles and threads, see the section
651 L</MULTIPLE HANDLES AND MULTIPLE THREADS> below.
652
653 =head2 guestfs_create
654
655  guestfs_h *guestfs_create (void);
656
657 Create a connection handle.
658
659 You have to call C<guestfs_add_drive> on the handle at least once.
660
661 This function returns a non-NULL pointer to a handle on success or
662 NULL on error.
663
664 After configuring the handle, you have to call C<guestfs_launch>.
665
666 You may also want to configure error handling for the handle.  See
667 L</ERROR HANDLING> section below.
668
669 =head2 guestfs_close
670
671  void guestfs_close (guestfs_h *g);
672
673 This closes the connection handle and frees up all resources used.
674
675 =head1 ERROR HANDLING
676
677 The convention in all functions that return C<int> is that they return
678 C<-1> to indicate an error.  You can get additional information on
679 errors by calling C<guestfs_last_error> and/or by setting up an error
680 handler with C<guestfs_set_error_handler>.
681
682 The default error handler prints the information string to C<stderr>.
683
684 Out of memory errors are handled differently.  The default action is
685 to call L<abort(3)>.  If this is undesirable, then you can set a
686 handler using C<guestfs_set_out_of_memory_handler>.
687
688 =head2 guestfs_last_error
689
690  const char *guestfs_last_error (guestfs_h *g);
691
692 This returns the last error message that happened on C<g>.  If
693 there has not been an error since the handle was created, then this
694 returns C<NULL>.
695
696 The lifetime of the returned string is until the next error occurs, or
697 C<guestfs_close> is called.
698
699 The error string is not localized (ie. is always in English), because
700 this makes searching for error messages in search engines give the
701 largest number of results.
702
703 =head2 guestfs_set_error_handler
704
705  typedef void (*guestfs_error_handler_cb) (guestfs_h *g,
706                                            void *data,
707                                            const char *msg);
708  void guestfs_set_error_handler (guestfs_h *g,
709                                  guestfs_error_handler_cb cb,
710                                  void *data);
711
712 The callback C<cb> will be called if there is an error.  The
713 parameters passed to the callback are an opaque data pointer and the
714 error message string.
715
716 Note that the message string C<msg> is freed as soon as the callback
717 function returns, so if you want to stash it somewhere you must make
718 your own copy.
719
720 The default handler prints messages on C<stderr>.
721
722 If you set C<cb> to C<NULL> then I<no> handler is called.
723
724 =head2 guestfs_get_error_handler
725
726  guestfs_error_handler_cb guestfs_get_error_handler (guestfs_h *g,
727                                                      void **data_rtn);
728
729 Returns the current error handler callback.
730
731 =head2 guestfs_set_out_of_memory_handler
732
733  typedef void (*guestfs_abort_cb) (void);
734  int guestfs_set_out_of_memory_handler (guestfs_h *g,
735                                         guestfs_abort_cb);
736
737 The callback C<cb> will be called if there is an out of memory
738 situation.  I<Note this callback must not return>.
739
740 The default is to call L<abort(3)>.
741
742 You cannot set C<cb> to C<NULL>.  You can't ignore out of memory
743 situations.
744
745 =head2 guestfs_get_out_of_memory_handler
746
747  guestfs_abort_fn guestfs_get_out_of_memory_handler (guestfs_h *g);
748
749 This returns the current out of memory handler.
750
751 =head1 PATH
752
753 Libguestfs needs a kernel and initrd.img, which it finds by looking
754 along an internal path.
755
756 By default it looks for these in the directory C<$libdir/guestfs>
757 (eg. C</usr/local/lib/guestfs> or C</usr/lib64/guestfs>).
758
759 Use C<guestfs_set_path> or set the environment variable
760 C<LIBGUESTFS_PATH> to change the directories that libguestfs will
761 search in.  The value is a colon-separated list of paths.  The current
762 directory is I<not> searched unless the path contains an empty element
763 or C<.>.  For example C<LIBGUESTFS_PATH=:/usr/lib/guestfs> would
764 search the current directory and then C</usr/lib/guestfs>.
765
766 =head1 HIGH-LEVEL API ACTIONS
767
768 =head2 ABI GUARANTEE
769
770 We guarantee the libguestfs ABI (binary interface), for public,
771 high-level actions as outlined in this section.  Although we will
772 deprecate some actions, for example if they get replaced by newer
773 calls, we will keep the old actions forever.  This allows you the
774 developer to program in confidence against libguestfs.
775
776 @ACTIONS@
777
778 =head1 STRUCTURES
779
780 @STRUCTS@
781
782 =head1 AVAILABILITY
783
784 =head2 GROUPS OF FUNCTIONALITY IN THE APPLIANCE
785
786 Using L</guestfs_available> you can test availability of
787 the following groups of functions.  This test queries the
788 appliance to see if the appliance you are currently using
789 supports the functionality.
790
791 @AVAILABILITY@
792
793 =head2 SINGLE CALLS AT COMPILE TIME
794
795 If you need to test whether a single libguestfs function is
796 available at compile time, we recommend using build tools
797 such as autoconf or cmake.  For example in autotools you could
798 use:
799
800  AC_CHECK_LIB([guestfs],[guestfs_create])
801  AC_CHECK_FUNCS([guestfs_dd])
802
803 which would result in C<HAVE_GUESTFS_DD> being either defined
804 or not defined in your program.
805
806 =head2 SINGLE CALLS AT RUN TIME
807
808 Testing at compile time doesn't guarantee that a function really
809 exists in the library.  The reason is that you might be dynamically
810 linked against a previous I<libguestfs.so> (dynamic library)
811 which doesn't have the call.  This situation unfortunately results
812 in a segmentation fault, which is a shortcoming of the C dynamic
813 linking system itself.
814
815 You can use L<dlopen(3)> to test if a function is available
816 at run time, as in this example program (note that you still
817 need the compile time check as well):
818
819  #include <config.h>
820  
821  #include <stdio.h>
822  #include <stdlib.h>
823  #include <unistd.h>
824  #include <dlfcn.h>
825  #include <guestfs.h>
826  
827  main ()
828  {
829  #ifdef HAVE_GUESTFS_DD
830    void *dl;
831    int has_function;
832  
833    /* Test if the function guestfs_dd is really available. */
834    dl = dlopen (NULL, RTLD_LAZY);
835    if (!dl) {
836      fprintf (stderr, "dlopen: %s\n", dlerror ());
837      exit (EXIT_FAILURE);
838    }
839    has_function = dlsym (dl, "guestfs_dd") != NULL;
840    dlclose (dl);
841  
842    if (!has_function)
843      printf ("this libguestfs.so does NOT have guestfs_dd function\n");
844    else {
845      printf ("this libguestfs.so has guestfs_dd function\n");
846      /* Now it's safe to call
847      guestfs_dd (g, "foo", "bar");
848      */
849    }
850  #else
851    printf ("guestfs_dd function was not found at compile time\n");
852  #endif
853   }
854
855 You may think the above is an awful lot of hassle, and it is.
856 There are other ways outside of the C linking system to ensure
857 that this kind of incompatibility never arises, such as using
858 package versioning:
859
860  Requires: libguestfs >= 1.0.80
861
862 =begin html
863
864 <!-- old anchor for the next section -->
865 <a name="state_machine_and_low_level_event_api"/>
866
867 =end html
868
869 =head1 ARCHITECTURE
870
871 Internally, libguestfs is implemented by running an appliance (a
872 special type of small virtual machine) using L<qemu(1)>.  Qemu runs as
873 a child process of the main program.
874
875   ___________________
876  /                   \
877  | main program      |
878  |                   |
879  |                   |           child process / appliance
880  |                   |           __________________________
881  |                   |          / qemu                     \
882  +-------------------+   RPC    |      +-----------------+ |
883  | libguestfs     <--------------------> guestfsd        | |
884  |                   |          |      +-----------------+ |
885  \___________________/          |      | Linux kernel    | |
886                                 |      +--^--------------+ |
887                                 \_________|________________/
888                                           |
889                                    _______v______
890                                   /              \
891                                   | Device or    |
892                                   | disk image   |
893                                   \______________/
894
895 The library, linked to the main program, creates the child process and
896 hence the appliance in the L</guestfs_launch> function.
897
898 Inside the appliance is a Linux kernel and a complete stack of
899 userspace tools (such as LVM and ext2 programs) and a small
900 controlling daemon called C<guestfsd>.  The library talks to
901 C<guestfsd> using remote procedure calls (RPC).  There is a mostly
902 one-to-one correspondence between libguestfs API calls and RPC calls
903 to the daemon.  Lastly the disk image(s) are attached to the qemu
904 process which translates device access by the appliance's Linux kernel
905 into accesses to the image.
906
907 A common misunderstanding is that the appliance "is" the virtual
908 machine.  Although the disk image you are attached to might also be
909 used by some virtual machine, libguestfs doesn't know or care about
910 this.  (But you will care if both libguestfs's qemu process and your
911 virtual machine are trying to update the disk image at the same time,
912 since these usually results in massive disk corruption).
913
914 =head1 STATE MACHINE
915
916 libguestfs uses a state machine to model the child process:
917
918                          |
919                     guestfs_create
920                          |
921                          |
922                      ____V_____
923                     /          \
924                     |  CONFIG  |
925                     \__________/
926                      ^ ^   ^  \
927                     /  |    \  \ guestfs_launch
928                    /   |    _\__V______
929                   /    |   /           \
930                  /     |   | LAUNCHING |
931                 /      |   \___________/
932                /       |       /
933               /        |  guestfs_launch
934              /         |     /
935     ______  /        __|____V
936    /      \ ------> /        \
937    | BUSY |         | READY  |
938    \______/ <------ \________/
939
940 The normal transitions are (1) CONFIG (when the handle is created, but
941 there is no child process), (2) LAUNCHING (when the child process is
942 booting up), (3) alternating between READY and BUSY as commands are
943 issued to, and carried out by, the child process.
944
945 The guest may be killed by C<guestfs_kill_subprocess>, or may die
946 asynchronously at any time (eg. due to some internal error), and that
947 causes the state to transition back to CONFIG.
948
949 Configuration commands for qemu such as C<guestfs_add_drive> can only
950 be issued when in the CONFIG state.
951
952 The high-level API offers two calls that go from CONFIG through
953 LAUNCHING to READY.  C<guestfs_launch> blocks until the child process
954 is READY to accept commands (or until some failure or timeout).
955 C<guestfs_launch> internally moves the state from CONFIG to LAUNCHING
956 while it is running.
957
958 High-level API actions such as C<guestfs_mount> can only be issued
959 when in the READY state.  These high-level API calls block waiting for
960 the command to be carried out (ie. the state to transition to BUSY and
961 then back to READY).  But using the low-level event API, you get
962 non-blocking versions.  (But you can still only carry out one
963 operation per handle at a time - that is a limitation of the
964 communications protocol we use).
965
966 Finally, the child process sends asynchronous messages back to the
967 main program, such as kernel log messages.  Mostly these are ignored
968 by the high-level API, but using the low-level event API you can
969 register to receive these messages.
970
971 =head2 SETTING CALLBACKS TO HANDLE EVENTS
972
973 The child process generates events in some situations.  Current events
974 include: receiving a log message, the child process exits.
975
976 Use the C<guestfs_set_*_callback> functions to set a callback for
977 different types of events.
978
979 Only I<one callback of each type> can be registered for each handle.
980 Calling C<guestfs_set_*_callback> again overwrites the previous
981 callback of that type.  Cancel all callbacks of this type by calling
982 this function with C<cb> set to C<NULL>.
983
984 =head2 guestfs_set_log_message_callback
985
986  typedef void (*guestfs_log_message_cb) (guestfs_h *g, void *opaque,
987                                          char *buf, int len);
988  void guestfs_set_log_message_callback (guestfs_h *g,
989                                         guestfs_log_message_cb cb,
990                                         void *opaque);
991
992 The callback function C<cb> will be called whenever qemu or the guest
993 writes anything to the console.
994
995 Use this function to capture kernel messages and similar.
996
997 Normally there is no log message handler, and log messages are just
998 discarded.
999
1000 =head2 guestfs_set_subprocess_quit_callback
1001
1002  typedef void (*guestfs_subprocess_quit_cb) (guestfs_h *g, void *opaque);
1003  void guestfs_set_subprocess_quit_callback (guestfs_h *g,
1004                                             guestfs_subprocess_quit_cb cb,
1005                                             void *opaque);
1006
1007 The callback function C<cb> will be called when the child process
1008 quits, either asynchronously or if killed by
1009 C<guestfs_kill_subprocess>.  (This corresponds to a transition from
1010 any state to the CONFIG state).
1011
1012 =head2 guestfs_set_launch_done_callback
1013
1014  typedef void (*guestfs_launch_done_cb) (guestfs_h *g, void *opaque);
1015  void guestfs_set_launch_done_callback (guestfs_h *g,
1016                                         guestfs_ready_cb cb,
1017                                         void *opaque);
1018
1019 The callback function C<cb> will be called when the child process
1020 becomes ready first time after it has been launched.  (This
1021 corresponds to a transition from LAUNCHING to the READY state).
1022
1023 =head1 BLOCK DEVICE NAMING
1024
1025 In the kernel there is now quite a profusion of schemata for naming
1026 block devices (in this context, by I<block device> I mean a physical
1027 or virtual hard drive).  The original Linux IDE driver used names
1028 starting with C</dev/hd*>.  SCSI devices have historically used a
1029 different naming scheme, C</dev/sd*>.  When the Linux kernel I<libata>
1030 driver became a popular replacement for the old IDE driver
1031 (particularly for SATA devices) those devices also used the
1032 C</dev/sd*> scheme.  Additionally we now have virtual machines with
1033 paravirtualized drivers.  This has created several different naming
1034 systems, such as C</dev/vd*> for virtio disks and C</dev/xvd*> for Xen
1035 PV disks.
1036
1037 As discussed above, libguestfs uses a qemu appliance running an
1038 embedded Linux kernel to access block devices.  We can run a variety
1039 of appliances based on a variety of Linux kernels.
1040
1041 This causes a problem for libguestfs because many API calls use device
1042 or partition names.  Working scripts and the recipe (example) scripts
1043 that we make available over the internet could fail if the naming
1044 scheme changes.
1045
1046 Therefore libguestfs defines C</dev/sd*> as the I<standard naming
1047 scheme>.  Internally C</dev/sd*> names are translated, if necessary,
1048 to other names as required.  For example, under RHEL 5 which uses the
1049 C</dev/hd*> scheme, any device parameter C</dev/sda2> is translated to
1050 C</dev/hda2> transparently.
1051
1052 Note that this I<only> applies to parameters.  The
1053 C<guestfs_list_devices>, C<guestfs_list_partitions> and similar calls
1054 return the true names of the devices and partitions as known to the
1055 appliance.
1056
1057 =head2 ALGORITHM FOR BLOCK DEVICE NAME TRANSLATION
1058
1059 Usually this translation is transparent.  However in some (very rare)
1060 cases you may need to know the exact algorithm.  Such cases include
1061 where you use C<guestfs_config> to add a mixture of virtio and IDE
1062 devices to the qemu-based appliance, so have a mixture of C</dev/sd*>
1063 and C</dev/vd*> devices.
1064
1065 The algorithm is applied only to I<parameters> which are known to be
1066 either device or partition names.  Return values from functions such
1067 as C<guestfs_list_devices> are never changed.
1068
1069 =over 4
1070
1071 =item *
1072
1073 Is the string a parameter which is a device or partition name?
1074
1075 =item *
1076
1077 Does the string begin with C</dev/sd>?
1078
1079 =item *
1080
1081 Does the named device exist?  If so, we use that device.
1082 However if I<not> then we continue with this algorithm.
1083
1084 =item *
1085
1086 Replace initial C</dev/sd> string with C</dev/hd>.
1087
1088 For example, change C</dev/sda2> to C</dev/hda2>.
1089
1090 If that named device exists, use it.  If not, continue.
1091
1092 =item *
1093
1094 Replace initial C</dev/sd> string with C</dev/vd>.
1095
1096 If that named device exists, use it.  If not, return an error.
1097
1098 =back
1099
1100 =head2 PORTABILITY CONCERNS
1101
1102 Although the standard naming scheme and automatic translation is
1103 useful for simple programs and guestfish scripts, for larger programs
1104 it is best not to rely on this mechanism.
1105
1106 Where possible for maximum future portability programs using
1107 libguestfs should use these future-proof techniques:
1108
1109 =over 4
1110
1111 =item *
1112
1113 Use C<guestfs_list_devices> or C<guestfs_list_partitions> to list
1114 actual device names, and then use those names directly.
1115
1116 Since those device names exist by definition, they will never be
1117 translated.
1118
1119 =item *
1120
1121 Use higher level ways to identify filesystems, such as LVM names,
1122 UUIDs and filesystem labels.
1123
1124 =back
1125
1126 =head1 INTERNALS
1127
1128 =head2 COMMUNICATION PROTOCOL
1129
1130 Don't rely on using this protocol directly.  This section documents
1131 how it currently works, but it may change at any time.
1132
1133 The protocol used to talk between the library and the daemon running
1134 inside the qemu virtual machine is a simple RPC mechanism built on top
1135 of XDR (RFC 1014, RFC 1832, RFC 4506).
1136
1137 The detailed format of structures is in C<src/guestfs_protocol.x>
1138 (note: this file is automatically generated).
1139
1140 There are two broad cases, ordinary functions that don't have any
1141 C<FileIn> and C<FileOut> parameters, which are handled with very
1142 simple request/reply messages.  Then there are functions that have any
1143 C<FileIn> or C<FileOut> parameters, which use the same request and
1144 reply messages, but they may also be followed by files sent using a
1145 chunked encoding.
1146
1147 =head3 ORDINARY FUNCTIONS (NO FILEIN/FILEOUT PARAMS)
1148
1149 For ordinary functions, the request message is:
1150
1151  total length (header + arguments,
1152       but not including the length word itself)
1153  struct guestfs_message_header (encoded as XDR)
1154  struct guestfs_<foo>_args (encoded as XDR)
1155
1156 The total length field allows the daemon to allocate a fixed size
1157 buffer into which it slurps the rest of the message.  As a result, the
1158 total length is limited to C<GUESTFS_MESSAGE_MAX> bytes (currently
1159 4MB), which means the effective size of any request is limited to
1160 somewhere under this size.
1161
1162 Note also that many functions don't take any arguments, in which case
1163 the C<guestfs_I<foo>_args> is completely omitted.
1164
1165 The header contains the procedure number (C<guestfs_proc>) which is
1166 how the receiver knows what type of args structure to expect, or none
1167 at all.
1168
1169 The reply message for ordinary functions is:
1170
1171  total length (header + ret,
1172       but not including the length word itself)
1173  struct guestfs_message_header (encoded as XDR)
1174  struct guestfs_<foo>_ret (encoded as XDR)
1175
1176 As above the C<guestfs_I<foo>_ret> structure may be completely omitted
1177 for functions that return no formal return values.
1178
1179 As above the total length of the reply is limited to
1180 C<GUESTFS_MESSAGE_MAX>.
1181
1182 In the case of an error, a flag is set in the header, and the reply
1183 message is slightly changed:
1184
1185  total length (header + error,
1186       but not including the length word itself)
1187  struct guestfs_message_header (encoded as XDR)
1188  struct guestfs_message_error (encoded as XDR)
1189
1190 The C<guestfs_message_error> structure contains the error message as a
1191 string.
1192
1193 =head3 FUNCTIONS THAT HAVE FILEIN PARAMETERS
1194
1195 A C<FileIn> parameter indicates that we transfer a file I<into> the
1196 guest.  The normal request message is sent (see above).  However this
1197 is followed by a sequence of file chunks.
1198
1199  total length (header + arguments,
1200       but not including the length word itself,
1201       and not including the chunks)
1202  struct guestfs_message_header (encoded as XDR)
1203  struct guestfs_<foo>_args (encoded as XDR)
1204  sequence of chunks for FileIn param #0
1205  sequence of chunks for FileIn param #1 etc.
1206
1207 The "sequence of chunks" is:
1208
1209  length of chunk (not including length word itself)
1210  struct guestfs_chunk (encoded as XDR)
1211  length of chunk
1212  struct guestfs_chunk (encoded as XDR)
1213    ...
1214  length of chunk
1215  struct guestfs_chunk (with data.data_len == 0)
1216
1217 The final chunk has the C<data_len> field set to zero.  Additionally a
1218 flag is set in the final chunk to indicate either successful
1219 completion or early cancellation.
1220
1221 At time of writing there are no functions that have more than one
1222 FileIn parameter.  However this is (theoretically) supported, by
1223 sending the sequence of chunks for each FileIn parameter one after
1224 another (from left to right).
1225
1226 Both the library (sender) I<and> the daemon (receiver) may cancel the
1227 transfer.  The library does this by sending a chunk with a special
1228 flag set to indicate cancellation.  When the daemon sees this, it
1229 cancels the whole RPC, does I<not> send any reply, and goes back to
1230 reading the next request.
1231
1232 The daemon may also cancel.  It does this by writing a special word
1233 C<GUESTFS_CANCEL_FLAG> to the socket.  The library listens for this
1234 during the transfer, and if it gets it, it will cancel the transfer
1235 (it sends a cancel chunk).  The special word is chosen so that even if
1236 cancellation happens right at the end of the transfer (after the
1237 library has finished writing and has started listening for the reply),
1238 the "spurious" cancel flag will not be confused with the reply
1239 message.
1240
1241 This protocol allows the transfer of arbitrary sized files (no 32 bit
1242 limit), and also files where the size is not known in advance
1243 (eg. from pipes or sockets).  However the chunks are rather small
1244 (C<GUESTFS_MAX_CHUNK_SIZE>), so that neither the library nor the
1245 daemon need to keep much in memory.
1246
1247 =head3 FUNCTIONS THAT HAVE FILEOUT PARAMETERS
1248
1249 The protocol for FileOut parameters is exactly the same as for FileIn
1250 parameters, but with the roles of daemon and library reversed.
1251
1252  total length (header + ret,
1253       but not including the length word itself,
1254       and not including the chunks)
1255  struct guestfs_message_header (encoded as XDR)
1256  struct guestfs_<foo>_ret (encoded as XDR)
1257  sequence of chunks for FileOut param #0
1258  sequence of chunks for FileOut param #1 etc.
1259
1260 =head3 INITIAL MESSAGE
1261
1262 Because the underlying channel (QEmu -net channel) doesn't have any
1263 sort of connection control, when the daemon launches it sends an
1264 initial word (C<GUESTFS_LAUNCH_FLAG>) which indicates that the guest
1265 and daemon is alive.  This is what C<guestfs_launch> waits for.
1266
1267 =head1 MULTIPLE HANDLES AND MULTIPLE THREADS
1268
1269 All high-level libguestfs actions are synchronous.  If you want
1270 to use libguestfs asynchronously then you must create a thread.
1271
1272 Only use the handle from a single thread.  Either use the handle
1273 exclusively from one thread, or provide your own mutex so that two
1274 threads cannot issue calls on the same handle at the same time.
1275
1276 =head1 QEMU WRAPPERS
1277
1278 If you want to compile your own qemu, run qemu from a non-standard
1279 location, or pass extra arguments to qemu, then you can write a
1280 shell-script wrapper around qemu.
1281
1282 There is one important rule to remember: you I<must C<exec qemu>> as
1283 the last command in the shell script (so that qemu replaces the shell
1284 and becomes the direct child of the libguestfs-using program).  If you
1285 don't do this, then the qemu process won't be cleaned up correctly.
1286
1287 Here is an example of a wrapper, where I have built my own copy of
1288 qemu from source:
1289
1290  #!/bin/sh -
1291  qemudir=/home/rjones/d/qemu
1292  exec $qemudir/x86_64-softmmu/qemu-system-x86_64 -L $qemudir/pc-bios "$@"
1293
1294 Save this script as C</tmp/qemu.wrapper> (or wherever), C<chmod +x>,
1295 and then use it by setting the LIBGUESTFS_QEMU environment variable.
1296 For example:
1297
1298  LIBGUESTFS_QEMU=/tmp/qemu.wrapper guestfish
1299
1300 Note that libguestfs also calls qemu with the -help and -version
1301 options in order to determine features.
1302
1303 =head1 LIBGUESTFS VERSION NUMBERS
1304
1305 Since April 2010, libguestfs has started to make separate development
1306 and stable releases, along with corresponding branches in our git
1307 repository.  These separate releases can be identified by version
1308 number:
1309
1310                  even numbers for stable: 1.2.x, 1.4.x, ...
1311        .-------- odd numbers for development: 1.3.x, 1.5.x, ...
1312        |
1313        v
1314  1  .  3  .  5
1315  ^           ^
1316  |           |
1317  |           `-------- sub-version
1318  |
1319  `------ always '1' because we don't change the ABI
1320
1321 Thus "1.3.5" is the 5th update to the development branch "1.3".
1322
1323 As time passes we cherry pick fixes from the development branch and
1324 backport those into the stable branch, the effect being that the
1325 stable branch should get more stable and less buggy over time.  So the
1326 stable releases are ideal for people who don't need new features but
1327 would just like the software to work.
1328
1329 Our criteria for backporting changes are:
1330
1331 =over 4
1332
1333 =item *
1334
1335 Documentation changes which don't affect any code are
1336 backported unless the documentation refers to a future feature
1337 which is not in stable.
1338
1339 =item *
1340
1341 Bug fixes which are not controversial, fix obvious problems, and
1342 have been well tested are backported.
1343
1344 =item *
1345
1346 Simple rearrangements of code which shouldn't affect how it works get
1347 backported.  This is so that the code in the two branches doesn't get
1348 too far out of step, allowing us to backport future fixes more easily.
1349
1350 =item *
1351
1352 We I<don't> backport new features, new APIs, new tools etc, except in
1353 one exceptional case: the new feature is required in order to
1354 implement an important bug fix.
1355
1356 =back
1357
1358 A new stable branch starts when we think the new features in
1359 development are substantial and compelling enough over the current
1360 stable branch to warrant it.  When that happens we create new stable
1361 and development versions 1.N.0 and 1.(N+1).0 [N is even].  The new
1362 dot-oh release won't necessarily be so stable at this point, but by
1363 backporting fixes from development, that branch will stabilize over
1364 time.
1365
1366 =head1 ENVIRONMENT VARIABLES
1367
1368 =over 4
1369
1370 =item LIBGUESTFS_APPEND
1371
1372 Pass additional options to the guest kernel.
1373
1374 =item LIBGUESTFS_DEBUG
1375
1376 Set C<LIBGUESTFS_DEBUG=1> to enable verbose messages.  This
1377 has the same effect as calling C<guestfs_set_verbose (g, 1)>.
1378
1379 =item LIBGUESTFS_MEMSIZE
1380
1381 Set the memory allocated to the qemu process, in megabytes.  For
1382 example:
1383
1384  LIBGUESTFS_MEMSIZE=700
1385
1386 =item LIBGUESTFS_PATH
1387
1388 Set the path that libguestfs uses to search for kernel and initrd.img.
1389 See the discussion of paths in section PATH above.
1390
1391 =item LIBGUESTFS_QEMU
1392
1393 Set the default qemu binary that libguestfs uses.  If not set, then
1394 the qemu which was found at compile time by the configure script is
1395 used.
1396
1397 See also L</QEMU WRAPPERS> above.
1398
1399 =item LIBGUESTFS_TRACE
1400
1401 Set C<LIBGUESTFS_TRACE=1> to enable command traces.  This
1402 has the same effect as calling C<guestfs_set_trace (g, 1)>.
1403
1404 =item TMPDIR
1405
1406 Location of temporary directory, defaults to C</tmp>.
1407
1408 If libguestfs was compiled to use the supermin appliance then each
1409 handle will require rather a large amount of space in this directory
1410 for short periods of time (~ 80 MB).  You can use C<$TMPDIR> to
1411 configure another directory to use in case C</tmp> is not large
1412 enough.
1413
1414 =back
1415
1416 =head1 SEE ALSO
1417
1418 L<guestfish(1)>,
1419 L<guestmount(1)>,
1420 L<virt-cat(1)>,
1421 L<virt-df(1)>,
1422 L<virt-edit(1)>,
1423 L<virt-inspector(1)>,
1424 L<virt-list-filesystems(1)>,
1425 L<virt-list-partitions(1)>,
1426 L<virt-ls(1)>,
1427 L<virt-make-fs(1)>,
1428 L<virt-rescue(1)>,
1429 L<virt-tar(1)>,
1430 L<virt-win-reg(1)>,
1431 L<qemu(1)>,
1432 L<febootstrap(1)>,
1433 L<hivex(3)>,
1434 L<http://libguestfs.org/>.
1435
1436 Tools with a similar purpose:
1437 L<fdisk(8)>,
1438 L<parted(8)>,
1439 L<kpartx(8)>,
1440 L<lvm(8)>,
1441 L<disktype(1)>.
1442
1443 =head1 BUGS
1444
1445 To get a list of bugs against libguestfs use this link:
1446
1447 L<https://bugzilla.redhat.com/buglist.cgi?component=libguestfs&product=Virtualization+Tools>
1448
1449 To report a new bug against libguestfs use this link:
1450
1451 L<https://bugzilla.redhat.com/enter_bug.cgi?component=libguestfs&product=Virtualization+Tools>
1452
1453 When reporting a bug, please check:
1454
1455 =over 4
1456
1457 =item *
1458
1459 That the bug hasn't been reported already.
1460
1461 =item *
1462
1463 That you are testing a recent version.
1464
1465 =item *
1466
1467 Describe the bug accurately, and give a way to reproduce it.
1468
1469 =item *
1470
1471 Run libguestfs-test-tool and paste the B<complete, unedited>
1472 output into the bug report.
1473
1474 =back
1475
1476 =head1 AUTHORS
1477
1478 Richard W.M. Jones (C<rjones at redhat dot com>)
1479
1480 =head1 COPYRIGHT
1481
1482 Copyright (C) 2009 Red Hat Inc.
1483 L<http://libguestfs.org/>
1484
1485 This library is free software; you can redistribute it and/or
1486 modify it under the terms of the GNU Lesser General Public
1487 License as published by the Free Software Foundation; either
1488 version 2 of the License, or (at your option) any later version.
1489
1490 This library is distributed in the hope that it will be useful,
1491 but WITHOUT ANY WARRANTY; without even the implied warranty of
1492 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
1493 Lesser General Public License for more details.
1494
1495 You should have received a copy of the GNU Lesser General Public
1496 License along with this library; if not, write to the Free Software
1497 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA