Generated files for previous commands.
[libguestfs.git] / fish / cmds.c
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 program is free software; you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation; either version 2 of the License, or
10  * (at your option) any later version.
11  *
12  * This program 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
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License along
18  * with this program; if not, write to the Free Software Foundation, Inc.,
19  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
20  */
21
22 #include <stdio.h>
23 #include <stdlib.h>
24 #include <string.h>
25 #include <inttypes.h>
26
27 #include <guestfs.h>
28 #include "fish.h"
29
30 void list_commands (void)
31 {
32   printf ("    %-16s     %s\n", "Command", "Description");
33   list_builtin_commands ();
34   printf ("%-20s %s\n", "add-cdrom", "add a CD-ROM disk image to examine");
35   printf ("%-20s %s\n", "add-drive", "add an image to examine or modify");
36   printf ("%-20s %s\n", "aug-close", "close the current Augeas handle");
37   printf ("%-20s %s\n", "aug-defnode", "define an Augeas node");
38   printf ("%-20s %s\n", "aug-defvar", "define an Augeas variable");
39   printf ("%-20s %s\n", "aug-get", "look up the value of an Augeas path");
40   printf ("%-20s %s\n", "aug-init", "create a new Augeas handle");
41   printf ("%-20s %s\n", "aug-insert", "insert a sibling Augeas node");
42   printf ("%-20s %s\n", "aug-load", "load files into the tree");
43   printf ("%-20s %s\n", "aug-ls", "list Augeas nodes under a path");
44   printf ("%-20s %s\n", "aug-match", "return Augeas nodes which match path");
45   printf ("%-20s %s\n", "aug-mv", "move Augeas node");
46   printf ("%-20s %s\n", "aug-rm", "remove an Augeas path");
47   printf ("%-20s %s\n", "aug-save", "write all pending Augeas changes to disk");
48   printf ("%-20s %s\n", "aug-set", "set Augeas path to value");
49   printf ("%-20s %s\n", "cat", "list the contents of a file");
50   printf ("%-20s %s\n", "chmod", "change file mode");
51   printf ("%-20s %s\n", "chown", "change file owner and group");
52   printf ("%-20s %s\n", "config", "add qemu parameters");
53   printf ("%-20s %s\n", "get-autosync", "get autosync mode");
54   printf ("%-20s %s\n", "get-path", "get the search path");
55   printf ("%-20s %s\n", "get-verbose", "get verbose mode");
56   printf ("%-20s %s\n", "kill-subprocess", "kill the qemu subprocess");
57   printf ("%-20s %s\n", "launch", "launch the qemu subprocess");
58   printf ("%-20s %s\n", "list-devices", "list the block devices");
59   printf ("%-20s %s\n", "list-partitions", "list the partitions");
60   printf ("%-20s %s\n", "ll", "list the files in a directory (long format)");
61   printf ("%-20s %s\n", "ls", "list the files in a directory");
62   printf ("%-20s %s\n", "lvs", "list the LVM logical volumes (LVs)");
63   printf ("%-20s %s\n", "lvs-full", "list the LVM logical volumes (LVs)");
64   printf ("%-20s %s\n", "mkdir", "create a directory");
65   printf ("%-20s %s\n", "mkdir-p", "create a directory and parents");
66   printf ("%-20s %s\n", "mount", "mount a guest disk at a position in the filesystem");
67   printf ("%-20s %s\n", "pvs", "list the LVM physical volumes (PVs)");
68   printf ("%-20s %s\n", "pvs-full", "list the LVM physical volumes (PVs)");
69   printf ("%-20s %s\n", "read-lines", "read file as lines");
70   printf ("%-20s %s\n", "rm", "remove a file");
71   printf ("%-20s %s\n", "rm-rf", "remove a file or directory recursively");
72   printf ("%-20s %s\n", "rmdir", "remove a directory");
73   printf ("%-20s %s\n", "set-autosync", "set autosync mode");
74   printf ("%-20s %s\n", "set-path", "set the search path");
75   printf ("%-20s %s\n", "set-verbose", "set verbose mode");
76   printf ("%-20s %s\n", "sync", "sync disks, writes are flushed through to the disk image");
77   printf ("%-20s %s\n", "touch", "update file timestamps or create a new file");
78   printf ("%-20s %s\n", "vgs", "list the LVM volume groups (VGs)");
79   printf ("%-20s %s\n", "vgs-full", "list the LVM volume groups (VGs)");
80   printf ("    Use -h <cmd> / help <cmd> to show detailed help for a command.\n");
81 }
82
83 void display_command (const char *cmd)
84 {
85   if (strcasecmp (cmd, "launch") == 0 || strcasecmp (cmd, "run") == 0)
86     pod2text ("launch - launch the qemu subprocess", " launch\n\nInternally libguestfs is implemented by running a virtual machine\nusing L<qemu(1)>.\n\nYou should call this after configuring the handle\n(eg. adding drives) but before performing any actions.\n\nYou can use 'run' as an alias for this command.");
87   else
88   if (strcasecmp (cmd, "kill_subprocess") == 0 || strcasecmp (cmd, "kill-subprocess") == 0)
89     pod2text ("kill-subprocess - kill the qemu subprocess", " kill-subprocess\n\nThis kills the qemu subprocess.  You should never need to call this.");
90   else
91   if (strcasecmp (cmd, "add_drive") == 0 || strcasecmp (cmd, "add-drive") == 0 || strcasecmp (cmd, "add") == 0)
92     pod2text ("add-drive - add an image to examine or modify", " add-drive <filename>\n\nThis function adds a virtual machine disk image C<filename> to the\nguest.  The first time you call this function, the disk appears as IDE\ndisk 0 (C</dev/sda>) in the guest, the second time as C</dev/sdb>, and\nso on.\n\nYou don't necessarily need to be root when using libguestfs.  However\nyou obviously do need sufficient permissions to access the filename\nfor whatever operations you want to perform (ie. read access if you\njust want to read the image or write access if you want to modify the\nimage).\n\nThis is equivalent to the qemu parameter C<-drive file=filename>.\n\nYou can use 'add' as an alias for this command.");
93   else
94   if (strcasecmp (cmd, "add_cdrom") == 0 || strcasecmp (cmd, "add-cdrom") == 0 || strcasecmp (cmd, "cdrom") == 0)
95     pod2text ("add-cdrom - add a CD-ROM disk image to examine", " add-cdrom <filename>\n\nThis function adds a virtual CD-ROM disk image to the guest.\n\nThis is equivalent to the qemu parameter C<-cdrom filename>.\n\nYou can use 'cdrom' as an alias for this command.");
96   else
97   if (strcasecmp (cmd, "config") == 0)
98     pod2text ("config - add qemu parameters", " config <qemuparam> <qemuvalue>\n\nThis can be used to add arbitrary qemu command line parameters\nof the form C<-param value>.  Actually it's not quite arbitrary - we\nprevent you from setting some parameters which would interfere with\nparameters that we use.\n\nThe first character of C<param> string must be a C<-> (dash).\n\nC<value> can be NULL.");
99   else
100   if (strcasecmp (cmd, "set_path") == 0 || strcasecmp (cmd, "set-path") == 0 || strcasecmp (cmd, "path") == 0)
101     pod2text ("set-path - set the search path", " set-path <path>\n\nSet the path that libguestfs searches for kernel and initrd.img.\n\nThe default is C<$libdir/guestfs> unless overridden by setting\nC<LIBGUESTFS_PATH> environment variable.\n\nThe string C<path> is stashed in the libguestfs handle, so the caller\nmust make sure it remains valid for the lifetime of the handle.\n\nSetting C<path> to C<NULL> restores the default path.\n\nYou can use 'path' as an alias for this command.");
102   else
103   if (strcasecmp (cmd, "get_path") == 0 || strcasecmp (cmd, "get-path") == 0)
104     pod2text ("get-path - get the search path", " get-path\n\nReturn the current search path.\n\nThis is always non-NULL.  If it wasn't set already, then this will\nreturn the default path.");
105   else
106   if (strcasecmp (cmd, "set_autosync") == 0 || strcasecmp (cmd, "set-autosync") == 0 || strcasecmp (cmd, "autosync") == 0)
107     pod2text ("set-autosync - set autosync mode", " set-autosync <autosync>\n\nIf C<autosync> is true, this enables autosync.  Libguestfs will make a\nbest effort attempt to run C<sync> when the handle is closed\n(also if the program exits without closing handles).\n\nYou can use 'autosync' as an alias for this command.");
108   else
109   if (strcasecmp (cmd, "get_autosync") == 0 || strcasecmp (cmd, "get-autosync") == 0)
110     pod2text ("get-autosync - get autosync mode", " get-autosync\n\nGet the autosync flag.");
111   else
112   if (strcasecmp (cmd, "set_verbose") == 0 || strcasecmp (cmd, "set-verbose") == 0 || strcasecmp (cmd, "verbose") == 0)
113     pod2text ("set-verbose - set verbose mode", " set-verbose <verbose>\n\nIf C<verbose> is true, this turns on verbose messages (to C<stderr>).\n\nVerbose messages are disabled unless the environment variable\nC<LIBGUESTFS_DEBUG> is defined and set to C<1>.\n\nYou can use 'verbose' as an alias for this command.");
114   else
115   if (strcasecmp (cmd, "get_verbose") == 0 || strcasecmp (cmd, "get-verbose") == 0)
116     pod2text ("get-verbose - get verbose mode", " get-verbose\n\nThis returns the verbose messages flag.");
117   else
118   if (strcasecmp (cmd, "mount") == 0)
119     pod2text ("mount - mount a guest disk at a position in the filesystem", " mount <device> <mountpoint>\n\nMount a guest disk at a position in the filesystem.  Block devices\nare named C</dev/sda>, C</dev/sdb> and so on, as they were added to\nthe guest.  If those block devices contain partitions, they will have\nthe usual names (eg. C</dev/sda1>).  Also LVM C</dev/VG/LV>-style\nnames can be used.\n\nThe rules are the same as for L<mount(2)>:  A filesystem must\nfirst be mounted on C</> before others can be mounted.  Other\nfilesystems can only be mounted on directories which already\nexist.\n\nThe mounted filesystem is writable, if we have sufficient permissions\non the underlying device.\n\nThe filesystem options C<sync> and C<noatime> are set with this\ncall, in order to improve reliability.");
120   else
121   if (strcasecmp (cmd, "sync") == 0)
122     pod2text ("sync - sync disks, writes are flushed through to the disk image", " sync\n\nThis syncs the disk, so that any writes are flushed through to the\nunderlying disk image.\n\nYou should always call this if you have modified a disk image, before\nclosing the handle.");
123   else
124   if (strcasecmp (cmd, "touch") == 0)
125     pod2text ("touch - update file timestamps or create a new file", " touch <path>\n\nTouch acts like the L<touch(1)> command.  It can be used to\nupdate the timestamps on a file, or, if the file does not exist,\nto create a new zero-length file.");
126   else
127   if (strcasecmp (cmd, "cat") == 0)
128     pod2text ("cat - list the contents of a file", " cat <path>\n\nReturn the contents of the file named C<path>.\n\nNote that this function cannot correctly handle binary files\n(specifically, files containing C<\\0> character which is treated\nas end of string).  For those you need to use the C<read_file>\nfunction which has a more complex interface.\n\nBecause of the message protocol, there is a transfer limit \nof somewhere between 2MB and 4MB.  To transfer large files you should use\nFTP.");
129   else
130   if (strcasecmp (cmd, "ll") == 0)
131     pod2text ("ll - list the files in a directory (long format)", " ll <directory>\n\nList the files in C<directory> (relative to the root directory,\nthere is no cwd) in the format of 'ls -la'.\n\nThis command is mostly useful for interactive sessions.  It\nis I<not> intended that you try to parse the output string.");
132   else
133   if (strcasecmp (cmd, "ls") == 0)
134     pod2text ("ls - list the files in a directory", " ls <directory>\n\nList the files in C<directory> (relative to the root directory,\nthere is no cwd).  The '.' and '..' entries are not returned, but\nhidden files are shown.\n\nThis command is mostly useful for interactive sessions.  Programs\nshould probably use C<readdir> instead.");
135   else
136   if (strcasecmp (cmd, "list_devices") == 0 || strcasecmp (cmd, "list-devices") == 0)
137     pod2text ("list-devices - list the block devices", " list-devices\n\nList all the block devices.\n\nThe full block device names are returned, eg. C</dev/sda>");
138   else
139   if (strcasecmp (cmd, "list_partitions") == 0 || strcasecmp (cmd, "list-partitions") == 0)
140     pod2text ("list-partitions - list the partitions", " list-partitions\n\nList all the partitions detected on all block devices.\n\nThe full partition device names are returned, eg. C</dev/sda1>\n\nThis does not return logical volumes.  For that you will need to\ncall C<lvs>.");
141   else
142   if (strcasecmp (cmd, "pvs") == 0)
143     pod2text ("pvs - list the LVM physical volumes (PVs)", " pvs\n\nList all the physical volumes detected.  This is the equivalent\nof the L<pvs(8)> command.\n\nThis returns a list of just the device names that contain\nPVs (eg. C</dev/sda2>).\n\nSee also C<pvs_full>.");
144   else
145   if (strcasecmp (cmd, "vgs") == 0)
146     pod2text ("vgs - list the LVM volume groups (VGs)", " vgs\n\nList all the volumes groups detected.  This is the equivalent\nof the L<vgs(8)> command.\n\nThis returns a list of just the volume group names that were\ndetected (eg. C<VolGroup00>).\n\nSee also C<vgs_full>.");
147   else
148   if (strcasecmp (cmd, "lvs") == 0)
149     pod2text ("lvs - list the LVM logical volumes (LVs)", " lvs\n\nList all the logical volumes detected.  This is the equivalent\nof the L<lvs(8)> command.\n\nThis returns a list of the logical volume device names\n(eg. C</dev/VolGroup00/LogVol00>).\n\nSee also C<lvs_full>.");
150   else
151   if (strcasecmp (cmd, "pvs_full") == 0 || strcasecmp (cmd, "pvs-full") == 0)
152     pod2text ("pvs-full - list the LVM physical volumes (PVs)", " pvs-full\n\nList all the physical volumes detected.  This is the equivalent\nof the L<pvs(8)> command.  The \"full\" version includes all fields.");
153   else
154   if (strcasecmp (cmd, "vgs_full") == 0 || strcasecmp (cmd, "vgs-full") == 0)
155     pod2text ("vgs-full - list the LVM volume groups (VGs)", " vgs-full\n\nList all the volumes groups detected.  This is the equivalent\nof the L<vgs(8)> command.  The \"full\" version includes all fields.");
156   else
157   if (strcasecmp (cmd, "lvs_full") == 0 || strcasecmp (cmd, "lvs-full") == 0)
158     pod2text ("lvs-full - list the LVM logical volumes (LVs)", " lvs-full\n\nList all the logical volumes detected.  This is the equivalent\nof the L<lvs(8)> command.  The \"full\" version includes all fields.");
159   else
160   if (strcasecmp (cmd, "read_lines") == 0 || strcasecmp (cmd, "read-lines") == 0)
161     pod2text ("read-lines - read file as lines", " read-lines <path>\n\nReturn the contents of the file named C<path>.\n\nThe file contents are returned as a list of lines.  Trailing\nC<LF> and C<CRLF> character sequences are I<not> returned.\n\nNote that this function cannot correctly handle binary files\n(specifically, files containing C<\\0> character which is treated\nas end of line).  For those you need to use the C<read_file>\nfunction which has a more complex interface.");
162   else
163   if (strcasecmp (cmd, "aug_init") == 0 || strcasecmp (cmd, "aug-init") == 0)
164     pod2text ("aug-init - create a new Augeas handle", " aug-init <root> <flags>\n\nCreate a new Augeas handle for editing configuration files.\nIf there was any previous Augeas handle associated with this\nguestfs session, then it is closed.\n\nYou must call this before using any other C<aug_*>\ncommands.\n\nC<root> is the filesystem root.  C<root> must not be NULL,\nuse C</> instead.\n\nThe flags are the same as the flags defined in\nE<lt>augeas.hE<gt>, the logical I<or> of the following\nintegers:\n\n=over 4\n\n=item C<AUG_SAVE_BACKUP> = 1\n\nKeep the original file with a C<.augsave> extension.\n\n=item C<AUG_SAVE_NEWFILE> = 2\n\nSave changes into a file with extension C<.augnew>, and\ndo not overwrite original.  Overrides C<AUG_SAVE_BACKUP>.\n\n=item C<AUG_TYPE_CHECK> = 4\n\nTypecheck lenses (can be expensive).\n\n=item C<AUG_NO_STDINC> = 8\n\nDo not use standard load path for modules.\n\n=item C<AUG_SAVE_NOOP> = 16\n\nMake save a no-op, just record what would have been changed.\n\n=item C<AUG_NO_LOAD> = 32\n\nDo not load the tree in C<aug_init>.\n\n=back\n\nTo close the handle, you can call C<aug_close>.\n\nTo find out more about Augeas, see L<http://augeas.net/>.");
165   else
166   if (strcasecmp (cmd, "aug_close") == 0 || strcasecmp (cmd, "aug-close") == 0)
167     pod2text ("aug-close - close the current Augeas handle", " aug-close\n\nClose the current Augeas handle and free up any resources\nused by it.  After calling this, you have to call\nC<aug_init> again before you can use any other\nAugeas functions.");
168   else
169   if (strcasecmp (cmd, "aug_defvar") == 0 || strcasecmp (cmd, "aug-defvar") == 0)
170     pod2text ("aug-defvar - define an Augeas variable", " aug-defvar <name> <expr>\n\nDefines an Augeas variable C<name> whose value is the result\nof evaluating C<expr>.  If C<expr> is NULL, then C<name> is\nundefined.\n\nOn success this returns the number of nodes in C<expr>, or\nC<0> if C<expr> evaluates to something which is not a nodeset.");
171   else
172   if (strcasecmp (cmd, "aug_defnode") == 0 || strcasecmp (cmd, "aug-defnode") == 0)
173     pod2text ("aug-defnode - define an Augeas node", " aug-defnode <name> <expr> <val>\n\nDefines a variable C<name> whose value is the result of\nevaluating C<expr>.\n\nIf C<expr> evaluates to an empty nodeset, a node is created,\nequivalent to calling C<aug_set> C<expr>, C<value>.\nC<name> will be the nodeset containing that single node.\n\nOn success this returns a pair containing the\nnumber of nodes in the nodeset, and a boolean flag\nif a node was created.");
174   else
175   if (strcasecmp (cmd, "aug_get") == 0 || strcasecmp (cmd, "aug-get") == 0)
176     pod2text ("aug-get - look up the value of an Augeas path", " aug-get <path>\n\nLook up the value associated with C<path>.  If C<path>\nmatches exactly one node, the C<value> is returned.");
177   else
178   if (strcasecmp (cmd, "aug_set") == 0 || strcasecmp (cmd, "aug-set") == 0)
179     pod2text ("aug-set - set Augeas path to value", " aug-set <path> <val>\n\nSet the value associated with C<path> to C<value>.");
180   else
181   if (strcasecmp (cmd, "aug_insert") == 0 || strcasecmp (cmd, "aug-insert") == 0)
182     pod2text ("aug-insert - insert a sibling Augeas node", " aug-insert <path> <label> <before>\n\nCreate a new sibling C<label> for C<path>, inserting it into\nthe tree before or after C<path> (depending on the boolean\nflag C<before>).\n\nC<path> must match exactly one existing node in the tree, and\nC<label> must be a label, ie. not contain C</>, C<*> or end\nwith a bracketed index C<[N]>.");
183   else
184   if (strcasecmp (cmd, "aug_rm") == 0 || strcasecmp (cmd, "aug-rm") == 0)
185     pod2text ("aug-rm - remove an Augeas path", " aug-rm <path>\n\nRemove C<path> and all of its children.\n\nOn success this returns the number of entries which were removed.");
186   else
187   if (strcasecmp (cmd, "aug_mv") == 0 || strcasecmp (cmd, "aug-mv") == 0)
188     pod2text ("aug-mv - move Augeas node", " aug-mv <src> <dest>\n\nMove the node C<src> to C<dest>.  C<src> must match exactly\none node.  C<dest> is overwritten if it exists.");
189   else
190   if (strcasecmp (cmd, "aug_match") == 0 || strcasecmp (cmd, "aug-match") == 0)
191     pod2text ("aug-match - return Augeas nodes which match path", " aug-match <path>\n\nReturns a list of paths which match the path expression C<path>.\nThe returned paths are sufficiently qualified so that they match\nexactly one node in the current tree.");
192   else
193   if (strcasecmp (cmd, "aug_save") == 0 || strcasecmp (cmd, "aug-save") == 0)
194     pod2text ("aug-save - write all pending Augeas changes to disk", " aug-save\n\nThis writes all pending changes to disk.\n\nThe flags which were passed to C<aug_init> affect exactly\nhow files are saved.");
195   else
196   if (strcasecmp (cmd, "aug_load") == 0 || strcasecmp (cmd, "aug-load") == 0)
197     pod2text ("aug-load - load files into the tree", " aug-load\n\nLoad files into the tree.\n\nSee C<aug_load> in the Augeas documentation for the full gory\ndetails.");
198   else
199   if (strcasecmp (cmd, "aug_ls") == 0 || strcasecmp (cmd, "aug-ls") == 0)
200     pod2text ("aug-ls - list Augeas nodes under a path", " aug-ls <path>\n\nThis is just a shortcut for listing C<aug_match>\nC<path/*> and sorting the resulting nodes into alphabetical order.");
201   else
202   if (strcasecmp (cmd, "rm") == 0)
203     pod2text ("rm - remove a file", " rm <path>\n\nRemove the single file C<path>.");
204   else
205   if (strcasecmp (cmd, "rmdir") == 0)
206     pod2text ("rmdir - remove a directory", " rmdir <path>\n\nRemove the single directory C<path>.");
207   else
208   if (strcasecmp (cmd, "rm_rf") == 0 || strcasecmp (cmd, "rm-rf") == 0)
209     pod2text ("rm-rf - remove a file or directory recursively", " rm-rf <path>\n\nRemove the file or directory C<path>, recursively removing the\ncontents if its a directory.  This is like the C<rm -rf> shell\ncommand.");
210   else
211   if (strcasecmp (cmd, "mkdir") == 0)
212     pod2text ("mkdir - create a directory", " mkdir <path>\n\nCreate a directory named C<path>.");
213   else
214   if (strcasecmp (cmd, "mkdir_p") == 0 || strcasecmp (cmd, "mkdir-p") == 0)
215     pod2text ("mkdir-p - create a directory and parents", " mkdir-p <path>\n\nCreate a directory named C<path>, creating any parent directories\nas necessary.  This is like the C<mkdir -p> shell command.");
216   else
217   if (strcasecmp (cmd, "chmod") == 0)
218     pod2text ("chmod - change file mode", " chmod <mode> <path>\n\nChange the mode (permissions) of C<path> to C<mode>.  Only\nnumeric modes are supported.");
219   else
220   if (strcasecmp (cmd, "chown") == 0)
221     pod2text ("chown - change file owner and group", " chown <owner> <group> <path>\n\nChange the file owner to C<owner> and group to C<group>.\n\nOnly numeric uid and gid are supported.  If you want to use\nnames, you will need to locate and parse the password file\nyourself (Augeas support makes this relatively easy).");
222   else
223     display_builtin_command (cmd);
224 }
225
226 static void print_pv (struct guestfs_lvm_pv *pv)
227 {
228   int i;
229
230   printf ("pv_name: %s\n", pv->pv_name);
231   printf ("pv_uuid: ");
232   for (i = 0; i < 32; ++i)
233     printf ("%c", pv->pv_uuid[i]);
234   printf ("\n");
235   printf ("pv_fmt: %s\n", pv->pv_fmt);
236   printf ("pv_size: %" PRIu64 "\n", pv->pv_size);
237   printf ("dev_size: %" PRIu64 "\n", pv->dev_size);
238   printf ("pv_free: %" PRIu64 "\n", pv->pv_free);
239   printf ("pv_used: %" PRIu64 "\n", pv->pv_used);
240   printf ("pv_attr: %s\n", pv->pv_attr);
241   printf ("pv_pe_count: %" PRIi64 "\n", pv->pv_pe_count);
242   printf ("pv_pe_alloc_count: %" PRIi64 "\n", pv->pv_pe_alloc_count);
243   printf ("pv_tags: %s\n", pv->pv_tags);
244   printf ("pe_start: %" PRIu64 "\n", pv->pe_start);
245   printf ("pv_mda_count: %" PRIi64 "\n", pv->pv_mda_count);
246   printf ("pv_mda_free: %" PRIu64 "\n", pv->pv_mda_free);
247 }
248
249 static void print_pv_list (struct guestfs_lvm_pv_list *pvs)
250 {
251   int i;
252
253   for (i = 0; i < pvs->len; ++i)
254     print_pv (&pvs->val[i]);
255 }
256
257 static void print_vg (struct guestfs_lvm_vg *vg)
258 {
259   int i;
260
261   printf ("vg_name: %s\n", vg->vg_name);
262   printf ("vg_uuid: ");
263   for (i = 0; i < 32; ++i)
264     printf ("%c", vg->vg_uuid[i]);
265   printf ("\n");
266   printf ("vg_fmt: %s\n", vg->vg_fmt);
267   printf ("vg_attr: %s\n", vg->vg_attr);
268   printf ("vg_size: %" PRIu64 "\n", vg->vg_size);
269   printf ("vg_free: %" PRIu64 "\n", vg->vg_free);
270   printf ("vg_sysid: %s\n", vg->vg_sysid);
271   printf ("vg_extent_size: %" PRIu64 "\n", vg->vg_extent_size);
272   printf ("vg_extent_count: %" PRIi64 "\n", vg->vg_extent_count);
273   printf ("vg_free_count: %" PRIi64 "\n", vg->vg_free_count);
274   printf ("max_lv: %" PRIi64 "\n", vg->max_lv);
275   printf ("max_pv: %" PRIi64 "\n", vg->max_pv);
276   printf ("pv_count: %" PRIi64 "\n", vg->pv_count);
277   printf ("lv_count: %" PRIi64 "\n", vg->lv_count);
278   printf ("snap_count: %" PRIi64 "\n", vg->snap_count);
279   printf ("vg_seqno: %" PRIi64 "\n", vg->vg_seqno);
280   printf ("vg_tags: %s\n", vg->vg_tags);
281   printf ("vg_mda_count: %" PRIi64 "\n", vg->vg_mda_count);
282   printf ("vg_mda_free: %" PRIu64 "\n", vg->vg_mda_free);
283 }
284
285 static void print_vg_list (struct guestfs_lvm_vg_list *vgs)
286 {
287   int i;
288
289   for (i = 0; i < vgs->len; ++i)
290     print_vg (&vgs->val[i]);
291 }
292
293 static void print_lv (struct guestfs_lvm_lv *lv)
294 {
295   int i;
296
297   printf ("lv_name: %s\n", lv->lv_name);
298   printf ("lv_uuid: ");
299   for (i = 0; i < 32; ++i)
300     printf ("%c", lv->lv_uuid[i]);
301   printf ("\n");
302   printf ("lv_attr: %s\n", lv->lv_attr);
303   printf ("lv_major: %" PRIi64 "\n", lv->lv_major);
304   printf ("lv_minor: %" PRIi64 "\n", lv->lv_minor);
305   printf ("lv_kernel_major: %" PRIi64 "\n", lv->lv_kernel_major);
306   printf ("lv_kernel_minor: %" PRIi64 "\n", lv->lv_kernel_minor);
307   printf ("lv_size: %" PRIu64 "\n", lv->lv_size);
308   printf ("seg_count: %" PRIi64 "\n", lv->seg_count);
309   printf ("origin: %s\n", lv->origin);
310   if (lv->snap_percent >= 0) printf ("snap_percent: %g %%\n", lv->snap_percent);
311   else printf ("snap_percent: \n");
312   if (lv->copy_percent >= 0) printf ("copy_percent: %g %%\n", lv->copy_percent);
313   else printf ("copy_percent: \n");
314   printf ("move_pv: %s\n", lv->move_pv);
315   printf ("lv_tags: %s\n", lv->lv_tags);
316   printf ("mirror_log: %s\n", lv->mirror_log);
317   printf ("modules: %s\n", lv->modules);
318 }
319
320 static void print_lv_list (struct guestfs_lvm_lv_list *lvs)
321 {
322   int i;
323
324   for (i = 0; i < lvs->len; ++i)
325     print_lv (&lvs->val[i]);
326 }
327
328 static int run_launch (const char *cmd, int argc, char *argv[])
329 {
330   int r;
331   if (argc != 0) {
332     fprintf (stderr, "%s should have 0 parameter(s)\n", cmd);
333     fprintf (stderr, "type 'help %s' for help on %s\n", cmd, cmd);
334     return -1;
335   }
336   r = launch (g);
337   return r;
338 }
339
340 static int run_kill_subprocess (const char *cmd, int argc, char *argv[])
341 {
342   int r;
343   if (argc != 0) {
344     fprintf (stderr, "%s should have 0 parameter(s)\n", cmd);
345     fprintf (stderr, "type 'help %s' for help on %s\n", cmd, cmd);
346     return -1;
347   }
348   r = guestfs_kill_subprocess (g);
349   return r;
350 }
351
352 static int run_add_drive (const char *cmd, int argc, char *argv[])
353 {
354   int r;
355   const char *filename;
356   if (argc != 1) {
357     fprintf (stderr, "%s should have 1 parameter(s)\n", cmd);
358     fprintf (stderr, "type 'help %s' for help on %s\n", cmd, cmd);
359     return -1;
360   }
361   filename = argv[0];
362   r = guestfs_add_drive (g, filename);
363   return r;
364 }
365
366 static int run_add_cdrom (const char *cmd, int argc, char *argv[])
367 {
368   int r;
369   const char *filename;
370   if (argc != 1) {
371     fprintf (stderr, "%s should have 1 parameter(s)\n", cmd);
372     fprintf (stderr, "type 'help %s' for help on %s\n", cmd, cmd);
373     return -1;
374   }
375   filename = argv[0];
376   r = guestfs_add_cdrom (g, filename);
377   return r;
378 }
379
380 static int run_config (const char *cmd, int argc, char *argv[])
381 {
382   int r;
383   const char *qemuparam;
384   const char *qemuvalue;
385   if (argc != 2) {
386     fprintf (stderr, "%s should have 2 parameter(s)\n", cmd);
387     fprintf (stderr, "type 'help %s' for help on %s\n", cmd, cmd);
388     return -1;
389   }
390   qemuparam = argv[0];
391   qemuvalue = strcmp (argv[1], "") != 0 ? argv[1] : NULL;
392   r = guestfs_config (g, qemuparam, qemuvalue);
393   return r;
394 }
395
396 static int run_set_path (const char *cmd, int argc, char *argv[])
397 {
398   int r;
399   const char *path;
400   if (argc != 1) {
401     fprintf (stderr, "%s should have 1 parameter(s)\n", cmd);
402     fprintf (stderr, "type 'help %s' for help on %s\n", cmd, cmd);
403     return -1;
404   }
405   path = argv[0];
406   r = guestfs_set_path (g, path);
407   return r;
408 }
409
410 static int run_get_path (const char *cmd, int argc, char *argv[])
411 {
412   const char *r;
413   if (argc != 0) {
414     fprintf (stderr, "%s should have 0 parameter(s)\n", cmd);
415     fprintf (stderr, "type 'help %s' for help on %s\n", cmd, cmd);
416     return -1;
417   }
418   r = guestfs_get_path (g);
419   if (r == NULL) return -1;
420   printf ("%s\n", r);
421   return 0;
422 }
423
424 static int run_set_autosync (const char *cmd, int argc, char *argv[])
425 {
426   int r;
427   int autosync;
428   if (argc != 1) {
429     fprintf (stderr, "%s should have 1 parameter(s)\n", cmd);
430     fprintf (stderr, "type 'help %s' for help on %s\n", cmd, cmd);
431     return -1;
432   }
433   autosync = is_true (argv[0]) ? 1 : 0;
434   r = guestfs_set_autosync (g, autosync);
435   return r;
436 }
437
438 static int run_get_autosync (const char *cmd, int argc, char *argv[])
439 {
440   int r;
441   if (argc != 0) {
442     fprintf (stderr, "%s should have 0 parameter(s)\n", cmd);
443     fprintf (stderr, "type 'help %s' for help on %s\n", cmd, cmd);
444     return -1;
445   }
446   r = guestfs_get_autosync (g);
447   if (r == -1) return -1;
448   if (r) printf ("true\n"); else printf ("false\n");
449   return 0;
450 }
451
452 static int run_set_verbose (const char *cmd, int argc, char *argv[])
453 {
454   int r;
455   int verbose;
456   if (argc != 1) {
457     fprintf (stderr, "%s should have 1 parameter(s)\n", cmd);
458     fprintf (stderr, "type 'help %s' for help on %s\n", cmd, cmd);
459     return -1;
460   }
461   verbose = is_true (argv[0]) ? 1 : 0;
462   r = guestfs_set_verbose (g, verbose);
463   return r;
464 }
465
466 static int run_get_verbose (const char *cmd, int argc, char *argv[])
467 {
468   int r;
469   if (argc != 0) {
470     fprintf (stderr, "%s should have 0 parameter(s)\n", cmd);
471     fprintf (stderr, "type 'help %s' for help on %s\n", cmd, cmd);
472     return -1;
473   }
474   r = guestfs_get_verbose (g);
475   if (r == -1) return -1;
476   if (r) printf ("true\n"); else printf ("false\n");
477   return 0;
478 }
479
480 static int run_mount (const char *cmd, int argc, char *argv[])
481 {
482   int r;
483   const char *device;
484   const char *mountpoint;
485   if (argc != 2) {
486     fprintf (stderr, "%s should have 2 parameter(s)\n", cmd);
487     fprintf (stderr, "type 'help %s' for help on %s\n", cmd, cmd);
488     return -1;
489   }
490   device = argv[0];
491   mountpoint = argv[1];
492   r = guestfs_mount (g, device, mountpoint);
493   return r;
494 }
495
496 static int run_sync (const char *cmd, int argc, char *argv[])
497 {
498   int r;
499   if (argc != 0) {
500     fprintf (stderr, "%s should have 0 parameter(s)\n", cmd);
501     fprintf (stderr, "type 'help %s' for help on %s\n", cmd, cmd);
502     return -1;
503   }
504   r = guestfs_sync (g);
505   return r;
506 }
507
508 static int run_touch (const char *cmd, int argc, char *argv[])
509 {
510   int r;
511   const char *path;
512   if (argc != 1) {
513     fprintf (stderr, "%s should have 1 parameter(s)\n", cmd);
514     fprintf (stderr, "type 'help %s' for help on %s\n", cmd, cmd);
515     return -1;
516   }
517   path = argv[0];
518   r = guestfs_touch (g, path);
519   return r;
520 }
521
522 static int run_cat (const char *cmd, int argc, char *argv[])
523 {
524   char *r;
525   const char *path;
526   if (argc != 1) {
527     fprintf (stderr, "%s should have 1 parameter(s)\n", cmd);
528     fprintf (stderr, "type 'help %s' for help on %s\n", cmd, cmd);
529     return -1;
530   }
531   path = argv[0];
532   r = guestfs_cat (g, path);
533   if (r == NULL) return -1;
534   printf ("%s\n", r);
535   free (r);
536   return 0;
537 }
538
539 static int run_ll (const char *cmd, int argc, char *argv[])
540 {
541   char *r;
542   const char *directory;
543   if (argc != 1) {
544     fprintf (stderr, "%s should have 1 parameter(s)\n", cmd);
545     fprintf (stderr, "type 'help %s' for help on %s\n", cmd, cmd);
546     return -1;
547   }
548   directory = argv[0];
549   r = guestfs_ll (g, directory);
550   if (r == NULL) return -1;
551   printf ("%s\n", r);
552   free (r);
553   return 0;
554 }
555
556 static int run_ls (const char *cmd, int argc, char *argv[])
557 {
558   char **r;
559   const char *directory;
560   if (argc != 1) {
561     fprintf (stderr, "%s should have 1 parameter(s)\n", cmd);
562     fprintf (stderr, "type 'help %s' for help on %s\n", cmd, cmd);
563     return -1;
564   }
565   directory = argv[0];
566   r = guestfs_ls (g, directory);
567   if (r == NULL) return -1;
568   print_strings (r);
569   free_strings (r);
570   return 0;
571 }
572
573 static int run_list_devices (const char *cmd, int argc, char *argv[])
574 {
575   char **r;
576   if (argc != 0) {
577     fprintf (stderr, "%s should have 0 parameter(s)\n", cmd);
578     fprintf (stderr, "type 'help %s' for help on %s\n", cmd, cmd);
579     return -1;
580   }
581   r = guestfs_list_devices (g);
582   if (r == NULL) return -1;
583   print_strings (r);
584   free_strings (r);
585   return 0;
586 }
587
588 static int run_list_partitions (const char *cmd, int argc, char *argv[])
589 {
590   char **r;
591   if (argc != 0) {
592     fprintf (stderr, "%s should have 0 parameter(s)\n", cmd);
593     fprintf (stderr, "type 'help %s' for help on %s\n", cmd, cmd);
594     return -1;
595   }
596   r = guestfs_list_partitions (g);
597   if (r == NULL) return -1;
598   print_strings (r);
599   free_strings (r);
600   return 0;
601 }
602
603 static int run_pvs (const char *cmd, int argc, char *argv[])
604 {
605   char **r;
606   if (argc != 0) {
607     fprintf (stderr, "%s should have 0 parameter(s)\n", cmd);
608     fprintf (stderr, "type 'help %s' for help on %s\n", cmd, cmd);
609     return -1;
610   }
611   r = guestfs_pvs (g);
612   if (r == NULL) return -1;
613   print_strings (r);
614   free_strings (r);
615   return 0;
616 }
617
618 static int run_vgs (const char *cmd, int argc, char *argv[])
619 {
620   char **r;
621   if (argc != 0) {
622     fprintf (stderr, "%s should have 0 parameter(s)\n", cmd);
623     fprintf (stderr, "type 'help %s' for help on %s\n", cmd, cmd);
624     return -1;
625   }
626   r = guestfs_vgs (g);
627   if (r == NULL) return -1;
628   print_strings (r);
629   free_strings (r);
630   return 0;
631 }
632
633 static int run_lvs (const char *cmd, int argc, char *argv[])
634 {
635   char **r;
636   if (argc != 0) {
637     fprintf (stderr, "%s should have 0 parameter(s)\n", cmd);
638     fprintf (stderr, "type 'help %s' for help on %s\n", cmd, cmd);
639     return -1;
640   }
641   r = guestfs_lvs (g);
642   if (r == NULL) return -1;
643   print_strings (r);
644   free_strings (r);
645   return 0;
646 }
647
648 static int run_pvs_full (const char *cmd, int argc, char *argv[])
649 {
650   struct guestfs_lvm_pv_list *r;
651   if (argc != 0) {
652     fprintf (stderr, "%s should have 0 parameter(s)\n", cmd);
653     fprintf (stderr, "type 'help %s' for help on %s\n", cmd, cmd);
654     return -1;
655   }
656   r = guestfs_pvs_full (g);
657   if (r == NULL) return -1;
658   print_pv_list (r);
659   guestfs_free_lvm_pv_list (r);
660   return 0;
661 }
662
663 static int run_vgs_full (const char *cmd, int argc, char *argv[])
664 {
665   struct guestfs_lvm_vg_list *r;
666   if (argc != 0) {
667     fprintf (stderr, "%s should have 0 parameter(s)\n", cmd);
668     fprintf (stderr, "type 'help %s' for help on %s\n", cmd, cmd);
669     return -1;
670   }
671   r = guestfs_vgs_full (g);
672   if (r == NULL) return -1;
673   print_vg_list (r);
674   guestfs_free_lvm_vg_list (r);
675   return 0;
676 }
677
678 static int run_lvs_full (const char *cmd, int argc, char *argv[])
679 {
680   struct guestfs_lvm_lv_list *r;
681   if (argc != 0) {
682     fprintf (stderr, "%s should have 0 parameter(s)\n", cmd);
683     fprintf (stderr, "type 'help %s' for help on %s\n", cmd, cmd);
684     return -1;
685   }
686   r = guestfs_lvs_full (g);
687   if (r == NULL) return -1;
688   print_lv_list (r);
689   guestfs_free_lvm_lv_list (r);
690   return 0;
691 }
692
693 static int run_read_lines (const char *cmd, int argc, char *argv[])
694 {
695   char **r;
696   const char *path;
697   if (argc != 1) {
698     fprintf (stderr, "%s should have 1 parameter(s)\n", cmd);
699     fprintf (stderr, "type 'help %s' for help on %s\n", cmd, cmd);
700     return -1;
701   }
702   path = argv[0];
703   r = guestfs_read_lines (g, path);
704   if (r == NULL) return -1;
705   print_strings (r);
706   free_strings (r);
707   return 0;
708 }
709
710 static int run_aug_init (const char *cmd, int argc, char *argv[])
711 {
712   int r;
713   const char *root;
714   int flags;
715   if (argc != 2) {
716     fprintf (stderr, "%s should have 2 parameter(s)\n", cmd);
717     fprintf (stderr, "type 'help %s' for help on %s\n", cmd, cmd);
718     return -1;
719   }
720   root = argv[0];
721   flags = atoi (argv[1]);
722   r = guestfs_aug_init (g, root, flags);
723   return r;
724 }
725
726 static int run_aug_close (const char *cmd, int argc, char *argv[])
727 {
728   int r;
729   if (argc != 0) {
730     fprintf (stderr, "%s should have 0 parameter(s)\n", cmd);
731     fprintf (stderr, "type 'help %s' for help on %s\n", cmd, cmd);
732     return -1;
733   }
734   r = guestfs_aug_close (g);
735   return r;
736 }
737
738 static int run_aug_defvar (const char *cmd, int argc, char *argv[])
739 {
740   int r;
741   const char *name;
742   const char *expr;
743   if (argc != 2) {
744     fprintf (stderr, "%s should have 2 parameter(s)\n", cmd);
745     fprintf (stderr, "type 'help %s' for help on %s\n", cmd, cmd);
746     return -1;
747   }
748   name = argv[0];
749   expr = strcmp (argv[1], "") != 0 ? argv[1] : NULL;
750   r = guestfs_aug_defvar (g, name, expr);
751   if (r == -1) return -1;
752   if (r) printf ("%d\n", r);
753   return 0;
754 }
755
756 static int run_aug_defnode (const char *cmd, int argc, char *argv[])
757 {
758   struct guestfs_int_bool *r;
759   const char *name;
760   const char *expr;
761   const char *val;
762   if (argc != 3) {
763     fprintf (stderr, "%s should have 3 parameter(s)\n", cmd);
764     fprintf (stderr, "type 'help %s' for help on %s\n", cmd, cmd);
765     return -1;
766   }
767   name = argv[0];
768   expr = argv[1];
769   val = argv[2];
770   r = guestfs_aug_defnode (g, name, expr, val);
771   if (r == NULL) return -1;
772   printf ("%d, %s\n", r->i,
773     r->b ? "true" : "false");
774   guestfs_free_int_bool (r);
775   return 0;
776 }
777
778 static int run_aug_get (const char *cmd, int argc, char *argv[])
779 {
780   char *r;
781   const char *path;
782   if (argc != 1) {
783     fprintf (stderr, "%s should have 1 parameter(s)\n", cmd);
784     fprintf (stderr, "type 'help %s' for help on %s\n", cmd, cmd);
785     return -1;
786   }
787   path = argv[0];
788   r = guestfs_aug_get (g, path);
789   if (r == NULL) return -1;
790   printf ("%s\n", r);
791   free (r);
792   return 0;
793 }
794
795 static int run_aug_set (const char *cmd, int argc, char *argv[])
796 {
797   int r;
798   const char *path;
799   const char *val;
800   if (argc != 2) {
801     fprintf (stderr, "%s should have 2 parameter(s)\n", cmd);
802     fprintf (stderr, "type 'help %s' for help on %s\n", cmd, cmd);
803     return -1;
804   }
805   path = argv[0];
806   val = argv[1];
807   r = guestfs_aug_set (g, path, val);
808   return r;
809 }
810
811 static int run_aug_insert (const char *cmd, int argc, char *argv[])
812 {
813   int r;
814   const char *path;
815   const char *label;
816   int before;
817   if (argc != 3) {
818     fprintf (stderr, "%s should have 3 parameter(s)\n", cmd);
819     fprintf (stderr, "type 'help %s' for help on %s\n", cmd, cmd);
820     return -1;
821   }
822   path = argv[0];
823   label = argv[1];
824   before = is_true (argv[2]) ? 1 : 0;
825   r = guestfs_aug_insert (g, path, label, before);
826   return r;
827 }
828
829 static int run_aug_rm (const char *cmd, int argc, char *argv[])
830 {
831   int r;
832   const char *path;
833   if (argc != 1) {
834     fprintf (stderr, "%s should have 1 parameter(s)\n", cmd);
835     fprintf (stderr, "type 'help %s' for help on %s\n", cmd, cmd);
836     return -1;
837   }
838   path = argv[0];
839   r = guestfs_aug_rm (g, path);
840   if (r == -1) return -1;
841   if (r) printf ("%d\n", r);
842   return 0;
843 }
844
845 static int run_aug_mv (const char *cmd, int argc, char *argv[])
846 {
847   int r;
848   const char *src;
849   const char *dest;
850   if (argc != 2) {
851     fprintf (stderr, "%s should have 2 parameter(s)\n", cmd);
852     fprintf (stderr, "type 'help %s' for help on %s\n", cmd, cmd);
853     return -1;
854   }
855   src = argv[0];
856   dest = argv[1];
857   r = guestfs_aug_mv (g, src, dest);
858   return r;
859 }
860
861 static int run_aug_match (const char *cmd, int argc, char *argv[])
862 {
863   char **r;
864   const char *path;
865   if (argc != 1) {
866     fprintf (stderr, "%s should have 1 parameter(s)\n", cmd);
867     fprintf (stderr, "type 'help %s' for help on %s\n", cmd, cmd);
868     return -1;
869   }
870   path = argv[0];
871   r = guestfs_aug_match (g, path);
872   if (r == NULL) return -1;
873   print_strings (r);
874   free_strings (r);
875   return 0;
876 }
877
878 static int run_aug_save (const char *cmd, int argc, char *argv[])
879 {
880   int r;
881   if (argc != 0) {
882     fprintf (stderr, "%s should have 0 parameter(s)\n", cmd);
883     fprintf (stderr, "type 'help %s' for help on %s\n", cmd, cmd);
884     return -1;
885   }
886   r = guestfs_aug_save (g);
887   return r;
888 }
889
890 static int run_aug_load (const char *cmd, int argc, char *argv[])
891 {
892   int r;
893   if (argc != 0) {
894     fprintf (stderr, "%s should have 0 parameter(s)\n", cmd);
895     fprintf (stderr, "type 'help %s' for help on %s\n", cmd, cmd);
896     return -1;
897   }
898   r = guestfs_aug_load (g);
899   return r;
900 }
901
902 static int run_aug_ls (const char *cmd, int argc, char *argv[])
903 {
904   char **r;
905   const char *path;
906   if (argc != 1) {
907     fprintf (stderr, "%s should have 1 parameter(s)\n", cmd);
908     fprintf (stderr, "type 'help %s' for help on %s\n", cmd, cmd);
909     return -1;
910   }
911   path = argv[0];
912   r = guestfs_aug_ls (g, path);
913   if (r == NULL) return -1;
914   print_strings (r);
915   free_strings (r);
916   return 0;
917 }
918
919 static int run_rm (const char *cmd, int argc, char *argv[])
920 {
921   int r;
922   const char *path;
923   if (argc != 1) {
924     fprintf (stderr, "%s should have 1 parameter(s)\n", cmd);
925     fprintf (stderr, "type 'help %s' for help on %s\n", cmd, cmd);
926     return -1;
927   }
928   path = argv[0];
929   r = guestfs_rm (g, path);
930   return r;
931 }
932
933 static int run_rmdir (const char *cmd, int argc, char *argv[])
934 {
935   int r;
936   const char *path;
937   if (argc != 1) {
938     fprintf (stderr, "%s should have 1 parameter(s)\n", cmd);
939     fprintf (stderr, "type 'help %s' for help on %s\n", cmd, cmd);
940     return -1;
941   }
942   path = argv[0];
943   r = guestfs_rmdir (g, path);
944   return r;
945 }
946
947 static int run_rm_rf (const char *cmd, int argc, char *argv[])
948 {
949   int r;
950   const char *path;
951   if (argc != 1) {
952     fprintf (stderr, "%s should have 1 parameter(s)\n", cmd);
953     fprintf (stderr, "type 'help %s' for help on %s\n", cmd, cmd);
954     return -1;
955   }
956   path = argv[0];
957   r = guestfs_rm_rf (g, path);
958   return r;
959 }
960
961 static int run_mkdir (const char *cmd, int argc, char *argv[])
962 {
963   int r;
964   const char *path;
965   if (argc != 1) {
966     fprintf (stderr, "%s should have 1 parameter(s)\n", cmd);
967     fprintf (stderr, "type 'help %s' for help on %s\n", cmd, cmd);
968     return -1;
969   }
970   path = argv[0];
971   r = guestfs_mkdir (g, path);
972   return r;
973 }
974
975 static int run_mkdir_p (const char *cmd, int argc, char *argv[])
976 {
977   int r;
978   const char *path;
979   if (argc != 1) {
980     fprintf (stderr, "%s should have 1 parameter(s)\n", cmd);
981     fprintf (stderr, "type 'help %s' for help on %s\n", cmd, cmd);
982     return -1;
983   }
984   path = argv[0];
985   r = guestfs_mkdir_p (g, path);
986   return r;
987 }
988
989 static int run_chmod (const char *cmd, int argc, char *argv[])
990 {
991   int r;
992   int mode;
993   const char *path;
994   if (argc != 2) {
995     fprintf (stderr, "%s should have 2 parameter(s)\n", cmd);
996     fprintf (stderr, "type 'help %s' for help on %s\n", cmd, cmd);
997     return -1;
998   }
999   mode = atoi (argv[0]);
1000   path = argv[1];
1001   r = guestfs_chmod (g, mode, path);
1002   return r;
1003 }
1004
1005 static int run_chown (const char *cmd, int argc, char *argv[])
1006 {
1007   int r;
1008   int owner;
1009   int group;
1010   const char *path;
1011   if (argc != 3) {
1012     fprintf (stderr, "%s should have 3 parameter(s)\n", cmd);
1013     fprintf (stderr, "type 'help %s' for help on %s\n", cmd, cmd);
1014     return -1;
1015   }
1016   owner = atoi (argv[0]);
1017   group = atoi (argv[1]);
1018   path = argv[2];
1019   r = guestfs_chown (g, owner, group, path);
1020   return r;
1021 }
1022
1023 int run_action (const char *cmd, int argc, char *argv[])
1024 {
1025   if (strcasecmp (cmd, "launch") == 0 || strcasecmp (cmd, "run") == 0)
1026     return run_launch (cmd, argc, argv);
1027   else
1028   if (strcasecmp (cmd, "kill_subprocess") == 0 || strcasecmp (cmd, "kill-subprocess") == 0)
1029     return run_kill_subprocess (cmd, argc, argv);
1030   else
1031   if (strcasecmp (cmd, "add_drive") == 0 || strcasecmp (cmd, "add-drive") == 0 || strcasecmp (cmd, "add") == 0)
1032     return run_add_drive (cmd, argc, argv);
1033   else
1034   if (strcasecmp (cmd, "add_cdrom") == 0 || strcasecmp (cmd, "add-cdrom") == 0 || strcasecmp (cmd, "cdrom") == 0)
1035     return run_add_cdrom (cmd, argc, argv);
1036   else
1037   if (strcasecmp (cmd, "config") == 0)
1038     return run_config (cmd, argc, argv);
1039   else
1040   if (strcasecmp (cmd, "set_path") == 0 || strcasecmp (cmd, "set-path") == 0 || strcasecmp (cmd, "path") == 0)
1041     return run_set_path (cmd, argc, argv);
1042   else
1043   if (strcasecmp (cmd, "get_path") == 0 || strcasecmp (cmd, "get-path") == 0)
1044     return run_get_path (cmd, argc, argv);
1045   else
1046   if (strcasecmp (cmd, "set_autosync") == 0 || strcasecmp (cmd, "set-autosync") == 0 || strcasecmp (cmd, "autosync") == 0)
1047     return run_set_autosync (cmd, argc, argv);
1048   else
1049   if (strcasecmp (cmd, "get_autosync") == 0 || strcasecmp (cmd, "get-autosync") == 0)
1050     return run_get_autosync (cmd, argc, argv);
1051   else
1052   if (strcasecmp (cmd, "set_verbose") == 0 || strcasecmp (cmd, "set-verbose") == 0 || strcasecmp (cmd, "verbose") == 0)
1053     return run_set_verbose (cmd, argc, argv);
1054   else
1055   if (strcasecmp (cmd, "get_verbose") == 0 || strcasecmp (cmd, "get-verbose") == 0)
1056     return run_get_verbose (cmd, argc, argv);
1057   else
1058   if (strcasecmp (cmd, "mount") == 0)
1059     return run_mount (cmd, argc, argv);
1060   else
1061   if (strcasecmp (cmd, "sync") == 0)
1062     return run_sync (cmd, argc, argv);
1063   else
1064   if (strcasecmp (cmd, "touch") == 0)
1065     return run_touch (cmd, argc, argv);
1066   else
1067   if (strcasecmp (cmd, "cat") == 0)
1068     return run_cat (cmd, argc, argv);
1069   else
1070   if (strcasecmp (cmd, "ll") == 0)
1071     return run_ll (cmd, argc, argv);
1072   else
1073   if (strcasecmp (cmd, "ls") == 0)
1074     return run_ls (cmd, argc, argv);
1075   else
1076   if (strcasecmp (cmd, "list_devices") == 0 || strcasecmp (cmd, "list-devices") == 0)
1077     return run_list_devices (cmd, argc, argv);
1078   else
1079   if (strcasecmp (cmd, "list_partitions") == 0 || strcasecmp (cmd, "list-partitions") == 0)
1080     return run_list_partitions (cmd, argc, argv);
1081   else
1082   if (strcasecmp (cmd, "pvs") == 0)
1083     return run_pvs (cmd, argc, argv);
1084   else
1085   if (strcasecmp (cmd, "vgs") == 0)
1086     return run_vgs (cmd, argc, argv);
1087   else
1088   if (strcasecmp (cmd, "lvs") == 0)
1089     return run_lvs (cmd, argc, argv);
1090   else
1091   if (strcasecmp (cmd, "pvs_full") == 0 || strcasecmp (cmd, "pvs-full") == 0)
1092     return run_pvs_full (cmd, argc, argv);
1093   else
1094   if (strcasecmp (cmd, "vgs_full") == 0 || strcasecmp (cmd, "vgs-full") == 0)
1095     return run_vgs_full (cmd, argc, argv);
1096   else
1097   if (strcasecmp (cmd, "lvs_full") == 0 || strcasecmp (cmd, "lvs-full") == 0)
1098     return run_lvs_full (cmd, argc, argv);
1099   else
1100   if (strcasecmp (cmd, "read_lines") == 0 || strcasecmp (cmd, "read-lines") == 0)
1101     return run_read_lines (cmd, argc, argv);
1102   else
1103   if (strcasecmp (cmd, "aug_init") == 0 || strcasecmp (cmd, "aug-init") == 0)
1104     return run_aug_init (cmd, argc, argv);
1105   else
1106   if (strcasecmp (cmd, "aug_close") == 0 || strcasecmp (cmd, "aug-close") == 0)
1107     return run_aug_close (cmd, argc, argv);
1108   else
1109   if (strcasecmp (cmd, "aug_defvar") == 0 || strcasecmp (cmd, "aug-defvar") == 0)
1110     return run_aug_defvar (cmd, argc, argv);
1111   else
1112   if (strcasecmp (cmd, "aug_defnode") == 0 || strcasecmp (cmd, "aug-defnode") == 0)
1113     return run_aug_defnode (cmd, argc, argv);
1114   else
1115   if (strcasecmp (cmd, "aug_get") == 0 || strcasecmp (cmd, "aug-get") == 0)
1116     return run_aug_get (cmd, argc, argv);
1117   else
1118   if (strcasecmp (cmd, "aug_set") == 0 || strcasecmp (cmd, "aug-set") == 0)
1119     return run_aug_set (cmd, argc, argv);
1120   else
1121   if (strcasecmp (cmd, "aug_insert") == 0 || strcasecmp (cmd, "aug-insert") == 0)
1122     return run_aug_insert (cmd, argc, argv);
1123   else
1124   if (strcasecmp (cmd, "aug_rm") == 0 || strcasecmp (cmd, "aug-rm") == 0)
1125     return run_aug_rm (cmd, argc, argv);
1126   else
1127   if (strcasecmp (cmd, "aug_mv") == 0 || strcasecmp (cmd, "aug-mv") == 0)
1128     return run_aug_mv (cmd, argc, argv);
1129   else
1130   if (strcasecmp (cmd, "aug_match") == 0 || strcasecmp (cmd, "aug-match") == 0)
1131     return run_aug_match (cmd, argc, argv);
1132   else
1133   if (strcasecmp (cmd, "aug_save") == 0 || strcasecmp (cmd, "aug-save") == 0)
1134     return run_aug_save (cmd, argc, argv);
1135   else
1136   if (strcasecmp (cmd, "aug_load") == 0 || strcasecmp (cmd, "aug-load") == 0)
1137     return run_aug_load (cmd, argc, argv);
1138   else
1139   if (strcasecmp (cmd, "aug_ls") == 0 || strcasecmp (cmd, "aug-ls") == 0)
1140     return run_aug_ls (cmd, argc, argv);
1141   else
1142   if (strcasecmp (cmd, "rm") == 0)
1143     return run_rm (cmd, argc, argv);
1144   else
1145   if (strcasecmp (cmd, "rmdir") == 0)
1146     return run_rmdir (cmd, argc, argv);
1147   else
1148   if (strcasecmp (cmd, "rm_rf") == 0 || strcasecmp (cmd, "rm-rf") == 0)
1149     return run_rm_rf (cmd, argc, argv);
1150   else
1151   if (strcasecmp (cmd, "mkdir") == 0)
1152     return run_mkdir (cmd, argc, argv);
1153   else
1154   if (strcasecmp (cmd, "mkdir_p") == 0 || strcasecmp (cmd, "mkdir-p") == 0)
1155     return run_mkdir_p (cmd, argc, argv);
1156   else
1157   if (strcasecmp (cmd, "chmod") == 0)
1158     return run_chmod (cmd, argc, argv);
1159   else
1160   if (strcasecmp (cmd, "chown") == 0)
1161     return run_chown (cmd, argc, argv);
1162   else
1163     {
1164       fprintf (stderr, "%s: unknown command\n", cmd);
1165       return -1;
1166     }
1167   return 0;
1168 }
1169