Enable autosync by default.
[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 =back
394
395 The two main API calls to run commands are L</guestfs_command> and
396 L</guestfs_sh> (there are also variations).
397
398 The difference is that L</guestfs_sh> runs commands using the shell, so
399 any shell globs, redirections, etc will work.
400
401 =head2 CONFIGURATION FILES
402
403 To read and write configuration files in Linux guest filesystems, we
404 strongly recommend using Augeas.  For example, Augeas understands how
405 to read and write, say, a Linux shadow password file or X.org
406 configuration file, and so avoids you having to write that code.
407
408 The main Augeas calls are bound through the C<guestfs_aug_*> APIs.  We
409 don't document Augeas itself here because there is excellent
410 documentation on the L<http://augeas.net/> website.
411
412 If you don't want to use Augeas (you fool!) then try calling
413 L</guestfs_read_lines> to get the file as a list of lines which
414 you can iterate over.
415
416 =head2 SELINUX
417
418 We support SELinux guests.  To ensure that labeling happens correctly
419 in SELinux guests, you need to enable SELinux and load the guest's
420 policy:
421
422 =over 4
423
424 =item 1.
425
426 Before launching, do:
427
428  guestfs_set_selinux (g, 1);
429
430 =item 2.
431
432 After mounting the guest's filesystem(s), load the policy.  This
433 is best done by running the L<load_policy(8)> command in the
434 guest itself:
435
436  guestfs_sh (g, "/usr/sbin/load_policy");
437
438 (Older versions of C<load_policy> require you to specify the
439 name of the policy file).
440
441 =item 3.
442
443 Optionally, set the security context for the API.  The correct
444 security context to use can only be known by inspecting the
445 guest.  As an example:
446
447  guestfs_setcon (g, "unconfined_u:unconfined_r:unconfined_t:s0");
448
449 =back
450
451 This will work for running commands and editing existing files.
452
453 When new files are created, you may need to label them explicitly,
454 for example by running the external command
455 C<restorecon pathname>.
456
457 =head2 UMASK
458
459 Certain calls are affected by the current file mode creation mask (the
460 "umask").  In particular ones which create files or directories, such
461 as L</guestfs_touch>, L</guestfs_mknod> or L</guestfs_mkdir>.  This
462 affects either the default mode that the file is created with or
463 modifies the mode that you supply.
464
465 The default umask is C<022>, so files are created with modes such as
466 C<0644> and directories with C<0755>.
467
468 There are two ways to avoid being affected by umask.  Either set umask
469 to 0 (call C<guestfs_umask (g, 0)> early after launching).  Or call
470 L</guestfs_chmod> after creating each file or directory.
471
472 For more information about umask, see L<umask(2)>.
473
474 =head2 ENCRYPTED DISKS
475
476 Libguestfs allows you to access Linux guests which have been
477 encrypted using whole disk encryption that conforms to the
478 Linux Unified Key Setup (LUKS) standard.  This includes
479 nearly all whole disk encryption systems used by modern
480 Linux guests.
481
482 Use L</guestfs_vfs_type> to identify LUKS-encrypted block
483 devices (it returns the string C<crypto_LUKS>).
484
485 Then open these devices by calling L</guestfs_luks_open>.
486 Obviously you will require the passphrase!
487
488 Opening a LUKS device creates a new device mapper device
489 called C</dev/mapper/mapname> (where C<mapname> is the
490 string you supply to L</guestfs_luks_open>).
491 Reads and writes to this mapper device are decrypted from and
492 encrypted to the underlying block device respectively.
493
494 LVM volume groups on the device can be made visible by calling
495 L</guestfs_vgscan> followed by L</guestfs_vg_activate_all>.
496 The logical volume(s) can now be mounted in the usual way.
497
498 Use the reverse process to close a LUKS device.  Unmount
499 any logical volumes on it, deactivate the volume groups
500 by caling C<guestfs_vg_activate (g, 0, ["/dev/VG"])>.
501 Then close the mapper device by calling
502 L</guestfs_luks_close> on the C</dev/mapper/mapname>
503 device (I<not> the underlying encrypted block device).
504
505 =head2 INSPECTION
506
507 Libguestfs has APIs for inspecting an unknown disk image to find out
508 if it contains operating systems.  (These APIs used to be in a
509 separate Perl-only library called L<Sys::Guestfs::Lib(3)> but since
510 version 1.5.3 the most frequently used part of this library has been
511 rewritten in C and moved into the core code).
512
513 Add all disks belonging to the unknown virtual machine and call
514 L</guestfs_launch> in the usual way.
515
516 Then call L</guestfs_inspect_os>.  This function uses other libguestfs
517 calls and certain heuristics, and returns a list of operating systems
518 that were found.  An empty list means none were found.  A single
519 element is the root filesystem of the operating system.  For dual- or
520 multi-boot guests, multiple roots can be returned, each one
521 corresponding to a separate operating system.  (Multi-boot virtual
522 machines are extremely rare in the world of virtualization, but since
523 this scenario can happen, we have built libguestfs to deal with it.)
524
525 For each root, you can then call various C<guestfs_inspect_get_*>
526 functions to get additional details about that operating system.  For
527 example, call L</guestfs_inspect_get_type> to return the string
528 C<windows> or C<linux> for Windows and Linux-based operating systems
529 respectively.
530
531 Un*x-like and Linux-based operating systems usually consist of several
532 filesystems which are mounted at boot time (for example, a separate
533 boot partition mounted on C</boot>).  The inspection rules are able to
534 detect how filesystems correspond to mount points.  Call
535 C<guestfs_inspect_get_mountpoints> to get this mapping.  It might
536 return a hash table like this example:
537
538  /boot => /dev/sda1
539  /     => /dev/vg_guest/lv_root
540  /usr  => /dev/vg_guest/lv_usr
541
542 The caller can then make calls to L</guestfs_mount_options> to
543 mount the filesystems as suggested.
544
545 Be careful to mount filesystems in the right order (eg. C</> before
546 C</usr>).  Sorting the keys of the hash by length, shortest first,
547 should work.
548
549 Inspection currently only works for some common operating systems.
550 Contributors are welcome to send patches for other operating systems
551 that we currently cannot detect.
552
553 Encrypted disks must be opened before inspection.  See
554 L</ENCRYPTED DISKS> for more details.  The L</guestfs_inspect_os>
555 function just ignores any encrypted devices.
556
557 A note on the implementation: The call L</guestfs_inspect_os> performs
558 inspection and caches the results in the guest handle.  Subsequent
559 calls to C<guestfs_inspect_get_*> return this cached information, but
560 I<do not> re-read the disks.  If you change the content of the guest
561 disks, you can redo inspection by calling L</guestfs_inspect_os>
562 again.
563
564 =head2 SPECIAL CONSIDERATIONS FOR WINDOWS GUESTS
565
566 Libguestfs can mount NTFS partitions.  It does this using the
567 L<http://www.ntfs-3g.org/> driver.
568
569 DOS and Windows still use drive letters, and the filesystems are
570 always treated as case insensitive by Windows itself, and therefore
571 you might find a Windows configuration file referring to a path like
572 C<c:\windows\system32>.  When the filesystem is mounted in libguestfs,
573 that directory might be referred to as C</WINDOWS/System32>.
574
575 Drive letter mappings are outside the scope of libguestfs.  You have
576 to use libguestfs to read the appropriate Windows Registry and
577 configuration files, to determine yourself how drives are mapped (see
578 also L<hivex(3)> and L<virt-inspector(1)>).
579
580 Replacing backslash characters with forward slash characters is also
581 outside the scope of libguestfs, but something that you can easily do.
582
583 Where we can help is in resolving the case insensitivity of paths.
584 For this, call L</guestfs_case_sensitive_path>.
585
586 Libguestfs also provides some help for decoding Windows Registry
587 "hive" files, through the library C<hivex> which is part of the
588 libguestfs project although ships as a separate tarball.  You have to
589 locate and download the hive file(s) yourself, and then pass them to
590 C<hivex> functions.  See also the programs L<hivexml(1)>,
591 L<hivexsh(1)>, L<hivexregedit(1)> and L<virt-win-reg(1)> for more help
592 on this issue.
593
594 =head2 USING LIBGUESTFS WITH OTHER PROGRAMMING LANGUAGES
595
596 Although we don't want to discourage you from using the C API, we will
597 mention here that the same API is also available in other languages.
598
599 The API is broadly identical in all supported languages.  This means
600 that the C call C<guestfs_mount(g,path)> is
601 C<$g-E<gt>mount($path)> in Perl, C<g.mount(path)> in Python,
602 and C<Guestfs.mount g path> in OCaml.  In other words, a
603 straightforward, predictable isomorphism between each language.
604
605 Error messages are automatically transformed
606 into exceptions if the language supports it.
607
608 We don't try to "object orientify" parts of the API in OO languages,
609 although contributors are welcome to write higher level APIs above
610 what we provide in their favourite languages if they wish.
611
612 =over 4
613
614 =item B<C++>
615
616 You can use the I<guestfs.h> header file from C++ programs.  The C++
617 API is identical to the C API.  C++ classes and exceptions are not
618 used.
619
620 =item B<C#>
621
622 The C# bindings are highly experimental.  Please read the warnings
623 at the top of C<csharp/Libguestfs.cs>.
624
625 =item B<Haskell>
626
627 This is the only language binding that is working but incomplete.
628 Only calls which return simple integers have been bound in Haskell,
629 and we are looking for help to complete this binding.
630
631 =item B<Java>
632
633 Full documentation is contained in the Javadoc which is distributed
634 with libguestfs.
635
636 =item B<OCaml>
637
638 For documentation see the file C<guestfs.mli>.
639
640 =item B<Perl>
641
642 For documentation see L<Sys::Guestfs(3)>.
643
644 =item B<PHP>
645
646 For documentation see C<README-PHP> supplied with libguestfs
647 sources or in the php-libguestfs package for your distribution.
648
649 The PHP binding only works correctly on 64 bit machines.
650
651 =item B<Python>
652
653 For documentation do:
654
655  $ python
656  >>> import guestfs
657  >>> help (guestfs)
658
659 =item B<Ruby>
660
661 Use the Guestfs module.  There is no Ruby-specific documentation, but
662 you can find examples written in Ruby in the libguestfs source.
663
664 =item B<shell scripts>
665
666 For documentation see L<guestfish(1)>.
667
668 =back
669
670 =head2 LIBGUESTFS GOTCHAS
671
672 L<http://en.wikipedia.org/wiki/Gotcha_(programming)>: "A feature of a
673 system [...] that works in the way it is documented but is
674 counterintuitive and almost invites mistakes."
675
676 Since we developed libguestfs and the associated tools, there are
677 several things we would have designed differently, but are now stuck
678 with for backwards compatibility or other reasons.  If there is ever a
679 libguestfs 2.0 release, you can expect these to change.  Beware of
680 them.
681
682 =over 4
683
684 =item Autosync / forgetting to sync.
685
686 When modifying a filesystem from C or another language, you B<must>
687 unmount all filesystems and call L</guestfs_sync> explicitly before
688 you close the libguestfs handle.  You can also call:
689
690  guestfs_set_autosync (g, 1);
691
692 to have the unmount/sync done automatically for you when the handle 'g'
693 is closed.  (This feature is called "autosync", L</guestfs_set_autosync>
694 q.v.)
695
696 If you forget to do this, then it is entirely possible that your
697 changes won't be written out, or will be partially written, or (very
698 rarely) that you'll get disk corruption.
699
700 Note that in L<guestfish(3)> autosync is the default.  So quick and
701 dirty guestfish scripts that forget to sync will work just fine, which
702 can make this very puzzling if you are trying to debug a problem.
703
704 Update: Autosync is enabled by default for all API users starting from
705 libguestfs 1.5.24.
706
707 =item Mount option C<-o sync> should not be the default.
708
709 If you use L</guestfs_mount>, then C<-o sync,noatime> are added
710 implicitly.  However C<-o sync> does not add any reliability benefit,
711 but does have a very large performance impact.
712
713 The work around is to use L</guestfs_mount_options> and set the mount
714 options that you actually want to use.
715
716 =item Read-only should be the default.
717
718 In L<guestfish(3)>, I<--ro> should be the default, and you should
719 have to specify I<--rw> if you want to make changes to the image.
720
721 This would reduce the potential to corrupt live VM images.
722
723 Note that many filesystems change the disk when you just mount and
724 unmount, even if you didn't perform any writes.  You need to use
725 L</guestfs_add_drive_ro> to guarantee that the disk is not changed.
726
727 =item guestfish command line is hard to use.
728
729 C<guestfish disk.img> doesn't do what people expect (open C<disk.img>
730 for examination).  It tries to run a guestfish command C<disk.img>
731 which doesn't exist, so it fails.  In earlier versions of guestfish
732 the error message was also unintuitive, but we have corrected this
733 since.  Like the Bourne shell, we should have used C<guestfish -c
734 command> to run commands.
735
736 =item guestfish megabyte modifiers don't work right on all commands
737
738 In recent guestfish you can use C<1M> to mean 1 megabyte (and
739 similarly for other modifiers).  What guestfish actually does is to
740 multiply the number part by the modifier part and pass the result to
741 the C API.  However this doesn't work for a few APIs which aren't
742 expecting bytes, but are already expecting some other unit
743 (eg. megabytes).
744
745 The most common is L</guestfs_lvcreate>.  The guestfish command:
746
747  lvcreate LV VG 100M
748
749 does not do what you might expect.  Instead because
750 L</guestfs_lvcreate> is already expecting megabytes, this tries to
751 create a 100 I<terabyte> (100 megabytes * megabytes) logical volume.
752 The error message you get from this is also a little obscure.
753
754 This could be fixed in the generator by specially marking parameters
755 and return values which take bytes or other units.
756
757 =item Library should return errno with error messages.
758
759 It would be a nice-to-have to be able to get the original value of
760 'errno' from inside the appliance along error paths (where set).
761 Currently L<guestmount(1)> goes through hoops to try to reverse the
762 error message string into an errno, see the function error() in
763 fuse/guestmount.c.
764
765 In libguestfs 1.5.4, the protocol was changed so that the
766 Linux errno is sent back from the daemon.
767
768 =item Ambiguity between devices and paths
769
770 There is a subtle ambiguity in the API between a device name
771 (eg. C</dev/sdb2>) and a similar pathname.  A file might just happen
772 to be called C<sdb2> in the directory C</dev> (consider some non-Unix
773 VM image).
774
775 In the current API we usually resolve this ambiguity by having two
776 separate calls, for example L</guestfs_checksum> and
777 L</guestfs_checksum_device>.  Some API calls are ambiguous and
778 (incorrectly) resolve the problem by detecting if the path supplied
779 begins with C</dev/>.
780
781 To avoid both the ambiguity and the need to duplicate some calls, we
782 could make paths/devices into structured names.  One way to do this
783 would be to use a notation like grub (C<hd(0,0)>), although nobody
784 really likes this aspect of grub.  Another way would be to use a
785 structured type, equivalent to this OCaml type:
786
787  type path = Path of string | Device of int | Partition of int * int
788
789 which would allow you to pass arguments like:
790
791  Path "/foo/bar"
792  Device 1            (* /dev/sdb, or perhaps /dev/sda *)
793  Partition (1, 2)    (* /dev/sdb2 (or is it /dev/sda2 or /dev/sdb3?) *)
794  Path "/dev/sdb2"    (* not a device *)
795
796 As you can see there are still problems to resolve even with this
797 representation.  Also consider how it might work in guestfish.
798
799 =back
800
801 =head2 PROTOCOL LIMITS
802
803 Internally libguestfs uses a message-based protocol to pass API calls
804 and their responses to and from a small "appliance" (see L</INTERNALS>
805 for plenty more detail about this).  The maximum message size used by
806 the protocol is slightly less than 4 MB.  For some API calls you may
807 need to be aware of this limit.  The API calls which may be affected
808 are individually documented, with a link back to this section of the
809 documentation.
810
811 A simple call such as L</guestfs_cat> returns its result (the file
812 data) in a simple string.  Because this string is at some point
813 internally encoded as a message, the maximum size that it can return
814 is slightly under 4 MB.  If the requested file is larger than this
815 then you will get an error.
816
817 In order to transfer large files into and out of the guest filesystem,
818 you need to use particular calls that support this.  The sections
819 L</UPLOADING> and L</DOWNLOADING> document how to do this.
820
821 You might also consider mounting the disk image using our FUSE
822 filesystem support (L<guestmount(1)>).
823
824 =head2 KEYS AND PASSPHRASES
825
826 Certain libguestfs calls take a parameter that contains sensitive key
827 material, passed in as a C string.
828
829 In the future we would hope to change the libguestfs implementation so
830 that keys are L<mlock(2)>-ed into physical RAM, and thus can never end
831 up in swap.  However this is I<not> done at the moment, because of the
832 complexity of such an implementation.
833
834 Therefore you should be aware that any key parameter you pass to
835 libguestfs might end up being written out to the swap partition.  If
836 this is a concern, scrub the swap partition or don't use libguestfs on
837 encrypted devices.
838
839 =head1 CONNECTION MANAGEMENT
840
841 =head2 guestfs_h *
842
843 C<guestfs_h> is the opaque type representing a connection handle.
844 Create a handle by calling L</guestfs_create>.  Call L</guestfs_close>
845 to free the handle and release all resources used.
846
847 For information on using multiple handles and threads, see the section
848 L</MULTIPLE HANDLES AND MULTIPLE THREADS> below.
849
850 =head2 guestfs_create
851
852  guestfs_h *guestfs_create (void);
853
854 Create a connection handle.
855
856 You have to call L</guestfs_add_drive_opts> (or one of the equivalent
857 calls) on the handle at least once.
858
859 This function returns a non-NULL pointer to a handle on success or
860 NULL on error.
861
862 After configuring the handle, you have to call L</guestfs_launch>.
863
864 You may also want to configure error handling for the handle.  See
865 L</ERROR HANDLING> section below.
866
867 =head2 guestfs_close
868
869  void guestfs_close (guestfs_h *g);
870
871 This closes the connection handle and frees up all resources used.
872
873 =head1 ERROR HANDLING
874
875 The convention in all functions that return C<int> is that they return
876 C<-1> to indicate an error.  You can get additional information on
877 errors by calling L</guestfs_last_error> and/or by setting up an error
878 handler with L</guestfs_set_error_handler>.
879
880 The default error handler prints the information string to C<stderr>.
881
882 Out of memory errors are handled differently.  The default action is
883 to call L<abort(3)>.  If this is undesirable, then you can set a
884 handler using L</guestfs_set_out_of_memory_handler>.
885
886 =head2 guestfs_last_error
887
888  const char *guestfs_last_error (guestfs_h *g);
889
890 This returns the last error message that happened on C<g>.  If
891 there has not been an error since the handle was created, then this
892 returns C<NULL>.
893
894 The lifetime of the returned string is until the next error occurs, or
895 L</guestfs_close> is called.
896
897 The error string is not localized (ie. is always in English), because
898 this makes searching for error messages in search engines give the
899 largest number of results.
900
901 =head2 guestfs_set_error_handler
902
903  typedef void (*guestfs_error_handler_cb) (guestfs_h *g,
904                                            void *opaque,
905                                            const char *msg);
906  void guestfs_set_error_handler (guestfs_h *g,
907                                  guestfs_error_handler_cb cb,
908                                  void *opaque);
909
910 The callback C<cb> will be called if there is an error.  The
911 parameters passed to the callback are an opaque data pointer and the
912 error message string.
913
914 Note that the message string C<msg> is freed as soon as the callback
915 function returns, so if you want to stash it somewhere you must make
916 your own copy.
917
918 The default handler prints messages on C<stderr>.
919
920 If you set C<cb> to C<NULL> then I<no> handler is called.
921
922 =head2 guestfs_get_error_handler
923
924  guestfs_error_handler_cb guestfs_get_error_handler (guestfs_h *g,
925                                                      void **opaque_rtn);
926
927 Returns the current error handler callback.
928
929 =head2 guestfs_set_out_of_memory_handler
930
931  typedef void (*guestfs_abort_cb) (void);
932  int guestfs_set_out_of_memory_handler (guestfs_h *g,
933                                         guestfs_abort_cb);
934
935 The callback C<cb> will be called if there is an out of memory
936 situation.  I<Note this callback must not return>.
937
938 The default is to call L<abort(3)>.
939
940 You cannot set C<cb> to C<NULL>.  You can't ignore out of memory
941 situations.
942
943 =head2 guestfs_get_out_of_memory_handler
944
945  guestfs_abort_fn guestfs_get_out_of_memory_handler (guestfs_h *g);
946
947 This returns the current out of memory handler.
948
949 =head1 PATH
950
951 Libguestfs needs a kernel and initrd.img, which it finds by looking
952 along an internal path.
953
954 By default it looks for these in the directory C<$libdir/guestfs>
955 (eg. C</usr/local/lib/guestfs> or C</usr/lib64/guestfs>).
956
957 Use L</guestfs_set_path> or set the environment variable
958 L</LIBGUESTFS_PATH> to change the directories that libguestfs will
959 search in.  The value is a colon-separated list of paths.  The current
960 directory is I<not> searched unless the path contains an empty element
961 or C<.>.  For example C<LIBGUESTFS_PATH=:/usr/lib/guestfs> would
962 search the current directory and then C</usr/lib/guestfs>.
963
964 =head1 HIGH-LEVEL API ACTIONS
965
966 =head2 ABI GUARANTEE
967
968 We guarantee the libguestfs ABI (binary interface), for public,
969 high-level actions as outlined in this section.  Although we will
970 deprecate some actions, for example if they get replaced by newer
971 calls, we will keep the old actions forever.  This allows you the
972 developer to program in confidence against the libguestfs API.
973
974 @ACTIONS@
975
976 =head1 STRUCTURES
977
978 @STRUCTS@
979
980 =head1 AVAILABILITY
981
982 =head2 GROUPS OF FUNCTIONALITY IN THE APPLIANCE
983
984 Using L</guestfs_available> you can test availability of
985 the following groups of functions.  This test queries the
986 appliance to see if the appliance you are currently using
987 supports the functionality.
988
989 @AVAILABILITY@
990
991 =head2 GUESTFISH supported COMMAND
992
993 In L<guestfish(3)> there is a handy interactive command
994 C<supported> which prints out the available groups and
995 whether they are supported by this build of libguestfs.
996 Note however that you have to do C<run> first.
997
998 =head2 SINGLE CALLS AT COMPILE TIME
999
1000 Since version 1.5.8, C<E<lt>guestfs.hE<gt>> defines symbols
1001 for each C API function, such as:
1002
1003  #define LIBGUESTFS_HAVE_DD 1
1004
1005 if L</guestfs_dd> is available.
1006
1007 Before version 1.5.8, if you needed to test whether a single
1008 libguestfs function is available at compile time, we recommended using
1009 build tools such as autoconf or cmake.  For example in autotools you
1010 could use:
1011
1012  AC_CHECK_LIB([guestfs],[guestfs_create])
1013  AC_CHECK_FUNCS([guestfs_dd])
1014
1015 which would result in C<HAVE_GUESTFS_DD> being either defined
1016 or not defined in your program.
1017
1018 =head2 SINGLE CALLS AT RUN TIME
1019
1020 Testing at compile time doesn't guarantee that a function really
1021 exists in the library.  The reason is that you might be dynamically
1022 linked against a previous I<libguestfs.so> (dynamic library)
1023 which doesn't have the call.  This situation unfortunately results
1024 in a segmentation fault, which is a shortcoming of the C dynamic
1025 linking system itself.
1026
1027 You can use L<dlopen(3)> to test if a function is available
1028 at run time, as in this example program (note that you still
1029 need the compile time check as well):
1030
1031  #include <stdio.h>
1032  #include <stdlib.h>
1033  #include <unistd.h>
1034  #include <dlfcn.h>
1035  #include <guestfs.h>
1036  
1037  main ()
1038  {
1039  #ifdef LIBGUESTFS_HAVE_DD
1040    void *dl;
1041    int has_function;
1042  
1043    /* Test if the function guestfs_dd is really available. */
1044    dl = dlopen (NULL, RTLD_LAZY);
1045    if (!dl) {
1046      fprintf (stderr, "dlopen: %s\n", dlerror ());
1047      exit (EXIT_FAILURE);
1048    }
1049    has_function = dlsym (dl, "guestfs_dd") != NULL;
1050    dlclose (dl);
1051  
1052    if (!has_function)
1053      printf ("this libguestfs.so does NOT have guestfs_dd function\n");
1054    else {
1055      printf ("this libguestfs.so has guestfs_dd function\n");
1056      /* Now it's safe to call
1057      guestfs_dd (g, "foo", "bar");
1058      */
1059    }
1060  #else
1061    printf ("guestfs_dd function was not found at compile time\n");
1062  #endif
1063   }
1064
1065 You may think the above is an awful lot of hassle, and it is.
1066 There are other ways outside of the C linking system to ensure
1067 that this kind of incompatibility never arises, such as using
1068 package versioning:
1069
1070  Requires: libguestfs >= 1.0.80
1071
1072 =head1 CALLS WITH OPTIONAL ARGUMENTS
1073
1074 A recent feature of the API is the introduction of calls which take
1075 optional arguments.  In C these are declared 3 ways.  The main way is
1076 as a call which takes variable arguments (ie. C<...>), as in this
1077 example:
1078
1079  int guestfs_add_drive_opts (guestfs_h *g, const char *filename, ...);
1080
1081 Call this with a list of optional arguments, terminated by C<-1>.
1082 So to call with no optional arguments specified:
1083
1084  guestfs_add_drive_opts (g, filename, -1);
1085
1086 With a single optional argument:
1087
1088  guestfs_add_drive_opts (g, filename,
1089                          GUESTFS_ADD_DRIVE_OPTS_FORMAT, "qcow2",
1090                          -1);
1091
1092 With two:
1093
1094  guestfs_add_drive_opts (g, filename,
1095                          GUESTFS_ADD_DRIVE_OPTS_FORMAT, "qcow2",
1096                          GUESTFS_ADD_DRIVE_OPTS_READONLY, 1,
1097                          -1);
1098
1099 and so forth.  Don't forget the terminating C<-1> otherwise
1100 Bad Things will happen!
1101
1102 =head2 USING va_list FOR OPTIONAL ARGUMENTS
1103
1104 The second variant has the same name with the suffix C<_va>, which
1105 works the same way but takes a C<va_list>.  See the C manual for
1106 details.  For the example function, this is declared:
1107
1108  int guestfs_add_drive_opts_va (guestfs_h *g, const char *filename,
1109                                 va_list args);
1110
1111 =head2 CONSTRUCTING OPTIONAL ARGUMENTS
1112
1113 The third variant is useful where you need to construct these
1114 calls.  You pass in a structure where you fill in the optional
1115 fields.  The structure has a bitmask as the first element which
1116 you must set to indicate which fields you have filled in.  For
1117 our example function the structure and call are declared:
1118
1119  struct guestfs_add_drive_opts_argv {
1120    uint64_t bitmask;
1121    int readonly;
1122    const char *format;
1123    /* ... */
1124  };
1125  int guestfs_add_drive_opts_argv (guestfs_h *g, const char *filename,
1126               const struct guestfs_add_drive_opts_argv *optargs);
1127
1128 You could call it like this:
1129
1130  struct guestfs_add_drive_opts_argv optargs = {
1131    .bitmask = GUESTFS_ADD_DRIVE_OPTS_READONLY_BITMASK |
1132               GUESTFS_ADD_DRIVE_OPTS_FORMAT_BITMASK,
1133    .readonly = 1,
1134    .format = "qcow2"
1135  };
1136  
1137  guestfs_add_drive_opts_argv (g, filename, &optargs);
1138
1139 Notes:
1140
1141 =over 4
1142
1143 =item *
1144
1145 The C<_BITMASK> suffix on each option name when specifying the
1146 bitmask.
1147
1148 =item *
1149
1150 You do not need to fill in all fields of the structure.
1151
1152 =item *
1153
1154 There must be a one-to-one correspondence between fields of the
1155 structure that are filled in, and bits set in the bitmask.
1156
1157 =back
1158
1159 =head2 OPTIONAL ARGUMENTS IN OTHER LANGUAGES
1160
1161 In other languages, optional arguments are expressed in the
1162 way that is natural for that language.  We refer you to the
1163 language-specific documentation for more details on that.
1164
1165 For guestfish, see L<guestfish(1)/OPTIONAL ARGUMENTS>.
1166
1167 =begin html
1168
1169 <!-- old anchor for the next section -->
1170 <a name="state_machine_and_low_level_event_api"/>
1171
1172 =end html
1173
1174 =head1 ARCHITECTURE
1175
1176 Internally, libguestfs is implemented by running an appliance (a
1177 special type of small virtual machine) using L<qemu(1)>.  Qemu runs as
1178 a child process of the main program.
1179
1180   ___________________
1181  /                   \
1182  | main program      |
1183  |                   |
1184  |                   |           child process / appliance
1185  |                   |           __________________________
1186  |                   |          / qemu                     \
1187  +-------------------+   RPC    |      +-----------------+ |
1188  | libguestfs     <--------------------> guestfsd        | |
1189  |                   |          |      +-----------------+ |
1190  \___________________/          |      | Linux kernel    | |
1191                                 |      +--^--------------+ |
1192                                 \_________|________________/
1193                                           |
1194                                    _______v______
1195                                   /              \
1196                                   | Device or    |
1197                                   | disk image   |
1198                                   \______________/
1199
1200 The library, linked to the main program, creates the child process and
1201 hence the appliance in the L</guestfs_launch> function.
1202
1203 Inside the appliance is a Linux kernel and a complete stack of
1204 userspace tools (such as LVM and ext2 programs) and a small
1205 controlling daemon called L</guestfsd>.  The library talks to
1206 L</guestfsd> using remote procedure calls (RPC).  There is a mostly
1207 one-to-one correspondence between libguestfs API calls and RPC calls
1208 to the daemon.  Lastly the disk image(s) are attached to the qemu
1209 process which translates device access by the appliance's Linux kernel
1210 into accesses to the image.
1211
1212 A common misunderstanding is that the appliance "is" the virtual
1213 machine.  Although the disk image you are attached to might also be
1214 used by some virtual machine, libguestfs doesn't know or care about
1215 this.  (But you will care if both libguestfs's qemu process and your
1216 virtual machine are trying to update the disk image at the same time,
1217 since these usually results in massive disk corruption).
1218
1219 =head1 STATE MACHINE
1220
1221 libguestfs uses a state machine to model the child process:
1222
1223                          |
1224                     guestfs_create
1225                          |
1226                          |
1227                      ____V_____
1228                     /          \
1229                     |  CONFIG  |
1230                     \__________/
1231                      ^ ^   ^  \
1232                     /  |    \  \ guestfs_launch
1233                    /   |    _\__V______
1234                   /    |   /           \
1235                  /     |   | LAUNCHING |
1236                 /      |   \___________/
1237                /       |       /
1238               /        |  guestfs_launch
1239              /         |     /
1240     ______  /        __|____V
1241    /      \ ------> /        \
1242    | BUSY |         | READY  |
1243    \______/ <------ \________/
1244
1245 The normal transitions are (1) CONFIG (when the handle is created, but
1246 there is no child process), (2) LAUNCHING (when the child process is
1247 booting up), (3) alternating between READY and BUSY as commands are
1248 issued to, and carried out by, the child process.
1249
1250 The guest may be killed by L</guestfs_kill_subprocess>, or may die
1251 asynchronously at any time (eg. due to some internal error), and that
1252 causes the state to transition back to CONFIG.
1253
1254 Configuration commands for qemu such as L</guestfs_add_drive> can only
1255 be issued when in the CONFIG state.
1256
1257 The API offers one call that goes from CONFIG through LAUNCHING to
1258 READY.  L</guestfs_launch> blocks until the child process is READY to
1259 accept commands (or until some failure or timeout).
1260 L</guestfs_launch> internally moves the state from CONFIG to LAUNCHING
1261 while it is running.
1262
1263 API actions such as L</guestfs_mount> can only be issued when in the
1264 READY state.  These API calls block waiting for the command to be
1265 carried out (ie. the state to transition to BUSY and then back to
1266 READY).  There are no non-blocking versions, and no way to issue more
1267 than one command per handle at the same time.
1268
1269 Finally, the child process sends asynchronous messages back to the
1270 main program, such as kernel log messages.  You can register a
1271 callback to receive these messages.
1272
1273 =head2 SETTING CALLBACKS TO HANDLE EVENTS
1274
1275 The child process generates events in some situations.  Current events
1276 include: receiving a log message, the child process exits.
1277
1278 Use the C<guestfs_set_*_callback> functions to set a callback for
1279 different types of events.
1280
1281 Only I<one callback of each type> can be registered for each handle.
1282 Calling C<guestfs_set_*_callback> again overwrites the previous
1283 callback of that type.  Cancel all callbacks of this type by calling
1284 this function with C<cb> set to C<NULL>.
1285
1286 =head2 guestfs_set_log_message_callback
1287
1288  typedef void (*guestfs_log_message_cb) (guestfs_h *g, void *opaque,
1289                                          char *buf, int len);
1290  void guestfs_set_log_message_callback (guestfs_h *g,
1291                                         guestfs_log_message_cb cb,
1292                                         void *opaque);
1293
1294 The callback function C<cb> will be called whenever qemu or the guest
1295 writes anything to the console.
1296
1297 Use this function to capture kernel messages and similar.
1298
1299 Normally there is no log message handler, and log messages are just
1300 discarded.
1301
1302 =head2 guestfs_set_subprocess_quit_callback
1303
1304  typedef void (*guestfs_subprocess_quit_cb) (guestfs_h *g, void *opaque);
1305  void guestfs_set_subprocess_quit_callback (guestfs_h *g,
1306                                             guestfs_subprocess_quit_cb cb,
1307                                             void *opaque);
1308
1309 The callback function C<cb> will be called when the child process
1310 quits, either asynchronously or if killed by
1311 L</guestfs_kill_subprocess>.  (This corresponds to a transition from
1312 any state to the CONFIG state).
1313
1314 =head2 guestfs_set_launch_done_callback
1315
1316  typedef void (*guestfs_launch_done_cb) (guestfs_h *g, void *opaque);
1317  void guestfs_set_launch_done_callback (guestfs_h *g,
1318                                         guestfs_launch_done_cb cb,
1319                                         void *opaque);
1320
1321 The callback function C<cb> will be called when the child process
1322 becomes ready first time after it has been launched.  (This
1323 corresponds to a transition from LAUNCHING to the READY state).
1324
1325 =head2 guestfs_set_close_callback
1326
1327  typedef void (*guestfs_close_cb) (guestfs_h *g, void *opaque);
1328  void guestfs_set_close_callback (guestfs_h *g,
1329                                   guestfs_close_cb cb,
1330                                   void *opaque);
1331
1332 The callback function C<cb> will be called while the handle
1333 is being closed (synchronously from L</guestfs_close>).
1334
1335 Note that libguestfs installs an L<atexit(3)> handler to try to
1336 clean up handles that are open when the program exits.  This
1337 means that this callback might be called indirectly from
1338 L<exit(3)>, which can cause unexpected problems in higher-level
1339 languages (eg. if your HLL interpreter has already been cleaned
1340 up by the time this is called, and if your callback then jumps
1341 into some HLL function).
1342
1343 =head2 guestfs_set_progress_callback
1344
1345  typedef void (*guestfs_progress_cb) (guestfs_h *g, void *opaque,
1346                                       int proc_nr, int serial,
1347                                       uint64_t position, uint64_t total);
1348  void guestfs_set_progress_callback (guestfs_h *g,
1349                                      guestfs_progress_cb cb,
1350                                      void *opaque);
1351
1352 Some long-running operations can generate progress messages.  If
1353 this callback is registered, then it will be called each time a
1354 progress message is generated (usually two seconds after the
1355 operation started, and three times per second thereafter until
1356 it completes, although the frequency may change in future versions).
1357
1358 The callback receives two numbers: C<position> and C<total>.
1359 The units of C<total> are not defined, although for some
1360 operations C<total> may relate in some way to the amount of
1361 data to be transferred (eg. in bytes or megabytes), and
1362 C<position> may be the portion which has been transferred.
1363
1364 The only defined and stable parts of the API are:
1365
1366 =over 4
1367
1368 =item *
1369
1370 The callback can display to the user some type of progress bar or
1371 indicator which shows the ratio of C<position>:C<total>.
1372
1373 =item *
1374
1375 0 E<lt>= C<position> E<lt>= C<total>
1376
1377 =item *
1378
1379 If any progress notification is sent during a call, then a final
1380 progress notification is always sent when C<position> = C<total>.
1381
1382 This is to simplify caller code, so callers can easily set the
1383 progress indicator to "100%" at the end of the operation, without
1384 requiring special code to detect this case.
1385
1386 =back
1387
1388 The callback also receives the procedure number and serial number of
1389 the call.  These are only useful for debugging protocol issues, and
1390 the callback can normally ignore them.  The callback may want to
1391 print these numbers in error messages or debugging messages.
1392
1393 =head1 PRIVATE DATA AREA
1394
1395 You can attach named pieces of private data to the libguestfs handle,
1396 and fetch them by name for the lifetime of the handle.  This is called
1397 the private data area and is only available from the C API.
1398
1399 To attach a named piece of data, use the following call:
1400
1401  void guestfs_set_private (guestfs_h *g, const char *key, void *data);
1402
1403 C<key> is the name to associate with this data, and C<data> is an
1404 arbitrary pointer (which can be C<NULL>).  Any previous item with the
1405 same name is overwritten.
1406
1407 You can use any C<key> you want, but names beginning with an
1408 underscore character are reserved for internal libguestfs purposes
1409 (for implementing language bindings).  It is recommended to prefix the
1410 name with some unique string to avoid collisions with other users.
1411
1412 To retrieve the pointer, use:
1413
1414  void *guestfs_get_private (guestfs_h *g, const char *key);
1415
1416 This function returns C<NULL> if either no data is found associated
1417 with C<key>, or if the user previously set the C<key>'s C<data>
1418 pointer to C<NULL>.
1419
1420 Libguestfs does not try to look at or interpret the C<data> pointer in
1421 any way.  As far as libguestfs is concerned, it need not be a valid
1422 pointer at all.  In particular, libguestfs does I<not> try to free the
1423 data when the handle is closed.  If the data must be freed, then the
1424 caller must either free it before calling L</guestfs_close> or must
1425 set up a close callback to do it (see L</guestfs_set_close_callback>,
1426 and note that only one callback can be registered for a handle).
1427
1428 The private data area is implemented using a hash table, and should be
1429 reasonably efficient for moderate numbers of keys.
1430
1431 =head1 BLOCK DEVICE NAMING
1432
1433 In the kernel there is now quite a profusion of schemata for naming
1434 block devices (in this context, by I<block device> I mean a physical
1435 or virtual hard drive).  The original Linux IDE driver used names
1436 starting with C</dev/hd*>.  SCSI devices have historically used a
1437 different naming scheme, C</dev/sd*>.  When the Linux kernel I<libata>
1438 driver became a popular replacement for the old IDE driver
1439 (particularly for SATA devices) those devices also used the
1440 C</dev/sd*> scheme.  Additionally we now have virtual machines with
1441 paravirtualized drivers.  This has created several different naming
1442 systems, such as C</dev/vd*> for virtio disks and C</dev/xvd*> for Xen
1443 PV disks.
1444
1445 As discussed above, libguestfs uses a qemu appliance running an
1446 embedded Linux kernel to access block devices.  We can run a variety
1447 of appliances based on a variety of Linux kernels.
1448
1449 This causes a problem for libguestfs because many API calls use device
1450 or partition names.  Working scripts and the recipe (example) scripts
1451 that we make available over the internet could fail if the naming
1452 scheme changes.
1453
1454 Therefore libguestfs defines C</dev/sd*> as the I<standard naming
1455 scheme>.  Internally C</dev/sd*> names are translated, if necessary,
1456 to other names as required.  For example, under RHEL 5 which uses the
1457 C</dev/hd*> scheme, any device parameter C</dev/sda2> is translated to
1458 C</dev/hda2> transparently.
1459
1460 Note that this I<only> applies to parameters.  The
1461 L</guestfs_list_devices>, L</guestfs_list_partitions> and similar calls
1462 return the true names of the devices and partitions as known to the
1463 appliance.
1464
1465 =head2 ALGORITHM FOR BLOCK DEVICE NAME TRANSLATION
1466
1467 Usually this translation is transparent.  However in some (very rare)
1468 cases you may need to know the exact algorithm.  Such cases include
1469 where you use L</guestfs_config> to add a mixture of virtio and IDE
1470 devices to the qemu-based appliance, so have a mixture of C</dev/sd*>
1471 and C</dev/vd*> devices.
1472
1473 The algorithm is applied only to I<parameters> which are known to be
1474 either device or partition names.  Return values from functions such
1475 as L</guestfs_list_devices> are never changed.
1476
1477 =over 4
1478
1479 =item *
1480
1481 Is the string a parameter which is a device or partition name?
1482
1483 =item *
1484
1485 Does the string begin with C</dev/sd>?
1486
1487 =item *
1488
1489 Does the named device exist?  If so, we use that device.
1490 However if I<not> then we continue with this algorithm.
1491
1492 =item *
1493
1494 Replace initial C</dev/sd> string with C</dev/hd>.
1495
1496 For example, change C</dev/sda2> to C</dev/hda2>.
1497
1498 If that named device exists, use it.  If not, continue.
1499
1500 =item *
1501
1502 Replace initial C</dev/sd> string with C</dev/vd>.
1503
1504 If that named device exists, use it.  If not, return an error.
1505
1506 =back
1507
1508 =head2 PORTABILITY CONCERNS
1509
1510 Although the standard naming scheme and automatic translation is
1511 useful for simple programs and guestfish scripts, for larger programs
1512 it is best not to rely on this mechanism.
1513
1514 Where possible for maximum future portability programs using
1515 libguestfs should use these future-proof techniques:
1516
1517 =over 4
1518
1519 =item *
1520
1521 Use L</guestfs_list_devices> or L</guestfs_list_partitions> to list
1522 actual device names, and then use those names directly.
1523
1524 Since those device names exist by definition, they will never be
1525 translated.
1526
1527 =item *
1528
1529 Use higher level ways to identify filesystems, such as LVM names,
1530 UUIDs and filesystem labels.
1531
1532 =back
1533
1534 =head1 INTERNALS
1535
1536 =head2 COMMUNICATION PROTOCOL
1537
1538 Don't rely on using this protocol directly.  This section documents
1539 how it currently works, but it may change at any time.
1540
1541 The protocol used to talk between the library and the daemon running
1542 inside the qemu virtual machine is a simple RPC mechanism built on top
1543 of XDR (RFC 1014, RFC 1832, RFC 4506).
1544
1545 The detailed format of structures is in C<src/guestfs_protocol.x>
1546 (note: this file is automatically generated).
1547
1548 There are two broad cases, ordinary functions that don't have any
1549 C<FileIn> and C<FileOut> parameters, which are handled with very
1550 simple request/reply messages.  Then there are functions that have any
1551 C<FileIn> or C<FileOut> parameters, which use the same request and
1552 reply messages, but they may also be followed by files sent using a
1553 chunked encoding.
1554
1555 =head3 ORDINARY FUNCTIONS (NO FILEIN/FILEOUT PARAMS)
1556
1557 For ordinary functions, the request message is:
1558
1559  total length (header + arguments,
1560       but not including the length word itself)
1561  struct guestfs_message_header (encoded as XDR)
1562  struct guestfs_<foo>_args (encoded as XDR)
1563
1564 The total length field allows the daemon to allocate a fixed size
1565 buffer into which it slurps the rest of the message.  As a result, the
1566 total length is limited to C<GUESTFS_MESSAGE_MAX> bytes (currently
1567 4MB), which means the effective size of any request is limited to
1568 somewhere under this size.
1569
1570 Note also that many functions don't take any arguments, in which case
1571 the C<guestfs_I<foo>_args> is completely omitted.
1572
1573 The header contains the procedure number (C<guestfs_proc>) which is
1574 how the receiver knows what type of args structure to expect, or none
1575 at all.
1576
1577 The reply message for ordinary functions is:
1578
1579  total length (header + ret,
1580       but not including the length word itself)
1581  struct guestfs_message_header (encoded as XDR)
1582  struct guestfs_<foo>_ret (encoded as XDR)
1583
1584 As above the C<guestfs_I<foo>_ret> structure may be completely omitted
1585 for functions that return no formal return values.
1586
1587 As above the total length of the reply is limited to
1588 C<GUESTFS_MESSAGE_MAX>.
1589
1590 In the case of an error, a flag is set in the header, and the reply
1591 message is slightly changed:
1592
1593  total length (header + error,
1594       but not including the length word itself)
1595  struct guestfs_message_header (encoded as XDR)
1596  struct guestfs_message_error (encoded as XDR)
1597
1598 The C<guestfs_message_error> structure contains the error message as a
1599 string.
1600
1601 =head3 FUNCTIONS THAT HAVE FILEIN PARAMETERS
1602
1603 A C<FileIn> parameter indicates that we transfer a file I<into> the
1604 guest.  The normal request message is sent (see above).  However this
1605 is followed by a sequence of file chunks.
1606
1607  total length (header + arguments,
1608       but not including the length word itself,
1609       and not including the chunks)
1610  struct guestfs_message_header (encoded as XDR)
1611  struct guestfs_<foo>_args (encoded as XDR)
1612  sequence of chunks for FileIn param #0
1613  sequence of chunks for FileIn param #1 etc.
1614
1615 The "sequence of chunks" is:
1616
1617  length of chunk (not including length word itself)
1618  struct guestfs_chunk (encoded as XDR)
1619  length of chunk
1620  struct guestfs_chunk (encoded as XDR)
1621    ...
1622  length of chunk
1623  struct guestfs_chunk (with data.data_len == 0)
1624
1625 The final chunk has the C<data_len> field set to zero.  Additionally a
1626 flag is set in the final chunk to indicate either successful
1627 completion or early cancellation.
1628
1629 At time of writing there are no functions that have more than one
1630 FileIn parameter.  However this is (theoretically) supported, by
1631 sending the sequence of chunks for each FileIn parameter one after
1632 another (from left to right).
1633
1634 Both the library (sender) I<and> the daemon (receiver) may cancel the
1635 transfer.  The library does this by sending a chunk with a special
1636 flag set to indicate cancellation.  When the daemon sees this, it
1637 cancels the whole RPC, does I<not> send any reply, and goes back to
1638 reading the next request.
1639
1640 The daemon may also cancel.  It does this by writing a special word
1641 C<GUESTFS_CANCEL_FLAG> to the socket.  The library listens for this
1642 during the transfer, and if it gets it, it will cancel the transfer
1643 (it sends a cancel chunk).  The special word is chosen so that even if
1644 cancellation happens right at the end of the transfer (after the
1645 library has finished writing and has started listening for the reply),
1646 the "spurious" cancel flag will not be confused with the reply
1647 message.
1648
1649 This protocol allows the transfer of arbitrary sized files (no 32 bit
1650 limit), and also files where the size is not known in advance
1651 (eg. from pipes or sockets).  However the chunks are rather small
1652 (C<GUESTFS_MAX_CHUNK_SIZE>), so that neither the library nor the
1653 daemon need to keep much in memory.
1654
1655 =head3 FUNCTIONS THAT HAVE FILEOUT PARAMETERS
1656
1657 The protocol for FileOut parameters is exactly the same as for FileIn
1658 parameters, but with the roles of daemon and library reversed.
1659
1660  total length (header + ret,
1661       but not including the length word itself,
1662       and not including the chunks)
1663  struct guestfs_message_header (encoded as XDR)
1664  struct guestfs_<foo>_ret (encoded as XDR)
1665  sequence of chunks for FileOut param #0
1666  sequence of chunks for FileOut param #1 etc.
1667
1668 =head3 INITIAL MESSAGE
1669
1670 When the daemon launches it sends an initial word
1671 (C<GUESTFS_LAUNCH_FLAG>) which indicates that the guest and daemon is
1672 alive.  This is what L</guestfs_launch> waits for.
1673
1674 =head3 PROGRESS NOTIFICATION MESSAGES
1675
1676 The daemon may send progress notification messages at any time.  These
1677 are distinguished by the normal length word being replaced by
1678 C<GUESTFS_PROGRESS_FLAG>, followed by a fixed size progress message.
1679
1680 The library turns them into progress callbacks (see
1681 C<guestfs_set_progress_callback>) if there is a callback registered,
1682 or discards them if not.
1683
1684 The daemon self-limits the frequency of progress messages it sends
1685 (see C<daemon/proto.c:notify_progress>).  Not all calls generate
1686 progress messages.
1687
1688 =head1 MULTIPLE HANDLES AND MULTIPLE THREADS
1689
1690 All high-level libguestfs actions are synchronous.  If you want
1691 to use libguestfs asynchronously then you must create a thread.
1692
1693 Only use the handle from a single thread.  Either use the handle
1694 exclusively from one thread, or provide your own mutex so that two
1695 threads cannot issue calls on the same handle at the same time.
1696
1697 See the graphical program guestfs-browser for one possible
1698 architecture for multithreaded programs using libvirt and libguestfs.
1699
1700 =head1 QEMU WRAPPERS
1701
1702 If you want to compile your own qemu, run qemu from a non-standard
1703 location, or pass extra arguments to qemu, then you can write a
1704 shell-script wrapper around qemu.
1705
1706 There is one important rule to remember: you I<must C<exec qemu>> as
1707 the last command in the shell script (so that qemu replaces the shell
1708 and becomes the direct child of the libguestfs-using program).  If you
1709 don't do this, then the qemu process won't be cleaned up correctly.
1710
1711 Here is an example of a wrapper, where I have built my own copy of
1712 qemu from source:
1713
1714  #!/bin/sh -
1715  qemudir=/home/rjones/d/qemu
1716  exec $qemudir/x86_64-softmmu/qemu-system-x86_64 -L $qemudir/pc-bios "$@"
1717
1718 Save this script as C</tmp/qemu.wrapper> (or wherever), C<chmod +x>,
1719 and then use it by setting the LIBGUESTFS_QEMU environment variable.
1720 For example:
1721
1722  LIBGUESTFS_QEMU=/tmp/qemu.wrapper guestfish
1723
1724 Note that libguestfs also calls qemu with the -help and -version
1725 options in order to determine features.
1726
1727 =head1 LIBGUESTFS VERSION NUMBERS
1728
1729 Since April 2010, libguestfs has started to make separate development
1730 and stable releases, along with corresponding branches in our git
1731 repository.  These separate releases can be identified by version
1732 number:
1733
1734                  even numbers for stable: 1.2.x, 1.4.x, ...
1735        .-------- odd numbers for development: 1.3.x, 1.5.x, ...
1736        |
1737        v
1738  1  .  3  .  5
1739  ^           ^
1740  |           |
1741  |           `-------- sub-version
1742  |
1743  `------ always '1' because we don't change the ABI
1744
1745 Thus "1.3.5" is the 5th update to the development branch "1.3".
1746
1747 As time passes we cherry pick fixes from the development branch and
1748 backport those into the stable branch, the effect being that the
1749 stable branch should get more stable and less buggy over time.  So the
1750 stable releases are ideal for people who don't need new features but
1751 would just like the software to work.
1752
1753 Our criteria for backporting changes are:
1754
1755 =over 4
1756
1757 =item *
1758
1759 Documentation changes which don't affect any code are
1760 backported unless the documentation refers to a future feature
1761 which is not in stable.
1762
1763 =item *
1764
1765 Bug fixes which are not controversial, fix obvious problems, and
1766 have been well tested are backported.
1767
1768 =item *
1769
1770 Simple rearrangements of code which shouldn't affect how it works get
1771 backported.  This is so that the code in the two branches doesn't get
1772 too far out of step, allowing us to backport future fixes more easily.
1773
1774 =item *
1775
1776 We I<don't> backport new features, new APIs, new tools etc, except in
1777 one exceptional case: the new feature is required in order to
1778 implement an important bug fix.
1779
1780 =back
1781
1782 A new stable branch starts when we think the new features in
1783 development are substantial and compelling enough over the current
1784 stable branch to warrant it.  When that happens we create new stable
1785 and development versions 1.N.0 and 1.(N+1).0 [N is even].  The new
1786 dot-oh release won't necessarily be so stable at this point, but by
1787 backporting fixes from development, that branch will stabilize over
1788 time.
1789
1790 =head1 ENVIRONMENT VARIABLES
1791
1792 =over 4
1793
1794 =item LIBGUESTFS_APPEND
1795
1796 Pass additional options to the guest kernel.
1797
1798 =item LIBGUESTFS_DEBUG
1799
1800 Set C<LIBGUESTFS_DEBUG=1> to enable verbose messages.  This
1801 has the same effect as calling C<guestfs_set_verbose (g, 1)>.
1802
1803 =item LIBGUESTFS_MEMSIZE
1804
1805 Set the memory allocated to the qemu process, in megabytes.  For
1806 example:
1807
1808  LIBGUESTFS_MEMSIZE=700
1809
1810 =item LIBGUESTFS_PATH
1811
1812 Set the path that libguestfs uses to search for kernel and initrd.img.
1813 See the discussion of paths in section PATH above.
1814
1815 =item LIBGUESTFS_QEMU
1816
1817 Set the default qemu binary that libguestfs uses.  If not set, then
1818 the qemu which was found at compile time by the configure script is
1819 used.
1820
1821 See also L</QEMU WRAPPERS> above.
1822
1823 =item LIBGUESTFS_TRACE
1824
1825 Set C<LIBGUESTFS_TRACE=1> to enable command traces.  This
1826 has the same effect as calling C<guestfs_set_trace (g, 1)>.
1827
1828 =item TMPDIR
1829
1830 Location of temporary directory, defaults to C</tmp>.
1831
1832 If libguestfs was compiled to use the supermin appliance then the
1833 real appliance is cached in this directory, shared between all
1834 handles belonging to the same EUID.  You can use C<$TMPDIR> to
1835 configure another directory to use in case C</tmp> is not large
1836 enough.
1837
1838 =back
1839
1840 =head1 SEE ALSO
1841
1842 L<guestfish(1)>,
1843 L<guestmount(1)>,
1844 L<virt-cat(1)>,
1845 L<virt-df(1)>,
1846 L<virt-edit(1)>,
1847 L<virt-inspector(1)>,
1848 L<virt-list-filesystems(1)>,
1849 L<virt-list-partitions(1)>,
1850 L<virt-ls(1)>,
1851 L<virt-make-fs(1)>,
1852 L<virt-rescue(1)>,
1853 L<virt-tar(1)>,
1854 L<virt-win-reg(1)>,
1855 L<qemu(1)>,
1856 L<febootstrap(1)>,
1857 L<hivex(3)>,
1858 L<http://libguestfs.org/>.
1859
1860 Tools with a similar purpose:
1861 L<fdisk(8)>,
1862 L<parted(8)>,
1863 L<kpartx(8)>,
1864 L<lvm(8)>,
1865 L<disktype(1)>.
1866
1867 =head1 BUGS
1868
1869 To get a list of bugs against libguestfs use this link:
1870
1871 L<https://bugzilla.redhat.com/buglist.cgi?component=libguestfs&product=Virtualization+Tools>
1872
1873 To report a new bug against libguestfs use this link:
1874
1875 L<https://bugzilla.redhat.com/enter_bug.cgi?component=libguestfs&product=Virtualization+Tools>
1876
1877 When reporting a bug, please check:
1878
1879 =over 4
1880
1881 =item *
1882
1883 That the bug hasn't been reported already.
1884
1885 =item *
1886
1887 That you are testing a recent version.
1888
1889 =item *
1890
1891 Describe the bug accurately, and give a way to reproduce it.
1892
1893 =item *
1894
1895 Run libguestfs-test-tool and paste the B<complete, unedited>
1896 output into the bug report.
1897
1898 =back
1899
1900 =head1 AUTHORS
1901
1902 Richard W.M. Jones (C<rjones at redhat dot com>)
1903
1904 =head1 COPYRIGHT
1905
1906 Copyright (C) 2009-2010 Red Hat Inc.
1907 L<http://libguestfs.org/>
1908
1909 This library is free software; you can redistribute it and/or
1910 modify it under the terms of the GNU Lesser General Public
1911 License as published by the Free Software Foundation; either
1912 version 2 of the License, or (at your option) any later version.
1913
1914 This library is distributed in the hope that it will be useful,
1915 but WITHOUT ANY WARRANTY; without even the implied warranty of
1916 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
1917 Lesser General Public License for more details.
1918
1919 You should have received a copy of the GNU Lesser General Public
1920 License along with this library; if not, write to the Free Software
1921 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA