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