Command line and interactive shell parsing, prompts etc.
[libguestfs.git] / guestfs.pod
1 =encoding utf8
2
3 =head1 NAME
4
5 guestfs - Library for accessing and modifying virtual machine images
6
7 =head1 SYNOPSIS
8
9  #include <guestfs.h>
10  
11  guestfs_h *handle = guestfs_create ();
12  guestfs_add_drive (handle, "guest.img");
13  guestfs_launch (handle);
14  guestfs_wait_ready (handle);
15  guestfs_mount (handle, "/dev/sda1", "/");
16  guestfs_touch (handle, "/hello");
17  guestfs_sync (handle);
18  guestfs_close (handle);
19
20 =head1 DESCRIPTION
21
22 Libguestfs is a library for accessing and modifying guest disk images.
23 Amongst the things this is good for: making batch configuration
24 changes to guests, getting disk used/free statistics (see also:
25 virt-df), migrating between virtualization systems (see also:
26 virt-p2v), performing partial backups, performing partial guest
27 clones, cloning guests and changing registry/UUID/hostname info, and
28 much else besides.
29
30 Libguestfs uses Linux kernel and qemu code, and can access any type of
31 guest filesystem that Linux and qemu can, including but not limited
32 to: ext2/3/4, btrfs, FAT and NTFS, LVM, many different disk partition
33 schemes, qcow, qcow2, vmdk.
34
35 Libguestfs provides ways to enumerate guest storage (eg. partitions,
36 LVs, what filesystem is in each LV, etc.).  It can also run commands
37 in the context of the guest.  Also you can access filesystems over FTP.
38
39 Libguestfs is a library that can be linked with C and C++ management
40 programs (or management programs written in other languages, if people
41 contribute the language bindings).  You can also use it from shell
42 scripts or the command line.
43
44 You don't need to be root to use libguestfs, although obviously you do
45 need enough permissions to access the disk images.
46
47 =head1 CONNECTION MANAGEMENT
48
49 If you are using the high-level API, then you should call the
50 functions in the following order:
51
52  guestfs_h *handle = guestfs_create ();
53  
54  guestfs_add_drive (handle, "guest.img");
55  /* call guestfs_add_drive additional times if the guest has
56   * multiple disks
57   */
58  
59  guestfs_launch (handle);
60  guestfs_wait_ready (handle);
61
62  /* now you can examine what partitions, LVs etc are available
63   * you have to mount / at least
64   */ 
65  guestfs_mount (handle, "/dev/sda1", "/");
66
67  /* now you can perform actions on the guest disk image */
68  guestfs_touch (handle, "/hello");
69  
70  /* you only need to call guestfs_sync if you have made
71   * changes to the guest image
72   */
73  guestfs_sync (handle);
74  
75  guestfs_close (handle);
76
77 C<guestfs_wait_ready> and all of the actions including C<guestfs_sync>
78 are blocking calls.  You can use the low-level event API to do
79 non-blocking operations instead.
80
81 All functions that return integers, return C<-1> on error.  See
82 section ERROR HANDLING below for how to handle errors.
83
84 =head2 guestfs_h *
85
86 C<guestfs_h> is the opaque type representing a connection handle.
87 Create a handle by calling C<guestfs_create>.  Call C<guestfs_close>
88 to free the handle and release all resources used.
89
90 Handles and operations on handles are not thread safe.  However you
91 can use a separate handle for each thread (but not on the same disk
92 image).
93
94 =head2 guestfs_create
95
96  guestfs_h *guestfs_create (void);
97
98 Create a connection handle.
99
100 You have to call C<guestfs_add_drive> on the handle at least once.
101 See CONFIGURATION MANAGEMENT section below.
102
103 This function returns a non-NULL pointer to a handle on success or
104 NULL on error.
105
106 After configuring the handle, you have to call C<guestfs_launch> and
107 C<guestfs_wait_ready>.
108
109 You may also want to configure error handling for the handle.  See
110 ERROR HANDLING section below.
111
112 =head2 guestfs_close
113
114  void guestfs_close (guestfs_h *handle);
115
116 This closes the connection handle and frees up all resources used.
117
118 =head2 guestfs_launch, guestfs_wait_ready
119
120  int guestfs_launch (guestfs_h *handle);
121  int guestfs_wait_ready (guestfs_h *handle);
122
123 Internally libguestfs is implemented by running a virtual machine
124 using L<qemu(1)>.  These calls are necessary in order to boot the
125 virtual machine.  More discussion of this is available in the section
126 STATE MACHINE AND LOW-LEVEL EVENT API below.
127
128 You should call these two functions after configuring the handle
129 (eg. adding drives) but before performing any actions.
130
131 =head2 guestfs_kill_subprocess
132
133  int guestfs_kill_subprocess (guestfs_h *handle);
134
135 This kills the qemu subprocess.  You should never need to call this.
136
137 =head1 CONFIGURATION MANAGEMENT
138
139 The configuration functions allow you to configure which drive images
140 will be examined or modified, and set other aspects of the L<qemu(1)>
141 virtual machine that we will be running.  You need to call only
142 C<guestfs_add_drive> at least once for each guest image that you want
143 to examine.
144
145 =head2 guestfs_add_drive
146
147  int guestfs_add_drive (guestfs_h *handle, const char *filename);
148
149 This function adds a virtual machine disk image C<filename> to the
150 guest.  The first time you call this function, the disk appears as IDE
151 disk 0 (C</dev/sda>) in the guest, the second time as C</dev/sdb>, and
152 so on.
153
154 You don't necessarily need to be root when using libguestfs.  However
155 you obviously do need sufficient permissions to access the filename
156 for whatever operations you want to perform (ie. read access if you
157 just want to read the image or write access if you want to modify the
158 image).
159
160 This is equivalent to the qemu parameter C<-drive file=filename>.
161
162 =head2 guestfs_add_cdrom
163
164  int guestfs_add_cdrom (guestfs_h *handle, const char *filename);
165
166 This function adds a virtual CD-ROM disk image to the guest.
167
168 This is equivalent to the qemu parameter C<-cdrom filename>.
169
170 =head2 guestfs_config
171
172  int guestfs_config (guestfs_h *handle,
173                      const char *qemu_param, const char *qemu_value);
174
175 This can be used to add arbitrary qemu command line parameters
176 of the form C<-param value>.  Actually it's not quite arbitrary - we
177 prevent you from setting some parameters which would interfere with
178 parameters that we use.
179
180 The first character of C<qemu_param> string must be a C<-> (dash).
181
182 C<qemu_value> can be NULL.
183
184 =head1 ERROR HANDLING
185
186 The convention in all functions that return C<int> is that they return
187 C<-1> to indicate an error.  You can get additional information on
188 errors by calling C<guestfs_set_error_handler>.  The default error
189 handler prints the information string to C<stderr>.
190
191 Out of memory errors are handled differently.  The default action is
192 to call L<abort(3)>.  If this is undesirable, then you can set a
193 handler using C<guestfs_set_out_of_memory_handler>.
194
195 =head2 guestfs_set_error_handler
196
197  typedef void (*guestfs_error_handler_cb) (guestfs_h *handle,
198                                            void *data,
199                                            const char *msg);
200  void guestfs_set_error_handler (guestfs_h *handle,
201                                  guestfs_error_handler_cb cb,
202                                  void *data);
203
204 The callback C<cb> will be called if there is an error.  The
205 parameters passed to the callback are an opaque data pointer and the
206 error message string.
207
208 The default handler prints messages on C<stderr>.
209
210 If you set C<cb> to C<NULL> then I<no> handler is called and the error
211 message is completely discarded.
212
213 =head2 guestfs_get_error_handler
214
215  guestfs_error_handler_cb guestfs_get_error_handler (guestfs_h *handle,
216                                                      void **data_rtn);
217
218 Returns the current error handler callback.
219
220 =head2 guestfs_set_out_of_memory_handler 
221
222  typedef void (*guestfs_abort_cb) (void);
223  int guestfs_set_out_of_memory_handler (guestfs_h *handle,
224                                         guestfs_abort_cb);
225
226 The callback C<cb> will be called if there is an out of memory
227 situation.  I<Note this callback must not return>.
228
229 The default is to call L<abort(3)>.
230
231 You cannot set C<cb> to C<NULL>.  You can't ignore out of memory
232 situations.
233
234 =head2 guestfs_get_out_of_memory_handler
235
236  guestfs_abort_fn guestfs_get_out_of_memory_handler (guestfs_h *handle);
237
238 This returns the current out of memory handler.
239
240 =head1 VERBOSE MESSAGES
241
242 =head2 guestfs_set_verbose
243
244  void guestfs_set_verbose (guestfs_h *handle, int verbose);
245
246 If C<verbose> is true, this turns on verbose messages (to C<stderr>).
247
248 Verbose messages are disabled unless the environment variable
249 C<LIBGUESTFS_DEBUG> is defined and set to C<1>.
250
251 =head2 guestfs_get_verbose
252
253  int guestfs_get_verbose (guestfs_h *handle);
254
255 This returns the verbose messages flag.
256
257 =head1 HIGH-LEVEL API ACTIONS
258
259
260
261
262
263
264
265
266
267
268 =head1 STATE MACHINE AND LOW-LEVEL EVENT API
269
270 Internally, libguestfs is implemented by running a virtual machine
271 using L<qemu(1)>.  QEmu runs as a child process of the main program,
272 and most of this discussion won't make sense unless you understand
273 that the complexity is dealing with the (asynchronous) actions of the
274 child process.
275
276                             child process
277   ___________________       _________________________
278  /                   \     /                         \
279  | main program      |     | qemu +-----------------+|
280  |                   |     |      | Linux kernel    ||
281  +-------------------+     |      +-----------------+|
282  | libguestfs     <-------------->| guestfsd        ||
283  |                   |     |      +-----------------+|
284  \___________________/     \_________________________/
285
286 The diagram above shows libguestfs communicating with the guestfsd
287 daemon running inside the qemu child process.  There are several
288 points of failure here: qemu can fail to start, the virtual machine
289 inside qemu can fail to boot, guestfsd can fail to start or not
290 establish communication, any component can start successfully but fail
291 asynchronously later, and so on.
292
293 =head2 STATE MACHINE
294
295 libguestfs uses a state machine to model the child process:
296
297                          |
298                     guestfs_create
299                          |
300                          |
301                      ____V_____
302                     /          \
303                     |  CONFIG  |
304                     \__________/
305                      ^ ^   ^  \
306                     /  |    \  \ guestfs_launch
307                    /   |    _\__V______
308                   /    |   /           \
309                  /     |   | LAUNCHING |
310                 /      |   \___________/
311                /       |       /
312               /        |  guestfs_wait_ready
313              /         |     /
314     ______  /        __|____V
315    /      \ ------> /        \
316    | BUSY |         | READY  |
317    \______/ <------ \________/
318
319 The normal transitions are (1) CONFIG (when the handle is created, but
320 there is no child process), (2) LAUNCHING (when the child process is
321 booting up), (3) alternating between READY and BUSY as commands are
322 issued to, and carried out by, the child process.
323
324 The guest may be killed by C<guestfs_kill_subprocess>, or may die
325 asynchronously at any time (eg. due to some internal error), and that
326 causes the state to transition back to CONFIG.
327
328 Configuration commands for qemu such as C<guestfs_add_drive> can only
329 be issued when in the CONFIG state.
330
331 The high-level API offers two calls that go from CONFIG through
332 LAUNCHING to READY.  C<guestfs_launch> is a non-blocking call that
333 starts up the child process, immediately moving from CONFIG to
334 LAUNCHING.  C<guestfs_wait_ready> blocks until the child process is
335 READY to accept commands (or until some failure or timeout).  The
336 low-level event API described below provides a non-blocking way to
337 replace C<guestfs_wait_ready>.
338
339 High-level API actions such as C<guestfs_mount> can only be issued
340 when in the READY state.  These high-level API calls block waiting for
341 the command to be carried out (ie. the state to transition to BUSY and
342 then back to READY).  But using the low-level event API, you get
343 non-blocking versions.  (But you can still only carry out one
344 operation per handle at a time - that is a limitation of the
345 communications protocol we use).
346
347 Finally, the child process sends asynchronous messages back to the
348 main program, such as kernel log messages.  Mostly these are ignored
349 by the high-level API, but using the low-level event API you can
350 register to receive these messages.
351
352 =head2 SETTING CALLBACKS TO HANDLE EVENTS
353
354 The child process generates events in some situations.  Current events
355 include: receiving a reply message after some action, receiving a log
356 message, the child process exits, &c.
357
358 Use the C<guestfs_set_*_callback> functions to set a callback for
359 different types of events.
360
361 Only I<one callback of each type> can be registered for each handle.
362 Calling C<guestfs_set_*_callback> again overwrites the previous
363 callback of that type.  Cancel all callbacks of this type by calling
364 this function with C<cb> set to C<NULL>.
365
366 =head2 NON-BLOCKING ACTIONS
367
368 XXX NOT IMPLEMENTED YET XXX
369
370 C<guestfs_set_reply_callback> is the most interesting callback to
371 play with, since it allows you to perform actions without blocking.
372
373 For example:
374
375  do_it ()
376  {
377    start_call ();
378    guestfs_main_loop_run (); /* --> blocks, then calls my_cb */
379  }
380
381  start_call ()
382  {
383    guestfs_set_reply_callback (handle, my_cb, data);
384    guestfs_nb_[action] (handle, [other parameters ...]);
385    /* returns immediately */
386  }
387  
388  my_cb (guestfs_h *handle, void *data, XDR *xdr)
389  {
390    retval = guestfs_nb_[action]_r (handle, xdr);
391    /* ... */
392  }
393
394 There are C<guestfs_nb_*> and C<guestfs_nb_*_r> functions
395 corresponding to every C<guestfs_*> action in the high-level API.
396
397 =head2 guestfs_set_reply_callback
398
399  typedef void (*guestfs_reply_cb) (guestfs_h *g, void *opaque, XDR *xdr);
400  void guestfs_set_reply_callback (guestfs_h *handle,
401                                   guestfs_reply_cb cb,
402                                   void *opaque);
403
404 The callback function C<cb> will be called whenever a reply is
405 received from the child process.  (This corresponds to a transition
406 from the BUSY state to the READY state).
407
408 Note that the C<xdr> that you get in the callback is in C<XDR_DECODE>
409 mode, and you need to consume it before you return from the callback
410 function (since it gets destroyed after).
411
412 =head2 guestfs_set_log_message_callback
413
414  typedef void (*guestfs_log_message_cb) (guestfs_h *g, void *opaque,
415                                          char *buf, int len);
416  void guestfs_set_log_message_callback (guestfs_h *handle,
417                                         guestfs_log_message_cb cb,
418                                         void *opaque);
419
420 The callback function C<cb> will be called whenever qemu or the guest
421 writes anything to the console.
422
423 Use this function to capture kernel messages and similar.
424
425 Normally there is no log message handler, and log messages are just
426 discarded.
427
428 =head2 guestfs_set_subprocess_quit_callback
429
430  typedef void (*guestfs_subprocess_quit_cb) (guestfs_h *g, void *opaque);
431  void guestfs_set_subprocess_quit_callback (guestfs_h *handle,
432                                             guestfs_subprocess_quit_cb cb,
433                                             void *opaque);
434
435 The callback function C<cb> will be called when the child process
436 quits, either asynchronously or if killed by
437 C<guestfs_kill_subprocess>.  (This corresponds to a transition from
438 any state to the CONFIG state).
439
440 =head2 guestfs_set_launch_done_callback
441
442  typedef void (*guestfs_launch_done_cb) (guestfs_h *g, void *opaque);
443  void guestfs_set_launch_done_callback (guestfs_h *handle,
444                                         guestfs_ready_cb cb,
445                                         void *opaque);
446
447 The callback function C<cb> will be called when the child process
448 becomes ready first time after it has been launched.  (This
449 corresponds to a transition from LAUNCHING to the READY state).
450
451 You can use this instead of C<guestfs_wait_ready> to implement a
452 non-blocking wait for the child process to finish booting up.
453
454 =head2 EVENT MAIN LOOP
455
456 To use the low-level event API, you have to provide an event "main
457 loop".  You can write your own, but if you don't want to write one,
458 two are provided for you:
459
460 =over 4
461
462 =item libguestfs-select
463
464 A simple main loop that is implemented using L<select(2)>.
465
466 This is the default main loop unless you call C<guestfs_set_main_loop>
467 or C<guestfs_glib_set_main_loop>.
468
469 =item libguestfs-glib
470
471 An implementation which can be used with GLib and GTK+ programs.  You
472 can use this to write graphical (GTK+) programs which use libguestfs
473 without hanging during long or slow operations.
474
475 =back
476
477 =head2 guestfs_set_main_loop
478
479  void guestfs_set_main_loop (guestfs_main_loop *);
480
481 This call sets the current main loop to the list of callbacks
482 contained in the C<guestfs_main_loop> structure.
483
484 Only one main loop implementation can be used by libguestfs, so
485 calling this replaces the previous one.  (So this is something that
486 has to be done by the main program, but only the main program "knows"
487 that it is a GTK+ program or whatever).
488
489 You should call this early in the main program, certainly before
490 calling C<guestfs_create>.
491
492 =head2 guestfs_glib_set_main_loop
493
494  void guestfs_glib_set_main_loop (GMainLoop *);
495
496 This helper calls C<guestfs_set_main_loop> with the correct callbacks
497 for integrating with the GLib main loop.
498
499 The libguestfs-glib main loop is contained in a separate library, so
500 that libguestfs doesn't depend on the whole of GLib:
501
502  #include <glib.h>
503  #include <guestfs-glib.h>
504
505  main ()
506  {
507    GMainLoop *loop =
508      g_main_loop_new (g_main_context_default (), 1);
509    ...
510    guestfs_glib_set_main_loop (loop);
511    ...
512    g_main_loop_run (loop);
513  }
514
515 To use this main loop you must link with C<-lguestfs-glib>.  (See also
516 the GLib and GTK+ documentation).
517
518 =head2 guestfs_main_loop_run
519
520  void guestfs_main_loop_run (void);
521
522 This calls the main loop.
523
524 For some types of main loop you may want or prefer to call another
525 function, eg. C<g_main_loop_run>, or the main loop may already be
526 invoked by another part of your program.  In those cases, ignore this
527 call.
528
529 =head2 guestfs_main_loop_quit
530
531  void guestfs_main_loop_quit (void);
532
533 This instructs the main loop to quit.  In other words,
534 C<guestfs_main_loop_run> will return.
535
536 For some types of main loop you may want or prefer to call another
537 function, eg. C<g_main_loop_quit>.  In those cases, ignore this call.
538
539 =head2 WRITING A CUSTOM MAIN LOOP
540
541 This isn't documented.  Please see the libguestfs-select and
542 libguestfs-glib implementations.
543
544 =head1 SEE ALSO
545
546 L<qemu(1)>
547
548
549
550
551
552 =head1 AUTHORS
553
554 Richard W.M. Jones (C<rjones at redhat dot com>)
555
556 =head1 COPYRIGHT
557
558 Copyright (C) 2009 Red Hat Inc.
559 L<http://et.redhat.com/~rjones/libguestfs>
560
561 This library is free software; you can redistribute it and/or
562 modify it under the terms of the GNU Lesser General Public
563 License as published by the Free Software Foundation; either
564 version 2 of the License, or (at your option) any later version.
565
566 This library is distributed in the hope that it will be useful,
567 but WITHOUT ANY WARRANTY; without even the implied warranty of
568 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
569 Lesser General Public License for more details.
570
571 You should have received a copy of the GNU Lesser General Public
572 License along with this library; if not, write to the Free Software
573 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA