Use AC_GNU_SOURCE in daemon. Don't need _GNU_SOURCE in C files any more.
[libguestfs.git] / src / generator.ml
1 #!/usr/bin/env ocaml
2 (* libguestfs
3  * Copyright (C) 2009 Red Hat Inc.
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; either version 2 of the License, or
8  * (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program; if not, write to the Free Software
17  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
18  *)
19
20 (* This script generates a large amount of code and documentation for
21  * all the daemon actions.
22  *
23  * To add a new action there are only two files you need to change,
24  * this one to describe the interface (see the big table below), and
25  * daemon/<somefile>.c to write the implementation.
26  *
27  * After editing this file, run it (./src/generator.ml) to regenerate
28  * all the output files.
29  *
30  * IMPORTANT: This script should NOT print any warnings.  If it prints
31  * warnings, you should treat them as errors.
32  * [Need to add -warn-error to ocaml command line]
33  *)
34
35 #load "unix.cma";;
36 #load "str.cma";;
37
38 open Printf
39
40 type style = ret * args
41 and ret =
42     (* "RErr" as a return value means an int used as a simple error
43      * indication, ie. 0 or -1.
44      *)
45   | RErr
46     (* "RInt" as a return value means an int which is -1 for error
47      * or any value >= 0 on success.  Only use this for smallish
48      * positive ints (0 <= i < 2^30).
49      *)
50   | RInt of string
51     (* "RInt64" is the same as RInt, but is guaranteed to be able
52      * to return a full 64 bit value, _except_ that -1 means error
53      * (so -1 cannot be a valid, non-error return value).
54      *)
55   | RInt64 of string
56     (* "RBool" is a bool return value which can be true/false or
57      * -1 for error.
58      *)
59   | RBool of string
60     (* "RConstString" is a string that refers to a constant value.
61      * Try to avoid using this.  In particular you cannot use this
62      * for values returned from the daemon, because there is no
63      * thread-safe way to return them in the C API.
64      *)
65   | RConstString of string
66     (* "RString" and "RStringList" are caller-frees. *)
67   | RString of string
68   | RStringList of string
69     (* Some limited tuples are possible: *)
70   | RIntBool of string * string
71     (* LVM PVs, VGs and LVs. *)
72   | RPVList of string
73   | RVGList of string
74   | RLVList of string
75     (* Stat buffers. *)
76   | RStat of string
77   | RStatVFS of string
78     (* Key-value pairs of untyped strings.  Turns into a hashtable or
79      * dictionary in languages which support it.  DON'T use this as a
80      * general "bucket" for results.  Prefer a stronger typed return
81      * value if one is available, or write a custom struct.  Don't use
82      * this if the list could potentially be very long, since it is
83      * inefficient.  Keys should be unique.  NULLs are not permitted.
84      *)
85   | RHashtable of string
86
87 and args = argt list    (* Function parameters, guestfs handle is implicit. *)
88
89     (* Note in future we should allow a "variable args" parameter as
90      * the final parameter, to allow commands like
91      *   chmod mode file [file(s)...]
92      * This is not implemented yet, but many commands (such as chmod)
93      * are currently defined with the argument order keeping this future
94      * possibility in mind.
95      *)
96 and argt =
97   | String of string    (* const char *name, cannot be NULL *)
98   | OptString of string (* const char *name, may be NULL *)
99   | StringList of string(* list of strings (each string cannot be NULL) *)
100   | Bool of string      (* boolean *)
101   | Int of string       (* int (smallish ints, signed, <= 31 bits) *)
102     (* These are treated as filenames (simple string parameters) in
103      * the C API and bindings.  But in the RPC protocol, we transfer
104      * the actual file content up to or down from the daemon.
105      * FileIn: local machine -> daemon (in request)
106      * FileOut: daemon -> local machine (in reply)
107      * In guestfish (only), the special name "-" means read from
108      * stdin or write to stdout.
109      *)
110   | FileIn of string
111   | FileOut of string
112
113 type flags =
114   | ProtocolLimitWarning  (* display warning about protocol size limits *)
115   | DangerWillRobinson    (* flags particularly dangerous commands *)
116   | FishAlias of string   (* provide an alias for this cmd in guestfish *)
117   | FishAction of string  (* call this function in guestfish *)
118   | NotInFish             (* do not export via guestfish *)
119
120 let protocol_limit_warning =
121   "Because of the message protocol, there is a transfer limit 
122 of somewhere between 2MB and 4MB.  To transfer large files you should use
123 FTP."
124
125 let danger_will_robinson =
126   "B<This command is dangerous.  Without careful use you
127 can easily destroy all your data>."
128
129 (* You can supply zero or as many tests as you want per API call.
130  *
131  * Note that the test environment has 3 block devices, of size 500MB,
132  * 50MB and 10MB (respectively /dev/sda, /dev/sdb, /dev/sdc).
133  * Note for partitioning purposes, the 500MB device has 63 cylinders.
134  *
135  * To be able to run the tests in a reasonable amount of time,
136  * the virtual machine and block devices are reused between tests.
137  * So don't try testing kill_subprocess :-x
138  *
139  * Between each test we umount-all and lvm-remove-all (except InitNone).
140  *
141  * Don't assume anything about the previous contents of the block
142  * devices.  Use 'Init*' to create some initial scenarios.
143  *)
144 type tests = (test_init * test) list
145 and test =
146     (* Run the command sequence and just expect nothing to fail. *)
147   | TestRun of seq
148     (* Run the command sequence and expect the output of the final
149      * command to be the string.
150      *)
151   | TestOutput of seq * string
152     (* Run the command sequence and expect the output of the final
153      * command to be the list of strings.
154      *)
155   | TestOutputList of seq * string list
156     (* Run the command sequence and expect the output of the final
157      * command to be the integer.
158      *)
159   | TestOutputInt of seq * int
160     (* Run the command sequence and expect the output of the final
161      * command to be a true value (!= 0 or != NULL).
162      *)
163   | TestOutputTrue of seq
164     (* Run the command sequence and expect the output of the final
165      * command to be a false value (== 0 or == NULL, but not an error).
166      *)
167   | TestOutputFalse of seq
168     (* Run the command sequence and expect the output of the final
169      * command to be a list of the given length (but don't care about
170      * content).
171      *)
172   | TestOutputLength of seq * int
173     (* Run the command sequence and expect the output of the final
174      * command to be a structure.
175      *)
176   | TestOutputStruct of seq * test_field_compare list
177     (* Run the command sequence and expect the final command (only)
178      * to fail.
179      *)
180   | TestLastFail of seq
181
182 and test_field_compare =
183   | CompareWithInt of string * int
184   | CompareWithString of string * string
185   | CompareFieldsIntEq of string * string
186   | CompareFieldsStrEq of string * string
187
188 (* Some initial scenarios for testing. *)
189 and test_init =
190     (* Do nothing, block devices could contain random stuff including
191      * LVM PVs, and some filesystems might be mounted.  This is usually
192      * a bad idea.
193      *)
194   | InitNone
195     (* Block devices are empty and no filesystems are mounted. *)
196   | InitEmpty
197     (* /dev/sda contains a single partition /dev/sda1, which is formatted
198      * as ext2, empty [except for lost+found] and mounted on /.
199      * /dev/sdb and /dev/sdc may have random content.
200      * No LVM.
201      *)
202   | InitBasicFS
203     (* /dev/sda:
204      *   /dev/sda1 (is a PV):
205      *     /dev/VG/LV (size 8MB):
206      *       formatted as ext2, empty [except for lost+found], mounted on /
207      * /dev/sdb and /dev/sdc may have random content.
208      *)
209   | InitBasicFSonLVM
210
211 (* Sequence of commands for testing. *)
212 and seq = cmd list
213 and cmd = string list
214
215 (* Note about long descriptions: When referring to another
216  * action, use the format C<guestfs_other> (ie. the full name of
217  * the C function).  This will be replaced as appropriate in other
218  * language bindings.
219  *
220  * Apart from that, long descriptions are just perldoc paragraphs.
221  *)
222
223 let non_daemon_functions = [
224   ("launch", (RErr, []), -1, [FishAlias "run"; FishAction "launch"],
225    [],
226    "launch the qemu subprocess",
227    "\
228 Internally libguestfs is implemented by running a virtual machine
229 using L<qemu(1)>.
230
231 You should call this after configuring the handle
232 (eg. adding drives) but before performing any actions.");
233
234   ("wait_ready", (RErr, []), -1, [NotInFish],
235    [],
236    "wait until the qemu subprocess launches",
237    "\
238 Internally libguestfs is implemented by running a virtual machine
239 using L<qemu(1)>.
240
241 You should call this after C<guestfs_launch> to wait for the launch
242 to complete.");
243
244   ("kill_subprocess", (RErr, []), -1, [],
245    [],
246    "kill the qemu subprocess",
247    "\
248 This kills the qemu subprocess.  You should never need to call this.");
249
250   ("add_drive", (RErr, [String "filename"]), -1, [FishAlias "add"],
251    [],
252    "add an image to examine or modify",
253    "\
254 This function adds a virtual machine disk image C<filename> to the
255 guest.  The first time you call this function, the disk appears as IDE
256 disk 0 (C</dev/sda>) in the guest, the second time as C</dev/sdb>, and
257 so on.
258
259 You don't necessarily need to be root when using libguestfs.  However
260 you obviously do need sufficient permissions to access the filename
261 for whatever operations you want to perform (ie. read access if you
262 just want to read the image or write access if you want to modify the
263 image).
264
265 This is equivalent to the qemu parameter C<-drive file=filename>.");
266
267   ("add_cdrom", (RErr, [String "filename"]), -1, [FishAlias "cdrom"],
268    [],
269    "add a CD-ROM disk image to examine",
270    "\
271 This function adds a virtual CD-ROM disk image to the guest.
272
273 This is equivalent to the qemu parameter C<-cdrom filename>.");
274
275   ("config", (RErr, [String "qemuparam"; OptString "qemuvalue"]), -1, [],
276    [],
277    "add qemu parameters",
278    "\
279 This can be used to add arbitrary qemu command line parameters
280 of the form C<-param value>.  Actually it's not quite arbitrary - we
281 prevent you from setting some parameters which would interfere with
282 parameters that we use.
283
284 The first character of C<param> string must be a C<-> (dash).
285
286 C<value> can be NULL.");
287
288   ("set_qemu", (RErr, [String "qemu"]), -1, [FishAlias "qemu"],
289    [],
290    "set the qemu binary",
291    "\
292 Set the qemu binary that we will use.
293
294 The default is chosen when the library was compiled by the
295 configure script.
296
297 You can also override this by setting the C<LIBGUESTFS_QEMU>
298 environment variable.
299
300 The string C<qemu> is stashed in the libguestfs handle, so the caller
301 must make sure it remains valid for the lifetime of the handle.
302
303 Setting C<qemu> to C<NULL> restores the default qemu binary.");
304
305   ("get_qemu", (RConstString "qemu", []), -1, [],
306    [],
307    "get the qemu binary",
308    "\
309 Return the current qemu binary.
310
311 This is always non-NULL.  If it wasn't set already, then this will
312 return the default qemu binary name.");
313
314   ("set_path", (RErr, [String "path"]), -1, [FishAlias "path"],
315    [],
316    "set the search path",
317    "\
318 Set the path that libguestfs searches for kernel and initrd.img.
319
320 The default is C<$libdir/guestfs> unless overridden by setting
321 C<LIBGUESTFS_PATH> environment variable.
322
323 The string C<path> is stashed in the libguestfs handle, so the caller
324 must make sure it remains valid for the lifetime of the handle.
325
326 Setting C<path> to C<NULL> restores the default path.");
327
328   ("get_path", (RConstString "path", []), -1, [],
329    [],
330    "get the search path",
331    "\
332 Return the current search path.
333
334 This is always non-NULL.  If it wasn't set already, then this will
335 return the default path.");
336
337   ("set_autosync", (RErr, [Bool "autosync"]), -1, [FishAlias "autosync"],
338    [],
339    "set autosync mode",
340    "\
341 If C<autosync> is true, this enables autosync.  Libguestfs will make a
342 best effort attempt to run C<guestfs_sync> when the handle is closed
343 (also if the program exits without closing handles).");
344
345   ("get_autosync", (RBool "autosync", []), -1, [],
346    [],
347    "get autosync mode",
348    "\
349 Get the autosync flag.");
350
351   ("set_verbose", (RErr, [Bool "verbose"]), -1, [FishAlias "verbose"],
352    [],
353    "set verbose mode",
354    "\
355 If C<verbose> is true, this turns on verbose messages (to C<stderr>).
356
357 Verbose messages are disabled unless the environment variable
358 C<LIBGUESTFS_DEBUG> is defined and set to C<1>.");
359
360   ("get_verbose", (RBool "verbose", []), -1, [],
361    [],
362    "get verbose mode",
363    "\
364 This returns the verbose messages flag.");
365
366   ("is_ready", (RBool "ready", []), -1, [],
367    [],
368    "is ready to accept commands",
369    "\
370 This returns true iff this handle is ready to accept commands
371 (in the C<READY> state).
372
373 For more information on states, see L<guestfs(3)>.");
374
375   ("is_config", (RBool "config", []), -1, [],
376    [],
377    "is in configuration state",
378    "\
379 This returns true iff this handle is being configured
380 (in the C<CONFIG> state).
381
382 For more information on states, see L<guestfs(3)>.");
383
384   ("is_launching", (RBool "launching", []), -1, [],
385    [],
386    "is launching subprocess",
387    "\
388 This returns true iff this handle is launching the subprocess
389 (in the C<LAUNCHING> state).
390
391 For more information on states, see L<guestfs(3)>.");
392
393   ("is_busy", (RBool "busy", []), -1, [],
394    [],
395    "is busy processing a command",
396    "\
397 This returns true iff this handle is busy processing a command
398 (in the C<BUSY> state).
399
400 For more information on states, see L<guestfs(3)>.");
401
402   ("get_state", (RInt "state", []), -1, [],
403    [],
404    "get the current state",
405    "\
406 This returns the current state as an opaque integer.  This is
407 only useful for printing debug and internal error messages.
408
409 For more information on states, see L<guestfs(3)>.");
410
411   ("set_busy", (RErr, []), -1, [NotInFish],
412    [],
413    "set state to busy",
414    "\
415 This sets the state to C<BUSY>.  This is only used when implementing
416 actions using the low-level API.
417
418 For more information on states, see L<guestfs(3)>.");
419
420   ("set_ready", (RErr, []), -1, [NotInFish],
421    [],
422    "set state to ready",
423    "\
424 This sets the state to C<READY>.  This is only used when implementing
425 actions using the low-level API.
426
427 For more information on states, see L<guestfs(3)>.");
428
429 ]
430
431 let daemon_functions = [
432   ("mount", (RErr, [String "device"; String "mountpoint"]), 1, [],
433    [InitEmpty, TestOutput (
434       [["sfdisk"; "/dev/sda"; "0"; "0"; "0"; ","];
435        ["mkfs"; "ext2"; "/dev/sda1"];
436        ["mount"; "/dev/sda1"; "/"];
437        ["write_file"; "/new"; "new file contents"; "0"];
438        ["cat"; "/new"]], "new file contents")],
439    "mount a guest disk at a position in the filesystem",
440    "\
441 Mount a guest disk at a position in the filesystem.  Block devices
442 are named C</dev/sda>, C</dev/sdb> and so on, as they were added to
443 the guest.  If those block devices contain partitions, they will have
444 the usual names (eg. C</dev/sda1>).  Also LVM C</dev/VG/LV>-style
445 names can be used.
446
447 The rules are the same as for L<mount(2)>:  A filesystem must
448 first be mounted on C</> before others can be mounted.  Other
449 filesystems can only be mounted on directories which already
450 exist.
451
452 The mounted filesystem is writable, if we have sufficient permissions
453 on the underlying device.
454
455 The filesystem options C<sync> and C<noatime> are set with this
456 call, in order to improve reliability.");
457
458   ("sync", (RErr, []), 2, [],
459    [ InitEmpty, TestRun [["sync"]]],
460    "sync disks, writes are flushed through to the disk image",
461    "\
462 This syncs the disk, so that any writes are flushed through to the
463 underlying disk image.
464
465 You should always call this if you have modified a disk image, before
466 closing the handle.");
467
468   ("touch", (RErr, [String "path"]), 3, [],
469    [InitBasicFS, TestOutputTrue (
470       [["touch"; "/new"];
471        ["exists"; "/new"]])],
472    "update file timestamps or create a new file",
473    "\
474 Touch acts like the L<touch(1)> command.  It can be used to
475 update the timestamps on a file, or, if the file does not exist,
476 to create a new zero-length file.");
477
478   ("cat", (RString "content", [String "path"]), 4, [ProtocolLimitWarning],
479    [InitBasicFS, TestOutput (
480       [["write_file"; "/new"; "new file contents"; "0"];
481        ["cat"; "/new"]], "new file contents")],
482    "list the contents of a file",
483    "\
484 Return the contents of the file named C<path>.
485
486 Note that this function cannot correctly handle binary files
487 (specifically, files containing C<\\0> character which is treated
488 as end of string).  For those you need to use the C<guestfs_download>
489 function which has a more complex interface.");
490
491   ("ll", (RString "listing", [String "directory"]), 5, [],
492    [], (* XXX Tricky to test because it depends on the exact format
493         * of the 'ls -l' command, which changes between F10 and F11.
494         *)
495    "list the files in a directory (long format)",
496    "\
497 List the files in C<directory> (relative to the root directory,
498 there is no cwd) in the format of 'ls -la'.
499
500 This command is mostly useful for interactive sessions.  It
501 is I<not> intended that you try to parse the output string.");
502
503   ("ls", (RStringList "listing", [String "directory"]), 6, [],
504    [InitBasicFS, TestOutputList (
505       [["touch"; "/new"];
506        ["touch"; "/newer"];
507        ["touch"; "/newest"];
508        ["ls"; "/"]], ["lost+found"; "new"; "newer"; "newest"])],
509    "list the files in a directory",
510    "\
511 List the files in C<directory> (relative to the root directory,
512 there is no cwd).  The '.' and '..' entries are not returned, but
513 hidden files are shown.
514
515 This command is mostly useful for interactive sessions.  Programs
516 should probably use C<guestfs_readdir> instead.");
517
518   ("list_devices", (RStringList "devices", []), 7, [],
519    [InitEmpty, TestOutputList (
520       [["list_devices"]], ["/dev/sda"; "/dev/sdb"; "/dev/sdc"])],
521    "list the block devices",
522    "\
523 List all the block devices.
524
525 The full block device names are returned, eg. C</dev/sda>");
526
527   ("list_partitions", (RStringList "partitions", []), 8, [],
528    [InitBasicFS, TestOutputList (
529       [["list_partitions"]], ["/dev/sda1"]);
530     InitEmpty, TestOutputList (
531       [["sfdisk"; "/dev/sda"; "0"; "0"; "0"; ",10 ,20 ,"];
532        ["list_partitions"]], ["/dev/sda1"; "/dev/sda2"; "/dev/sda3"])],
533    "list the partitions",
534    "\
535 List all the partitions detected on all block devices.
536
537 The full partition device names are returned, eg. C</dev/sda1>
538
539 This does not return logical volumes.  For that you will need to
540 call C<guestfs_lvs>.");
541
542   ("pvs", (RStringList "physvols", []), 9, [],
543    [InitBasicFSonLVM, TestOutputList (
544       [["pvs"]], ["/dev/sda1"]);
545     InitEmpty, TestOutputList (
546       [["sfdisk"; "/dev/sda"; "0"; "0"; "0"; ",10 ,20 ,"];
547        ["pvcreate"; "/dev/sda1"];
548        ["pvcreate"; "/dev/sda2"];
549        ["pvcreate"; "/dev/sda3"];
550        ["pvs"]], ["/dev/sda1"; "/dev/sda2"; "/dev/sda3"])],
551    "list the LVM physical volumes (PVs)",
552    "\
553 List all the physical volumes detected.  This is the equivalent
554 of the L<pvs(8)> command.
555
556 This returns a list of just the device names that contain
557 PVs (eg. C</dev/sda2>).
558
559 See also C<guestfs_pvs_full>.");
560
561   ("vgs", (RStringList "volgroups", []), 10, [],
562    [InitBasicFSonLVM, TestOutputList (
563       [["vgs"]], ["VG"]);
564     InitEmpty, TestOutputList (
565       [["sfdisk"; "/dev/sda"; "0"; "0"; "0"; ",10 ,20 ,"];
566        ["pvcreate"; "/dev/sda1"];
567        ["pvcreate"; "/dev/sda2"];
568        ["pvcreate"; "/dev/sda3"];
569        ["vgcreate"; "VG1"; "/dev/sda1 /dev/sda2"];
570        ["vgcreate"; "VG2"; "/dev/sda3"];
571        ["vgs"]], ["VG1"; "VG2"])],
572    "list the LVM volume groups (VGs)",
573    "\
574 List all the volumes groups detected.  This is the equivalent
575 of the L<vgs(8)> command.
576
577 This returns a list of just the volume group names that were
578 detected (eg. C<VolGroup00>).
579
580 See also C<guestfs_vgs_full>.");
581
582   ("lvs", (RStringList "logvols", []), 11, [],
583    [InitBasicFSonLVM, TestOutputList (
584       [["lvs"]], ["/dev/VG/LV"]);
585     InitEmpty, TestOutputList (
586       [["sfdisk"; "/dev/sda"; "0"; "0"; "0"; ",10 ,20 ,"];
587        ["pvcreate"; "/dev/sda1"];
588        ["pvcreate"; "/dev/sda2"];
589        ["pvcreate"; "/dev/sda3"];
590        ["vgcreate"; "VG1"; "/dev/sda1 /dev/sda2"];
591        ["vgcreate"; "VG2"; "/dev/sda3"];
592        ["lvcreate"; "LV1"; "VG1"; "50"];
593        ["lvcreate"; "LV2"; "VG1"; "50"];
594        ["lvcreate"; "LV3"; "VG2"; "50"];
595        ["lvs"]], ["/dev/VG1/LV1"; "/dev/VG1/LV2"; "/dev/VG2/LV3"])],
596    "list the LVM logical volumes (LVs)",
597    "\
598 List all the logical volumes detected.  This is the equivalent
599 of the L<lvs(8)> command.
600
601 This returns a list of the logical volume device names
602 (eg. C</dev/VolGroup00/LogVol00>).
603
604 See also C<guestfs_lvs_full>.");
605
606   ("pvs_full", (RPVList "physvols", []), 12, [],
607    [], (* XXX how to test? *)
608    "list the LVM physical volumes (PVs)",
609    "\
610 List all the physical volumes detected.  This is the equivalent
611 of the L<pvs(8)> command.  The \"full\" version includes all fields.");
612
613   ("vgs_full", (RVGList "volgroups", []), 13, [],
614    [], (* XXX how to test? *)
615    "list the LVM volume groups (VGs)",
616    "\
617 List all the volumes groups detected.  This is the equivalent
618 of the L<vgs(8)> command.  The \"full\" version includes all fields.");
619
620   ("lvs_full", (RLVList "logvols", []), 14, [],
621    [], (* XXX how to test? *)
622    "list the LVM logical volumes (LVs)",
623    "\
624 List all the logical volumes detected.  This is the equivalent
625 of the L<lvs(8)> command.  The \"full\" version includes all fields.");
626
627   ("read_lines", (RStringList "lines", [String "path"]), 15, [],
628    [InitBasicFS, TestOutputList (
629       [["write_file"; "/new"; "line1\r\nline2\nline3"; "0"];
630        ["read_lines"; "/new"]], ["line1"; "line2"; "line3"]);
631     InitBasicFS, TestOutputList (
632       [["write_file"; "/new"; ""; "0"];
633        ["read_lines"; "/new"]], [])],
634    "read file as lines",
635    "\
636 Return the contents of the file named C<path>.
637
638 The file contents are returned as a list of lines.  Trailing
639 C<LF> and C<CRLF> character sequences are I<not> returned.
640
641 Note that this function cannot correctly handle binary files
642 (specifically, files containing C<\\0> character which is treated
643 as end of line).  For those you need to use the C<guestfs_read_file>
644 function which has a more complex interface.");
645
646   ("aug_init", (RErr, [String "root"; Int "flags"]), 16, [],
647    [], (* XXX Augeas code needs tests. *)
648    "create a new Augeas handle",
649    "\
650 Create a new Augeas handle for editing configuration files.
651 If there was any previous Augeas handle associated with this
652 guestfs session, then it is closed.
653
654 You must call this before using any other C<guestfs_aug_*>
655 commands.
656
657 C<root> is the filesystem root.  C<root> must not be NULL,
658 use C</> instead.
659
660 The flags are the same as the flags defined in
661 E<lt>augeas.hE<gt>, the logical I<or> of the following
662 integers:
663
664 =over 4
665
666 =item C<AUG_SAVE_BACKUP> = 1
667
668 Keep the original file with a C<.augsave> extension.
669
670 =item C<AUG_SAVE_NEWFILE> = 2
671
672 Save changes into a file with extension C<.augnew>, and
673 do not overwrite original.  Overrides C<AUG_SAVE_BACKUP>.
674
675 =item C<AUG_TYPE_CHECK> = 4
676
677 Typecheck lenses (can be expensive).
678
679 =item C<AUG_NO_STDINC> = 8
680
681 Do not use standard load path for modules.
682
683 =item C<AUG_SAVE_NOOP> = 16
684
685 Make save a no-op, just record what would have been changed.
686
687 =item C<AUG_NO_LOAD> = 32
688
689 Do not load the tree in C<guestfs_aug_init>.
690
691 =back
692
693 To close the handle, you can call C<guestfs_aug_close>.
694
695 To find out more about Augeas, see L<http://augeas.net/>.");
696
697   ("aug_close", (RErr, []), 26, [],
698    [], (* XXX Augeas code needs tests. *)
699    "close the current Augeas handle",
700    "\
701 Close the current Augeas handle and free up any resources
702 used by it.  After calling this, you have to call
703 C<guestfs_aug_init> again before you can use any other
704 Augeas functions.");
705
706   ("aug_defvar", (RInt "nrnodes", [String "name"; OptString "expr"]), 17, [],
707    [], (* XXX Augeas code needs tests. *)
708    "define an Augeas variable",
709    "\
710 Defines an Augeas variable C<name> whose value is the result
711 of evaluating C<expr>.  If C<expr> is NULL, then C<name> is
712 undefined.
713
714 On success this returns the number of nodes in C<expr>, or
715 C<0> if C<expr> evaluates to something which is not a nodeset.");
716
717   ("aug_defnode", (RIntBool ("nrnodes", "created"), [String "name"; String "expr"; String "val"]), 18, [],
718    [], (* XXX Augeas code needs tests. *)
719    "define an Augeas node",
720    "\
721 Defines a variable C<name> whose value is the result of
722 evaluating C<expr>.
723
724 If C<expr> evaluates to an empty nodeset, a node is created,
725 equivalent to calling C<guestfs_aug_set> C<expr>, C<value>.
726 C<name> will be the nodeset containing that single node.
727
728 On success this returns a pair containing the
729 number of nodes in the nodeset, and a boolean flag
730 if a node was created.");
731
732   ("aug_get", (RString "val", [String "path"]), 19, [],
733    [], (* XXX Augeas code needs tests. *)
734    "look up the value of an Augeas path",
735    "\
736 Look up the value associated with C<path>.  If C<path>
737 matches exactly one node, the C<value> is returned.");
738
739   ("aug_set", (RErr, [String "path"; String "val"]), 20, [],
740    [], (* XXX Augeas code needs tests. *)
741    "set Augeas path to value",
742    "\
743 Set the value associated with C<path> to C<value>.");
744
745   ("aug_insert", (RErr, [String "path"; String "label"; Bool "before"]), 21, [],
746    [], (* XXX Augeas code needs tests. *)
747    "insert a sibling Augeas node",
748    "\
749 Create a new sibling C<label> for C<path>, inserting it into
750 the tree before or after C<path> (depending on the boolean
751 flag C<before>).
752
753 C<path> must match exactly one existing node in the tree, and
754 C<label> must be a label, ie. not contain C</>, C<*> or end
755 with a bracketed index C<[N]>.");
756
757   ("aug_rm", (RInt "nrnodes", [String "path"]), 22, [],
758    [], (* XXX Augeas code needs tests. *)
759    "remove an Augeas path",
760    "\
761 Remove C<path> and all of its children.
762
763 On success this returns the number of entries which were removed.");
764
765   ("aug_mv", (RErr, [String "src"; String "dest"]), 23, [],
766    [], (* XXX Augeas code needs tests. *)
767    "move Augeas node",
768    "\
769 Move the node C<src> to C<dest>.  C<src> must match exactly
770 one node.  C<dest> is overwritten if it exists.");
771
772   ("aug_match", (RStringList "matches", [String "path"]), 24, [],
773    [], (* XXX Augeas code needs tests. *)
774    "return Augeas nodes which match path",
775    "\
776 Returns a list of paths which match the path expression C<path>.
777 The returned paths are sufficiently qualified so that they match
778 exactly one node in the current tree.");
779
780   ("aug_save", (RErr, []), 25, [],
781    [], (* XXX Augeas code needs tests. *)
782    "write all pending Augeas changes to disk",
783    "\
784 This writes all pending changes to disk.
785
786 The flags which were passed to C<guestfs_aug_init> affect exactly
787 how files are saved.");
788
789   ("aug_load", (RErr, []), 27, [],
790    [], (* XXX Augeas code needs tests. *)
791    "load files into the tree",
792    "\
793 Load files into the tree.
794
795 See C<aug_load> in the Augeas documentation for the full gory
796 details.");
797
798   ("aug_ls", (RStringList "matches", [String "path"]), 28, [],
799    [], (* XXX Augeas code needs tests. *)
800    "list Augeas nodes under a path",
801    "\
802 This is just a shortcut for listing C<guestfs_aug_match>
803 C<path/*> and sorting the resulting nodes into alphabetical order.");
804
805   ("rm", (RErr, [String "path"]), 29, [],
806    [InitBasicFS, TestRun
807       [["touch"; "/new"];
808        ["rm"; "/new"]];
809     InitBasicFS, TestLastFail
810       [["rm"; "/new"]];
811     InitBasicFS, TestLastFail
812       [["mkdir"; "/new"];
813        ["rm"; "/new"]]],
814    "remove a file",
815    "\
816 Remove the single file C<path>.");
817
818   ("rmdir", (RErr, [String "path"]), 30, [],
819    [InitBasicFS, TestRun
820       [["mkdir"; "/new"];
821        ["rmdir"; "/new"]];
822     InitBasicFS, TestLastFail
823       [["rmdir"; "/new"]];
824     InitBasicFS, TestLastFail
825       [["touch"; "/new"];
826        ["rmdir"; "/new"]]],
827    "remove a directory",
828    "\
829 Remove the single directory C<path>.");
830
831   ("rm_rf", (RErr, [String "path"]), 31, [],
832    [InitBasicFS, TestOutputFalse
833       [["mkdir"; "/new"];
834        ["mkdir"; "/new/foo"];
835        ["touch"; "/new/foo/bar"];
836        ["rm_rf"; "/new"];
837        ["exists"; "/new"]]],
838    "remove a file or directory recursively",
839    "\
840 Remove the file or directory C<path>, recursively removing the
841 contents if its a directory.  This is like the C<rm -rf> shell
842 command.");
843
844   ("mkdir", (RErr, [String "path"]), 32, [],
845    [InitBasicFS, TestOutputTrue
846       [["mkdir"; "/new"];
847        ["is_dir"; "/new"]];
848     InitBasicFS, TestLastFail
849       [["mkdir"; "/new/foo/bar"]]],
850    "create a directory",
851    "\
852 Create a directory named C<path>.");
853
854   ("mkdir_p", (RErr, [String "path"]), 33, [],
855    [InitBasicFS, TestOutputTrue
856       [["mkdir_p"; "/new/foo/bar"];
857        ["is_dir"; "/new/foo/bar"]];
858     InitBasicFS, TestOutputTrue
859       [["mkdir_p"; "/new/foo/bar"];
860        ["is_dir"; "/new/foo"]];
861     InitBasicFS, TestOutputTrue
862       [["mkdir_p"; "/new/foo/bar"];
863        ["is_dir"; "/new"]]],
864    "create a directory and parents",
865    "\
866 Create a directory named C<path>, creating any parent directories
867 as necessary.  This is like the C<mkdir -p> shell command.");
868
869   ("chmod", (RErr, [Int "mode"; String "path"]), 34, [],
870    [], (* XXX Need stat command to test *)
871    "change file mode",
872    "\
873 Change the mode (permissions) of C<path> to C<mode>.  Only
874 numeric modes are supported.");
875
876   ("chown", (RErr, [Int "owner"; Int "group"; String "path"]), 35, [],
877    [], (* XXX Need stat command to test *)
878    "change file owner and group",
879    "\
880 Change the file owner to C<owner> and group to C<group>.
881
882 Only numeric uid and gid are supported.  If you want to use
883 names, you will need to locate and parse the password file
884 yourself (Augeas support makes this relatively easy).");
885
886   ("exists", (RBool "existsflag", [String "path"]), 36, [],
887    [InitBasicFS, TestOutputTrue (
888       [["touch"; "/new"];
889        ["exists"; "/new"]]);
890     InitBasicFS, TestOutputTrue (
891       [["mkdir"; "/new"];
892        ["exists"; "/new"]])],
893    "test if file or directory exists",
894    "\
895 This returns C<true> if and only if there is a file, directory
896 (or anything) with the given C<path> name.
897
898 See also C<guestfs_is_file>, C<guestfs_is_dir>, C<guestfs_stat>.");
899
900   ("is_file", (RBool "fileflag", [String "path"]), 37, [],
901    [InitBasicFS, TestOutputTrue (
902       [["touch"; "/new"];
903        ["is_file"; "/new"]]);
904     InitBasicFS, TestOutputFalse (
905       [["mkdir"; "/new"];
906        ["is_file"; "/new"]])],
907    "test if file exists",
908    "\
909 This returns C<true> if and only if there is a file
910 with the given C<path> name.  Note that it returns false for
911 other objects like directories.
912
913 See also C<guestfs_stat>.");
914
915   ("is_dir", (RBool "dirflag", [String "path"]), 38, [],
916    [InitBasicFS, TestOutputFalse (
917       [["touch"; "/new"];
918        ["is_dir"; "/new"]]);
919     InitBasicFS, TestOutputTrue (
920       [["mkdir"; "/new"];
921        ["is_dir"; "/new"]])],
922    "test if file exists",
923    "\
924 This returns C<true> if and only if there is a directory
925 with the given C<path> name.  Note that it returns false for
926 other objects like files.
927
928 See also C<guestfs_stat>.");
929
930   ("pvcreate", (RErr, [String "device"]), 39, [],
931    [InitEmpty, TestOutputList (
932       [["sfdisk"; "/dev/sda"; "0"; "0"; "0"; ",10 ,20 ,"];
933        ["pvcreate"; "/dev/sda1"];
934        ["pvcreate"; "/dev/sda2"];
935        ["pvcreate"; "/dev/sda3"];
936        ["pvs"]], ["/dev/sda1"; "/dev/sda2"; "/dev/sda3"])],
937    "create an LVM physical volume",
938    "\
939 This creates an LVM physical volume on the named C<device>,
940 where C<device> should usually be a partition name such
941 as C</dev/sda1>.");
942
943   ("vgcreate", (RErr, [String "volgroup"; StringList "physvols"]), 40, [],
944    [InitEmpty, TestOutputList (
945       [["sfdisk"; "/dev/sda"; "0"; "0"; "0"; ",10 ,20 ,"];
946        ["pvcreate"; "/dev/sda1"];
947        ["pvcreate"; "/dev/sda2"];
948        ["pvcreate"; "/dev/sda3"];
949        ["vgcreate"; "VG1"; "/dev/sda1 /dev/sda2"];
950        ["vgcreate"; "VG2"; "/dev/sda3"];
951        ["vgs"]], ["VG1"; "VG2"])],
952    "create an LVM volume group",
953    "\
954 This creates an LVM volume group called C<volgroup>
955 from the non-empty list of physical volumes C<physvols>.");
956
957   ("lvcreate", (RErr, [String "logvol"; String "volgroup"; Int "mbytes"]), 41, [],
958    [InitEmpty, TestOutputList (
959       [["sfdisk"; "/dev/sda"; "0"; "0"; "0"; ",10 ,20 ,"];
960        ["pvcreate"; "/dev/sda1"];
961        ["pvcreate"; "/dev/sda2"];
962        ["pvcreate"; "/dev/sda3"];
963        ["vgcreate"; "VG1"; "/dev/sda1 /dev/sda2"];
964        ["vgcreate"; "VG2"; "/dev/sda3"];
965        ["lvcreate"; "LV1"; "VG1"; "50"];
966        ["lvcreate"; "LV2"; "VG1"; "50"];
967        ["lvcreate"; "LV3"; "VG2"; "50"];
968        ["lvcreate"; "LV4"; "VG2"; "50"];
969        ["lvcreate"; "LV5"; "VG2"; "50"];
970        ["lvs"]],
971       ["/dev/VG1/LV1"; "/dev/VG1/LV2";
972        "/dev/VG2/LV3"; "/dev/VG2/LV4"; "/dev/VG2/LV5"])],
973    "create an LVM volume group",
974    "\
975 This creates an LVM volume group called C<logvol>
976 on the volume group C<volgroup>, with C<size> megabytes.");
977
978   ("mkfs", (RErr, [String "fstype"; String "device"]), 42, [],
979    [InitEmpty, TestOutput (
980       [["sfdisk"; "/dev/sda"; "0"; "0"; "0"; ","];
981        ["mkfs"; "ext2"; "/dev/sda1"];
982        ["mount"; "/dev/sda1"; "/"];
983        ["write_file"; "/new"; "new file contents"; "0"];
984        ["cat"; "/new"]], "new file contents")],
985    "make a filesystem",
986    "\
987 This creates a filesystem on C<device> (usually a partition
988 of LVM logical volume).  The filesystem type is C<fstype>, for
989 example C<ext3>.");
990
991   ("sfdisk", (RErr, [String "device";
992                      Int "cyls"; Int "heads"; Int "sectors";
993                      StringList "lines"]), 43, [DangerWillRobinson],
994    [],
995    "create partitions on a block device",
996    "\
997 This is a direct interface to the L<sfdisk(8)> program for creating
998 partitions on block devices.
999
1000 C<device> should be a block device, for example C</dev/sda>.
1001
1002 C<cyls>, C<heads> and C<sectors> are the number of cylinders, heads
1003 and sectors on the device, which are passed directly to sfdisk as
1004 the I<-C>, I<-H> and I<-S> parameters.  If you pass C<0> for any
1005 of these, then the corresponding parameter is omitted.  Usually for
1006 'large' disks, you can just pass C<0> for these, but for small
1007 (floppy-sized) disks, sfdisk (or rather, the kernel) cannot work
1008 out the right geometry and you will need to tell it.
1009
1010 C<lines> is a list of lines that we feed to C<sfdisk>.  For more
1011 information refer to the L<sfdisk(8)> manpage.
1012
1013 To create a single partition occupying the whole disk, you would
1014 pass C<lines> as a single element list, when the single element being
1015 the string C<,> (comma).");
1016
1017   ("write_file", (RErr, [String "path"; String "content"; Int "size"]), 44, [ProtocolLimitWarning],
1018    [InitBasicFS, TestOutput (
1019       [["write_file"; "/new"; "new file contents"; "0"];
1020        ["cat"; "/new"]], "new file contents");
1021     InitBasicFS, TestOutput (
1022       [["write_file"; "/new"; "\nnew file contents\n"; "0"];
1023        ["cat"; "/new"]], "\nnew file contents\n");
1024     InitBasicFS, TestOutput (
1025       [["write_file"; "/new"; "\n\n"; "0"];
1026        ["cat"; "/new"]], "\n\n");
1027     InitBasicFS, TestOutput (
1028       [["write_file"; "/new"; ""; "0"];
1029        ["cat"; "/new"]], "");
1030     InitBasicFS, TestOutput (
1031       [["write_file"; "/new"; "\n\n\n"; "0"];
1032        ["cat"; "/new"]], "\n\n\n");
1033     InitBasicFS, TestOutput (
1034       [["write_file"; "/new"; "\n"; "0"];
1035        ["cat"; "/new"]], "\n")],
1036    "create a file",
1037    "\
1038 This call creates a file called C<path>.  The contents of the
1039 file is the string C<content> (which can contain any 8 bit data),
1040 with length C<size>.
1041
1042 As a special case, if C<size> is C<0>
1043 then the length is calculated using C<strlen> (so in this case
1044 the content cannot contain embedded ASCII NULs).");
1045
1046   ("umount", (RErr, [String "pathordevice"]), 45, [FishAlias "unmount"],
1047    [InitEmpty, TestOutputList (
1048       [["sfdisk"; "/dev/sda"; "0"; "0"; "0"; ","];
1049        ["mkfs"; "ext2"; "/dev/sda1"];
1050        ["mount"; "/dev/sda1"; "/"];
1051        ["mounts"]], ["/dev/sda1"]);
1052     InitEmpty, TestOutputList (
1053       [["sfdisk"; "/dev/sda"; "0"; "0"; "0"; ","];
1054        ["mkfs"; "ext2"; "/dev/sda1"];
1055        ["mount"; "/dev/sda1"; "/"];
1056        ["umount"; "/"];
1057        ["mounts"]], [])],
1058    "unmount a filesystem",
1059    "\
1060 This unmounts the given filesystem.  The filesystem may be
1061 specified either by its mountpoint (path) or the device which
1062 contains the filesystem.");
1063
1064   ("mounts", (RStringList "devices", []), 46, [],
1065    [InitBasicFS, TestOutputList (
1066       [["mounts"]], ["/dev/sda1"])],
1067    "show mounted filesystems",
1068    "\
1069 This returns the list of currently mounted filesystems.  It returns
1070 the list of devices (eg. C</dev/sda1>, C</dev/VG/LV>).
1071
1072 Some internal mounts are not shown.");
1073
1074   ("umount_all", (RErr, []), 47, [FishAlias "unmount-all"],
1075    [InitBasicFS, TestOutputList (
1076       [["umount_all"];
1077        ["mounts"]], [])],
1078    "unmount all filesystems",
1079    "\
1080 This unmounts all mounted filesystems.
1081
1082 Some internal mounts are not unmounted by this call.");
1083
1084   ("lvm_remove_all", (RErr, []), 48, [DangerWillRobinson],
1085    [],
1086    "remove all LVM LVs, VGs and PVs",
1087    "\
1088 This command removes all LVM logical volumes, volume groups
1089 and physical volumes.");
1090
1091   ("file", (RString "description", [String "path"]), 49, [],
1092    [InitBasicFS, TestOutput (
1093       [["touch"; "/new"];
1094        ["file"; "/new"]], "empty");
1095     InitBasicFS, TestOutput (
1096       [["write_file"; "/new"; "some content\n"; "0"];
1097        ["file"; "/new"]], "ASCII text");
1098     InitBasicFS, TestLastFail (
1099       [["file"; "/nofile"]])],
1100    "determine file type",
1101    "\
1102 This call uses the standard L<file(1)> command to determine
1103 the type or contents of the file.  This also works on devices,
1104 for example to find out whether a partition contains a filesystem.
1105
1106 The exact command which runs is C<file -bsL path>.  Note in
1107 particular that the filename is not prepended to the output
1108 (the C<-b> option).");
1109
1110   ("command", (RString "output", [StringList "arguments"]), 50, [],
1111    [], (* XXX how to test? *)
1112    "run a command from the guest filesystem",
1113    "\
1114 This call runs a command from the guest filesystem.  The
1115 filesystem must be mounted, and must contain a compatible
1116 operating system (ie. something Linux, with the same
1117 or compatible processor architecture).
1118
1119 The single parameter is an argv-style list of arguments.
1120 The first element is the name of the program to run.
1121 Subsequent elements are parameters.  The list must be
1122 non-empty (ie. must contain a program name).
1123
1124 The C<$PATH> environment variable will contain at least
1125 C</usr/bin> and C</bin>.  If you require a program from
1126 another location, you should provide the full path in the
1127 first parameter.
1128
1129 Shared libraries and data files required by the program
1130 must be available on filesystems which are mounted in the
1131 correct places.  It is the caller's responsibility to ensure
1132 all filesystems that are needed are mounted at the right
1133 locations.");
1134
1135   ("command_lines", (RStringList "lines", [StringList "arguments"]), 51, [],
1136    [], (* XXX how to test? *)
1137    "run a command, returning lines",
1138    "\
1139 This is the same as C<guestfs_command>, but splits the
1140 result into a list of lines.");
1141
1142   ("stat", (RStat "statbuf", [String "path"]), 52, [],
1143    [InitBasicFS, TestOutputStruct (
1144       [["touch"; "/new"];
1145        ["stat"; "/new"]], [CompareWithInt ("size", 0)])],
1146    "get file information",
1147    "\
1148 Returns file information for the given C<path>.
1149
1150 This is the same as the C<stat(2)> system call.");
1151
1152   ("lstat", (RStat "statbuf", [String "path"]), 53, [],
1153    [InitBasicFS, TestOutputStruct (
1154       [["touch"; "/new"];
1155        ["lstat"; "/new"]], [CompareWithInt ("size", 0)])],
1156    "get file information for a symbolic link",
1157    "\
1158 Returns file information for the given C<path>.
1159
1160 This is the same as C<guestfs_stat> except that if C<path>
1161 is a symbolic link, then the link is stat-ed, not the file it
1162 refers to.
1163
1164 This is the same as the C<lstat(2)> system call.");
1165
1166   ("statvfs", (RStatVFS "statbuf", [String "path"]), 54, [],
1167    [InitBasicFS, TestOutputStruct (
1168       [["statvfs"; "/"]], [CompareWithInt ("bfree", 487702);
1169                            CompareWithInt ("blocks", 490020);
1170                            CompareWithInt ("bsize", 1024)])],
1171    "get file system statistics",
1172    "\
1173 Returns file system statistics for any mounted file system.
1174 C<path> should be a file or directory in the mounted file system
1175 (typically it is the mount point itself, but it doesn't need to be).
1176
1177 This is the same as the C<statvfs(2)> system call.");
1178
1179   ("tune2fs_l", (RHashtable "superblock", [String "device"]), 55, [],
1180    [], (* XXX test *)
1181    "get ext2/ext3 superblock details",
1182    "\
1183 This returns the contents of the ext2 or ext3 filesystem superblock
1184 on C<device>.
1185
1186 It is the same as running C<tune2fs -l device>.  See L<tune2fs(8)>
1187 manpage for more details.  The list of fields returned isn't
1188 clearly defined, and depends on both the version of C<tune2fs>
1189 that libguestfs was built against, and the filesystem itself.");
1190
1191   ("blockdev_setro", (RErr, [String "device"]), 56, [],
1192    [InitEmpty, TestOutputTrue (
1193       [["blockdev_setro"; "/dev/sda"];
1194        ["blockdev_getro"; "/dev/sda"]])],
1195    "set block device to read-only",
1196    "\
1197 Sets the block device named C<device> to read-only.
1198
1199 This uses the L<blockdev(8)> command.");
1200
1201   ("blockdev_setrw", (RErr, [String "device"]), 57, [],
1202    [InitEmpty, TestOutputFalse (
1203       [["blockdev_setrw"; "/dev/sda"];
1204        ["blockdev_getro"; "/dev/sda"]])],
1205    "set block device to read-write",
1206    "\
1207 Sets the block device named C<device> to read-write.
1208
1209 This uses the L<blockdev(8)> command.");
1210
1211   ("blockdev_getro", (RBool "ro", [String "device"]), 58, [],
1212    [InitEmpty, TestOutputTrue (
1213       [["blockdev_setro"; "/dev/sda"];
1214        ["blockdev_getro"; "/dev/sda"]])],
1215    "is block device set to read-only",
1216    "\
1217 Returns a boolean indicating if the block device is read-only
1218 (true if read-only, false if not).
1219
1220 This uses the L<blockdev(8)> command.");
1221
1222   ("blockdev_getss", (RInt "sectorsize", [String "device"]), 59, [],
1223    [InitEmpty, TestOutputInt (
1224       [["blockdev_getss"; "/dev/sda"]], 512)],
1225    "get sectorsize of block device",
1226    "\
1227 This returns the size of sectors on a block device.
1228 Usually 512, but can be larger for modern devices.
1229
1230 (Note, this is not the size in sectors, use C<guestfs_blockdev_getsz>
1231 for that).
1232
1233 This uses the L<blockdev(8)> command.");
1234
1235   ("blockdev_getbsz", (RInt "blocksize", [String "device"]), 60, [],
1236    [InitEmpty, TestOutputInt (
1237       [["blockdev_getbsz"; "/dev/sda"]], 4096)],
1238    "get blocksize of block device",
1239    "\
1240 This returns the block size of a device.
1241
1242 (Note this is different from both I<size in blocks> and
1243 I<filesystem block size>).
1244
1245 This uses the L<blockdev(8)> command.");
1246
1247   ("blockdev_setbsz", (RErr, [String "device"; Int "blocksize"]), 61, [],
1248    [], (* XXX test *)
1249    "set blocksize of block device",
1250    "\
1251 This sets the block size of a device.
1252
1253 (Note this is different from both I<size in blocks> and
1254 I<filesystem block size>).
1255
1256 This uses the L<blockdev(8)> command.");
1257
1258   ("blockdev_getsz", (RInt64 "sizeinsectors", [String "device"]), 62, [],
1259    [InitEmpty, TestOutputInt (
1260       [["blockdev_getsz"; "/dev/sda"]], 1024000)],
1261    "get total size of device in 512-byte sectors",
1262    "\
1263 This returns the size of the device in units of 512-byte sectors
1264 (even if the sectorsize isn't 512 bytes ... weird).
1265
1266 See also C<guestfs_blockdev_getss> for the real sector size of
1267 the device, and C<guestfs_blockdev_getsize64> for the more
1268 useful I<size in bytes>.
1269
1270 This uses the L<blockdev(8)> command.");
1271
1272   ("blockdev_getsize64", (RInt64 "sizeinbytes", [String "device"]), 63, [],
1273    [InitEmpty, TestOutputInt (
1274       [["blockdev_getsize64"; "/dev/sda"]], 524288000)],
1275    "get total size of device in bytes",
1276    "\
1277 This returns the size of the device in bytes.
1278
1279 See also C<guestfs_blockdev_getsz>.
1280
1281 This uses the L<blockdev(8)> command.");
1282
1283   ("blockdev_flushbufs", (RErr, [String "device"]), 64, [],
1284    [InitEmpty, TestRun
1285       [["blockdev_flushbufs"; "/dev/sda"]]],
1286    "flush device buffers",
1287    "\
1288 This tells the kernel to flush internal buffers associated
1289 with C<device>.
1290
1291 This uses the L<blockdev(8)> command.");
1292
1293   ("blockdev_rereadpt", (RErr, [String "device"]), 65, [],
1294    [InitEmpty, TestRun
1295       [["blockdev_rereadpt"; "/dev/sda"]]],
1296    "reread partition table",
1297    "\
1298 Reread the partition table on C<device>.
1299
1300 This uses the L<blockdev(8)> command.");
1301
1302   ("upload", (RErr, [FileIn "filename"; String "remotefilename"]), 66, [],
1303    [InitBasicFS, TestOutput (
1304       (* Pick a file from cwd which isn't likely to change. *)
1305     [["upload"; "COPYING.LIB"; "/COPYING.LIB"];
1306      ["checksum"; "md5"; "/COPYING.LIB"]], "e3eda01d9815f8d24aae2dbd89b68b06")],
1307    "upload a file from the local machine",
1308    "\
1309 Upload local file C<filename> to C<remotefilename> on the
1310 filesystem.
1311
1312 C<filename> can also be a named pipe.
1313
1314 See also C<guestfs_download>.");
1315
1316   ("download", (RErr, [String "remotefilename"; FileOut "filename"]), 67, [],
1317    [InitBasicFS, TestOutput (
1318       (* Pick a file from cwd which isn't likely to change. *)
1319     [["upload"; "COPYING.LIB"; "/COPYING.LIB"];
1320      ["download"; "/COPYING.LIB"; "testdownload.tmp"];
1321      ["upload"; "testdownload.tmp"; "/upload"];
1322      ["checksum"; "md5"; "/upload"]], "e3eda01d9815f8d24aae2dbd89b68b06")],
1323    "download a file to the local machine",
1324    "\
1325 Download file C<remotefilename> and save it as C<filename>
1326 on the local machine.
1327
1328 C<filename> can also be a named pipe.
1329
1330 See also C<guestfs_upload>, C<guestfs_cat>.");
1331
1332   ("checksum", (RString "checksum", [String "csumtype"; String "path"]), 68, [],
1333    [InitBasicFS, TestOutput (
1334       [["write_file"; "/new"; "test\n"; "0"];
1335        ["checksum"; "crc"; "/new"]], "935282863");
1336     InitBasicFS, TestLastFail (
1337       [["checksum"; "crc"; "/new"]]);
1338     InitBasicFS, TestOutput (
1339       [["write_file"; "/new"; "test\n"; "0"];
1340        ["checksum"; "md5"; "/new"]], "d8e8fca2dc0f896fd7cb4cb0031ba249");
1341     InitBasicFS, TestOutput (
1342       [["write_file"; "/new"; "test\n"; "0"];
1343        ["checksum"; "sha1"; "/new"]], "4e1243bd22c66e76c2ba9eddc1f91394e57f9f83");
1344     InitBasicFS, TestOutput (
1345       [["write_file"; "/new"; "test\n"; "0"];
1346        ["checksum"; "sha224"; "/new"]], "52f1bf093f4b7588726035c176c0cdb4376cfea53819f1395ac9e6ec");
1347     InitBasicFS, TestOutput (
1348       [["write_file"; "/new"; "test\n"; "0"];
1349        ["checksum"; "sha256"; "/new"]], "f2ca1bb6c7e907d06dafe4687e579fce76b37e4e93b7605022da52e6ccc26fd2");
1350     InitBasicFS, TestOutput (
1351       [["write_file"; "/new"; "test\n"; "0"];
1352        ["checksum"; "sha384"; "/new"]], "109bb6b5b6d5547c1ce03c7a8bd7d8f80c1cb0957f50c4f7fda04692079917e4f9cad52b878f3d8234e1a170b154b72d");
1353     InitBasicFS, TestOutput (
1354       [["write_file"; "/new"; "test\n"; "0"];
1355        ["checksum"; "sha512"; "/new"]], "0e3e75234abc68f4378a86b3f4b32a198ba301845b0cd6e50106e874345700cc6663a86c1ea125dc5e92be17c98f9a0f85ca9d5f595db2012f7cc3571945c123")],
1356    "compute MD5, SHAx or CRC checksum of file",
1357    "\
1358 This call computes the MD5, SHAx or CRC checksum of the
1359 file named C<path>.
1360
1361 The type of checksum to compute is given by the C<csumtype>
1362 parameter which must have one of the following values:
1363
1364 =over 4
1365
1366 =item C<crc>
1367
1368 Compute the cyclic redundancy check (CRC) specified by POSIX
1369 for the C<cksum> command.
1370
1371 =item C<md5>
1372
1373 Compute the MD5 hash (using the C<md5sum> program).
1374
1375 =item C<sha1>
1376
1377 Compute the SHA1 hash (using the C<sha1sum> program).
1378
1379 =item C<sha224>
1380
1381 Compute the SHA224 hash (using the C<sha224sum> program).
1382
1383 =item C<sha256>
1384
1385 Compute the SHA256 hash (using the C<sha256sum> program).
1386
1387 =item C<sha384>
1388
1389 Compute the SHA384 hash (using the C<sha384sum> program).
1390
1391 =item C<sha512>
1392
1393 Compute the SHA512 hash (using the C<sha512sum> program).
1394
1395 =back
1396
1397 The checksum is returned as a printable string.");
1398
1399   ("tar_in", (RErr, [FileIn "tarfile"; String "directory"]), 69, [],
1400    [InitBasicFS, TestOutput (
1401       [["tar_in"; "images/helloworld.tar"; "/"];
1402        ["cat"; "/hello"]], "hello\n")],
1403    "unpack tarfile to directory",
1404    "\
1405 This command uploads and unpacks local file C<tarfile> (an
1406 I<uncompressed> tar file) into C<directory>.
1407
1408 To upload a compressed tarball, use C<guestfs_tgz_in>.");
1409
1410   ("tar_out", (RErr, [String "directory"; FileOut "tarfile"]), 70, [],
1411    [],
1412    "pack directory into tarfile",
1413    "\
1414 This command packs the contents of C<directory> and downloads
1415 it to local file C<tarfile>.
1416
1417 To download a compressed tarball, use C<guestfs_tgz_out>.");
1418
1419   ("tgz_in", (RErr, [FileIn "tarball"; String "directory"]), 71, [],
1420    [InitBasicFS, TestOutput (
1421       [["tgz_in"; "images/helloworld.tar.gz"; "/"];
1422        ["cat"; "/hello"]], "hello\n")],
1423    "unpack compressed tarball to directory",
1424    "\
1425 This command uploads and unpacks local file C<tarball> (a
1426 I<gzip compressed> tar file) into C<directory>.
1427
1428 To upload an uncompressed tarball, use C<guestfs_tar_in>.");
1429
1430   ("tgz_out", (RErr, [String "directory"; FileOut "tarball"]), 72, [],
1431    [],
1432    "pack directory into compressed tarball",
1433    "\
1434 This command packs the contents of C<directory> and downloads
1435 it to local file C<tarball>.
1436
1437 To download an uncompressed tarball, use C<guestfs_tar_out>.");
1438
1439   ("mount_ro", (RErr, [String "device"; String "mountpoint"]), 73, [],
1440    [InitBasicFS, TestLastFail (
1441       [["umount"; "/"];
1442        ["mount_ro"; "/dev/sda1"; "/"];
1443        ["touch"; "/new"]]);
1444     InitBasicFS, TestOutput (
1445       [["write_file"; "/new"; "data"; "0"];
1446        ["umount"; "/"];
1447        ["mount_ro"; "/dev/sda1"; "/"];
1448        ["cat"; "/new"]], "data")],
1449    "mount a guest disk, read-only",
1450    "\
1451 This is the same as the C<guestfs_mount> command, but it
1452 mounts the filesystem with the read-only (I<-o ro>) flag.");
1453
1454   ("mount_options", (RErr, [String "options"; String "device"; String "mountpoint"]), 74, [],
1455    [],
1456    "mount a guest disk with mount options",
1457    "\
1458 This is the same as the C<guestfs_mount> command, but it
1459 allows you to set the mount options as for the
1460 L<mount(8)> I<-o> flag.");
1461
1462   ("mount_vfs", (RErr, [String "options"; String "vfstype"; String "device"; String "mountpoint"]), 75, [],
1463    [],
1464    "mount a guest disk with mount options and vfstype",
1465    "\
1466 This is the same as the C<guestfs_mount> command, but it
1467 allows you to set both the mount options and the vfstype
1468 as for the L<mount(8)> I<-o> and I<-t> flags.");
1469
1470   ("debug", (RString "result", [String "subcmd"; StringList "extraargs"]), 76, [],
1471    [],
1472    "debugging and internals",
1473    "\
1474 The C<guestfs_debug> command exposes some internals of
1475 C<guestfsd> (the guestfs daemon) that runs inside the
1476 qemu subprocess.
1477
1478 There is no comprehensive help for this command.  You have
1479 to look at the file C<daemon/debug.c> in the libguestfs source
1480 to find out what you can do.");
1481
1482 ]
1483
1484 let all_functions = non_daemon_functions @ daemon_functions
1485
1486 (* In some places we want the functions to be displayed sorted
1487  * alphabetically, so this is useful:
1488  *)
1489 let all_functions_sorted =
1490   List.sort (fun (n1,_,_,_,_,_,_) (n2,_,_,_,_,_,_) ->
1491                compare n1 n2) all_functions
1492
1493 (* Column names and types from LVM PVs/VGs/LVs. *)
1494 let pv_cols = [
1495   "pv_name", `String;
1496   "pv_uuid", `UUID;
1497   "pv_fmt", `String;
1498   "pv_size", `Bytes;
1499   "dev_size", `Bytes;
1500   "pv_free", `Bytes;
1501   "pv_used", `Bytes;
1502   "pv_attr", `String (* XXX *);
1503   "pv_pe_count", `Int;
1504   "pv_pe_alloc_count", `Int;
1505   "pv_tags", `String;
1506   "pe_start", `Bytes;
1507   "pv_mda_count", `Int;
1508   "pv_mda_free", `Bytes;
1509 (* Not in Fedora 10:
1510   "pv_mda_size", `Bytes;
1511 *)
1512 ]
1513 let vg_cols = [
1514   "vg_name", `String;
1515   "vg_uuid", `UUID;
1516   "vg_fmt", `String;
1517   "vg_attr", `String (* XXX *);
1518   "vg_size", `Bytes;
1519   "vg_free", `Bytes;
1520   "vg_sysid", `String;
1521   "vg_extent_size", `Bytes;
1522   "vg_extent_count", `Int;
1523   "vg_free_count", `Int;
1524   "max_lv", `Int;
1525   "max_pv", `Int;
1526   "pv_count", `Int;
1527   "lv_count", `Int;
1528   "snap_count", `Int;
1529   "vg_seqno", `Int;
1530   "vg_tags", `String;
1531   "vg_mda_count", `Int;
1532   "vg_mda_free", `Bytes;
1533 (* Not in Fedora 10:
1534   "vg_mda_size", `Bytes;
1535 *)
1536 ]
1537 let lv_cols = [
1538   "lv_name", `String;
1539   "lv_uuid", `UUID;
1540   "lv_attr", `String (* XXX *);
1541   "lv_major", `Int;
1542   "lv_minor", `Int;
1543   "lv_kernel_major", `Int;
1544   "lv_kernel_minor", `Int;
1545   "lv_size", `Bytes;
1546   "seg_count", `Int;
1547   "origin", `String;
1548   "snap_percent", `OptPercent;
1549   "copy_percent", `OptPercent;
1550   "move_pv", `String;
1551   "lv_tags", `String;
1552   "mirror_log", `String;
1553   "modules", `String;
1554 ]
1555
1556 (* Column names and types from stat structures.
1557  * NB. Can't use things like 'st_atime' because glibc header files
1558  * define some of these as macros.  Ugh.
1559  *)
1560 let stat_cols = [
1561   "dev", `Int;
1562   "ino", `Int;
1563   "mode", `Int;
1564   "nlink", `Int;
1565   "uid", `Int;
1566   "gid", `Int;
1567   "rdev", `Int;
1568   "size", `Int;
1569   "blksize", `Int;
1570   "blocks", `Int;
1571   "atime", `Int;
1572   "mtime", `Int;
1573   "ctime", `Int;
1574 ]
1575 let statvfs_cols = [
1576   "bsize", `Int;
1577   "frsize", `Int;
1578   "blocks", `Int;
1579   "bfree", `Int;
1580   "bavail", `Int;
1581   "files", `Int;
1582   "ffree", `Int;
1583   "favail", `Int;
1584   "fsid", `Int;
1585   "flag", `Int;
1586   "namemax", `Int;
1587 ]
1588
1589 (* Useful functions.
1590  * Note we don't want to use any external OCaml libraries which
1591  * makes this a bit harder than it should be.
1592  *)
1593 let failwithf fs = ksprintf failwith fs
1594
1595 let replace_char s c1 c2 =
1596   let s2 = String.copy s in
1597   let r = ref false in
1598   for i = 0 to String.length s2 - 1 do
1599     if String.unsafe_get s2 i = c1 then (
1600       String.unsafe_set s2 i c2;
1601       r := true
1602     )
1603   done;
1604   if not !r then s else s2
1605
1606 let isspace c =
1607   c = ' '
1608   (* || c = '\f' *) || c = '\n' || c = '\r' || c = '\t' (* || c = '\v' *)
1609
1610 let triml ?(test = isspace) str =
1611   let i = ref 0 in
1612   let n = ref (String.length str) in
1613   while !n > 0 && test str.[!i]; do
1614     decr n;
1615     incr i
1616   done;
1617   if !i = 0 then str
1618   else String.sub str !i !n
1619
1620 let trimr ?(test = isspace) str =
1621   let n = ref (String.length str) in
1622   while !n > 0 && test str.[!n-1]; do
1623     decr n
1624   done;
1625   if !n = String.length str then str
1626   else String.sub str 0 !n
1627
1628 let trim ?(test = isspace) str =
1629   trimr ~test (triml ~test str)
1630
1631 let rec find s sub =
1632   let len = String.length s in
1633   let sublen = String.length sub in
1634   let rec loop i =
1635     if i <= len-sublen then (
1636       let rec loop2 j =
1637         if j < sublen then (
1638           if s.[i+j] = sub.[j] then loop2 (j+1)
1639           else -1
1640         ) else
1641           i (* found *)
1642       in
1643       let r = loop2 0 in
1644       if r = -1 then loop (i+1) else r
1645     ) else
1646       -1 (* not found *)
1647   in
1648   loop 0
1649
1650 let rec replace_str s s1 s2 =
1651   let len = String.length s in
1652   let sublen = String.length s1 in
1653   let i = find s s1 in
1654   if i = -1 then s
1655   else (
1656     let s' = String.sub s 0 i in
1657     let s'' = String.sub s (i+sublen) (len-i-sublen) in
1658     s' ^ s2 ^ replace_str s'' s1 s2
1659   )
1660
1661 let rec string_split sep str =
1662   let len = String.length str in
1663   let seplen = String.length sep in
1664   let i = find str sep in
1665   if i = -1 then [str]
1666   else (
1667     let s' = String.sub str 0 i in
1668     let s'' = String.sub str (i+seplen) (len-i-seplen) in
1669     s' :: string_split sep s''
1670   )
1671
1672 let rec find_map f = function
1673   | [] -> raise Not_found
1674   | x :: xs ->
1675       match f x with
1676       | Some y -> y
1677       | None -> find_map f xs
1678
1679 let iteri f xs =
1680   let rec loop i = function
1681     | [] -> ()
1682     | x :: xs -> f i x; loop (i+1) xs
1683   in
1684   loop 0 xs
1685
1686 let mapi f xs =
1687   let rec loop i = function
1688     | [] -> []
1689     | x :: xs -> let r = f i x in r :: loop (i+1) xs
1690   in
1691   loop 0 xs
1692
1693 let name_of_argt = function
1694   | String n | OptString n | StringList n | Bool n | Int n
1695   | FileIn n | FileOut n -> n
1696
1697 let seq_of_test = function
1698   | TestRun s | TestOutput (s, _) | TestOutputList (s, _)
1699   | TestOutputInt (s, _) | TestOutputTrue s | TestOutputFalse s
1700   | TestOutputLength (s, _) | TestOutputStruct (s, _)
1701   | TestLastFail s -> s
1702
1703 (* Check function names etc. for consistency. *)
1704 let check_functions () =
1705   let contains_uppercase str =
1706     let len = String.length str in
1707     let rec loop i =
1708       if i >= len then false
1709       else (
1710         let c = str.[i] in
1711         if c >= 'A' && c <= 'Z' then true
1712         else loop (i+1)
1713       )
1714     in
1715     loop 0
1716   in
1717
1718   (* Check function names. *)
1719   List.iter (
1720     fun (name, _, _, _, _, _, _) ->
1721       if String.length name >= 7 && String.sub name 0 7 = "guestfs" then
1722         failwithf "function name %s does not need 'guestfs' prefix" name;
1723       if contains_uppercase name then
1724         failwithf "function name %s should not contain uppercase chars" name;
1725       if String.contains name '-' then
1726         failwithf "function name %s should not contain '-', use '_' instead."
1727           name
1728   ) all_functions;
1729
1730   (* Check function parameter/return names. *)
1731   List.iter (
1732     fun (name, style, _, _, _, _, _) ->
1733       let check_arg_ret_name n =
1734         if contains_uppercase n then
1735           failwithf "%s param/ret %s should not contain uppercase chars"
1736             name n;
1737         if String.contains n '-' || String.contains n '_' then
1738           failwithf "%s param/ret %s should not contain '-' or '_'"
1739             name n;
1740         if n = "value" then
1741           failwithf "%s has a param/ret called 'value', which causes conflicts in the OCaml bindings, use something like 'val' or a more descriptive name" n;
1742         if n = "argv" || n = "args" then
1743           failwithf "%s has a param/ret called 'argv' or 'args', which will cause some conflicts in the generated code" n
1744       in
1745
1746       (match fst style with
1747        | RErr -> ()
1748        | RInt n | RInt64 n | RBool n | RConstString n | RString n
1749        | RStringList n | RPVList n | RVGList n | RLVList n
1750        | RStat n | RStatVFS n
1751        | RHashtable n ->
1752            check_arg_ret_name n
1753        | RIntBool (n,m) ->
1754            check_arg_ret_name n;
1755            check_arg_ret_name m
1756       );
1757       List.iter (fun arg -> check_arg_ret_name (name_of_argt arg)) (snd style)
1758   ) all_functions;
1759
1760   (* Check short descriptions. *)
1761   List.iter (
1762     fun (name, _, _, _, _, shortdesc, _) ->
1763       if shortdesc.[0] <> Char.lowercase shortdesc.[0] then
1764         failwithf "short description of %s should begin with lowercase." name;
1765       let c = shortdesc.[String.length shortdesc-1] in
1766       if c = '\n' || c = '.' then
1767         failwithf "short description of %s should not end with . or \\n." name
1768   ) all_functions;
1769
1770   (* Check long dscriptions. *)
1771   List.iter (
1772     fun (name, _, _, _, _, _, longdesc) ->
1773       if longdesc.[String.length longdesc-1] = '\n' then
1774         failwithf "long description of %s should not end with \\n." name
1775   ) all_functions;
1776
1777   (* Check proc_nrs. *)
1778   List.iter (
1779     fun (name, _, proc_nr, _, _, _, _) ->
1780       if proc_nr <= 0 then
1781         failwithf "daemon function %s should have proc_nr > 0" name
1782   ) daemon_functions;
1783
1784   List.iter (
1785     fun (name, _, proc_nr, _, _, _, _) ->
1786       if proc_nr <> -1 then
1787         failwithf "non-daemon function %s should have proc_nr -1" name
1788   ) non_daemon_functions;
1789
1790   let proc_nrs =
1791     List.map (fun (name, _, proc_nr, _, _, _, _) -> name, proc_nr)
1792       daemon_functions in
1793   let proc_nrs =
1794     List.sort (fun (_,nr1) (_,nr2) -> compare nr1 nr2) proc_nrs in
1795   let rec loop = function
1796     | [] -> ()
1797     | [_] -> ()
1798     | (name1,nr1) :: ((name2,nr2) :: _ as rest) when nr1 < nr2 ->
1799         loop rest
1800     | (name1,nr1) :: (name2,nr2) :: _ ->
1801         failwithf "%s and %s have conflicting procedure numbers (%d, %d)"
1802           name1 name2 nr1 nr2
1803   in
1804   loop proc_nrs;
1805
1806   (* Check tests. *)
1807   List.iter (
1808     function
1809       (* Ignore functions that have no tests.  We generate a
1810        * warning when the user does 'make check' instead.
1811        *)
1812     | name, _, _, _, [], _, _ -> ()
1813     | name, _, _, _, tests, _, _ ->
1814         let funcs =
1815           List.map (
1816             fun (_, test) ->
1817               match seq_of_test test with
1818               | [] ->
1819                   failwithf "%s has a test containing an empty sequence" name
1820               | cmds -> List.map List.hd cmds
1821           ) tests in
1822         let funcs = List.flatten funcs in
1823
1824         let tested = List.mem name funcs in
1825
1826         if not tested then
1827           failwithf "function %s has tests but does not test itself" name
1828   ) all_functions
1829
1830 (* 'pr' prints to the current output file. *)
1831 let chan = ref stdout
1832 let pr fs = ksprintf (output_string !chan) fs
1833
1834 (* Generate a header block in a number of standard styles. *)
1835 type comment_style = CStyle | HashStyle | OCamlStyle
1836 type license = GPLv2 | LGPLv2
1837
1838 let generate_header comment license =
1839   let c = match comment with
1840     | CStyle ->     pr "/* "; " *"
1841     | HashStyle ->  pr "# ";  "#"
1842     | OCamlStyle -> pr "(* "; " *" in
1843   pr "libguestfs generated file\n";
1844   pr "%s WARNING: THIS FILE IS GENERATED BY 'src/generator.ml'.\n" c;
1845   pr "%s ANY CHANGES YOU MAKE TO THIS FILE WILL BE LOST.\n" c;
1846   pr "%s\n" c;
1847   pr "%s Copyright (C) 2009 Red Hat Inc.\n" c;
1848   pr "%s\n" c;
1849   (match license with
1850    | GPLv2 ->
1851        pr "%s This program is free software; you can redistribute it and/or modify\n" c;
1852        pr "%s it under the terms of the GNU General Public License as published by\n" c;
1853        pr "%s the Free Software Foundation; either version 2 of the License, or\n" c;
1854        pr "%s (at your option) any later version.\n" c;
1855        pr "%s\n" c;
1856        pr "%s This program is distributed in the hope that it will be useful,\n" c;
1857        pr "%s but WITHOUT ANY WARRANTY; without even the implied warranty of\n" c;
1858        pr "%s MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n" c;
1859        pr "%s GNU General Public License for more details.\n" c;
1860        pr "%s\n" c;
1861        pr "%s You should have received a copy of the GNU General Public License along\n" c;
1862        pr "%s with this program; if not, write to the Free Software Foundation, Inc.,\n" c;
1863        pr "%s 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.\n" c;
1864
1865    | LGPLv2 ->
1866        pr "%s This library is free software; you can redistribute it and/or\n" c;
1867        pr "%s modify it under the terms of the GNU Lesser General Public\n" c;
1868        pr "%s License as published by the Free Software Foundation; either\n" c;
1869        pr "%s version 2 of the License, or (at your option) any later version.\n" c;
1870        pr "%s\n" c;
1871        pr "%s This library is distributed in the hope that it will be useful,\n" c;
1872        pr "%s but WITHOUT ANY WARRANTY; without even the implied warranty of\n" c;
1873        pr "%s MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n" c;
1874        pr "%s Lesser General Public License for more details.\n" c;
1875        pr "%s\n" c;
1876        pr "%s You should have received a copy of the GNU Lesser General Public\n" c;
1877        pr "%s License along with this library; if not, write to the Free Software\n" c;
1878        pr "%s Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA\n" c;
1879   );
1880   (match comment with
1881    | CStyle -> pr " */\n"
1882    | HashStyle -> ()
1883    | OCamlStyle -> pr " *)\n"
1884   );
1885   pr "\n"
1886
1887 (* Start of main code generation functions below this line. *)
1888
1889 (* Generate the pod documentation for the C API. *)
1890 let rec generate_actions_pod () =
1891   List.iter (
1892     fun (shortname, style, _, flags, _, _, longdesc) ->
1893       let name = "guestfs_" ^ shortname in
1894       pr "=head2 %s\n\n" name;
1895       pr " ";
1896       generate_prototype ~extern:false ~handle:"handle" name style;
1897       pr "\n\n";
1898       pr "%s\n\n" longdesc;
1899       (match fst style with
1900        | RErr ->
1901            pr "This function returns 0 on success or -1 on error.\n\n"
1902        | RInt _ ->
1903            pr "On error this function returns -1.\n\n"
1904        | RInt64 _ ->
1905            pr "On error this function returns -1.\n\n"
1906        | RBool _ ->
1907            pr "This function returns a C truth value on success or -1 on error.\n\n"
1908        | RConstString _ ->
1909            pr "This function returns a string, or NULL on error.
1910 The string is owned by the guest handle and must I<not> be freed.\n\n"
1911        | RString _ ->
1912            pr "This function returns a string, or NULL on error.
1913 I<The caller must free the returned string after use>.\n\n"
1914        | RStringList _ ->
1915            pr "This function returns a NULL-terminated array of strings
1916 (like L<environ(3)>), or NULL if there was an error.
1917 I<The caller must free the strings and the array after use>.\n\n"
1918        | RIntBool _ ->
1919            pr "This function returns a C<struct guestfs_int_bool *>,
1920 or NULL if there was an error.
1921 I<The caller must call C<guestfs_free_int_bool> after use>.\n\n"
1922        | RPVList _ ->
1923            pr "This function returns a C<struct guestfs_lvm_pv_list *>
1924 (see E<lt>guestfs-structs.hE<gt>),
1925 or NULL if there was an error.
1926 I<The caller must call C<guestfs_free_lvm_pv_list> after use>.\n\n"
1927        | RVGList _ ->
1928            pr "This function returns a C<struct guestfs_lvm_vg_list *>
1929 (see E<lt>guestfs-structs.hE<gt>),
1930 or NULL if there was an error.
1931 I<The caller must call C<guestfs_free_lvm_vg_list> after use>.\n\n"
1932        | RLVList _ ->
1933            pr "This function returns a C<struct guestfs_lvm_lv_list *>
1934 (see E<lt>guestfs-structs.hE<gt>),
1935 or NULL if there was an error.
1936 I<The caller must call C<guestfs_free_lvm_lv_list> after use>.\n\n"
1937        | RStat _ ->
1938            pr "This function returns a C<struct guestfs_stat *>
1939 (see L<stat(2)> and E<lt>guestfs-structs.hE<gt>),
1940 or NULL if there was an error.
1941 I<The caller must call C<free> after use>.\n\n"
1942        | RStatVFS _ ->
1943            pr "This function returns a C<struct guestfs_statvfs *>
1944 (see L<statvfs(2)> and E<lt>guestfs-structs.hE<gt>),
1945 or NULL if there was an error.
1946 I<The caller must call C<free> after use>.\n\n"
1947        | RHashtable _ ->
1948            pr "This function returns a NULL-terminated array of
1949 strings, or NULL if there was an error.
1950 The array of strings will always have length C<2n+1>, where
1951 C<n> keys and values alternate, followed by the trailing NULL entry.
1952 I<The caller must free the strings and the array after use>.\n\n"
1953       );
1954       if List.mem ProtocolLimitWarning flags then
1955         pr "%s\n\n" protocol_limit_warning;
1956       if List.mem DangerWillRobinson flags then
1957         pr "%s\n\n" danger_will_robinson;
1958   ) all_functions_sorted
1959
1960 and generate_structs_pod () =
1961   (* LVM structs documentation. *)
1962   List.iter (
1963     fun (typ, cols) ->
1964       pr "=head2 guestfs_lvm_%s\n" typ;
1965       pr "\n";
1966       pr " struct guestfs_lvm_%s {\n" typ;
1967       List.iter (
1968         function
1969         | name, `String -> pr "  char *%s;\n" name
1970         | name, `UUID ->
1971             pr "  /* The next field is NOT nul-terminated, be careful when printing it: */\n";
1972             pr "  char %s[32];\n" name
1973         | name, `Bytes -> pr "  uint64_t %s;\n" name
1974         | name, `Int -> pr "  int64_t %s;\n" name
1975         | name, `OptPercent ->
1976             pr "  /* The next field is [0..100] or -1 meaning 'not present': */\n";
1977             pr "  float %s;\n" name
1978       ) cols;
1979       pr " \n";
1980       pr " struct guestfs_lvm_%s_list {\n" typ;
1981       pr "   uint32_t len; /* Number of elements in list. */\n";
1982       pr "   struct guestfs_lvm_%s *val; /* Elements. */\n" typ;
1983       pr " };\n";
1984       pr " \n";
1985       pr " void guestfs_free_lvm_%s_list (struct guestfs_free_lvm_%s_list *);\n"
1986         typ typ;
1987       pr "\n"
1988   ) ["pv", pv_cols; "vg", vg_cols; "lv", lv_cols]
1989
1990 (* Generate the protocol (XDR) file, 'guestfs_protocol.x' and
1991  * indirectly 'guestfs_protocol.h' and 'guestfs_protocol.c'.
1992  *
1993  * We have to use an underscore instead of a dash because otherwise
1994  * rpcgen generates incorrect code.
1995  *
1996  * This header is NOT exported to clients, but see also generate_structs_h.
1997  *)
1998 and generate_xdr () =
1999   generate_header CStyle LGPLv2;
2000
2001   (* This has to be defined to get around a limitation in Sun's rpcgen. *)
2002   pr "typedef string str<>;\n";
2003   pr "\n";
2004
2005   (* LVM internal structures. *)
2006   List.iter (
2007     function
2008     | typ, cols ->
2009         pr "struct guestfs_lvm_int_%s {\n" typ;
2010         List.iter (function
2011                    | name, `String -> pr "  string %s<>;\n" name
2012                    | name, `UUID -> pr "  opaque %s[32];\n" name
2013                    | name, `Bytes -> pr "  hyper %s;\n" name
2014                    | name, `Int -> pr "  hyper %s;\n" name
2015                    | name, `OptPercent -> pr "  float %s;\n" name
2016                   ) cols;
2017         pr "};\n";
2018         pr "\n";
2019         pr "typedef struct guestfs_lvm_int_%s guestfs_lvm_int_%s_list<>;\n" typ typ;
2020         pr "\n";
2021   ) ["pv", pv_cols; "vg", vg_cols; "lv", lv_cols];
2022
2023   (* Stat internal structures. *)
2024   List.iter (
2025     function
2026     | typ, cols ->
2027         pr "struct guestfs_int_%s {\n" typ;
2028         List.iter (function
2029                    | name, `Int -> pr "  hyper %s;\n" name
2030                   ) cols;
2031         pr "};\n";
2032         pr "\n";
2033   ) ["stat", stat_cols; "statvfs", statvfs_cols];
2034
2035   List.iter (
2036     fun (shortname, style, _, _, _, _, _) ->
2037       let name = "guestfs_" ^ shortname in
2038
2039       (match snd style with
2040        | [] -> ()
2041        | args ->
2042            pr "struct %s_args {\n" name;
2043            List.iter (
2044              function
2045              | String n -> pr "  string %s<>;\n" n
2046              | OptString n -> pr "  str *%s;\n" n
2047              | StringList n -> pr "  str %s<>;\n" n
2048              | Bool n -> pr "  bool %s;\n" n
2049              | Int n -> pr "  int %s;\n" n
2050              | FileIn _ | FileOut _ -> ()
2051            ) args;
2052            pr "};\n\n"
2053       );
2054       (match fst style with
2055        | RErr -> ()
2056        | RInt n ->
2057            pr "struct %s_ret {\n" name;
2058            pr "  int %s;\n" n;
2059            pr "};\n\n"
2060        | RInt64 n ->
2061            pr "struct %s_ret {\n" name;
2062            pr "  hyper %s;\n" n;
2063            pr "};\n\n"
2064        | RBool n ->
2065            pr "struct %s_ret {\n" name;
2066            pr "  bool %s;\n" n;
2067            pr "};\n\n"
2068        | RConstString _ ->
2069            failwithf "RConstString cannot be returned from a daemon function"
2070        | RString n ->
2071            pr "struct %s_ret {\n" name;
2072            pr "  string %s<>;\n" n;
2073            pr "};\n\n"
2074        | RStringList n ->
2075            pr "struct %s_ret {\n" name;
2076            pr "  str %s<>;\n" n;
2077            pr "};\n\n"
2078        | RIntBool (n,m) ->
2079            pr "struct %s_ret {\n" name;
2080            pr "  int %s;\n" n;
2081            pr "  bool %s;\n" m;
2082            pr "};\n\n"
2083        | RPVList n ->
2084            pr "struct %s_ret {\n" name;
2085            pr "  guestfs_lvm_int_pv_list %s;\n" n;
2086            pr "};\n\n"
2087        | RVGList n ->
2088            pr "struct %s_ret {\n" name;
2089            pr "  guestfs_lvm_int_vg_list %s;\n" n;
2090            pr "};\n\n"
2091        | RLVList n ->
2092            pr "struct %s_ret {\n" name;
2093            pr "  guestfs_lvm_int_lv_list %s;\n" n;
2094            pr "};\n\n"
2095        | RStat n ->
2096            pr "struct %s_ret {\n" name;
2097            pr "  guestfs_int_stat %s;\n" n;
2098            pr "};\n\n"
2099        | RStatVFS n ->
2100            pr "struct %s_ret {\n" name;
2101            pr "  guestfs_int_statvfs %s;\n" n;
2102            pr "};\n\n"
2103        | RHashtable n ->
2104            pr "struct %s_ret {\n" name;
2105            pr "  str %s<>;\n" n;
2106            pr "};\n\n"
2107       );
2108   ) daemon_functions;
2109
2110   (* Table of procedure numbers. *)
2111   pr "enum guestfs_procedure {\n";
2112   List.iter (
2113     fun (shortname, _, proc_nr, _, _, _, _) ->
2114       pr "  GUESTFS_PROC_%s = %d,\n" (String.uppercase shortname) proc_nr
2115   ) daemon_functions;
2116   pr "  GUESTFS_PROC_NR_PROCS\n";
2117   pr "};\n";
2118   pr "\n";
2119
2120   (* Having to choose a maximum message size is annoying for several
2121    * reasons (it limits what we can do in the API), but it (a) makes
2122    * the protocol a lot simpler, and (b) provides a bound on the size
2123    * of the daemon which operates in limited memory space.  For large
2124    * file transfers you should use FTP.
2125    *)
2126   pr "const GUESTFS_MESSAGE_MAX = %d;\n" (4 * 1024 * 1024);
2127   pr "\n";
2128
2129   (* Message header, etc. *)
2130   pr "\
2131 /* The communication protocol is now documented in the guestfs(3)
2132  * manpage.
2133  */
2134
2135 const GUESTFS_PROGRAM = 0x2000F5F5;
2136 const GUESTFS_PROTOCOL_VERSION = 1;
2137
2138 /* These constants must be larger than any possible message length. */
2139 const GUESTFS_LAUNCH_FLAG = 0xf5f55ff5;
2140 const GUESTFS_CANCEL_FLAG = 0xffffeeee;
2141
2142 enum guestfs_message_direction {
2143   GUESTFS_DIRECTION_CALL = 0,        /* client -> daemon */
2144   GUESTFS_DIRECTION_REPLY = 1        /* daemon -> client */
2145 };
2146
2147 enum guestfs_message_status {
2148   GUESTFS_STATUS_OK = 0,
2149   GUESTFS_STATUS_ERROR = 1
2150 };
2151
2152 const GUESTFS_ERROR_LEN = 256;
2153
2154 struct guestfs_message_error {
2155   string error_message<GUESTFS_ERROR_LEN>;
2156 };
2157
2158 struct guestfs_message_header {
2159   unsigned prog;                     /* GUESTFS_PROGRAM */
2160   unsigned vers;                     /* GUESTFS_PROTOCOL_VERSION */
2161   guestfs_procedure proc;            /* GUESTFS_PROC_x */
2162   guestfs_message_direction direction;
2163   unsigned serial;                   /* message serial number */
2164   guestfs_message_status status;
2165 };
2166
2167 const GUESTFS_MAX_CHUNK_SIZE = 8192;
2168
2169 struct guestfs_chunk {
2170   int cancel;                        /* if non-zero, transfer is cancelled */
2171   /* data size is 0 bytes if the transfer has finished successfully */
2172   opaque data<GUESTFS_MAX_CHUNK_SIZE>;
2173 };
2174 "
2175
2176 (* Generate the guestfs-structs.h file. *)
2177 and generate_structs_h () =
2178   generate_header CStyle LGPLv2;
2179
2180   (* This is a public exported header file containing various
2181    * structures.  The structures are carefully written to have
2182    * exactly the same in-memory format as the XDR structures that
2183    * we use on the wire to the daemon.  The reason for creating
2184    * copies of these structures here is just so we don't have to
2185    * export the whole of guestfs_protocol.h (which includes much
2186    * unrelated and XDR-dependent stuff that we don't want to be
2187    * public, or required by clients).
2188    *
2189    * To reiterate, we will pass these structures to and from the
2190    * client with a simple assignment or memcpy, so the format
2191    * must be identical to what rpcgen / the RFC defines.
2192    *)
2193
2194   (* guestfs_int_bool structure. *)
2195   pr "struct guestfs_int_bool {\n";
2196   pr "  int32_t i;\n";
2197   pr "  int32_t b;\n";
2198   pr "};\n";
2199   pr "\n";
2200
2201   (* LVM public structures. *)
2202   List.iter (
2203     function
2204     | typ, cols ->
2205         pr "struct guestfs_lvm_%s {\n" typ;
2206         List.iter (
2207           function
2208           | name, `String -> pr "  char *%s;\n" name
2209           | name, `UUID -> pr "  char %s[32]; /* this is NOT nul-terminated, be careful when printing */\n" name
2210           | name, `Bytes -> pr "  uint64_t %s;\n" name
2211           | name, `Int -> pr "  int64_t %s;\n" name
2212           | name, `OptPercent -> pr "  float %s; /* [0..100] or -1 */\n" name
2213         ) cols;
2214         pr "};\n";
2215         pr "\n";
2216         pr "struct guestfs_lvm_%s_list {\n" typ;
2217         pr "  uint32_t len;\n";
2218         pr "  struct guestfs_lvm_%s *val;\n" typ;
2219         pr "};\n";
2220         pr "\n"
2221   ) ["pv", pv_cols; "vg", vg_cols; "lv", lv_cols];
2222
2223   (* Stat structures. *)
2224   List.iter (
2225     function
2226     | typ, cols ->
2227         pr "struct guestfs_%s {\n" typ;
2228         List.iter (
2229           function
2230           | name, `Int -> pr "  int64_t %s;\n" name
2231         ) cols;
2232         pr "};\n";
2233         pr "\n"
2234   ) ["stat", stat_cols; "statvfs", statvfs_cols]
2235
2236 (* Generate the guestfs-actions.h file. *)
2237 and generate_actions_h () =
2238   generate_header CStyle LGPLv2;
2239   List.iter (
2240     fun (shortname, style, _, _, _, _, _) ->
2241       let name = "guestfs_" ^ shortname in
2242       generate_prototype ~single_line:true ~newline:true ~handle:"handle"
2243         name style
2244   ) all_functions
2245
2246 (* Generate the client-side dispatch stubs. *)
2247 and generate_client_actions () =
2248   generate_header CStyle LGPLv2;
2249
2250   pr "\
2251 #include <stdio.h>
2252 #include <stdlib.h>
2253
2254 #include \"guestfs.h\"
2255 #include \"guestfs_protocol.h\"
2256
2257 #define error guestfs_error
2258 #define perrorf guestfs_perrorf
2259 #define safe_malloc guestfs_safe_malloc
2260 #define safe_realloc guestfs_safe_realloc
2261 #define safe_strdup guestfs_safe_strdup
2262 #define safe_memdup guestfs_safe_memdup
2263
2264 /* Check the return message from a call for validity. */
2265 static int
2266 check_reply_header (guestfs_h *g,
2267                     const struct guestfs_message_header *hdr,
2268                     int proc_nr, int serial)
2269 {
2270   if (hdr->prog != GUESTFS_PROGRAM) {
2271     error (g, \"wrong program (%%d/%%d)\", hdr->prog, GUESTFS_PROGRAM);
2272     return -1;
2273   }
2274   if (hdr->vers != GUESTFS_PROTOCOL_VERSION) {
2275     error (g, \"wrong protocol version (%%d/%%d)\",
2276            hdr->vers, GUESTFS_PROTOCOL_VERSION);
2277     return -1;
2278   }
2279   if (hdr->direction != GUESTFS_DIRECTION_REPLY) {
2280     error (g, \"unexpected message direction (%%d/%%d)\",
2281            hdr->direction, GUESTFS_DIRECTION_REPLY);
2282     return -1;
2283   }
2284   if (hdr->proc != proc_nr) {
2285     error (g, \"unexpected procedure number (%%d/%%d)\", hdr->proc, proc_nr);
2286     return -1;
2287   }
2288   if (hdr->serial != serial) {
2289     error (g, \"unexpected serial (%%d/%%d)\", hdr->serial, serial);
2290     return -1;
2291   }
2292
2293   return 0;
2294 }
2295
2296 /* Check we are in the right state to run a high-level action. */
2297 static int
2298 check_state (guestfs_h *g, const char *caller)
2299 {
2300   if (!guestfs_is_ready (g)) {
2301     if (guestfs_is_config (g))
2302       error (g, \"%%s: call launch() before using this function\",
2303         caller);
2304     else if (guestfs_is_launching (g))
2305       error (g, \"%%s: call wait_ready() before using this function\",
2306         caller);
2307     else
2308       error (g, \"%%s called from the wrong state, %%d != READY\",
2309         caller, guestfs_get_state (g));
2310     return -1;
2311   }
2312   return 0;
2313 }
2314
2315 ";
2316
2317   (* Client-side stubs for each function. *)
2318   List.iter (
2319     fun (shortname, style, _, _, _, _, _) ->
2320       let name = "guestfs_" ^ shortname in
2321
2322       (* Generate the context struct which stores the high-level
2323        * state between callback functions.
2324        *)
2325       pr "struct %s_ctx {\n" shortname;
2326       pr "  /* This flag is set by the callbacks, so we know we've done\n";
2327       pr "   * the callbacks as expected, and in the right sequence.\n";
2328       pr "   * 0 = not called, 1 = send called,\n";
2329       pr "   * 1001 = reply called.\n";
2330       pr "   */\n";
2331       pr "  int cb_sequence;\n";
2332       pr "  struct guestfs_message_header hdr;\n";
2333       pr "  struct guestfs_message_error err;\n";
2334       (match fst style with
2335        | RErr -> ()
2336        | RConstString _ ->
2337            failwithf "RConstString cannot be returned from a daemon function"
2338        | RInt _ | RInt64 _
2339        | RBool _ | RString _ | RStringList _
2340        | RIntBool _
2341        | RPVList _ | RVGList _ | RLVList _
2342        | RStat _ | RStatVFS _
2343        | RHashtable _ ->
2344            pr "  struct %s_ret ret;\n" name
2345       );
2346       pr "};\n";
2347       pr "\n";
2348
2349       (* Generate the reply callback function. *)
2350       pr "static void %s_reply_cb (guestfs_h *g, void *data, XDR *xdr)\n" shortname;
2351       pr "{\n";
2352       pr "  guestfs_main_loop *ml = guestfs_get_main_loop (g);\n";
2353       pr "  struct %s_ctx *ctx = (struct %s_ctx *) data;\n" shortname shortname;
2354       pr "\n";
2355       pr "  ml->main_loop_quit (ml, g);\n";
2356       pr "\n";
2357       pr "  if (!xdr_guestfs_message_header (xdr, &ctx->hdr)) {\n";
2358       pr "    error (g, \"%%s: failed to parse reply header\", \"%s\");\n" name;
2359       pr "    return;\n";
2360       pr "  }\n";
2361       pr "  if (ctx->hdr.status == GUESTFS_STATUS_ERROR) {\n";
2362       pr "    if (!xdr_guestfs_message_error (xdr, &ctx->err)) {\n";
2363       pr "      error (g, \"%%s: failed to parse reply error\", \"%s\");\n"
2364         name;
2365       pr "      return;\n";
2366       pr "    }\n";
2367       pr "    goto done;\n";
2368       pr "  }\n";
2369
2370       (match fst style with
2371        | RErr -> ()
2372        | RConstString _ ->
2373            failwithf "RConstString cannot be returned from a daemon function"
2374        | RInt _ | RInt64 _
2375        | RBool _ | RString _ | RStringList _
2376        | RIntBool _
2377        | RPVList _ | RVGList _ | RLVList _
2378        | RStat _ | RStatVFS _
2379        | RHashtable _ ->
2380             pr "  if (!xdr_%s_ret (xdr, &ctx->ret)) {\n" name;
2381             pr "    error (g, \"%%s: failed to parse reply\", \"%s\");\n" name;
2382             pr "    return;\n";
2383             pr "  }\n";
2384       );
2385
2386       pr " done:\n";
2387       pr "  ctx->cb_sequence = 1001;\n";
2388       pr "}\n\n";
2389
2390       (* Generate the action stub. *)
2391       generate_prototype ~extern:false ~semicolon:false ~newline:true
2392         ~handle:"g" name style;
2393
2394       let error_code =
2395         match fst style with
2396         | RErr | RInt _ | RInt64 _ | RBool _ -> "-1"
2397         | RConstString _ ->
2398             failwithf "RConstString cannot be returned from a daemon function"
2399         | RString _ | RStringList _ | RIntBool _
2400         | RPVList _ | RVGList _ | RLVList _
2401         | RStat _ | RStatVFS _
2402         | RHashtable _ ->
2403             "NULL" in
2404
2405       pr "{\n";
2406
2407       (match snd style with
2408        | [] -> ()
2409        | _ -> pr "  struct %s_args args;\n" name
2410       );
2411
2412       pr "  struct %s_ctx ctx;\n" shortname;
2413       pr "  guestfs_main_loop *ml = guestfs_get_main_loop (g);\n";
2414       pr "  int serial;\n";
2415       pr "\n";
2416       pr "  if (check_state (g, \"%s\") == -1) return %s;\n" name error_code;
2417       pr "  guestfs_set_busy (g);\n";
2418       pr "\n";
2419       pr "  memset (&ctx, 0, sizeof ctx);\n";
2420       pr "\n";
2421
2422       (* Send the main header and arguments. *)
2423       (match snd style with
2424        | [] ->
2425            pr "  serial = guestfs__send_sync (g, GUESTFS_PROC_%s, NULL, NULL);\n"
2426              (String.uppercase shortname)
2427        | args ->
2428            List.iter (
2429              function
2430              | String n ->
2431                  pr "  args.%s = (char *) %s;\n" n n
2432              | OptString n ->
2433                  pr "  args.%s = %s ? (char **) &%s : NULL;\n" n n n
2434              | StringList n ->
2435                  pr "  args.%s.%s_val = (char **) %s;\n" n n n;
2436                  pr "  for (args.%s.%s_len = 0; %s[args.%s.%s_len]; args.%s.%s_len++) ;\n" n n n n n n n;
2437              | Bool n ->
2438                  pr "  args.%s = %s;\n" n n
2439              | Int n ->
2440                  pr "  args.%s = %s;\n" n n
2441              | FileIn _ | FileOut _ -> ()
2442            ) args;
2443            pr "  serial = guestfs__send_sync (g, GUESTFS_PROC_%s,\n"
2444              (String.uppercase shortname);
2445            pr "        (xdrproc_t) xdr_%s_args, (char *) &args);\n"
2446              name;
2447       );
2448       pr "  if (serial == -1) {\n";
2449       pr "    guestfs_set_ready (g);\n";
2450       pr "    return %s;\n" error_code;
2451       pr "  }\n";
2452       pr "\n";
2453
2454       (* Send any additional files (FileIn) requested. *)
2455       let need_read_reply_label = ref false in
2456       List.iter (
2457         function
2458         | FileIn n ->
2459             pr "  {\n";
2460             pr "    int r;\n";
2461             pr "\n";
2462             pr "    r = guestfs__send_file_sync (g, %s);\n" n;
2463             pr "    if (r == -1) {\n";
2464             pr "      guestfs_set_ready (g);\n";
2465             pr "      return %s;\n" error_code;
2466             pr "    }\n";
2467             pr "    if (r == -2) /* daemon cancelled */\n";
2468             pr "      goto read_reply;\n";
2469             need_read_reply_label := true;
2470             pr "  }\n";
2471             pr "\n";
2472         | _ -> ()
2473       ) (snd style);
2474
2475       (* Wait for the reply from the remote end. *)
2476       if !need_read_reply_label then pr " read_reply:\n";
2477       pr "  guestfs__switch_to_receiving (g);\n";
2478       pr "  ctx.cb_sequence = 0;\n";
2479       pr "  guestfs_set_reply_callback (g, %s_reply_cb, &ctx);\n" shortname;
2480       pr "  (void) ml->main_loop_run (ml, g);\n";
2481       pr "  guestfs_set_reply_callback (g, NULL, NULL);\n";
2482       pr "  if (ctx.cb_sequence != 1001) {\n";
2483       pr "    error (g, \"%%s reply failed, see earlier error messages\", \"%s\");\n" name;
2484       pr "    guestfs_set_ready (g);\n";
2485       pr "    return %s;\n" error_code;
2486       pr "  }\n";
2487       pr "\n";
2488
2489       pr "  if (check_reply_header (g, &ctx.hdr, GUESTFS_PROC_%s, serial) == -1) {\n"
2490         (String.uppercase shortname);
2491       pr "    guestfs_set_ready (g);\n";
2492       pr "    return %s;\n" error_code;
2493       pr "  }\n";
2494       pr "\n";
2495
2496       pr "  if (ctx.hdr.status == GUESTFS_STATUS_ERROR) {\n";
2497       pr "    error (g, \"%%s\", ctx.err.error_message);\n";
2498       pr "    guestfs_set_ready (g);\n";
2499       pr "    return %s;\n" error_code;
2500       pr "  }\n";
2501       pr "\n";
2502
2503       (* Expecting to receive further files (FileOut)? *)
2504       List.iter (
2505         function
2506         | FileOut n ->
2507             pr "  if (guestfs__receive_file_sync (g, %s) == -1) {\n" n;
2508             pr "    guestfs_set_ready (g);\n";
2509             pr "    return %s;\n" error_code;
2510             pr "  }\n";
2511             pr "\n";
2512         | _ -> ()
2513       ) (snd style);
2514
2515       pr "  guestfs_set_ready (g);\n";
2516
2517       (match fst style with
2518        | RErr -> pr "  return 0;\n"
2519        | RInt n | RInt64 n | RBool n ->
2520            pr "  return ctx.ret.%s;\n" n
2521        | RConstString _ ->
2522            failwithf "RConstString cannot be returned from a daemon function"
2523        | RString n ->
2524            pr "  return ctx.ret.%s; /* caller will free */\n" n
2525        | RStringList n | RHashtable n ->
2526            pr "  /* caller will free this, but we need to add a NULL entry */\n";
2527            pr "  ctx.ret.%s.%s_val =\n" n n;
2528            pr "    safe_realloc (g, ctx.ret.%s.%s_val,\n" n n;
2529            pr "                  sizeof (char *) * (ctx.ret.%s.%s_len + 1));\n"
2530              n n;
2531            pr "  ctx.ret.%s.%s_val[ctx.ret.%s.%s_len] = NULL;\n" n n n n;
2532            pr "  return ctx.ret.%s.%s_val;\n" n n
2533        | RIntBool _ ->
2534            pr "  /* caller with free this */\n";
2535            pr "  return safe_memdup (g, &ctx.ret, sizeof (ctx.ret));\n"
2536        | RPVList n | RVGList n | RLVList n
2537        | RStat n | RStatVFS n ->
2538            pr "  /* caller will free this */\n";
2539            pr "  return safe_memdup (g, &ctx.ret.%s, sizeof (ctx.ret.%s));\n" n n
2540       );
2541
2542       pr "}\n\n"
2543   ) daemon_functions
2544
2545 (* Generate daemon/actions.h. *)
2546 and generate_daemon_actions_h () =
2547   generate_header CStyle GPLv2;
2548
2549   pr "#include \"../src/guestfs_protocol.h\"\n";
2550   pr "\n";
2551
2552   List.iter (
2553     fun (name, style, _, _, _, _, _) ->
2554         generate_prototype
2555           ~single_line:true ~newline:true ~in_daemon:true ~prefix:"do_"
2556           name style;
2557   ) daemon_functions
2558
2559 (* Generate the server-side stubs. *)
2560 and generate_daemon_actions () =
2561   generate_header CStyle GPLv2;
2562
2563   pr "#include <config.h>\n";
2564   pr "\n";
2565   pr "#include <stdio.h>\n";
2566   pr "#include <stdlib.h>\n";
2567   pr "#include <string.h>\n";
2568   pr "#include <inttypes.h>\n";
2569   pr "#include <ctype.h>\n";
2570   pr "#include <rpc/types.h>\n";
2571   pr "#include <rpc/xdr.h>\n";
2572   pr "\n";
2573   pr "#include \"daemon.h\"\n";
2574   pr "#include \"../src/guestfs_protocol.h\"\n";
2575   pr "#include \"actions.h\"\n";
2576   pr "\n";
2577
2578   List.iter (
2579     fun (name, style, _, _, _, _, _) ->
2580       (* Generate server-side stubs. *)
2581       pr "static void %s_stub (XDR *xdr_in)\n" name;
2582       pr "{\n";
2583       let error_code =
2584         match fst style with
2585         | RErr | RInt _ -> pr "  int r;\n"; "-1"
2586         | RInt64 _ -> pr "  int64_t r;\n"; "-1"
2587         | RBool _ -> pr "  int r;\n"; "-1"
2588         | RConstString _ ->
2589             failwithf "RConstString cannot be returned from a daemon function"
2590         | RString _ -> pr "  char *r;\n"; "NULL"
2591         | RStringList _ | RHashtable _ -> pr "  char **r;\n"; "NULL"
2592         | RIntBool _ -> pr "  guestfs_%s_ret *r;\n" name; "NULL"
2593         | RPVList _ -> pr "  guestfs_lvm_int_pv_list *r;\n"; "NULL"
2594         | RVGList _ -> pr "  guestfs_lvm_int_vg_list *r;\n"; "NULL"
2595         | RLVList _ -> pr "  guestfs_lvm_int_lv_list *r;\n"; "NULL"
2596         | RStat _ -> pr "  guestfs_int_stat *r;\n"; "NULL"
2597         | RStatVFS _ -> pr "  guestfs_int_statvfs *r;\n"; "NULL" in
2598
2599       (match snd style with
2600        | [] -> ()
2601        | args ->
2602            pr "  struct guestfs_%s_args args;\n" name;
2603            List.iter (
2604              function
2605              | String n
2606              | OptString n -> pr "  const char *%s;\n" n
2607              | StringList n -> pr "  char **%s;\n" n
2608              | Bool n -> pr "  int %s;\n" n
2609              | Int n -> pr "  int %s;\n" n
2610              | FileIn _ | FileOut _ -> ()
2611            ) args
2612       );
2613       pr "\n";
2614
2615       (match snd style with
2616        | [] -> ()
2617        | args ->
2618            pr "  memset (&args, 0, sizeof args);\n";
2619            pr "\n";
2620            pr "  if (!xdr_guestfs_%s_args (xdr_in, &args)) {\n" name;
2621            pr "    reply_with_error (\"%%s: daemon failed to decode procedure arguments\", \"%s\");\n" name;
2622            pr "    return;\n";
2623            pr "  }\n";
2624            List.iter (
2625              function
2626              | String n -> pr "  %s = args.%s;\n" n n
2627              | OptString n -> pr "  %s = args.%s ? *args.%s : NULL;\n" n n n
2628              | StringList n ->
2629                  pr "  args.%s.%s_val = realloc (args.%s.%s_val, sizeof (char *) * (args.%s.%s_len+1));\n" n n n n n n;
2630                  pr "  args.%s.%s_val[args.%s.%s_len] = NULL;\n" n n n n;
2631                  pr "  %s = args.%s.%s_val;\n" n n n
2632              | Bool n -> pr "  %s = args.%s;\n" n n
2633              | Int n -> pr "  %s = args.%s;\n" n n
2634              | FileIn _ | FileOut _ -> ()
2635            ) args;
2636            pr "\n"
2637       );
2638
2639       (* Don't want to call the impl with any FileIn or FileOut
2640        * parameters, since these go "outside" the RPC protocol.
2641        *)
2642       let argsnofile =
2643         List.filter (function FileIn _ | FileOut _ -> false | _ -> true)
2644           (snd style) in
2645       pr "  r = do_%s " name;
2646       generate_call_args argsnofile;
2647       pr ";\n";
2648
2649       pr "  if (r == %s)\n" error_code;
2650       pr "    /* do_%s has already called reply_with_error */\n" name;
2651       pr "    goto done;\n";
2652       pr "\n";
2653
2654       (* If there are any FileOut parameters, then the impl must
2655        * send its own reply.
2656        *)
2657       let no_reply =
2658         List.exists (function FileOut _ -> true | _ -> false) (snd style) in
2659       if no_reply then
2660         pr "  /* do_%s has already sent a reply */\n" name
2661       else (
2662         match fst style with
2663         | RErr -> pr "  reply (NULL, NULL);\n"
2664         | RInt n | RInt64 n | RBool n ->
2665             pr "  struct guestfs_%s_ret ret;\n" name;
2666             pr "  ret.%s = r;\n" n;
2667             pr "  reply ((xdrproc_t) &xdr_guestfs_%s_ret, (char *) &ret);\n"
2668               name
2669         | RConstString _ ->
2670             failwithf "RConstString cannot be returned from a daemon function"
2671         | RString n ->
2672             pr "  struct guestfs_%s_ret ret;\n" name;
2673             pr "  ret.%s = r;\n" n;
2674             pr "  reply ((xdrproc_t) &xdr_guestfs_%s_ret, (char *) &ret);\n"
2675               name;
2676             pr "  free (r);\n"
2677         | RStringList n | RHashtable n ->
2678             pr "  struct guestfs_%s_ret ret;\n" name;
2679             pr "  ret.%s.%s_len = count_strings (r);\n" n n;
2680             pr "  ret.%s.%s_val = r;\n" n n;
2681             pr "  reply ((xdrproc_t) &xdr_guestfs_%s_ret, (char *) &ret);\n"
2682               name;
2683             pr "  free_strings (r);\n"
2684         | RIntBool _ ->
2685             pr "  reply ((xdrproc_t) xdr_guestfs_%s_ret, (char *) r);\n"
2686               name;
2687             pr "  xdr_free ((xdrproc_t) xdr_guestfs_%s_ret, (char *) r);\n" name
2688         | RPVList n | RVGList n | RLVList n
2689         | RStat n | RStatVFS n ->
2690             pr "  struct guestfs_%s_ret ret;\n" name;
2691             pr "  ret.%s = *r;\n" n;
2692             pr "  reply ((xdrproc_t) xdr_guestfs_%s_ret, (char *) &ret);\n"
2693               name;
2694             pr "  xdr_free ((xdrproc_t) xdr_guestfs_%s_ret, (char *) &ret);\n"
2695               name
2696       );
2697
2698       (* Free the args. *)
2699       (match snd style with
2700        | [] ->
2701            pr "done: ;\n";
2702        | _ ->
2703            pr "done:\n";
2704            pr "  xdr_free ((xdrproc_t) xdr_guestfs_%s_args, (char *) &args);\n"
2705              name
2706       );
2707
2708       pr "}\n\n";
2709   ) daemon_functions;
2710
2711   (* Dispatch function. *)
2712   pr "void dispatch_incoming_message (XDR *xdr_in)\n";
2713   pr "{\n";
2714   pr "  switch (proc_nr) {\n";
2715
2716   List.iter (
2717     fun (name, style, _, _, _, _, _) ->
2718         pr "    case GUESTFS_PROC_%s:\n" (String.uppercase name);
2719         pr "      %s_stub (xdr_in);\n" name;
2720         pr "      break;\n"
2721   ) daemon_functions;
2722
2723   pr "    default:\n";
2724   pr "      reply_with_error (\"dispatch_incoming_message: unknown procedure number %%d\", proc_nr);\n";
2725   pr "  }\n";
2726   pr "}\n";
2727   pr "\n";
2728
2729   (* LVM columns and tokenization functions. *)
2730   (* XXX This generates crap code.  We should rethink how we
2731    * do this parsing.
2732    *)
2733   List.iter (
2734     function
2735     | typ, cols ->
2736         pr "static const char *lvm_%s_cols = \"%s\";\n"
2737           typ (String.concat "," (List.map fst cols));
2738         pr "\n";
2739
2740         pr "static int lvm_tokenize_%s (char *str, struct guestfs_lvm_int_%s *r)\n" typ typ;
2741         pr "{\n";
2742         pr "  char *tok, *p, *next;\n";
2743         pr "  int i, j;\n";
2744         pr "\n";
2745         (*
2746         pr "  fprintf (stderr, \"%%s: <<%%s>>\\n\", __func__, str);\n";
2747         pr "\n";
2748         *)
2749         pr "  if (!str) {\n";
2750         pr "    fprintf (stderr, \"%%s: failed: passed a NULL string\\n\", __func__);\n";
2751         pr "    return -1;\n";
2752         pr "  }\n";
2753         pr "  if (!*str || isspace (*str)) {\n";
2754         pr "    fprintf (stderr, \"%%s: failed: passed a empty string or one beginning with whitespace\\n\", __func__);\n";
2755         pr "    return -1;\n";
2756         pr "  }\n";
2757         pr "  tok = str;\n";
2758         List.iter (
2759           fun (name, coltype) ->
2760             pr "  if (!tok) {\n";
2761             pr "    fprintf (stderr, \"%%s: failed: string finished early, around token %%s\\n\", __func__, \"%s\");\n" name;
2762             pr "    return -1;\n";
2763             pr "  }\n";
2764             pr "  p = strchrnul (tok, ',');\n";
2765             pr "  if (*p) next = p+1; else next = NULL;\n";
2766             pr "  *p = '\\0';\n";
2767             (match coltype with
2768              | `String ->
2769                  pr "  r->%s = strdup (tok);\n" name;
2770                  pr "  if (r->%s == NULL) {\n" name;
2771                  pr "    perror (\"strdup\");\n";
2772                  pr "    return -1;\n";
2773                  pr "  }\n"
2774              | `UUID ->
2775                  pr "  for (i = j = 0; i < 32; ++j) {\n";
2776                  pr "    if (tok[j] == '\\0') {\n";
2777                  pr "      fprintf (stderr, \"%%s: failed to parse UUID from '%%s'\\n\", __func__, tok);\n";
2778                  pr "      return -1;\n";
2779                  pr "    } else if (tok[j] != '-')\n";
2780                  pr "      r->%s[i++] = tok[j];\n" name;
2781                  pr "  }\n";
2782              | `Bytes ->
2783                  pr "  if (sscanf (tok, \"%%\"SCNu64, &r->%s) != 1) {\n" name;
2784                  pr "    fprintf (stderr, \"%%s: failed to parse size '%%s' from token %%s\\n\", __func__, tok, \"%s\");\n" name;
2785                  pr "    return -1;\n";
2786                  pr "  }\n";
2787              | `Int ->
2788                  pr "  if (sscanf (tok, \"%%\"SCNi64, &r->%s) != 1) {\n" name;
2789                  pr "    fprintf (stderr, \"%%s: failed to parse int '%%s' from token %%s\\n\", __func__, tok, \"%s\");\n" name;
2790                  pr "    return -1;\n";
2791                  pr "  }\n";
2792              | `OptPercent ->
2793                  pr "  if (tok[0] == '\\0')\n";
2794                  pr "    r->%s = -1;\n" name;
2795                  pr "  else if (sscanf (tok, \"%%f\", &r->%s) != 1) {\n" name;
2796                  pr "    fprintf (stderr, \"%%s: failed to parse float '%%s' from token %%s\\n\", __func__, tok, \"%s\");\n" name;
2797                  pr "    return -1;\n";
2798                  pr "  }\n";
2799             );
2800             pr "  tok = next;\n";
2801         ) cols;
2802
2803         pr "  if (tok != NULL) {\n";
2804         pr "    fprintf (stderr, \"%%s: failed: extra tokens at end of string\\n\", __func__);\n";
2805         pr "    return -1;\n";
2806         pr "  }\n";
2807         pr "  return 0;\n";
2808         pr "}\n";
2809         pr "\n";
2810
2811         pr "guestfs_lvm_int_%s_list *\n" typ;
2812         pr "parse_command_line_%ss (void)\n" typ;
2813         pr "{\n";
2814         pr "  char *out, *err;\n";
2815         pr "  char *p, *pend;\n";
2816         pr "  int r, i;\n";
2817         pr "  guestfs_lvm_int_%s_list *ret;\n" typ;
2818         pr "  void *newp;\n";
2819         pr "\n";
2820         pr "  ret = malloc (sizeof *ret);\n";
2821         pr "  if (!ret) {\n";
2822         pr "    reply_with_perror (\"malloc\");\n";
2823         pr "    return NULL;\n";
2824         pr "  }\n";
2825         pr "\n";
2826         pr "  ret->guestfs_lvm_int_%s_list_len = 0;\n" typ;
2827         pr "  ret->guestfs_lvm_int_%s_list_val = NULL;\n" typ;
2828         pr "\n";
2829         pr "  r = command (&out, &err,\n";
2830         pr "           \"/sbin/lvm\", \"%ss\",\n" typ;
2831         pr "           \"-o\", lvm_%s_cols, \"--unbuffered\", \"--noheadings\",\n" typ;
2832         pr "           \"--nosuffix\", \"--separator\", \",\", \"--units\", \"b\", NULL);\n";
2833         pr "  if (r == -1) {\n";
2834         pr "    reply_with_error (\"%%s\", err);\n";
2835         pr "    free (out);\n";
2836         pr "    free (err);\n";
2837         pr "    free (ret);\n";
2838         pr "    return NULL;\n";
2839         pr "  }\n";
2840         pr "\n";
2841         pr "  free (err);\n";
2842         pr "\n";
2843         pr "  /* Tokenize each line of the output. */\n";
2844         pr "  p = out;\n";
2845         pr "  i = 0;\n";
2846         pr "  while (p) {\n";
2847         pr "    pend = strchr (p, '\\n');       /* Get the next line of output. */\n";
2848         pr "    if (pend) {\n";
2849         pr "      *pend = '\\0';\n";
2850         pr "      pend++;\n";
2851         pr "    }\n";
2852         pr "\n";
2853         pr "    while (*p && isspace (*p))      /* Skip any leading whitespace. */\n";
2854         pr "      p++;\n";
2855         pr "\n";
2856         pr "    if (!*p) {                      /* Empty line?  Skip it. */\n";
2857         pr "      p = pend;\n";
2858         pr "      continue;\n";
2859         pr "    }\n";
2860         pr "\n";
2861         pr "    /* Allocate some space to store this next entry. */\n";
2862         pr "    newp = realloc (ret->guestfs_lvm_int_%s_list_val,\n" typ;
2863         pr "                sizeof (guestfs_lvm_int_%s) * (i+1));\n" typ;
2864         pr "    if (newp == NULL) {\n";
2865         pr "      reply_with_perror (\"realloc\");\n";
2866         pr "      free (ret->guestfs_lvm_int_%s_list_val);\n" typ;
2867         pr "      free (ret);\n";
2868         pr "      free (out);\n";
2869         pr "      return NULL;\n";
2870         pr "    }\n";
2871         pr "    ret->guestfs_lvm_int_%s_list_val = newp;\n" typ;
2872         pr "\n";
2873         pr "    /* Tokenize the next entry. */\n";
2874         pr "    r = lvm_tokenize_%s (p, &ret->guestfs_lvm_int_%s_list_val[i]);\n" typ typ;
2875         pr "    if (r == -1) {\n";
2876         pr "      reply_with_error (\"failed to parse output of '%ss' command\");\n" typ;
2877         pr "      free (ret->guestfs_lvm_int_%s_list_val);\n" typ;
2878         pr "      free (ret);\n";
2879         pr "      free (out);\n";
2880         pr "      return NULL;\n";
2881         pr "    }\n";
2882         pr "\n";
2883         pr "    ++i;\n";
2884         pr "    p = pend;\n";
2885         pr "  }\n";
2886         pr "\n";
2887         pr "  ret->guestfs_lvm_int_%s_list_len = i;\n" typ;
2888         pr "\n";
2889         pr "  free (out);\n";
2890         pr "  return ret;\n";
2891         pr "}\n"
2892
2893   ) ["pv", pv_cols; "vg", vg_cols; "lv", lv_cols]
2894
2895 (* Generate the tests. *)
2896 and generate_tests () =
2897   generate_header CStyle GPLv2;
2898
2899   pr "\
2900 #include <stdio.h>
2901 #include <stdlib.h>
2902 #include <string.h>
2903 #include <unistd.h>
2904 #include <sys/types.h>
2905 #include <fcntl.h>
2906
2907 #include \"guestfs.h\"
2908
2909 static guestfs_h *g;
2910 static int suppress_error = 0;
2911
2912 static void print_error (guestfs_h *g, void *data, const char *msg)
2913 {
2914   if (!suppress_error)
2915     fprintf (stderr, \"%%s\\n\", msg);
2916 }
2917
2918 static void print_strings (char * const * const argv)
2919 {
2920   int argc;
2921
2922   for (argc = 0; argv[argc] != NULL; ++argc)
2923     printf (\"\\t%%s\\n\", argv[argc]);
2924 }
2925
2926 /*
2927 static void print_table (char * const * const argv)
2928 {
2929   int i;
2930
2931   for (i = 0; argv[i] != NULL; i += 2)
2932     printf (\"%%s: %%s\\n\", argv[i], argv[i+1]);
2933 }
2934 */
2935
2936 static void no_test_warnings (void)
2937 {
2938 ";
2939
2940   List.iter (
2941     function
2942     | name, _, _, _, [], _, _ ->
2943         pr "  fprintf (stderr, \"warning: \\\"guestfs_%s\\\" has no tests\\n\");\n" name
2944     | name, _, _, _, tests, _, _ -> ()
2945   ) all_functions;
2946
2947   pr "}\n";
2948   pr "\n";
2949
2950   (* Generate the actual tests.  Note that we generate the tests
2951    * in reverse order, deliberately, so that (in general) the
2952    * newest tests run first.  This makes it quicker and easier to
2953    * debug them.
2954    *)
2955   let test_names =
2956     List.map (
2957       fun (name, _, _, _, tests, _, _) ->
2958         mapi (generate_one_test name) tests
2959     ) (List.rev all_functions) in
2960   let test_names = List.concat test_names in
2961   let nr_tests = List.length test_names in
2962
2963   pr "\
2964 int main (int argc, char *argv[])
2965 {
2966   char c = 0;
2967   int failed = 0;
2968   const char *srcdir;
2969   const char *filename;
2970   int fd;
2971   int nr_tests, test_num = 0;
2972
2973   no_test_warnings ();
2974
2975   g = guestfs_create ();
2976   if (g == NULL) {
2977     printf (\"guestfs_create FAILED\\n\");
2978     exit (1);
2979   }
2980
2981   guestfs_set_error_handler (g, print_error, NULL);
2982
2983   srcdir = getenv (\"srcdir\");
2984   if (!srcdir) srcdir = \".\";
2985   chdir (srcdir);
2986   guestfs_set_path (g, \".\");
2987
2988   filename = \"test1.img\";
2989   fd = open (filename, O_WRONLY|O_CREAT|O_NOCTTY|O_NONBLOCK|O_TRUNC, 0666);
2990   if (fd == -1) {
2991     perror (filename);
2992     exit (1);
2993   }
2994   if (lseek (fd, %d, SEEK_SET) == -1) {
2995     perror (\"lseek\");
2996     close (fd);
2997     unlink (filename);
2998     exit (1);
2999   }
3000   if (write (fd, &c, 1) == -1) {
3001     perror (\"write\");
3002     close (fd);
3003     unlink (filename);
3004     exit (1);
3005   }
3006   if (close (fd) == -1) {
3007     perror (filename);
3008     unlink (filename);
3009     exit (1);
3010   }
3011   if (guestfs_add_drive (g, filename) == -1) {
3012     printf (\"guestfs_add_drive %%s FAILED\\n\", filename);
3013     exit (1);
3014   }
3015
3016   filename = \"test2.img\";
3017   fd = open (filename, O_WRONLY|O_CREAT|O_NOCTTY|O_NONBLOCK|O_TRUNC, 0666);
3018   if (fd == -1) {
3019     perror (filename);
3020     exit (1);
3021   }
3022   if (lseek (fd, %d, SEEK_SET) == -1) {
3023     perror (\"lseek\");
3024     close (fd);
3025     unlink (filename);
3026     exit (1);
3027   }
3028   if (write (fd, &c, 1) == -1) {
3029     perror (\"write\");
3030     close (fd);
3031     unlink (filename);
3032     exit (1);
3033   }
3034   if (close (fd) == -1) {
3035     perror (filename);
3036     unlink (filename);
3037     exit (1);
3038   }
3039   if (guestfs_add_drive (g, filename) == -1) {
3040     printf (\"guestfs_add_drive %%s FAILED\\n\", filename);
3041     exit (1);
3042   }
3043
3044   filename = \"test3.img\";
3045   fd = open (filename, O_WRONLY|O_CREAT|O_NOCTTY|O_NONBLOCK|O_TRUNC, 0666);
3046   if (fd == -1) {
3047     perror (filename);
3048     exit (1);
3049   }
3050   if (lseek (fd, %d, SEEK_SET) == -1) {
3051     perror (\"lseek\");
3052     close (fd);
3053     unlink (filename);
3054     exit (1);
3055   }
3056   if (write (fd, &c, 1) == -1) {
3057     perror (\"write\");
3058     close (fd);
3059     unlink (filename);
3060     exit (1);
3061   }
3062   if (close (fd) == -1) {
3063     perror (filename);
3064     unlink (filename);
3065     exit (1);
3066   }
3067   if (guestfs_add_drive (g, filename) == -1) {
3068     printf (\"guestfs_add_drive %%s FAILED\\n\", filename);
3069     exit (1);
3070   }
3071
3072   if (guestfs_launch (g) == -1) {
3073     printf (\"guestfs_launch FAILED\\n\");
3074     exit (1);
3075   }
3076   if (guestfs_wait_ready (g) == -1) {
3077     printf (\"guestfs_wait_ready FAILED\\n\");
3078     exit (1);
3079   }
3080
3081   nr_tests = %d;
3082
3083 " (500 * 1024 * 1024) (50 * 1024 * 1024) (10 * 1024 * 1024) nr_tests;
3084
3085   iteri (
3086     fun i test_name ->
3087       pr "  test_num++;\n";
3088       pr "  printf (\"%%3d/%%3d %s\\n\", test_num, nr_tests);\n" test_name;
3089       pr "  if (%s () == -1) {\n" test_name;
3090       pr "    printf (\"%s FAILED\\n\");\n" test_name;
3091       pr "    failed++;\n";
3092       pr "  }\n";
3093   ) test_names;
3094   pr "\n";
3095
3096   pr "  guestfs_close (g);\n";
3097   pr "  unlink (\"test1.img\");\n";
3098   pr "  unlink (\"test2.img\");\n";
3099   pr "  unlink (\"test3.img\");\n";
3100   pr "\n";
3101
3102   pr "  if (failed > 0) {\n";
3103   pr "    printf (\"***** %%d / %%d tests FAILED *****\\n\", failed, nr_tests);\n";
3104   pr "    exit (1);\n";
3105   pr "  }\n";
3106   pr "\n";
3107
3108   pr "  exit (0);\n";
3109   pr "}\n"
3110
3111 and generate_one_test name i (init, test) =
3112   let test_name = sprintf "test_%s_%d" name i in
3113
3114   pr "static int %s (void)\n" test_name;
3115   pr "{\n";
3116
3117   (match init with
3118    | InitNone -> ()
3119    | InitEmpty ->
3120        pr "  /* InitEmpty for %s (%d) */\n" name i;
3121        List.iter (generate_test_command_call test_name)
3122          [["umount_all"];
3123           ["lvm_remove_all"]]
3124    | InitBasicFS ->
3125        pr "  /* InitBasicFS for %s (%d): create ext2 on /dev/sda1 */\n" name i;
3126        List.iter (generate_test_command_call test_name)
3127          [["umount_all"];
3128           ["lvm_remove_all"];
3129           ["sfdisk"; "/dev/sda"; "0"; "0"; "0"; ","];
3130           ["mkfs"; "ext2"; "/dev/sda1"];
3131           ["mount"; "/dev/sda1"; "/"]]
3132    | InitBasicFSonLVM ->
3133        pr "  /* InitBasicFSonLVM for %s (%d): create ext2 on /dev/VG/LV */\n"
3134          name i;
3135        List.iter (generate_test_command_call test_name)
3136          [["umount_all"];
3137           ["lvm_remove_all"];
3138           ["sfdisk"; "/dev/sda"; "0"; "0"; "0"; ","];
3139           ["pvcreate"; "/dev/sda1"];
3140           ["vgcreate"; "VG"; "/dev/sda1"];
3141           ["lvcreate"; "LV"; "VG"; "8"];
3142           ["mkfs"; "ext2"; "/dev/VG/LV"];
3143           ["mount"; "/dev/VG/LV"; "/"]]
3144   );
3145
3146   let get_seq_last = function
3147     | [] ->
3148         failwithf "%s: you cannot use [] (empty list) when expecting a command"
3149           test_name
3150     | seq ->
3151         let seq = List.rev seq in
3152         List.rev (List.tl seq), List.hd seq
3153   in
3154
3155   (match test with
3156    | TestRun seq ->
3157        pr "  /* TestRun for %s (%d) */\n" name i;
3158        List.iter (generate_test_command_call test_name) seq
3159    | TestOutput (seq, expected) ->
3160        pr "  /* TestOutput for %s (%d) */\n" name i;
3161        let seq, last = get_seq_last seq in
3162        let test () =
3163          pr "    if (strcmp (r, \"%s\") != 0) {\n" (c_quote expected);
3164          pr "      fprintf (stderr, \"%s: expected \\\"%s\\\" but got \\\"%%s\\\"\\n\", r);\n" test_name (c_quote expected);
3165          pr "      return -1;\n";
3166          pr "    }\n"
3167        in
3168        List.iter (generate_test_command_call test_name) seq;
3169        generate_test_command_call ~test test_name last
3170    | TestOutputList (seq, expected) ->
3171        pr "  /* TestOutputList for %s (%d) */\n" name i;
3172        let seq, last = get_seq_last seq in
3173        let test () =
3174          iteri (
3175            fun i str ->
3176              pr "    if (!r[%d]) {\n" i;
3177              pr "      fprintf (stderr, \"%s: short list returned from command\\n\");\n" test_name;
3178              pr "      print_strings (r);\n";
3179              pr "      return -1;\n";
3180              pr "    }\n";
3181              pr "    if (strcmp (r[%d], \"%s\") != 0) {\n" i (c_quote str);
3182              pr "      fprintf (stderr, \"%s: expected \\\"%s\\\" but got \\\"%%s\\\"\\n\", r[%d]);\n" test_name (c_quote str) i;
3183              pr "      return -1;\n";
3184              pr "    }\n"
3185          ) expected;
3186          pr "    if (r[%d] != NULL) {\n" (List.length expected);
3187          pr "      fprintf (stderr, \"%s: extra elements returned from command\\n\");\n"
3188            test_name;
3189          pr "      print_strings (r);\n";
3190          pr "      return -1;\n";
3191          pr "    }\n"
3192        in
3193        List.iter (generate_test_command_call test_name) seq;
3194        generate_test_command_call ~test test_name last
3195    | TestOutputInt (seq, expected) ->
3196        pr "  /* TestOutputInt for %s (%d) */\n" name i;
3197        let seq, last = get_seq_last seq in
3198        let test () =
3199          pr "    if (r != %d) {\n" expected;
3200          pr "      fprintf (stderr, \"%s: expected %d but got %%d\\n\","
3201            test_name expected;
3202          pr "               (int) r);\n";
3203          pr "      return -1;\n";
3204          pr "    }\n"
3205        in
3206        List.iter (generate_test_command_call test_name) seq;
3207        generate_test_command_call ~test test_name last
3208    | TestOutputTrue seq ->
3209        pr "  /* TestOutputTrue for %s (%d) */\n" name i;
3210        let seq, last = get_seq_last seq in
3211        let test () =
3212          pr "    if (!r) {\n";
3213          pr "      fprintf (stderr, \"%s: expected true, got false\\n\");\n"
3214            test_name;
3215          pr "      return -1;\n";
3216          pr "    }\n"
3217        in
3218        List.iter (generate_test_command_call test_name) seq;
3219        generate_test_command_call ~test test_name last
3220    | TestOutputFalse seq ->
3221        pr "  /* TestOutputFalse for %s (%d) */\n" name i;
3222        let seq, last = get_seq_last seq in
3223        let test () =
3224          pr "    if (r) {\n";
3225          pr "      fprintf (stderr, \"%s: expected false, got true\\n\");\n"
3226            test_name;
3227          pr "      return -1;\n";
3228          pr "    }\n"
3229        in
3230        List.iter (generate_test_command_call test_name) seq;
3231        generate_test_command_call ~test test_name last
3232    | TestOutputLength (seq, expected) ->
3233        pr "  /* TestOutputLength for %s (%d) */\n" name i;
3234        let seq, last = get_seq_last seq in
3235        let test () =
3236          pr "    int j;\n";
3237          pr "    for (j = 0; j < %d; ++j)\n" expected;
3238          pr "      if (r[j] == NULL) {\n";
3239          pr "        fprintf (stderr, \"%s: short list returned\\n\");\n"
3240            test_name;
3241          pr "        print_strings (r);\n";
3242          pr "        return -1;\n";
3243          pr "      }\n";
3244          pr "    if (r[j] != NULL) {\n";
3245          pr "      fprintf (stderr, \"%s: long list returned\\n\");\n"
3246            test_name;
3247          pr "      print_strings (r);\n";
3248          pr "      return -1;\n";
3249          pr "    }\n"
3250        in
3251        List.iter (generate_test_command_call test_name) seq;
3252        generate_test_command_call ~test test_name last
3253    | TestOutputStruct (seq, checks) ->
3254        pr "  /* TestOutputStruct for %s (%d) */\n" name i;
3255        let seq, last = get_seq_last seq in
3256        let test () =
3257          List.iter (
3258            function
3259            | CompareWithInt (field, expected) ->
3260                pr "    if (r->%s != %d) {\n" field expected;
3261                pr "      fprintf (stderr, \"%s: %s was %%d, expected %d\\n\",\n"
3262                  test_name field expected;
3263                pr "               (int) r->%s);\n" field;
3264                pr "      return -1;\n";
3265                pr "    }\n"
3266            | CompareWithString (field, expected) ->
3267                pr "    if (strcmp (r->%s, \"%s\") != 0) {\n" field expected;
3268                pr "      fprintf (stderr, \"%s: %s was \"%%s\", expected \"%s\"\\n\",\n"
3269                  test_name field expected;
3270                pr "               r->%s);\n" field;
3271                pr "      return -1;\n";
3272                pr "    }\n"
3273            | CompareFieldsIntEq (field1, field2) ->
3274                pr "    if (r->%s != r->%s) {\n" field1 field2;
3275                pr "      fprintf (stderr, \"%s: %s (%%d) <> %s (%%d)\\n\",\n"
3276                  test_name field1 field2;
3277                pr "               (int) r->%s, (int) r->%s);\n" field1 field2;
3278                pr "      return -1;\n";
3279                pr "    }\n"
3280            | CompareFieldsStrEq (field1, field2) ->
3281                pr "    if (strcmp (r->%s, r->%s) != 0) {\n" field1 field2;
3282                pr "      fprintf (stderr, \"%s: %s (\"%%s\") <> %s (\"%%s\")\\n\",\n"
3283                  test_name field1 field2;
3284                pr "               r->%s, r->%s);\n" field1 field2;
3285                pr "      return -1;\n";
3286                pr "    }\n"
3287          ) checks
3288        in
3289        List.iter (generate_test_command_call test_name) seq;
3290        generate_test_command_call ~test test_name last
3291    | TestLastFail seq ->
3292        pr "  /* TestLastFail for %s (%d) */\n" name i;
3293        let seq, last = get_seq_last seq in
3294        List.iter (generate_test_command_call test_name) seq;
3295        generate_test_command_call test_name ~expect_error:true last
3296   );
3297
3298   pr "  return 0;\n";
3299   pr "}\n";
3300   pr "\n";
3301   test_name
3302
3303 (* Generate the code to run a command, leaving the result in 'r'.
3304  * If you expect to get an error then you should set expect_error:true.
3305  *)
3306 and generate_test_command_call ?(expect_error = false) ?test test_name cmd =
3307   match cmd with
3308   | [] -> assert false
3309   | name :: args ->
3310       (* Look up the command to find out what args/ret it has. *)
3311       let style =
3312         try
3313           let _, style, _, _, _, _, _ =
3314             List.find (fun (n, _, _, _, _, _, _) -> n = name) all_functions in
3315           style
3316         with Not_found ->
3317           failwithf "%s: in test, command %s was not found" test_name name in
3318
3319       if List.length (snd style) <> List.length args then
3320         failwithf "%s: in test, wrong number of args given to %s"
3321           test_name name;
3322
3323       pr "  {\n";
3324
3325       List.iter (
3326         function
3327         | String _, _
3328         | OptString _, _
3329         | Int _, _
3330         | Bool _, _ -> ()
3331         | FileIn _, _ | FileOut _, _ -> ()
3332         | StringList n, arg ->
3333             pr "    char *%s[] = {\n" n;
3334             let strs = string_split " " arg in
3335             List.iter (
3336               fun str -> pr "      \"%s\",\n" (c_quote str)
3337             ) strs;
3338             pr "      NULL\n";
3339             pr "    };\n";
3340       ) (List.combine (snd style) args);
3341
3342       let error_code =
3343         match fst style with
3344         | RErr | RInt _ | RBool _ -> pr "    int r;\n"; "-1"
3345         | RInt64 _ -> pr "    int64_t r;\n"; "-1"
3346         | RConstString _ -> pr "    const char *r;\n"; "NULL"
3347         | RString _ -> pr "    char *r;\n"; "NULL"
3348         | RStringList _ | RHashtable _ ->
3349             pr "    char **r;\n";
3350             pr "    int i;\n";
3351             "NULL"
3352         | RIntBool _ ->
3353             pr "    struct guestfs_int_bool *r;\n"; "NULL"
3354         | RPVList _ ->
3355             pr "    struct guestfs_lvm_pv_list *r;\n"; "NULL"
3356         | RVGList _ ->
3357             pr "    struct guestfs_lvm_vg_list *r;\n"; "NULL"
3358         | RLVList _ ->
3359             pr "    struct guestfs_lvm_lv_list *r;\n"; "NULL"
3360         | RStat _ ->
3361             pr "    struct guestfs_stat *r;\n"; "NULL"
3362         | RStatVFS _ ->
3363             pr "    struct guestfs_statvfs *r;\n"; "NULL" in
3364
3365       pr "    suppress_error = %d;\n" (if expect_error then 1 else 0);
3366       pr "    r = guestfs_%s (g" name;
3367
3368       (* Generate the parameters. *)
3369       List.iter (
3370         function
3371         | String _, arg
3372         | FileIn _, arg | FileOut _, arg ->
3373             pr ", \"%s\"" (c_quote arg)
3374         | OptString _, arg ->
3375             if arg = "NULL" then pr ", NULL" else pr ", \"%s\"" (c_quote arg)
3376         | StringList n, _ ->
3377             pr ", %s" n
3378         | Int _, arg ->
3379             let i =
3380               try int_of_string arg
3381               with Failure "int_of_string" ->
3382                 failwithf "%s: expecting an int, but got '%s'" test_name arg in
3383             pr ", %d" i
3384         | Bool _, arg ->
3385             let b = bool_of_string arg in pr ", %d" (if b then 1 else 0)
3386       ) (List.combine (snd style) args);
3387
3388       pr ");\n";
3389       if not expect_error then
3390         pr "    if (r == %s)\n" error_code
3391       else
3392         pr "    if (r != %s)\n" error_code;
3393       pr "      return -1;\n";
3394
3395       (* Insert the test code. *)
3396       (match test with
3397        | None -> ()
3398        | Some f -> f ()
3399       );
3400
3401       (match fst style with
3402        | RErr | RInt _ | RInt64 _ | RBool _ | RConstString _ -> ()
3403        | RString _ -> pr "    free (r);\n"
3404        | RStringList _ | RHashtable _ ->
3405            pr "    for (i = 0; r[i] != NULL; ++i)\n";
3406            pr "      free (r[i]);\n";
3407            pr "    free (r);\n"
3408        | RIntBool _ ->
3409            pr "    guestfs_free_int_bool (r);\n"
3410        | RPVList _ ->
3411            pr "    guestfs_free_lvm_pv_list (r);\n"
3412        | RVGList _ ->
3413            pr "    guestfs_free_lvm_vg_list (r);\n"
3414        | RLVList _ ->
3415            pr "    guestfs_free_lvm_lv_list (r);\n"
3416        | RStat _ | RStatVFS _ ->
3417            pr "    free (r);\n"
3418       );
3419
3420       pr "  }\n"
3421
3422 and c_quote str =
3423   let str = replace_str str "\r" "\\r" in
3424   let str = replace_str str "\n" "\\n" in
3425   let str = replace_str str "\t" "\\t" in
3426   str
3427
3428 (* Generate a lot of different functions for guestfish. *)
3429 and generate_fish_cmds () =
3430   generate_header CStyle GPLv2;
3431
3432   let all_functions =
3433     List.filter (
3434       fun (_, _, _, flags, _, _, _) -> not (List.mem NotInFish flags)
3435     ) all_functions in
3436   let all_functions_sorted =
3437     List.filter (
3438       fun (_, _, _, flags, _, _, _) -> not (List.mem NotInFish flags)
3439     ) all_functions_sorted in
3440
3441   pr "#include <stdio.h>\n";
3442   pr "#include <stdlib.h>\n";
3443   pr "#include <string.h>\n";
3444   pr "#include <inttypes.h>\n";
3445   pr "\n";
3446   pr "#include <guestfs.h>\n";
3447   pr "#include \"fish.h\"\n";
3448   pr "\n";
3449
3450   (* list_commands function, which implements guestfish -h *)
3451   pr "void list_commands (void)\n";
3452   pr "{\n";
3453   pr "  printf (\"    %%-16s     %%s\\n\", \"Command\", \"Description\");\n";
3454   pr "  list_builtin_commands ();\n";
3455   List.iter (
3456     fun (name, _, _, flags, _, shortdesc, _) ->
3457       let name = replace_char name '_' '-' in
3458       pr "  printf (\"%%-20s %%s\\n\", \"%s\", \"%s\");\n"
3459         name shortdesc
3460   ) all_functions_sorted;
3461   pr "  printf (\"    Use -h <cmd> / help <cmd> to show detailed help for a command.\\n\");\n";
3462   pr "}\n";
3463   pr "\n";
3464
3465   (* display_command function, which implements guestfish -h cmd *)
3466   pr "void display_command (const char *cmd)\n";
3467   pr "{\n";
3468   List.iter (
3469     fun (name, style, _, flags, _, shortdesc, longdesc) ->
3470       let name2 = replace_char name '_' '-' in
3471       let alias =
3472         try find_map (function FishAlias n -> Some n | _ -> None) flags
3473         with Not_found -> name in
3474       let longdesc = replace_str longdesc "C<guestfs_" "C<" in
3475       let synopsis =
3476         match snd style with
3477         | [] -> name2
3478         | args ->
3479             sprintf "%s <%s>"
3480               name2 (String.concat "> <" (List.map name_of_argt args)) in
3481
3482       let warnings =
3483         if List.mem ProtocolLimitWarning flags then
3484           ("\n\n" ^ protocol_limit_warning)
3485         else "" in
3486
3487       (* For DangerWillRobinson commands, we should probably have
3488        * guestfish prompt before allowing you to use them (especially
3489        * in interactive mode). XXX
3490        *)
3491       let warnings =
3492         warnings ^
3493           if List.mem DangerWillRobinson flags then
3494             ("\n\n" ^ danger_will_robinson)
3495           else "" in
3496
3497       let describe_alias =
3498         if name <> alias then
3499           sprintf "\n\nYou can use '%s' as an alias for this command." alias
3500         else "" in
3501
3502       pr "  if (";
3503       pr "strcasecmp (cmd, \"%s\") == 0" name;
3504       if name <> name2 then
3505         pr " || strcasecmp (cmd, \"%s\") == 0" name2;
3506       if name <> alias then
3507         pr " || strcasecmp (cmd, \"%s\") == 0" alias;
3508       pr ")\n";
3509       pr "    pod2text (\"%s - %s\", %S);\n"
3510         name2 shortdesc
3511         (" " ^ synopsis ^ "\n\n" ^ longdesc ^ warnings ^ describe_alias);
3512       pr "  else\n"
3513   ) all_functions;
3514   pr "    display_builtin_command (cmd);\n";
3515   pr "}\n";
3516   pr "\n";
3517
3518   (* print_{pv,vg,lv}_list functions *)
3519   List.iter (
3520     function
3521     | typ, cols ->
3522         pr "static void print_%s (struct guestfs_lvm_%s *%s)\n" typ typ typ;
3523         pr "{\n";
3524         pr "  int i;\n";
3525         pr "\n";
3526         List.iter (
3527           function
3528           | name, `String ->
3529               pr "  printf (\"%s: %%s\\n\", %s->%s);\n" name typ name
3530           | name, `UUID ->
3531               pr "  printf (\"%s: \");\n" name;
3532               pr "  for (i = 0; i < 32; ++i)\n";
3533               pr "    printf (\"%%c\", %s->%s[i]);\n" typ name;
3534               pr "  printf (\"\\n\");\n"
3535           | name, `Bytes ->
3536               pr "  printf (\"%s: %%\" PRIu64 \"\\n\", %s->%s);\n" name typ name
3537           | name, `Int ->
3538               pr "  printf (\"%s: %%\" PRIi64 \"\\n\", %s->%s);\n" name typ name
3539           | name, `OptPercent ->
3540               pr "  if (%s->%s >= 0) printf (\"%s: %%g %%%%\\n\", %s->%s);\n"
3541                 typ name name typ name;
3542               pr "  else printf (\"%s: \\n\");\n" name
3543         ) cols;
3544         pr "}\n";
3545         pr "\n";
3546         pr "static void print_%s_list (struct guestfs_lvm_%s_list *%ss)\n"
3547           typ typ typ;
3548         pr "{\n";
3549         pr "  int i;\n";
3550         pr "\n";
3551         pr "  for (i = 0; i < %ss->len; ++i)\n" typ;
3552         pr "    print_%s (&%ss->val[i]);\n" typ typ;
3553         pr "}\n";
3554         pr "\n";
3555   ) ["pv", pv_cols; "vg", vg_cols; "lv", lv_cols];
3556
3557   (* print_{stat,statvfs} functions *)
3558   List.iter (
3559     function
3560     | typ, cols ->
3561         pr "static void print_%s (struct guestfs_%s *%s)\n" typ typ typ;
3562         pr "{\n";
3563         List.iter (
3564           function
3565           | name, `Int ->
3566               pr "  printf (\"%s: %%\" PRIi64 \"\\n\", %s->%s);\n" name typ name
3567         ) cols;
3568         pr "}\n";
3569         pr "\n";
3570   ) ["stat", stat_cols; "statvfs", statvfs_cols];
3571
3572   (* run_<action> actions *)
3573   List.iter (
3574     fun (name, style, _, flags, _, _, _) ->
3575       pr "static int run_%s (const char *cmd, int argc, char *argv[])\n" name;
3576       pr "{\n";
3577       (match fst style with
3578        | RErr
3579        | RInt _
3580        | RBool _ -> pr "  int r;\n"
3581        | RInt64 _ -> pr "  int64_t r;\n"
3582        | RConstString _ -> pr "  const char *r;\n"
3583        | RString _ -> pr "  char *r;\n"
3584        | RStringList _ | RHashtable _ -> pr "  char **r;\n"
3585        | RIntBool _ -> pr "  struct guestfs_int_bool *r;\n"
3586        | RPVList _ -> pr "  struct guestfs_lvm_pv_list *r;\n"
3587        | RVGList _ -> pr "  struct guestfs_lvm_vg_list *r;\n"
3588        | RLVList _ -> pr "  struct guestfs_lvm_lv_list *r;\n"
3589        | RStat _ -> pr "  struct guestfs_stat *r;\n"
3590        | RStatVFS _ -> pr "  struct guestfs_statvfs *r;\n"
3591       );
3592       List.iter (
3593         function
3594         | String n
3595         | OptString n
3596         | FileIn n
3597         | FileOut n -> pr "  const char *%s;\n" n
3598         | StringList n -> pr "  char **%s;\n" n
3599         | Bool n -> pr "  int %s;\n" n
3600         | Int n -> pr "  int %s;\n" n
3601       ) (snd style);
3602
3603       (* Check and convert parameters. *)
3604       let argc_expected = List.length (snd style) in
3605       pr "  if (argc != %d) {\n" argc_expected;
3606       pr "    fprintf (stderr, \"%%s should have %d parameter(s)\\n\", cmd);\n"
3607         argc_expected;
3608       pr "    fprintf (stderr, \"type 'help %%s' for help on %%s\\n\", cmd, cmd);\n";
3609       pr "    return -1;\n";
3610       pr "  }\n";
3611       iteri (
3612         fun i ->
3613           function
3614           | String name -> pr "  %s = argv[%d];\n" name i
3615           | OptString name ->
3616               pr "  %s = strcmp (argv[%d], \"\") != 0 ? argv[%d] : NULL;\n"
3617                 name i i
3618           | FileIn name ->
3619               pr "  %s = strcmp (argv[%d], \"-\") != 0 ? argv[%d] : \"/dev/stdin\";\n"
3620                 name i i
3621           | FileOut name ->
3622               pr "  %s = strcmp (argv[%d], \"-\") != 0 ? argv[%d] : \"/dev/stdout\";\n"
3623                 name i i
3624           | StringList name ->
3625               pr "  %s = parse_string_list (argv[%d]);\n" name i
3626           | Bool name