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