Generated code for mknod, mkfifo, mknod_b, mknod_c, umask.
[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,cache=off>.
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_df
618
619  char *guestfs_df (guestfs_h *handle);
620
621 This command runs the C<df> command to report disk space used.
622
623 This command is mostly useful for interactive sessions.  It
624 is I<not> intended that you try to parse the output string.
625 Use C<statvfs> from programs.
626
627 This function returns a string, or NULL on error.
628 I<The caller must free the returned string after use>.
629
630 =head2 guestfs_df_h
631
632  char *guestfs_df_h (guestfs_h *handle);
633
634 This command runs the C<df -h> command to report disk space used
635 in human-readable format.
636
637 This command is mostly useful for interactive sessions.  It
638 is I<not> intended that you try to parse the output string.
639 Use C<statvfs> from programs.
640
641 This function returns a string, or NULL on error.
642 I<The caller must free the returned string after use>.
643
644 =head2 guestfs_dmesg
645
646  char *guestfs_dmesg (guestfs_h *handle);
647
648 This returns the kernel messages (C<dmesg> output) from
649 the guest kernel.  This is sometimes useful for extended
650 debugging of problems.
651
652 Another way to get the same information is to enable
653 verbose messages with C<guestfs_set_verbose> or by setting
654 the environment variable C<LIBGUESTFS_DEBUG=1> before
655 running the program.
656
657 This function returns a string, or NULL on error.
658 I<The caller must free the returned string after use>.
659
660 =head2 guestfs_download
661
662  int guestfs_download (guestfs_h *handle,
663                 const char *remotefilename,
664                 const char *filename);
665
666 Download file C<remotefilename> and save it as C<filename>
667 on the local machine.
668
669 C<filename> can also be a named pipe.
670
671 See also C<guestfs_upload>, C<guestfs_cat>.
672
673 This function returns 0 on success or -1 on error.
674
675 =head2 guestfs_drop_caches
676
677  int guestfs_drop_caches (guestfs_h *handle,
678                 int whattodrop);
679
680 This instructs the guest kernel to drop its page cache,
681 and/or dentries and inode caches.  The parameter C<whattodrop>
682 tells the kernel what precisely to drop, see
683 L<http://linux-mm.org/Drop_Caches>
684
685 Setting C<whattodrop> to 3 should drop everything.
686
687 This automatically calls L<sync(2)> before the operation,
688 so that the maximum guest memory is freed.
689
690 This function returns 0 on success or -1 on error.
691
692 =head2 guestfs_du
693
694  int64_t guestfs_du (guestfs_h *handle,
695                 const char *path);
696
697 This command runs the C<du -s> command to estimate file space
698 usage for C<path>.
699
700 C<path> can be a file or a directory.  If C<path> is a directory
701 then the estimate includes the contents of the directory and all
702 subdirectories (recursively).
703
704 The result is the estimated size in I<kilobytes>
705 (ie. units of 1024 bytes).
706
707 On error this function returns -1.
708
709 =head2 guestfs_e2fsck_f
710
711  int guestfs_e2fsck_f (guestfs_h *handle,
712                 const char *device);
713
714 This runs C<e2fsck -p -f device>, ie. runs the ext2/ext3
715 filesystem checker on C<device>, noninteractively (C<-p>),
716 even if the filesystem appears to be clean (C<-f>).
717
718 This command is only needed because of C<guestfs_resize2fs>
719 (q.v.).  Normally you should use C<guestfs_fsck>.
720
721 This function returns 0 on success or -1 on error.
722
723 =head2 guestfs_end_busy
724
725  int guestfs_end_busy (guestfs_h *handle);
726
727 This sets the state to C<READY>, or if in C<CONFIG> then it leaves the
728 state as is.  This is only used when implementing
729 actions using the low-level API.
730
731 For more information on states, see L<guestfs(3)>.
732
733 This function returns 0 on success or -1 on error.
734
735 =head2 guestfs_equal
736
737  int guestfs_equal (guestfs_h *handle,
738                 const char *file1,
739                 const char *file2);
740
741 This compares the two files C<file1> and C<file2> and returns
742 true if their content is exactly equal, or false otherwise.
743
744 The external L<cmp(1)> program is used for the comparison.
745
746 This function returns a C truth value on success or -1 on error.
747
748 =head2 guestfs_exists
749
750  int guestfs_exists (guestfs_h *handle,
751                 const char *path);
752
753 This returns C<true> if and only if there is a file, directory
754 (or anything) with the given C<path> name.
755
756 See also C<guestfs_is_file>, C<guestfs_is_dir>, C<guestfs_stat>.
757
758 This function returns a C truth value on success or -1 on error.
759
760 =head2 guestfs_file
761
762  char *guestfs_file (guestfs_h *handle,
763                 const char *path);
764
765 This call uses the standard L<file(1)> command to determine
766 the type or contents of the file.  This also works on devices,
767 for example to find out whether a partition contains a filesystem.
768
769 The exact command which runs is C<file -bsL path>.  Note in
770 particular that the filename is not prepended to the output
771 (the C<-b> option).
772
773 This function returns a string, or NULL on error.
774 I<The caller must free the returned string after use>.
775
776 =head2 guestfs_find
777
778  char **guestfs_find (guestfs_h *handle,
779                 const char *directory);
780
781 This command lists out all files and directories, recursively,
782 starting at C<directory>.  It is essentially equivalent to
783 running the shell command C<find directory -print> but some
784 post-processing happens on the output, described below.
785
786 This returns a list of strings I<without any prefix>.  Thus
787 if the directory structure was:
788
789  /tmp/a
790  /tmp/b
791  /tmp/c/d
792
793 then the returned list from C<guestfs_find> C</tmp> would be
794 4 elements:
795
796  a
797  b
798  c
799  c/d
800
801 If C<directory> is not a directory, then this command returns
802 an error.
803
804 The returned list is sorted.
805
806 This function returns a NULL-terminated array of strings
807 (like L<environ(3)>), or NULL if there was an error.
808 I<The caller must free the strings and the array after use>.
809
810 =head2 guestfs_fsck
811
812  int guestfs_fsck (guestfs_h *handle,
813                 const char *fstype,
814                 const char *device);
815
816 This runs the filesystem checker (fsck) on C<device> which
817 should have filesystem type C<fstype>.
818
819 The returned integer is the status.  See L<fsck(8)> for the
820 list of status codes from C<fsck>.
821
822 Notes:
823
824 =over 4
825
826 =item *
827
828 Multiple status codes can be summed together.
829
830 =item *
831
832 A non-zero return code can mean "success", for example if
833 errors have been corrected on the filesystem.
834
835 =item *
836
837 Checking or repairing NTFS volumes is not supported
838 (by linux-ntfs).
839
840 =back
841
842 This command is entirely equivalent to running C<fsck -a -t fstype device>.
843
844 On error this function returns -1.
845
846 =head2 guestfs_get_append
847
848  const char *guestfs_get_append (guestfs_h *handle);
849
850 Return the additional kernel options which are added to the
851 guest kernel command line.
852
853 If C<NULL> then no options are added.
854
855 This function returns a string, or NULL on error.
856 The string is owned by the guest handle and must I<not> be freed.
857
858 =head2 guestfs_get_autosync
859
860  int guestfs_get_autosync (guestfs_h *handle);
861
862 Get the autosync flag.
863
864 This function returns a C truth value on success or -1 on error.
865
866 =head2 guestfs_get_e2label
867
868  char *guestfs_get_e2label (guestfs_h *handle,
869                 const char *device);
870
871 This returns the ext2/3/4 filesystem label of the filesystem on
872 C<device>.
873
874 This function returns a string, or NULL on error.
875 I<The caller must free the returned string after use>.
876
877 =head2 guestfs_get_e2uuid
878
879  char *guestfs_get_e2uuid (guestfs_h *handle,
880                 const char *device);
881
882 This returns the ext2/3/4 filesystem UUID of the filesystem on
883 C<device>.
884
885 This function returns a string, or NULL on error.
886 I<The caller must free the returned string after use>.
887
888 =head2 guestfs_get_memsize
889
890  int guestfs_get_memsize (guestfs_h *handle);
891
892 This gets the memory size in megabytes allocated to the
893 qemu subprocess.
894
895 If C<guestfs_set_memsize> was not called
896 on this handle, and if C<LIBGUESTFS_MEMSIZE> was not set,
897 then this returns the compiled-in default value for memsize.
898
899 For more information on the architecture of libguestfs,
900 see L<guestfs(3)>.
901
902 On error this function returns -1.
903
904 =head2 guestfs_get_path
905
906  const char *guestfs_get_path (guestfs_h *handle);
907
908 Return the current search path.
909
910 This is always non-NULL.  If it wasn't set already, then this will
911 return the default path.
912
913 This function returns a string, or NULL on error.
914 The string is owned by the guest handle and must I<not> be freed.
915
916 =head2 guestfs_get_qemu
917
918  const char *guestfs_get_qemu (guestfs_h *handle);
919
920 Return the current qemu binary.
921
922 This is always non-NULL.  If it wasn't set already, then this will
923 return the default qemu binary name.
924
925 This function returns a string, or NULL on error.
926 The string is owned by the guest handle and must I<not> be freed.
927
928 =head2 guestfs_get_state
929
930  int guestfs_get_state (guestfs_h *handle);
931
932 This returns the current state as an opaque integer.  This is
933 only useful for printing debug and internal error messages.
934
935 For more information on states, see L<guestfs(3)>.
936
937 On error this function returns -1.
938
939 =head2 guestfs_get_verbose
940
941  int guestfs_get_verbose (guestfs_h *handle);
942
943 This returns the verbose messages flag.
944
945 This function returns a C truth value on success or -1 on error.
946
947 =head2 guestfs_glob_expand
948
949  char **guestfs_glob_expand (guestfs_h *handle,
950                 const char *pattern);
951
952 This command searches for all the pathnames matching
953 C<pattern> according to the wildcard expansion rules
954 used by the shell.
955
956 If no paths match, then this returns an empty list
957 (note: not an error).
958
959 It is just a wrapper around the C L<glob(3)> function
960 with flags C<GLOB_MARK|GLOB_BRACE>.
961 See that manual page for more details.
962
963 This function returns a NULL-terminated array of strings
964 (like L<environ(3)>), or NULL if there was an error.
965 I<The caller must free the strings and the array after use>.
966
967 =head2 guestfs_grub_install
968
969  int guestfs_grub_install (guestfs_h *handle,
970                 const char *root,
971                 const char *device);
972
973 This command installs GRUB (the Grand Unified Bootloader) on
974 C<device>, with the root directory being C<root>.
975
976 This function returns 0 on success or -1 on error.
977
978 =head2 guestfs_head
979
980  char **guestfs_head (guestfs_h *handle,
981                 const char *path);
982
983 This command returns up to the first 10 lines of a file as
984 a list of strings.
985
986 This function returns a NULL-terminated array of strings
987 (like L<environ(3)>), or NULL if there was an error.
988 I<The caller must free the strings and the array after use>.
989
990 Because of the message protocol, there is a transfer limit 
991 of somewhere between 2MB and 4MB.  To transfer large files you should use
992 FTP.
993
994 =head2 guestfs_head_n
995
996  char **guestfs_head_n (guestfs_h *handle,
997                 int nrlines,
998                 const char *path);
999
1000 If the parameter C<nrlines> is a positive number, this returns the first
1001 C<nrlines> lines of the file C<path>.
1002
1003 If the parameter C<nrlines> is a negative number, this returns lines
1004 from the file C<path>, excluding the last C<nrlines> lines.
1005
1006 If the parameter C<nrlines> is zero, this returns an empty list.
1007
1008 This function returns a NULL-terminated array of strings
1009 (like L<environ(3)>), or NULL if there was an error.
1010 I<The caller must free the strings and the array after use>.
1011
1012 Because of the message protocol, there is a transfer limit 
1013 of somewhere between 2MB and 4MB.  To transfer large files you should use
1014 FTP.
1015
1016 =head2 guestfs_hexdump
1017
1018  char *guestfs_hexdump (guestfs_h *handle,
1019                 const char *path);
1020
1021 This runs C<hexdump -C> on the given C<path>.  The result is
1022 the human-readable, canonical hex dump of the file.
1023
1024 This function returns a string, or NULL on error.
1025 I<The caller must free the returned string after use>.
1026
1027 Because of the message protocol, there is a transfer limit 
1028 of somewhere between 2MB and 4MB.  To transfer large files you should use
1029 FTP.
1030
1031 =head2 guestfs_initrd_list
1032
1033  char **guestfs_initrd_list (guestfs_h *handle,
1034                 const char *path);
1035
1036 This command lists out files contained in an initrd.
1037
1038 The files are listed without any initial C</> character.  The
1039 files are listed in the order they appear (not necessarily
1040 alphabetical).  Directory names are listed as separate items.
1041
1042 Old Linux kernels (2.4 and earlier) used a compressed ext2
1043 filesystem as initrd.  We I<only> support the newer initramfs
1044 format (compressed cpio files).
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_is_busy
1051
1052  int guestfs_is_busy (guestfs_h *handle);
1053
1054 This returns true iff this handle is busy processing a command
1055 (in the C<BUSY> state).
1056
1057 For more information on states, see L<guestfs(3)>.
1058
1059 This function returns a C truth value on success or -1 on error.
1060
1061 =head2 guestfs_is_config
1062
1063  int guestfs_is_config (guestfs_h *handle);
1064
1065 This returns true iff this handle is being configured
1066 (in the C<CONFIG> state).
1067
1068 For more information on states, see L<guestfs(3)>.
1069
1070 This function returns a C truth value on success or -1 on error.
1071
1072 =head2 guestfs_is_dir
1073
1074  int guestfs_is_dir (guestfs_h *handle,
1075                 const char *path);
1076
1077 This returns C<true> if and only if there is a directory
1078 with the given C<path> name.  Note that it returns false for
1079 other objects like files.
1080
1081 See also C<guestfs_stat>.
1082
1083 This function returns a C truth value on success or -1 on error.
1084
1085 =head2 guestfs_is_file
1086
1087  int guestfs_is_file (guestfs_h *handle,
1088                 const char *path);
1089
1090 This returns C<true> if and only if there is a file
1091 with the given C<path> name.  Note that it returns false for
1092 other objects like directories.
1093
1094 See also C<guestfs_stat>.
1095
1096 This function returns a C truth value on success or -1 on error.
1097
1098 =head2 guestfs_is_launching
1099
1100  int guestfs_is_launching (guestfs_h *handle);
1101
1102 This returns true iff this handle is launching the subprocess
1103 (in the C<LAUNCHING> state).
1104
1105 For more information on states, see L<guestfs(3)>.
1106
1107 This function returns a C truth value on success or -1 on error.
1108
1109 =head2 guestfs_is_ready
1110
1111  int guestfs_is_ready (guestfs_h *handle);
1112
1113 This returns true iff this handle is ready to accept commands
1114 (in the C<READY> state).
1115
1116 For more information on states, see L<guestfs(3)>.
1117
1118 This function returns a C truth value on success or -1 on error.
1119
1120 =head2 guestfs_kill_subprocess
1121
1122  int guestfs_kill_subprocess (guestfs_h *handle);
1123
1124 This kills the qemu subprocess.  You should never need to call this.
1125
1126 This function returns 0 on success or -1 on error.
1127
1128 =head2 guestfs_launch
1129
1130  int guestfs_launch (guestfs_h *handle);
1131
1132 Internally libguestfs is implemented by running a virtual machine
1133 using L<qemu(1)>.
1134
1135 You should call this after configuring the handle
1136 (eg. adding drives) but before performing any actions.
1137
1138 This function returns 0 on success or -1 on error.
1139
1140 =head2 guestfs_list_devices
1141
1142  char **guestfs_list_devices (guestfs_h *handle);
1143
1144 List all the block devices.
1145
1146 The full block device names are returned, eg. C</dev/sda>
1147
1148 This function returns a NULL-terminated array of strings
1149 (like L<environ(3)>), or NULL if there was an error.
1150 I<The caller must free the strings and the array after use>.
1151
1152 =head2 guestfs_list_partitions
1153
1154  char **guestfs_list_partitions (guestfs_h *handle);
1155
1156 List all the partitions detected on all block devices.
1157
1158 The full partition device names are returned, eg. C</dev/sda1>
1159
1160 This does not return logical volumes.  For that you will need to
1161 call C<guestfs_lvs>.
1162
1163 This function returns a NULL-terminated array of strings
1164 (like L<environ(3)>), or NULL if there was an error.
1165 I<The caller must free the strings and the array after use>.
1166
1167 =head2 guestfs_ll
1168
1169  char *guestfs_ll (guestfs_h *handle,
1170                 const char *directory);
1171
1172 List the files in C<directory> (relative to the root directory,
1173 there is no cwd) in the format of 'ls -la'.
1174
1175 This command is mostly useful for interactive sessions.  It
1176 is I<not> intended that you try to parse the output string.
1177
1178 This function returns a string, or NULL on error.
1179 I<The caller must free the returned string after use>.
1180
1181 =head2 guestfs_ls
1182
1183  char **guestfs_ls (guestfs_h *handle,
1184                 const char *directory);
1185
1186 List the files in C<directory> (relative to the root directory,
1187 there is no cwd).  The '.' and '..' entries are not returned, but
1188 hidden files are shown.
1189
1190 This command is mostly useful for interactive sessions.  Programs
1191 should probably use C<guestfs_readdir> instead.
1192
1193 This function returns a NULL-terminated array of strings
1194 (like L<environ(3)>), or NULL if there was an error.
1195 I<The caller must free the strings and the array after use>.
1196
1197 =head2 guestfs_lstat
1198
1199  struct guestfs_stat *guestfs_lstat (guestfs_h *handle,
1200                 const char *path);
1201
1202 Returns file information for the given C<path>.
1203
1204 This is the same as C<guestfs_stat> except that if C<path>
1205 is a symbolic link, then the link is stat-ed, not the file it
1206 refers to.
1207
1208 This is the same as the C<lstat(2)> system call.
1209
1210 This function returns a C<struct guestfs_stat *>
1211 (see L<stat(2)> and E<lt>guestfs-structs.hE<gt>),
1212 or NULL if there was an error.
1213 I<The caller must call C<free> after use>.
1214
1215 =head2 guestfs_lvcreate
1216
1217  int guestfs_lvcreate (guestfs_h *handle,
1218                 const char *logvol,
1219                 const char *volgroup,
1220                 int mbytes);
1221
1222 This creates an LVM volume group called C<logvol>
1223 on the volume group C<volgroup>, with C<size> megabytes.
1224
1225 This function returns 0 on success or -1 on error.
1226
1227 =head2 guestfs_lvm_remove_all
1228
1229  int guestfs_lvm_remove_all (guestfs_h *handle);
1230
1231 This command removes all LVM logical volumes, volume groups
1232 and physical volumes.
1233
1234 This function returns 0 on success or -1 on error.
1235
1236 B<This command is dangerous.  Without careful use you
1237 can easily destroy all your data>.
1238
1239 =head2 guestfs_lvremove
1240
1241  int guestfs_lvremove (guestfs_h *handle,
1242                 const char *device);
1243
1244 Remove an LVM logical volume C<device>, where C<device> is
1245 the path to the LV, such as C</dev/VG/LV>.
1246
1247 You can also remove all LVs in a volume group by specifying
1248 the VG name, C</dev/VG>.
1249
1250 This function returns 0 on success or -1 on error.
1251
1252 =head2 guestfs_lvresize
1253
1254  int guestfs_lvresize (guestfs_h *handle,
1255                 const char *device,
1256                 int mbytes);
1257
1258 This resizes (expands or shrinks) an existing LVM logical
1259 volume to C<mbytes>.  When reducing, data in the reduced part
1260 is lost.
1261
1262 This function returns 0 on success or -1 on error.
1263
1264 =head2 guestfs_lvs
1265
1266  char **guestfs_lvs (guestfs_h *handle);
1267
1268 List all the logical volumes detected.  This is the equivalent
1269 of the L<lvs(8)> command.
1270
1271 This returns a list of the logical volume device names
1272 (eg. C</dev/VolGroup00/LogVol00>).
1273
1274 See also C<guestfs_lvs_full>.
1275
1276 This function returns a NULL-terminated array of strings
1277 (like L<environ(3)>), or NULL if there was an error.
1278 I<The caller must free the strings and the array after use>.
1279
1280 =head2 guestfs_lvs_full
1281
1282  struct guestfs_lvm_lv_list *guestfs_lvs_full (guestfs_h *handle);
1283
1284 List all the logical volumes detected.  This is the equivalent
1285 of the L<lvs(8)> command.  The "full" version includes all fields.
1286
1287 This function returns a C<struct guestfs_lvm_lv_list *>
1288 (see E<lt>guestfs-structs.hE<gt>),
1289 or NULL if there was an error.
1290 I<The caller must call C<guestfs_free_lvm_lv_list> after use>.
1291
1292 =head2 guestfs_mkdir
1293
1294  int guestfs_mkdir (guestfs_h *handle,
1295                 const char *path);
1296
1297 Create a directory named C<path>.
1298
1299 This function returns 0 on success or -1 on error.
1300
1301 =head2 guestfs_mkdir_p
1302
1303  int guestfs_mkdir_p (guestfs_h *handle,
1304                 const char *path);
1305
1306 Create a directory named C<path>, creating any parent directories
1307 as necessary.  This is like the C<mkdir -p> shell command.
1308
1309 This function returns 0 on success or -1 on error.
1310
1311 =head2 guestfs_mkdtemp
1312
1313  char *guestfs_mkdtemp (guestfs_h *handle,
1314                 const char *template);
1315
1316 This command creates a temporary directory.  The
1317 C<template> parameter should be a full pathname for the
1318 temporary directory name with the final six characters being
1319 "XXXXXX".
1320
1321 For example: "/tmp/myprogXXXXXX" or "/Temp/myprogXXXXXX",
1322 the second one being suitable for Windows filesystems.
1323
1324 The name of the temporary directory that was created
1325 is returned.
1326
1327 The temporary directory is created with mode 0700
1328 and is owned by root.
1329
1330 The caller is responsible for deleting the temporary
1331 directory and its contents after use.
1332
1333 See also: L<mkdtemp(3)>
1334
1335 This function returns a string, or NULL on error.
1336 I<The caller must free the returned string after use>.
1337
1338 =head2 guestfs_mkfifo
1339
1340  int guestfs_mkfifo (guestfs_h *handle,
1341                 int mode,
1342                 const char *path);
1343
1344 This call creates a FIFO (named pipe) called C<path> with
1345 mode C<mode>.  It is just a convenient wrapper around
1346 C<guestfs_mknod>.
1347
1348 This function returns 0 on success or -1 on error.
1349
1350 =head2 guestfs_mkfs
1351
1352  int guestfs_mkfs (guestfs_h *handle,
1353                 const char *fstype,
1354                 const char *device);
1355
1356 This creates a filesystem on C<device> (usually a partition
1357 or LVM logical volume).  The filesystem type is C<fstype>, for
1358 example C<ext3>.
1359
1360 This function returns 0 on success or -1 on error.
1361
1362 =head2 guestfs_mknod
1363
1364  int guestfs_mknod (guestfs_h *handle,
1365                 int mode,
1366                 int devmajor,
1367                 int devminor,
1368                 const char *path);
1369
1370 This call creates block or character special devices, or
1371 named pipes (FIFOs).
1372
1373 The C<mode> parameter should be the mode, using the standard
1374 constants.  C<devmajor> and C<devminor> are the
1375 device major and minor numbers, only used when creating block
1376 and character special devices.
1377
1378 This function returns 0 on success or -1 on error.
1379
1380 =head2 guestfs_mknod_b
1381
1382  int guestfs_mknod_b (guestfs_h *handle,
1383                 int mode,
1384                 int devmajor,
1385                 int devminor,
1386                 const char *path);
1387
1388 This call creates a block device node called C<path> with
1389 mode C<mode> and device major/minor C<devmajor> and C<devminor>.
1390 It is just a convenient wrapper around C<guestfs_mknod>.
1391
1392 This function returns 0 on success or -1 on error.
1393
1394 =head2 guestfs_mknod_c
1395
1396  int guestfs_mknod_c (guestfs_h *handle,
1397                 int mode,
1398                 int devmajor,
1399                 int devminor,
1400                 const char *path);
1401
1402 This call creates a char device node called C<path> with
1403 mode C<mode> and device major/minor C<devmajor> and C<devminor>.
1404 It is just a convenient wrapper around C<guestfs_mknod>.
1405
1406 This function returns 0 on success or -1 on error.
1407
1408 =head2 guestfs_mkswap
1409
1410  int guestfs_mkswap (guestfs_h *handle,
1411                 const char *device);
1412
1413 Create a swap partition on C<device>.
1414
1415 This function returns 0 on success or -1 on error.
1416
1417 =head2 guestfs_mkswap_L
1418
1419  int guestfs_mkswap_L (guestfs_h *handle,
1420                 const char *label,
1421                 const char *device);
1422
1423 Create a swap partition on C<device> with label C<label>.
1424
1425 This function returns 0 on success or -1 on error.
1426
1427 =head2 guestfs_mkswap_U
1428
1429  int guestfs_mkswap_U (guestfs_h *handle,
1430                 const char *uuid,
1431                 const char *device);
1432
1433 Create a swap partition on C<device> with UUID C<uuid>.
1434
1435 This function returns 0 on success or -1 on error.
1436
1437 =head2 guestfs_mount
1438
1439  int guestfs_mount (guestfs_h *handle,
1440                 const char *device,
1441                 const char *mountpoint);
1442
1443 Mount a guest disk at a position in the filesystem.  Block devices
1444 are named C</dev/sda>, C</dev/sdb> and so on, as they were added to
1445 the guest.  If those block devices contain partitions, they will have
1446 the usual names (eg. C</dev/sda1>).  Also LVM C</dev/VG/LV>-style
1447 names can be used.
1448
1449 The rules are the same as for L<mount(2)>:  A filesystem must
1450 first be mounted on C</> before others can be mounted.  Other
1451 filesystems can only be mounted on directories which already
1452 exist.
1453
1454 The mounted filesystem is writable, if we have sufficient permissions
1455 on the underlying device.
1456
1457 The filesystem options C<sync> and C<noatime> are set with this
1458 call, in order to improve reliability.
1459
1460 This function returns 0 on success or -1 on error.
1461
1462 =head2 guestfs_mount_loop
1463
1464  int guestfs_mount_loop (guestfs_h *handle,
1465                 const char *file,
1466                 const char *mountpoint);
1467
1468 This command lets you mount C<file> (a filesystem image
1469 in a file) on a mount point.  It is entirely equivalent to
1470 the command C<mount -o loop file mountpoint>.
1471
1472 This function returns 0 on success or -1 on error.
1473
1474 =head2 guestfs_mount_options
1475
1476  int guestfs_mount_options (guestfs_h *handle,
1477                 const char *options,
1478                 const char *device,
1479                 const char *mountpoint);
1480
1481 This is the same as the C<guestfs_mount> command, but it
1482 allows you to set the mount options as for the
1483 L<mount(8)> I<-o> flag.
1484
1485 This function returns 0 on success or -1 on error.
1486
1487 =head2 guestfs_mount_ro
1488
1489  int guestfs_mount_ro (guestfs_h *handle,
1490                 const char *device,
1491                 const char *mountpoint);
1492
1493 This is the same as the C<guestfs_mount> command, but it
1494 mounts the filesystem with the read-only (I<-o ro>) flag.
1495
1496 This function returns 0 on success or -1 on error.
1497
1498 =head2 guestfs_mount_vfs
1499
1500  int guestfs_mount_vfs (guestfs_h *handle,
1501                 const char *options,
1502                 const char *vfstype,
1503                 const char *device,
1504                 const char *mountpoint);
1505
1506 This is the same as the C<guestfs_mount> command, but it
1507 allows you to set both the mount options and the vfstype
1508 as for the L<mount(8)> I<-o> and I<-t> flags.
1509
1510 This function returns 0 on success or -1 on error.
1511
1512 =head2 guestfs_mounts
1513
1514  char **guestfs_mounts (guestfs_h *handle);
1515
1516 This returns the list of currently mounted filesystems.  It returns
1517 the list of devices (eg. C</dev/sda1>, C</dev/VG/LV>).
1518
1519 Some internal mounts are not shown.
1520
1521 This function returns a NULL-terminated array of strings
1522 (like L<environ(3)>), or NULL if there was an error.
1523 I<The caller must free the strings and the array after use>.
1524
1525 =head2 guestfs_mv
1526
1527  int guestfs_mv (guestfs_h *handle,
1528                 const char *src,
1529                 const char *dest);
1530
1531 This moves a file from C<src> to C<dest> where C<dest> is
1532 either a destination filename or destination directory.
1533
1534 This function returns 0 on success or -1 on error.
1535
1536 =head2 guestfs_ntfs_3g_probe
1537
1538  int guestfs_ntfs_3g_probe (guestfs_h *handle,
1539                 int rw,
1540                 const char *device);
1541
1542 This command runs the L<ntfs-3g.probe(8)> command which probes
1543 an NTFS C<device> for mountability.  (Not all NTFS volumes can
1544 be mounted read-write, and some cannot be mounted at all).
1545
1546 C<rw> is a boolean flag.  Set it to true if you want to test
1547 if the volume can be mounted read-write.  Set it to false if
1548 you want to test if the volume can be mounted read-only.
1549
1550 The return value is an integer which C<0> if the operation
1551 would succeed, or some non-zero value documented in the
1552 L<ntfs-3g.probe(8)> manual page.
1553
1554 On error this function returns -1.
1555
1556 =head2 guestfs_ping_daemon
1557
1558  int guestfs_ping_daemon (guestfs_h *handle);
1559
1560 This is a test probe into the guestfs daemon running inside
1561 the qemu subprocess.  Calling this function checks that the
1562 daemon responds to the ping message, without affecting the daemon
1563 or attached block device(s) in any other way.
1564
1565 This function returns 0 on success or -1 on error.
1566
1567 =head2 guestfs_pvcreate
1568
1569  int guestfs_pvcreate (guestfs_h *handle,
1570                 const char *device);
1571
1572 This creates an LVM physical volume on the named C<device>,
1573 where C<device> should usually be a partition name such
1574 as C</dev/sda1>.
1575
1576 This function returns 0 on success or -1 on error.
1577
1578 =head2 guestfs_pvremove
1579
1580  int guestfs_pvremove (guestfs_h *handle,
1581                 const char *device);
1582
1583 This wipes a physical volume C<device> so that LVM will no longer
1584 recognise it.
1585
1586 The implementation uses the C<pvremove> command which refuses to
1587 wipe physical volumes that contain any volume groups, so you have
1588 to remove those first.
1589
1590 This function returns 0 on success or -1 on error.
1591
1592 =head2 guestfs_pvresize
1593
1594  int guestfs_pvresize (guestfs_h *handle,
1595                 const char *device);
1596
1597 This resizes (expands or shrinks) an existing LVM physical
1598 volume to match the new size of the underlying device.
1599
1600 This function returns 0 on success or -1 on error.
1601
1602 =head2 guestfs_pvs
1603
1604  char **guestfs_pvs (guestfs_h *handle);
1605
1606 List all the physical volumes detected.  This is the equivalent
1607 of the L<pvs(8)> command.
1608
1609 This returns a list of just the device names that contain
1610 PVs (eg. C</dev/sda2>).
1611
1612 See also C<guestfs_pvs_full>.
1613
1614 This function returns a NULL-terminated array of strings
1615 (like L<environ(3)>), or NULL if there was an error.
1616 I<The caller must free the strings and the array after use>.
1617
1618 =head2 guestfs_pvs_full
1619
1620  struct guestfs_lvm_pv_list *guestfs_pvs_full (guestfs_h *handle);
1621
1622 List all the physical volumes detected.  This is the equivalent
1623 of the L<pvs(8)> command.  The "full" version includes all fields.
1624
1625 This function returns a C<struct guestfs_lvm_pv_list *>
1626 (see E<lt>guestfs-structs.hE<gt>),
1627 or NULL if there was an error.
1628 I<The caller must call C<guestfs_free_lvm_pv_list> after use>.
1629
1630 =head2 guestfs_read_lines
1631
1632  char **guestfs_read_lines (guestfs_h *handle,
1633                 const char *path);
1634
1635 Return the contents of the file named C<path>.
1636
1637 The file contents are returned as a list of lines.  Trailing
1638 C<LF> and C<CRLF> character sequences are I<not> returned.
1639
1640 Note that this function cannot correctly handle binary files
1641 (specifically, files containing C<\0> character which is treated
1642 as end of line).  For those you need to use the C<guestfs_read_file>
1643 function which has a more complex interface.
1644
1645 This function returns a NULL-terminated array of strings
1646 (like L<environ(3)>), or NULL if there was an error.
1647 I<The caller must free the strings and the array after use>.
1648
1649 =head2 guestfs_resize2fs
1650
1651  int guestfs_resize2fs (guestfs_h *handle,
1652                 const char *device);
1653
1654 This resizes an ext2 or ext3 filesystem to match the size of
1655 the underlying device.
1656
1657 I<Note:> It is sometimes required that you run C<guestfs_e2fsck_f>
1658 on the C<device> before calling this command.  For unknown reasons
1659 C<resize2fs> sometimes gives an error about this and sometimes not.
1660 In any case, it is always safe to call C<guestfs_e2fsck_f> before
1661 calling this function.
1662
1663 This function returns 0 on success or -1 on error.
1664
1665 =head2 guestfs_rm
1666
1667  int guestfs_rm (guestfs_h *handle,
1668                 const char *path);
1669
1670 Remove the single file C<path>.
1671
1672 This function returns 0 on success or -1 on error.
1673
1674 =head2 guestfs_rm_rf
1675
1676  int guestfs_rm_rf (guestfs_h *handle,
1677                 const char *path);
1678
1679 Remove the file or directory C<path>, recursively removing the
1680 contents if its a directory.  This is like the C<rm -rf> shell
1681 command.
1682
1683 This function returns 0 on success or -1 on error.
1684
1685 =head2 guestfs_rmdir
1686
1687  int guestfs_rmdir (guestfs_h *handle,
1688                 const char *path);
1689
1690 Remove the single directory C<path>.
1691
1692 This function returns 0 on success or -1 on error.
1693
1694 =head2 guestfs_scrub_device
1695
1696  int guestfs_scrub_device (guestfs_h *handle,
1697                 const char *device);
1698
1699 This command writes patterns over C<device> to make data retrieval
1700 more difficult.
1701
1702 It is an interface to the L<scrub(1)> program.  See that
1703 manual page for more details.
1704
1705 This function returns 0 on success or -1 on error.
1706
1707 B<This command is dangerous.  Without careful use you
1708 can easily destroy all your data>.
1709
1710 =head2 guestfs_scrub_file
1711
1712  int guestfs_scrub_file (guestfs_h *handle,
1713                 const char *file);
1714
1715 This command writes patterns over a file to make data retrieval
1716 more difficult.
1717
1718 The file is I<removed> after scrubbing.
1719
1720 It is an interface to the L<scrub(1)> program.  See that
1721 manual page for more details.
1722
1723 This function returns 0 on success or -1 on error.
1724
1725 =head2 guestfs_scrub_freespace
1726
1727  int guestfs_scrub_freespace (guestfs_h *handle,
1728                 const char *dir);
1729
1730 This command creates the directory C<dir> and then fills it
1731 with files until the filesystem is full, and scrubs the files
1732 as for C<guestfs_scrub_file>, and deletes them.
1733 The intention is to scrub any free space on the partition
1734 containing C<dir>.
1735
1736 It is an interface to the L<scrub(1)> program.  See that
1737 manual page for more details.
1738
1739 This function returns 0 on success or -1 on error.
1740
1741 =head2 guestfs_set_append
1742
1743  int guestfs_set_append (guestfs_h *handle,
1744                 const char *append);
1745
1746 This function is used to add additional options to the
1747 guest kernel command line.
1748
1749 The default is C<NULL> unless overridden by setting
1750 C<LIBGUESTFS_APPEND> environment variable.
1751
1752 Setting C<append> to C<NULL> means I<no> additional options
1753 are passed (libguestfs always adds a few of its own).
1754
1755 This function returns 0 on success or -1 on error.
1756
1757 =head2 guestfs_set_autosync
1758
1759  int guestfs_set_autosync (guestfs_h *handle,
1760                 int autosync);
1761
1762 If C<autosync> is true, this enables autosync.  Libguestfs will make a
1763 best effort attempt to run C<guestfs_umount_all> followed by
1764 C<guestfs_sync> when the handle is closed
1765 (also if the program exits without closing handles).
1766
1767 This is disabled by default (except in guestfish where it is
1768 enabled by default).
1769
1770 This function returns 0 on success or -1 on error.
1771
1772 =head2 guestfs_set_busy
1773
1774  int guestfs_set_busy (guestfs_h *handle);
1775
1776 This sets the state to C<BUSY>.  This is only used when implementing
1777 actions using the low-level API.
1778
1779 For more information on states, see L<guestfs(3)>.
1780
1781 This function returns 0 on success or -1 on error.
1782
1783 =head2 guestfs_set_e2label
1784
1785  int guestfs_set_e2label (guestfs_h *handle,
1786                 const char *device,
1787                 const char *label);
1788
1789 This sets the ext2/3/4 filesystem label of the filesystem on
1790 C<device> to C<label>.  Filesystem labels are limited to
1791 16 characters.
1792
1793 You can use either C<guestfs_tune2fs_l> or C<guestfs_get_e2label>
1794 to return the existing label on a filesystem.
1795
1796 This function returns 0 on success or -1 on error.
1797
1798 =head2 guestfs_set_e2uuid
1799
1800  int guestfs_set_e2uuid (guestfs_h *handle,
1801                 const char *device,
1802                 const char *uuid);
1803
1804 This sets the ext2/3/4 filesystem UUID of the filesystem on
1805 C<device> to C<uuid>.  The format of the UUID and alternatives
1806 such as C<clear>, C<random> and C<time> are described in the
1807 L<tune2fs(8)> manpage.
1808
1809 You can use either C<guestfs_tune2fs_l> or C<guestfs_get_e2uuid>
1810 to return the existing UUID of a filesystem.
1811
1812 This function returns 0 on success or -1 on error.
1813
1814 =head2 guestfs_set_memsize
1815
1816  int guestfs_set_memsize (guestfs_h *handle,
1817                 int memsize);
1818
1819 This sets the memory size in megabytes allocated to the
1820 qemu subprocess.  This only has any effect if called before
1821 C<guestfs_launch>.
1822
1823 You can also change this by setting the environment
1824 variable C<LIBGUESTFS_MEMSIZE> before the handle is
1825 created.
1826
1827 For more information on the architecture of libguestfs,
1828 see L<guestfs(3)>.
1829
1830 This function returns 0 on success or -1 on error.
1831
1832 =head2 guestfs_set_path
1833
1834  int guestfs_set_path (guestfs_h *handle,
1835                 const char *path);
1836
1837 Set the path that libguestfs searches for kernel and initrd.img.
1838
1839 The default is C<$libdir/guestfs> unless overridden by setting
1840 C<LIBGUESTFS_PATH> environment variable.
1841
1842 Setting C<path> to C<NULL> restores the default path.
1843
1844 This function returns 0 on success or -1 on error.
1845
1846 =head2 guestfs_set_qemu
1847
1848  int guestfs_set_qemu (guestfs_h *handle,
1849                 const char *qemu);
1850
1851 Set the qemu binary that we will use.
1852
1853 The default is chosen when the library was compiled by the
1854 configure script.
1855
1856 You can also override this by setting the C<LIBGUESTFS_QEMU>
1857 environment variable.
1858
1859 Setting C<qemu> to C<NULL> restores the default qemu binary.
1860
1861 This function returns 0 on success or -1 on error.
1862
1863 =head2 guestfs_set_ready
1864
1865  int guestfs_set_ready (guestfs_h *handle);
1866
1867 This sets the state to C<READY>.  This is only used when implementing
1868 actions using the low-level API.
1869
1870 For more information on states, see L<guestfs(3)>.
1871
1872 This function returns 0 on success or -1 on error.
1873
1874 =head2 guestfs_set_verbose
1875
1876  int guestfs_set_verbose (guestfs_h *handle,
1877                 int verbose);
1878
1879 If C<verbose> is true, this turns on verbose messages (to C<stderr>).
1880
1881 Verbose messages are disabled unless the environment variable
1882 C<LIBGUESTFS_DEBUG> is defined and set to C<1>.
1883
1884 This function returns 0 on success or -1 on error.
1885
1886 =head2 guestfs_sfdisk
1887
1888  int guestfs_sfdisk (guestfs_h *handle,
1889                 const char *device,
1890                 int cyls,
1891                 int heads,
1892                 int sectors,
1893                 char * const* const lines);
1894
1895 This is a direct interface to the L<sfdisk(8)> program for creating
1896 partitions on block devices.
1897
1898 C<device> should be a block device, for example C</dev/sda>.
1899
1900 C<cyls>, C<heads> and C<sectors> are the number of cylinders, heads
1901 and sectors on the device, which are passed directly to sfdisk as
1902 the I<-C>, I<-H> and I<-S> parameters.  If you pass C<0> for any
1903 of these, then the corresponding parameter is omitted.  Usually for
1904 'large' disks, you can just pass C<0> for these, but for small
1905 (floppy-sized) disks, sfdisk (or rather, the kernel) cannot work
1906 out the right geometry and you will need to tell it.
1907
1908 C<lines> is a list of lines that we feed to C<sfdisk>.  For more
1909 information refer to the L<sfdisk(8)> manpage.
1910
1911 To create a single partition occupying the whole disk, you would
1912 pass C<lines> as a single element list, when the single element being
1913 the string C<,> (comma).
1914
1915 See also: C<guestfs_sfdisk_l>, C<guestfs_sfdisk_N>
1916
1917 This function returns 0 on success or -1 on error.
1918
1919 B<This command is dangerous.  Without careful use you
1920 can easily destroy all your data>.
1921
1922 =head2 guestfs_sfdisk_N
1923
1924  int guestfs_sfdisk_N (guestfs_h *handle,
1925                 const char *device,
1926                 int partnum,
1927                 int cyls,
1928                 int heads,
1929                 int sectors,
1930                 const char *line);
1931
1932 This runs L<sfdisk(8)> option to modify just the single
1933 partition C<n> (note: C<n> counts from 1).
1934
1935 For other parameters, see C<guestfs_sfdisk>.  You should usually
1936 pass C<0> for the cyls/heads/sectors parameters.
1937
1938 This function returns 0 on success or -1 on error.
1939
1940 B<This command is dangerous.  Without careful use you
1941 can easily destroy all your data>.
1942
1943 =head2 guestfs_sfdisk_disk_geometry
1944
1945  char *guestfs_sfdisk_disk_geometry (guestfs_h *handle,
1946                 const char *device);
1947
1948 This displays the disk geometry of C<device> read from the
1949 partition table.  Especially in the case where the underlying
1950 block device has been resized, this can be different from the
1951 kernel's idea of the geometry (see C<guestfs_sfdisk_kernel_geometry>).
1952
1953 The result is in human-readable format, and not designed to
1954 be parsed.
1955
1956 This function returns a string, or NULL on error.
1957 I<The caller must free the returned string after use>.
1958
1959 =head2 guestfs_sfdisk_kernel_geometry
1960
1961  char *guestfs_sfdisk_kernel_geometry (guestfs_h *handle,
1962                 const char *device);
1963
1964 This displays the kernel's idea of the geometry of C<device>.
1965
1966 The result is in human-readable format, and not designed to
1967 be parsed.
1968
1969 This function returns a string, or NULL on error.
1970 I<The caller must free the returned string after use>.
1971
1972 =head2 guestfs_sfdisk_l
1973
1974  char *guestfs_sfdisk_l (guestfs_h *handle,
1975                 const char *device);
1976
1977 This displays the partition table on C<device>, in the
1978 human-readable output of the L<sfdisk(8)> command.  It is
1979 not intended to be parsed.
1980
1981 This function returns a string, or NULL on error.
1982 I<The caller must free the returned string after use>.
1983
1984 =head2 guestfs_sh
1985
1986  char *guestfs_sh (guestfs_h *handle,
1987                 const char *command);
1988
1989 This call runs a command from the guest filesystem via the
1990 guest's C</bin/sh>.
1991
1992 This is like C<guestfs_command>, but passes the command to:
1993
1994  /bin/sh -c "command"
1995
1996 Depending on the guest's shell, this usually results in
1997 wildcards being expanded, shell expressions being interpolated
1998 and so on.
1999
2000 All the provisos about C<guestfs_command> apply to this call.
2001
2002 This function returns a string, or NULL on error.
2003 I<The caller must free the returned string after use>.
2004
2005 =head2 guestfs_sh_lines
2006
2007  char **guestfs_sh_lines (guestfs_h *handle,
2008                 const char *command);
2009
2010 This is the same as C<guestfs_sh>, but splits the result
2011 into a list of lines.
2012
2013 See also: C<guestfs_command_lines>
2014
2015 This function returns a NULL-terminated array of strings
2016 (like L<environ(3)>), or NULL if there was an error.
2017 I<The caller must free the strings and the array after use>.
2018
2019 =head2 guestfs_sleep
2020
2021  int guestfs_sleep (guestfs_h *handle,
2022                 int secs);
2023
2024 Sleep for C<secs> seconds.
2025
2026 This function returns 0 on success or -1 on error.
2027
2028 =head2 guestfs_stat
2029
2030  struct guestfs_stat *guestfs_stat (guestfs_h *handle,
2031                 const char *path);
2032
2033 Returns file information for the given C<path>.
2034
2035 This is the same as the C<stat(2)> system call.
2036
2037 This function returns a C<struct guestfs_stat *>
2038 (see L<stat(2)> and E<lt>guestfs-structs.hE<gt>),
2039 or NULL if there was an error.
2040 I<The caller must call C<free> after use>.
2041
2042 =head2 guestfs_statvfs
2043
2044  struct guestfs_statvfs *guestfs_statvfs (guestfs_h *handle,
2045                 const char *path);
2046
2047 Returns file system statistics for any mounted file system.
2048 C<path> should be a file or directory in the mounted file system
2049 (typically it is the mount point itself, but it doesn't need to be).
2050
2051 This is the same as the C<statvfs(2)> system call.
2052
2053 This function returns a C<struct guestfs_statvfs *>
2054 (see L<statvfs(2)> and E<lt>guestfs-structs.hE<gt>),
2055 or NULL if there was an error.
2056 I<The caller must call C<free> after use>.
2057
2058 =head2 guestfs_strings
2059
2060  char **guestfs_strings (guestfs_h *handle,
2061                 const char *path);
2062
2063 This runs the L<strings(1)> command on a file and returns
2064 the list of printable strings found.
2065
2066 This function returns a NULL-terminated array of strings
2067 (like L<environ(3)>), or NULL if there was an error.
2068 I<The caller must free the strings and the array after use>.
2069
2070 Because of the message protocol, there is a transfer limit 
2071 of somewhere between 2MB and 4MB.  To transfer large files you should use
2072 FTP.
2073
2074 =head2 guestfs_strings_e
2075
2076  char **guestfs_strings_e (guestfs_h *handle,
2077                 const char *encoding,
2078                 const char *path);
2079
2080 This is like the C<guestfs_strings> command, but allows you to
2081 specify the encoding.
2082
2083 See the L<strings(1)> manpage for the full list of encodings.
2084
2085 Commonly useful encodings are C<l> (lower case L) which will
2086 show strings inside Windows/x86 files.
2087
2088 The returned strings are transcoded to UTF-8.
2089
2090 This function returns a NULL-terminated array of strings
2091 (like L<environ(3)>), or NULL if there was an error.
2092 I<The caller must free the strings and the array after use>.
2093
2094 Because of the message protocol, there is a transfer limit 
2095 of somewhere between 2MB and 4MB.  To transfer large files you should use
2096 FTP.
2097
2098 =head2 guestfs_sync
2099
2100  int guestfs_sync (guestfs_h *handle);
2101
2102 This syncs the disk, so that any writes are flushed through to the
2103 underlying disk image.
2104
2105 You should always call this if you have modified a disk image, before
2106 closing the handle.
2107
2108 This function returns 0 on success or -1 on error.
2109
2110 =head2 guestfs_tail
2111
2112  char **guestfs_tail (guestfs_h *handle,
2113                 const char *path);
2114
2115 This command returns up to the last 10 lines of a file as
2116 a list of strings.
2117
2118 This function returns a NULL-terminated array of strings
2119 (like L<environ(3)>), or NULL if there was an error.
2120 I<The caller must free the strings and the array after use>.
2121
2122 Because of the message protocol, there is a transfer limit 
2123 of somewhere between 2MB and 4MB.  To transfer large files you should use
2124 FTP.
2125
2126 =head2 guestfs_tail_n
2127
2128  char **guestfs_tail_n (guestfs_h *handle,
2129                 int nrlines,
2130                 const char *path);
2131
2132 If the parameter C<nrlines> is a positive number, this returns the last
2133 C<nrlines> lines of the file C<path>.
2134
2135 If the parameter C<nrlines> is a negative number, this returns lines
2136 from the file C<path>, starting with the C<-nrlines>th line.
2137
2138 If the parameter C<nrlines> is zero, this returns an empty list.
2139
2140 This function returns a NULL-terminated array of strings
2141 (like L<environ(3)>), or NULL if there was an error.
2142 I<The caller must free the strings and the array after use>.
2143
2144 Because of the message protocol, there is a transfer limit 
2145 of somewhere between 2MB and 4MB.  To transfer large files you should use
2146 FTP.
2147
2148 =head2 guestfs_tar_in
2149
2150  int guestfs_tar_in (guestfs_h *handle,
2151                 const char *tarfile,
2152                 const char *directory);
2153
2154 This command uploads and unpacks local file C<tarfile> (an
2155 I<uncompressed> tar file) into C<directory>.
2156
2157 To upload a compressed tarball, use C<guestfs_tgz_in>.
2158
2159 This function returns 0 on success or -1 on error.
2160
2161 =head2 guestfs_tar_out
2162
2163  int guestfs_tar_out (guestfs_h *handle,
2164                 const char *directory,
2165                 const char *tarfile);
2166
2167 This command packs the contents of C<directory> and downloads
2168 it to local file C<tarfile>.
2169
2170 To download a compressed tarball, use C<guestfs_tgz_out>.
2171
2172 This function returns 0 on success or -1 on error.
2173
2174 =head2 guestfs_tgz_in
2175
2176  int guestfs_tgz_in (guestfs_h *handle,
2177                 const char *tarball,
2178                 const char *directory);
2179
2180 This command uploads and unpacks local file C<tarball> (a
2181 I<gzip compressed> tar file) into C<directory>.
2182
2183 To upload an uncompressed tarball, use C<guestfs_tar_in>.
2184
2185 This function returns 0 on success or -1 on error.
2186
2187 =head2 guestfs_tgz_out
2188
2189  int guestfs_tgz_out (guestfs_h *handle,
2190                 const char *directory,
2191                 const char *tarball);
2192
2193 This command packs the contents of C<directory> and downloads
2194 it to local file C<tarball>.
2195
2196 To download an uncompressed tarball, use C<guestfs_tar_out>.
2197
2198 This function returns 0 on success or -1 on error.
2199
2200 =head2 guestfs_touch
2201
2202  int guestfs_touch (guestfs_h *handle,
2203                 const char *path);
2204
2205 Touch acts like the L<touch(1)> command.  It can be used to
2206 update the timestamps on a file, or, if the file does not exist,
2207 to create a new zero-length file.
2208
2209 This function returns 0 on success or -1 on error.
2210
2211 =head2 guestfs_tune2fs_l
2212
2213  char **guestfs_tune2fs_l (guestfs_h *handle,
2214                 const char *device);
2215
2216 This returns the contents of the ext2, ext3 or ext4 filesystem
2217 superblock on C<device>.
2218
2219 It is the same as running C<tune2fs -l device>.  See L<tune2fs(8)>
2220 manpage for more details.  The list of fields returned isn't
2221 clearly defined, and depends on both the version of C<tune2fs>
2222 that libguestfs was built against, and the filesystem itself.
2223
2224 This function returns a NULL-terminated array of
2225 strings, or NULL if there was an error.
2226 The array of strings will always have length C<2n+1>, where
2227 C<n> keys and values alternate, followed by the trailing NULL entry.
2228 I<The caller must free the strings and the array after use>.
2229
2230 =head2 guestfs_umask
2231
2232  int guestfs_umask (guestfs_h *handle,
2233                 int mask);
2234
2235 This function sets the mask used for creating new files and
2236 device nodes to C<mask & 0777>.
2237
2238 Typical umask values would be C<022> which creates new files
2239 with permissions like "-rw-r--r--" or "-rwxr-xr-x", and
2240 C<002> which creates new files with permissions like
2241 "-rw-rw-r--" or "-rwxrwxr-x".
2242
2243 See also L<umask(2)>, C<guestfs_mknod>, C<guestfs_mkdir>.
2244
2245 This call returns the previous umask.
2246
2247 On error this function returns -1.
2248
2249 =head2 guestfs_umount
2250
2251  int guestfs_umount (guestfs_h *handle,
2252                 const char *pathordevice);
2253
2254 This unmounts the given filesystem.  The filesystem may be
2255 specified either by its mountpoint (path) or the device which
2256 contains the filesystem.
2257
2258 This function returns 0 on success or -1 on error.
2259
2260 =head2 guestfs_umount_all
2261
2262  int guestfs_umount_all (guestfs_h *handle);
2263
2264 This unmounts all mounted filesystems.
2265
2266 Some internal mounts are not unmounted by this call.
2267
2268 This function returns 0 on success or -1 on error.
2269
2270 =head2 guestfs_upload
2271
2272  int guestfs_upload (guestfs_h *handle,
2273                 const char *filename,
2274                 const char *remotefilename);
2275
2276 Upload local file C<filename> to C<remotefilename> on the
2277 filesystem.
2278
2279 C<filename> can also be a named pipe.
2280
2281 See also C<guestfs_download>.
2282
2283 This function returns 0 on success or -1 on error.
2284
2285 =head2 guestfs_vg_activate
2286
2287  int guestfs_vg_activate (guestfs_h *handle,
2288                 int activate,
2289                 char * const* const volgroups);
2290
2291 This command activates or (if C<activate> is false) deactivates
2292 all logical volumes in the listed volume groups C<volgroups>.
2293 If activated, then they are made known to the
2294 kernel, ie. they appear as C</dev/mapper> devices.  If deactivated,
2295 then those devices disappear.
2296
2297 This command is the same as running C<vgchange -a y|n volgroups...>
2298
2299 Note that if C<volgroups> is an empty list then B<all> volume groups
2300 are activated or deactivated.
2301
2302 This function returns 0 on success or -1 on error.
2303
2304 =head2 guestfs_vg_activate_all
2305
2306  int guestfs_vg_activate_all (guestfs_h *handle,
2307                 int activate);
2308
2309 This command activates or (if C<activate> is false) deactivates
2310 all logical volumes in all volume groups.
2311 If activated, then they are made known to the
2312 kernel, ie. they appear as C</dev/mapper> devices.  If deactivated,
2313 then those devices disappear.
2314
2315 This command is the same as running C<vgchange -a y|n>
2316
2317 This function returns 0 on success or -1 on error.
2318
2319 =head2 guestfs_vgcreate
2320
2321  int guestfs_vgcreate (guestfs_h *handle,
2322                 const char *volgroup,
2323                 char * const* const physvols);
2324
2325 This creates an LVM volume group called C<volgroup>
2326 from the non-empty list of physical volumes C<physvols>.
2327
2328 This function returns 0 on success or -1 on error.
2329
2330 =head2 guestfs_vgremove
2331
2332  int guestfs_vgremove (guestfs_h *handle,
2333                 const char *vgname);
2334
2335 Remove an LVM volume group C<vgname>, (for example C<VG>).
2336
2337 This also forcibly removes all logical volumes in the volume
2338 group (if any).
2339
2340 This function returns 0 on success or -1 on error.
2341
2342 =head2 guestfs_vgs
2343
2344  char **guestfs_vgs (guestfs_h *handle);
2345
2346 List all the volumes groups detected.  This is the equivalent
2347 of the L<vgs(8)> command.
2348
2349 This returns a list of just the volume group names that were
2350 detected (eg. C<VolGroup00>).
2351
2352 See also C<guestfs_vgs_full>.
2353
2354 This function returns a NULL-terminated array of strings
2355 (like L<environ(3)>), or NULL if there was an error.
2356 I<The caller must free the strings and the array after use>.
2357
2358 =head2 guestfs_vgs_full
2359
2360  struct guestfs_lvm_vg_list *guestfs_vgs_full (guestfs_h *handle);
2361
2362 List all the volumes groups detected.  This is the equivalent
2363 of the L<vgs(8)> command.  The "full" version includes all fields.
2364
2365 This function returns a C<struct guestfs_lvm_vg_list *>
2366 (see E<lt>guestfs-structs.hE<gt>),
2367 or NULL if there was an error.
2368 I<The caller must call C<guestfs_free_lvm_vg_list> after use>.
2369
2370 =head2 guestfs_wait_ready
2371
2372  int guestfs_wait_ready (guestfs_h *handle);
2373
2374 Internally libguestfs is implemented by running a virtual machine
2375 using L<qemu(1)>.
2376
2377 You should call this after C<guestfs_launch> to wait for the launch
2378 to complete.
2379
2380 This function returns 0 on success or -1 on error.
2381
2382 =head2 guestfs_wc_c
2383
2384  int guestfs_wc_c (guestfs_h *handle,
2385                 const char *path);
2386
2387 This command counts the characters in a file, using the
2388 C<wc -c> external command.
2389
2390 On error this function returns -1.
2391
2392 =head2 guestfs_wc_l
2393
2394  int guestfs_wc_l (guestfs_h *handle,
2395                 const char *path);
2396
2397 This command counts the lines in a file, using the
2398 C<wc -l> external command.
2399
2400 On error this function returns -1.
2401
2402 =head2 guestfs_wc_w
2403
2404  int guestfs_wc_w (guestfs_h *handle,
2405                 const char *path);
2406
2407 This command counts the words in a file, using the
2408 C<wc -w> external command.
2409
2410 On error this function returns -1.
2411
2412 =head2 guestfs_write_file
2413
2414  int guestfs_write_file (guestfs_h *handle,
2415                 const char *path,
2416                 const char *content,
2417                 int size);
2418
2419 This call creates a file called C<path>.  The contents of the
2420 file is the string C<content> (which can contain any 8 bit data),
2421 with length C<size>.
2422
2423 As a special case, if C<size> is C<0>
2424 then the length is calculated using C<strlen> (so in this case
2425 the content cannot contain embedded ASCII NULs).
2426
2427 I<NB.> Owing to a bug, writing content containing ASCII NUL
2428 characters does I<not> work, even if the length is specified.
2429 We hope to resolve this bug in a future version.  In the meantime
2430 use C<guestfs_upload>.
2431
2432 This function returns 0 on success or -1 on error.
2433
2434 Because of the message protocol, there is a transfer limit 
2435 of somewhere between 2MB and 4MB.  To transfer large files you should use
2436 FTP.
2437
2438 =head2 guestfs_zero
2439
2440  int guestfs_zero (guestfs_h *handle,
2441                 const char *device);
2442
2443 This command writes zeroes over the first few blocks of C<device>.
2444
2445 How many blocks are zeroed isn't specified (but it's I<not> enough
2446 to securely wipe the device).  It should be sufficient to remove
2447 any partition tables, filesystem superblocks and so on.
2448
2449 See also: C<guestfs_scrub_device>.
2450
2451 This function returns 0 on success or -1 on error.
2452
2453 =head2 guestfs_zerofree
2454
2455  int guestfs_zerofree (guestfs_h *handle,
2456                 const char *device);
2457
2458 This runs the I<zerofree> program on C<device>.  This program
2459 claims to zero unused inodes and disk blocks on an ext2/3
2460 filesystem, thus making it possible to compress the filesystem
2461 more effectively.
2462
2463 You should B<not> run this program if the filesystem is
2464 mounted.
2465
2466 It is possible that using this program can damage the filesystem
2467 or data on the filesystem.
2468
2469 This function returns 0 on success or -1 on error.
2470