bd2d96169569ac823eea7ca14849db4d54a29e7a
[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 C<$PATH> environment variable will contain at least
409 C</usr/bin> and C</bin>.  If you require a program from
410 another location, you should provide the full path in the
411 first parameter.
412
413 Shared libraries and data files required by the program
414 must be available on filesystems which are mounted in the
415 correct places.  It is the caller's responsibility to ensure
416 all filesystems that are needed are mounted at the right
417 locations.
418
419 =item @lines = $h->command_lines (\@arguments);
420
421 This is the same as C<$h-E<gt>command>, but splits the
422 result into a list of lines.
423
424 =item $h->config ($qemuparam, $qemuvalue);
425
426 This can be used to add arbitrary qemu command line parameters
427 of the form C<-param value>.  Actually it's not quite arbitrary - we
428 prevent you from setting some parameters which would interfere with
429 parameters that we use.
430
431 The first character of C<param> string must be a C<-> (dash).
432
433 C<value> can be NULL.
434
435 =item $result = $h->debug ($subcmd, \@extraargs);
436
437 The C<$h-E<gt>debug> command exposes some internals of
438 C<guestfsd> (the guestfs daemon) that runs inside the
439 qemu subprocess.
440
441 There is no comprehensive help for this command.  You have
442 to look at the file C<daemon/debug.c> in the libguestfs source
443 to find out what you can do.
444
445 =item $h->download ($remotefilename, $filename);
446
447 Download file C<remotefilename> and save it as C<filename>
448 on the local machine.
449
450 C<filename> can also be a named pipe.
451
452 See also C<$h-E<gt>upload>, C<$h-E<gt>cat>.
453
454 =item $existsflag = $h->exists ($path);
455
456 This returns C<true> if and only if there is a file, directory
457 (or anything) with the given C<path> name.
458
459 See also C<$h-E<gt>is_file>, C<$h-E<gt>is_dir>, C<$h-E<gt>stat>.
460
461 =item $description = $h->file ($path);
462
463 This call uses the standard L<file(1)> command to determine
464 the type or contents of the file.  This also works on devices,
465 for example to find out whether a partition contains a filesystem.
466
467 The exact command which runs is C<file -bsL path>.  Note in
468 particular that the filename is not prepended to the output
469 (the C<-b> option).
470
471 =item $autosync = $h->get_autosync ();
472
473 Get the autosync flag.
474
475 =item $path = $h->get_path ();
476
477 Return the current search path.
478
479 This is always non-NULL.  If it wasn't set already, then this will
480 return the default path.
481
482 =item $qemu = $h->get_qemu ();
483
484 Return the current qemu binary.
485
486 This is always non-NULL.  If it wasn't set already, then this will
487 return the default qemu binary name.
488
489 =item $state = $h->get_state ();
490
491 This returns the current state as an opaque integer.  This is
492 only useful for printing debug and internal error messages.
493
494 For more information on states, see L<guestfs(3)>.
495
496 =item $verbose = $h->get_verbose ();
497
498 This returns the verbose messages flag.
499
500 =item $busy = $h->is_busy ();
501
502 This returns true iff this handle is busy processing a command
503 (in the C<BUSY> state).
504
505 For more information on states, see L<guestfs(3)>.
506
507 =item $config = $h->is_config ();
508
509 This returns true iff this handle is being configured
510 (in the C<CONFIG> state).
511
512 For more information on states, see L<guestfs(3)>.
513
514 =item $dirflag = $h->is_dir ($path);
515
516 This returns C<true> if and only if there is a directory
517 with the given C<path> name.  Note that it returns false for
518 other objects like files.
519
520 See also C<$h-E<gt>stat>.
521
522 =item $fileflag = $h->is_file ($path);
523
524 This returns C<true> if and only if there is a file
525 with the given C<path> name.  Note that it returns false for
526 other objects like directories.
527
528 See also C<$h-E<gt>stat>.
529
530 =item $launching = $h->is_launching ();
531
532 This returns true iff this handle is launching the subprocess
533 (in the C<LAUNCHING> state).
534
535 For more information on states, see L<guestfs(3)>.
536
537 =item $ready = $h->is_ready ();
538
539 This returns true iff this handle is ready to accept commands
540 (in the C<READY> state).
541
542 For more information on states, see L<guestfs(3)>.
543
544 =item $h->kill_subprocess ();
545
546 This kills the qemu subprocess.  You should never need to call this.
547
548 =item $h->launch ();
549
550 Internally libguestfs is implemented by running a virtual machine
551 using L<qemu(1)>.
552
553 You should call this after configuring the handle
554 (eg. adding drives) but before performing any actions.
555
556 =item @devices = $h->list_devices ();
557
558 List all the block devices.
559
560 The full block device names are returned, eg. C</dev/sda>
561
562 =item @partitions = $h->list_partitions ();
563
564 List all the partitions detected on all block devices.
565
566 The full partition device names are returned, eg. C</dev/sda1>
567
568 This does not return logical volumes.  For that you will need to
569 call C<$h-E<gt>lvs>.
570
571 =item $listing = $h->ll ($directory);
572
573 List the files in C<directory> (relative to the root directory,
574 there is no cwd) in the format of 'ls -la'.
575
576 This command is mostly useful for interactive sessions.  It
577 is I<not> intended that you try to parse the output string.
578
579 =item @listing = $h->ls ($directory);
580
581 List the files in C<directory> (relative to the root directory,
582 there is no cwd).  The '.' and '..' entries are not returned, but
583 hidden files are shown.
584
585 This command is mostly useful for interactive sessions.  Programs
586 should probably use C<$h-E<gt>readdir> instead.
587
588 =item %statbuf = $h->lstat ($path);
589
590 Returns file information for the given C<path>.
591
592 This is the same as C<$h-E<gt>stat> except that if C<path>
593 is a symbolic link, then the link is stat-ed, not the file it
594 refers to.
595
596 This is the same as the C<lstat(2)> system call.
597
598 =item $h->lvcreate ($logvol, $volgroup, $mbytes);
599
600 This creates an LVM volume group called C<logvol>
601 on the volume group C<volgroup>, with C<size> megabytes.
602
603 =item $h->lvm_remove_all ();
604
605 This command removes all LVM logical volumes, volume groups
606 and physical volumes.
607
608 B<This command is dangerous.  Without careful use you
609 can easily destroy all your data>.
610
611 =item $h->lvremove ($device);
612
613 Remove an LVM logical volume C<device>, where C<device> is
614 the path to the LV, such as C</dev/VG/LV>.
615
616 You can also remove all LVs in a volume group by specifying
617 the VG name, C</dev/VG>.
618
619 =item @logvols = $h->lvs ();
620
621 List all the logical volumes detected.  This is the equivalent
622 of the L<lvs(8)> command.
623
624 This returns a list of the logical volume device names
625 (eg. C</dev/VolGroup00/LogVol00>).
626
627 See also C<$h-E<gt>lvs_full>.
628
629 =item @logvols = $h->lvs_full ();
630
631 List all the logical volumes detected.  This is the equivalent
632 of the L<lvs(8)> command.  The "full" version includes all fields.
633
634 =item $h->mkdir ($path);
635
636 Create a directory named C<path>.
637
638 =item $h->mkdir_p ($path);
639
640 Create a directory named C<path>, creating any parent directories
641 as necessary.  This is like the C<mkdir -p> shell command.
642
643 =item $h->mkfs ($fstype, $device);
644
645 This creates a filesystem on C<device> (usually a partition
646 of LVM logical volume).  The filesystem type is C<fstype>, for
647 example C<ext3>.
648
649 =item $h->mount ($device, $mountpoint);
650
651 Mount a guest disk at a position in the filesystem.  Block devices
652 are named C</dev/sda>, C</dev/sdb> and so on, as they were added to
653 the guest.  If those block devices contain partitions, they will have
654 the usual names (eg. C</dev/sda1>).  Also LVM C</dev/VG/LV>-style
655 names can be used.
656
657 The rules are the same as for L<mount(2)>:  A filesystem must
658 first be mounted on C</> before others can be mounted.  Other
659 filesystems can only be mounted on directories which already
660 exist.
661
662 The mounted filesystem is writable, if we have sufficient permissions
663 on the underlying device.
664
665 The filesystem options C<sync> and C<noatime> are set with this
666 call, in order to improve reliability.
667
668 =item $h->mount_options ($options, $device, $mountpoint);
669
670 This is the same as the C<$h-E<gt>mount> command, but it
671 allows you to set the mount options as for the
672 L<mount(8)> I<-o> flag.
673
674 =item $h->mount_ro ($device, $mountpoint);
675
676 This is the same as the C<$h-E<gt>mount> command, but it
677 mounts the filesystem with the read-only (I<-o ro>) flag.
678
679 =item $h->mount_vfs ($options, $vfstype, $device, $mountpoint);
680
681 This is the same as the C<$h-E<gt>mount> command, but it
682 allows you to set both the mount options and the vfstype
683 as for the L<mount(8)> I<-o> and I<-t> flags.
684
685 =item @devices = $h->mounts ();
686
687 This returns the list of currently mounted filesystems.  It returns
688 the list of devices (eg. C</dev/sda1>, C</dev/VG/LV>).
689
690 Some internal mounts are not shown.
691
692 =item $h->pvcreate ($device);
693
694 This creates an LVM physical volume on the named C<device>,
695 where C<device> should usually be a partition name such
696 as C</dev/sda1>.
697
698 =item $h->pvremove ($device);
699
700 This wipes a physical volume C<device> so that LVM will no longer
701 recognise it.
702
703 The implementation uses the C<pvremove> command which refuses to
704 wipe physical volumes that contain any volume groups, so you have
705 to remove those first.
706
707 =item @physvols = $h->pvs ();
708
709 List all the physical volumes detected.  This is the equivalent
710 of the L<pvs(8)> command.
711
712 This returns a list of just the device names that contain
713 PVs (eg. C</dev/sda2>).
714
715 See also C<$h-E<gt>pvs_full>.
716
717 =item @physvols = $h->pvs_full ();
718
719 List all the physical volumes detected.  This is the equivalent
720 of the L<pvs(8)> command.  The "full" version includes all fields.
721
722 =item @lines = $h->read_lines ($path);
723
724 Return the contents of the file named C<path>.
725
726 The file contents are returned as a list of lines.  Trailing
727 C<LF> and C<CRLF> character sequences are I<not> returned.
728
729 Note that this function cannot correctly handle binary files
730 (specifically, files containing C<\0> character which is treated
731 as end of line).  For those you need to use the C<$h-E<gt>read_file>
732 function which has a more complex interface.
733
734 =item $h->rm ($path);
735
736 Remove the single file C<path>.
737
738 =item $h->rm_rf ($path);
739
740 Remove the file or directory C<path>, recursively removing the
741 contents if its a directory.  This is like the C<rm -rf> shell
742 command.
743
744 =item $h->rmdir ($path);
745
746 Remove the single directory C<path>.
747
748 =item $h->set_autosync ($autosync);
749
750 If C<autosync> is true, this enables autosync.  Libguestfs will make a
751 best effort attempt to run C<$h-E<gt>sync> when the handle is closed
752 (also if the program exits without closing handles).
753
754 =item $h->set_busy ();
755
756 This sets the state to C<BUSY>.  This is only used when implementing
757 actions using the low-level API.
758
759 For more information on states, see L<guestfs(3)>.
760
761 =item $h->set_path ($path);
762
763 Set the path that libguestfs searches for kernel and initrd.img.
764
765 The default is C<$libdir/guestfs> unless overridden by setting
766 C<LIBGUESTFS_PATH> environment variable.
767
768 The string C<path> is stashed in the libguestfs handle, so the caller
769 must make sure it remains valid for the lifetime of the handle.
770
771 Setting C<path> to C<NULL> restores the default path.
772
773 =item $h->set_qemu ($qemu);
774
775 Set the qemu binary that we will use.
776
777 The default is chosen when the library was compiled by the
778 configure script.
779
780 You can also override this by setting the C<LIBGUESTFS_QEMU>
781 environment variable.
782
783 The string C<qemu> is stashed in the libguestfs handle, so the caller
784 must make sure it remains valid for the lifetime of the handle.
785
786 Setting C<qemu> to C<NULL> restores the default qemu binary.
787
788 =item $h->set_ready ();
789
790 This sets the state to C<READY>.  This is only used when implementing
791 actions using the low-level API.
792
793 For more information on states, see L<guestfs(3)>.
794
795 =item $h->set_verbose ($verbose);
796
797 If C<verbose> is true, this turns on verbose messages (to C<stderr>).
798
799 Verbose messages are disabled unless the environment variable
800 C<LIBGUESTFS_DEBUG> is defined and set to C<1>.
801
802 =item $h->sfdisk ($device, $cyls, $heads, $sectors, \@lines);
803
804 This is a direct interface to the L<sfdisk(8)> program for creating
805 partitions on block devices.
806
807 C<device> should be a block device, for example C</dev/sda>.
808
809 C<cyls>, C<heads> and C<sectors> are the number of cylinders, heads
810 and sectors on the device, which are passed directly to sfdisk as
811 the I<-C>, I<-H> and I<-S> parameters.  If you pass C<0> for any
812 of these, then the corresponding parameter is omitted.  Usually for
813 'large' disks, you can just pass C<0> for these, but for small
814 (floppy-sized) disks, sfdisk (or rather, the kernel) cannot work
815 out the right geometry and you will need to tell it.
816
817 C<lines> is a list of lines that we feed to C<sfdisk>.  For more
818 information refer to the L<sfdisk(8)> manpage.
819
820 To create a single partition occupying the whole disk, you would
821 pass C<lines> as a single element list, when the single element being
822 the string C<,> (comma).
823
824 B<This command is dangerous.  Without careful use you
825 can easily destroy all your data>.
826
827 =item %statbuf = $h->stat ($path);
828
829 Returns file information for the given C<path>.
830
831 This is the same as the C<stat(2)> system call.
832
833 =item %statbuf = $h->statvfs ($path);
834
835 Returns file system statistics for any mounted file system.
836 C<path> should be a file or directory in the mounted file system
837 (typically it is the mount point itself, but it doesn't need to be).
838
839 This is the same as the C<statvfs(2)> system call.
840
841 =item $h->sync ();
842
843 This syncs the disk, so that any writes are flushed through to the
844 underlying disk image.
845
846 You should always call this if you have modified a disk image, before
847 closing the handle.
848
849 =item $h->tar_in ($tarfile, $directory);
850
851 This command uploads and unpacks local file C<tarfile> (an
852 I<uncompressed> tar file) into C<directory>.
853
854 To upload a compressed tarball, use C<$h-E<gt>tgz_in>.
855
856 =item $h->tar_out ($directory, $tarfile);
857
858 This command packs the contents of C<directory> and downloads
859 it to local file C<tarfile>.
860
861 To download a compressed tarball, use C<$h-E<gt>tgz_out>.
862
863 =item $h->tgz_in ($tarball, $directory);
864
865 This command uploads and unpacks local file C<tarball> (a
866 I<gzip compressed> tar file) into C<directory>.
867
868 To upload an uncompressed tarball, use C<$h-E<gt>tar_in>.
869
870 =item $h->tgz_out ($directory, $tarball);
871
872 This command packs the contents of C<directory> and downloads
873 it to local file C<tarball>.
874
875 To download an uncompressed tarball, use C<$h-E<gt>tar_out>.
876
877 =item $h->touch ($path);
878
879 Touch acts like the L<touch(1)> command.  It can be used to
880 update the timestamps on a file, or, if the file does not exist,
881 to create a new zero-length file.
882
883 =item %superblock = $h->tune2fs_l ($device);
884
885 This returns the contents of the ext2, ext3 or ext4 filesystem
886 superblock on C<device>.
887
888 It is the same as running C<tune2fs -l device>.  See L<tune2fs(8)>
889 manpage for more details.  The list of fields returned isn't
890 clearly defined, and depends on both the version of C<tune2fs>
891 that libguestfs was built against, and the filesystem itself.
892
893 =item $h->umount ($pathordevice);
894
895 This unmounts the given filesystem.  The filesystem may be
896 specified either by its mountpoint (path) or the device which
897 contains the filesystem.
898
899 =item $h->umount_all ();
900
901 This unmounts all mounted filesystems.
902
903 Some internal mounts are not unmounted by this call.
904
905 =item $h->upload ($filename, $remotefilename);
906
907 Upload local file C<filename> to C<remotefilename> on the
908 filesystem.
909
910 C<filename> can also be a named pipe.
911
912 See also C<$h-E<gt>download>.
913
914 =item $h->vgcreate ($volgroup, \@physvols);
915
916 This creates an LVM volume group called C<volgroup>
917 from the non-empty list of physical volumes C<physvols>.
918
919 =item $h->vgremove ($vgname);
920
921 Remove an LVM volume group C<vgname>, (for example C<VG>).
922
923 This also forcibly removes all logical volumes in the volume
924 group (if any).
925
926 =item @volgroups = $h->vgs ();
927
928 List all the volumes groups detected.  This is the equivalent
929 of the L<vgs(8)> command.
930
931 This returns a list of just the volume group names that were
932 detected (eg. C<VolGroup00>).
933
934 See also C<$h-E<gt>vgs_full>.
935
936 =item @volgroups = $h->vgs_full ();
937
938 List all the volumes groups detected.  This is the equivalent
939 of the L<vgs(8)> command.  The "full" version includes all fields.
940
941 =item $h->wait_ready ();
942
943 Internally libguestfs is implemented by running a virtual machine
944 using L<qemu(1)>.
945
946 You should call this after C<$h-E<gt>launch> to wait for the launch
947 to complete.
948
949 =item $h->write_file ($path, $content, $size);
950
951 This call creates a file called C<path>.  The contents of the
952 file is the string C<content> (which can contain any 8 bit data),
953 with length C<size>.
954
955 As a special case, if C<size> is C<0>
956 then the length is calculated using C<strlen> (so in this case
957 the content cannot contain embedded ASCII NULs).
958
959 Because of the message protocol, there is a transfer limit 
960 of somewhere between 2MB and 4MB.  To transfer large files you should use
961 FTP.
962
963 =cut
964
965 1;
966
967 =back
968
969 =head1 COPYRIGHT
970
971 Copyright (C) 2009 Red Hat Inc.
972
973 =head1 LICENSE
974
975 Please see the file COPYING.LIB for the full license.
976
977 =head1 SEE ALSO
978
979 L<guestfs(3)>, L<guestfish(1)>.
980
981 =cut