083a0172cc341b1ef0484340208e4b50008a8d44
[libguestfs.git] / perl / lib / Sys / Guestfs.pm
1 # libguestfs generated file
2 # WARNING: THIS FILE IS GENERATED BY 'src/generator.ml'.
3 # ANY CHANGES YOU MAKE TO THIS FILE WILL BE LOST.
4 #
5 # Copyright (C) 2009 Red Hat Inc.
6 #
7 # This library is free software; you can redistribute it and/or
8 # modify it under the terms of the GNU Lesser General Public
9 # License as published by the Free Software Foundation; either
10 # version 2 of the License, or (at your option) any later version.
11 #
12 # This library is distributed in the hope that it will be useful,
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15 # Lesser General Public License for more details.
16 #
17 # You should have received a copy of the GNU Lesser General Public
18 # License along with this library; if not, write to the Free Software
19 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20
21 =pod
22
23 =head1 NAME
24
25 Sys::Guestfs - Perl bindings for libguestfs
26
27 =head1 SYNOPSIS
28
29  use Sys::Guestfs;
30  
31  my $h = Sys::Guestfs->new ();
32  $h->add_drive ('guest.img');
33  $h->launch ();
34  $h->wait_ready ();
35  $h->mount ('/dev/sda1', '/');
36  $h->touch ('/hello');
37  $h->sync ();
38
39 =head1 DESCRIPTION
40
41 The C<Sys::Guestfs> module provides a Perl XS binding to the
42 libguestfs API for examining and modifying virtual machine
43 disk images.
44
45 Amongst the things this is good for: making batch configuration
46 changes to guests, getting disk used/free statistics (see also:
47 virt-df), migrating between virtualization systems (see also:
48 virt-p2v), performing partial backups, performing partial guest
49 clones, cloning guests and changing registry/UUID/hostname info, and
50 much else besides.
51
52 Libguestfs uses Linux kernel and qemu code, and can access any type of
53 guest filesystem that Linux and qemu can, including but not limited
54 to: ext2/3/4, btrfs, FAT and NTFS, LVM, many different disk partition
55 schemes, qcow, qcow2, vmdk.
56
57 Libguestfs provides ways to enumerate guest storage (eg. partitions,
58 LVs, what filesystem is in each LV, etc.).  It can also run commands
59 in the context of the guest.  Also you can access filesystems over FTP.
60
61 =head1 ERRORS
62
63 All errors turn into calls to C<croak> (see L<Carp(3)>).
64
65 =head1 METHODS
66
67 =over 4
68
69 =cut
70
71 package Sys::Guestfs;
72
73 use strict;
74 use warnings;
75
76 require XSLoader;
77 XSLoader::load ('Sys::Guestfs');
78
79 =item $h = Sys::Guestfs->new ();
80
81 Create a new guestfs handle.
82
83 =cut
84
85 sub new {
86   my $proto = shift;
87   my $class = ref ($proto) || $proto;
88
89   my $self = Sys::Guestfs::_create ();
90   bless $self, $class;
91   return $self;
92 }
93
94 =item $h->add_cdrom ($filename);
95
96 This function adds a virtual CD-ROM disk image to the guest.
97
98 This is equivalent to the qemu parameter C<-cdrom filename>.
99
100 Note that this call checks for the existence of C<filename>.  This
101 stops you from specifying other types of drive which are supported
102 by qemu such as C<nbd:> and C<http:> URLs.  To specify those, use
103 the general C<$h-E<gt>config> call instead.
104
105 =item $h->add_drive ($filename);
106
107 This function adds a virtual machine disk image C<filename> to the
108 guest.  The first time you call this function, the disk appears as IDE
109 disk 0 (C</dev/sda>) in the guest, the second time as C</dev/sdb>, and
110 so on.
111
112 You don't necessarily need to be root when using libguestfs.  However
113 you obviously do need sufficient permissions to access the filename
114 for whatever operations you want to perform (ie. read access if you
115 just want to read the image or write access if you want to modify the
116 image).
117
118 This is equivalent to the qemu parameter C<-drive file=filename,cache=off>.
119
120 Note that this call checks for the existence of C<filename>.  This
121 stops you from specifying other types of drive which are supported
122 by qemu such as C<nbd:> and C<http:> URLs.  To specify those, use
123 the general C<$h-E<gt>config> call instead.
124
125 =item $h->add_drive_ro ($filename);
126
127 This adds a drive in snapshot mode, making it effectively
128 read-only.
129
130 Note that writes to the device are allowed, and will be seen for
131 the duration of the guestfs handle, but they are written
132 to a temporary file which is discarded as soon as the guestfs
133 handle is closed.  We don't currently have any method to enable
134 changes to be committed, although qemu can support this.
135
136 This is equivalent to the qemu parameter
137 C<-drive file=filename,snapshot=on>.
138
139 Note that this call checks for the existence of C<filename>.  This
140 stops you from specifying other types of drive which are supported
141 by qemu such as C<nbd:> and C<http:> URLs.  To specify those, use
142 the general C<$h-E<gt>config> call instead.
143
144 =item $h->aug_close ();
145
146 Close the current Augeas handle and free up any resources
147 used by it.  After calling this, you have to call
148 C<$h-E<gt>aug_init> again before you can use any other
149 Augeas functions.
150
151 =item ($nrnodes, $created) = $h->aug_defnode ($name, $expr, $val);
152
153 Defines a variable C<name> whose value is the result of
154 evaluating C<expr>.
155
156 If C<expr> evaluates to an empty nodeset, a node is created,
157 equivalent to calling C<$h-E<gt>aug_set> C<expr>, C<value>.
158 C<name> will be the nodeset containing that single node.
159
160 On success this returns a pair containing the
161 number of nodes in the nodeset, and a boolean flag
162 if a node was created.
163
164 =item $nrnodes = $h->aug_defvar ($name, $expr);
165
166 Defines an Augeas variable C<name> whose value is the result
167 of evaluating C<expr>.  If C<expr> is NULL, then C<name> is
168 undefined.
169
170 On success this returns the number of nodes in C<expr>, or
171 C<0> if C<expr> evaluates to something which is not a nodeset.
172
173 =item $val = $h->aug_get ($path);
174
175 Look up the value associated with C<path>.  If C<path>
176 matches exactly one node, the C<value> is returned.
177
178 =item $h->aug_init ($root, $flags);
179
180 Create a new Augeas handle for editing configuration files.
181 If there was any previous Augeas handle associated with this
182 guestfs session, then it is closed.
183
184 You must call this before using any other C<$h-E<gt>aug_*>
185 commands.
186
187 C<root> is the filesystem root.  C<root> must not be NULL,
188 use C</> instead.
189
190 The flags are the same as the flags defined in
191 E<lt>augeas.hE<gt>, the logical I<or> of the following
192 integers:
193
194 =over 4
195
196 =item C<AUG_SAVE_BACKUP> = 1
197
198 Keep the original file with a C<.augsave> extension.
199
200 =item C<AUG_SAVE_NEWFILE> = 2
201
202 Save changes into a file with extension C<.augnew>, and
203 do not overwrite original.  Overrides C<AUG_SAVE_BACKUP>.
204
205 =item C<AUG_TYPE_CHECK> = 4
206
207 Typecheck lenses (can be expensive).
208
209 =item C<AUG_NO_STDINC> = 8
210
211 Do not use standard load path for modules.
212
213 =item C<AUG_SAVE_NOOP> = 16
214
215 Make save a no-op, just record what would have been changed.
216
217 =item C<AUG_NO_LOAD> = 32
218
219 Do not load the tree in C<$h-E<gt>aug_init>.
220
221 =back
222
223 To close the handle, you can call C<$h-E<gt>aug_close>.
224
225 To find out more about Augeas, see L<http://augeas.net/>.
226
227 =item $h->aug_insert ($path, $label, $before);
228
229 Create a new sibling C<label> for C<path>, inserting it into
230 the tree before or after C<path> (depending on the boolean
231 flag C<before>).
232
233 C<path> must match exactly one existing node in the tree, and
234 C<label> must be a label, ie. not contain C</>, C<*> or end
235 with a bracketed index C<[N]>.
236
237 =item $h->aug_load ();
238
239 Load files into the tree.
240
241 See C<aug_load> in the Augeas documentation for the full gory
242 details.
243
244 =item @matches = $h->aug_ls ($path);
245
246 This is just a shortcut for listing C<$h-E<gt>aug_match>
247 C<path/*> and sorting the resulting nodes into alphabetical order.
248
249 =item @matches = $h->aug_match ($path);
250
251 Returns a list of paths which match the path expression C<path>.
252 The returned paths are sufficiently qualified so that they match
253 exactly one node in the current tree.
254
255 =item $h->aug_mv ($src, $dest);
256
257 Move the node C<src> to C<dest>.  C<src> must match exactly
258 one node.  C<dest> is overwritten if it exists.
259
260 =item $nrnodes = $h->aug_rm ($path);
261
262 Remove C<path> and all of its children.
263
264 On success this returns the number of entries which were removed.
265
266 =item $h->aug_save ();
267
268 This writes all pending changes to disk.
269
270 The flags which were passed to C<$h-E<gt>aug_init> affect exactly
271 how files are saved.
272
273 =item $h->aug_set ($path, $val);
274
275 Set the value associated with C<path> to C<value>.
276
277 =item $h->blockdev_flushbufs ($device);
278
279 This tells the kernel to flush internal buffers associated
280 with C<device>.
281
282 This uses the L<blockdev(8)> command.
283
284 =item $blocksize = $h->blockdev_getbsz ($device);
285
286 This returns the block size of a device.
287
288 (Note this is different from both I<size in blocks> and
289 I<filesystem block size>).
290
291 This uses the L<blockdev(8)> command.
292
293 =item $ro = $h->blockdev_getro ($device);
294
295 Returns a boolean indicating if the block device is read-only
296 (true if read-only, false if not).
297
298 This uses the L<blockdev(8)> command.
299
300 =item $sizeinbytes = $h->blockdev_getsize64 ($device);
301
302 This returns the size of the device in bytes.
303
304 See also C<$h-E<gt>blockdev_getsz>.
305
306 This uses the L<blockdev(8)> command.
307
308 =item $sectorsize = $h->blockdev_getss ($device);
309
310 This returns the size of sectors on a block device.
311 Usually 512, but can be larger for modern devices.
312
313 (Note, this is not the size in sectors, use C<$h-E<gt>blockdev_getsz>
314 for that).
315
316 This uses the L<blockdev(8)> command.
317
318 =item $sizeinsectors = $h->blockdev_getsz ($device);
319
320 This returns the size of the device in units of 512-byte sectors
321 (even if the sectorsize isn't 512 bytes ... weird).
322
323 See also C<$h-E<gt>blockdev_getss> for the real sector size of
324 the device, and C<$h-E<gt>blockdev_getsize64> for the more
325 useful I<size in bytes>.
326
327 This uses the L<blockdev(8)> command.
328
329 =item $h->blockdev_rereadpt ($device);
330
331 Reread the partition table on C<device>.
332
333 This uses the L<blockdev(8)> command.
334
335 =item $h->blockdev_setbsz ($device, $blocksize);
336
337 This sets the block size of a device.
338
339 (Note this is different from both I<size in blocks> and
340 I<filesystem block size>).
341
342 This uses the L<blockdev(8)> command.
343
344 =item $h->blockdev_setro ($device);
345
346 Sets the block device named C<device> to read-only.
347
348 This uses the L<blockdev(8)> command.
349
350 =item $h->blockdev_setrw ($device);
351
352 Sets the block device named C<device> to read-write.
353
354 This uses the L<blockdev(8)> command.
355
356 =item $content = $h->cat ($path);
357
358 Return the contents of the file named C<path>.
359
360 Note that this function cannot correctly handle binary files
361 (specifically, files containing C<\0> character which is treated
362 as end of string).  For those you need to use the C<$h-E<gt>download>
363 function which has a more complex interface.
364
365 Because of the message protocol, there is a transfer limit 
366 of somewhere between 2MB and 4MB.  To transfer large files you should use
367 FTP.
368
369 =item $checksum = $h->checksum ($csumtype, $path);
370
371 This call computes the MD5, SHAx or CRC checksum of the
372 file named C<path>.
373
374 The type of checksum to compute is given by the C<csumtype>
375 parameter which must have one of the following values:
376
377 =over 4
378
379 =item C<crc>
380
381 Compute the cyclic redundancy check (CRC) specified by POSIX
382 for the C<cksum> command.
383
384 =item C<md5>
385
386 Compute the MD5 hash (using the C<md5sum> program).
387
388 =item C<sha1>
389
390 Compute the SHA1 hash (using the C<sha1sum> program).
391
392 =item C<sha224>
393
394 Compute the SHA224 hash (using the C<sha224sum> program).
395
396 =item C<sha256>
397
398 Compute the SHA256 hash (using the C<sha256sum> program).
399
400 =item C<sha384>
401
402 Compute the SHA384 hash (using the C<sha384sum> program).
403
404 =item C<sha512>
405
406 Compute the SHA512 hash (using the C<sha512sum> program).
407
408 =back
409
410 The checksum is returned as a printable string.
411
412 =item $h->chmod ($mode, $path);
413
414 Change the mode (permissions) of C<path> to C<mode>.  Only
415 numeric modes are supported.
416
417 =item $h->chown ($owner, $group, $path);
418
419 Change the file owner to C<owner> and group to C<group>.
420
421 Only numeric uid and gid are supported.  If you want to use
422 names, you will need to locate and parse the password file
423 yourself (Augeas support makes this relatively easy).
424
425 =item $output = $h->command (\@arguments);
426
427 This call runs a command from the guest filesystem.  The
428 filesystem must be mounted, and must contain a compatible
429 operating system (ie. something Linux, with the same
430 or compatible processor architecture).
431
432 The single parameter is an argv-style list of arguments.
433 The first element is the name of the program to run.
434 Subsequent elements are parameters.  The list must be
435 non-empty (ie. must contain a program name).  Note that
436 the command runs directly, and is I<not> invoked via
437 the shell (see C<$h-E<gt>sh>).
438
439 The return value is anything printed to I<stdout> by
440 the command.
441
442 If the command returns a non-zero exit status, then
443 this function returns an error message.  The error message
444 string is the content of I<stderr> from the command.
445
446 The C<$PATH> environment variable will contain at least
447 C</usr/bin> and C</bin>.  If you require a program from
448 another location, you should provide the full path in the
449 first parameter.
450
451 Shared libraries and data files required by the program
452 must be available on filesystems which are mounted in the
453 correct places.  It is the caller's responsibility to ensure
454 all filesystems that are needed are mounted at the right
455 locations.
456
457 Because of the message protocol, there is a transfer limit 
458 of somewhere between 2MB and 4MB.  To transfer large files you should use
459 FTP.
460
461 =item @lines = $h->command_lines (\@arguments);
462
463 This is the same as C<$h-E<gt>command>, but splits the
464 result into a list of lines.
465
466 See also: C<$h-E<gt>sh_lines>
467
468 Because of the message protocol, there is a transfer limit 
469 of somewhere between 2MB and 4MB.  To transfer large files you should use
470 FTP.
471
472 =item $h->config ($qemuparam, $qemuvalue);
473
474 This can be used to add arbitrary qemu command line parameters
475 of the form C<-param value>.  Actually it's not quite arbitrary - we
476 prevent you from setting some parameters which would interfere with
477 parameters that we use.
478
479 The first character of C<param> string must be a C<-> (dash).
480
481 C<value> can be NULL.
482
483 =item $h->cp ($src, $dest);
484
485 This copies a file from C<src> to C<dest> where C<dest> is
486 either a destination filename or destination directory.
487
488 =item $h->cp_a ($src, $dest);
489
490 This copies a file or directory from C<src> to C<dest>
491 recursively using the C<cp -a> command.
492
493 =item $result = $h->debug ($subcmd, \@extraargs);
494
495 The C<$h-E<gt>debug> command exposes some internals of
496 C<guestfsd> (the guestfs daemon) that runs inside the
497 qemu subprocess.
498
499 There is no comprehensive help for this command.  You have
500 to look at the file C<daemon/debug.c> in the libguestfs source
501 to find out what you can do.
502
503 =item $output = $h->df ();
504
505 This command runs the C<df> command to report disk space used.
506
507 This command is mostly useful for interactive sessions.  It
508 is I<not> intended that you try to parse the output string.
509 Use C<statvfs> from programs.
510
511 =item $output = $h->df_h ();
512
513 This command runs the C<df -h> command to report disk space used
514 in human-readable format.
515
516 This command is mostly useful for interactive sessions.  It
517 is I<not> intended that you try to parse the output string.
518 Use C<statvfs> from programs.
519
520 =item $kmsgs = $h->dmesg ();
521
522 This returns the kernel messages (C<dmesg> output) from
523 the guest kernel.  This is sometimes useful for extended
524 debugging of problems.
525
526 Another way to get the same information is to enable
527 verbose messages with C<$h-E<gt>set_verbose> or by setting
528 the environment variable C<LIBGUESTFS_DEBUG=1> before
529 running the program.
530
531 =item $h->download ($remotefilename, $filename);
532
533 Download file C<remotefilename> and save it as C<filename>
534 on the local machine.
535
536 C<filename> can also be a named pipe.
537
538 See also C<$h-E<gt>upload>, C<$h-E<gt>cat>.
539
540 =item $h->drop_caches ($whattodrop);
541
542 This instructs the guest kernel to drop its page cache,
543 and/or dentries and inode caches.  The parameter C<whattodrop>
544 tells the kernel what precisely to drop, see
545 L<http://linux-mm.org/Drop_Caches>
546
547 Setting C<whattodrop> to 3 should drop everything.
548
549 This automatically calls L<sync(2)> before the operation,
550 so that the maximum guest memory is freed.
551
552 =item $sizekb = $h->du ($path);
553
554 This command runs the C<du -s> command to estimate file space
555 usage for C<path>.
556
557 C<path> can be a file or a directory.  If C<path> is a directory
558 then the estimate includes the contents of the directory and all
559 subdirectories (recursively).
560
561 The result is the estimated size in I<kilobytes>
562 (ie. units of 1024 bytes).
563
564 =item $h->e2fsck_f ($device);
565
566 This runs C<e2fsck -p -f device>, ie. runs the ext2/ext3
567 filesystem checker on C<device>, noninteractively (C<-p>),
568 even if the filesystem appears to be clean (C<-f>).
569
570 This command is only needed because of C<$h-E<gt>resize2fs>
571 (q.v.).  Normally you should use C<$h-E<gt>fsck>.
572
573 =item $h->end_busy ();
574
575 This sets the state to C<READY>, or if in C<CONFIG> then it leaves the
576 state as is.  This is only used when implementing
577 actions using the low-level API.
578
579 For more information on states, see L<guestfs(3)>.
580
581 =item $equality = $h->equal ($file1, $file2);
582
583 This compares the two files C<file1> and C<file2> and returns
584 true if their content is exactly equal, or false otherwise.
585
586 The external L<cmp(1)> program is used for the comparison.
587
588 =item $existsflag = $h->exists ($path);
589
590 This returns C<true> if and only if there is a file, directory
591 (or anything) with the given C<path> name.
592
593 See also C<$h-E<gt>is_file>, C<$h-E<gt>is_dir>, C<$h-E<gt>stat>.
594
595 =item $description = $h->file ($path);
596
597 This call uses the standard L<file(1)> command to determine
598 the type or contents of the file.  This also works on devices,
599 for example to find out whether a partition contains a filesystem.
600
601 The exact command which runs is C<file -bsL path>.  Note in
602 particular that the filename is not prepended to the output
603 (the C<-b> option).
604
605 =item @names = $h->find ($directory);
606
607 This command lists out all files and directories, recursively,
608 starting at C<directory>.  It is essentially equivalent to
609 running the shell command C<find directory -print> but some
610 post-processing happens on the output, described below.
611
612 This returns a list of strings I<without any prefix>.  Thus
613 if the directory structure was:
614
615  /tmp/a
616  /tmp/b
617  /tmp/c/d
618
619 then the returned list from C<$h-E<gt>find> C</tmp> would be
620 4 elements:
621
622  a
623  b
624  c
625  c/d
626
627 If C<directory> is not a directory, then this command returns
628 an error.
629
630 The returned list is sorted.
631
632 =item $status = $h->fsck ($fstype, $device);
633
634 This runs the filesystem checker (fsck) on C<device> which
635 should have filesystem type C<fstype>.
636
637 The returned integer is the status.  See L<fsck(8)> for the
638 list of status codes from C<fsck>.
639
640 Notes:
641
642 =over 4
643
644 =item *
645
646 Multiple status codes can be summed together.
647
648 =item *
649
650 A non-zero return code can mean "success", for example if
651 errors have been corrected on the filesystem.
652
653 =item *
654
655 Checking or repairing NTFS volumes is not supported
656 (by linux-ntfs).
657
658 =back
659
660 This command is entirely equivalent to running C<fsck -a -t fstype device>.
661
662 =item $append = $h->get_append ();
663
664 Return the additional kernel options which are added to the
665 guest kernel command line.
666
667 If C<NULL> then no options are added.
668
669 =item $autosync = $h->get_autosync ();
670
671 Get the autosync flag.
672
673 =item $label = $h->get_e2label ($device);
674
675 This returns the ext2/3/4 filesystem label of the filesystem on
676 C<device>.
677
678 =item $uuid = $h->get_e2uuid ($device);
679
680 This returns the ext2/3/4 filesystem UUID of the filesystem on
681 C<device>.
682
683 =item $memsize = $h->get_memsize ();
684
685 This gets the memory size in megabytes allocated to the
686 qemu subprocess.
687
688 If C<$h-E<gt>set_memsize> was not called
689 on this handle, and if C<LIBGUESTFS_MEMSIZE> was not set,
690 then this returns the compiled-in default value for memsize.
691
692 For more information on the architecture of libguestfs,
693 see L<guestfs(3)>.
694
695 =item $path = $h->get_path ();
696
697 Return the current search path.
698
699 This is always non-NULL.  If it wasn't set already, then this will
700 return the default path.
701
702 =item $qemu = $h->get_qemu ();
703
704 Return the current qemu binary.
705
706 This is always non-NULL.  If it wasn't set already, then this will
707 return the default qemu binary name.
708
709 =item $state = $h->get_state ();
710
711 This returns the current state as an opaque integer.  This is
712 only useful for printing debug and internal error messages.
713
714 For more information on states, see L<guestfs(3)>.
715
716 =item $verbose = $h->get_verbose ();
717
718 This returns the verbose messages flag.
719
720 =item @paths = $h->glob_expand ($pattern);
721
722 This command searches for all the pathnames matching
723 C<pattern> according to the wildcard expansion rules
724 used by the shell.
725
726 If no paths match, then this returns an empty list
727 (note: not an error).
728
729 It is just a wrapper around the C L<glob(3)> function
730 with flags C<GLOB_MARK|GLOB_BRACE>.
731 See that manual page for more details.
732
733 =item $h->grub_install ($root, $device);
734
735 This command installs GRUB (the Grand Unified Bootloader) on
736 C<device>, with the root directory being C<root>.
737
738 =item @lines = $h->head ($path);
739
740 This command returns up to the first 10 lines of a file as
741 a list of strings.
742
743 Because of the message protocol, there is a transfer limit 
744 of somewhere between 2MB and 4MB.  To transfer large files you should use
745 FTP.
746
747 =item @lines = $h->head_n ($nrlines, $path);
748
749 If the parameter C<nrlines> is a positive number, this returns the first
750 C<nrlines> lines of the file C<path>.
751
752 If the parameter C<nrlines> is a negative number, this returns lines
753 from the file C<path>, excluding the last C<nrlines> lines.
754
755 If the parameter C<nrlines> is zero, this returns an empty list.
756
757 Because of the message protocol, there is a transfer limit 
758 of somewhere between 2MB and 4MB.  To transfer large files you should use
759 FTP.
760
761 =item $dump = $h->hexdump ($path);
762
763 This runs C<hexdump -C> on the given C<path>.  The result is
764 the human-readable, canonical hex dump of the file.
765
766 Because of the message protocol, there is a transfer limit 
767 of somewhere between 2MB and 4MB.  To transfer large files you should use
768 FTP.
769
770 =item @filenames = $h->initrd_list ($path);
771
772 This command lists out files contained in an initrd.
773
774 The files are listed without any initial C</> character.  The
775 files are listed in the order they appear (not necessarily
776 alphabetical).  Directory names are listed as separate items.
777
778 Old Linux kernels (2.4 and earlier) used a compressed ext2
779 filesystem as initrd.  We I<only> support the newer initramfs
780 format (compressed cpio files).
781
782 =item $busy = $h->is_busy ();
783
784 This returns true iff this handle is busy processing a command
785 (in the C<BUSY> state).
786
787 For more information on states, see L<guestfs(3)>.
788
789 =item $config = $h->is_config ();
790
791 This returns true iff this handle is being configured
792 (in the C<CONFIG> state).
793
794 For more information on states, see L<guestfs(3)>.
795
796 =item $dirflag = $h->is_dir ($path);
797
798 This returns C<true> if and only if there is a directory
799 with the given C<path> name.  Note that it returns false for
800 other objects like files.
801
802 See also C<$h-E<gt>stat>.
803
804 =item $fileflag = $h->is_file ($path);
805
806 This returns C<true> if and only if there is a file
807 with the given C<path> name.  Note that it returns false for
808 other objects like directories.
809
810 See also C<$h-E<gt>stat>.
811
812 =item $launching = $h->is_launching ();
813
814 This returns true iff this handle is launching the subprocess
815 (in the C<LAUNCHING> state).
816
817 For more information on states, see L<guestfs(3)>.
818
819 =item $ready = $h->is_ready ();
820
821 This returns true iff this handle is ready to accept commands
822 (in the C<READY> state).
823
824 For more information on states, see L<guestfs(3)>.
825
826 =item $h->kill_subprocess ();
827
828 This kills the qemu subprocess.  You should never need to call this.
829
830 =item $h->launch ();
831
832 Internally libguestfs is implemented by running a virtual machine
833 using L<qemu(1)>.
834
835 You should call this after configuring the handle
836 (eg. adding drives) but before performing any actions.
837
838 =item @devices = $h->list_devices ();
839
840 List all the block devices.
841
842 The full block device names are returned, eg. C</dev/sda>
843
844 =item @partitions = $h->list_partitions ();
845
846 List all the partitions detected on all block devices.
847
848 The full partition device names are returned, eg. C</dev/sda1>
849
850 This does not return logical volumes.  For that you will need to
851 call C<$h-E<gt>lvs>.
852
853 =item $listing = $h->ll ($directory);
854
855 List the files in C<directory> (relative to the root directory,
856 there is no cwd) in the format of 'ls -la'.
857
858 This command is mostly useful for interactive sessions.  It
859 is I<not> intended that you try to parse the output string.
860
861 =item @listing = $h->ls ($directory);
862
863 List the files in C<directory> (relative to the root directory,
864 there is no cwd).  The '.' and '..' entries are not returned, but
865 hidden files are shown.
866
867 This command is mostly useful for interactive sessions.  Programs
868 should probably use C<$h-E<gt>readdir> instead.
869
870 =item %statbuf = $h->lstat ($path);
871
872 Returns file information for the given C<path>.
873
874 This is the same as C<$h-E<gt>stat> except that if C<path>
875 is a symbolic link, then the link is stat-ed, not the file it
876 refers to.
877
878 This is the same as the C<lstat(2)> system call.
879
880 =item $h->lvcreate ($logvol, $volgroup, $mbytes);
881
882 This creates an LVM volume group called C<logvol>
883 on the volume group C<volgroup>, with C<size> megabytes.
884
885 =item $h->lvm_remove_all ();
886
887 This command removes all LVM logical volumes, volume groups
888 and physical volumes.
889
890 B<This command is dangerous.  Without careful use you
891 can easily destroy all your data>.
892
893 =item $h->lvremove ($device);
894
895 Remove an LVM logical volume C<device>, where C<device> is
896 the path to the LV, such as C</dev/VG/LV>.
897
898 You can also remove all LVs in a volume group by specifying
899 the VG name, C</dev/VG>.
900
901 =item $h->lvresize ($device, $mbytes);
902
903 This resizes (expands or shrinks) an existing LVM logical
904 volume to C<mbytes>.  When reducing, data in the reduced part
905 is lost.
906
907 =item @logvols = $h->lvs ();
908
909 List all the logical volumes detected.  This is the equivalent
910 of the L<lvs(8)> command.
911
912 This returns a list of the logical volume device names
913 (eg. C</dev/VolGroup00/LogVol00>).
914
915 See also C<$h-E<gt>lvs_full>.
916
917 =item @logvols = $h->lvs_full ();
918
919 List all the logical volumes detected.  This is the equivalent
920 of the L<lvs(8)> command.  The "full" version includes all fields.
921
922 =item $h->mkdir ($path);
923
924 Create a directory named C<path>.
925
926 =item $h->mkdir_p ($path);
927
928 Create a directory named C<path>, creating any parent directories
929 as necessary.  This is like the C<mkdir -p> shell command.
930
931 =item $dir = $h->mkdtemp ($template);
932
933 This command creates a temporary directory.  The
934 C<template> parameter should be a full pathname for the
935 temporary directory name with the final six characters being
936 "XXXXXX".
937
938 For example: "/tmp/myprogXXXXXX" or "/Temp/myprogXXXXXX",
939 the second one being suitable for Windows filesystems.
940
941 The name of the temporary directory that was created
942 is returned.
943
944 The temporary directory is created with mode 0700
945 and is owned by root.
946
947 The caller is responsible for deleting the temporary
948 directory and its contents after use.
949
950 See also: L<mkdtemp(3)>
951
952 =item $h->mkfifo ($mode, $path);
953
954 This call creates a FIFO (named pipe) called C<path> with
955 mode C<mode>.  It is just a convenient wrapper around
956 C<$h-E<gt>mknod>.
957
958 =item $h->mkfs ($fstype, $device);
959
960 This creates a filesystem on C<device> (usually a partition
961 or LVM logical volume).  The filesystem type is C<fstype>, for
962 example C<ext3>.
963
964 =item $h->mknod ($mode, $devmajor, $devminor, $path);
965
966 This call creates block or character special devices, or
967 named pipes (FIFOs).
968
969 The C<mode> parameter should be the mode, using the standard
970 constants.  C<devmajor> and C<devminor> are the
971 device major and minor numbers, only used when creating block
972 and character special devices.
973
974 =item $h->mknod_b ($mode, $devmajor, $devminor, $path);
975
976 This call creates a block device node called C<path> with
977 mode C<mode> and device major/minor C<devmajor> and C<devminor>.
978 It is just a convenient wrapper around C<$h-E<gt>mknod>.
979
980 =item $h->mknod_c ($mode, $devmajor, $devminor, $path);
981
982 This call creates a char device node called C<path> with
983 mode C<mode> and device major/minor C<devmajor> and C<devminor>.
984 It is just a convenient wrapper around C<$h-E<gt>mknod>.
985
986 =item $h->mkswap ($device);
987
988 Create a swap partition on C<device>.
989
990 =item $h->mkswap_L ($label, $device);
991
992 Create a swap partition on C<device> with label C<label>.
993
994 =item $h->mkswap_U ($uuid, $device);
995
996 Create a swap partition on C<device> with UUID C<uuid>.
997
998 =item $h->mount ($device, $mountpoint);
999
1000 Mount a guest disk at a position in the filesystem.  Block devices
1001 are named C</dev/sda>, C</dev/sdb> and so on, as they were added to
1002 the guest.  If those block devices contain partitions, they will have
1003 the usual names (eg. C</dev/sda1>).  Also LVM C</dev/VG/LV>-style
1004 names can be used.
1005
1006 The rules are the same as for L<mount(2)>:  A filesystem must
1007 first be mounted on C</> before others can be mounted.  Other
1008 filesystems can only be mounted on directories which already
1009 exist.
1010
1011 The mounted filesystem is writable, if we have sufficient permissions
1012 on the underlying device.
1013
1014 The filesystem options C<sync> and C<noatime> are set with this
1015 call, in order to improve reliability.
1016
1017 =item $h->mount_loop ($file, $mountpoint);
1018
1019 This command lets you mount C<file> (a filesystem image
1020 in a file) on a mount point.  It is entirely equivalent to
1021 the command C<mount -o loop file mountpoint>.
1022
1023 =item $h->mount_options ($options, $device, $mountpoint);
1024
1025 This is the same as the C<$h-E<gt>mount> command, but it
1026 allows you to set the mount options as for the
1027 L<mount(8)> I<-o> flag.
1028
1029 =item $h->mount_ro ($device, $mountpoint);
1030
1031 This is the same as the C<$h-E<gt>mount> command, but it
1032 mounts the filesystem with the read-only (I<-o ro>) flag.
1033
1034 =item $h->mount_vfs ($options, $vfstype, $device, $mountpoint);
1035
1036 This is the same as the C<$h-E<gt>mount> command, but it
1037 allows you to set both the mount options and the vfstype
1038 as for the L<mount(8)> I<-o> and I<-t> flags.
1039
1040 =item @devices = $h->mounts ();
1041
1042 This returns the list of currently mounted filesystems.  It returns
1043 the list of devices (eg. C</dev/sda1>, C</dev/VG/LV>).
1044
1045 Some internal mounts are not shown.
1046
1047 =item $h->mv ($src, $dest);
1048
1049 This moves a file from C<src> to C<dest> where C<dest> is
1050 either a destination filename or destination directory.
1051
1052 =item $status = $h->ntfs_3g_probe ($rw, $device);
1053
1054 This command runs the L<ntfs-3g.probe(8)> command which probes
1055 an NTFS C<device> for mountability.  (Not all NTFS volumes can
1056 be mounted read-write, and some cannot be mounted at all).
1057
1058 C<rw> is a boolean flag.  Set it to true if you want to test
1059 if the volume can be mounted read-write.  Set it to false if
1060 you want to test if the volume can be mounted read-only.
1061
1062 The return value is an integer which C<0> if the operation
1063 would succeed, or some non-zero value documented in the
1064 L<ntfs-3g.probe(8)> manual page.
1065
1066 =item $h->ping_daemon ();
1067
1068 This is a test probe into the guestfs daemon running inside
1069 the qemu subprocess.  Calling this function checks that the
1070 daemon responds to the ping message, without affecting the daemon
1071 or attached block device(s) in any other way.
1072
1073 =item $h->pvcreate ($device);
1074
1075 This creates an LVM physical volume on the named C<device>,
1076 where C<device> should usually be a partition name such
1077 as C</dev/sda1>.
1078
1079 =item $h->pvremove ($device);
1080
1081 This wipes a physical volume C<device> so that LVM will no longer
1082 recognise it.
1083
1084 The implementation uses the C<pvremove> command which refuses to
1085 wipe physical volumes that contain any volume groups, so you have
1086 to remove those first.
1087
1088 =item $h->pvresize ($device);
1089
1090 This resizes (expands or shrinks) an existing LVM physical
1091 volume to match the new size of the underlying device.
1092
1093 =item @physvols = $h->pvs ();
1094
1095 List all the physical volumes detected.  This is the equivalent
1096 of the L<pvs(8)> command.
1097
1098 This returns a list of just the device names that contain
1099 PVs (eg. C</dev/sda2>).
1100
1101 See also C<$h-E<gt>pvs_full>.
1102
1103 =item @physvols = $h->pvs_full ();
1104
1105 List all the physical volumes detected.  This is the equivalent
1106 of the L<pvs(8)> command.  The "full" version includes all fields.
1107
1108 =item @lines = $h->read_lines ($path);
1109
1110 Return the contents of the file named C<path>.
1111
1112 The file contents are returned as a list of lines.  Trailing
1113 C<LF> and C<CRLF> character sequences are I<not> returned.
1114
1115 Note that this function cannot correctly handle binary files
1116 (specifically, files containing C<\0> character which is treated
1117 as end of line).  For those you need to use the C<$h-E<gt>read_file>
1118 function which has a more complex interface.
1119
1120 =item $h->resize2fs ($device);
1121
1122 This resizes an ext2 or ext3 filesystem to match the size of
1123 the underlying device.
1124
1125 I<Note:> It is sometimes required that you run C<$h-E<gt>e2fsck_f>
1126 on the C<device> before calling this command.  For unknown reasons
1127 C<resize2fs> sometimes gives an error about this and sometimes not.
1128 In any case, it is always safe to call C<$h-E<gt>e2fsck_f> before
1129 calling this function.
1130
1131 =item $h->rm ($path);
1132
1133 Remove the single file C<path>.
1134
1135 =item $h->rm_rf ($path);
1136
1137 Remove the file or directory C<path>, recursively removing the
1138 contents if its a directory.  This is like the C<rm -rf> shell
1139 command.
1140
1141 =item $h->rmdir ($path);
1142
1143 Remove the single directory C<path>.
1144
1145 =item $h->scrub_device ($device);
1146
1147 This command writes patterns over C<device> to make data retrieval
1148 more difficult.
1149
1150 It is an interface to the L<scrub(1)> program.  See that
1151 manual page for more details.
1152
1153 B<This command is dangerous.  Without careful use you
1154 can easily destroy all your data>.
1155
1156 =item $h->scrub_file ($file);
1157
1158 This command writes patterns over a file to make data retrieval
1159 more difficult.
1160
1161 The file is I<removed> after scrubbing.
1162
1163 It is an interface to the L<scrub(1)> program.  See that
1164 manual page for more details.
1165
1166 =item $h->scrub_freespace ($dir);
1167
1168 This command creates the directory C<dir> and then fills it
1169 with files until the filesystem is full, and scrubs the files
1170 as for C<$h-E<gt>scrub_file>, and deletes them.
1171 The intention is to scrub any free space on the partition
1172 containing C<dir>.
1173
1174 It is an interface to the L<scrub(1)> program.  See that
1175 manual page for more details.
1176
1177 =item $h->set_append ($append);
1178
1179 This function is used to add additional options to the
1180 guest kernel command line.
1181
1182 The default is C<NULL> unless overridden by setting
1183 C<LIBGUESTFS_APPEND> environment variable.
1184
1185 Setting C<append> to C<NULL> means I<no> additional options
1186 are passed (libguestfs always adds a few of its own).
1187
1188 =item $h->set_autosync ($autosync);
1189
1190 If C<autosync> is true, this enables autosync.  Libguestfs will make a
1191 best effort attempt to run C<$h-E<gt>umount_all> followed by
1192 C<$h-E<gt>sync> when the handle is closed
1193 (also if the program exits without closing handles).
1194
1195 This is disabled by default (except in guestfish where it is
1196 enabled by default).
1197
1198 =item $h->set_busy ();
1199
1200 This sets the state to C<BUSY>.  This is only used when implementing
1201 actions using the low-level API.
1202
1203 For more information on states, see L<guestfs(3)>.
1204
1205 =item $h->set_e2label ($device, $label);
1206
1207 This sets the ext2/3/4 filesystem label of the filesystem on
1208 C<device> to C<label>.  Filesystem labels are limited to
1209 16 characters.
1210
1211 You can use either C<$h-E<gt>tune2fs_l> or C<$h-E<gt>get_e2label>
1212 to return the existing label on a filesystem.
1213
1214 =item $h->set_e2uuid ($device, $uuid);
1215
1216 This sets the ext2/3/4 filesystem UUID of the filesystem on
1217 C<device> to C<uuid>.  The format of the UUID and alternatives
1218 such as C<clear>, C<random> and C<time> are described in the
1219 L<tune2fs(8)> manpage.
1220
1221 You can use either C<$h-E<gt>tune2fs_l> or C<$h-E<gt>get_e2uuid>
1222 to return the existing UUID of a filesystem.
1223
1224 =item $h->set_memsize ($memsize);
1225
1226 This sets the memory size in megabytes allocated to the
1227 qemu subprocess.  This only has any effect if called before
1228 C<$h-E<gt>launch>.
1229
1230 You can also change this by setting the environment
1231 variable C<LIBGUESTFS_MEMSIZE> before the handle is
1232 created.
1233
1234 For more information on the architecture of libguestfs,
1235 see L<guestfs(3)>.
1236
1237 =item $h->set_path ($path);
1238
1239 Set the path that libguestfs searches for kernel and initrd.img.
1240
1241 The default is C<$libdir/guestfs> unless overridden by setting
1242 C<LIBGUESTFS_PATH> environment variable.
1243
1244 Setting C<path> to C<NULL> restores the default path.
1245
1246 =item $h->set_qemu ($qemu);
1247
1248 Set the qemu binary that we will use.
1249
1250 The default is chosen when the library was compiled by the
1251 configure script.
1252
1253 You can also override this by setting the C<LIBGUESTFS_QEMU>
1254 environment variable.
1255
1256 Setting C<qemu> to C<NULL> restores the default qemu binary.
1257
1258 =item $h->set_ready ();
1259
1260 This sets the state to C<READY>.  This is only used when implementing
1261 actions using the low-level API.
1262
1263 For more information on states, see L<guestfs(3)>.
1264
1265 =item $h->set_verbose ($verbose);
1266
1267 If C<verbose> is true, this turns on verbose messages (to C<stderr>).
1268
1269 Verbose messages are disabled unless the environment variable
1270 C<LIBGUESTFS_DEBUG> is defined and set to C<1>.
1271
1272 =item $h->sfdisk ($device, $cyls, $heads, $sectors, \@lines);
1273
1274 This is a direct interface to the L<sfdisk(8)> program for creating
1275 partitions on block devices.
1276
1277 C<device> should be a block device, for example C</dev/sda>.
1278
1279 C<cyls>, C<heads> and C<sectors> are the number of cylinders, heads
1280 and sectors on the device, which are passed directly to sfdisk as
1281 the I<-C>, I<-H> and I<-S> parameters.  If you pass C<0> for any
1282 of these, then the corresponding parameter is omitted.  Usually for
1283 'large' disks, you can just pass C<0> for these, but for small
1284 (floppy-sized) disks, sfdisk (or rather, the kernel) cannot work
1285 out the right geometry and you will need to tell it.
1286
1287 C<lines> is a list of lines that we feed to C<sfdisk>.  For more
1288 information refer to the L<sfdisk(8)> manpage.
1289
1290 To create a single partition occupying the whole disk, you would
1291 pass C<lines> as a single element list, when the single element being
1292 the string C<,> (comma).
1293
1294 See also: C<$h-E<gt>sfdisk_l>, C<$h-E<gt>sfdisk_N>
1295
1296 B<This command is dangerous.  Without careful use you
1297 can easily destroy all your data>.
1298
1299 =item $h->sfdisk_N ($device, $partnum, $cyls, $heads, $sectors, $line);
1300
1301 This runs L<sfdisk(8)> option to modify just the single
1302 partition C<n> (note: C<n> counts from 1).
1303
1304 For other parameters, see C<$h-E<gt>sfdisk>.  You should usually
1305 pass C<0> for the cyls/heads/sectors parameters.
1306
1307 B<This command is dangerous.  Without careful use you
1308 can easily destroy all your data>.
1309
1310 =item $partitions = $h->sfdisk_disk_geometry ($device);
1311
1312 This displays the disk geometry of C<device> read from the
1313 partition table.  Especially in the case where the underlying
1314 block device has been resized, this can be different from the
1315 kernel's idea of the geometry (see C<$h-E<gt>sfdisk_kernel_geometry>).
1316
1317 The result is in human-readable format, and not designed to
1318 be parsed.
1319
1320 =item $partitions = $h->sfdisk_kernel_geometry ($device);
1321
1322 This displays the kernel's idea of the geometry of C<device>.
1323
1324 The result is in human-readable format, and not designed to
1325 be parsed.
1326
1327 =item $partitions = $h->sfdisk_l ($device);
1328
1329 This displays the partition table on C<device>, in the
1330 human-readable output of the L<sfdisk(8)> command.  It is
1331 not intended to be parsed.
1332
1333 =item $output = $h->sh ($command);
1334
1335 This call runs a command from the guest filesystem via the
1336 guest's C</bin/sh>.
1337
1338 This is like C<$h-E<gt>command>, but passes the command to:
1339
1340  /bin/sh -c "command"
1341
1342 Depending on the guest's shell, this usually results in
1343 wildcards being expanded, shell expressions being interpolated
1344 and so on.
1345
1346 All the provisos about C<$h-E<gt>command> apply to this call.
1347
1348 =item @lines = $h->sh_lines ($command);
1349
1350 This is the same as C<$h-E<gt>sh>, but splits the result
1351 into a list of lines.
1352
1353 See also: C<$h-E<gt>command_lines>
1354
1355 =item $h->sleep ($secs);
1356
1357 Sleep for C<secs> seconds.
1358
1359 =item %statbuf = $h->stat ($path);
1360
1361 Returns file information for the given C<path>.
1362
1363 This is the same as the C<stat(2)> system call.
1364
1365 =item %statbuf = $h->statvfs ($path);
1366
1367 Returns file system statistics for any mounted file system.
1368 C<path> should be a file or directory in the mounted file system
1369 (typically it is the mount point itself, but it doesn't need to be).
1370
1371 This is the same as the C<statvfs(2)> system call.
1372
1373 =item @stringsout = $h->strings ($path);
1374
1375 This runs the L<strings(1)> command on a file and returns
1376 the list of printable strings found.
1377
1378 Because of the message protocol, there is a transfer limit 
1379 of somewhere between 2MB and 4MB.  To transfer large files you should use
1380 FTP.
1381
1382 =item @stringsout = $h->strings_e ($encoding, $path);
1383
1384 This is like the C<$h-E<gt>strings> command, but allows you to
1385 specify the encoding.
1386
1387 See the L<strings(1)> manpage for the full list of encodings.
1388
1389 Commonly useful encodings are C<l> (lower case L) which will
1390 show strings inside Windows/x86 files.
1391
1392 The returned strings are transcoded to UTF-8.
1393
1394 Because of the message protocol, there is a transfer limit 
1395 of somewhere between 2MB and 4MB.  To transfer large files you should use
1396 FTP.
1397
1398 =item $h->sync ();
1399
1400 This syncs the disk, so that any writes are flushed through to the
1401 underlying disk image.
1402
1403 You should always call this if you have modified a disk image, before
1404 closing the handle.
1405
1406 =item @lines = $h->tail ($path);
1407
1408 This command returns up to the last 10 lines of a file as
1409 a list of strings.
1410
1411 Because of the message protocol, there is a transfer limit 
1412 of somewhere between 2MB and 4MB.  To transfer large files you should use
1413 FTP.
1414
1415 =item @lines = $h->tail_n ($nrlines, $path);
1416
1417 If the parameter C<nrlines> is a positive number, this returns the last
1418 C<nrlines> lines of the file C<path>.
1419
1420 If the parameter C<nrlines> is a negative number, this returns lines
1421 from the file C<path>, starting with the C<-nrlines>th line.
1422
1423 If the parameter C<nrlines> is zero, this returns an empty list.
1424
1425 Because of the message protocol, there is a transfer limit 
1426 of somewhere between 2MB and 4MB.  To transfer large files you should use
1427 FTP.
1428
1429 =item $h->tar_in ($tarfile, $directory);
1430
1431 This command uploads and unpacks local file C<tarfile> (an
1432 I<uncompressed> tar file) into C<directory>.
1433
1434 To upload a compressed tarball, use C<$h-E<gt>tgz_in>.
1435
1436 =item $h->tar_out ($directory, $tarfile);
1437
1438 This command packs the contents of C<directory> and downloads
1439 it to local file C<tarfile>.
1440
1441 To download a compressed tarball, use C<$h-E<gt>tgz_out>.
1442
1443 =item $h->tgz_in ($tarball, $directory);
1444
1445 This command uploads and unpacks local file C<tarball> (a
1446 I<gzip compressed> tar file) into C<directory>.
1447
1448 To upload an uncompressed tarball, use C<$h-E<gt>tar_in>.
1449
1450 =item $h->tgz_out ($directory, $tarball);
1451
1452 This command packs the contents of C<directory> and downloads
1453 it to local file C<tarball>.
1454
1455 To download an uncompressed tarball, use C<$h-E<gt>tar_out>.
1456
1457 =item $h->touch ($path);
1458
1459 Touch acts like the L<touch(1)> command.  It can be used to
1460 update the timestamps on a file, or, if the file does not exist,
1461 to create a new zero-length file.
1462
1463 =item %superblock = $h->tune2fs_l ($device);
1464
1465 This returns the contents of the ext2, ext3 or ext4 filesystem
1466 superblock on C<device>.
1467
1468 It is the same as running C<tune2fs -l device>.  See L<tune2fs(8)>
1469 manpage for more details.  The list of fields returned isn't
1470 clearly defined, and depends on both the version of C<tune2fs>
1471 that libguestfs was built against, and the filesystem itself.
1472
1473 =item $oldmask = $h->umask ($mask);
1474
1475 This function sets the mask used for creating new files and
1476 device nodes to C<mask & 0777>.
1477
1478 Typical umask values would be C<022> which creates new files
1479 with permissions like "-rw-r--r--" or "-rwxr-xr-x", and
1480 C<002> which creates new files with permissions like
1481 "-rw-rw-r--" or "-rwxrwxr-x".
1482
1483 See also L<umask(2)>, C<$h-E<gt>mknod>, C<$h-E<gt>mkdir>.
1484
1485 This call returns the previous umask.
1486
1487 =item $h->umount ($pathordevice);
1488
1489 This unmounts the given filesystem.  The filesystem may be
1490 specified either by its mountpoint (path) or the device which
1491 contains the filesystem.
1492
1493 =item $h->umount_all ();
1494
1495 This unmounts all mounted filesystems.
1496
1497 Some internal mounts are not unmounted by this call.
1498
1499 =item $h->upload ($filename, $remotefilename);
1500
1501 Upload local file C<filename> to C<remotefilename> on the
1502 filesystem.
1503
1504 C<filename> can also be a named pipe.
1505
1506 See also C<$h-E<gt>download>.
1507
1508 =item $h->vg_activate ($activate, \@volgroups);
1509
1510 This command activates or (if C<activate> is false) deactivates
1511 all logical volumes in the listed volume groups C<volgroups>.
1512 If activated, then they are made known to the
1513 kernel, ie. they appear as C</dev/mapper> devices.  If deactivated,
1514 then those devices disappear.
1515
1516 This command is the same as running C<vgchange -a y|n volgroups...>
1517
1518 Note that if C<volgroups> is an empty list then B<all> volume groups
1519 are activated or deactivated.
1520
1521 =item $h->vg_activate_all ($activate);
1522
1523 This command activates or (if C<activate> is false) deactivates
1524 all logical volumes in all volume groups.
1525 If activated, then they are made known to the
1526 kernel, ie. they appear as C</dev/mapper> devices.  If deactivated,
1527 then those devices disappear.
1528
1529 This command is the same as running C<vgchange -a y|n>
1530
1531 =item $h->vgcreate ($volgroup, \@physvols);
1532
1533 This creates an LVM volume group called C<volgroup>
1534 from the non-empty list of physical volumes C<physvols>.
1535
1536 =item $h->vgremove ($vgname);
1537
1538 Remove an LVM volume group C<vgname>, (for example C<VG>).
1539
1540 This also forcibly removes all logical volumes in the volume
1541 group (if any).
1542
1543 =item @volgroups = $h->vgs ();
1544
1545 List all the volumes groups detected.  This is the equivalent
1546 of the L<vgs(8)> command.
1547
1548 This returns a list of just the volume group names that were
1549 detected (eg. C<VolGroup00>).
1550
1551 See also C<$h-E<gt>vgs_full>.
1552
1553 =item @volgroups = $h->vgs_full ();
1554
1555 List all the volumes groups detected.  This is the equivalent
1556 of the L<vgs(8)> command.  The "full" version includes all fields.
1557
1558 =item $h->wait_ready ();
1559
1560 Internally libguestfs is implemented by running a virtual machine
1561 using L<qemu(1)>.
1562
1563 You should call this after C<$h-E<gt>launch> to wait for the launch
1564 to complete.
1565
1566 =item $chars = $h->wc_c ($path);
1567
1568 This command counts the characters in a file, using the
1569 C<wc -c> external command.
1570
1571 =item $lines = $h->wc_l ($path);
1572
1573 This command counts the lines in a file, using the
1574 C<wc -l> external command.
1575
1576 =item $words = $h->wc_w ($path);
1577
1578 This command counts the words in a file, using the
1579 C<wc -w> external command.
1580
1581 =item $h->write_file ($path, $content, $size);
1582
1583 This call creates a file called C<path>.  The contents of the
1584 file is the string C<content> (which can contain any 8 bit data),
1585 with length C<size>.
1586
1587 As a special case, if C<size> is C<0>
1588 then the length is calculated using C<strlen> (so in this case
1589 the content cannot contain embedded ASCII NULs).
1590
1591 I<NB.> Owing to a bug, writing content containing ASCII NUL
1592 characters does I<not> work, even if the length is specified.
1593 We hope to resolve this bug in a future version.  In the meantime
1594 use C<$h-E<gt>upload>.
1595
1596 Because of the message protocol, there is a transfer limit 
1597 of somewhere between 2MB and 4MB.  To transfer large files you should use
1598 FTP.
1599
1600 =item $h->zero ($device);
1601
1602 This command writes zeroes over the first few blocks of C<device>.
1603
1604 How many blocks are zeroed isn't specified (but it's I<not> enough
1605 to securely wipe the device).  It should be sufficient to remove
1606 any partition tables, filesystem superblocks and so on.
1607
1608 See also: C<$h-E<gt>scrub_device>.
1609
1610 =item $h->zerofree ($device);
1611
1612 This runs the I<zerofree> program on C<device>.  This program
1613 claims to zero unused inodes and disk blocks on an ext2/3
1614 filesystem, thus making it possible to compress the filesystem
1615 more effectively.
1616
1617 You should B<not> run this program if the filesystem is
1618 mounted.
1619
1620 It is possible that using this program can damage the filesystem
1621 or data on the filesystem.
1622
1623 =cut
1624
1625 1;
1626
1627 =back
1628
1629 =head1 COPYRIGHT
1630
1631 Copyright (C) 2009 Red Hat Inc.
1632
1633 =head1 LICENSE
1634
1635 Please see the file COPYING.LIB for the full license.
1636
1637 =head1 SEE ALSO
1638
1639 L<guestfs(3)>, L<guestfish(1)>.
1640
1641 =cut