Missing \n character in Ruby bindings.
[libguestfs.git] / guestfs-actions.pod
1 =head2 guestfs_add_cdrom
2
3  int guestfs_add_cdrom (guestfs_h *handle,
4                 const char *filename);
5
6 This function adds a virtual CD-ROM disk image to the guest.
7
8 This is equivalent to the qemu parameter C<-cdrom filename>.
9
10 Note that this call checks for the existence of C<filename>.  This
11 stops you from specifying other types of drive which are supported
12 by qemu such as C<nbd:> and C<http:> URLs.  To specify those, use
13 the general C<guestfs_config> call instead.
14
15 This function returns 0 on success or -1 on error.
16
17 =head2 guestfs_add_drive
18
19  int guestfs_add_drive (guestfs_h *handle,
20                 const char *filename);
21
22 This function adds a virtual machine disk image C<filename> to the
23 guest.  The first time you call this function, the disk appears as IDE
24 disk 0 (C</dev/sda>) in the guest, the second time as C</dev/sdb>, and
25 so on.
26
27 You don't necessarily need to be root when using libguestfs.  However
28 you obviously do need sufficient permissions to access the filename
29 for whatever operations you want to perform (ie. read access if you
30 just want to read the image or write access if you want to modify the
31 image).
32
33 This is equivalent to the qemu parameter C<-drive file=filename>.
34
35 Note that this call checks for the existence of C<filename>.  This
36 stops you from specifying other types of drive which are supported
37 by qemu such as C<nbd:> and C<http:> URLs.  To specify those, use
38 the general C<guestfs_config> call instead.
39
40 This function returns 0 on success or -1 on error.
41
42 =head2 guestfs_add_drive_ro
43
44  int guestfs_add_drive_ro (guestfs_h *handle,
45                 const char *filename);
46
47 This adds a drive in snapshot mode, making it effectively
48 read-only.
49
50 Note that writes to the device are allowed, and will be seen for
51 the duration of the guestfs handle, but they are written
52 to a temporary file which is discarded as soon as the guestfs
53 handle is closed.  We don't currently have any method to enable
54 changes to be committed, although qemu can support this.
55
56 This is equivalent to the qemu parameter
57 C<-drive file=filename,snapshot=on>.
58
59 Note that this call checks for the existence of C<filename>.  This
60 stops you from specifying other types of drive which are supported
61 by qemu such as C<nbd:> and C<http:> URLs.  To specify those, use
62 the general C<guestfs_config> call instead.
63
64 This function returns 0 on success or -1 on error.
65
66 =head2 guestfs_aug_close
67
68  int guestfs_aug_close (guestfs_h *handle);
69
70 Close the current Augeas handle and free up any resources
71 used by it.  After calling this, you have to call
72 C<guestfs_aug_init> again before you can use any other
73 Augeas functions.
74
75 This function returns 0 on success or -1 on error.
76
77 =head2 guestfs_aug_defnode
78
79  struct guestfs_int_bool *guestfs_aug_defnode (guestfs_h *handle,
80                 const char *name,
81                 const char *expr,
82                 const char *val);
83
84 Defines a variable C<name> whose value is the result of
85 evaluating C<expr>.
86
87 If C<expr> evaluates to an empty nodeset, a node is created,
88 equivalent to calling C<guestfs_aug_set> C<expr>, C<value>.
89 C<name> will be the nodeset containing that single node.
90
91 On success this returns a pair containing the
92 number of nodes in the nodeset, and a boolean flag
93 if a node was created.
94
95 This function returns a C<struct guestfs_int_bool *>,
96 or NULL if there was an error.
97 I<The caller must call C<guestfs_free_int_bool> after use>.
98
99 =head2 guestfs_aug_defvar
100
101  int guestfs_aug_defvar (guestfs_h *handle,
102                 const char *name,
103                 const char *expr);
104
105 Defines an Augeas variable C<name> whose value is the result
106 of evaluating C<expr>.  If C<expr> is NULL, then C<name> is
107 undefined.
108
109 On success this returns the number of nodes in C<expr>, or
110 C<0> if C<expr> evaluates to something which is not a nodeset.
111
112 On error this function returns -1.
113
114 =head2 guestfs_aug_get
115
116  char *guestfs_aug_get (guestfs_h *handle,
117                 const char *path);
118
119 Look up the value associated with C<path>.  If C<path>
120 matches exactly one node, the C<value> is returned.
121
122 This function returns a string, or NULL on error.
123 I<The caller must free the returned string after use>.
124
125 =head2 guestfs_aug_init
126
127  int guestfs_aug_init (guestfs_h *handle,
128                 const char *root,
129                 int flags);
130
131 Create a new Augeas handle for editing configuration files.
132 If there was any previous Augeas handle associated with this
133 guestfs session, then it is closed.
134
135 You must call this before using any other C<guestfs_aug_*>
136 commands.
137
138 C<root> is the filesystem root.  C<root> must not be NULL,
139 use C</> instead.
140
141 The flags are the same as the flags defined in
142 E<lt>augeas.hE<gt>, the logical I<or> of the following
143 integers:
144
145 =over 4
146
147 =item C<AUG_SAVE_BACKUP> = 1
148
149 Keep the original file with a C<.augsave> extension.
150
151 =item C<AUG_SAVE_NEWFILE> = 2
152
153 Save changes into a file with extension C<.augnew>, and
154 do not overwrite original.  Overrides C<AUG_SAVE_BACKUP>.
155
156 =item C<AUG_TYPE_CHECK> = 4
157
158 Typecheck lenses (can be expensive).
159
160 =item C<AUG_NO_STDINC> = 8
161
162 Do not use standard load path for modules.
163
164 =item C<AUG_SAVE_NOOP> = 16
165
166 Make save a no-op, just record what would have been changed.
167
168 =item C<AUG_NO_LOAD> = 32
169
170 Do not load the tree in C<guestfs_aug_init>.
171
172 =back
173
174 To close the handle, you can call C<guestfs_aug_close>.
175
176 To find out more about Augeas, see L<http://augeas.net/>.
177
178 This function returns 0 on success or -1 on error.
179
180 =head2 guestfs_aug_insert
181
182  int guestfs_aug_insert (guestfs_h *handle,
183                 const char *path,
184                 const char *label,
185                 int before);
186
187 Create a new sibling C<label> for C<path>, inserting it into
188 the tree before or after C<path> (depending on the boolean
189 flag C<before>).
190
191 C<path> must match exactly one existing node in the tree, and
192 C<label> must be a label, ie. not contain C</>, C<*> or end
193 with a bracketed index C<[N]>.
194
195 This function returns 0 on success or -1 on error.
196
197 =head2 guestfs_aug_load
198
199  int guestfs_aug_load (guestfs_h *handle);
200
201 Load files into the tree.
202
203 See C<aug_load> in the Augeas documentation for the full gory
204 details.
205
206 This function returns 0 on success or -1 on error.
207
208 =head2 guestfs_aug_ls
209
210  char **guestfs_aug_ls (guestfs_h *handle,
211                 const char *path);
212
213 This is just a shortcut for listing C<guestfs_aug_match>
214 C<path/*> and sorting the resulting nodes into alphabetical order.
215
216 This function returns a NULL-terminated array of strings
217 (like L<environ(3)>), or NULL if there was an error.
218 I<The caller must free the strings and the array after use>.
219
220 =head2 guestfs_aug_match
221
222  char **guestfs_aug_match (guestfs_h *handle,
223                 const char *path);
224
225 Returns a list of paths which match the path expression C<path>.
226 The returned paths are sufficiently qualified so that they match
227 exactly one node in the current tree.
228
229 This function returns a NULL-terminated array of strings
230 (like L<environ(3)>), or NULL if there was an error.
231 I<The caller must free the strings and the array after use>.
232
233 =head2 guestfs_aug_mv
234
235  int guestfs_aug_mv (guestfs_h *handle,
236                 const char *src,
237                 const char *dest);
238
239 Move the node C<src> to C<dest>.  C<src> must match exactly
240 one node.  C<dest> is overwritten if it exists.
241
242 This function returns 0 on success or -1 on error.
243
244 =head2 guestfs_aug_rm
245
246  int guestfs_aug_rm (guestfs_h *handle,
247                 const char *path);
248
249 Remove C<path> and all of its children.
250
251 On success this returns the number of entries which were removed.
252
253 On error this function returns -1.
254
255 =head2 guestfs_aug_save
256
257  int guestfs_aug_save (guestfs_h *handle);
258
259 This writes all pending changes to disk.
260
261 The flags which were passed to C<guestfs_aug_init> affect exactly
262 how files are saved.
263
264 This function returns 0 on success or -1 on error.
265
266 =head2 guestfs_aug_set
267
268  int guestfs_aug_set (guestfs_h *handle,
269                 const char *path,
270                 const char *val);
271
272 Set the value associated with C<path> to C<value>.
273
274 This function returns 0 on success or -1 on error.
275
276 =head2 guestfs_blockdev_flushbufs
277
278  int guestfs_blockdev_flushbufs (guestfs_h *handle,
279                 const char *device);
280
281 This tells the kernel to flush internal buffers associated
282 with C<device>.
283
284 This uses the L<blockdev(8)> command.
285
286 This function returns 0 on success or -1 on error.
287
288 =head2 guestfs_blockdev_getbsz
289
290  int guestfs_blockdev_getbsz (guestfs_h *handle,
291                 const char *device);
292
293 This returns the block size of a device.
294
295 (Note this is different from both I<size in blocks> and
296 I<filesystem block size>).
297
298 This uses the L<blockdev(8)> command.
299
300 On error this function returns -1.
301
302 =head2 guestfs_blockdev_getro
303
304  int guestfs_blockdev_getro (guestfs_h *handle,
305                 const char *device);
306
307 Returns a boolean indicating if the block device is read-only
308 (true if read-only, false if not).
309
310 This uses the L<blockdev(8)> command.
311
312 This function returns a C truth value on success or -1 on error.
313
314 =head2 guestfs_blockdev_getsize64
315
316  int64_t guestfs_blockdev_getsize64 (guestfs_h *handle,
317                 const char *device);
318
319 This returns the size of the device in bytes.
320
321 See also C<guestfs_blockdev_getsz>.
322
323 This uses the L<blockdev(8)> command.
324
325 On error this function returns -1.
326
327 =head2 guestfs_blockdev_getss
328
329  int guestfs_blockdev_getss (guestfs_h *handle,
330                 const char *device);
331
332 This returns the size of sectors on a block device.
333 Usually 512, but can be larger for modern devices.
334
335 (Note, this is not the size in sectors, use C<guestfs_blockdev_getsz>
336 for that).
337
338 This uses the L<blockdev(8)> command.
339
340 On error this function returns -1.
341
342 =head2 guestfs_blockdev_getsz
343
344  int64_t guestfs_blockdev_getsz (guestfs_h *handle,
345                 const char *device);
346
347 This returns the size of the device in units of 512-byte sectors
348 (even if the sectorsize isn't 512 bytes ... weird).
349
350 See also C<guestfs_blockdev_getss> for the real sector size of
351 the device, and C<guestfs_blockdev_getsize64> for the more
352 useful I<size in bytes>.
353
354 This uses the L<blockdev(8)> command.
355
356 On error this function returns -1.
357
358 =head2 guestfs_blockdev_rereadpt
359
360  int guestfs_blockdev_rereadpt (guestfs_h *handle,
361                 const char *device);
362
363 Reread the partition table on C<device>.
364
365 This uses the L<blockdev(8)> command.
366
367 This function returns 0 on success or -1 on error.
368
369 =head2 guestfs_blockdev_setbsz
370
371  int guestfs_blockdev_setbsz (guestfs_h *handle,
372                 const char *device,
373                 int blocksize);
374
375 This sets the block size of a device.
376
377 (Note this is different from both I<size in blocks> and
378 I<filesystem block size>).
379
380 This uses the L<blockdev(8)> command.
381
382 This function returns 0 on success or -1 on error.
383
384 =head2 guestfs_blockdev_setro
385
386  int guestfs_blockdev_setro (guestfs_h *handle,
387                 const char *device);
388
389 Sets the block device named C<device> to read-only.
390
391 This uses the L<blockdev(8)> command.
392
393 This function returns 0 on success or -1 on error.
394
395 =head2 guestfs_blockdev_setrw
396
397  int guestfs_blockdev_setrw (guestfs_h *handle,
398                 const char *device);
399
400 Sets the block device named C<device> to read-write.
401
402 This uses the L<blockdev(8)> command.
403
404 This function returns 0 on success or -1 on error.
405
406 =head2 guestfs_cat
407
408  char *guestfs_cat (guestfs_h *handle,
409                 const char *path);
410
411 Return the contents of the file named C<path>.
412
413 Note that this function cannot correctly handle binary files
414 (specifically, files containing C<\0> character which is treated
415 as end of string).  For those you need to use the C<guestfs_download>
416 function which has a more complex interface.
417
418 This function returns a string, or NULL on error.
419 I<The caller must free the returned string after use>.
420
421 Because of the message protocol, there is a transfer limit 
422 of somewhere between 2MB and 4MB.  To transfer large files you should use
423 FTP.
424
425 =head2 guestfs_checksum
426
427  char *guestfs_checksum (guestfs_h *handle,
428                 const char *csumtype,
429                 const char *path);
430
431 This call computes the MD5, SHAx or CRC checksum of the
432 file named C<path>.
433
434 The type of checksum to compute is given by the C<csumtype>
435 parameter which must have one of the following values:
436
437 =over 4
438
439 =item C<crc>
440
441 Compute the cyclic redundancy check (CRC) specified by POSIX
442 for the C<cksum> command.
443
444 =item C<md5>
445
446 Compute the MD5 hash (using the C<md5sum> program).
447
448 =item C<sha1>
449
450 Compute the SHA1 hash (using the C<sha1sum> program).
451
452 =item C<sha224>
453
454 Compute the SHA224 hash (using the C<sha224sum> program).
455
456 =item C<sha256>
457
458 Compute the SHA256 hash (using the C<sha256sum> program).
459
460 =item C<sha384>
461
462 Compute the SHA384 hash (using the C<sha384sum> program).
463
464 =item C<sha512>
465
466 Compute the SHA512 hash (using the C<sha512sum> program).
467
468 =back
469
470 The checksum is returned as a printable string.
471
472 This function returns a string, or NULL on error.
473 I<The caller must free the returned string after use>.
474
475 =head2 guestfs_chmod
476
477  int guestfs_chmod (guestfs_h *handle,
478                 int mode,
479                 const char *path);
480
481 Change the mode (permissions) of C<path> to C<mode>.  Only
482 numeric modes are supported.
483
484 This function returns 0 on success or -1 on error.
485
486 =head2 guestfs_chown
487
488  int guestfs_chown (guestfs_h *handle,
489                 int owner,
490                 int group,
491                 const char *path);
492
493 Change the file owner to C<owner> and group to C<group>.
494
495 Only numeric uid and gid are supported.  If you want to use
496 names, you will need to locate and parse the password file
497 yourself (Augeas support makes this relatively easy).
498
499 This function returns 0 on success or -1 on error.
500
501 =head2 guestfs_command
502
503  char *guestfs_command (guestfs_h *handle,
504                 char * const* const arguments);
505
506 This call runs a command from the guest filesystem.  The
507 filesystem must be mounted, and must contain a compatible
508 operating system (ie. something Linux, with the same
509 or compatible processor architecture).
510
511 The single parameter is an argv-style list of arguments.
512 The first element is the name of the program to run.
513 Subsequent elements are parameters.  The list must be
514 non-empty (ie. must contain a program name).  Note that
515 the command runs directly, and is I<not> invoked via
516 the shell (see C<guestfs_sh>).
517
518 The return value is anything printed to I<stdout> by
519 the command.
520
521 If the command returns a non-zero exit status, then
522 this function returns an error message.  The error message
523 string is the content of I<stderr> from the command.
524
525 The C<$PATH> environment variable will contain at least
526 C</usr/bin> and C</bin>.  If you require a program from
527 another location, you should provide the full path in the
528 first parameter.
529
530 Shared libraries and data files required by the program
531 must be available on filesystems which are mounted in the
532 correct places.  It is the caller's responsibility to ensure
533 all filesystems that are needed are mounted at the right
534 locations.
535
536 This function returns a string, or NULL on error.
537 I<The caller must free the returned string after use>.
538
539 Because of the message protocol, there is a transfer limit 
540 of somewhere between 2MB and 4MB.  To transfer large files you should use
541 FTP.
542
543 =head2 guestfs_command_lines
544
545  char **guestfs_command_lines (guestfs_h *handle,
546                 char * const* const arguments);
547
548 This is the same as C<guestfs_command>, but splits the
549 result into a list of lines.
550
551 See also: C<guestfs_sh_lines>
552
553 This function returns a NULL-terminated array of strings
554 (like L<environ(3)>), or NULL if there was an error.
555 I<The caller must free the strings and the array after use>.
556
557 Because of the message protocol, there is a transfer limit 
558 of somewhere between 2MB and 4MB.  To transfer large files you should use
559 FTP.
560
561 =head2 guestfs_config
562
563  int guestfs_config (guestfs_h *handle,
564                 const char *qemuparam,
565                 const char *qemuvalue);
566
567 This can be used to add arbitrary qemu command line parameters
568 of the form C<-param value>.  Actually it's not quite arbitrary - we
569 prevent you from setting some parameters which would interfere with
570 parameters that we use.
571
572 The first character of C<param> string must be a C<-> (dash).
573
574 C<value> can be NULL.
575
576 This function returns 0 on success or -1 on error.
577
578 =head2 guestfs_cp
579
580  int guestfs_cp (guestfs_h *handle,
581                 const char *src,
582                 const char *dest);
583
584 This copies a file from C<src> to C<dest> where C<dest> is
585 either a destination filename or destination directory.
586
587 This function returns 0 on success or -1 on error.
588
589 =head2 guestfs_cp_a
590
591  int guestfs_cp_a (guestfs_h *handle,
592                 const char *src,
593                 const char *dest);
594
595 This copies a file or directory from C<src> to C<dest>
596 recursively using the C<cp -a> command.
597
598 This function returns 0 on success or -1 on error.
599
600 =head2 guestfs_debug
601
602  char *guestfs_debug (guestfs_h *handle,
603                 const char *subcmd,
604                 char * const* const extraargs);
605
606 The C<guestfs_debug> command exposes some internals of
607 C<guestfsd> (the guestfs daemon) that runs inside the
608 qemu subprocess.
609
610 There is no comprehensive help for this command.  You have
611 to look at the file C<daemon/debug.c> in the libguestfs source
612 to find out what you can do.
613
614 This function returns a string, or NULL on error.
615 I<The caller must free the returned string after use>.
616
617 =head2 guestfs_dmesg
618
619  char *guestfs_dmesg (guestfs_h *handle);
620
621 This returns the kernel messages (C<dmesg> output) from
622 the guest kernel.  This is sometimes useful for extended
623 debugging of problems.
624
625 Another way to get the same information is to enable
626 verbose messages with C<guestfs_set_verbose> or by setting
627 the environment variable C<LIBGUESTFS_DEBUG=1> before
628 running the program.
629
630 This function returns a string, or NULL on error.
631 I<The caller must free the returned string after use>.
632
633 =head2 guestfs_download
634
635  int guestfs_download (guestfs_h *handle,
636                 const char *remotefilename,
637                 const char *filename);
638
639 Download file C<remotefilename> and save it as C<filename>
640 on the local machine.
641
642 C<filename> can also be a named pipe.
643
644 See also C<guestfs_upload>, C<guestfs_cat>.
645
646 This function returns 0 on success or -1 on error.
647
648 =head2 guestfs_drop_caches
649
650  int guestfs_drop_caches (guestfs_h *handle,
651                 int whattodrop);
652
653 This instructs the guest kernel to drop its page cache,
654 and/or dentries and inode caches.  The parameter C<whattodrop>
655 tells the kernel what precisely to drop, see
656 L<http://linux-mm.org/Drop_Caches>
657
658 Setting C<whattodrop> to 3 should drop everything.
659
660 This automatically calls L<sync(2)> before the operation,
661 so that the maximum guest memory is freed.
662
663 This function returns 0 on success or -1 on error.
664
665 =head2 guestfs_e2fsck_f
666
667  int guestfs_e2fsck_f (guestfs_h *handle,
668                 const char *device);
669
670 This runs C<e2fsck -p -f device>, ie. runs the ext2/ext3
671 filesystem checker on C<device>, noninteractively (C<-p>),
672 even if the filesystem appears to be clean (C<-f>).
673
674 This command is only needed because of C<guestfs_resize2fs>
675 (q.v.).  Normally you should use C<guestfs_fsck>.
676
677 This function returns 0 on success or -1 on error.
678
679 =head2 guestfs_end_busy
680
681  int guestfs_end_busy (guestfs_h *handle);
682
683 This sets the state to C<READY>, or if in C<CONFIG> then it leaves the
684 state as is.  This is only used when implementing
685 actions using the low-level API.
686
687 For more information on states, see L<guestfs(3)>.
688
689 This function returns 0 on success or -1 on error.
690
691 =head2 guestfs_equal
692
693  int guestfs_equal (guestfs_h *handle,
694                 const char *file1,
695                 const char *file2);
696
697 This compares the two files C<file1> and C<file2> and returns
698 true if their content is exactly equal, or false otherwise.
699
700 The external L<cmp(1)> program is used for the comparison.
701
702 This function returns a C truth value on success or -1 on error.
703
704 =head2 guestfs_exists
705
706  int guestfs_exists (guestfs_h *handle,
707                 const char *path);
708
709 This returns C<true> if and only if there is a file, directory
710 (or anything) with the given C<path> name.
711
712 See also C<guestfs_is_file>, C<guestfs_is_dir>, C<guestfs_stat>.
713
714 This function returns a C truth value on success or -1 on error.
715
716 =head2 guestfs_file
717
718  char *guestfs_file (guestfs_h *handle,
719                 const char *path);
720
721 This call uses the standard L<file(1)> command to determine
722 the type or contents of the file.  This also works on devices,
723 for example to find out whether a partition contains a filesystem.
724
725 The exact command which runs is C<file -bsL path>.  Note in
726 particular that the filename is not prepended to the output
727 (the C<-b> option).
728
729 This function returns a string, or NULL on error.
730 I<The caller must free the returned string after use>.
731
732 =head2 guestfs_find
733
734  char **guestfs_find (guestfs_h *handle,
735                 const char *directory);
736
737 This command lists out all files and directories, recursively,
738 starting at C<directory>.  It is essentially equivalent to
739 running the shell command C<find directory -print> but some
740 post-processing happens on the output, described below.
741
742 This returns a list of strings I<without any prefix>.  Thus
743 if the directory structure was:
744
745  /tmp/a
746  /tmp/b
747  /tmp/c/d
748
749 then the returned list from C<guestfs_find> C</tmp> would be
750 4 elements:
751
752  a
753  b
754  c
755  c/d
756
757 If C<directory> is not a directory, then this command returns
758 an error.
759
760 The returned list is sorted.
761
762 This function returns a NULL-terminated array of strings
763 (like L<environ(3)>), or NULL if there was an error.
764 I<The caller must free the strings and the array after use>.
765
766 =head2 guestfs_fsck
767
768  int guestfs_fsck (guestfs_h *handle,
769                 const char *fstype,
770                 const char *device);
771
772 This runs the filesystem checker (fsck) on C<device> which
773 should have filesystem type C<fstype>.
774
775 The returned integer is the status.  See L<fsck(8)> for the
776 list of status codes from C<fsck>.
777
778 Notes:
779
780 =over 4
781
782 =item *
783
784 Multiple status codes can be summed together.
785
786 =item *
787
788 A non-zero return code can mean "success", for example if
789 errors have been corrected on the filesystem.
790
791 =item *
792
793 Checking or repairing NTFS volumes is not supported
794 (by linux-ntfs).
795
796 =back
797
798 This command is entirely equivalent to running C<fsck -a -t fstype device>.
799
800 On error this function returns -1.
801
802 =head2 guestfs_get_append
803
804  const char *guestfs_get_append (guestfs_h *handle);
805
806 Return the additional kernel options which are added to the
807 guest kernel command line.
808
809 If C<NULL> then no options are added.
810
811 This function returns a string, or NULL on error.
812 The string is owned by the guest handle and must I<not> be freed.
813
814 =head2 guestfs_get_autosync
815
816  int guestfs_get_autosync (guestfs_h *handle);
817
818 Get the autosync flag.
819
820 This function returns a C truth value on success or -1 on error.
821
822 =head2 guestfs_get_e2label
823
824  char *guestfs_get_e2label (guestfs_h *handle,
825                 const char *device);
826
827 This returns the ext2/3/4 filesystem label of the filesystem on
828 C<device>.
829
830 This function returns a string, or NULL on error.
831 I<The caller must free the returned string after use>.
832
833 =head2 guestfs_get_e2uuid
834
835  char *guestfs_get_e2uuid (guestfs_h *handle,
836                 const char *device);
837
838 This returns the ext2/3/4 filesystem UUID of the filesystem on
839 C<device>.
840
841 This function returns a string, or NULL on error.
842 I<The caller must free the returned string after use>.
843
844 =head2 guestfs_get_path
845
846  const char *guestfs_get_path (guestfs_h *handle);
847
848 Return the current search path.
849
850 This is always non-NULL.  If it wasn't set already, then this will
851 return the default path.
852
853 This function returns a string, or NULL on error.
854 The string is owned by the guest handle and must I<not> be freed.
855
856 =head2 guestfs_get_qemu
857
858  const char *guestfs_get_qemu (guestfs_h *handle);
859
860 Return the current qemu binary.
861
862 This is always non-NULL.  If it wasn't set already, then this will
863 return the default qemu binary name.
864
865 This function returns a string, or NULL on error.
866 The string is owned by the guest handle and must I<not> be freed.
867
868 =head2 guestfs_get_state
869
870  int guestfs_get_state (guestfs_h *handle);
871
872 This returns the current state as an opaque integer.  This is
873 only useful for printing debug and internal error messages.
874
875 For more information on states, see L<guestfs(3)>.
876
877 On error this function returns -1.
878
879 =head2 guestfs_get_verbose
880
881  int guestfs_get_verbose (guestfs_h *handle);
882
883 This returns the verbose messages flag.
884
885 This function returns a C truth value on success or -1 on error.
886
887 =head2 guestfs_glob_expand
888
889  char **guestfs_glob_expand (guestfs_h *handle,
890                 const char *pattern);
891
892 This command searches for all the pathnames matching
893 C<pattern> according to the wildcard expansion rules
894 used by the shell.
895
896 If no paths match, then this returns an empty list
897 (note: not an error).
898
899 It is just a wrapper around the C L<glob(3)> function
900 with flags C<GLOB_MARK|GLOB_BRACE>.
901 See that manual page for more details.
902
903 This function returns a NULL-terminated array of strings
904 (like L<environ(3)>), or NULL if there was an error.
905 I<The caller must free the strings and the array after use>.
906
907 =head2 guestfs_grub_install
908
909  int guestfs_grub_install (guestfs_h *handle,
910                 const char *root,
911                 const char *device);
912
913 This command installs GRUB (the Grand Unified Bootloader) on
914 C<device>, with the root directory being C<root>.
915
916 This function returns 0 on success or -1 on error.
917
918 =head2 guestfs_hexdump
919
920  char *guestfs_hexdump (guestfs_h *handle,
921                 const char *path);
922
923 This runs C<hexdump -C> on the given C<path>.  The result is
924 the human-readable, canonical hex dump of the file.
925
926 This function returns a string, or NULL on error.
927 I<The caller must free the returned string after use>.
928
929 Because of the message protocol, there is a transfer limit 
930 of somewhere between 2MB and 4MB.  To transfer large files you should use
931 FTP.
932
933 =head2 guestfs_is_busy
934
935  int guestfs_is_busy (guestfs_h *handle);
936
937 This returns true iff this handle is busy processing a command
938 (in the C<BUSY> state).
939
940 For more information on states, see L<guestfs(3)>.
941
942 This function returns a C truth value on success or -1 on error.
943
944 =head2 guestfs_is_config
945
946  int guestfs_is_config (guestfs_h *handle);
947
948 This returns true iff this handle is being configured
949 (in the C<CONFIG> state).
950
951 For more information on states, see L<guestfs(3)>.
952
953 This function returns a C truth value on success or -1 on error.
954
955 =head2 guestfs_is_dir
956
957  int guestfs_is_dir (guestfs_h *handle,
958                 const char *path);
959
960 This returns C<true> if and only if there is a directory
961 with the given C<path> name.  Note that it returns false for
962 other objects like files.
963
964 See also C<guestfs_stat>.
965
966 This function returns a C truth value on success or -1 on error.
967
968 =head2 guestfs_is_file
969
970  int guestfs_is_file (guestfs_h *handle,
971                 const char *path);
972
973 This returns C<true> if and only if there is a file
974 with the given C<path> name.  Note that it returns false for
975 other objects like directories.
976
977 See also C<guestfs_stat>.
978
979 This function returns a C truth value on success or -1 on error.
980
981 =head2 guestfs_is_launching
982
983  int guestfs_is_launching (guestfs_h *handle);
984
985 This returns true iff this handle is launching the subprocess
986 (in the C<LAUNCHING> state).
987
988 For more information on states, see L<guestfs(3)>.
989
990 This function returns a C truth value on success or -1 on error.
991
992 =head2 guestfs_is_ready
993
994  int guestfs_is_ready (guestfs_h *handle);
995
996 This returns true iff this handle is ready to accept commands
997 (in the C<READY> state).
998
999 For more information on states, see L<guestfs(3)>.
1000
1001 This function returns a C truth value on success or -1 on error.
1002
1003 =head2 guestfs_kill_subprocess
1004
1005  int guestfs_kill_subprocess (guestfs_h *handle);
1006
1007 This kills the qemu subprocess.  You should never need to call this.
1008
1009 This function returns 0 on success or -1 on error.
1010
1011 =head2 guestfs_launch
1012
1013  int guestfs_launch (guestfs_h *handle);
1014
1015 Internally libguestfs is implemented by running a virtual machine
1016 using L<qemu(1)>.
1017
1018 You should call this after configuring the handle
1019 (eg. adding drives) but before performing any actions.
1020
1021 This function returns 0 on success or -1 on error.
1022
1023 =head2 guestfs_list_devices
1024
1025  char **guestfs_list_devices (guestfs_h *handle);
1026
1027 List all the block devices.
1028
1029 The full block device names are returned, eg. C</dev/sda>
1030
1031 This function returns a NULL-terminated array of strings
1032 (like L<environ(3)>), or NULL if there was an error.
1033 I<The caller must free the strings and the array after use>.
1034
1035 =head2 guestfs_list_partitions
1036
1037  char **guestfs_list_partitions (guestfs_h *handle);
1038
1039 List all the partitions detected on all block devices.
1040
1041 The full partition device names are returned, eg. C</dev/sda1>
1042
1043 This does not return logical volumes.  For that you will need to
1044 call C<guestfs_lvs>.
1045
1046 This function returns a NULL-terminated array of strings
1047 (like L<environ(3)>), or NULL if there was an error.
1048 I<The caller must free the strings and the array after use>.
1049
1050 =head2 guestfs_ll
1051
1052  char *guestfs_ll (guestfs_h *handle,
1053                 const char *directory);
1054
1055 List the files in C<directory> (relative to the root directory,
1056 there is no cwd) in the format of 'ls -la'.
1057
1058 This command is mostly useful for interactive sessions.  It
1059 is I<not> intended that you try to parse the output string.
1060
1061 This function returns a string, or NULL on error.
1062 I<The caller must free the returned string after use>.
1063
1064 =head2 guestfs_ls
1065
1066  char **guestfs_ls (guestfs_h *handle,
1067                 const char *directory);
1068
1069 List the files in C<directory> (relative to the root directory,
1070 there is no cwd).  The '.' and '..' entries are not returned, but
1071 hidden files are shown.
1072
1073 This command is mostly useful for interactive sessions.  Programs
1074 should probably use C<guestfs_readdir> instead.
1075
1076 This function returns a NULL-terminated array of strings
1077 (like L<environ(3)>), or NULL if there was an error.
1078 I<The caller must free the strings and the array after use>.
1079
1080 =head2 guestfs_lstat
1081
1082  struct guestfs_stat *guestfs_lstat (guestfs_h *handle,
1083                 const char *path);
1084
1085 Returns file information for the given C<path>.
1086
1087 This is the same as C<guestfs_stat> except that if C<path>
1088 is a symbolic link, then the link is stat-ed, not the file it
1089 refers to.
1090
1091 This is the same as the C<lstat(2)> system call.
1092
1093 This function returns a C<struct guestfs_stat *>
1094 (see L<stat(2)> and E<lt>guestfs-structs.hE<gt>),
1095 or NULL if there was an error.
1096 I<The caller must call C<free> after use>.
1097
1098 =head2 guestfs_lvcreate
1099
1100  int guestfs_lvcreate (guestfs_h *handle,
1101                 const char *logvol,
1102                 const char *volgroup,
1103                 int mbytes);
1104
1105 This creates an LVM volume group called C<logvol>
1106 on the volume group C<volgroup>, with C<size> megabytes.
1107
1108 This function returns 0 on success or -1 on error.
1109
1110 =head2 guestfs_lvm_remove_all
1111
1112  int guestfs_lvm_remove_all (guestfs_h *handle);
1113
1114 This command removes all LVM logical volumes, volume groups
1115 and physical volumes.
1116
1117 This function returns 0 on success or -1 on error.
1118
1119 B<This command is dangerous.  Without careful use you
1120 can easily destroy all your data>.
1121
1122 =head2 guestfs_lvremove
1123
1124  int guestfs_lvremove (guestfs_h *handle,
1125                 const char *device);
1126
1127 Remove an LVM logical volume C<device>, where C<device> is
1128 the path to the LV, such as C</dev/VG/LV>.
1129
1130 You can also remove all LVs in a volume group by specifying
1131 the VG name, C</dev/VG>.
1132
1133 This function returns 0 on success or -1 on error.
1134
1135 =head2 guestfs_lvresize
1136
1137  int guestfs_lvresize (guestfs_h *handle,
1138                 const char *device,
1139                 int mbytes);
1140
1141 This resizes (expands or shrinks) an existing LVM logical
1142 volume to C<mbytes>.  When reducing, data in the reduced part
1143 is lost.
1144
1145 This function returns 0 on success or -1 on error.
1146
1147 =head2 guestfs_lvs
1148
1149  char **guestfs_lvs (guestfs_h *handle);
1150
1151 List all the logical volumes detected.  This is the equivalent
1152 of the L<lvs(8)> command.
1153
1154 This returns a list of the logical volume device names
1155 (eg. C</dev/VolGroup00/LogVol00>).
1156
1157 See also C<guestfs_lvs_full>.
1158
1159 This function returns a NULL-terminated array of strings
1160 (like L<environ(3)>), or NULL if there was an error.
1161 I<The caller must free the strings and the array after use>.
1162
1163 =head2 guestfs_lvs_full
1164
1165  struct guestfs_lvm_lv_list *guestfs_lvs_full (guestfs_h *handle);
1166
1167 List all the logical volumes detected.  This is the equivalent
1168 of the L<lvs(8)> command.  The "full" version includes all fields.
1169
1170 This function returns a C<struct guestfs_lvm_lv_list *>
1171 (see E<lt>guestfs-structs.hE<gt>),
1172 or NULL if there was an error.
1173 I<The caller must call C<guestfs_free_lvm_lv_list> after use>.
1174
1175 =head2 guestfs_mkdir
1176
1177  int guestfs_mkdir (guestfs_h *handle,
1178                 const char *path);
1179
1180 Create a directory named C<path>.
1181
1182 This function returns 0 on success or -1 on error.
1183
1184 =head2 guestfs_mkdir_p
1185
1186  int guestfs_mkdir_p (guestfs_h *handle,
1187                 const char *path);
1188
1189 Create a directory named C<path>, creating any parent directories
1190 as necessary.  This is like the C<mkdir -p> shell command.
1191
1192 This function returns 0 on success or -1 on error.
1193
1194 =head2 guestfs_mkfs
1195
1196  int guestfs_mkfs (guestfs_h *handle,
1197                 const char *fstype,
1198                 const char *device);
1199
1200 This creates a filesystem on C<device> (usually a partition
1201 or LVM logical volume).  The filesystem type is C<fstype>, for
1202 example C<ext3>.
1203
1204 This function returns 0 on success or -1 on error.
1205
1206 =head2 guestfs_mount
1207
1208  int guestfs_mount (guestfs_h *handle,
1209                 const char *device,
1210                 const char *mountpoint);
1211
1212 Mount a guest disk at a position in the filesystem.  Block devices
1213 are named C</dev/sda>, C</dev/sdb> and so on, as they were added to
1214 the guest.  If those block devices contain partitions, they will have
1215 the usual names (eg. C</dev/sda1>).  Also LVM C</dev/VG/LV>-style
1216 names can be used.
1217
1218 The rules are the same as for L<mount(2)>:  A filesystem must
1219 first be mounted on C</> before others can be mounted.  Other
1220 filesystems can only be mounted on directories which already
1221 exist.
1222
1223 The mounted filesystem is writable, if we have sufficient permissions
1224 on the underlying device.
1225
1226 The filesystem options C<sync> and C<noatime> are set with this
1227 call, in order to improve reliability.
1228
1229 This function returns 0 on success or -1 on error.
1230
1231 =head2 guestfs_mount_options
1232
1233  int guestfs_mount_options (guestfs_h *handle,
1234                 const char *options,
1235                 const char *device,
1236                 const char *mountpoint);
1237
1238 This is the same as the C<guestfs_mount> command, but it
1239 allows you to set the mount options as for the
1240 L<mount(8)> I<-o> flag.
1241
1242 This function returns 0 on success or -1 on error.
1243
1244 =head2 guestfs_mount_ro
1245
1246  int guestfs_mount_ro (guestfs_h *handle,
1247                 const char *device,
1248                 const char *mountpoint);
1249
1250 This is the same as the C<guestfs_mount> command, but it
1251 mounts the filesystem with the read-only (I<-o ro>) flag.
1252
1253 This function returns 0 on success or -1 on error.
1254
1255 =head2 guestfs_mount_vfs
1256
1257  int guestfs_mount_vfs (guestfs_h *handle,
1258                 const char *options,
1259                 const char *vfstype,
1260                 const char *device,
1261                 const char *mountpoint);
1262
1263 This is the same as the C<guestfs_mount> command, but it
1264 allows you to set both the mount options and the vfstype
1265 as for the L<mount(8)> I<-o> and I<-t> flags.
1266
1267 This function returns 0 on success or -1 on error.
1268
1269 =head2 guestfs_mounts
1270
1271  char **guestfs_mounts (guestfs_h *handle);
1272
1273 This returns the list of currently mounted filesystems.  It returns
1274 the list of devices (eg. C</dev/sda1>, C</dev/VG/LV>).
1275
1276 Some internal mounts are not shown.
1277
1278 This function returns a NULL-terminated array of strings
1279 (like L<environ(3)>), or NULL if there was an error.
1280 I<The caller must free the strings and the array after use>.
1281
1282 =head2 guestfs_mv
1283
1284  int guestfs_mv (guestfs_h *handle,
1285                 const char *src,
1286                 const char *dest);
1287
1288 This moves a file from C<src> to C<dest> where C<dest> is
1289 either a destination filename or destination directory.
1290
1291 This function returns 0 on success or -1 on error.
1292
1293 =head2 guestfs_ntfs_3g_probe
1294
1295  int guestfs_ntfs_3g_probe (guestfs_h *handle,
1296                 int rw,
1297                 const char *device);
1298
1299 This command runs the L<ntfs-3g.probe(8)> command which probes
1300 an NTFS C<device> for mountability.  (Not all NTFS volumes can
1301 be mounted read-write, and some cannot be mounted at all).
1302
1303 C<rw> is a boolean flag.  Set it to true if you want to test
1304 if the volume can be mounted read-write.  Set it to false if
1305 you want to test if the volume can be mounted read-only.
1306
1307 The return value is an integer which C<0> if the operation
1308 would succeed, or some non-zero value documented in the
1309 L<ntfs-3g.probe(8)> manual page.
1310
1311 On error this function returns -1.
1312
1313 =head2 guestfs_ping_daemon
1314
1315  int guestfs_ping_daemon (guestfs_h *handle);
1316
1317 This is a test probe into the guestfs daemon running inside
1318 the qemu subprocess.  Calling this function checks that the
1319 daemon responds to the ping message, without affecting the daemon
1320 or attached block device(s) in any other way.
1321
1322 This function returns 0 on success or -1 on error.
1323
1324 =head2 guestfs_pvcreate
1325
1326  int guestfs_pvcreate (guestfs_h *handle,
1327                 const char *device);
1328
1329 This creates an LVM physical volume on the named C<device>,
1330 where C<device> should usually be a partition name such
1331 as C</dev/sda1>.
1332
1333 This function returns 0 on success or -1 on error.
1334
1335 =head2 guestfs_pvremove
1336
1337  int guestfs_pvremove (guestfs_h *handle,
1338                 const char *device);
1339
1340 This wipes a physical volume C<device> so that LVM will no longer
1341 recognise it.
1342
1343 The implementation uses the C<pvremove> command which refuses to
1344 wipe physical volumes that contain any volume groups, so you have
1345 to remove those first.
1346
1347 This function returns 0 on success or -1 on error.
1348
1349 =head2 guestfs_pvresize
1350
1351  int guestfs_pvresize (guestfs_h *handle,
1352                 const char *device);
1353
1354 This resizes (expands or shrinks) an existing LVM physical
1355 volume to match the new size of the underlying device.
1356
1357 This function returns 0 on success or -1 on error.
1358
1359 =head2 guestfs_pvs
1360
1361  char **guestfs_pvs (guestfs_h *handle);
1362
1363 List all the physical volumes detected.  This is the equivalent
1364 of the L<pvs(8)> command.
1365
1366 This returns a list of just the device names that contain
1367 PVs (eg. C</dev/sda2>).
1368
1369 See also C<guestfs_pvs_full>.
1370
1371 This function returns a NULL-terminated array of strings
1372 (like L<environ(3)>), or NULL if there was an error.
1373 I<The caller must free the strings and the array after use>.
1374
1375 =head2 guestfs_pvs_full
1376
1377  struct guestfs_lvm_pv_list *guestfs_pvs_full (guestfs_h *handle);
1378
1379 List all the physical volumes detected.  This is the equivalent
1380 of the L<pvs(8)> command.  The "full" version includes all fields.
1381
1382 This function returns a C<struct guestfs_lvm_pv_list *>
1383 (see E<lt>guestfs-structs.hE<gt>),
1384 or NULL if there was an error.
1385 I<The caller must call C<guestfs_free_lvm_pv_list> after use>.
1386
1387 =head2 guestfs_read_lines
1388
1389  char **guestfs_read_lines (guestfs_h *handle,
1390                 const char *path);
1391
1392 Return the contents of the file named C<path>.
1393
1394 The file contents are returned as a list of lines.  Trailing
1395 C<LF> and C<CRLF> character sequences are I<not> returned.
1396
1397 Note that this function cannot correctly handle binary files
1398 (specifically, files containing C<\0> character which is treated
1399 as end of line).  For those you need to use the C<guestfs_read_file>
1400 function which has a more complex interface.
1401
1402 This function returns a NULL-terminated array of strings
1403 (like L<environ(3)>), or NULL if there was an error.
1404 I<The caller must free the strings and the array after use>.
1405
1406 =head2 guestfs_resize2fs
1407
1408  int guestfs_resize2fs (guestfs_h *handle,
1409                 const char *device);
1410
1411 This resizes an ext2 or ext3 filesystem to match the size of
1412 the underlying device.
1413
1414 I<Note:> It is sometimes required that you run C<guestfs_e2fsck_f>
1415 on the C<device> before calling this command.  For unknown reasons
1416 C<resize2fs> sometimes gives an error about this and sometimes not.
1417 In any case, it is always safe to call C<guestfs_e2fsck_f> before
1418 calling this function.
1419
1420 This function returns 0 on success or -1 on error.
1421
1422 =head2 guestfs_rm
1423
1424  int guestfs_rm (guestfs_h *handle,
1425                 const char *path);
1426
1427 Remove the single file C<path>.
1428
1429 This function returns 0 on success or -1 on error.
1430
1431 =head2 guestfs_rm_rf
1432
1433  int guestfs_rm_rf (guestfs_h *handle,
1434                 const char *path);
1435
1436 Remove the file or directory C<path>, recursively removing the
1437 contents if its a directory.  This is like the C<rm -rf> shell
1438 command.
1439
1440 This function returns 0 on success or -1 on error.
1441
1442 =head2 guestfs_rmdir
1443
1444  int guestfs_rmdir (guestfs_h *handle,
1445                 const char *path);
1446
1447 Remove the single directory C<path>.
1448
1449 This function returns 0 on success or -1 on error.
1450
1451 =head2 guestfs_set_append
1452
1453  int guestfs_set_append (guestfs_h *handle,
1454                 const char *append);
1455
1456 This function is used to add additional options to the
1457 guest kernel command line.
1458
1459 The default is C<NULL> unless overridden by setting
1460 C<LIBGUESTFS_APPEND> environment variable.
1461
1462 Setting C<append> to C<NULL> means I<no> additional options
1463 are passed (libguestfs always adds a few of its own).
1464
1465 This function returns 0 on success or -1 on error.
1466
1467 =head2 guestfs_set_autosync
1468
1469  int guestfs_set_autosync (guestfs_h *handle,
1470                 int autosync);
1471
1472 If C<autosync> is true, this enables autosync.  Libguestfs will make a
1473 best effort attempt to run C<guestfs_umount_all> followed by
1474 C<guestfs_sync> when the handle is closed
1475 (also if the program exits without closing handles).
1476
1477 This is disabled by default (except in guestfish where it is
1478 enabled by default).
1479
1480 This function returns 0 on success or -1 on error.
1481
1482 =head2 guestfs_set_busy
1483
1484  int guestfs_set_busy (guestfs_h *handle);
1485
1486 This sets the state to C<BUSY>.  This is only used when implementing
1487 actions using the low-level API.
1488
1489 For more information on states, see L<guestfs(3)>.
1490
1491 This function returns 0 on success or -1 on error.
1492
1493 =head2 guestfs_set_e2label
1494
1495  int guestfs_set_e2label (guestfs_h *handle,
1496                 const char *device,
1497                 const char *label);
1498
1499 This sets the ext2/3/4 filesystem label of the filesystem on
1500 C<device> to C<label>.  Filesystem labels are limited to
1501 16 characters.
1502
1503 You can use either C<guestfs_tune2fs_l> or C<guestfs_get_e2label>
1504 to return the existing label on a filesystem.
1505
1506 This function returns 0 on success or -1 on error.
1507
1508 =head2 guestfs_set_e2uuid
1509
1510  int guestfs_set_e2uuid (guestfs_h *handle,
1511                 const char *device,
1512                 const char *uuid);
1513
1514 This sets the ext2/3/4 filesystem UUID of the filesystem on
1515 C<device> to C<uuid>.  The format of the UUID and alternatives
1516 such as C<clear>, C<random> and C<time> are described in the
1517 L<tune2fs(8)> manpage.
1518
1519 You can use either C<guestfs_tune2fs_l> or C<guestfs_get_e2uuid>
1520 to return the existing UUID of a filesystem.
1521
1522 This function returns 0 on success or -1 on error.
1523
1524 =head2 guestfs_set_path
1525
1526  int guestfs_set_path (guestfs_h *handle,
1527                 const char *path);
1528
1529 Set the path that libguestfs searches for kernel and initrd.img.
1530
1531 The default is C<$libdir/guestfs> unless overridden by setting
1532 C<LIBGUESTFS_PATH> environment variable.
1533
1534 Setting C<path> to C<NULL> restores the default path.
1535
1536 This function returns 0 on success or -1 on error.
1537
1538 =head2 guestfs_set_qemu
1539
1540  int guestfs_set_qemu (guestfs_h *handle,
1541                 const char *qemu);
1542
1543 Set the qemu binary that we will use.
1544
1545 The default is chosen when the library was compiled by the
1546 configure script.
1547
1548 You can also override this by setting the C<LIBGUESTFS_QEMU>
1549 environment variable.
1550
1551 Setting C<qemu> to C<NULL> restores the default qemu binary.
1552
1553 This function returns 0 on success or -1 on error.
1554
1555 =head2 guestfs_set_ready
1556
1557  int guestfs_set_ready (guestfs_h *handle);
1558
1559 This sets the state to C<READY>.  This is only used when implementing
1560 actions using the low-level API.
1561
1562 For more information on states, see L<guestfs(3)>.
1563
1564 This function returns 0 on success or -1 on error.
1565
1566 =head2 guestfs_set_verbose
1567
1568  int guestfs_set_verbose (guestfs_h *handle,
1569                 int verbose);
1570
1571 If C<verbose> is true, this turns on verbose messages (to C<stderr>).
1572
1573 Verbose messages are disabled unless the environment variable
1574 C<LIBGUESTFS_DEBUG> is defined and set to C<1>.
1575
1576 This function returns 0 on success or -1 on error.
1577
1578 =head2 guestfs_sfdisk
1579
1580  int guestfs_sfdisk (guestfs_h *handle,
1581                 const char *device,
1582                 int cyls,
1583                 int heads,
1584                 int sectors,
1585                 char * const* const lines);
1586
1587 This is a direct interface to the L<sfdisk(8)> program for creating
1588 partitions on block devices.
1589
1590 C<device> should be a block device, for example C</dev/sda>.
1591
1592 C<cyls>, C<heads> and C<sectors> are the number of cylinders, heads
1593 and sectors on the device, which are passed directly to sfdisk as
1594 the I<-C>, I<-H> and I<-S> parameters.  If you pass C<0> for any
1595 of these, then the corresponding parameter is omitted.  Usually for
1596 'large' disks, you can just pass C<0> for these, but for small
1597 (floppy-sized) disks, sfdisk (or rather, the kernel) cannot work
1598 out the right geometry and you will need to tell it.
1599
1600 C<lines> is a list of lines that we feed to C<sfdisk>.  For more
1601 information refer to the L<sfdisk(8)> manpage.
1602
1603 To create a single partition occupying the whole disk, you would
1604 pass C<lines> as a single element list, when the single element being
1605 the string C<,> (comma).
1606
1607 See also: C<guestfs_sfdisk_l>, C<guestfs_sfdisk_N>
1608
1609 This function returns 0 on success or -1 on error.
1610
1611 B<This command is dangerous.  Without careful use you
1612 can easily destroy all your data>.
1613
1614 =head2 guestfs_sfdisk_N
1615
1616  int guestfs_sfdisk_N (guestfs_h *handle,
1617                 const char *device,
1618                 int n,
1619                 int cyls,
1620                 int heads,
1621                 int sectors,
1622                 const char *line);
1623
1624 This runs L<sfdisk(8)> option to modify just the single
1625 partition C<n> (note: C<n> counts from 1).
1626
1627 For other parameters, see C<guestfs_sfdisk>.  You should usually
1628 pass C<0> for the cyls/heads/sectors parameters.
1629
1630 This function returns 0 on success or -1 on error.
1631
1632 B<This command is dangerous.  Without careful use you
1633 can easily destroy all your data>.
1634
1635 =head2 guestfs_sfdisk_disk_geometry
1636
1637  char *guestfs_sfdisk_disk_geometry (guestfs_h *handle,
1638                 const char *device);
1639
1640 This displays the disk geometry of C<device> read from the
1641 partition table.  Especially in the case where the underlying
1642 block device has been resized, this can be different from the
1643 kernel's idea of the geometry (see C<guestfs_sfdisk_kernel_geometry>).
1644
1645 The result is in human-readable format, and not designed to
1646 be parsed.
1647
1648 This function returns a string, or NULL on error.
1649 I<The caller must free the returned string after use>.
1650
1651 =head2 guestfs_sfdisk_kernel_geometry
1652
1653  char *guestfs_sfdisk_kernel_geometry (guestfs_h *handle,
1654                 const char *device);
1655
1656 This displays the kernel's idea of the geometry of C<device>.
1657
1658 The result is in human-readable format, and not designed to
1659 be parsed.
1660
1661 This function returns a string, or NULL on error.
1662 I<The caller must free the returned string after use>.
1663
1664 =head2 guestfs_sfdisk_l
1665
1666  char *guestfs_sfdisk_l (guestfs_h *handle,
1667                 const char *device);
1668
1669 This displays the partition table on C<device>, in the
1670 human-readable output of the L<sfdisk(8)> command.  It is
1671 not intended to be parsed.
1672
1673 This function returns a string, or NULL on error.
1674 I<The caller must free the returned string after use>.
1675
1676 =head2 guestfs_sh
1677
1678  char *guestfs_sh (guestfs_h *handle,
1679                 const char *command);
1680
1681 This call runs a command from the guest filesystem via the
1682 guest's C</bin/sh>.
1683
1684 This is like C<guestfs_command>, but passes the command to:
1685
1686  /bin/sh -c "command"
1687
1688 Depending on the guest's shell, this usually results in
1689 wildcards being expanded, shell expressions being interpolated
1690 and so on.
1691
1692 All the provisos about C<guestfs_command> apply to this call.
1693
1694 This function returns a string, or NULL on error.
1695 I<The caller must free the returned string after use>.
1696
1697 =head2 guestfs_sh_lines
1698
1699  char **guestfs_sh_lines (guestfs_h *handle,
1700                 const char *command);
1701
1702 This is the same as C<guestfs_sh>, but splits the result
1703 into a list of lines.
1704
1705 See also: C<guestfs_command_lines>
1706
1707 This function returns a NULL-terminated array of strings
1708 (like L<environ(3)>), or NULL if there was an error.
1709 I<The caller must free the strings and the array after use>.
1710
1711 =head2 guestfs_sleep
1712
1713  int guestfs_sleep (guestfs_h *handle,
1714                 int secs);
1715
1716 Sleep for C<secs> seconds.
1717
1718 This function returns 0 on success or -1 on error.
1719
1720 =head2 guestfs_stat
1721
1722  struct guestfs_stat *guestfs_stat (guestfs_h *handle,
1723                 const char *path);
1724
1725 Returns file information for the given C<path>.
1726
1727 This is the same as the C<stat(2)> system call.
1728
1729 This function returns a C<struct guestfs_stat *>
1730 (see L<stat(2)> and E<lt>guestfs-structs.hE<gt>),
1731 or NULL if there was an error.
1732 I<The caller must call C<free> after use>.
1733
1734 =head2 guestfs_statvfs
1735
1736  struct guestfs_statvfs *guestfs_statvfs (guestfs_h *handle,
1737                 const char *path);
1738
1739 Returns file system statistics for any mounted file system.
1740 C<path> should be a file or directory in the mounted file system
1741 (typically it is the mount point itself, but it doesn't need to be).
1742
1743 This is the same as the C<statvfs(2)> system call.
1744
1745 This function returns a C<struct guestfs_statvfs *>
1746 (see L<statvfs(2)> and E<lt>guestfs-structs.hE<gt>),
1747 or NULL if there was an error.
1748 I<The caller must call C<free> after use>.
1749
1750 =head2 guestfs_strings
1751
1752  char **guestfs_strings (guestfs_h *handle,
1753                 const char *path);
1754
1755 This runs the L<strings(1)> command on a file and returns
1756 the list of printable strings found.
1757
1758 This function returns a NULL-terminated array of strings
1759 (like L<environ(3)>), or NULL if there was an error.
1760 I<The caller must free the strings and the array after use>.
1761
1762 Because of the message protocol, there is a transfer limit 
1763 of somewhere between 2MB and 4MB.  To transfer large files you should use
1764 FTP.
1765
1766 =head2 guestfs_strings_e
1767
1768  char **guestfs_strings_e (guestfs_h *handle,
1769                 const char *encoding,
1770                 const char *path);
1771
1772 This is like the C<guestfs_strings> command, but allows you to
1773 specify the encoding.
1774
1775 See the L<strings(1)> manpage for the full list of encodings.
1776
1777 Commonly useful encodings are C<l> (lower case L) which will
1778 show strings inside Windows/x86 files.
1779
1780 The returned strings are transcoded to UTF-8.
1781
1782 This function returns a NULL-terminated array of strings
1783 (like L<environ(3)>), or NULL if there was an error.
1784 I<The caller must free the strings and the array after use>.
1785
1786 Because of the message protocol, there is a transfer limit 
1787 of somewhere between 2MB and 4MB.  To transfer large files you should use
1788 FTP.
1789
1790 =head2 guestfs_sync
1791
1792  int guestfs_sync (guestfs_h *handle);
1793
1794 This syncs the disk, so that any writes are flushed through to the
1795 underlying disk image.
1796
1797 You should always call this if you have modified a disk image, before
1798 closing the handle.
1799
1800 This function returns 0 on success or -1 on error.
1801
1802 =head2 guestfs_tar_in
1803
1804  int guestfs_tar_in (guestfs_h *handle,
1805                 const char *tarfile,
1806                 const char *directory);
1807
1808 This command uploads and unpacks local file C<tarfile> (an
1809 I<uncompressed> tar file) into C<directory>.
1810
1811 To upload a compressed tarball, use C<guestfs_tgz_in>.
1812
1813 This function returns 0 on success or -1 on error.
1814
1815 =head2 guestfs_tar_out
1816
1817  int guestfs_tar_out (guestfs_h *handle,
1818                 const char *directory,
1819                 const char *tarfile);
1820
1821 This command packs the contents of C<directory> and downloads
1822 it to local file C<tarfile>.
1823
1824 To download a compressed tarball, use C<guestfs_tgz_out>.
1825
1826 This function returns 0 on success or -1 on error.
1827
1828 =head2 guestfs_tgz_in
1829
1830  int guestfs_tgz_in (guestfs_h *handle,
1831                 const char *tarball,
1832                 const char *directory);
1833
1834 This command uploads and unpacks local file C<tarball> (a
1835 I<gzip compressed> tar file) into C<directory>.
1836
1837 To upload an uncompressed tarball, use C<guestfs_tar_in>.
1838
1839 This function returns 0 on success or -1 on error.
1840
1841 =head2 guestfs_tgz_out
1842
1843  int guestfs_tgz_out (guestfs_h *handle,
1844                 const char *directory,
1845                 const char *tarball);
1846
1847 This command packs the contents of C<directory> and downloads
1848 it to local file C<tarball>.
1849
1850 To download an uncompressed tarball, use C<guestfs_tar_out>.
1851
1852 This function returns 0 on success or -1 on error.
1853
1854 =head2 guestfs_touch
1855
1856  int guestfs_touch (guestfs_h *handle,
1857                 const char *path);
1858
1859 Touch acts like the L<touch(1)> command.  It can be used to
1860 update the timestamps on a file, or, if the file does not exist,
1861 to create a new zero-length file.
1862
1863 This function returns 0 on success or -1 on error.
1864
1865 =head2 guestfs_tune2fs_l
1866
1867  char **guestfs_tune2fs_l (guestfs_h *handle,
1868                 const char *device);
1869
1870 This returns the contents of the ext2, ext3 or ext4 filesystem
1871 superblock on C<device>.
1872
1873 It is the same as running C<tune2fs -l device>.  See L<tune2fs(8)>
1874 manpage for more details.  The list of fields returned isn't
1875 clearly defined, and depends on both the version of C<tune2fs>
1876 that libguestfs was built against, and the filesystem itself.
1877
1878 This function returns a NULL-terminated array of
1879 strings, or NULL if there was an error.
1880 The array of strings will always have length C<2n+1>, where
1881 C<n> keys and values alternate, followed by the trailing NULL entry.
1882 I<The caller must free the strings and the array after use>.
1883
1884 =head2 guestfs_umount
1885
1886  int guestfs_umount (guestfs_h *handle,
1887                 const char *pathordevice);
1888
1889 This unmounts the given filesystem.  The filesystem may be
1890 specified either by its mountpoint (path) or the device which
1891 contains the filesystem.
1892
1893 This function returns 0 on success or -1 on error.
1894
1895 =head2 guestfs_umount_all
1896
1897  int guestfs_umount_all (guestfs_h *handle);
1898
1899 This unmounts all mounted filesystems.
1900
1901 Some internal mounts are not unmounted by this call.
1902
1903 This function returns 0 on success or -1 on error.
1904
1905 =head2 guestfs_upload
1906
1907  int guestfs_upload (guestfs_h *handle,
1908                 const char *filename,
1909                 const char *remotefilename);
1910
1911 Upload local file C<filename> to C<remotefilename> on the
1912 filesystem.
1913
1914 C<filename> can also be a named pipe.
1915
1916 See also C<guestfs_download>.
1917
1918 This function returns 0 on success or -1 on error.
1919
1920 =head2 guestfs_vg_activate
1921
1922  int guestfs_vg_activate (guestfs_h *handle,
1923                 int activate,
1924                 char * const* const volgroups);
1925
1926 This command activates or (if C<activate> is false) deactivates
1927 all logical volumes in the listed volume groups C<volgroups>.
1928 If activated, then they are made known to the
1929 kernel, ie. they appear as C</dev/mapper> devices.  If deactivated,
1930 then those devices disappear.
1931
1932 This command is the same as running C<vgchange -a y|n volgroups...>
1933
1934 Note that if C<volgroups> is an empty list then B<all> volume groups
1935 are activated or deactivated.
1936
1937 This function returns 0 on success or -1 on error.
1938
1939 =head2 guestfs_vg_activate_all
1940
1941  int guestfs_vg_activate_all (guestfs_h *handle,
1942                 int activate);
1943
1944 This command activates or (if C<activate> is false) deactivates
1945 all logical volumes in all volume groups.
1946 If activated, then they are made known to the
1947 kernel, ie. they appear as C</dev/mapper> devices.  If deactivated,
1948 then those devices disappear.
1949
1950 This command is the same as running C<vgchange -a y|n>
1951
1952 This function returns 0 on success or -1 on error.
1953
1954 =head2 guestfs_vgcreate
1955
1956  int guestfs_vgcreate (guestfs_h *handle,
1957                 const char *volgroup,
1958                 char * const* const physvols);
1959
1960 This creates an LVM volume group called C<volgroup>
1961 from the non-empty list of physical volumes C<physvols>.
1962
1963 This function returns 0 on success or -1 on error.
1964
1965 =head2 guestfs_vgremove
1966
1967  int guestfs_vgremove (guestfs_h *handle,
1968                 const char *vgname);
1969
1970 Remove an LVM volume group C<vgname>, (for example C<VG>).
1971
1972 This also forcibly removes all logical volumes in the volume
1973 group (if any).
1974
1975 This function returns 0 on success or -1 on error.
1976
1977 =head2 guestfs_vgs
1978
1979  char **guestfs_vgs (guestfs_h *handle);
1980
1981 List all the volumes groups detected.  This is the equivalent
1982 of the L<vgs(8)> command.
1983
1984 This returns a list of just the volume group names that were
1985 detected (eg. C<VolGroup00>).
1986
1987 See also C<guestfs_vgs_full>.
1988
1989 This function returns a NULL-terminated array of strings
1990 (like L<environ(3)>), or NULL if there was an error.
1991 I<The caller must free the strings and the array after use>.
1992
1993 =head2 guestfs_vgs_full
1994
1995  struct guestfs_lvm_vg_list *guestfs_vgs_full (guestfs_h *handle);
1996
1997 List all the volumes groups detected.  This is the equivalent
1998 of the L<vgs(8)> command.  The "full" version includes all fields.
1999
2000 This function returns a C<struct guestfs_lvm_vg_list *>
2001 (see E<lt>guestfs-structs.hE<gt>),
2002 or NULL if there was an error.
2003 I<The caller must call C<guestfs_free_lvm_vg_list> after use>.
2004
2005 =head2 guestfs_wait_ready
2006
2007  int guestfs_wait_ready (guestfs_h *handle);
2008
2009 Internally libguestfs is implemented by running a virtual machine
2010 using L<qemu(1)>.
2011
2012 You should call this after C<guestfs_launch> to wait for the launch
2013 to complete.
2014
2015 This function returns 0 on success or -1 on error.
2016
2017 =head2 guestfs_write_file
2018
2019  int guestfs_write_file (guestfs_h *handle,
2020                 const char *path,
2021                 const char *content,
2022                 int size);
2023
2024 This call creates a file called C<path>.  The contents of the
2025 file is the string C<content> (which can contain any 8 bit data),
2026 with length C<size>.
2027
2028 As a special case, if C<size> is C<0>
2029 then the length is calculated using C<strlen> (so in this case
2030 the content cannot contain embedded ASCII NULs).
2031
2032 I<NB.> Owing to a bug, writing content containing ASCII NUL
2033 characters does I<not> work, even if the length is specified.
2034 We hope to resolve this bug in a future version.  In the meantime
2035 use C<guestfs_upload>.
2036
2037 This function returns 0 on success or -1 on error.
2038
2039 Because of the message protocol, there is a transfer limit 
2040 of somewhere between 2MB and 4MB.  To transfer large files you should use
2041 FTP.
2042
2043 =head2 guestfs_zero
2044
2045  int guestfs_zero (guestfs_h *handle,
2046                 const char *device);
2047
2048 This command writes zeroes over the first few blocks of C<device>.
2049
2050 How many blocks are zeroed isn't specified (but it's I<not> enough
2051 to securely wipe the device).  It should be sufficient to remove
2052 any partition tables, filesystem superblocks and so on.
2053
2054 This function returns 0 on success or -1 on error.
2055
2056 =head2 guestfs_zerofree
2057
2058  int guestfs_zerofree (guestfs_h *handle,
2059                 const char *device);
2060
2061 This runs the I<zerofree> program on C<device>.  This program
2062 claims to zero unused inodes and disk blocks on an ext2/3
2063 filesystem, thus making it possible to compress the filesystem
2064 more effectively.
2065
2066 You should B<not> run this program if the filesystem is
2067 mounted.
2068
2069 It is possible that using this program can damage the filesystem
2070 or data on the filesystem.
2071
2072 This function returns 0 on success or -1 on error.
2073