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