inspect: Abstract the wrapper that sets up Augeas.
[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, PHP, 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 in the main section of this
60 manual.
61
62 =head2 HANDLES
63
64 Before you can use libguestfs calls, you have to create a handle.
65 Then you must add at least one disk image to the handle, followed by
66 launching the handle, then performing whatever operations you want,
67 and finally closing the handle.  By convention we use the single
68 letter C<g> for the name of the handle variable, although of course
69 you can use any name you want.
70
71 The general structure of all libguestfs-using programs looks like
72 this:
73
74  guestfs_h *g = guestfs_create ();
75  
76  /* Call guestfs_add_drive additional times if there are
77   * multiple disk images.
78   */
79  guestfs_add_drive (g, "guest.img");
80  
81  /* Most manipulation calls won't work until you've launched
82   * the handle 'g'.  You have to do this _after_ adding drives
83   * and _before_ other commands.
84   */
85  guestfs_launch (g);
86  
87  /* Now you can examine what partitions, LVs etc are available.
88   */
89  char **partitions = guestfs_list_partitions (g);
90  char **logvols = guestfs_lvs (g);
91  
92  /* To access a filesystem in the image, you must mount it.
93   */
94  guestfs_mount (g, "/dev/sda1", "/");
95  
96  /* Now you can perform filesystem actions on the guest
97   * disk image.
98   */
99  guestfs_touch (g, "/hello");
100  
101  /* You only need to call guestfs_sync if you have made
102   * changes to the guest image.  (But if you've made changes
103   * then you *must* sync).  See also: guestfs_umount and
104   * guestfs_umount_all calls.
105   */
106  guestfs_sync (g);
107  
108  /* Close the handle 'g'. */
109  guestfs_close (g);
110
111 The code above doesn't include any error checking.  In real code you
112 should check return values carefully for errors.  In general all
113 functions that return integers return C<-1> on error, and all
114 functions that return pointers return C<NULL> on error.  See section
115 L</ERROR HANDLING> below for how to handle errors, and consult the
116 documentation for each function call below to see precisely how they
117 return error indications.
118
119 =head2 DISK IMAGES
120
121 The image filename (C<"guest.img"> in the example above) could be a
122 disk image from a virtual machine, a L<dd(1)> copy of a physical hard
123 disk, an actual block device, or simply an empty file of zeroes that
124 you have created through L<posix_fallocate(3)>.  Libguestfs lets you
125 do useful things to all of these.
126
127 The call you should use in modern code for adding drives is
128 L</guestfs_add_drive_opts>.  To add a disk image, allowing writes, and
129 specifying that the format is raw, do:
130
131  guestfs_add_drive_opts (g, filename,
132                          GUESTFS_ADD_DRIVE_OPTS_FORMAT, "raw",
133                          -1);
134
135 You can add a disk read-only using:
136
137  guestfs_add_drive_opts (g, filename,
138                          GUESTFS_ADD_DRIVE_OPTS_FORMAT, "raw",
139                          GUESTFS_ADD_DRIVE_OPTS_READONLY, 1,
140                          -1);
141
142 or by calling the older function L</guestfs_add_drive_ro>.  In either
143 case libguestfs won't modify the file.
144
145 Be extremely cautious if the disk image is in use, eg. if it is being
146 used by a virtual machine.  Adding it read-write will almost certainly
147 cause disk corruption, but adding it read-only is safe.
148
149 You must add at least one disk image, and you may add multiple disk
150 images.  In the API, the disk images are usually referred to as
151 C</dev/sda> (for the first one you added), C</dev/sdb> (for the second
152 one you added), etc.
153
154 Once L</guestfs_launch> has been called you cannot add any more images.
155 You can call L</guestfs_list_devices> to get a list of the device
156 names, in the order that you added them.  See also L</BLOCK DEVICE
157 NAMING> below.
158
159 =head2 MOUNTING
160
161 Before you can read or write files, create directories and so on in a
162 disk image that contains filesystems, you have to mount those
163 filesystems using L</guestfs_mount>.  If you already know that a disk
164 image contains (for example) one partition with a filesystem on that
165 partition, then you can mount it directly:
166
167  guestfs_mount (g, "/dev/sda1", "/");
168
169 where C</dev/sda1> means literally the first partition (C<1>) of the
170 first disk image that we added (C</dev/sda>).  If the disk contains
171 Linux LVM2 logical volumes you could refer to those instead (eg. C</dev/VG/LV>).
172
173 If you are given a disk image and you don't know what it contains then
174 you have to find out.  Libguestfs can do that too: use
175 L</guestfs_list_partitions> and L</guestfs_lvs> to list possible
176 partitions and LVs, and either try mounting each to see what is
177 mountable, or else examine them with L</guestfs_vfs_type> or
178 L</guestfs_file>.  Libguestfs also has a set of APIs for inspection of
179 disk images (see L</INSPECTION> below).  But you might find it easier
180 to look at higher level programs built on top of libguestfs, in
181 particular L<virt-inspector(1)>.
182
183 To mount a disk image read-only, use L</guestfs_mount_ro>.  There are
184 several other variations of the C<guestfs_mount_*> call.
185
186 =head2 FILESYSTEM ACCESS AND MODIFICATION
187
188 The majority of the libguestfs API consists of fairly low-level calls
189 for accessing and modifying the files, directories, symlinks etc on
190 mounted filesystems.  There are over a hundred such calls which you
191 can find listed in detail below in this man page, and we don't even
192 pretend to cover them all in this overview.
193
194 Specify filenames as full paths, starting with C<"/"> and including
195 the mount point.
196
197 For example, if you mounted a filesystem at C<"/"> and you want to
198 read the file called C<"etc/passwd"> then you could do:
199
200  char *data = guestfs_cat (g, "/etc/passwd");
201
202 This would return C<data> as a newly allocated buffer containing the
203 full content of that file (with some conditions: see also
204 L</DOWNLOADING> below), or C<NULL> if there was an error.
205
206 As another example, to create a top-level directory on that filesystem
207 called C<"var"> you would do:
208
209  guestfs_mkdir (g, "/var");
210
211 To create a symlink you could do:
212
213  guestfs_ln_s (g, "/etc/init.d/portmap",
214                "/etc/rc3.d/S30portmap");
215
216 Libguestfs will reject attempts to use relative paths and there is no
217 concept of a current working directory.
218
219 Libguestfs can return errors in many situations: for example if the
220 filesystem isn't writable, or if a file or directory that you
221 requested doesn't exist.  If you are using the C API (documented here)
222 you have to check for those error conditions after each call.  (Other
223 language bindings turn these errors into exceptions).
224
225 File writes are affected by the per-handle umask, set by calling
226 L</guestfs_umask> and defaulting to 022.  See L</UMASK>.
227
228 =head2 PARTITIONING
229
230 Libguestfs contains API calls to read, create and modify partition
231 tables on disk images.
232
233 In the common case where you want to create a single partition
234 covering the whole disk, you should use the L</guestfs_part_disk>
235 call:
236
237  const char *parttype = "mbr";
238  if (disk_is_larger_than_2TB)
239    parttype = "gpt";
240  guestfs_part_disk (g, "/dev/sda", parttype);
241
242 Obviously this effectively wipes anything that was on that disk image
243 before.
244
245 =head2 LVM2
246
247 Libguestfs provides access to a large part of the LVM2 API, such as
248 L</guestfs_lvcreate> and L</guestfs_vgremove>.  It won't make much sense
249 unless you familiarize yourself with the concepts of physical volumes,
250 volume groups and logical volumes.
251
252 This author strongly recommends reading the LVM HOWTO, online at
253 L<http://tldp.org/HOWTO/LVM-HOWTO/>.
254
255 =head2 DOWNLOADING
256
257 Use L</guestfs_cat> to download small, text only files.  This call
258 is limited to files which are less than 2 MB and which cannot contain
259 any ASCII NUL (C<\0>) characters.  However it has a very simple
260 to use API.
261
262 L</guestfs_read_file> can be used to read files which contain
263 arbitrary 8 bit data, since it returns a (pointer, size) pair.
264 However it is still limited to "small" files, less than 2 MB.
265
266 L</guestfs_download> can be used to download any file, with no
267 limits on content or size (even files larger than 4 GB).
268
269 To download multiple files, see L</guestfs_tar_out> and
270 L</guestfs_tgz_out>.
271
272 =head2 UPLOADING
273
274 It's often the case that you want to write a file or files to the disk
275 image.
276
277 To write a small file with fixed content, use L</guestfs_write>.  To
278 create a file of all zeroes, use L</guestfs_truncate_size> (sparse) or
279 L</guestfs_fallocate64> (with all disk blocks allocated).  There are a
280 variety of other functions for creating test files, for example
281 L</guestfs_fill> and L</guestfs_fill_pattern>.
282
283 To upload a single file, use L</guestfs_upload>.  This call has no
284 limits on file content or size (even files larger than 4 GB).
285
286 To upload multiple files, see L</guestfs_tar_in> and L</guestfs_tgz_in>.
287
288 However the fastest way to upload I<large numbers of arbitrary files>
289 is to turn them into a squashfs or CD ISO (see L<mksquashfs(8)> and
290 L<mkisofs(8)>), then attach this using L</guestfs_add_drive_ro>.  If
291 you add the drive in a predictable way (eg. adding it last after all
292 other drives) then you can get the device name from
293 L</guestfs_list_devices> and mount it directly using
294 L</guestfs_mount_ro>.  Note that squashfs images are sometimes
295 non-portable between kernel versions, and they don't support labels or
296 UUIDs.  If you want to pre-build an image or you need to mount it
297 using a label or UUID, use an ISO image instead.
298
299 =head2 COPYING
300
301 There are various different commands for copying between files and
302 devices and in and out of the guest filesystem.  These are summarised
303 in the table below.
304
305 =over 4
306
307 =item B<file> to B<file>
308
309 Use L</guestfs_cp> to copy a single file, or
310 L</guestfs_cp_a> to copy directories recursively.
311
312 =item B<file or device> to B<file or device>
313
314 Use L</guestfs_dd> which efficiently uses L<dd(1)>
315 to copy between files and devices in the guest.
316
317 Example: duplicate the contents of an LV:
318
319  guestfs_dd (g, "/dev/VG/Original", "/dev/VG/Copy");
320
321 The destination (C</dev/VG/Copy>) must be at least as large as the
322 source (C</dev/VG/Original>).  To copy less than the whole
323 source device, use L</guestfs_copy_size>.
324
325 =item B<file on the host> to B<file or device>
326
327 Use L</guestfs_upload>.  See L</UPLOADING> above.
328
329 =item B<file or device> to B<file on the host>
330
331 Use L</guestfs_download>.  See L</DOWNLOADING> above.
332
333 =back
334
335 =head2 LISTING FILES
336
337 L</guestfs_ll> is just designed for humans to read (mainly when using
338 the L<guestfish(1)>-equivalent command C<ll>).
339
340 L</guestfs_ls> is a quick way to get a list of files in a directory
341 from programs, as a flat list of strings.
342
343 L</guestfs_readdir> is a programmatic way to get a list of files in a
344 directory, plus additional information about each one.  It is more
345 equivalent to using the L<readdir(3)> call on a local filesystem.
346
347 L</guestfs_find> and L</guestfs_find0> can be used to recursively list
348 files.
349
350 =head2 RUNNING COMMANDS
351
352 Although libguestfs is primarily an API for manipulating files
353 inside guest images, we also provide some limited facilities for
354 running commands inside guests.
355
356 There are many limitations to this:
357
358 =over 4
359
360 =item *
361
362 The kernel version that the command runs under will be different
363 from what it expects.
364
365 =item *
366
367 If the command needs to communicate with daemons, then most likely
368 they won't be running.
369
370 =item *
371
372 The command will be running in limited memory.
373
374 =item *
375
376 The network may not be available unless you enable it
377 (see L</guestfs_set_network>).
378
379 =item *
380
381 Only supports Linux guests (not Windows, BSD, etc).
382
383 =item *
384
385 Architecture limitations (eg. won't work for a PPC guest on
386 an X86 host).
387
388 =item *
389
390 For SELinux guests, you may need to enable SELinux and load policy
391 first.  See L</SELINUX> in this manpage.
392
393 =item *
394
395 I<Security:> It is not safe to run commands from untrusted, possibly
396 malicious guests.  These commands may attempt to exploit your program
397 by sending unexpected output.  They could also try to exploit the
398 Linux kernel or qemu provided by the libguestfs appliance.  They could
399 use the network provided by the libguestfs appliance to bypass
400 ordinary network partitions and firewalls.  They could use the
401 elevated privileges or different SELinux context of your program
402 to their advantage.
403
404 A secure alternative is to use libguestfs to install a "firstboot"
405 script (a script which runs when the guest next boots normally), and
406 to have this script run the commands you want in the normal context of
407 the running guest, network security and so on.  For information about
408 other security issues, see L</SECURITY>.
409
410 =back
411
412 The two main API calls to run commands are L</guestfs_command> and
413 L</guestfs_sh> (there are also variations).
414
415 The difference is that L</guestfs_sh> runs commands using the shell, so
416 any shell globs, redirections, etc will work.
417
418 =head2 CONFIGURATION FILES
419
420 To read and write configuration files in Linux guest filesystems, we
421 strongly recommend using Augeas.  For example, Augeas understands how
422 to read and write, say, a Linux shadow password file or X.org
423 configuration file, and so avoids you having to write that code.
424
425 The main Augeas calls are bound through the C<guestfs_aug_*> APIs.  We
426 don't document Augeas itself here because there is excellent
427 documentation on the L<http://augeas.net/> website.
428
429 If you don't want to use Augeas (you fool!) then try calling
430 L</guestfs_read_lines> to get the file as a list of lines which
431 you can iterate over.
432
433 =head2 SELINUX
434
435 We support SELinux guests.  To ensure that labeling happens correctly
436 in SELinux guests, you need to enable SELinux and load the guest's
437 policy:
438
439 =over 4
440
441 =item 1.
442
443 Before launching, do:
444
445  guestfs_set_selinux (g, 1);
446
447 =item 2.
448
449 After mounting the guest's filesystem(s), load the policy.  This
450 is best done by running the L<load_policy(8)> command in the
451 guest itself:
452
453  guestfs_sh (g, "/usr/sbin/load_policy");
454
455 (Older versions of C<load_policy> require you to specify the
456 name of the policy file).
457
458 =item 3.
459
460 Optionally, set the security context for the API.  The correct
461 security context to use can only be known by inspecting the
462 guest.  As an example:
463
464  guestfs_setcon (g, "unconfined_u:unconfined_r:unconfined_t:s0");
465
466 =back
467
468 This will work for running commands and editing existing files.
469
470 When new files are created, you may need to label them explicitly,
471 for example by running the external command
472 C<restorecon pathname>.
473
474 =head2 UMASK
475
476 Certain calls are affected by the current file mode creation mask (the
477 "umask").  In particular ones which create files or directories, such
478 as L</guestfs_touch>, L</guestfs_mknod> or L</guestfs_mkdir>.  This
479 affects either the default mode that the file is created with or
480 modifies the mode that you supply.
481
482 The default umask is C<022>, so files are created with modes such as
483 C<0644> and directories with C<0755>.
484
485 There are two ways to avoid being affected by umask.  Either set umask
486 to 0 (call C<guestfs_umask (g, 0)> early after launching).  Or call
487 L</guestfs_chmod> after creating each file or directory.
488
489 For more information about umask, see L<umask(2)>.
490
491 =head2 ENCRYPTED DISKS
492
493 Libguestfs allows you to access Linux guests which have been
494 encrypted using whole disk encryption that conforms to the
495 Linux Unified Key Setup (LUKS) standard.  This includes
496 nearly all whole disk encryption systems used by modern
497 Linux guests.
498
499 Use L</guestfs_vfs_type> to identify LUKS-encrypted block
500 devices (it returns the string C<crypto_LUKS>).
501
502 Then open these devices by calling L</guestfs_luks_open>.
503 Obviously you will require the passphrase!
504
505 Opening a LUKS device creates a new device mapper device
506 called C</dev/mapper/mapname> (where C<mapname> is the
507 string you supply to L</guestfs_luks_open>).
508 Reads and writes to this mapper device are decrypted from and
509 encrypted to the underlying block device respectively.
510
511 LVM volume groups on the device can be made visible by calling
512 L</guestfs_vgscan> followed by L</guestfs_vg_activate_all>.
513 The logical volume(s) can now be mounted in the usual way.
514
515 Use the reverse process to close a LUKS device.  Unmount
516 any logical volumes on it, deactivate the volume groups
517 by caling C<guestfs_vg_activate (g, 0, ["/dev/VG"])>.
518 Then close the mapper device by calling
519 L</guestfs_luks_close> on the C</dev/mapper/mapname>
520 device (I<not> the underlying encrypted block device).
521
522 =head2 INSPECTION
523
524 Libguestfs has APIs for inspecting an unknown disk image to find out
525 if it contains operating systems.  (These APIs used to be in a
526 separate Perl-only library called L<Sys::Guestfs::Lib(3)> but since
527 version 1.5.3 the most frequently used part of this library has been
528 rewritten in C and moved into the core code).
529
530 Add all disks belonging to the unknown virtual machine and call
531 L</guestfs_launch> in the usual way.
532
533 Then call L</guestfs_inspect_os>.  This function uses other libguestfs
534 calls and certain heuristics, and returns a list of operating systems
535 that were found.  An empty list means none were found.  A single
536 element is the root filesystem of the operating system.  For dual- or
537 multi-boot guests, multiple roots can be returned, each one
538 corresponding to a separate operating system.  (Multi-boot virtual
539 machines are extremely rare in the world of virtualization, but since
540 this scenario can happen, we have built libguestfs to deal with it.)
541
542 For each root, you can then call various C<guestfs_inspect_get_*>
543 functions to get additional details about that operating system.  For
544 example, call L</guestfs_inspect_get_type> to return the string
545 C<windows> or C<linux> for Windows and Linux-based operating systems
546 respectively.
547
548 Un*x-like and Linux-based operating systems usually consist of several
549 filesystems which are mounted at boot time (for example, a separate
550 boot partition mounted on C</boot>).  The inspection rules are able to
551 detect how filesystems correspond to mount points.  Call
552 C<guestfs_inspect_get_mountpoints> to get this mapping.  It might
553 return a hash table like this example:
554
555  /boot => /dev/sda1
556  /     => /dev/vg_guest/lv_root
557  /usr  => /dev/vg_guest/lv_usr
558
559 The caller can then make calls to L</guestfs_mount_options> to
560 mount the filesystems as suggested.
561
562 Be careful to mount filesystems in the right order (eg. C</> before
563 C</usr>).  Sorting the keys of the hash by length, shortest first,
564 should work.
565
566 Inspection currently only works for some common operating systems.
567 Contributors are welcome to send patches for other operating systems
568 that we currently cannot detect.
569
570 Encrypted disks must be opened before inspection.  See
571 L</ENCRYPTED DISKS> for more details.  The L</guestfs_inspect_os>
572 function just ignores any encrypted devices.
573
574 A note on the implementation: The call L</guestfs_inspect_os> performs
575 inspection and caches the results in the guest handle.  Subsequent
576 calls to C<guestfs_inspect_get_*> return this cached information, but
577 I<do not> re-read the disks.  If you change the content of the guest
578 disks, you can redo inspection by calling L</guestfs_inspect_os>
579 again.  (L</guestfs_inspect_list_applications> works a little
580 differently from the other calls and does read the disks.  See
581 documentation for that function for details).
582
583 =head2 SPECIAL CONSIDERATIONS FOR WINDOWS GUESTS
584
585 Libguestfs can mount NTFS partitions.  It does this using the
586 L<http://www.ntfs-3g.org/> driver.
587
588 DOS and Windows still use drive letters, and the filesystems are
589 always treated as case insensitive by Windows itself, and therefore
590 you might find a Windows configuration file referring to a path like
591 C<c:\windows\system32>.  When the filesystem is mounted in libguestfs,
592 that directory might be referred to as C</WINDOWS/System32>.
593
594 Drive letter mappings are outside the scope of libguestfs.  You have
595 to use libguestfs to read the appropriate Windows Registry and
596 configuration files, to determine yourself how drives are mapped (see
597 also L<hivex(3)> and L<virt-inspector(1)>).
598
599 Replacing backslash characters with forward slash characters is also
600 outside the scope of libguestfs, but something that you can easily do.
601
602 Where we can help is in resolving the case insensitivity of paths.
603 For this, call L</guestfs_case_sensitive_path>.
604
605 Libguestfs also provides some help for decoding Windows Registry
606 "hive" files, through the library C<hivex> which is part of the
607 libguestfs project although ships as a separate tarball.  You have to
608 locate and download the hive file(s) yourself, and then pass them to
609 C<hivex> functions.  See also the programs L<hivexml(1)>,
610 L<hivexsh(1)>, L<hivexregedit(1)> and L<virt-win-reg(1)> for more help
611 on this issue.
612
613 =head2 USING LIBGUESTFS WITH OTHER PROGRAMMING LANGUAGES
614
615 Although we don't want to discourage you from using the C API, we will
616 mention here that the same API is also available in other languages.
617
618 The API is broadly identical in all supported languages.  This means
619 that the C call C<guestfs_mount(g,path)> is
620 C<$g-E<gt>mount($path)> in Perl, C<g.mount(path)> in Python,
621 and C<Guestfs.mount g path> in OCaml.  In other words, a
622 straightforward, predictable isomorphism between each language.
623
624 Error messages are automatically transformed
625 into exceptions if the language supports it.
626
627 We don't try to "object orientify" parts of the API in OO languages,
628 although contributors are welcome to write higher level APIs above
629 what we provide in their favourite languages if they wish.
630
631 =over 4
632
633 =item B<C++>
634
635 You can use the I<guestfs.h> header file from C++ programs.  The C++
636 API is identical to the C API.  C++ classes and exceptions are not
637 used.
638
639 =item B<C#>
640
641 The C# bindings are highly experimental.  Please read the warnings
642 at the top of C<csharp/Libguestfs.cs>.
643
644 =item B<Haskell>
645
646 This is the only language binding that is working but incomplete.
647 Only calls which return simple integers have been bound in Haskell,
648 and we are looking for help to complete this binding.
649
650 =item B<Java>
651
652 Full documentation is contained in the Javadoc which is distributed
653 with libguestfs.
654
655 =item B<OCaml>
656
657 For documentation see the file C<guestfs.mli>.
658
659 =item B<Perl>
660
661 For documentation see L<Sys::Guestfs(3)>.
662
663 =item B<PHP>
664
665 For documentation see C<README-PHP> supplied with libguestfs
666 sources or in the php-libguestfs package for your distribution.
667
668 The PHP binding only works correctly on 64 bit machines.
669
670 =item B<Python>
671
672 For documentation do:
673
674  $ python
675  >>> import guestfs
676  >>> help (guestfs)
677
678 =item B<Ruby>
679
680 Use the Guestfs module.  There is no Ruby-specific documentation, but
681 you can find examples written in Ruby in the libguestfs source.
682
683 =item B<shell scripts>
684
685 For documentation see L<guestfish(1)>.
686
687 =back
688
689 =head2 LIBGUESTFS GOTCHAS
690
691 L<http://en.wikipedia.org/wiki/Gotcha_(programming)>: "A feature of a
692 system [...] that works in the way it is documented but is
693 counterintuitive and almost invites mistakes."
694
695 Since we developed libguestfs and the associated tools, there are
696 several things we would have designed differently, but are now stuck
697 with for backwards compatibility or other reasons.  If there is ever a
698 libguestfs 2.0 release, you can expect these to change.  Beware of
699 them.
700
701 =over 4
702
703 =item Autosync / forgetting to sync.
704
705 When modifying a filesystem from C or another language, you B<must>
706 unmount all filesystems and call L</guestfs_sync> explicitly before
707 you close the libguestfs handle.  You can also call:
708
709  guestfs_set_autosync (g, 1);
710
711 to have the unmount/sync done automatically for you when the handle 'g'
712 is closed.  (This feature is called "autosync", L</guestfs_set_autosync>
713 q.v.)
714
715 If you forget to do this, then it is entirely possible that your
716 changes won't be written out, or will be partially written, or (very
717 rarely) that you'll get disk corruption.
718
719 Note that in L<guestfish(3)> autosync is the default.  So quick and
720 dirty guestfish scripts that forget to sync will work just fine, which
721 can make this very puzzling if you are trying to debug a problem.
722
723 Update: Autosync is enabled by default for all API users starting from
724 libguestfs 1.5.24.
725
726 =item Mount option C<-o sync> should not be the default.
727
728 If you use L</guestfs_mount>, then C<-o sync,noatime> are added
729 implicitly.  However C<-o sync> does not add any reliability benefit,
730 but does have a very large performance impact.
731
732 The work around is to use L</guestfs_mount_options> and set the mount
733 options that you actually want to use.
734
735 =item Read-only should be the default.
736
737 In L<guestfish(3)>, I<--ro> should be the default, and you should
738 have to specify I<--rw> if you want to make changes to the image.
739
740 This would reduce the potential to corrupt live VM images.
741
742 Note that many filesystems change the disk when you just mount and
743 unmount, even if you didn't perform any writes.  You need to use
744 L</guestfs_add_drive_ro> to guarantee that the disk is not changed.
745
746 =item guestfish command line is hard to use.
747
748 C<guestfish disk.img> doesn't do what people expect (open C<disk.img>
749 for examination).  It tries to run a guestfish command C<disk.img>
750 which doesn't exist, so it fails.  In earlier versions of guestfish
751 the error message was also unintuitive, but we have corrected this
752 since.  Like the Bourne shell, we should have used C<guestfish -c
753 command> to run commands.
754
755 =item guestfish megabyte modifiers don't work right on all commands
756
757 In recent guestfish you can use C<1M> to mean 1 megabyte (and
758 similarly for other modifiers).  What guestfish actually does is to
759 multiply the number part by the modifier part and pass the result to
760 the C API.  However this doesn't work for a few APIs which aren't
761 expecting bytes, but are already expecting some other unit
762 (eg. megabytes).
763
764 The most common is L</guestfs_lvcreate>.  The guestfish command:
765
766  lvcreate LV VG 100M
767
768 does not do what you might expect.  Instead because
769 L</guestfs_lvcreate> is already expecting megabytes, this tries to
770 create a 100 I<terabyte> (100 megabytes * megabytes) logical volume.
771 The error message you get from this is also a little obscure.
772
773 This could be fixed in the generator by specially marking parameters
774 and return values which take bytes or other units.
775
776 =item Ambiguity between devices and paths
777
778 There is a subtle ambiguity in the API between a device name
779 (eg. C</dev/sdb2>) and a similar pathname.  A file might just happen
780 to be called C<sdb2> in the directory C</dev> (consider some non-Unix
781 VM image).
782
783 In the current API we usually resolve this ambiguity by having two
784 separate calls, for example L</guestfs_checksum> and
785 L</guestfs_checksum_device>.  Some API calls are ambiguous and
786 (incorrectly) resolve the problem by detecting if the path supplied
787 begins with C</dev/>.
788
789 To avoid both the ambiguity and the need to duplicate some calls, we
790 could make paths/devices into structured names.  One way to do this
791 would be to use a notation like grub (C<hd(0,0)>), although nobody
792 really likes this aspect of grub.  Another way would be to use a
793 structured type, equivalent to this OCaml type:
794
795  type path = Path of string | Device of int | Partition of int * int
796
797 which would allow you to pass arguments like:
798
799  Path "/foo/bar"
800  Device 1            (* /dev/sdb, or perhaps /dev/sda *)
801  Partition (1, 2)    (* /dev/sdb2 (or is it /dev/sda2 or /dev/sdb3?) *)
802  Path "/dev/sdb2"    (* not a device *)
803
804 As you can see there are still problems to resolve even with this
805 representation.  Also consider how it might work in guestfish.
806
807 =back
808
809 =head2 PROTOCOL LIMITS
810
811 Internally libguestfs uses a message-based protocol to pass API calls
812 and their responses to and from a small "appliance" (see L</INTERNALS>
813 for plenty more detail about this).  The maximum message size used by
814 the protocol is slightly less than 4 MB.  For some API calls you may
815 need to be aware of this limit.  The API calls which may be affected
816 are individually documented, with a link back to this section of the
817 documentation.
818
819 A simple call such as L</guestfs_cat> returns its result (the file
820 data) in a simple string.  Because this string is at some point
821 internally encoded as a message, the maximum size that it can return
822 is slightly under 4 MB.  If the requested file is larger than this
823 then you will get an error.
824
825 In order to transfer large files into and out of the guest filesystem,
826 you need to use particular calls that support this.  The sections
827 L</UPLOADING> and L</DOWNLOADING> document how to do this.
828
829 You might also consider mounting the disk image using our FUSE
830 filesystem support (L<guestmount(1)>).
831
832 =head2 KEYS AND PASSPHRASES
833
834 Certain libguestfs calls take a parameter that contains sensitive key
835 material, passed in as a C string.
836
837 In the future we would hope to change the libguestfs implementation so
838 that keys are L<mlock(2)>-ed into physical RAM, and thus can never end
839 up in swap.  However this is I<not> done at the moment, because of the
840 complexity of such an implementation.
841
842 Therefore you should be aware that any key parameter you pass to
843 libguestfs might end up being written out to the swap partition.  If
844 this is a concern, scrub the swap partition or don't use libguestfs on
845 encrypted devices.
846
847 =head2 MULTIPLE HANDLES AND MULTIPLE THREADS
848
849 All high-level libguestfs actions are synchronous.  If you want
850 to use libguestfs asynchronously then you must create a thread.
851
852 Only use the handle from a single thread.  Either use the handle
853 exclusively from one thread, or provide your own mutex so that two
854 threads cannot issue calls on the same handle at the same time.
855
856 See the graphical program guestfs-browser for one possible
857 architecture for multithreaded programs using libvirt and libguestfs.
858
859 =head2 PATH
860
861 Libguestfs needs a kernel and initrd.img, which it finds by looking
862 along an internal path.
863
864 By default it looks for these in the directory C<$libdir/guestfs>
865 (eg. C</usr/local/lib/guestfs> or C</usr/lib64/guestfs>).
866
867 Use L</guestfs_set_path> or set the environment variable
868 L</LIBGUESTFS_PATH> to change the directories that libguestfs will
869 search in.  The value is a colon-separated list of paths.  The current
870 directory is I<not> searched unless the path contains an empty element
871 or C<.>.  For example C<LIBGUESTFS_PATH=:/usr/lib/guestfs> would
872 search the current directory and then C</usr/lib/guestfs>.
873
874 =head2 QEMU WRAPPERS
875
876 If you want to compile your own qemu, run qemu from a non-standard
877 location, or pass extra arguments to qemu, then you can write a
878 shell-script wrapper around qemu.
879
880 There is one important rule to remember: you I<must C<exec qemu>> as
881 the last command in the shell script (so that qemu replaces the shell
882 and becomes the direct child of the libguestfs-using program).  If you
883 don't do this, then the qemu process won't be cleaned up correctly.
884
885 Here is an example of a wrapper, where I have built my own copy of
886 qemu from source:
887
888  #!/bin/sh -
889  qemudir=/home/rjones/d/qemu
890  exec $qemudir/x86_64-softmmu/qemu-system-x86_64 -L $qemudir/pc-bios "$@"
891
892 Save this script as C</tmp/qemu.wrapper> (or wherever), C<chmod +x>,
893 and then use it by setting the LIBGUESTFS_QEMU environment variable.
894 For example:
895
896  LIBGUESTFS_QEMU=/tmp/qemu.wrapper guestfish
897
898 Note that libguestfs also calls qemu with the -help and -version
899 options in order to determine features.
900
901 =head2 ABI GUARANTEE
902
903 We guarantee the libguestfs ABI (binary interface), for public,
904 high-level actions as outlined in this section.  Although we will
905 deprecate some actions, for example if they get replaced by newer
906 calls, we will keep the old actions forever.  This allows you the
907 developer to program in confidence against the libguestfs API.
908
909 =head2 BLOCK DEVICE NAMING
910
911 In the kernel there is now quite a profusion of schemata for naming
912 block devices (in this context, by I<block device> I mean a physical
913 or virtual hard drive).  The original Linux IDE driver used names
914 starting with C</dev/hd*>.  SCSI devices have historically used a
915 different naming scheme, C</dev/sd*>.  When the Linux kernel I<libata>
916 driver became a popular replacement for the old IDE driver
917 (particularly for SATA devices) those devices also used the
918 C</dev/sd*> scheme.  Additionally we now have virtual machines with
919 paravirtualized drivers.  This has created several different naming
920 systems, such as C</dev/vd*> for virtio disks and C</dev/xvd*> for Xen
921 PV disks.
922
923 As discussed above, libguestfs uses a qemu appliance running an
924 embedded Linux kernel to access block devices.  We can run a variety
925 of appliances based on a variety of Linux kernels.
926
927 This causes a problem for libguestfs because many API calls use device
928 or partition names.  Working scripts and the recipe (example) scripts
929 that we make available over the internet could fail if the naming
930 scheme changes.
931
932 Therefore libguestfs defines C</dev/sd*> as the I<standard naming
933 scheme>.  Internally C</dev/sd*> names are translated, if necessary,
934 to other names as required.  For example, under RHEL 5 which uses the
935 C</dev/hd*> scheme, any device parameter C</dev/sda2> is translated to
936 C</dev/hda2> transparently.
937
938 Note that this I<only> applies to parameters.  The
939 L</guestfs_list_devices>, L</guestfs_list_partitions> and similar calls
940 return the true names of the devices and partitions as known to the
941 appliance.
942
943 =head3 ALGORITHM FOR BLOCK DEVICE NAME TRANSLATION
944
945 Usually this translation is transparent.  However in some (very rare)
946 cases you may need to know the exact algorithm.  Such cases include
947 where you use L</guestfs_config> to add a mixture of virtio and IDE
948 devices to the qemu-based appliance, so have a mixture of C</dev/sd*>
949 and C</dev/vd*> devices.
950
951 The algorithm is applied only to I<parameters> which are known to be
952 either device or partition names.  Return values from functions such
953 as L</guestfs_list_devices> are never changed.
954
955 =over 4
956
957 =item *
958
959 Is the string a parameter which is a device or partition name?
960
961 =item *
962
963 Does the string begin with C</dev/sd>?
964
965 =item *
966
967 Does the named device exist?  If so, we use that device.
968 However if I<not> then we continue with this algorithm.
969
970 =item *
971
972 Replace initial C</dev/sd> string with C</dev/hd>.
973
974 For example, change C</dev/sda2> to C</dev/hda2>.
975
976 If that named device exists, use it.  If not, continue.
977
978 =item *
979
980 Replace initial C</dev/sd> string with C</dev/vd>.
981
982 If that named device exists, use it.  If not, return an error.
983
984 =back
985
986 =head3 PORTABILITY CONCERNS WITH BLOCK DEVICE NAMING
987
988 Although the standard naming scheme and automatic translation is
989 useful for simple programs and guestfish scripts, for larger programs
990 it is best not to rely on this mechanism.
991
992 Where possible for maximum future portability programs using
993 libguestfs should use these future-proof techniques:
994
995 =over 4
996
997 =item *
998
999 Use L</guestfs_list_devices> or L</guestfs_list_partitions> to list
1000 actual device names, and then use those names directly.
1001
1002 Since those device names exist by definition, they will never be
1003 translated.
1004
1005 =item *
1006
1007 Use higher level ways to identify filesystems, such as LVM names,
1008 UUIDs and filesystem labels.
1009
1010 =back
1011
1012 =head1 SECURITY
1013
1014 This section discusses security implications of using libguestfs,
1015 particularly with untrusted or malicious guests or disk images.
1016
1017 =head2 GENERAL SECURITY CONSIDERATIONS
1018
1019 Be careful with any files or data that you download from a guest (by
1020 "download" we mean not just the L</guestfs_download> command but any
1021 command that reads files, filenames, directories or anything else from
1022 a disk image).  An attacker could manipulate the data to fool your
1023 program into doing the wrong thing.  Consider cases such as:
1024
1025 =over 4
1026
1027 =item *
1028
1029 the data (file etc) not being present
1030
1031 =item *
1032
1033 being present but empty
1034
1035 =item *
1036
1037 being much larger than normal
1038
1039 =item *
1040
1041 containing arbitrary 8 bit data
1042
1043 =item *
1044
1045 being in an unexpected character encoding
1046
1047 =item *
1048
1049 containing homoglyphs.
1050
1051 =back
1052
1053 =head2 SECURITY OF MOUNTING FILESYSTEMS
1054
1055 When you mount a filesystem under Linux, mistakes in the kernel
1056 filesystem (VFS) module can sometimes be escalated into exploits by
1057 deliberately creating a malicious, malformed filesystem.  These
1058 exploits are very severe for two reasons.  Firstly there are very many
1059 filesystem drivers in the kernel, and many of them are infrequently
1060 used and not much developer attention has been paid to the code.
1061 Linux userspace helps potential crackers by detecting the filesystem
1062 type and automatically choosing the right VFS driver, even if that
1063 filesystem type is obscure or unexpected for the administrator.
1064 Secondly, a kernel-level exploit is like a local root exploit (worse
1065 in some ways), giving immediate and total access to the system right
1066 down to the hardware level.
1067
1068 That explains why you should never mount a filesystem from an
1069 untrusted guest on your host kernel.  How about libguestfs?  We run a
1070 Linux kernel inside a qemu virtual machine, usually running as a
1071 non-root user.  The attacker would need to write a filesystem which
1072 first exploited the kernel, and then exploited either qemu
1073 virtualization (eg. a faulty qemu driver) or the libguestfs protocol,
1074 and finally to be as serious as the host kernel exploit it would need
1075 to escalate its privileges to root.  This multi-step escalation,
1076 performed by a static piece of data, is thought to be extremely hard
1077 to do, although we never say 'never' about security issues.
1078
1079 In any case callers can reduce the attack surface by forcing the
1080 filesystem type when mounting (use L</guestfs_mount_vfs>).
1081
1082 =head2 PROTOCOL SECURITY
1083
1084 The protocol is designed to be secure, being based on RFC 4506 (XDR)
1085 with a defined upper message size.  However a program that uses
1086 libguestfs must also take care - for example you can write a program
1087 that downloads a binary from a disk image and executes it locally, and
1088 no amount of protocol security will save you from the consequences.
1089
1090 =head2 INSPECTION SECURITY
1091
1092 Parts of the inspection API (see L</INSPECTION>) return untrusted
1093 strings directly from the guest, and these could contain any 8 bit
1094 data.  Callers should be careful to escape these before printing them
1095 to a structured file (for example, use HTML escaping if creating a web
1096 page).
1097
1098 The inspection API parses guest configuration using two external
1099 libraries: Augeas (Linux configuration) and hivex (Windows Registry).
1100 Both are designed to be robust in the face of malicious data, although
1101 denial of service attacks are still possible, for example with
1102 oversized configuration files.
1103
1104 =head2 RUNNING UNTRUSTED GUEST COMMANDS
1105
1106 Be very cautious about running commands from the guest.  By running a
1107 command in the guest, you are giving CPU time to a binary that you do
1108 not control, under the same user account as the library, albeit
1109 wrapped in qemu virtualization.  More information and alternatives can
1110 be found in the section L</RUNNING COMMANDS>.
1111
1112 =head2 CVE-2010-3851
1113
1114 https://bugzilla.redhat.com/642934
1115
1116 This security bug concerns the automatic disk format detection that
1117 qemu does on disk images.
1118
1119 A raw disk image is just the raw bytes, there is no header.  Other
1120 disk images like qcow2 contain a special header.  Qemu deals with this
1121 by looking for one of the known headers, and if none is found then
1122 assuming the disk image must be raw.
1123
1124 This allows a guest which has been given a raw disk image to write
1125 some other header.  At next boot (or when the disk image is accessed
1126 by libguestfs) qemu would do autodetection and think the disk image
1127 format was, say, qcow2 based on the header written by the guest.
1128
1129 This in itself would not be a problem, but qcow2 offers many features,
1130 one of which is to allow a disk image to refer to another image
1131 (called the "backing disk").  It does this by placing the path to the
1132 backing disk into the qcow2 header.  This path is not validated and
1133 could point to any host file (eg. "/etc/passwd").  The backing disk is
1134 then exposed through "holes" in the qcow2 disk image, which of course
1135 is completely under the control of the attacker.
1136
1137 In libguestfs this is rather hard to exploit except under two
1138 circumstances:
1139
1140 =over 4
1141
1142 =item 1.
1143
1144 You have enabled the network or have opened the disk in write mode.
1145
1146 =item 2.
1147
1148 You are also running untrusted code from the guest (see
1149 L</RUNNING COMMANDS>).
1150
1151 =back
1152
1153 The way to avoid this is to specify the expected disk format when
1154 adding disks (the optional C<format> option to
1155 L</guestfs_add_drive_opts>).  You should always do this if the disk is
1156 raw format, and it's a good idea for other cases too.
1157
1158 For disks added from libvirt using calls like L</guestfs_add_domain>,
1159 the format is fetched from libvirt and passed through.
1160
1161 For libguestfs tools, use the I<--format> command line parameter as
1162 appropriate.
1163
1164 =head1 CONNECTION MANAGEMENT
1165
1166 =head2 guestfs_h *
1167
1168 C<guestfs_h> is the opaque type representing a connection handle.
1169 Create a handle by calling L</guestfs_create>.  Call L</guestfs_close>
1170 to free the handle and release all resources used.
1171
1172 For information on using multiple handles and threads, see the section
1173 L</MULTIPLE HANDLES AND MULTIPLE THREADS> below.
1174
1175 =head2 guestfs_create
1176
1177  guestfs_h *guestfs_create (void);
1178
1179 Create a connection handle.
1180
1181 You have to call L</guestfs_add_drive_opts> (or one of the equivalent
1182 calls) on the handle at least once.
1183
1184 This function returns a non-NULL pointer to a handle on success or
1185 NULL on error.
1186
1187 After configuring the handle, you have to call L</guestfs_launch>.
1188
1189 You may also want to configure error handling for the handle.  See
1190 L</ERROR HANDLING> section below.
1191
1192 =head2 guestfs_close
1193
1194  void guestfs_close (guestfs_h *g);
1195
1196 This closes the connection handle and frees up all resources used.
1197
1198 =head1 ERROR HANDLING
1199
1200 API functions can return errors.  For example, almost all functions
1201 that return C<int> will return C<-1> to indicate an error.
1202
1203 Additional information is available for errors: an error message
1204 string and optionally an error number (errno) if the thing that failed
1205 was a system call.
1206
1207 You can get at the additional information about the last error on the
1208 handle by calling L</guestfs_last_error>, L</guestfs_last_errno>,
1209 and/or by setting up an error handler with
1210 L</guestfs_set_error_handler>.
1211
1212 When the handle is created, a default error handler is installed which
1213 prints the error message string to C<stderr>.  For small short-running
1214 command line programs it is sufficient to do:
1215
1216  if (guestfs_launch (g) == -1)
1217    exit (EXIT_FAILURE);
1218
1219 since the default error handler will ensure that an error message has
1220 been printed to C<stderr> before the program exits.
1221
1222 For other programs the caller will almost certainly want to install an
1223 alternate error handler or do error handling in-line like this:
1224
1225  g = guestfs_create ();
1226  
1227  /* This disables the default behaviour of printing errors
1228     on stderr. */
1229  guestfs_set_error_handler (g, NULL, NULL);
1230  
1231  if (guestfs_launch (g) == -1) {
1232    /* Examine the error message and print it etc. */
1233    char *msg = guestfs_last_error (g);
1234    int errnum = guestfs_last_errno (g);
1235    fprintf (stderr, "%s\n", msg);
1236    /* ... */
1237   }
1238
1239 Out of memory errors are handled differently.  The default action is
1240 to call L<abort(3)>.  If this is undesirable, then you can set a
1241 handler using L</guestfs_set_out_of_memory_handler>.
1242
1243 L</guestfs_create> returns C<NULL> if the handle cannot be created,
1244 and because there is no handle if this happens there is no way to get
1245 additional error information.  However L</guestfs_create> is supposed
1246 to be a lightweight operation which can only fail because of
1247 insufficient memory (it returns NULL in this case).
1248
1249 =head2 guestfs_last_error
1250
1251  const char *guestfs_last_error (guestfs_h *g);
1252
1253 This returns the last error message that happened on C<g>.  If
1254 there has not been an error since the handle was created, then this
1255 returns C<NULL>.
1256
1257 The lifetime of the returned string is until the next error occurs, or
1258 L</guestfs_close> is called.
1259
1260 =head2 guestfs_last_errno
1261
1262  int guestfs_last_errno (guestfs_h *g);
1263
1264 This returns the last error number (errno) that happened on C<g>.
1265
1266 If successful, an errno integer not equal to zero is returned.
1267
1268 If no error, this returns 0.  This call can return 0 in three
1269 situations:
1270
1271 =over 4
1272
1273 =item 1.
1274
1275 There has not been any error on the handle.
1276
1277 =item 2.
1278
1279 There has been an error but the errno was meaningless.  This
1280 corresponds to the case where the error did not come from a
1281 failed system call, but for some other reason.
1282
1283 =item 3.
1284
1285 There was an error from a failed system call, but for some
1286 reason the errno was not captured and returned.  This usually
1287 indicates a bug in libguestfs.
1288
1289 =back
1290
1291 Libguestfs tries to convert the errno from inside the applicance into
1292 a corresponding errno for the caller (not entirely trivial: the
1293 appliance might be running a completely different operating system
1294 from the library and error numbers are not standardized across
1295 Un*xen).  If this could not be done, then the error is translated to
1296 C<EINVAL>.  In practice this should only happen in very rare
1297 circumstances.
1298
1299 =head2 guestfs_set_error_handler
1300
1301  typedef void (*guestfs_error_handler_cb) (guestfs_h *g,
1302                                            void *opaque,
1303                                            const char *msg);
1304  void guestfs_set_error_handler (guestfs_h *g,
1305                                  guestfs_error_handler_cb cb,
1306                                  void *opaque);
1307
1308 The callback C<cb> will be called if there is an error.  The
1309 parameters passed to the callback are an opaque data pointer and the
1310 error message string.
1311
1312 C<errno> is not passed to the callback.  To get that the callback must
1313 call L</guestfs_last_errno>.
1314
1315 Note that the message string C<msg> is freed as soon as the callback
1316 function returns, so if you want to stash it somewhere you must make
1317 your own copy.
1318
1319 The default handler prints messages on C<stderr>.
1320
1321 If you set C<cb> to C<NULL> then I<no> handler is called.
1322
1323 =head2 guestfs_get_error_handler
1324
1325  guestfs_error_handler_cb guestfs_get_error_handler (guestfs_h *g,
1326                                                      void **opaque_rtn);
1327
1328 Returns the current error handler callback.
1329
1330 =head2 guestfs_set_out_of_memory_handler
1331
1332  typedef void (*guestfs_abort_cb) (void);
1333  int guestfs_set_out_of_memory_handler (guestfs_h *g,
1334                                         guestfs_abort_cb);
1335
1336 The callback C<cb> will be called if there is an out of memory
1337 situation.  I<Note this callback must not return>.
1338
1339 The default is to call L<abort(3)>.
1340
1341 You cannot set C<cb> to C<NULL>.  You can't ignore out of memory
1342 situations.
1343
1344 =head2 guestfs_get_out_of_memory_handler
1345
1346  guestfs_abort_fn guestfs_get_out_of_memory_handler (guestfs_h *g);
1347
1348 This returns the current out of memory handler.
1349
1350 =head1 API CALLS
1351
1352 @ACTIONS@
1353
1354 =head1 STRUCTURES
1355
1356 @STRUCTS@
1357
1358 =head1 AVAILABILITY
1359
1360 =head2 GROUPS OF FUNCTIONALITY IN THE APPLIANCE
1361
1362 Using L</guestfs_available> you can test availability of
1363 the following groups of functions.  This test queries the
1364 appliance to see if the appliance you are currently using
1365 supports the functionality.
1366
1367 @AVAILABILITY@
1368
1369 =head2 GUESTFISH supported COMMAND
1370
1371 In L<guestfish(3)> there is a handy interactive command
1372 C<supported> which prints out the available groups and
1373 whether they are supported by this build of libguestfs.
1374 Note however that you have to do C<run> first.
1375
1376 =head2 SINGLE CALLS AT COMPILE TIME
1377
1378 Since version 1.5.8, C<E<lt>guestfs.hE<gt>> defines symbols
1379 for each C API function, such as:
1380
1381  #define LIBGUESTFS_HAVE_DD 1
1382
1383 if L</guestfs_dd> is available.
1384
1385 Before version 1.5.8, if you needed to test whether a single
1386 libguestfs function is available at compile time, we recommended using
1387 build tools such as autoconf or cmake.  For example in autotools you
1388 could use:
1389
1390  AC_CHECK_LIB([guestfs],[guestfs_create])
1391  AC_CHECK_FUNCS([guestfs_dd])
1392
1393 which would result in C<HAVE_GUESTFS_DD> being either defined
1394 or not defined in your program.
1395
1396 =head2 SINGLE CALLS AT RUN TIME
1397
1398 Testing at compile time doesn't guarantee that a function really
1399 exists in the library.  The reason is that you might be dynamically
1400 linked against a previous I<libguestfs.so> (dynamic library)
1401 which doesn't have the call.  This situation unfortunately results
1402 in a segmentation fault, which is a shortcoming of the C dynamic
1403 linking system itself.
1404
1405 You can use L<dlopen(3)> to test if a function is available
1406 at run time, as in this example program (note that you still
1407 need the compile time check as well):
1408
1409  #include <stdio.h>
1410  #include <stdlib.h>
1411  #include <unistd.h>
1412  #include <dlfcn.h>
1413  #include <guestfs.h>
1414  
1415  main ()
1416  {
1417  #ifdef LIBGUESTFS_HAVE_DD
1418    void *dl;
1419    int has_function;
1420  
1421    /* Test if the function guestfs_dd is really available. */
1422    dl = dlopen (NULL, RTLD_LAZY);
1423    if (!dl) {
1424      fprintf (stderr, "dlopen: %s\n", dlerror ());
1425      exit (EXIT_FAILURE);
1426    }
1427    has_function = dlsym (dl, "guestfs_dd") != NULL;
1428    dlclose (dl);
1429  
1430    if (!has_function)
1431      printf ("this libguestfs.so does NOT have guestfs_dd function\n");
1432    else {
1433      printf ("this libguestfs.so has guestfs_dd function\n");
1434      /* Now it's safe to call
1435      guestfs_dd (g, "foo", "bar");
1436      */
1437    }
1438  #else
1439    printf ("guestfs_dd function was not found at compile time\n");
1440  #endif
1441   }
1442
1443 You may think the above is an awful lot of hassle, and it is.
1444 There are other ways outside of the C linking system to ensure
1445 that this kind of incompatibility never arises, such as using
1446 package versioning:
1447
1448  Requires: libguestfs >= 1.0.80
1449
1450 =head1 CALLS WITH OPTIONAL ARGUMENTS
1451
1452 A recent feature of the API is the introduction of calls which take
1453 optional arguments.  In C these are declared 3 ways.  The main way is
1454 as a call which takes variable arguments (ie. C<...>), as in this
1455 example:
1456
1457  int guestfs_add_drive_opts (guestfs_h *g, const char *filename, ...);
1458
1459 Call this with a list of optional arguments, terminated by C<-1>.
1460 So to call with no optional arguments specified:
1461
1462  guestfs_add_drive_opts (g, filename, -1);
1463
1464 With a single optional argument:
1465
1466  guestfs_add_drive_opts (g, filename,
1467                          GUESTFS_ADD_DRIVE_OPTS_FORMAT, "qcow2",
1468                          -1);
1469
1470 With two:
1471
1472  guestfs_add_drive_opts (g, filename,
1473                          GUESTFS_ADD_DRIVE_OPTS_FORMAT, "qcow2",
1474                          GUESTFS_ADD_DRIVE_OPTS_READONLY, 1,
1475                          -1);
1476
1477 and so forth.  Don't forget the terminating C<-1> otherwise
1478 Bad Things will happen!
1479
1480 =head2 USING va_list FOR OPTIONAL ARGUMENTS
1481
1482 The second variant has the same name with the suffix C<_va>, which
1483 works the same way but takes a C<va_list>.  See the C manual for
1484 details.  For the example function, this is declared:
1485
1486  int guestfs_add_drive_opts_va (guestfs_h *g, const char *filename,
1487                                 va_list args);
1488
1489 =head2 CONSTRUCTING OPTIONAL ARGUMENTS
1490
1491 The third variant is useful where you need to construct these
1492 calls.  You pass in a structure where you fill in the optional
1493 fields.  The structure has a bitmask as the first element which
1494 you must set to indicate which fields you have filled in.  For
1495 our example function the structure and call are declared:
1496
1497  struct guestfs_add_drive_opts_argv {
1498    uint64_t bitmask;
1499    int readonly;
1500    const char *format;
1501    /* ... */
1502  };
1503  int guestfs_add_drive_opts_argv (guestfs_h *g, const char *filename,
1504               const struct guestfs_add_drive_opts_argv *optargs);
1505
1506 You could call it like this:
1507
1508  struct guestfs_add_drive_opts_argv optargs = {
1509    .bitmask = GUESTFS_ADD_DRIVE_OPTS_READONLY_BITMASK |
1510               GUESTFS_ADD_DRIVE_OPTS_FORMAT_BITMASK,
1511    .readonly = 1,
1512    .format = "qcow2"
1513  };
1514  
1515  guestfs_add_drive_opts_argv (g, filename, &optargs);
1516
1517 Notes:
1518
1519 =over 4
1520
1521 =item *
1522
1523 The C<_BITMASK> suffix on each option name when specifying the
1524 bitmask.
1525
1526 =item *
1527
1528 You do not need to fill in all fields of the structure.
1529
1530 =item *
1531
1532 There must be a one-to-one correspondence between fields of the
1533 structure that are filled in, and bits set in the bitmask.
1534
1535 =back
1536
1537 =head2 OPTIONAL ARGUMENTS IN OTHER LANGUAGES
1538
1539 In other languages, optional arguments are expressed in the
1540 way that is natural for that language.  We refer you to the
1541 language-specific documentation for more details on that.
1542
1543 For guestfish, see L<guestfish(1)/OPTIONAL ARGUMENTS>.
1544
1545 =head2 SETTING CALLBACKS TO HANDLE EVENTS
1546
1547 The child process generates events in some situations.  Current events
1548 include: receiving a log message, the child process exits.
1549
1550 Use the C<guestfs_set_*_callback> functions to set a callback for
1551 different types of events.
1552
1553 Only I<one callback of each type> can be registered for each handle.
1554 Calling C<guestfs_set_*_callback> again overwrites the previous
1555 callback of that type.  Cancel all callbacks of this type by calling
1556 this function with C<cb> set to C<NULL>.
1557
1558 =head2 guestfs_set_log_message_callback
1559
1560  typedef void (*guestfs_log_message_cb) (guestfs_h *g, void *opaque,
1561                                          char *buf, int len);
1562  void guestfs_set_log_message_callback (guestfs_h *g,
1563                                         guestfs_log_message_cb cb,
1564                                         void *opaque);
1565
1566 The callback function C<cb> will be called whenever qemu or the guest
1567 writes anything to the console.
1568
1569 Use this function to capture kernel messages and similar.
1570
1571 Normally there is no log message handler, and log messages are just
1572 discarded.
1573
1574 =head2 guestfs_set_subprocess_quit_callback
1575
1576  typedef void (*guestfs_subprocess_quit_cb) (guestfs_h *g, void *opaque);
1577  void guestfs_set_subprocess_quit_callback (guestfs_h *g,
1578                                             guestfs_subprocess_quit_cb cb,
1579                                             void *opaque);
1580
1581 The callback function C<cb> will be called when the child process
1582 quits, either asynchronously or if killed by
1583 L</guestfs_kill_subprocess>.  (This corresponds to a transition from
1584 any state to the CONFIG state).
1585
1586 =head2 guestfs_set_launch_done_callback
1587
1588  typedef void (*guestfs_launch_done_cb) (guestfs_h *g, void *opaque);
1589  void guestfs_set_launch_done_callback (guestfs_h *g,
1590                                         guestfs_launch_done_cb cb,
1591                                         void *opaque);
1592
1593 The callback function C<cb> will be called when the child process
1594 becomes ready first time after it has been launched.  (This
1595 corresponds to a transition from LAUNCHING to the READY state).
1596
1597 =head2 guestfs_set_close_callback
1598
1599  typedef void (*guestfs_close_cb) (guestfs_h *g, void *opaque);
1600  void guestfs_set_close_callback (guestfs_h *g,
1601                                   guestfs_close_cb cb,
1602                                   void *opaque);
1603
1604 The callback function C<cb> will be called while the handle
1605 is being closed (synchronously from L</guestfs_close>).
1606
1607 Note that libguestfs installs an L<atexit(3)> handler to try to
1608 clean up handles that are open when the program exits.  This
1609 means that this callback might be called indirectly from
1610 L<exit(3)>, which can cause unexpected problems in higher-level
1611 languages (eg. if your HLL interpreter has already been cleaned
1612 up by the time this is called, and if your callback then jumps
1613 into some HLL function).
1614
1615 =head2 guestfs_set_progress_callback
1616
1617  typedef void (*guestfs_progress_cb) (guestfs_h *g, void *opaque,
1618                                       int proc_nr, int serial,
1619                                       uint64_t position, uint64_t total);
1620  void guestfs_set_progress_callback (guestfs_h *g,
1621                                      guestfs_progress_cb cb,
1622                                      void *opaque);
1623
1624 Some long-running operations can generate progress messages.  If
1625 this callback is registered, then it will be called each time a
1626 progress message is generated (usually two seconds after the
1627 operation started, and three times per second thereafter until
1628 it completes, although the frequency may change in future versions).
1629
1630 The callback receives two numbers: C<position> and C<total>.
1631 The units of C<total> are not defined, although for some
1632 operations C<total> may relate in some way to the amount of
1633 data to be transferred (eg. in bytes or megabytes), and
1634 C<position> may be the portion which has been transferred.
1635
1636 The only defined and stable parts of the API are:
1637
1638 =over 4
1639
1640 =item *
1641
1642 The callback can display to the user some type of progress bar or
1643 indicator which shows the ratio of C<position>:C<total>.
1644
1645 =item *
1646
1647 0 E<lt>= C<position> E<lt>= C<total>
1648
1649 =item *
1650
1651 If any progress notification is sent during a call, then a final
1652 progress notification is always sent when C<position> = C<total>.
1653
1654 This is to simplify caller code, so callers can easily set the
1655 progress indicator to "100%" at the end of the operation, without
1656 requiring special code to detect this case.
1657
1658 =back
1659
1660 The callback also receives the procedure number and serial number of
1661 the call.  These are only useful for debugging protocol issues, and
1662 the callback can normally ignore them.  The callback may want to
1663 print these numbers in error messages or debugging messages.
1664
1665 =head1 PRIVATE DATA AREA
1666
1667 You can attach named pieces of private data to the libguestfs handle,
1668 and fetch them by name for the lifetime of the handle.  This is called
1669 the private data area and is only available from the C API.
1670
1671 To attach a named piece of data, use the following call:
1672
1673  void guestfs_set_private (guestfs_h *g, const char *key, void *data);
1674
1675 C<key> is the name to associate with this data, and C<data> is an
1676 arbitrary pointer (which can be C<NULL>).  Any previous item with the
1677 same name is overwritten.
1678
1679 You can use any C<key> you want, but names beginning with an
1680 underscore character are reserved for internal libguestfs purposes
1681 (for implementing language bindings).  It is recommended to prefix the
1682 name with some unique string to avoid collisions with other users.
1683
1684 To retrieve the pointer, use:
1685
1686  void *guestfs_get_private (guestfs_h *g, const char *key);
1687
1688 This function returns C<NULL> if either no data is found associated
1689 with C<key>, or if the user previously set the C<key>'s C<data>
1690 pointer to C<NULL>.
1691
1692 Libguestfs does not try to look at or interpret the C<data> pointer in
1693 any way.  As far as libguestfs is concerned, it need not be a valid
1694 pointer at all.  In particular, libguestfs does I<not> try to free the
1695 data when the handle is closed.  If the data must be freed, then the
1696 caller must either free it before calling L</guestfs_close> or must
1697 set up a close callback to do it (see L</guestfs_set_close_callback>,
1698 and note that only one callback can be registered for a handle).
1699
1700 The private data area is implemented using a hash table, and should be
1701 reasonably efficient for moderate numbers of keys.
1702
1703 =begin html
1704
1705 <!-- old anchor for the next section -->
1706 <a name="state_machine_and_low_level_event_api"/>
1707
1708 =end html
1709
1710 =head1 ARCHITECTURE
1711
1712 Internally, libguestfs is implemented by running an appliance (a
1713 special type of small virtual machine) using L<qemu(1)>.  Qemu runs as
1714 a child process of the main program.
1715
1716   ___________________
1717  /                   \
1718  | main program      |
1719  |                   |
1720  |                   |           child process / appliance
1721  |                   |           __________________________
1722  |                   |          / qemu                     \
1723  +-------------------+   RPC    |      +-----------------+ |
1724  | libguestfs     <--------------------> guestfsd        | |
1725  |                   |          |      +-----------------+ |
1726  \___________________/          |      | Linux kernel    | |
1727                                 |      +--^--------------+ |
1728                                 \_________|________________/
1729                                           |
1730                                    _______v______
1731                                   /              \
1732                                   | Device or    |
1733                                   | disk image   |
1734                                   \______________/
1735
1736 The library, linked to the main program, creates the child process and
1737 hence the appliance in the L</guestfs_launch> function.
1738
1739 Inside the appliance is a Linux kernel and a complete stack of
1740 userspace tools (such as LVM and ext2 programs) and a small
1741 controlling daemon called L</guestfsd>.  The library talks to
1742 L</guestfsd> using remote procedure calls (RPC).  There is a mostly
1743 one-to-one correspondence between libguestfs API calls and RPC calls
1744 to the daemon.  Lastly the disk image(s) are attached to the qemu
1745 process which translates device access by the appliance's Linux kernel
1746 into accesses to the image.
1747
1748 A common misunderstanding is that the appliance "is" the virtual
1749 machine.  Although the disk image you are attached to might also be
1750 used by some virtual machine, libguestfs doesn't know or care about
1751 this.  (But you will care if both libguestfs's qemu process and your
1752 virtual machine are trying to update the disk image at the same time,
1753 since these usually results in massive disk corruption).
1754
1755 =head1 STATE MACHINE
1756
1757 libguestfs uses a state machine to model the child process:
1758
1759                          |
1760                     guestfs_create
1761                          |
1762                          |
1763                      ____V_____
1764                     /          \
1765                     |  CONFIG  |
1766                     \__________/
1767                      ^ ^   ^  \
1768                     /  |    \  \ guestfs_launch
1769                    /   |    _\__V______
1770                   /    |   /           \
1771                  /     |   | LAUNCHING |
1772                 /      |   \___________/
1773                /       |       /
1774               /        |  guestfs_launch
1775              /         |     /
1776     ______  /        __|____V
1777    /      \ ------> /        \
1778    | BUSY |         | READY  |
1779    \______/ <------ \________/
1780
1781 The normal transitions are (1) CONFIG (when the handle is created, but
1782 there is no child process), (2) LAUNCHING (when the child process is
1783 booting up), (3) alternating between READY and BUSY as commands are
1784 issued to, and carried out by, the child process.
1785
1786 The guest may be killed by L</guestfs_kill_subprocess>, or may die
1787 asynchronously at any time (eg. due to some internal error), and that
1788 causes the state to transition back to CONFIG.
1789
1790 Configuration commands for qemu such as L</guestfs_add_drive> can only
1791 be issued when in the CONFIG state.
1792
1793 The API offers one call that goes from CONFIG through LAUNCHING to
1794 READY.  L</guestfs_launch> blocks until the child process is READY to
1795 accept commands (or until some failure or timeout).
1796 L</guestfs_launch> internally moves the state from CONFIG to LAUNCHING
1797 while it is running.
1798
1799 API actions such as L</guestfs_mount> can only be issued when in the
1800 READY state.  These API calls block waiting for the command to be
1801 carried out (ie. the state to transition to BUSY and then back to
1802 READY).  There are no non-blocking versions, and no way to issue more
1803 than one command per handle at the same time.
1804
1805 Finally, the child process sends asynchronous messages back to the
1806 main program, such as kernel log messages.  You can register a
1807 callback to receive these messages.
1808
1809 =head1 INTERNALS
1810
1811 =head2 COMMUNICATION PROTOCOL
1812
1813 Don't rely on using this protocol directly.  This section documents
1814 how it currently works, but it may change at any time.
1815
1816 The protocol used to talk between the library and the daemon running
1817 inside the qemu virtual machine is a simple RPC mechanism built on top
1818 of XDR (RFC 1014, RFC 1832, RFC 4506).
1819
1820 The detailed format of structures is in C<src/guestfs_protocol.x>
1821 (note: this file is automatically generated).
1822
1823 There are two broad cases, ordinary functions that don't have any
1824 C<FileIn> and C<FileOut> parameters, which are handled with very
1825 simple request/reply messages.  Then there are functions that have any
1826 C<FileIn> or C<FileOut> parameters, which use the same request and
1827 reply messages, but they may also be followed by files sent using a
1828 chunked encoding.
1829
1830 =head3 ORDINARY FUNCTIONS (NO FILEIN/FILEOUT PARAMS)
1831
1832 For ordinary functions, the request message is:
1833
1834  total length (header + arguments,
1835       but not including the length word itself)
1836  struct guestfs_message_header (encoded as XDR)
1837  struct guestfs_<foo>_args (encoded as XDR)
1838
1839 The total length field allows the daemon to allocate a fixed size
1840 buffer into which it slurps the rest of the message.  As a result, the
1841 total length is limited to C<GUESTFS_MESSAGE_MAX> bytes (currently
1842 4MB), which means the effective size of any request is limited to
1843 somewhere under this size.
1844
1845 Note also that many functions don't take any arguments, in which case
1846 the C<guestfs_I<foo>_args> is completely omitted.
1847
1848 The header contains the procedure number (C<guestfs_proc>) which is
1849 how the receiver knows what type of args structure to expect, or none
1850 at all.
1851
1852 The reply message for ordinary functions is:
1853
1854  total length (header + ret,
1855       but not including the length word itself)
1856  struct guestfs_message_header (encoded as XDR)
1857  struct guestfs_<foo>_ret (encoded as XDR)
1858
1859 As above the C<guestfs_I<foo>_ret> structure may be completely omitted
1860 for functions that return no formal return values.
1861
1862 As above the total length of the reply is limited to
1863 C<GUESTFS_MESSAGE_MAX>.
1864
1865 In the case of an error, a flag is set in the header, and the reply
1866 message is slightly changed:
1867
1868  total length (header + error,
1869       but not including the length word itself)
1870  struct guestfs_message_header (encoded as XDR)
1871  struct guestfs_message_error (encoded as XDR)
1872
1873 The C<guestfs_message_error> structure contains the error message as a
1874 string.
1875
1876 =head3 FUNCTIONS THAT HAVE FILEIN PARAMETERS
1877
1878 A C<FileIn> parameter indicates that we transfer a file I<into> the
1879 guest.  The normal request message is sent (see above).  However this
1880 is followed by a sequence of file chunks.
1881
1882  total length (header + arguments,
1883       but not including the length word itself,
1884       and not including the chunks)
1885  struct guestfs_message_header (encoded as XDR)
1886  struct guestfs_<foo>_args (encoded as XDR)
1887  sequence of chunks for FileIn param #0
1888  sequence of chunks for FileIn param #1 etc.
1889
1890 The "sequence of chunks" is:
1891
1892  length of chunk (not including length word itself)
1893  struct guestfs_chunk (encoded as XDR)
1894  length of chunk
1895  struct guestfs_chunk (encoded as XDR)
1896    ...
1897  length of chunk
1898  struct guestfs_chunk (with data.data_len == 0)
1899
1900 The final chunk has the C<data_len> field set to zero.  Additionally a
1901 flag is set in the final chunk to indicate either successful
1902 completion or early cancellation.
1903
1904 At time of writing there are no functions that have more than one
1905 FileIn parameter.  However this is (theoretically) supported, by
1906 sending the sequence of chunks for each FileIn parameter one after
1907 another (from left to right).
1908
1909 Both the library (sender) I<and> the daemon (receiver) may cancel the
1910 transfer.  The library does this by sending a chunk with a special
1911 flag set to indicate cancellation.  When the daemon sees this, it
1912 cancels the whole RPC, does I<not> send any reply, and goes back to
1913 reading the next request.
1914
1915 The daemon may also cancel.  It does this by writing a special word
1916 C<GUESTFS_CANCEL_FLAG> to the socket.  The library listens for this
1917 during the transfer, and if it gets it, it will cancel the transfer
1918 (it sends a cancel chunk).  The special word is chosen so that even if
1919 cancellation happens right at the end of the transfer (after the
1920 library has finished writing and has started listening for the reply),
1921 the "spurious" cancel flag will not be confused with the reply
1922 message.
1923
1924 This protocol allows the transfer of arbitrary sized files (no 32 bit
1925 limit), and also files where the size is not known in advance
1926 (eg. from pipes or sockets).  However the chunks are rather small
1927 (C<GUESTFS_MAX_CHUNK_SIZE>), so that neither the library nor the
1928 daemon need to keep much in memory.
1929
1930 =head3 FUNCTIONS THAT HAVE FILEOUT PARAMETERS
1931
1932 The protocol for FileOut parameters is exactly the same as for FileIn
1933 parameters, but with the roles of daemon and library reversed.
1934
1935  total length (header + ret,
1936       but not including the length word itself,
1937       and not including the chunks)
1938  struct guestfs_message_header (encoded as XDR)
1939  struct guestfs_<foo>_ret (encoded as XDR)
1940  sequence of chunks for FileOut param #0
1941  sequence of chunks for FileOut param #1 etc.
1942
1943 =head3 INITIAL MESSAGE
1944
1945 When the daemon launches it sends an initial word
1946 (C<GUESTFS_LAUNCH_FLAG>) which indicates that the guest and daemon is
1947 alive.  This is what L</guestfs_launch> waits for.
1948
1949 =head3 PROGRESS NOTIFICATION MESSAGES
1950
1951 The daemon may send progress notification messages at any time.  These
1952 are distinguished by the normal length word being replaced by
1953 C<GUESTFS_PROGRESS_FLAG>, followed by a fixed size progress message.
1954
1955 The library turns them into progress callbacks (see
1956 C<guestfs_set_progress_callback>) if there is a callback registered,
1957 or discards them if not.
1958
1959 The daemon self-limits the frequency of progress messages it sends
1960 (see C<daemon/proto.c:notify_progress>).  Not all calls generate
1961 progress messages.
1962
1963 =head1 LIBGUESTFS VERSION NUMBERS
1964
1965 Since April 2010, libguestfs has started to make separate development
1966 and stable releases, along with corresponding branches in our git
1967 repository.  These separate releases can be identified by version
1968 number:
1969
1970                  even numbers for stable: 1.2.x, 1.4.x, ...
1971        .-------- odd numbers for development: 1.3.x, 1.5.x, ...
1972        |
1973        v
1974  1  .  3  .  5
1975  ^           ^
1976  |           |
1977  |           `-------- sub-version
1978  |
1979  `------ always '1' because we don't change the ABI
1980
1981 Thus "1.3.5" is the 5th update to the development branch "1.3".
1982
1983 As time passes we cherry pick fixes from the development branch and
1984 backport those into the stable branch, the effect being that the
1985 stable branch should get more stable and less buggy over time.  So the
1986 stable releases are ideal for people who don't need new features but
1987 would just like the software to work.
1988
1989 Our criteria for backporting changes are:
1990
1991 =over 4
1992
1993 =item *
1994
1995 Documentation changes which don't affect any code are
1996 backported unless the documentation refers to a future feature
1997 which is not in stable.
1998
1999 =item *
2000
2001 Bug fixes which are not controversial, fix obvious problems, and
2002 have been well tested are backported.
2003
2004 =item *
2005
2006 Simple rearrangements of code which shouldn't affect how it works get
2007 backported.  This is so that the code in the two branches doesn't get
2008 too far out of step, allowing us to backport future fixes more easily.
2009
2010 =item *
2011
2012 We I<don't> backport new features, new APIs, new tools etc, except in
2013 one exceptional case: the new feature is required in order to
2014 implement an important bug fix.
2015
2016 =back
2017
2018 A new stable branch starts when we think the new features in
2019 development are substantial and compelling enough over the current
2020 stable branch to warrant it.  When that happens we create new stable
2021 and development versions 1.N.0 and 1.(N+1).0 [N is even].  The new
2022 dot-oh release won't necessarily be so stable at this point, but by
2023 backporting fixes from development, that branch will stabilize over
2024 time.
2025
2026 =head1 ENVIRONMENT VARIABLES
2027
2028 =over 4
2029
2030 =item LIBGUESTFS_APPEND
2031
2032 Pass additional options to the guest kernel.
2033
2034 =item LIBGUESTFS_DEBUG
2035
2036 Set C<LIBGUESTFS_DEBUG=1> to enable verbose messages.  This
2037 has the same effect as calling C<guestfs_set_verbose (g, 1)>.
2038
2039 =item LIBGUESTFS_MEMSIZE
2040
2041 Set the memory allocated to the qemu process, in megabytes.  For
2042 example:
2043
2044  LIBGUESTFS_MEMSIZE=700
2045
2046 =item LIBGUESTFS_PATH
2047
2048 Set the path that libguestfs uses to search for kernel and initrd.img.
2049 See the discussion of paths in section PATH above.
2050
2051 =item LIBGUESTFS_QEMU
2052
2053 Set the default qemu binary that libguestfs uses.  If not set, then
2054 the qemu which was found at compile time by the configure script is
2055 used.
2056
2057 See also L</QEMU WRAPPERS> above.
2058
2059 =item LIBGUESTFS_TRACE
2060
2061 Set C<LIBGUESTFS_TRACE=1> to enable command traces.  This
2062 has the same effect as calling C<guestfs_set_trace (g, 1)>.
2063
2064 =item TMPDIR
2065
2066 Location of temporary directory, defaults to C</tmp>.
2067
2068 If libguestfs was compiled to use the supermin appliance then the
2069 real appliance is cached in this directory, shared between all
2070 handles belonging to the same EUID.  You can use C<$TMPDIR> to
2071 configure another directory to use in case C</tmp> is not large
2072 enough.
2073
2074 =back
2075
2076 =head1 SEE ALSO
2077
2078 L<guestfish(1)>,
2079 L<guestmount(1)>,
2080 L<virt-cat(1)>,
2081 L<virt-df(1)>,
2082 L<virt-edit(1)>,
2083 L<virt-inspector(1)>,
2084 L<virt-list-filesystems(1)>,
2085 L<virt-list-partitions(1)>,
2086 L<virt-ls(1)>,
2087 L<virt-make-fs(1)>,
2088 L<virt-rescue(1)>,
2089 L<virt-tar(1)>,
2090 L<virt-win-reg(1)>,
2091 L<qemu(1)>,
2092 L<febootstrap(1)>,
2093 L<hivex(3)>,
2094 L<http://libguestfs.org/>.
2095
2096 Tools with a similar purpose:
2097 L<fdisk(8)>,
2098 L<parted(8)>,
2099 L<kpartx(8)>,
2100 L<lvm(8)>,
2101 L<disktype(1)>.
2102
2103 =head1 BUGS
2104
2105 To get a list of bugs against libguestfs use this link:
2106
2107 L<https://bugzilla.redhat.com/buglist.cgi?component=libguestfs&product=Virtualization+Tools>
2108
2109 To report a new bug against libguestfs use this link:
2110
2111 L<https://bugzilla.redhat.com/enter_bug.cgi?component=libguestfs&product=Virtualization+Tools>
2112
2113 When reporting a bug, please check:
2114
2115 =over 4
2116
2117 =item *
2118
2119 That the bug hasn't been reported already.
2120
2121 =item *
2122
2123 That you are testing a recent version.
2124
2125 =item *
2126
2127 Describe the bug accurately, and give a way to reproduce it.
2128
2129 =item *
2130
2131 Run libguestfs-test-tool and paste the B<complete, unedited>
2132 output into the bug report.
2133
2134 =back
2135
2136 =head1 AUTHORS
2137
2138 Richard W.M. Jones (C<rjones at redhat dot com>)
2139
2140 =head1 COPYRIGHT
2141
2142 Copyright (C) 2009-2010 Red Hat Inc.
2143 L<http://libguestfs.org/>
2144
2145 This library is free software; you can redistribute it and/or
2146 modify it under the terms of the GNU Lesser General Public
2147 License as published by the Free Software Foundation; either
2148 version 2 of the License, or (at your option) any later version.
2149
2150 This library is distributed in the hope that it will be useful,
2151 but WITHOUT ANY WARRANTY; without even the implied warranty of
2152 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
2153 Lesser General Public License for more details.
2154
2155 You should have received a copy of the GNU Lesser General Public
2156 License along with this library; if not, write to the Free Software
2157 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA