Added aug-ls (generated code).
[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 files 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 $content = $h->cat (path);
249
250 Return the contents of the file named C<path>.
251
252 Note that this function cannot correctly handle binary files
253 (specifically, files containing C<\0> character which is treated
254 as end of string).  For those you need to use the C<$h-E<gt>read_file>
255 function which has a more complex interface.
256
257 Because of the message protocol, there is a transfer limit 
258 of somewhere between 2MB and 4MB.  To transfer large files you should use
259 FTP.
260
261 =item $h->config (qemuparam, qemuvalue);
262
263 This can be used to add arbitrary qemu command line parameters
264 of the form C<-param value>.  Actually it's not quite arbitrary - we
265 prevent you from setting some parameters which would interfere with
266 parameters that we use.
267
268 The first character of C<param> string must be a C<-> (dash).
269
270 C<value> can be NULL.
271
272 =item $autosync = $h->get_autosync ();
273
274 Get the autosync flag.
275
276 =item $path = $h->get_path ();
277
278 Return the current search path.
279
280 This is always non-NULL.  If it wasn't set already, then this will
281 return the default path.
282
283 =item $verbose = $h->get_verbose ();
284
285 This returns the verbose messages flag.
286
287 =item $h->kill_subprocess ();
288
289 This kills the qemu subprocess.  You should never need to call this.
290
291 =item $h->launch ();
292
293 Internally libguestfs is implemented by running a virtual machine
294 using L<qemu(1)>.
295
296 You should call this after configuring the handle
297 (eg. adding drives) but before performing any actions.
298
299 =item @devices = $h->list_devices ();
300
301 List all the block devices.
302
303 The full block device names are returned, eg. C</dev/sda>
304
305 =item @partitions = $h->list_partitions ();
306
307 List all the partitions detected on all block devices.
308
309 The full partition device names are returned, eg. C</dev/sda1>
310
311 This does not return logical volumes.  For that you will need to
312 call C<$h-E<gt>lvs>.
313
314 =item $listing = $h->ll (directory);
315
316 List the files in C<directory> (relative to the root directory,
317 there is no cwd) in the format of 'ls -la'.
318
319 This command is mostly useful for interactive sessions.  It
320 is I<not> intended that you try to parse the output string.
321
322 =item @listing = $h->ls (directory);
323
324 List the files in C<directory> (relative to the root directory,
325 there is no cwd).  The '.' and '..' entries are not returned, but
326 hidden files are shown.
327
328 This command is mostly useful for interactive sessions.  Programs
329 should probably use C<$h-E<gt>readdir> instead.
330
331 =item @logvols = $h->lvs ();
332
333 List all the logical volumes detected.  This is the equivalent
334 of the L<lvs(8)> command.
335
336 This returns a list of the logical volume device names
337 (eg. C</dev/VolGroup00/LogVol00>).
338
339 See also C<$h-E<gt>lvs_full>.
340
341 =item @logvols = $h->lvs_full ();
342
343 List all the logical volumes detected.  This is the equivalent
344 of the L<lvs(8)> command.  The "full" version includes all fields.
345
346 =item $h->mount (device, mountpoint);
347
348 Mount a guest disk at a position in the filesystem.  Block devices
349 are named C</dev/sda>, C</dev/sdb> and so on, as they were added to
350 the guest.  If those block devices contain partitions, they will have
351 the usual names (eg. C</dev/sda1>).  Also LVM C</dev/VG/LV>-style
352 names can be used.
353
354 The rules are the same as for L<mount(2)>:  A filesystem must
355 first be mounted on C</> before others can be mounted.  Other
356 filesystems can only be mounted on directories which already
357 exist.
358
359 The mounted filesystem is writable, if we have sufficient permissions
360 on the underlying device.
361
362 The filesystem options C<sync> and C<noatime> are set with this
363 call, in order to improve reliability.
364
365 =item @physvols = $h->pvs ();
366
367 List all the physical volumes detected.  This is the equivalent
368 of the L<pvs(8)> command.
369
370 This returns a list of just the device names that contain
371 PVs (eg. C</dev/sda2>).
372
373 See also C<$h-E<gt>pvs_full>.
374
375 =item @physvols = $h->pvs_full ();
376
377 List all the physical volumes detected.  This is the equivalent
378 of the L<pvs(8)> command.  The "full" version includes all fields.
379
380 =item @lines = $h->read_lines (path);
381
382 Return the contents of the file named C<path>.
383
384 The file contents are returned as a list of lines.  Trailing
385 C<LF> and C<CRLF> character sequences are I<not> returned.
386
387 Note that this function cannot correctly handle binary files
388 (specifically, files containing C<\0> character which is treated
389 as end of line).  For those you need to use the C<$h-E<gt>read_file>
390 function which has a more complex interface.
391
392 =item $h->set_autosync (autosync);
393
394 If C<autosync> is true, this enables autosync.  Libguestfs will make a
395 best effort attempt to run C<$h-E<gt>sync> when the handle is closed
396 (also if the program exits without closing handles).
397
398 =item $h->set_path (path);
399
400 Set the path that libguestfs searches for kernel and initrd.img.
401
402 The default is C<$libdir/guestfs> unless overridden by setting
403 C<LIBGUESTFS_PATH> environment variable.
404
405 The string C<path> is stashed in the libguestfs handle, so the caller
406 must make sure it remains valid for the lifetime of the handle.
407
408 Setting C<path> to C<NULL> restores the default path.
409
410 =item $h->set_verbose (verbose);
411
412 If C<verbose> is true, this turns on verbose messages (to C<stderr>).
413
414 Verbose messages are disabled unless the environment variable
415 C<LIBGUESTFS_DEBUG> is defined and set to C<1>.
416
417 =item $h->sync ();
418
419 This syncs the disk, so that any writes are flushed through to the
420 underlying disk image.
421
422 You should always call this if you have modified a disk image, before
423 closing the handle.
424
425 =item $h->touch (path);
426
427 Touch acts like the L<touch(1)> command.  It can be used to
428 update the timestamps on a file, or, if the file does not exist,
429 to create a new zero-length file.
430
431 =item @volgroups = $h->vgs ();
432
433 List all the volumes groups detected.  This is the equivalent
434 of the L<vgs(8)> command.
435
436 This returns a list of just the volume group names that were
437 detected (eg. C<VolGroup00>).
438
439 See also C<$h-E<gt>vgs_full>.
440
441 =item @volgroups = $h->vgs_full ();
442
443 List all the volumes groups detected.  This is the equivalent
444 of the L<vgs(8)> command.  The "full" version includes all fields.
445
446 =item $h->wait_ready ();
447
448 Internally libguestfs is implemented by running a virtual machine
449 using L<qemu(1)>.
450
451 You should call this after C<$h-E<gt>launch> to wait for the launch
452 to complete.
453
454 =cut
455
456 1;
457
458 =back
459
460 =head1 COPYRIGHT
461
462 Copyright (C) 2009 Red Hat Inc.
463
464 =head1 LICENSE
465
466 Please see the file COPYING.LIB for the full license.
467
468 =head1 SEE ALSO
469
470 L<guestfs(3)>, L<guestfish(1)>.
471
472 =cut