13c084f7c968c49104825e385fb6819cba9b1c3b
[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 =item $h->add_drive ($filename);
101
102 This function adds a virtual machine disk image C<filename> to the
103 guest.  The first time you call this function, the disk appears as IDE
104 disk 0 (C</dev/sda>) in the guest, the second time as C</dev/sdb>, and
105 so on.
106
107 You don't necessarily need to be root when using libguestfs.  However
108 you obviously do need sufficient permissions to access the filename
109 for whatever operations you want to perform (ie. read access if you
110 just want to read the image or write access if you want to modify the
111 image).
112
113 This is equivalent to the qemu parameter C<-drive file=filename>.
114
115 =item $h->aug_close ();
116
117 Close the current Augeas handle and free up any resources
118 used by it.  After calling this, you have to call
119 C<$h-E<gt>aug_init> again before you can use any other
120 Augeas functions.
121
122 =item ($nrnodes, $created) = $h->aug_defnode ($name, $expr, $val);
123
124 Defines a variable C<name> whose value is the result of
125 evaluating C<expr>.
126
127 If C<expr> evaluates to an empty nodeset, a node is created,
128 equivalent to calling C<$h-E<gt>aug_set> C<expr>, C<value>.
129 C<name> will be the nodeset containing that single node.
130
131 On success this returns a pair containing the
132 number of nodes in the nodeset, and a boolean flag
133 if a node was created.
134
135 =item $nrnodes = $h->aug_defvar ($name, $expr);
136
137 Defines an Augeas variable C<name> whose value is the result
138 of evaluating C<expr>.  If C<expr> is NULL, then C<name> is
139 undefined.
140
141 On success this returns the number of nodes in C<expr>, or
142 C<0> if C<expr> evaluates to something which is not a nodeset.
143
144 =item $val = $h->aug_get ($path);
145
146 Look up the value associated with C<path>.  If C<path>
147 matches exactly one node, the C<value> is returned.
148
149 =item $h->aug_init ($root, $flags);
150
151 Create a new Augeas handle for editing configuration files.
152 If there was any previous Augeas handle associated with this
153 guestfs session, then it is closed.
154
155 You must call this before using any other C<$h-E<gt>aug_*>
156 commands.
157
158 C<root> is the filesystem root.  C<root> must not be NULL,
159 use C</> instead.
160
161 The flags are the same as the flags defined in
162 E<lt>augeas.hE<gt>, the logical I<or> of the following
163 integers:
164
165 =over 4
166
167 =item C<AUG_SAVE_BACKUP> = 1
168
169 Keep the original file with a C<.augsave> extension.
170
171 =item C<AUG_SAVE_NEWFILE> = 2
172
173 Save changes into a file with extension C<.augnew>, and
174 do not overwrite original.  Overrides C<AUG_SAVE_BACKUP>.
175
176 =item C<AUG_TYPE_CHECK> = 4
177
178 Typecheck lenses (can be expensive).
179
180 =item C<AUG_NO_STDINC> = 8
181
182 Do not use standard load path for modules.
183
184 =item C<AUG_SAVE_NOOP> = 16
185
186 Make save a no-op, just record what would have been changed.
187
188 =item C<AUG_NO_LOAD> = 32
189
190 Do not load the tree in C<$h-E<gt>aug_init>.
191
192 =back
193
194 To close the handle, you can call C<$h-E<gt>aug_close>.
195
196 To find out more about Augeas, see L<http://augeas.net/>.
197
198 =item $h->aug_insert ($path, $label, $before);
199
200 Create a new sibling C<label> for C<path>, inserting it into
201 the tree before or after C<path> (depending on the boolean
202 flag C<before>).
203
204 C<path> must match exactly one existing node in the tree, and
205 C<label> must be a label, ie. not contain C</>, C<*> or end
206 with a bracketed index C<[N]>.
207
208 =item $h->aug_load ();
209
210 Load files into the tree.
211
212 See C<aug_load> in the Augeas documentation for the full gory
213 details.
214
215 =item @matches = $h->aug_ls ($path);
216
217 This is just a shortcut for listing C<$h-E<gt>aug_match>
218 C<path/*> and sorting the resulting nodes into alphabetical order.
219
220 =item @matches = $h->aug_match ($path);
221
222 Returns a list of paths which match the path expression C<path>.
223 The returned paths are sufficiently qualified so that they match
224 exactly one node in the current tree.
225
226 =item $h->aug_mv ($src, $dest);
227
228 Move the node C<src> to C<dest>.  C<src> must match exactly
229 one node.  C<dest> is overwritten if it exists.
230
231 =item $nrnodes = $h->aug_rm ($path);
232
233 Remove C<path> and all of its children.
234
235 On success this returns the number of entries which were removed.
236
237 =item $h->aug_save ();
238
239 This writes all pending changes to disk.
240
241 The flags which were passed to C<$h-E<gt>aug_init> affect exactly
242 how files are saved.
243
244 =item $h->aug_set ($path, $val);
245
246 Set the value associated with C<path> to C<value>.
247
248 =item $h->blockdev_flushbufs ($device);
249
250 This tells the kernel to flush internal buffers associated
251 with C<device>.
252
253 This uses the L<blockdev(8)> command.
254
255 =item $blocksize = $h->blockdev_getbsz ($device);
256
257 This returns the block size of a device.
258
259 (Note this is different from both I<size in blocks> and
260 I<filesystem block size>).
261
262 This uses the L<blockdev(8)> command.
263
264 =item $ro = $h->blockdev_getro ($device);
265
266 Returns a boolean indicating if the block device is read-only
267 (true if read-only, false if not).
268
269 This uses the L<blockdev(8)> command.
270
271 =item $sizeinbytes = $h->blockdev_getsize64 ($device);
272
273 This returns the size of the device in bytes.
274
275 See also C<$h-E<gt>blockdev_getsz>.
276
277 This uses the L<blockdev(8)> command.
278
279 =item $sectorsize = $h->blockdev_getss ($device);
280
281 This returns the size of sectors on a block device.
282 Usually 512, but can be larger for modern devices.
283
284 (Note, this is not the size in sectors, use C<$h-E<gt>blockdev_getsz>
285 for that).
286
287 This uses the L<blockdev(8)> command.
288
289 =item $sizeinsectors = $h->blockdev_getsz ($device);
290
291 This returns the size of the device in units of 512-byte sectors
292 (even if the sectorsize isn't 512 bytes ... weird).
293
294 See also C<$h-E<gt>blockdev_getss> for the real sector size of
295 the device, and C<$h-E<gt>blockdev_getsize64> for the more
296 useful I<size in bytes>.
297
298 This uses the L<blockdev(8)> command.
299
300 =item $h->blockdev_rereadpt ($device);
301
302 Reread the partition table on C<device>.
303
304 This uses the L<blockdev(8)> command.
305
306 =item $h->blockdev_setbsz ($device, $blocksize);
307
308 This sets the block size of a device.
309
310 (Note this is different from both I<size in blocks> and
311 I<filesystem block size>).
312
313 This uses the L<blockdev(8)> command.
314
315 =item $h->blockdev_setro ($device);
316
317 Sets the block device named C<device> to read-only.
318
319 This uses the L<blockdev(8)> command.
320
321 =item $h->blockdev_setrw ($device);
322
323 Sets the block device named C<device> to read-write.
324
325 This uses the L<blockdev(8)> command.
326
327 =item $content = $h->cat ($path);
328
329 Return the contents of the file named C<path>.
330
331 Note that this function cannot correctly handle binary files
332 (specifically, files containing C<\0> character which is treated
333 as end of string).  For those you need to use the C<$h-E<gt>download>
334 function which has a more complex interface.
335
336 Because of the message protocol, there is a transfer limit 
337 of somewhere between 2MB and 4MB.  To transfer large files you should use
338 FTP.
339
340 =item $checksum = $h->checksum ($csumtype, $path);
341
342 This call computes the MD5, SHAx or CRC checksum of the
343 file named C<path>.
344
345 The type of checksum to compute is given by the C<csumtype>
346 parameter which must have one of the following values:
347
348 =over 4
349
350 =item C<crc>
351
352 Compute the cyclic redundancy check (CRC) specified by POSIX
353 for the C<cksum> command.
354
355 =item C<md5>
356
357 Compute the MD5 hash (using the C<md5sum> program).
358
359 =item C<sha1>
360
361 Compute the SHA1 hash (using the C<sha1sum> program).
362
363 =item C<sha224>
364
365 Compute the SHA224 hash (using the C<sha224sum> program).
366
367 =item C<sha256>
368
369 Compute the SHA256 hash (using the C<sha256sum> program).
370
371 =item C<sha384>
372
373 Compute the SHA384 hash (using the C<sha384sum> program).
374
375 =item C<sha512>
376
377 Compute the SHA512 hash (using the C<sha512sum> program).
378
379 =back
380
381 The checksum is returned as a printable string.
382
383 =item $h->chmod ($mode, $path);
384
385 Change the mode (permissions) of C<path> to C<mode>.  Only
386 numeric modes are supported.
387
388 =item $h->chown ($owner, $group, $path);
389
390 Change the file owner to C<owner> and group to C<group>.
391
392 Only numeric uid and gid are supported.  If you want to use
393 names, you will need to locate and parse the password file
394 yourself (Augeas support makes this relatively easy).
395
396 =item $output = $h->command (\@arguments);
397
398 This call runs a command from the guest filesystem.  The
399 filesystem must be mounted, and must contain a compatible
400 operating system (ie. something Linux, with the same
401 or compatible processor architecture).
402
403 The single parameter is an argv-style list of arguments.
404 The first element is the name of the program to run.
405 Subsequent elements are parameters.  The list must be
406 non-empty (ie. must contain a program name).
407
408 The return value is anything printed to I<stdout> by
409 the command.
410
411 If the command returns a non-zero exit status, then
412 this function returns an error message.  The error message
413 string is the content of I<stderr> from the command.
414
415 The C<$PATH> environment variable will contain at least
416 C</usr/bin> and C</bin>.  If you require a program from
417 another location, you should provide the full path in the
418 first parameter.
419
420 Shared libraries and data files required by the program
421 must be available on filesystems which are mounted in the
422 correct places.  It is the caller's responsibility to ensure
423 all filesystems that are needed are mounted at the right
424 locations.
425
426 Because of the message protocol, there is a transfer limit 
427 of somewhere between 2MB and 4MB.  To transfer large files you should use
428 FTP.
429
430 =item @lines = $h->command_lines (\@arguments);
431
432 This is the same as C<$h-E<gt>command>, but splits the
433 result into a list of lines.
434
435 Because of the message protocol, there is a transfer limit 
436 of somewhere between 2MB and 4MB.  To transfer large files you should use
437 FTP.
438
439 =item $h->config ($qemuparam, $qemuvalue);
440
441 This can be used to add arbitrary qemu command line parameters
442 of the form C<-param value>.  Actually it's not quite arbitrary - we
443 prevent you from setting some parameters which would interfere with
444 parameters that we use.
445
446 The first character of C<param> string must be a C<-> (dash).
447
448 C<value> can be NULL.
449
450 =item $h->cp ($src, $dest);
451
452 This copies a file from C<src> to C<dest> where C<dest> is
453 either a destination filename or destination directory.
454
455 =item $h->cp_a ($src, $dest);
456
457 This copies a file or directory from C<src> to C<dest>
458 recursively using the C<cp -a> command.
459
460 =item $result = $h->debug ($subcmd, \@extraargs);
461
462 The C<$h-E<gt>debug> command exposes some internals of
463 C<guestfsd> (the guestfs daemon) that runs inside the
464 qemu subprocess.
465
466 There is no comprehensive help for this command.  You have
467 to look at the file C<daemon/debug.c> in the libguestfs source
468 to find out what you can do.
469
470 =item $kmsgs = $h->dmesg ();
471
472 This returns the kernel messages (C<dmesg> output) from
473 the guest kernel.  This is sometimes useful for extended
474 debugging of problems.
475
476 Another way to get the same information is to enable
477 verbose messages with C<$h-E<gt>set_verbose> or by setting
478 the environment variable C<LIBGUESTFS_DEBUG=1> before
479 running the program.
480
481 =item $h->download ($remotefilename, $filename);
482
483 Download file C<remotefilename> and save it as C<filename>
484 on the local machine.
485
486 C<filename> can also be a named pipe.
487
488 See also C<$h-E<gt>upload>, C<$h-E<gt>cat>.
489
490 =item $h->drop_caches ($whattodrop);
491
492 This instructs the guest kernel to drop its page cache,
493 and/or dentries and inode caches.  The parameter C<whattodrop>
494 tells the kernel what precisely to drop, see
495 L<http://linux-mm.org/Drop_Caches>
496
497 Setting C<whattodrop> to 3 should drop everything.
498
499 This automatically calls L<sync(2)> before the operation,
500 so that the maximum guest memory is freed.
501
502 =item $h->end_busy ();
503
504 This sets the state to C<READY>, or if in C<CONFIG> then it leaves the
505 state as is.  This is only used when implementing
506 actions using the low-level API.
507
508 For more information on states, see L<guestfs(3)>.
509
510 =item $equality = $h->equal ($file1, $file2);
511
512 This compares the two files C<file1> and C<file2> and returns
513 true if their content is exactly equal, or false otherwise.
514
515 The external L<cmp(1)> program is used for the comparison.
516
517 =item $existsflag = $h->exists ($path);
518
519 This returns C<true> if and only if there is a file, directory
520 (or anything) with the given C<path> name.
521
522 See also C<$h-E<gt>is_file>, C<$h-E<gt>is_dir>, C<$h-E<gt>stat>.
523
524 =item $description = $h->file ($path);
525
526 This call uses the standard L<file(1)> command to determine
527 the type or contents of the file.  This also works on devices,
528 for example to find out whether a partition contains a filesystem.
529
530 The exact command which runs is C<file -bsL path>.  Note in
531 particular that the filename is not prepended to the output
532 (the C<-b> option).
533
534 =item $status = $h->fsck ($fstype, $device);
535
536 This runs the filesystem checker (fsck) on C<device> which
537 should have filesystem type C<fstype>.
538
539 The returned integer is the status.  See L<fsck(8)> for the
540 list of status codes from C<fsck>.
541
542 Notes:
543
544 =over 4
545
546 =item *
547
548 Multiple status codes can be summed together.
549
550 =item *
551
552 A non-zero return code can mean "success", for example if
553 errors have been corrected on the filesystem.
554
555 =item *
556
557 Checking or repairing NTFS volumes is not supported
558 (by linux-ntfs).
559
560 =back
561
562 This command is entirely equivalent to running C<fsck -a -t fstype device>.
563
564 =item $append = $h->get_append ();
565
566 Return the additional kernel options which are added to the
567 guest kernel command line.
568
569 If C<NULL> then no options are added.
570
571 =item $autosync = $h->get_autosync ();
572
573 Get the autosync flag.
574
575 =item $label = $h->get_e2label ($device);
576
577 This returns the ext2/3/4 filesystem label of the filesystem on
578 C<device>.
579
580 =item $uuid = $h->get_e2uuid ($device);
581
582 This returns the ext2/3/4 filesystem UUID of the filesystem on
583 C<device>.
584
585 =item $path = $h->get_path ();
586
587 Return the current search path.
588
589 This is always non-NULL.  If it wasn't set already, then this will
590 return the default path.
591
592 =item $qemu = $h->get_qemu ();
593
594 Return the current qemu binary.
595
596 This is always non-NULL.  If it wasn't set already, then this will
597 return the default qemu binary name.
598
599 =item $state = $h->get_state ();
600
601 This returns the current state as an opaque integer.  This is
602 only useful for printing debug and internal error messages.
603
604 For more information on states, see L<guestfs(3)>.
605
606 =item $verbose = $h->get_verbose ();
607
608 This returns the verbose messages flag.
609
610 =item $h->grub_install ($root, $device);
611
612 This command installs GRUB (the Grand Unified Bootloader) on
613 C<device>, with the root directory being C<root>.
614
615 =item $dump = $h->hexdump ($path);
616
617 This runs C<hexdump -C> on the given C<path>.  The result is
618 the human-readable, canonical hex dump of the file.
619
620 Because of the message protocol, there is a transfer limit 
621 of somewhere between 2MB and 4MB.  To transfer large files you should use
622 FTP.
623
624 =item $busy = $h->is_busy ();
625
626 This returns true iff this handle is busy processing a command
627 (in the C<BUSY> state).
628
629 For more information on states, see L<guestfs(3)>.
630
631 =item $config = $h->is_config ();
632
633 This returns true iff this handle is being configured
634 (in the C<CONFIG> state).
635
636 For more information on states, see L<guestfs(3)>.
637
638 =item $dirflag = $h->is_dir ($path);
639
640 This returns C<true> if and only if there is a directory
641 with the given C<path> name.  Note that it returns false for
642 other objects like files.
643
644 See also C<$h-E<gt>stat>.
645
646 =item $fileflag = $h->is_file ($path);
647
648 This returns C<true> if and only if there is a file
649 with the given C<path> name.  Note that it returns false for
650 other objects like directories.
651
652 See also C<$h-E<gt>stat>.
653
654 =item $launching = $h->is_launching ();
655
656 This returns true iff this handle is launching the subprocess
657 (in the C<LAUNCHING> state).
658
659 For more information on states, see L<guestfs(3)>.
660
661 =item $ready = $h->is_ready ();
662
663 This returns true iff this handle is ready to accept commands
664 (in the C<READY> state).
665
666 For more information on states, see L<guestfs(3)>.
667
668 =item $h->kill_subprocess ();
669
670 This kills the qemu subprocess.  You should never need to call this.
671
672 =item $h->launch ();
673
674 Internally libguestfs is implemented by running a virtual machine
675 using L<qemu(1)>.
676
677 You should call this after configuring the handle
678 (eg. adding drives) but before performing any actions.
679
680 =item @devices = $h->list_devices ();
681
682 List all the block devices.
683
684 The full block device names are returned, eg. C</dev/sda>
685
686 =item @partitions = $h->list_partitions ();
687
688 List all the partitions detected on all block devices.
689
690 The full partition device names are returned, eg. C</dev/sda1>
691
692 This does not return logical volumes.  For that you will need to
693 call C<$h-E<gt>lvs>.
694
695 =item $listing = $h->ll ($directory);
696
697 List the files in C<directory> (relative to the root directory,
698 there is no cwd) in the format of 'ls -la'.
699
700 This command is mostly useful for interactive sessions.  It
701 is I<not> intended that you try to parse the output string.
702
703 =item @listing = $h->ls ($directory);
704
705 List the files in C<directory> (relative to the root directory,
706 there is no cwd).  The '.' and '..' entries are not returned, but
707 hidden files are shown.
708
709 This command is mostly useful for interactive sessions.  Programs
710 should probably use C<$h-E<gt>readdir> instead.
711
712 =item %statbuf = $h->lstat ($path);
713
714 Returns file information for the given C<path>.
715
716 This is the same as C<$h-E<gt>stat> except that if C<path>
717 is a symbolic link, then the link is stat-ed, not the file it
718 refers to.
719
720 This is the same as the C<lstat(2)> system call.
721
722 =item $h->lvcreate ($logvol, $volgroup, $mbytes);
723
724 This creates an LVM volume group called C<logvol>
725 on the volume group C<volgroup>, with C<size> megabytes.
726
727 =item $h->lvm_remove_all ();
728
729 This command removes all LVM logical volumes, volume groups
730 and physical volumes.
731
732 B<This command is dangerous.  Without careful use you
733 can easily destroy all your data>.
734
735 =item $h->lvremove ($device);
736
737 Remove an LVM logical volume C<device>, where C<device> is
738 the path to the LV, such as C</dev/VG/LV>.
739
740 You can also remove all LVs in a volume group by specifying
741 the VG name, C</dev/VG>.
742
743 =item @logvols = $h->lvs ();
744
745 List all the logical volumes detected.  This is the equivalent
746 of the L<lvs(8)> command.
747
748 This returns a list of the logical volume device names
749 (eg. C</dev/VolGroup00/LogVol00>).
750
751 See also C<$h-E<gt>lvs_full>.
752
753 =item @logvols = $h->lvs_full ();
754
755 List all the logical volumes detected.  This is the equivalent
756 of the L<lvs(8)> command.  The "full" version includes all fields.
757
758 =item $h->mkdir ($path);
759
760 Create a directory named C<path>.
761
762 =item $h->mkdir_p ($path);
763
764 Create a directory named C<path>, creating any parent directories
765 as necessary.  This is like the C<mkdir -p> shell command.
766
767 =item $h->mkfs ($fstype, $device);
768
769 This creates a filesystem on C<device> (usually a partition
770 or LVM logical volume).  The filesystem type is C<fstype>, for
771 example C<ext3>.
772
773 =item $h->mount ($device, $mountpoint);
774
775 Mount a guest disk at a position in the filesystem.  Block devices
776 are named C</dev/sda>, C</dev/sdb> and so on, as they were added to
777 the guest.  If those block devices contain partitions, they will have
778 the usual names (eg. C</dev/sda1>).  Also LVM C</dev/VG/LV>-style
779 names can be used.
780
781 The rules are the same as for L<mount(2)>:  A filesystem must
782 first be mounted on C</> before others can be mounted.  Other
783 filesystems can only be mounted on directories which already
784 exist.
785
786 The mounted filesystem is writable, if we have sufficient permissions
787 on the underlying device.
788
789 The filesystem options C<sync> and C<noatime> are set with this
790 call, in order to improve reliability.
791
792 =item $h->mount_options ($options, $device, $mountpoint);
793
794 This is the same as the C<$h-E<gt>mount> command, but it
795 allows you to set the mount options as for the
796 L<mount(8)> I<-o> flag.
797
798 =item $h->mount_ro ($device, $mountpoint);
799
800 This is the same as the C<$h-E<gt>mount> command, but it
801 mounts the filesystem with the read-only (I<-o ro>) flag.
802
803 =item $h->mount_vfs ($options, $vfstype, $device, $mountpoint);
804
805 This is the same as the C<$h-E<gt>mount> command, but it
806 allows you to set both the mount options and the vfstype
807 as for the L<mount(8)> I<-o> and I<-t> flags.
808
809 =item @devices = $h->mounts ();
810
811 This returns the list of currently mounted filesystems.  It returns
812 the list of devices (eg. C</dev/sda1>, C</dev/VG/LV>).
813
814 Some internal mounts are not shown.
815
816 =item $h->mv ($src, $dest);
817
818 This moves a file from C<src> to C<dest> where C<dest> is
819 either a destination filename or destination directory.
820
821 =item $h->ping_daemon ();
822
823 This is a test probe into the guestfs daemon running inside
824 the qemu subprocess.  Calling this function checks that the
825 daemon responds to the ping message, without affecting the daemon
826 or attached block device(s) in any other way.
827
828 =item $h->pvcreate ($device);
829
830 This creates an LVM physical volume on the named C<device>,
831 where C<device> should usually be a partition name such
832 as C</dev/sda1>.
833
834 =item $h->pvremove ($device);
835
836 This wipes a physical volume C<device> so that LVM will no longer
837 recognise it.
838
839 The implementation uses the C<pvremove> command which refuses to
840 wipe physical volumes that contain any volume groups, so you have
841 to remove those first.
842
843 =item @physvols = $h->pvs ();
844
845 List all the physical volumes detected.  This is the equivalent
846 of the L<pvs(8)> command.
847
848 This returns a list of just the device names that contain
849 PVs (eg. C</dev/sda2>).
850
851 See also C<$h-E<gt>pvs_full>.
852
853 =item @physvols = $h->pvs_full ();
854
855 List all the physical volumes detected.  This is the equivalent
856 of the L<pvs(8)> command.  The "full" version includes all fields.
857
858 =item @lines = $h->read_lines ($path);
859
860 Return the contents of the file named C<path>.
861
862 The file contents are returned as a list of lines.  Trailing
863 C<LF> and C<CRLF> character sequences are I<not> returned.
864
865 Note that this function cannot correctly handle binary files
866 (specifically, files containing C<\0> character which is treated
867 as end of line).  For those you need to use the C<$h-E<gt>read_file>
868 function which has a more complex interface.
869
870 =item $h->rm ($path);
871
872 Remove the single file C<path>.
873
874 =item $h->rm_rf ($path);
875
876 Remove the file or directory C<path>, recursively removing the
877 contents if its a directory.  This is like the C<rm -rf> shell
878 command.
879
880 =item $h->rmdir ($path);
881
882 Remove the single directory C<path>.
883
884 =item $h->set_append ($append);
885
886 This function is used to add additional options to the
887 guest kernel command line.
888
889 The default is C<NULL> unless overridden by setting
890 C<LIBGUESTFS_APPEND> environment variable.
891
892 Setting C<append> to C<NULL> means I<no> additional options
893 are passed (libguestfs always adds a few of its own).
894
895 =item $h->set_autosync ($autosync);
896
897 If C<autosync> is true, this enables autosync.  Libguestfs will make a
898 best effort attempt to run C<$h-E<gt>umount_all> followed by
899 C<$h-E<gt>sync> when the handle is closed
900 (also if the program exits without closing handles).
901
902 This is disabled by default (except in guestfish where it is
903 enabled by default).
904
905 =item $h->set_busy ();
906
907 This sets the state to C<BUSY>.  This is only used when implementing
908 actions using the low-level API.
909
910 For more information on states, see L<guestfs(3)>.
911
912 =item $h->set_e2label ($device, $label);
913
914 This sets the ext2/3/4 filesystem label of the filesystem on
915 C<device> to C<label>.  Filesystem labels are limited to
916 16 characters.
917
918 You can use either C<$h-E<gt>tune2fs_l> or C<$h-E<gt>get_e2label>
919 to return the existing label on a filesystem.
920
921 =item $h->set_e2uuid ($device, $uuid);
922
923 This sets the ext2/3/4 filesystem UUID of the filesystem on
924 C<device> to C<uuid>.  The format of the UUID and alternatives
925 such as C<clear>, C<random> and C<time> are described in the
926 L<tune2fs(8)> manpage.
927
928 You can use either C<$h-E<gt>tune2fs_l> or C<$h-E<gt>get_e2uuid>
929 to return the existing UUID of a filesystem.
930
931 =item $h->set_path ($path);
932
933 Set the path that libguestfs searches for kernel and initrd.img.
934
935 The default is C<$libdir/guestfs> unless overridden by setting
936 C<LIBGUESTFS_PATH> environment variable.
937
938 Setting C<path> to C<NULL> restores the default path.
939
940 =item $h->set_qemu ($qemu);
941
942 Set the qemu binary that we will use.
943
944 The default is chosen when the library was compiled by the
945 configure script.
946
947 You can also override this by setting the C<LIBGUESTFS_QEMU>
948 environment variable.
949
950 Setting C<qemu> to C<NULL> restores the default qemu binary.
951
952 =item $h->set_ready ();
953
954 This sets the state to C<READY>.  This is only used when implementing
955 actions using the low-level API.
956
957 For more information on states, see L<guestfs(3)>.
958
959 =item $h->set_verbose ($verbose);
960
961 If C<verbose> is true, this turns on verbose messages (to C<stderr>).
962
963 Verbose messages are disabled unless the environment variable
964 C<LIBGUESTFS_DEBUG> is defined and set to C<1>.
965
966 =item $h->sfdisk ($device, $cyls, $heads, $sectors, \@lines);
967
968 This is a direct interface to the L<sfdisk(8)> program for creating
969 partitions on block devices.
970
971 C<device> should be a block device, for example C</dev/sda>.
972
973 C<cyls>, C<heads> and C<sectors> are the number of cylinders, heads
974 and sectors on the device, which are passed directly to sfdisk as
975 the I<-C>, I<-H> and I<-S> parameters.  If you pass C<0> for any
976 of these, then the corresponding parameter is omitted.  Usually for
977 'large' disks, you can just pass C<0> for these, but for small
978 (floppy-sized) disks, sfdisk (or rather, the kernel) cannot work
979 out the right geometry and you will need to tell it.
980
981 C<lines> is a list of lines that we feed to C<sfdisk>.  For more
982 information refer to the L<sfdisk(8)> manpage.
983
984 To create a single partition occupying the whole disk, you would
985 pass C<lines> as a single element list, when the single element being
986 the string C<,> (comma).
987
988 B<This command is dangerous.  Without careful use you
989 can easily destroy all your data>.
990
991 =item %statbuf = $h->stat ($path);
992
993 Returns file information for the given C<path>.
994
995 This is the same as the C<stat(2)> system call.
996
997 =item %statbuf = $h->statvfs ($path);
998
999 Returns file system statistics for any mounted file system.
1000 C<path> should be a file or directory in the mounted file system
1001 (typically it is the mount point itself, but it doesn't need to be).
1002
1003 This is the same as the C<statvfs(2)> system call.
1004
1005 =item @stringsout = $h->strings ($path);
1006
1007 This runs the L<strings(1)> command on a file and returns
1008 the list of printable strings found.
1009
1010 Because of the message protocol, there is a transfer limit 
1011 of somewhere between 2MB and 4MB.  To transfer large files you should use
1012 FTP.
1013
1014 =item @stringsout = $h->strings_e ($encoding, $path);
1015
1016 This is like the C<$h-E<gt>strings> command, but allows you to
1017 specify the encoding.
1018
1019 See the L<strings(1)> manpage for the full list of encodings.
1020
1021 Commonly useful encodings are C<l> (lower case L) which will
1022 show strings inside Windows/x86 files.
1023
1024 The returned strings are transcoded to UTF-8.
1025
1026 Because of the message protocol, there is a transfer limit 
1027 of somewhere between 2MB and 4MB.  To transfer large files you should use
1028 FTP.
1029
1030 =item $h->sync ();
1031
1032 This syncs the disk, so that any writes are flushed through to the
1033 underlying disk image.
1034
1035 You should always call this if you have modified a disk image, before
1036 closing the handle.
1037
1038 =item $h->tar_in ($tarfile, $directory);
1039
1040 This command uploads and unpacks local file C<tarfile> (an
1041 I<uncompressed> tar file) into C<directory>.
1042
1043 To upload a compressed tarball, use C<$h-E<gt>tgz_in>.
1044
1045 =item $h->tar_out ($directory, $tarfile);
1046
1047 This command packs the contents of C<directory> and downloads
1048 it to local file C<tarfile>.
1049
1050 To download a compressed tarball, use C<$h-E<gt>tgz_out>.
1051
1052 =item $h->tgz_in ($tarball, $directory);
1053
1054 This command uploads and unpacks local file C<tarball> (a
1055 I<gzip compressed> tar file) into C<directory>.
1056
1057 To upload an uncompressed tarball, use C<$h-E<gt>tar_in>.
1058
1059 =item $h->tgz_out ($directory, $tarball);
1060
1061 This command packs the contents of C<directory> and downloads
1062 it to local file C<tarball>.
1063
1064 To download an uncompressed tarball, use C<$h-E<gt>tar_out>.
1065
1066 =item $h->touch ($path);
1067
1068 Touch acts like the L<touch(1)> command.  It can be used to
1069 update the timestamps on a file, or, if the file does not exist,
1070 to create a new zero-length file.
1071
1072 =item %superblock = $h->tune2fs_l ($device);
1073
1074 This returns the contents of the ext2, ext3 or ext4 filesystem
1075 superblock on C<device>.
1076
1077 It is the same as running C<tune2fs -l device>.  See L<tune2fs(8)>
1078 manpage for more details.  The list of fields returned isn't
1079 clearly defined, and depends on both the version of C<tune2fs>
1080 that libguestfs was built against, and the filesystem itself.
1081
1082 =item $h->umount ($pathordevice);
1083
1084 This unmounts the given filesystem.  The filesystem may be
1085 specified either by its mountpoint (path) or the device which
1086 contains the filesystem.
1087
1088 =item $h->umount_all ();
1089
1090 This unmounts all mounted filesystems.
1091
1092 Some internal mounts are not unmounted by this call.
1093
1094 =item $h->upload ($filename, $remotefilename);
1095
1096 Upload local file C<filename> to C<remotefilename> on the
1097 filesystem.
1098
1099 C<filename> can also be a named pipe.
1100
1101 See also C<$h-E<gt>download>.
1102
1103 =item $h->vgcreate ($volgroup, \@physvols);
1104
1105 This creates an LVM volume group called C<volgroup>
1106 from the non-empty list of physical volumes C<physvols>.
1107
1108 =item $h->vgremove ($vgname);
1109
1110 Remove an LVM volume group C<vgname>, (for example C<VG>).
1111
1112 This also forcibly removes all logical volumes in the volume
1113 group (if any).
1114
1115 =item @volgroups = $h->vgs ();
1116
1117 List all the volumes groups detected.  This is the equivalent
1118 of the L<vgs(8)> command.
1119
1120 This returns a list of just the volume group names that were
1121 detected (eg. C<VolGroup00>).
1122
1123 See also C<$h-E<gt>vgs_full>.
1124
1125 =item @volgroups = $h->vgs_full ();
1126
1127 List all the volumes groups detected.  This is the equivalent
1128 of the L<vgs(8)> command.  The "full" version includes all fields.
1129
1130 =item $h->wait_ready ();
1131
1132 Internally libguestfs is implemented by running a virtual machine
1133 using L<qemu(1)>.
1134
1135 You should call this after C<$h-E<gt>launch> to wait for the launch
1136 to complete.
1137
1138 =item $h->write_file ($path, $content, $size);
1139
1140 This call creates a file called C<path>.  The contents of the
1141 file is the string C<content> (which can contain any 8 bit data),
1142 with length C<size>.
1143
1144 As a special case, if C<size> is C<0>
1145 then the length is calculated using C<strlen> (so in this case
1146 the content cannot contain embedded ASCII NULs).
1147
1148 I<NB.> Owing to a bug, writing content containing ASCII NUL
1149 characters does I<not> work, even if the length is specified.
1150 We hope to resolve this bug in a future version.  In the meantime
1151 use C<$h-E<gt>upload>.
1152
1153 Because of the message protocol, there is a transfer limit 
1154 of somewhere between 2MB and 4MB.  To transfer large files you should use
1155 FTP.
1156
1157 =item $h->zero ($device);
1158
1159 This command writes zeroes over the first few blocks of C<device>.
1160
1161 How many blocks are zeroed isn't specified (but it's I<not> enough
1162 to securely wipe the device).  It should be sufficient to remove
1163 any partition tables, filesystem superblocks and so on.
1164
1165 =cut
1166
1167 1;
1168
1169 =back
1170
1171 =head1 COPYRIGHT
1172
1173 Copyright (C) 2009 Red Hat Inc.
1174
1175 =head1 LICENSE
1176
1177 Please see the file COPYING.LIB for the full license.
1178
1179 =head1 SEE ALSO
1180
1181 L<guestfs(3)>, L<guestfish(1)>.
1182
1183 =cut