Haskell bindings: fix boolean arguments.
[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   | NotInDocs             (* do not add this function to documentation *)
120
121 let protocol_limit_warning =
122   "Because of the message protocol, there is a transfer limit 
123 of somewhere between 2MB and 4MB.  To transfer large files you should use
124 FTP."
125
126 let danger_will_robinson =
127   "B<This command is dangerous.  Without careful use you
128 can easily destroy all your data>."
129
130 (* You can supply zero or as many tests as you want per API call.
131  *
132  * Note that the test environment has 3 block devices, of size 500MB,
133  * 50MB and 10MB (respectively /dev/sda, /dev/sdb, /dev/sdc), and
134  * a fourth squashfs block device with some known files on it (/dev/sdd).
135  *
136  * Note for partitioning purposes, the 500MB device has 63 cylinders.
137  *
138  * The squashfs block device (/dev/sdd) comes from images/test.sqsh.
139  *
140  * To be able to run the tests in a reasonable amount of time,
141  * the virtual machine and block devices are reused between tests.
142  * So don't try testing kill_subprocess :-x
143  *
144  * Between each test we blockdev-setrw, umount-all, lvm-remove-all.
145  *
146  * Don't assume anything about the previous contents of the block
147  * devices.  Use 'Init*' to create some initial scenarios.
148  *
149  * You can add a prerequisite clause to any individual test.  This
150  * is a run-time check, which, if it fails, causes the test to be
151  * skipped.  Useful if testing a command which might not work on
152  * all variations of libguestfs builds.  A test that has prerequisite
153  * of 'Always' is run unconditionally.
154  *
155  * In addition, packagers can skip individual tests by setting the
156  * environment variables:     eg:
157  *   SKIP_TEST_<CMD>_<NUM>=1  SKIP_TEST_COMMAND_3=1  (skips test #3 of command)
158  *   SKIP_TEST_<CMD>=1        SKIP_TEST_ZEROFREE=1   (skips all zerofree tests)
159  *)
160 type tests = (test_init * test_prereq * test) list
161 and test =
162     (* Run the command sequence and just expect nothing to fail. *)
163   | TestRun of seq
164     (* Run the command sequence and expect the output of the final
165      * command to be the string.
166      *)
167   | TestOutput of seq * string
168     (* Run the command sequence and expect the output of the final
169      * command to be the list of strings.
170      *)
171   | TestOutputList of seq * string list
172     (* Run the command sequence and expect the output of the final
173      * command to be the list of block devices (could be either
174      * "/dev/sd.." or "/dev/hd.." form - we don't check the 5th
175      * character of each string).
176      *)
177   | TestOutputListOfDevices of seq * string list
178     (* Run the command sequence and expect the output of the final
179      * command to be the integer.
180      *)
181   | TestOutputInt of seq * int
182     (* Run the command sequence and expect the output of the final
183      * command to be a true value (!= 0 or != NULL).
184      *)
185   | TestOutputTrue of seq
186     (* Run the command sequence and expect the output of the final
187      * command to be a false value (== 0 or == NULL, but not an error).
188      *)
189   | TestOutputFalse of seq
190     (* Run the command sequence and expect the output of the final
191      * command to be a list of the given length (but don't care about
192      * content).
193      *)
194   | TestOutputLength of seq * int
195     (* Run the command sequence and expect the output of the final
196      * command to be a structure.
197      *)
198   | TestOutputStruct of seq * test_field_compare list
199     (* Run the command sequence and expect the final command (only)
200      * to fail.
201      *)
202   | TestLastFail of seq
203
204 and test_field_compare =
205   | CompareWithInt of string * int
206   | CompareWithString of string * string
207   | CompareFieldsIntEq of string * string
208   | CompareFieldsStrEq of string * string
209
210 (* Test prerequisites. *)
211 and test_prereq =
212     (* Test always runs. *)
213   | Always
214     (* Test is currently disabled - eg. it fails, or it tests some
215      * unimplemented feature.
216      *)
217   | Disabled
218     (* 'string' is some C code (a function body) that should return
219      * true or false.  The test will run if the code returns true.
220      *)
221   | If of string
222     (* As for 'If' but the test runs _unless_ the code returns true. *)
223   | Unless of string
224
225 (* Some initial scenarios for testing. *)
226 and test_init =
227     (* Do nothing, block devices could contain random stuff including
228      * LVM PVs, and some filesystems might be mounted.  This is usually
229      * a bad idea.
230      *)
231   | InitNone
232     (* Block devices are empty and no filesystems are mounted. *)
233   | InitEmpty
234     (* /dev/sda contains a single partition /dev/sda1, which is formatted
235      * as ext2, empty [except for lost+found] and mounted on /.
236      * /dev/sdb and /dev/sdc may have random content.
237      * No LVM.
238      *)
239   | InitBasicFS
240     (* /dev/sda:
241      *   /dev/sda1 (is a PV):
242      *     /dev/VG/LV (size 8MB):
243      *       formatted as ext2, empty [except for lost+found], mounted on /
244      * /dev/sdb and /dev/sdc may have random content.
245      *)
246   | InitBasicFSonLVM
247
248 (* Sequence of commands for testing. *)
249 and seq = cmd list
250 and cmd = string list
251
252 (* Note about long descriptions: When referring to another
253  * action, use the format C<guestfs_other> (ie. the full name of
254  * the C function).  This will be replaced as appropriate in other
255  * language bindings.
256  *
257  * Apart from that, long descriptions are just perldoc paragraphs.
258  *)
259
260 (* These test functions are used in the language binding tests. *)
261
262 let test_all_args = [
263   String "str";
264   OptString "optstr";
265   StringList "strlist";
266   Bool "b";
267   Int "integer";
268   FileIn "filein";
269   FileOut "fileout";
270 ]
271
272 let test_all_rets = [
273   (* except for RErr, which is tested thoroughly elsewhere *)
274   "test0rint",         RInt "valout";
275   "test0rint64",       RInt64 "valout";
276   "test0rbool",        RBool "valout";
277   "test0rconststring", RConstString "valout";
278   "test0rstring",      RString "valout";
279   "test0rstringlist",  RStringList "valout";
280   "test0rintbool",     RIntBool ("valout", "valout");
281   "test0rpvlist",      RPVList "valout";
282   "test0rvglist",      RVGList "valout";
283   "test0rlvlist",      RLVList "valout";
284   "test0rstat",        RStat "valout";
285   "test0rstatvfs",     RStatVFS "valout";
286   "test0rhashtable",   RHashtable "valout";
287 ]
288
289 let test_functions = [
290   ("test0", (RErr, test_all_args), -1, [NotInFish; NotInDocs],
291    [],
292    "internal test function - do not use",
293    "\
294 This is an internal test function which is used to test whether
295 the automatically generated bindings can handle every possible
296 parameter type correctly.
297
298 It echos the contents of each parameter to stdout.
299
300 You probably don't want to call this function.");
301 ] @ List.flatten (
302   List.map (
303     fun (name, ret) ->
304       [(name, (ret, [String "val"]), -1, [NotInFish; NotInDocs],
305         [],
306         "internal test function - do not use",
307         "\
308 This is an internal test function which is used to test whether
309 the automatically generated bindings can handle every possible
310 return type correctly.
311
312 It converts string C<val> to the return type.
313
314 You probably don't want to call this function.");
315        (name ^ "err", (ret, []), -1, [NotInFish; NotInDocs],
316         [],
317         "internal test function - do not use",
318         "\
319 This is an internal test function which is used to test whether
320 the automatically generated bindings can handle every possible
321 return type correctly.
322
323 This function always returns an error.
324
325 You probably don't want to call this function.")]
326   ) test_all_rets
327 )
328
329 (* non_daemon_functions are any functions which don't get processed
330  * in the daemon, eg. functions for setting and getting local
331  * configuration values.
332  *)
333
334 let non_daemon_functions = test_functions @ [
335   ("launch", (RErr, []), -1, [FishAlias "run"; FishAction "launch"],
336    [],
337    "launch the qemu subprocess",
338    "\
339 Internally libguestfs is implemented by running a virtual machine
340 using L<qemu(1)>.
341
342 You should call this after configuring the handle
343 (eg. adding drives) but before performing any actions.");
344
345   ("wait_ready", (RErr, []), -1, [NotInFish],
346    [],
347    "wait until the qemu subprocess launches",
348    "\
349 Internally libguestfs is implemented by running a virtual machine
350 using L<qemu(1)>.
351
352 You should call this after C<guestfs_launch> to wait for the launch
353 to complete.");
354
355   ("kill_subprocess", (RErr, []), -1, [],
356    [],
357    "kill the qemu subprocess",
358    "\
359 This kills the qemu subprocess.  You should never need to call this.");
360
361   ("add_drive", (RErr, [String "filename"]), -1, [FishAlias "add"],
362    [],
363    "add an image to examine or modify",
364    "\
365 This function adds a virtual machine disk image C<filename> to the
366 guest.  The first time you call this function, the disk appears as IDE
367 disk 0 (C</dev/sda>) in the guest, the second time as C</dev/sdb>, and
368 so on.
369
370 You don't necessarily need to be root when using libguestfs.  However
371 you obviously do need sufficient permissions to access the filename
372 for whatever operations you want to perform (ie. read access if you
373 just want to read the image or write access if you want to modify the
374 image).
375
376 This is equivalent to the qemu parameter C<-drive file=filename,cache=off>.
377
378 Note that this call checks for the existence of C<filename>.  This
379 stops you from specifying other types of drive which are supported
380 by qemu such as C<nbd:> and C<http:> URLs.  To specify those, use
381 the general C<guestfs_config> call instead.");
382
383   ("add_cdrom", (RErr, [String "filename"]), -1, [FishAlias "cdrom"],
384    [],
385    "add a CD-ROM disk image to examine",
386    "\
387 This function adds a virtual CD-ROM disk image to the guest.
388
389 This is equivalent to the qemu parameter C<-cdrom filename>.
390
391 Note that this call checks for the existence of C<filename>.  This
392 stops you from specifying other types of drive which are supported
393 by qemu such as C<nbd:> and C<http:> URLs.  To specify those, use
394 the general C<guestfs_config> call instead.");
395
396   ("add_drive_ro", (RErr, [String "filename"]), -1, [FishAlias "add-ro"],
397    [],
398    "add a drive in snapshot mode (read-only)",
399    "\
400 This adds a drive in snapshot mode, making it effectively
401 read-only.
402
403 Note that writes to the device are allowed, and will be seen for
404 the duration of the guestfs handle, but they are written
405 to a temporary file which is discarded as soon as the guestfs
406 handle is closed.  We don't currently have any method to enable
407 changes to be committed, although qemu can support this.
408
409 This is equivalent to the qemu parameter
410 C<-drive file=filename,snapshot=on>.
411
412 Note that this call checks for the existence of C<filename>.  This
413 stops you from specifying other types of drive which are supported
414 by qemu such as C<nbd:> and C<http:> URLs.  To specify those, use
415 the general C<guestfs_config> call instead.");
416
417   ("config", (RErr, [String "qemuparam"; OptString "qemuvalue"]), -1, [],
418    [],
419    "add qemu parameters",
420    "\
421 This can be used to add arbitrary qemu command line parameters
422 of the form C<-param value>.  Actually it's not quite arbitrary - we
423 prevent you from setting some parameters which would interfere with
424 parameters that we use.
425
426 The first character of C<param> string must be a C<-> (dash).
427
428 C<value> can be NULL.");
429
430   ("set_qemu", (RErr, [String "qemu"]), -1, [FishAlias "qemu"],
431    [],
432    "set the qemu binary",
433    "\
434 Set the qemu binary that we will use.
435
436 The default is chosen when the library was compiled by the
437 configure script.
438
439 You can also override this by setting the C<LIBGUESTFS_QEMU>
440 environment variable.
441
442 Setting C<qemu> to C<NULL> restores the default qemu binary.");
443
444   ("get_qemu", (RConstString "qemu", []), -1, [],
445    [],
446    "get the qemu binary",
447    "\
448 Return the current qemu binary.
449
450 This is always non-NULL.  If it wasn't set already, then this will
451 return the default qemu binary name.");
452
453   ("set_path", (RErr, [String "path"]), -1, [FishAlias "path"],
454    [],
455    "set the search path",
456    "\
457 Set the path that libguestfs searches for kernel and initrd.img.
458
459 The default is C<$libdir/guestfs> unless overridden by setting
460 C<LIBGUESTFS_PATH> environment variable.
461
462 Setting C<path> to C<NULL> restores the default path.");
463
464   ("get_path", (RConstString "path", []), -1, [],
465    [],
466    "get the search path",
467    "\
468 Return the current search path.
469
470 This is always non-NULL.  If it wasn't set already, then this will
471 return the default path.");
472
473   ("set_append", (RErr, [String "append"]), -1, [FishAlias "append"],
474    [],
475    "add options to kernel command line",
476    "\
477 This function is used to add additional options to the
478 guest kernel command line.
479
480 The default is C<NULL> unless overridden by setting
481 C<LIBGUESTFS_APPEND> environment variable.
482
483 Setting C<append> to C<NULL> means I<no> additional options
484 are passed (libguestfs always adds a few of its own).");
485
486   ("get_append", (RConstString "append", []), -1, [],
487    [],
488    "get the additional kernel options",
489    "\
490 Return the additional kernel options which are added to the
491 guest kernel command line.
492
493 If C<NULL> then no options are added.");
494
495   ("set_autosync", (RErr, [Bool "autosync"]), -1, [FishAlias "autosync"],
496    [],
497    "set autosync mode",
498    "\
499 If C<autosync> is true, this enables autosync.  Libguestfs will make a
500 best effort attempt to run C<guestfs_umount_all> followed by
501 C<guestfs_sync> when the handle is closed
502 (also if the program exits without closing handles).
503
504 This is disabled by default (except in guestfish where it is
505 enabled by default).");
506
507   ("get_autosync", (RBool "autosync", []), -1, [],
508    [],
509    "get autosync mode",
510    "\
511 Get the autosync flag.");
512
513   ("set_verbose", (RErr, [Bool "verbose"]), -1, [FishAlias "verbose"],
514    [],
515    "set verbose mode",
516    "\
517 If C<verbose> is true, this turns on verbose messages (to C<stderr>).
518
519 Verbose messages are disabled unless the environment variable
520 C<LIBGUESTFS_DEBUG> is defined and set to C<1>.");
521
522   ("get_verbose", (RBool "verbose", []), -1, [],
523    [],
524    "get verbose mode",
525    "\
526 This returns the verbose messages flag.");
527
528   ("is_ready", (RBool "ready", []), -1, [],
529    [],
530    "is ready to accept commands",
531    "\
532 This returns true iff this handle is ready to accept commands
533 (in the C<READY> state).
534
535 For more information on states, see L<guestfs(3)>.");
536
537   ("is_config", (RBool "config", []), -1, [],
538    [],
539    "is in configuration state",
540    "\
541 This returns true iff this handle is being configured
542 (in the C<CONFIG> state).
543
544 For more information on states, see L<guestfs(3)>.");
545
546   ("is_launching", (RBool "launching", []), -1, [],
547    [],
548    "is launching subprocess",
549    "\
550 This returns true iff this handle is launching the subprocess
551 (in the C<LAUNCHING> state).
552
553 For more information on states, see L<guestfs(3)>.");
554
555   ("is_busy", (RBool "busy", []), -1, [],
556    [],
557    "is busy processing a command",
558    "\
559 This returns true iff this handle is busy processing a command
560 (in the C<BUSY> state).
561
562 For more information on states, see L<guestfs(3)>.");
563
564   ("get_state", (RInt "state", []), -1, [],
565    [],
566    "get the current state",
567    "\
568 This returns the current state as an opaque integer.  This is
569 only useful for printing debug and internal error messages.
570
571 For more information on states, see L<guestfs(3)>.");
572
573   ("set_busy", (RErr, []), -1, [NotInFish],
574    [],
575    "set state to busy",
576    "\
577 This sets the state to C<BUSY>.  This is only used when implementing
578 actions using the low-level API.
579
580 For more information on states, see L<guestfs(3)>.");
581
582   ("set_ready", (RErr, []), -1, [NotInFish],
583    [],
584    "set state to ready",
585    "\
586 This sets the state to C<READY>.  This is only used when implementing
587 actions using the low-level API.
588
589 For more information on states, see L<guestfs(3)>.");
590
591   ("end_busy", (RErr, []), -1, [NotInFish],
592    [],
593    "leave the busy state",
594    "\
595 This sets the state to C<READY>, or if in C<CONFIG> then it leaves the
596 state as is.  This is only used when implementing
597 actions using the low-level API.
598
599 For more information on states, see L<guestfs(3)>.");
600
601 ]
602
603 (* daemon_functions are any functions which cause some action
604  * to take place in the daemon.
605  *)
606
607 let daemon_functions = [
608   ("mount", (RErr, [String "device"; String "mountpoint"]), 1, [],
609    [InitEmpty, Always, TestOutput (
610       [["sfdisk"; "/dev/sda"; "0"; "0"; "0"; ","];
611        ["mkfs"; "ext2"; "/dev/sda1"];
612        ["mount"; "/dev/sda1"; "/"];
613        ["write_file"; "/new"; "new file contents"; "0"];
614        ["cat"; "/new"]], "new file contents")],
615    "mount a guest disk at a position in the filesystem",
616    "\
617 Mount a guest disk at a position in the filesystem.  Block devices
618 are named C</dev/sda>, C</dev/sdb> and so on, as they were added to
619 the guest.  If those block devices contain partitions, they will have
620 the usual names (eg. C</dev/sda1>).  Also LVM C</dev/VG/LV>-style
621 names can be used.
622
623 The rules are the same as for L<mount(2)>:  A filesystem must
624 first be mounted on C</> before others can be mounted.  Other
625 filesystems can only be mounted on directories which already
626 exist.
627
628 The mounted filesystem is writable, if we have sufficient permissions
629 on the underlying device.
630
631 The filesystem options C<sync> and C<noatime> are set with this
632 call, in order to improve reliability.");
633
634   ("sync", (RErr, []), 2, [],
635    [ InitEmpty, Always, TestRun [["sync"]]],
636    "sync disks, writes are flushed through to the disk image",
637    "\
638 This syncs the disk, so that any writes are flushed through to the
639 underlying disk image.
640
641 You should always call this if you have modified a disk image, before
642 closing the handle.");
643
644   ("touch", (RErr, [String "path"]), 3, [],
645    [InitBasicFS, Always, TestOutputTrue (
646       [["touch"; "/new"];
647        ["exists"; "/new"]])],
648    "update file timestamps or create a new file",
649    "\
650 Touch acts like the L<touch(1)> command.  It can be used to
651 update the timestamps on a file, or, if the file does not exist,
652 to create a new zero-length file.");
653
654   ("cat", (RString "content", [String "path"]), 4, [ProtocolLimitWarning],
655    [InitBasicFS, Always, TestOutput (
656       [["write_file"; "/new"; "new file contents"; "0"];
657        ["cat"; "/new"]], "new file contents")],
658    "list the contents of a file",
659    "\
660 Return the contents of the file named C<path>.
661
662 Note that this function cannot correctly handle binary files
663 (specifically, files containing C<\\0> character which is treated
664 as end of string).  For those you need to use the C<guestfs_download>
665 function which has a more complex interface.");
666
667   ("ll", (RString "listing", [String "directory"]), 5, [],
668    [], (* XXX Tricky to test because it depends on the exact format
669         * of the 'ls -l' command, which changes between F10 and F11.
670         *)
671    "list the files in a directory (long format)",
672    "\
673 List the files in C<directory> (relative to the root directory,
674 there is no cwd) in the format of 'ls -la'.
675
676 This command is mostly useful for interactive sessions.  It
677 is I<not> intended that you try to parse the output string.");
678
679   ("ls", (RStringList "listing", [String "directory"]), 6, [],
680    [InitBasicFS, Always, TestOutputList (
681       [["touch"; "/new"];
682        ["touch"; "/newer"];
683        ["touch"; "/newest"];
684        ["ls"; "/"]], ["lost+found"; "new"; "newer"; "newest"])],
685    "list the files in a directory",
686    "\
687 List the files in C<directory> (relative to the root directory,
688 there is no cwd).  The '.' and '..' entries are not returned, but
689 hidden files are shown.
690
691 This command is mostly useful for interactive sessions.  Programs
692 should probably use C<guestfs_readdir> instead.");
693
694   ("list_devices", (RStringList "devices", []), 7, [],
695    [InitEmpty, Always, TestOutputListOfDevices (
696       [["list_devices"]], ["/dev/sda"; "/dev/sdb"; "/dev/sdc"; "/dev/sdd"])],
697    "list the block devices",
698    "\
699 List all the block devices.
700
701 The full block device names are returned, eg. C</dev/sda>");
702
703   ("list_partitions", (RStringList "partitions", []), 8, [],
704    [InitBasicFS, Always, TestOutputListOfDevices (
705       [["list_partitions"]], ["/dev/sda1"]);
706     InitEmpty, Always, TestOutputListOfDevices (
707       [["sfdisk"; "/dev/sda"; "0"; "0"; "0"; ",10 ,20 ,"];
708        ["list_partitions"]], ["/dev/sda1"; "/dev/sda2"; "/dev/sda3"])],
709    "list the partitions",
710    "\
711 List all the partitions detected on all block devices.
712
713 The full partition device names are returned, eg. C</dev/sda1>
714
715 This does not return logical volumes.  For that you will need to
716 call C<guestfs_lvs>.");
717
718   ("pvs", (RStringList "physvols", []), 9, [],
719    [InitBasicFSonLVM, Always, TestOutputListOfDevices (
720       [["pvs"]], ["/dev/sda1"]);
721     InitEmpty, Always, TestOutputListOfDevices (
722       [["sfdisk"; "/dev/sda"; "0"; "0"; "0"; ",10 ,20 ,"];
723        ["pvcreate"; "/dev/sda1"];
724        ["pvcreate"; "/dev/sda2"];
725        ["pvcreate"; "/dev/sda3"];
726        ["pvs"]], ["/dev/sda1"; "/dev/sda2"; "/dev/sda3"])],
727    "list the LVM physical volumes (PVs)",
728    "\
729 List all the physical volumes detected.  This is the equivalent
730 of the L<pvs(8)> command.
731
732 This returns a list of just the device names that contain
733 PVs (eg. C</dev/sda2>).
734
735 See also C<guestfs_pvs_full>.");
736
737   ("vgs", (RStringList "volgroups", []), 10, [],
738    [InitBasicFSonLVM, Always, TestOutputList (
739       [["vgs"]], ["VG"]);
740     InitEmpty, Always, TestOutputList (
741       [["sfdisk"; "/dev/sda"; "0"; "0"; "0"; ",10 ,20 ,"];
742        ["pvcreate"; "/dev/sda1"];
743        ["pvcreate"; "/dev/sda2"];
744        ["pvcreate"; "/dev/sda3"];
745        ["vgcreate"; "VG1"; "/dev/sda1 /dev/sda2"];
746        ["vgcreate"; "VG2"; "/dev/sda3"];
747        ["vgs"]], ["VG1"; "VG2"])],
748    "list the LVM volume groups (VGs)",
749    "\
750 List all the volumes groups detected.  This is the equivalent
751 of the L<vgs(8)> command.
752
753 This returns a list of just the volume group names that were
754 detected (eg. C<VolGroup00>).
755
756 See also C<guestfs_vgs_full>.");
757
758   ("lvs", (RStringList "logvols", []), 11, [],
759    [InitBasicFSonLVM, Always, TestOutputList (
760       [["lvs"]], ["/dev/VG/LV"]);
761     InitEmpty, Always, TestOutputList (
762       [["sfdisk"; "/dev/sda"; "0"; "0"; "0"; ",10 ,20 ,"];
763        ["pvcreate"; "/dev/sda1"];
764        ["pvcreate"; "/dev/sda2"];
765        ["pvcreate"; "/dev/sda3"];
766        ["vgcreate"; "VG1"; "/dev/sda1 /dev/sda2"];
767        ["vgcreate"; "VG2"; "/dev/sda3"];
768        ["lvcreate"; "LV1"; "VG1"; "50"];
769        ["lvcreate"; "LV2"; "VG1"; "50"];
770        ["lvcreate"; "LV3"; "VG2"; "50"];
771        ["lvs"]], ["/dev/VG1/LV1"; "/dev/VG1/LV2"; "/dev/VG2/LV3"])],
772    "list the LVM logical volumes (LVs)",
773    "\
774 List all the logical volumes detected.  This is the equivalent
775 of the L<lvs(8)> command.
776
777 This returns a list of the logical volume device names
778 (eg. C</dev/VolGroup00/LogVol00>).
779
780 See also C<guestfs_lvs_full>.");
781
782   ("pvs_full", (RPVList "physvols", []), 12, [],
783    [], (* XXX how to test? *)
784    "list the LVM physical volumes (PVs)",
785    "\
786 List all the physical volumes detected.  This is the equivalent
787 of the L<pvs(8)> command.  The \"full\" version includes all fields.");
788
789   ("vgs_full", (RVGList "volgroups", []), 13, [],
790    [], (* XXX how to test? *)
791    "list the LVM volume groups (VGs)",
792    "\
793 List all the volumes groups detected.  This is the equivalent
794 of the L<vgs(8)> command.  The \"full\" version includes all fields.");
795
796   ("lvs_full", (RLVList "logvols", []), 14, [],
797    [], (* XXX how to test? *)
798    "list the LVM logical volumes (LVs)",
799    "\
800 List all the logical volumes detected.  This is the equivalent
801 of the L<lvs(8)> command.  The \"full\" version includes all fields.");
802
803   ("read_lines", (RStringList "lines", [String "path"]), 15, [],
804    [InitBasicFS, Always, TestOutputList (
805       [["write_file"; "/new"; "line1\r\nline2\nline3"; "0"];
806        ["read_lines"; "/new"]], ["line1"; "line2"; "line3"]);
807     InitBasicFS, Always, TestOutputList (
808       [["write_file"; "/new"; ""; "0"];
809        ["read_lines"; "/new"]], [])],
810    "read file as lines",
811    "\
812 Return the contents of the file named C<path>.
813
814 The file contents are returned as a list of lines.  Trailing
815 C<LF> and C<CRLF> character sequences are I<not> returned.
816
817 Note that this function cannot correctly handle binary files
818 (specifically, files containing C<\\0> character which is treated
819 as end of line).  For those you need to use the C<guestfs_read_file>
820 function which has a more complex interface.");
821
822   ("aug_init", (RErr, [String "root"; Int "flags"]), 16, [],
823    [], (* XXX Augeas code needs tests. *)
824    "create a new Augeas handle",
825    "\
826 Create a new Augeas handle for editing configuration files.
827 If there was any previous Augeas handle associated with this
828 guestfs session, then it is closed.
829
830 You must call this before using any other C<guestfs_aug_*>
831 commands.
832
833 C<root> is the filesystem root.  C<root> must not be NULL,
834 use C</> instead.
835
836 The flags are the same as the flags defined in
837 E<lt>augeas.hE<gt>, the logical I<or> of the following
838 integers:
839
840 =over 4
841
842 =item C<AUG_SAVE_BACKUP> = 1
843
844 Keep the original file with a C<.augsave> extension.
845
846 =item C<AUG_SAVE_NEWFILE> = 2
847
848 Save changes into a file with extension C<.augnew>, and
849 do not overwrite original.  Overrides C<AUG_SAVE_BACKUP>.
850
851 =item C<AUG_TYPE_CHECK> = 4
852
853 Typecheck lenses (can be expensive).
854
855 =item C<AUG_NO_STDINC> = 8
856
857 Do not use standard load path for modules.
858
859 =item C<AUG_SAVE_NOOP> = 16
860
861 Make save a no-op, just record what would have been changed.
862
863 =item C<AUG_NO_LOAD> = 32
864
865 Do not load the tree in C<guestfs_aug_init>.
866
867 =back
868
869 To close the handle, you can call C<guestfs_aug_close>.
870
871 To find out more about Augeas, see L<http://augeas.net/>.");
872
873   ("aug_close", (RErr, []), 26, [],
874    [], (* XXX Augeas code needs tests. *)
875    "close the current Augeas handle",
876    "\
877 Close the current Augeas handle and free up any resources
878 used by it.  After calling this, you have to call
879 C<guestfs_aug_init> again before you can use any other
880 Augeas functions.");
881
882   ("aug_defvar", (RInt "nrnodes", [String "name"; OptString "expr"]), 17, [],
883    [], (* XXX Augeas code needs tests. *)
884    "define an Augeas variable",
885    "\
886 Defines an Augeas variable C<name> whose value is the result
887 of evaluating C<expr>.  If C<expr> is NULL, then C<name> is
888 undefined.
889
890 On success this returns the number of nodes in C<expr>, or
891 C<0> if C<expr> evaluates to something which is not a nodeset.");
892
893   ("aug_defnode", (RIntBool ("nrnodes", "created"), [String "name"; String "expr"; String "val"]), 18, [],
894    [], (* XXX Augeas code needs tests. *)
895    "define an Augeas node",
896    "\
897 Defines a variable C<name> whose value is the result of
898 evaluating C<expr>.
899
900 If C<expr> evaluates to an empty nodeset, a node is created,
901 equivalent to calling C<guestfs_aug_set> C<expr>, C<value>.
902 C<name> will be the nodeset containing that single node.
903
904 On success this returns a pair containing the
905 number of nodes in the nodeset, and a boolean flag
906 if a node was created.");
907
908   ("aug_get", (RString "val", [String "path"]), 19, [],
909    [], (* XXX Augeas code needs tests. *)
910    "look up the value of an Augeas path",
911    "\
912 Look up the value associated with C<path>.  If C<path>
913 matches exactly one node, the C<value> is returned.");
914
915   ("aug_set", (RErr, [String "path"; String "val"]), 20, [],
916    [], (* XXX Augeas code needs tests. *)
917    "set Augeas path to value",
918    "\
919 Set the value associated with C<path> to C<value>.");
920
921   ("aug_insert", (RErr, [String "path"; String "label"; Bool "before"]), 21, [],
922    [], (* XXX Augeas code needs tests. *)
923    "insert a sibling Augeas node",
924    "\
925 Create a new sibling C<label> for C<path>, inserting it into
926 the tree before or after C<path> (depending on the boolean
927 flag C<before>).
928
929 C<path> must match exactly one existing node in the tree, and
930 C<label> must be a label, ie. not contain C</>, C<*> or end
931 with a bracketed index C<[N]>.");
932
933   ("aug_rm", (RInt "nrnodes", [String "path"]), 22, [],
934    [], (* XXX Augeas code needs tests. *)
935    "remove an Augeas path",
936    "\
937 Remove C<path> and all of its children.
938
939 On success this returns the number of entries which were removed.");
940
941   ("aug_mv", (RErr, [String "src"; String "dest"]), 23, [],
942    [], (* XXX Augeas code needs tests. *)
943    "move Augeas node",
944    "\
945 Move the node C<src> to C<dest>.  C<src> must match exactly
946 one node.  C<dest> is overwritten if it exists.");
947
948   ("aug_match", (RStringList "matches", [String "path"]), 24, [],
949    [], (* XXX Augeas code needs tests. *)
950    "return Augeas nodes which match path",
951    "\
952 Returns a list of paths which match the path expression C<path>.
953 The returned paths are sufficiently qualified so that they match
954 exactly one node in the current tree.");
955
956   ("aug_save", (RErr, []), 25, [],
957    [], (* XXX Augeas code needs tests. *)
958    "write all pending Augeas changes to disk",
959    "\
960 This writes all pending changes to disk.
961
962 The flags which were passed to C<guestfs_aug_init> affect exactly
963 how files are saved.");
964
965   ("aug_load", (RErr, []), 27, [],
966    [], (* XXX Augeas code needs tests. *)
967    "load files into the tree",
968    "\
969 Load files into the tree.
970
971 See C<aug_load> in the Augeas documentation for the full gory
972 details.");
973
974   ("aug_ls", (RStringList "matches", [String "path"]), 28, [],
975    [], (* XXX Augeas code needs tests. *)
976    "list Augeas nodes under a path",
977    "\
978 This is just a shortcut for listing C<guestfs_aug_match>
979 C<path/*> and sorting the resulting nodes into alphabetical order.");
980
981   ("rm", (RErr, [String "path"]), 29, [],
982    [InitBasicFS, Always, TestRun
983       [["touch"; "/new"];
984        ["rm"; "/new"]];
985     InitBasicFS, Always, TestLastFail
986       [["rm"; "/new"]];
987     InitBasicFS, Always, TestLastFail
988       [["mkdir"; "/new"];
989        ["rm"; "/new"]]],
990    "remove a file",
991    "\
992 Remove the single file C<path>.");
993
994   ("rmdir", (RErr, [String "path"]), 30, [],
995    [InitBasicFS, Always, TestRun
996       [["mkdir"; "/new"];
997        ["rmdir"; "/new"]];
998     InitBasicFS, Always, TestLastFail
999       [["rmdir"; "/new"]];
1000     InitBasicFS, Always, TestLastFail
1001       [["touch"; "/new"];
1002        ["rmdir"; "/new"]]],
1003    "remove a directory",
1004    "\
1005 Remove the single directory C<path>.");
1006
1007   ("rm_rf", (RErr, [String "path"]), 31, [],
1008    [InitBasicFS, Always, TestOutputFalse
1009       [["mkdir"; "/new"];
1010        ["mkdir"; "/new/foo"];
1011        ["touch"; "/new/foo/bar"];
1012        ["rm_rf"; "/new"];
1013        ["exists"; "/new"]]],
1014    "remove a file or directory recursively",
1015    "\
1016 Remove the file or directory C<path>, recursively removing the
1017 contents if its a directory.  This is like the C<rm -rf> shell
1018 command.");
1019
1020   ("mkdir", (RErr, [String "path"]), 32, [],
1021    [InitBasicFS, Always, TestOutputTrue
1022       [["mkdir"; "/new"];
1023        ["is_dir"; "/new"]];
1024     InitBasicFS, Always, TestLastFail
1025       [["mkdir"; "/new/foo/bar"]]],
1026    "create a directory",
1027    "\
1028 Create a directory named C<path>.");
1029
1030   ("mkdir_p", (RErr, [String "path"]), 33, [],
1031    [InitBasicFS, Always, TestOutputTrue
1032       [["mkdir_p"; "/new/foo/bar"];
1033        ["is_dir"; "/new/foo/bar"]];
1034     InitBasicFS, Always, TestOutputTrue
1035       [["mkdir_p"; "/new/foo/bar"];
1036        ["is_dir"; "/new/foo"]];
1037     InitBasicFS, Always, TestOutputTrue
1038       [["mkdir_p"; "/new/foo/bar"];
1039        ["is_dir"; "/new"]];
1040     (* Regression tests for RHBZ#503133: *)
1041     InitBasicFS, Always, TestRun
1042       [["mkdir"; "/new"];
1043        ["mkdir_p"; "/new"]];
1044     InitBasicFS, Always, TestLastFail
1045       [["touch"; "/new"];
1046        ["mkdir_p"; "/new"]]],
1047    "create a directory and parents",
1048    "\
1049 Create a directory named C<path>, creating any parent directories
1050 as necessary.  This is like the C<mkdir -p> shell command.");
1051
1052   ("chmod", (RErr, [Int "mode"; String "path"]), 34, [],
1053    [], (* XXX Need stat command to test *)
1054    "change file mode",
1055    "\
1056 Change the mode (permissions) of C<path> to C<mode>.  Only
1057 numeric modes are supported.");
1058
1059   ("chown", (RErr, [Int "owner"; Int "group"; String "path"]), 35, [],
1060    [], (* XXX Need stat command to test *)
1061    "change file owner and group",
1062    "\
1063 Change the file owner to C<owner> and group to C<group>.
1064
1065 Only numeric uid and gid are supported.  If you want to use
1066 names, you will need to locate and parse the password file
1067 yourself (Augeas support makes this relatively easy).");
1068
1069   ("exists", (RBool "existsflag", [String "path"]), 36, [],
1070    [InitBasicFS, Always, TestOutputTrue (
1071       [["touch"; "/new"];
1072        ["exists"; "/new"]]);
1073     InitBasicFS, Always, TestOutputTrue (
1074       [["mkdir"; "/new"];
1075        ["exists"; "/new"]])],
1076    "test if file or directory exists",
1077    "\
1078 This returns C<true> if and only if there is a file, directory
1079 (or anything) with the given C<path> name.
1080
1081 See also C<guestfs_is_file>, C<guestfs_is_dir>, C<guestfs_stat>.");
1082
1083   ("is_file", (RBool "fileflag", [String "path"]), 37, [],
1084    [InitBasicFS, Always, TestOutputTrue (
1085       [["touch"; "/new"];
1086        ["is_file"; "/new"]]);
1087     InitBasicFS, Always, TestOutputFalse (
1088       [["mkdir"; "/new"];
1089        ["is_file"; "/new"]])],
1090    "test if file exists",
1091    "\
1092 This returns C<true> if and only if there is a file
1093 with the given C<path> name.  Note that it returns false for
1094 other objects like directories.
1095
1096 See also C<guestfs_stat>.");
1097
1098   ("is_dir", (RBool "dirflag", [String "path"]), 38, [],
1099    [InitBasicFS, Always, TestOutputFalse (
1100       [["touch"; "/new"];
1101        ["is_dir"; "/new"]]);
1102     InitBasicFS, Always, TestOutputTrue (
1103       [["mkdir"; "/new"];
1104        ["is_dir"; "/new"]])],
1105    "test if file exists",
1106    "\
1107 This returns C<true> if and only if there is a directory
1108 with the given C<path> name.  Note that it returns false for
1109 other objects like files.
1110
1111 See also C<guestfs_stat>.");
1112
1113   ("pvcreate", (RErr, [String "device"]), 39, [],
1114    [InitEmpty, Always, TestOutputListOfDevices (
1115       [["sfdisk"; "/dev/sda"; "0"; "0"; "0"; ",10 ,20 ,"];
1116        ["pvcreate"; "/dev/sda1"];
1117        ["pvcreate"; "/dev/sda2"];
1118        ["pvcreate"; "/dev/sda3"];
1119        ["pvs"]], ["/dev/sda1"; "/dev/sda2"; "/dev/sda3"])],
1120    "create an LVM physical volume",
1121    "\
1122 This creates an LVM physical volume on the named C<device>,
1123 where C<device> should usually be a partition name such
1124 as C</dev/sda1>.");
1125
1126   ("vgcreate", (RErr, [String "volgroup"; StringList "physvols"]), 40, [],
1127    [InitEmpty, Always, TestOutputList (
1128       [["sfdisk"; "/dev/sda"; "0"; "0"; "0"; ",10 ,20 ,"];
1129        ["pvcreate"; "/dev/sda1"];
1130        ["pvcreate"; "/dev/sda2"];
1131        ["pvcreate"; "/dev/sda3"];
1132        ["vgcreate"; "VG1"; "/dev/sda1 /dev/sda2"];
1133        ["vgcreate"; "VG2"; "/dev/sda3"];
1134        ["vgs"]], ["VG1"; "VG2"])],
1135    "create an LVM volume group",
1136    "\
1137 This creates an LVM volume group called C<volgroup>
1138 from the non-empty list of physical volumes C<physvols>.");
1139
1140   ("lvcreate", (RErr, [String "logvol"; String "volgroup"; Int "mbytes"]), 41, [],
1141    [InitEmpty, Always, TestOutputList (
1142       [["sfdisk"; "/dev/sda"; "0"; "0"; "0"; ",10 ,20 ,"];
1143        ["pvcreate"; "/dev/sda1"];
1144        ["pvcreate"; "/dev/sda2"];
1145        ["pvcreate"; "/dev/sda3"];
1146        ["vgcreate"; "VG1"; "/dev/sda1 /dev/sda2"];
1147        ["vgcreate"; "VG2"; "/dev/sda3"];
1148        ["lvcreate"; "LV1"; "VG1"; "50"];
1149        ["lvcreate"; "LV2"; "VG1"; "50"];
1150        ["lvcreate"; "LV3"; "VG2"; "50"];
1151        ["lvcreate"; "LV4"; "VG2"; "50"];
1152        ["lvcreate"; "LV5"; "VG2"; "50"];
1153        ["lvs"]],
1154       ["/dev/VG1/LV1"; "/dev/VG1/LV2";
1155        "/dev/VG2/LV3"; "/dev/VG2/LV4"; "/dev/VG2/LV5"])],
1156    "create an LVM volume group",
1157    "\
1158 This creates an LVM volume group called C<logvol>
1159 on the volume group C<volgroup>, with C<size> megabytes.");
1160
1161   ("mkfs", (RErr, [String "fstype"; String "device"]), 42, [],
1162    [InitEmpty, Always, TestOutput (
1163       [["sfdisk"; "/dev/sda"; "0"; "0"; "0"; ","];
1164        ["mkfs"; "ext2"; "/dev/sda1"];
1165        ["mount"; "/dev/sda1"; "/"];
1166        ["write_file"; "/new"; "new file contents"; "0"];
1167        ["cat"; "/new"]], "new file contents")],
1168    "make a filesystem",
1169    "\
1170 This creates a filesystem on C<device> (usually a partition
1171 or LVM logical volume).  The filesystem type is C<fstype>, for
1172 example C<ext3>.");
1173
1174   ("sfdisk", (RErr, [String "device";
1175                      Int "cyls"; Int "heads"; Int "sectors";
1176                      StringList "lines"]), 43, [DangerWillRobinson],
1177    [],
1178    "create partitions on a block device",
1179    "\
1180 This is a direct interface to the L<sfdisk(8)> program for creating
1181 partitions on block devices.
1182
1183 C<device> should be a block device, for example C</dev/sda>.
1184
1185 C<cyls>, C<heads> and C<sectors> are the number of cylinders, heads
1186 and sectors on the device, which are passed directly to sfdisk as
1187 the I<-C>, I<-H> and I<-S> parameters.  If you pass C<0> for any
1188 of these, then the corresponding parameter is omitted.  Usually for
1189 'large' disks, you can just pass C<0> for these, but for small
1190 (floppy-sized) disks, sfdisk (or rather, the kernel) cannot work
1191 out the right geometry and you will need to tell it.
1192
1193 C<lines> is a list of lines that we feed to C<sfdisk>.  For more
1194 information refer to the L<sfdisk(8)> manpage.
1195
1196 To create a single partition occupying the whole disk, you would
1197 pass C<lines> as a single element list, when the single element being
1198 the string C<,> (comma).
1199
1200 See also: C<guestfs_sfdisk_l>, C<guestfs_sfdisk_N>");
1201
1202   ("write_file", (RErr, [String "path"; String "content"; Int "size"]), 44, [ProtocolLimitWarning],
1203    [InitBasicFS, Always, TestOutput (
1204       [["write_file"; "/new"; "new file contents"; "0"];
1205        ["cat"; "/new"]], "new file contents");
1206     InitBasicFS, Always, TestOutput (
1207       [["write_file"; "/new"; "\nnew file contents\n"; "0"];
1208        ["cat"; "/new"]], "\nnew file contents\n");
1209     InitBasicFS, Always, TestOutput (
1210       [["write_file"; "/new"; "\n\n"; "0"];
1211        ["cat"; "/new"]], "\n\n");
1212     InitBasicFS, Always, TestOutput (
1213       [["write_file"; "/new"; ""; "0"];
1214        ["cat"; "/new"]], "");
1215     InitBasicFS, Always, TestOutput (
1216       [["write_file"; "/new"; "\n\n\n"; "0"];
1217        ["cat"; "/new"]], "\n\n\n");
1218     InitBasicFS, Always, TestOutput (
1219       [["write_file"; "/new"; "\n"; "0"];
1220        ["cat"; "/new"]], "\n")],
1221    "create a file",
1222    "\
1223 This call creates a file called C<path>.  The contents of the
1224 file is the string C<content> (which can contain any 8 bit data),
1225 with length C<size>.
1226
1227 As a special case, if C<size> is C<0>
1228 then the length is calculated using C<strlen> (so in this case
1229 the content cannot contain embedded ASCII NULs).
1230
1231 I<NB.> Owing to a bug, writing content containing ASCII NUL
1232 characters does I<not> work, even if the length is specified.
1233 We hope to resolve this bug in a future version.  In the meantime
1234 use C<guestfs_upload>.");
1235
1236   ("umount", (RErr, [String "pathordevice"]), 45, [FishAlias "unmount"],
1237    [InitEmpty, Always, TestOutputListOfDevices (
1238       [["sfdisk"; "/dev/sda"; "0"; "0"; "0"; ","];
1239        ["mkfs"; "ext2"; "/dev/sda1"];
1240        ["mount"; "/dev/sda1"; "/"];
1241        ["mounts"]], ["/dev/sda1"]);
1242     InitEmpty, Always, TestOutputList (
1243       [["sfdisk"; "/dev/sda"; "0"; "0"; "0"; ","];
1244        ["mkfs"; "ext2"; "/dev/sda1"];
1245        ["mount"; "/dev/sda1"; "/"];
1246        ["umount"; "/"];
1247        ["mounts"]], [])],
1248    "unmount a filesystem",
1249    "\
1250 This unmounts the given filesystem.  The filesystem may be
1251 specified either by its mountpoint (path) or the device which
1252 contains the filesystem.");
1253
1254   ("mounts", (RStringList "devices", []), 46, [],
1255    [InitBasicFS, Always, TestOutputListOfDevices (
1256       [["mounts"]], ["/dev/sda1"])],
1257    "show mounted filesystems",
1258    "\
1259 This returns the list of currently mounted filesystems.  It returns
1260 the list of devices (eg. C</dev/sda1>, C</dev/VG/LV>).
1261
1262 Some internal mounts are not shown.");
1263
1264   ("umount_all", (RErr, []), 47, [FishAlias "unmount-all"],
1265    [InitBasicFS, Always, TestOutputList (
1266       [["umount_all"];
1267        ["mounts"]], []);
1268     (* check that umount_all can unmount nested mounts correctly: *)
1269     InitEmpty, Always, TestOutputList (
1270       [["sfdisk"; "/dev/sda"; "0"; "0"; "0"; ",10 ,20 ,"];
1271        ["mkfs"; "ext2"; "/dev/sda1"];
1272        ["mkfs"; "ext2"; "/dev/sda2"];
1273        ["mkfs"; "ext2"; "/dev/sda3"];
1274        ["mount"; "/dev/sda1"; "/"];
1275        ["mkdir"; "/mp1"];
1276        ["mount"; "/dev/sda2"; "/mp1"];
1277        ["mkdir"; "/mp1/mp2"];
1278        ["mount"; "/dev/sda3"; "/mp1/mp2"];
1279        ["mkdir"; "/mp1/mp2/mp3"];
1280        ["umount_all"];
1281        ["mounts"]], [])],
1282    "unmount all filesystems",
1283    "\
1284 This unmounts all mounted filesystems.
1285
1286 Some internal mounts are not unmounted by this call.");
1287
1288   ("lvm_remove_all", (RErr, []), 48, [DangerWillRobinson],
1289    [],
1290    "remove all LVM LVs, VGs and PVs",
1291    "\
1292 This command removes all LVM logical volumes, volume groups
1293 and physical volumes.");
1294
1295   ("file", (RString "description", [String "path"]), 49, [],
1296    [InitBasicFS, Always, TestOutput (
1297       [["touch"; "/new"];
1298        ["file"; "/new"]], "empty");
1299     InitBasicFS, Always, TestOutput (
1300       [["write_file"; "/new"; "some content\n"; "0"];
1301        ["file"; "/new"]], "ASCII text");
1302     InitBasicFS, Always, TestLastFail (
1303       [["file"; "/nofile"]])],
1304    "determine file type",
1305    "\
1306 This call uses the standard L<file(1)> command to determine
1307 the type or contents of the file.  This also works on devices,
1308 for example to find out whether a partition contains a filesystem.
1309
1310 The exact command which runs is C<file -bsL path>.  Note in
1311 particular that the filename is not prepended to the output
1312 (the C<-b> option).");
1313
1314   ("command", (RString "output", [StringList "arguments"]), 50, [ProtocolLimitWarning],
1315    [InitBasicFS, Always, TestOutput (
1316       [["upload"; "test-command"; "/test-command"];
1317        ["chmod"; "493"; "/test-command"];
1318        ["command"; "/test-command 1"]], "Result1");
1319     InitBasicFS, Always, TestOutput (
1320       [["upload"; "test-command"; "/test-command"];
1321        ["chmod"; "493"; "/test-command"];
1322        ["command"; "/test-command 2"]], "Result2\n");
1323     InitBasicFS, Always, TestOutput (
1324       [["upload"; "test-command"; "/test-command"];
1325        ["chmod"; "493"; "/test-command"];
1326        ["command"; "/test-command 3"]], "\nResult3");
1327     InitBasicFS, Always, TestOutput (
1328       [["upload"; "test-command"; "/test-command"];
1329        ["chmod"; "493"; "/test-command"];
1330        ["command"; "/test-command 4"]], "\nResult4\n");
1331     InitBasicFS, Always, TestOutput (
1332       [["upload"; "test-command"; "/test-command"];
1333        ["chmod"; "493"; "/test-command"];
1334        ["command"; "/test-command 5"]], "\nResult5\n\n");
1335     InitBasicFS, Always, TestOutput (
1336       [["upload"; "test-command"; "/test-command"];
1337        ["chmod"; "493"; "/test-command"];
1338        ["command"; "/test-command 6"]], "\n\nResult6\n\n");
1339     InitBasicFS, Always, TestOutput (
1340       [["upload"; "test-command"; "/test-command"];
1341        ["chmod"; "493"; "/test-command"];
1342        ["command"; "/test-command 7"]], "");
1343     InitBasicFS, Always, TestOutput (
1344       [["upload"; "test-command"; "/test-command"];
1345        ["chmod"; "493"; "/test-command"];
1346        ["command"; "/test-command 8"]], "\n");
1347     InitBasicFS, Always, TestOutput (
1348       [["upload"; "test-command"; "/test-command"];
1349        ["chmod"; "493"; "/test-command"];
1350        ["command"; "/test-command 9"]], "\n\n");
1351     InitBasicFS, Always, TestOutput (
1352       [["upload"; "test-command"; "/test-command"];
1353        ["chmod"; "493"; "/test-command"];
1354        ["command"; "/test-command 10"]], "Result10-1\nResult10-2\n");
1355     InitBasicFS, Always, TestOutput (
1356       [["upload"; "test-command"; "/test-command"];
1357        ["chmod"; "493"; "/test-command"];
1358        ["command"; "/test-command 11"]], "Result11-1\nResult11-2");
1359     InitBasicFS, Always, TestLastFail (
1360       [["upload"; "test-command"; "/test-command"];
1361        ["chmod"; "493"; "/test-command"];
1362        ["command"; "/test-command"]])],
1363    "run a command from the guest filesystem",
1364    "\
1365 This call runs a command from the guest filesystem.  The
1366 filesystem must be mounted, and must contain a compatible
1367 operating system (ie. something Linux, with the same
1368 or compatible processor architecture).
1369
1370 The single parameter is an argv-style list of arguments.
1371 The first element is the name of the program to run.
1372 Subsequent elements are parameters.  The list must be
1373 non-empty (ie. must contain a program name).  Note that
1374 the command runs directly, and is I<not> invoked via
1375 the shell (see C<guestfs_sh>).
1376
1377 The return value is anything printed to I<stdout> by
1378 the command.
1379
1380 If the command returns a non-zero exit status, then
1381 this function returns an error message.  The error message
1382 string is the content of I<stderr> from the command.
1383
1384 The C<$PATH> environment variable will contain at least
1385 C</usr/bin> and C</bin>.  If you require a program from
1386 another location, you should provide the full path in the
1387 first parameter.
1388
1389 Shared libraries and data files required by the program
1390 must be available on filesystems which are mounted in the
1391 correct places.  It is the caller's responsibility to ensure
1392 all filesystems that are needed are mounted at the right
1393 locations.");
1394
1395   ("command_lines", (RStringList "lines", [StringList "arguments"]), 51, [ProtocolLimitWarning],
1396    [InitBasicFS, Always, TestOutputList (
1397       [["upload"; "test-command"; "/test-command"];
1398        ["chmod"; "493"; "/test-command"];
1399        ["command_lines"; "/test-command 1"]], ["Result1"]);
1400     InitBasicFS, Always, TestOutputList (
1401       [["upload"; "test-command"; "/test-command"];
1402        ["chmod"; "493"; "/test-command"];
1403        ["command_lines"; "/test-command 2"]], ["Result2"]);
1404     InitBasicFS, Always, TestOutputList (
1405       [["upload"; "test-command"; "/test-command"];
1406        ["chmod"; "493"; "/test-command"];
1407        ["command_lines"; "/test-command 3"]], ["";"Result3"]);
1408     InitBasicFS, Always, TestOutputList (
1409       [["upload"; "test-command"; "/test-command"];
1410        ["chmod"; "493"; "/test-command"];
1411        ["command_lines"; "/test-command 4"]], ["";"Result4"]);
1412     InitBasicFS, Always, TestOutputList (
1413       [["upload"; "test-command"; "/test-command"];
1414        ["chmod"; "493"; "/test-command"];
1415        ["command_lines"; "/test-command 5"]], ["";"Result5";""]);
1416     InitBasicFS, Always, TestOutputList (
1417       [["upload"; "test-command"; "/test-command"];
1418        ["chmod"; "493"; "/test-command"];
1419        ["command_lines"; "/test-command 6"]], ["";"";"Result6";""]);
1420     InitBasicFS, Always, TestOutputList (
1421       [["upload"; "test-command"; "/test-command"];
1422        ["chmod"; "493"; "/test-command"];
1423        ["command_lines"; "/test-command 7"]], []);
1424     InitBasicFS, Always, TestOutputList (
1425       [["upload"; "test-command"; "/test-command"];
1426        ["chmod"; "493"; "/test-command"];
1427        ["command_lines"; "/test-command 8"]], [""]);
1428     InitBasicFS, Always, TestOutputList (
1429       [["upload"; "test-command"; "/test-command"];
1430        ["chmod"; "493"; "/test-command"];
1431        ["command_lines"; "/test-command 9"]], ["";""]);
1432     InitBasicFS, Always, TestOutputList (
1433       [["upload"; "test-command"; "/test-command"];
1434        ["chmod"; "493"; "/test-command"];
1435        ["command_lines"; "/test-command 10"]], ["Result10-1";"Result10-2"]);
1436     InitBasicFS, Always, TestOutputList (
1437       [["upload"; "test-command"; "/test-command"];
1438        ["chmod"; "493"; "/test-command"];
1439        ["command_lines"; "/test-command 11"]], ["Result11-1";"Result11-2"])],
1440    "run a command, returning lines",
1441    "\
1442 This is the same as C<guestfs_command>, but splits the
1443 result into a list of lines.
1444
1445 See also: C<guestfs_sh_lines>");
1446
1447   ("stat", (RStat "statbuf", [String "path"]), 52, [],
1448    [InitBasicFS, Always, TestOutputStruct (
1449       [["touch"; "/new"];
1450        ["stat"; "/new"]], [CompareWithInt ("size", 0)])],
1451    "get file information",
1452    "\
1453 Returns file information for the given C<path>.
1454
1455 This is the same as the C<stat(2)> system call.");
1456
1457   ("lstat", (RStat "statbuf", [String "path"]), 53, [],
1458    [InitBasicFS, Always, TestOutputStruct (
1459       [["touch"; "/new"];
1460        ["lstat"; "/new"]], [CompareWithInt ("size", 0)])],
1461    "get file information for a symbolic link",
1462    "\
1463 Returns file information for the given C<path>.
1464
1465 This is the same as C<guestfs_stat> except that if C<path>
1466 is a symbolic link, then the link is stat-ed, not the file it
1467 refers to.
1468
1469 This is the same as the C<lstat(2)> system call.");
1470
1471   ("statvfs", (RStatVFS "statbuf", [String "path"]), 54, [],
1472    [InitBasicFS, Always, TestOutputStruct (
1473       [["statvfs"; "/"]], [CompareWithInt ("bfree", 487702);
1474                            CompareWithInt ("blocks", 490020);
1475                            CompareWithInt ("bsize", 1024)])],
1476    "get file system statistics",
1477    "\
1478 Returns file system statistics for any mounted file system.
1479 C<path> should be a file or directory in the mounted file system
1480 (typically it is the mount point itself, but it doesn't need to be).
1481
1482 This is the same as the C<statvfs(2)> system call.");
1483
1484   ("tune2fs_l", (RHashtable "superblock", [String "device"]), 55, [],
1485    [], (* XXX test *)
1486    "get ext2/ext3/ext4 superblock details",
1487    "\
1488 This returns the contents of the ext2, ext3 or ext4 filesystem
1489 superblock on C<device>.
1490
1491 It is the same as running C<tune2fs -l device>.  See L<tune2fs(8)>
1492 manpage for more details.  The list of fields returned isn't
1493 clearly defined, and depends on both the version of C<tune2fs>
1494 that libguestfs was built against, and the filesystem itself.");
1495
1496   ("blockdev_setro", (RErr, [String "device"]), 56, [],
1497    [InitEmpty, Always, TestOutputTrue (
1498       [["blockdev_setro"; "/dev/sda"];
1499        ["blockdev_getro"; "/dev/sda"]])],
1500    "set block device to read-only",
1501    "\
1502 Sets the block device named C<device> to read-only.
1503
1504 This uses the L<blockdev(8)> command.");
1505
1506   ("blockdev_setrw", (RErr, [String "device"]), 57, [],
1507    [InitEmpty, Always, TestOutputFalse (
1508       [["blockdev_setrw"; "/dev/sda"];
1509        ["blockdev_getro"; "/dev/sda"]])],
1510    "set block device to read-write",
1511    "\
1512 Sets the block device named C<device> to read-write.
1513
1514 This uses the L<blockdev(8)> command.");
1515
1516   ("blockdev_getro", (RBool "ro", [String "device"]), 58, [],
1517    [InitEmpty, Always, TestOutputTrue (
1518       [["blockdev_setro"; "/dev/sda"];
1519        ["blockdev_getro"; "/dev/sda"]])],
1520    "is block device set to read-only",
1521    "\
1522 Returns a boolean indicating if the block device is read-only
1523 (true if read-only, false if not).
1524
1525 This uses the L<blockdev(8)> command.");
1526
1527   ("blockdev_getss", (RInt "sectorsize", [String "device"]), 59, [],
1528    [InitEmpty, Always, TestOutputInt (
1529       [["blockdev_getss"; "/dev/sda"]], 512)],
1530    "get sectorsize of block device",
1531    "\
1532 This returns the size of sectors on a block device.
1533 Usually 512, but can be larger for modern devices.
1534
1535 (Note, this is not the size in sectors, use C<guestfs_blockdev_getsz>
1536 for that).
1537
1538 This uses the L<blockdev(8)> command.");
1539
1540   ("blockdev_getbsz", (RInt "blocksize", [String "device"]), 60, [],
1541    [InitEmpty, Always, TestOutputInt (
1542       [["blockdev_getbsz"; "/dev/sda"]], 4096)],
1543    "get blocksize of block device",
1544    "\
1545 This returns the block size of a device.
1546
1547 (Note this is different from both I<size in blocks> and
1548 I<filesystem block size>).
1549
1550 This uses the L<blockdev(8)> command.");
1551
1552   ("blockdev_setbsz", (RErr, [String "device"; Int "blocksize"]), 61, [],
1553    [], (* XXX test *)
1554    "set blocksize of block device",
1555    "\
1556 This sets the block size of a device.
1557
1558 (Note this is different from both I<size in blocks> and
1559 I<filesystem block size>).
1560
1561 This uses the L<blockdev(8)> command.");
1562
1563   ("blockdev_getsz", (RInt64 "sizeinsectors", [String "device"]), 62, [],
1564    [InitEmpty, Always, TestOutputInt (
1565       [["blockdev_getsz"; "/dev/sda"]], 1024000)],
1566    "get total size of device in 512-byte sectors",
1567    "\
1568 This returns the size of the device in units of 512-byte sectors
1569 (even if the sectorsize isn't 512 bytes ... weird).
1570
1571 See also C<guestfs_blockdev_getss> for the real sector size of
1572 the device, and C<guestfs_blockdev_getsize64> for the more
1573 useful I<size in bytes>.
1574
1575 This uses the L<blockdev(8)> command.");
1576
1577   ("blockdev_getsize64", (RInt64 "sizeinbytes", [String "device"]), 63, [],
1578    [InitEmpty, Always, TestOutputInt (
1579       [["blockdev_getsize64"; "/dev/sda"]], 524288000)],
1580    "get total size of device in bytes",
1581    "\
1582 This returns the size of the device in bytes.
1583
1584 See also C<guestfs_blockdev_getsz>.
1585
1586 This uses the L<blockdev(8)> command.");
1587
1588   ("blockdev_flushbufs", (RErr, [String "device"]), 64, [],
1589    [InitEmpty, Always, TestRun
1590       [["blockdev_flushbufs"; "/dev/sda"]]],
1591    "flush device buffers",
1592    "\
1593 This tells the kernel to flush internal buffers associated
1594 with C<device>.
1595
1596 This uses the L<blockdev(8)> command.");
1597
1598   ("blockdev_rereadpt", (RErr, [String "device"]), 65, [],
1599    [InitEmpty, Always, TestRun
1600       [["blockdev_rereadpt"; "/dev/sda"]]],
1601    "reread partition table",
1602    "\
1603 Reread the partition table on C<device>.
1604
1605 This uses the L<blockdev(8)> command.");
1606
1607   ("upload", (RErr, [FileIn "filename"; String "remotefilename"]), 66, [],
1608    [InitBasicFS, Always, TestOutput (
1609       (* Pick a file from cwd which isn't likely to change. *)
1610     [["upload"; "../COPYING.LIB"; "/COPYING.LIB"];
1611      ["checksum"; "md5"; "/COPYING.LIB"]], "e3eda01d9815f8d24aae2dbd89b68b06")],
1612    "upload a file from the local machine",
1613    "\
1614 Upload local file C<filename> to C<remotefilename> on the
1615 filesystem.
1616
1617 C<filename> can also be a named pipe.
1618
1619 See also C<guestfs_download>.");
1620
1621   ("download", (RErr, [String "remotefilename"; FileOut "filename"]), 67, [],
1622    [InitBasicFS, Always, TestOutput (
1623       (* Pick a file from cwd which isn't likely to change. *)
1624     [["upload"; "../COPYING.LIB"; "/COPYING.LIB"];
1625      ["download"; "/COPYING.LIB"; "testdownload.tmp"];
1626      ["upload"; "testdownload.tmp"; "/upload"];
1627      ["checksum"; "md5"; "/upload"]], "e3eda01d9815f8d24aae2dbd89b68b06")],
1628    "download a file to the local machine",
1629    "\
1630 Download file C<remotefilename> and save it as C<filename>
1631 on the local machine.
1632
1633 C<filename> can also be a named pipe.
1634
1635 See also C<guestfs_upload>, C<guestfs_cat>.");
1636
1637   ("checksum", (RString "checksum", [String "csumtype"; String "path"]), 68, [],
1638    [InitBasicFS, Always, TestOutput (
1639       [["write_file"; "/new"; "test\n"; "0"];
1640        ["checksum"; "crc"; "/new"]], "935282863");
1641     InitBasicFS, Always, TestLastFail (
1642       [["checksum"; "crc"; "/new"]]);
1643     InitBasicFS, Always, TestOutput (
1644       [["write_file"; "/new"; "test\n"; "0"];
1645        ["checksum"; "md5"; "/new"]], "d8e8fca2dc0f896fd7cb4cb0031ba249");
1646     InitBasicFS, Always, TestOutput (
1647       [["write_file"; "/new"; "test\n"; "0"];
1648        ["checksum"; "sha1"; "/new"]], "4e1243bd22c66e76c2ba9eddc1f91394e57f9f83");
1649     InitBasicFS, Always, TestOutput (
1650       [["write_file"; "/new"; "test\n"; "0"];
1651        ["checksum"; "sha224"; "/new"]], "52f1bf093f4b7588726035c176c0cdb4376cfea53819f1395ac9e6ec");
1652     InitBasicFS, Always, TestOutput (
1653       [["write_file"; "/new"; "test\n"; "0"];
1654        ["checksum"; "sha256"; "/new"]], "f2ca1bb6c7e907d06dafe4687e579fce76b37e4e93b7605022da52e6ccc26fd2");
1655     InitBasicFS, Always, TestOutput (
1656       [["write_file"; "/new"; "test\n"; "0"];
1657        ["checksum"; "sha384"; "/new"]], "109bb6b5b6d5547c1ce03c7a8bd7d8f80c1cb0957f50c4f7fda04692079917e4f9cad52b878f3d8234e1a170b154b72d");
1658     InitBasicFS, Always, TestOutput (
1659       [["write_file"; "/new"; "test\n"; "0"];
1660        ["checksum"; "sha512"; "/new"]], "0e3e75234abc68f4378a86b3f4b32a198ba301845b0cd6e50106e874345700cc6663a86c1ea125dc5e92be17c98f9a0f85ca9d5f595db2012f7cc3571945c123");
1661     InitBasicFS, Always, TestOutput (
1662       (* RHEL 5 thinks this is an HFS+ filesystem unless we give
1663        * the type explicitly.
1664        *)
1665       [["mount_vfs"; "ro"; "squashfs"; "/dev/sdd"; "/"];
1666        ["checksum"; "md5"; "/known-3"]], "46d6ca27ee07cdc6fa99c2e138cc522c")],
1667    "compute MD5, SHAx or CRC checksum of file",
1668    "\
1669 This call computes the MD5, SHAx or CRC checksum of the
1670 file named C<path>.
1671
1672 The type of checksum to compute is given by the C<csumtype>
1673 parameter which must have one of the following values:
1674
1675 =over 4
1676
1677 =item C<crc>
1678
1679 Compute the cyclic redundancy check (CRC) specified by POSIX
1680 for the C<cksum> command.
1681
1682 =item C<md5>
1683
1684 Compute the MD5 hash (using the C<md5sum> program).
1685
1686 =item C<sha1>
1687
1688 Compute the SHA1 hash (using the C<sha1sum> program).
1689
1690 =item C<sha224>
1691
1692 Compute the SHA224 hash (using the C<sha224sum> program).
1693
1694 =item C<sha256>
1695
1696 Compute the SHA256 hash (using the C<sha256sum> program).
1697
1698 =item C<sha384>
1699
1700 Compute the SHA384 hash (using the C<sha384sum> program).
1701
1702 =item C<sha512>
1703
1704 Compute the SHA512 hash (using the C<sha512sum> program).
1705
1706 =back
1707
1708 The checksum is returned as a printable string.");
1709
1710   ("tar_in", (RErr, [FileIn "tarfile"; String "directory"]), 69, [],
1711    [InitBasicFS, Always, TestOutput (
1712       [["tar_in"; "../images/helloworld.tar"; "/"];
1713        ["cat"; "/hello"]], "hello\n")],
1714    "unpack tarfile to directory",
1715    "\
1716 This command uploads and unpacks local file C<tarfile> (an
1717 I<uncompressed> tar file) into C<directory>.
1718
1719 To upload a compressed tarball, use C<guestfs_tgz_in>.");
1720
1721   ("tar_out", (RErr, [String "directory"; FileOut "tarfile"]), 70, [],
1722    [],
1723    "pack directory into tarfile",
1724    "\
1725 This command packs the contents of C<directory> and downloads
1726 it to local file C<tarfile>.
1727
1728 To download a compressed tarball, use C<guestfs_tgz_out>.");
1729
1730   ("tgz_in", (RErr, [FileIn "tarball"; String "directory"]), 71, [],
1731    [InitBasicFS, Always, TestOutput (
1732       [["tgz_in"; "../images/helloworld.tar.gz"; "/"];
1733        ["cat"; "/hello"]], "hello\n")],
1734    "unpack compressed tarball to directory",
1735    "\
1736 This command uploads and unpacks local file C<tarball> (a
1737 I<gzip compressed> tar file) into C<directory>.
1738
1739 To upload an uncompressed tarball, use C<guestfs_tar_in>.");
1740
1741   ("tgz_out", (RErr, [String "directory"; FileOut "tarball"]), 72, [],
1742    [],
1743    "pack directory into compressed tarball",
1744    "\
1745 This command packs the contents of C<directory> and downloads
1746 it to local file C<tarball>.
1747
1748 To download an uncompressed tarball, use C<guestfs_tar_out>.");
1749
1750   ("mount_ro", (RErr, [String "device"; String "mountpoint"]), 73, [],
1751    [InitBasicFS, Always, TestLastFail (
1752       [["umount"; "/"];
1753        ["mount_ro"; "/dev/sda1"; "/"];
1754        ["touch"; "/new"]]);
1755     InitBasicFS, Always, TestOutput (
1756       [["write_file"; "/new"; "data"; "0"];
1757        ["umount"; "/"];
1758        ["mount_ro"; "/dev/sda1"; "/"];
1759        ["cat"; "/new"]], "data")],
1760    "mount a guest disk, read-only",
1761    "\
1762 This is the same as the C<guestfs_mount> command, but it
1763 mounts the filesystem with the read-only (I<-o ro>) flag.");
1764
1765   ("mount_options", (RErr, [String "options"; String "device"; String "mountpoint"]), 74, [],
1766    [],
1767    "mount a guest disk with mount options",
1768    "\
1769 This is the same as the C<guestfs_mount> command, but it
1770 allows you to set the mount options as for the
1771 L<mount(8)> I<-o> flag.");
1772
1773   ("mount_vfs", (RErr, [String "options"; String "vfstype"; String "device"; String "mountpoint"]), 75, [],
1774    [],
1775    "mount a guest disk with mount options and vfstype",
1776    "\
1777 This is the same as the C<guestfs_mount> command, but it
1778 allows you to set both the mount options and the vfstype
1779 as for the L<mount(8)> I<-o> and I<-t> flags.");
1780
1781   ("debug", (RString "result", [String "subcmd"; StringList "extraargs"]), 76, [],
1782    [],
1783    "debugging and internals",
1784    "\
1785 The C<guestfs_debug> command exposes some internals of
1786 C<guestfsd> (the guestfs daemon) that runs inside the
1787 qemu subprocess.
1788
1789 There is no comprehensive help for this command.  You have
1790 to look at the file C<daemon/debug.c> in the libguestfs source
1791 to find out what you can do.");
1792
1793   ("lvremove", (RErr, [String "device"]), 77, [],
1794    [InitEmpty, Always, TestOutputList (
1795       [["sfdisk"; "/dev/sda"; "0"; "0"; "0"; ","];
1796        ["pvcreate"; "/dev/sda1"];
1797        ["vgcreate"; "VG"; "/dev/sda1"];
1798        ["lvcreate"; "LV1"; "VG"; "50"];
1799        ["lvcreate"; "LV2"; "VG"; "50"];
1800        ["lvremove"; "/dev/VG/LV1"];
1801        ["lvs"]], ["/dev/VG/LV2"]);
1802     InitEmpty, Always, TestOutputList (
1803       [["sfdisk"; "/dev/sda"; "0"; "0"; "0"; ","];
1804        ["pvcreate"; "/dev/sda1"];
1805        ["vgcreate"; "VG"; "/dev/sda1"];
1806        ["lvcreate"; "LV1"; "VG"; "50"];
1807        ["lvcreate"; "LV2"; "VG"; "50"];
1808        ["lvremove"; "/dev/VG"];
1809        ["lvs"]], []);
1810     InitEmpty, Always, TestOutputList (
1811       [["sfdisk"; "/dev/sda"; "0"; "0"; "0"; ","];
1812        ["pvcreate"; "/dev/sda1"];
1813        ["vgcreate"; "VG"; "/dev/sda1"];
1814        ["lvcreate"; "LV1"; "VG"; "50"];
1815        ["lvcreate"; "LV2"; "VG"; "50"];
1816        ["lvremove"; "/dev/VG"];
1817        ["vgs"]], ["VG"])],
1818    "remove an LVM logical volume",
1819    "\
1820 Remove an LVM logical volume C<device>, where C<device> is
1821 the path to the LV, such as C</dev/VG/LV>.
1822
1823 You can also remove all LVs in a volume group by specifying
1824 the VG name, C</dev/VG>.");
1825
1826   ("vgremove", (RErr, [String "vgname"]), 78, [],
1827    [InitEmpty, Always, TestOutputList (
1828       [["sfdisk"; "/dev/sda"; "0"; "0"; "0"; ","];
1829        ["pvcreate"; "/dev/sda1"];
1830        ["vgcreate"; "VG"; "/dev/sda1"];
1831        ["lvcreate"; "LV1"; "VG"; "50"];
1832        ["lvcreate"; "LV2"; "VG"; "50"];
1833        ["vgremove"; "VG"];
1834        ["lvs"]], []);
1835     InitEmpty, Always, TestOutputList (
1836       [["sfdisk"; "/dev/sda"; "0"; "0"; "0"; ","];
1837        ["pvcreate"; "/dev/sda1"];
1838        ["vgcreate"; "VG"; "/dev/sda1"];
1839        ["lvcreate"; "LV1"; "VG"; "50"];
1840        ["lvcreate"; "LV2"; "VG"; "50"];
1841        ["vgremove"; "VG"];
1842        ["vgs"]], [])],
1843    "remove an LVM volume group",
1844    "\
1845 Remove an LVM volume group C<vgname>, (for example C<VG>).
1846
1847 This also forcibly removes all logical volumes in the volume
1848 group (if any).");
1849
1850   ("pvremove", (RErr, [String "device"]), 79, [],
1851    [InitEmpty, Always, TestOutputListOfDevices (
1852       [["sfdisk"; "/dev/sda"; "0"; "0"; "0"; ","];
1853        ["pvcreate"; "/dev/sda1"];
1854        ["vgcreate"; "VG"; "/dev/sda1"];
1855        ["lvcreate"; "LV1"; "VG"; "50"];
1856        ["lvcreate"; "LV2"; "VG"; "50"];
1857        ["vgremove"; "VG"];
1858        ["pvremove"; "/dev/sda1"];
1859        ["lvs"]], []);
1860     InitEmpty, Always, TestOutputListOfDevices (
1861       [["sfdisk"; "/dev/sda"; "0"; "0"; "0"; ","];
1862        ["pvcreate"; "/dev/sda1"];
1863        ["vgcreate"; "VG"; "/dev/sda1"];
1864        ["lvcreate"; "LV1"; "VG"; "50"];
1865        ["lvcreate"; "LV2"; "VG"; "50"];
1866        ["vgremove"; "VG"];
1867        ["pvremove"; "/dev/sda1"];
1868        ["vgs"]], []);
1869     InitEmpty, Always, TestOutputListOfDevices (
1870       [["sfdisk"; "/dev/sda"; "0"; "0"; "0"; ","];
1871        ["pvcreate"; "/dev/sda1"];
1872        ["vgcreate"; "VG"; "/dev/sda1"];
1873        ["lvcreate"; "LV1"; "VG"; "50"];
1874        ["lvcreate"; "LV2"; "VG"; "50"];
1875        ["vgremove"; "VG"];
1876        ["pvremove"; "/dev/sda1"];
1877        ["pvs"]], [])],
1878    "remove an LVM physical volume",
1879    "\
1880 This wipes a physical volume C<device> so that LVM will no longer
1881 recognise it.
1882
1883 The implementation uses the C<pvremove> command which refuses to
1884 wipe physical volumes that contain any volume groups, so you have
1885 to remove those first.");
1886
1887   ("set_e2label", (RErr, [String "device"; String "label"]), 80, [],
1888    [InitBasicFS, Always, TestOutput (
1889       [["set_e2label"; "/dev/sda1"; "testlabel"];
1890        ["get_e2label"; "/dev/sda1"]], "testlabel")],
1891    "set the ext2/3/4 filesystem label",
1892    "\
1893 This sets the ext2/3/4 filesystem label of the filesystem on
1894 C<device> to C<label>.  Filesystem labels are limited to
1895 16 characters.
1896
1897 You can use either C<guestfs_tune2fs_l> or C<guestfs_get_e2label>
1898 to return the existing label on a filesystem.");
1899
1900   ("get_e2label", (RString "label", [String "device"]), 81, [],
1901    [],
1902    "get the ext2/3/4 filesystem label",
1903    "\
1904 This returns the ext2/3/4 filesystem label of the filesystem on
1905 C<device>.");
1906
1907   ("set_e2uuid", (RErr, [String "device"; String "uuid"]), 82, [],
1908    [InitBasicFS, Always, TestOutput (
1909       [["set_e2uuid"; "/dev/sda1"; "a3a61220-882b-4f61-89f4-cf24dcc7297d"];
1910        ["get_e2uuid"; "/dev/sda1"]], "a3a61220-882b-4f61-89f4-cf24dcc7297d");
1911     InitBasicFS, Always, TestOutput (
1912       [["set_e2uuid"; "/dev/sda1"; "clear"];
1913        ["get_e2uuid"; "/dev/sda1"]], "");
1914     (* We can't predict what UUIDs will be, so just check the commands run. *)
1915     InitBasicFS, Always, TestRun (
1916       [["set_e2uuid"; "/dev/sda1"; "random"]]);
1917     InitBasicFS, Always, TestRun (
1918       [["set_e2uuid"; "/dev/sda1"; "time"]])],
1919    "set the ext2/3/4 filesystem UUID",
1920    "\
1921 This sets the ext2/3/4 filesystem UUID of the filesystem on
1922 C<device> to C<uuid>.  The format of the UUID and alternatives
1923 such as C<clear>, C<random> and C<time> are described in the
1924 L<tune2fs(8)> manpage.
1925
1926 You can use either C<guestfs_tune2fs_l> or C<guestfs_get_e2uuid>
1927 to return the existing UUID of a filesystem.");
1928
1929   ("get_e2uuid", (RString "uuid", [String "device"]), 83, [],
1930    [],
1931    "get the ext2/3/4 filesystem UUID",
1932    "\
1933 This returns the ext2/3/4 filesystem UUID of the filesystem on
1934 C<device>.");
1935
1936   ("fsck", (RInt "status", [String "fstype"; String "device"]), 84, [],
1937    [InitBasicFS, Always, TestOutputInt (
1938       [["umount"; "/dev/sda1"];
1939        ["fsck"; "ext2"; "/dev/sda1"]], 0);
1940     InitBasicFS, Always, TestOutputInt (
1941       [["umount"; "/dev/sda1"];
1942        ["zero"; "/dev/sda1"];
1943        ["fsck"; "ext2"; "/dev/sda1"]], 8)],
1944    "run the filesystem checker",
1945    "\
1946 This runs the filesystem checker (fsck) on C<device> which
1947 should have filesystem type C<fstype>.
1948
1949 The returned integer is the status.  See L<fsck(8)> for the
1950 list of status codes from C<fsck>.
1951
1952 Notes:
1953
1954 =over 4
1955
1956 =item *
1957
1958 Multiple status codes can be summed together.
1959
1960 =item *
1961
1962 A non-zero return code can mean \"success\", for example if
1963 errors have been corrected on the filesystem.
1964
1965 =item *
1966
1967 Checking or repairing NTFS volumes is not supported
1968 (by linux-ntfs).
1969
1970 =back
1971
1972 This command is entirely equivalent to running C<fsck -a -t fstype device>.");
1973
1974   ("zero", (RErr, [String "device"]), 85, [],
1975    [InitBasicFS, Always, TestOutput (
1976       [["umount"; "/dev/sda1"];
1977        ["zero"; "/dev/sda1"];
1978        ["file"; "/dev/sda1"]], "data")],
1979    "write zeroes to the device",
1980    "\
1981 This command writes zeroes over the first few blocks of C<device>.
1982
1983 How many blocks are zeroed isn't specified (but it's I<not> enough
1984 to securely wipe the device).  It should be sufficient to remove
1985 any partition tables, filesystem superblocks and so on.
1986
1987 See also: C<guestfs_scrub_device>.");
1988
1989   ("grub_install", (RErr, [String "root"; String "device"]), 86, [],
1990    [InitBasicFS, Always, TestOutputTrue (
1991       [["grub_install"; "/"; "/dev/sda1"];
1992        ["is_dir"; "/boot"]])],
1993    "install GRUB",
1994    "\
1995 This command installs GRUB (the Grand Unified Bootloader) on
1996 C<device>, with the root directory being C<root>.");
1997
1998   ("cp", (RErr, [String "src"; String "dest"]), 87, [],
1999    [InitBasicFS, Always, TestOutput (
2000       [["write_file"; "/old"; "file content"; "0"];
2001        ["cp"; "/old"; "/new"];
2002        ["cat"; "/new"]], "file content");
2003     InitBasicFS, Always, TestOutputTrue (
2004       [["write_file"; "/old"; "file content"; "0"];
2005        ["cp"; "/old"; "/new"];
2006        ["is_file"; "/old"]]);
2007     InitBasicFS, Always, TestOutput (
2008       [["write_file"; "/old"; "file content"; "0"];
2009        ["mkdir"; "/dir"];
2010        ["cp"; "/old"; "/dir/new"];
2011        ["cat"; "/dir/new"]], "file content")],
2012    "copy a file",
2013    "\
2014 This copies a file from C<src> to C<dest> where C<dest> is
2015 either a destination filename or destination directory.");
2016
2017   ("cp_a", (RErr, [String "src"; String "dest"]), 88, [],
2018    [InitBasicFS, Always, TestOutput (
2019       [["mkdir"; "/olddir"];
2020        ["mkdir"; "/newdir"];
2021        ["write_file"; "/olddir/file"; "file content"; "0"];
2022        ["cp_a"; "/olddir"; "/newdir"];
2023        ["cat"; "/newdir/olddir/file"]], "file content")],
2024    "copy a file or directory recursively",
2025    "\
2026 This copies a file or directory from C<src> to C<dest>
2027 recursively using the C<cp -a> command.");
2028
2029   ("mv", (RErr, [String "src"; String "dest"]), 89, [],
2030    [InitBasicFS, Always, TestOutput (
2031       [["write_file"; "/old"; "file content"; "0"];
2032        ["mv"; "/old"; "/new"];
2033        ["cat"; "/new"]], "file content");
2034     InitBasicFS, Always, TestOutputFalse (
2035       [["write_file"; "/old"; "file content"; "0"];
2036        ["mv"; "/old"; "/new"];
2037        ["is_file"; "/old"]])],
2038    "move a file",
2039    "\
2040 This moves a file from C<src> to C<dest> where C<dest> is
2041 either a destination filename or destination directory.");
2042
2043   ("drop_caches", (RErr, [Int "whattodrop"]), 90, [],
2044    [InitEmpty, Always, TestRun (
2045       [["drop_caches"; "3"]])],
2046    "drop kernel page cache, dentries and inodes",
2047    "\
2048 This instructs the guest kernel to drop its page cache,
2049 and/or dentries and inode caches.  The parameter C<whattodrop>
2050 tells the kernel what precisely to drop, see
2051 L<http://linux-mm.org/Drop_Caches>
2052
2053 Setting C<whattodrop> to 3 should drop everything.
2054
2055 This automatically calls L<sync(2)> before the operation,
2056 so that the maximum guest memory is freed.");
2057
2058   ("dmesg", (RString "kmsgs", []), 91, [],
2059    [InitEmpty, Always, TestRun (
2060       [["dmesg"]])],
2061    "return kernel messages",
2062    "\
2063 This returns the kernel messages (C<dmesg> output) from
2064 the guest kernel.  This is sometimes useful for extended
2065 debugging of problems.
2066
2067 Another way to get the same information is to enable
2068 verbose messages with C<guestfs_set_verbose> or by setting
2069 the environment variable C<LIBGUESTFS_DEBUG=1> before
2070 running the program.");
2071
2072   ("ping_daemon", (RErr, []), 92, [],
2073    [InitEmpty, Always, TestRun (
2074       [["ping_daemon"]])],
2075    "ping the guest daemon",
2076    "\
2077 This is a test probe into the guestfs daemon running inside
2078 the qemu subprocess.  Calling this function checks that the
2079 daemon responds to the ping message, without affecting the daemon
2080 or attached block device(s) in any other way.");
2081
2082   ("equal", (RBool "equality", [String "file1"; String "file2"]), 93, [],
2083    [InitBasicFS, Always, TestOutputTrue (
2084       [["write_file"; "/file1"; "contents of a file"; "0"];
2085        ["cp"; "/file1"; "/file2"];
2086        ["equal"; "/file1"; "/file2"]]);
2087     InitBasicFS, Always, TestOutputFalse (
2088       [["write_file"; "/file1"; "contents of a file"; "0"];
2089        ["write_file"; "/file2"; "contents of another file"; "0"];
2090        ["equal"; "/file1"; "/file2"]]);
2091     InitBasicFS, Always, TestLastFail (
2092       [["equal"; "/file1"; "/file2"]])],
2093    "test if two files have equal contents",
2094    "\
2095 This compares the two files C<file1> and C<file2> and returns
2096 true if their content is exactly equal, or false otherwise.
2097
2098 The external L<cmp(1)> program is used for the comparison.");
2099
2100   ("strings", (RStringList "stringsout", [String "path"]), 94, [ProtocolLimitWarning],
2101    [InitBasicFS, Always, TestOutputList (
2102       [["write_file"; "/new"; "hello\nworld\n"; "0"];
2103        ["strings"; "/new"]], ["hello"; "world"]);
2104     InitBasicFS, Always, TestOutputList (
2105       [["touch"; "/new"];
2106        ["strings"; "/new"]], [])],
2107    "print the printable strings in a file",
2108    "\
2109 This runs the L<strings(1)> command on a file and returns
2110 the list of printable strings found.");
2111
2112   ("strings_e", (RStringList "stringsout", [String "encoding"; String "path"]), 95, [ProtocolLimitWarning],
2113    [InitBasicFS, Always, TestOutputList (
2114       [["write_file"; "/new"; "hello\nworld\n"; "0"];
2115        ["strings_e"; "b"; "/new"]], []);
2116     InitBasicFS, Disabled, TestOutputList (
2117       [["write_file"; "/new"; "\000h\000e\000l\000l\000o\000\n\000w\000o\000r\000l\000d\000\n"; "24"];
2118        ["strings_e"; "b"; "/new"]], ["hello"; "world"])],
2119    "print the printable strings in a file",
2120    "\
2121 This is like the C<guestfs_strings> command, but allows you to
2122 specify the encoding.
2123
2124 See the L<strings(1)> manpage for the full list of encodings.
2125
2126 Commonly useful encodings are C<l> (lower case L) which will
2127 show strings inside Windows/x86 files.
2128
2129 The returned strings are transcoded to UTF-8.");
2130
2131   ("hexdump", (RString "dump", [String "path"]), 96, [ProtocolLimitWarning],
2132    [InitBasicFS, Always, TestOutput (
2133       [["write_file"; "/new"; "hello\nworld\n"; "12"];
2134        ["hexdump"; "/new"]], "00000000  68 65 6c 6c 6f 0a 77 6f  72 6c 64 0a              |hello.world.|\n0000000c\n")],
2135    "dump a file in hexadecimal",
2136    "\
2137 This runs C<hexdump -C> on the given C<path>.  The result is
2138 the human-readable, canonical hex dump of the file.");
2139
2140   ("zerofree", (RErr, [String "device"]), 97, [],
2141    [InitNone, Always, TestOutput (
2142       [["sfdisk"; "/dev/sda"; "0"; "0"; "0"; ","];
2143        ["mkfs"; "ext3"; "/dev/sda1"];
2144        ["mount"; "/dev/sda1"; "/"];
2145        ["write_file"; "/new"; "test file"; "0"];
2146        ["umount"; "/dev/sda1"];
2147        ["zerofree"; "/dev/sda1"];
2148        ["mount"; "/dev/sda1"; "/"];
2149        ["cat"; "/new"]], "test file")],
2150    "zero unused inodes and disk blocks on ext2/3 filesystem",
2151    "\
2152 This runs the I<zerofree> program on C<device>.  This program
2153 claims to zero unused inodes and disk blocks on an ext2/3
2154 filesystem, thus making it possible to compress the filesystem
2155 more effectively.
2156
2157 You should B<not> run this program if the filesystem is
2158 mounted.
2159
2160 It is possible that using this program can damage the filesystem
2161 or data on the filesystem.");
2162
2163   ("pvresize", (RErr, [String "device"]), 98, [],
2164    [],
2165    "resize an LVM physical volume",
2166    "\
2167 This resizes (expands or shrinks) an existing LVM physical
2168 volume to match the new size of the underlying device.");
2169
2170   ("sfdisk_N", (RErr, [String "device"; Int "n";
2171                        Int "cyls"; Int "heads"; Int "sectors";
2172                        String "line"]), 99, [DangerWillRobinson],
2173    [],
2174    "modify a single partition on a block device",
2175    "\
2176 This runs L<sfdisk(8)> option to modify just the single
2177 partition C<n> (note: C<n> counts from 1).
2178
2179 For other parameters, see C<guestfs_sfdisk>.  You should usually
2180 pass C<0> for the cyls/heads/sectors parameters.");
2181
2182   ("sfdisk_l", (RString "partitions", [String "device"]), 100, [],
2183    [],
2184    "display the partition table",
2185    "\
2186 This displays the partition table on C<device>, in the
2187 human-readable output of the L<sfdisk(8)> command.  It is
2188 not intended to be parsed.");
2189
2190   ("sfdisk_kernel_geometry", (RString "partitions", [String "device"]), 101, [],
2191    [],
2192    "display the kernel geometry",
2193    "\
2194 This displays the kernel's idea of the geometry of C<device>.
2195
2196 The result is in human-readable format, and not designed to
2197 be parsed.");
2198
2199   ("sfdisk_disk_geometry", (RString "partitions", [String "device"]), 102, [],
2200    [],
2201    "display the disk geometry from the partition table",
2202    "\
2203 This displays the disk geometry of C<device> read from the
2204 partition table.  Especially in the case where the underlying
2205 block device has been resized, this can be different from the
2206 kernel's idea of the geometry (see C<guestfs_sfdisk_kernel_geometry>).
2207
2208 The result is in human-readable format, and not designed to
2209 be parsed.");
2210
2211   ("vg_activate_all", (RErr, [Bool "activate"]), 103, [],
2212    [],
2213    "activate or deactivate all volume groups",
2214    "\
2215 This command activates or (if C<activate> is false) deactivates
2216 all logical volumes in all volume groups.
2217 If activated, then they are made known to the
2218 kernel, ie. they appear as C</dev/mapper> devices.  If deactivated,
2219 then those devices disappear.
2220
2221 This command is the same as running C<vgchange -a y|n>");
2222
2223   ("vg_activate", (RErr, [Bool "activate"; StringList "volgroups"]), 104, [],
2224    [],
2225    "activate or deactivate some volume groups",
2226    "\
2227 This command activates or (if C<activate> is false) deactivates
2228 all logical volumes in the listed volume groups C<volgroups>.
2229 If activated, then they are made known to the
2230 kernel, ie. they appear as C</dev/mapper> devices.  If deactivated,
2231 then those devices disappear.
2232
2233 This command is the same as running C<vgchange -a y|n volgroups...>
2234
2235 Note that if C<volgroups> is an empty list then B<all> volume groups
2236 are activated or deactivated.");
2237
2238   ("lvresize", (RErr, [String "device"; Int "mbytes"]), 105, [],
2239    [InitNone, Always, TestOutput (
2240     [["sfdisk"; "/dev/sda"; "0"; "0"; "0"; ","];
2241      ["pvcreate"; "/dev/sda1"];
2242      ["vgcreate"; "VG"; "/dev/sda1"];
2243      ["lvcreate"; "LV"; "VG"; "10"];
2244      ["mkfs"; "ext2"; "/dev/VG/LV"];
2245      ["mount"; "/dev/VG/LV"; "/"];
2246      ["write_file"; "/new"; "test content"; "0"];
2247      ["umount"; "/"];
2248      ["lvresize"; "/dev/VG/LV"; "20"];
2249      ["e2fsck_f"; "/dev/VG/LV"];
2250      ["resize2fs"; "/dev/VG/LV"];
2251      ["mount"; "/dev/VG/LV"; "/"];
2252      ["cat"; "/new"]], "test content")],
2253    "resize an LVM logical volume",
2254    "\
2255 This resizes (expands or shrinks) an existing LVM logical
2256 volume to C<mbytes>.  When reducing, data in the reduced part
2257 is lost.");
2258
2259   ("resize2fs", (RErr, [String "device"]), 106, [],
2260    [], (* lvresize tests this *)
2261    "resize an ext2/ext3 filesystem",
2262    "\
2263 This resizes an ext2 or ext3 filesystem to match the size of
2264 the underlying device.
2265
2266 I<Note:> It is sometimes required that you run C<guestfs_e2fsck_f>
2267 on the C<device> before calling this command.  For unknown reasons
2268 C<resize2fs> sometimes gives an error about this and sometimes not.
2269 In any case, it is always safe to call C<guestfs_e2fsck_f> before
2270 calling this function.");
2271
2272   ("find", (RStringList "names", [String "directory"]), 107, [],
2273    [InitBasicFS, Always, TestOutputList (
2274       [["find"; "/"]], ["lost+found"]);
2275     InitBasicFS, Always, TestOutputList (
2276       [["touch"; "/a"];
2277        ["mkdir"; "/b"];
2278        ["touch"; "/b/c"];
2279        ["find"; "/"]], ["a"; "b"; "b/c"; "lost+found"]);
2280     InitBasicFS, Always, TestOutputList (
2281       [["mkdir_p"; "/a/b/c"];
2282        ["touch"; "/a/b/c/d"];
2283        ["find"; "/a/b/"]], ["c"; "c/d"])],
2284    "find all files and directories",
2285    "\
2286 This command lists out all files and directories, recursively,
2287 starting at C<directory>.  It is essentially equivalent to
2288 running the shell command C<find directory -print> but some
2289 post-processing happens on the output, described below.
2290
2291 This returns a list of strings I<without any prefix>.  Thus
2292 if the directory structure was:
2293
2294  /tmp/a
2295  /tmp/b
2296  /tmp/c/d
2297
2298 then the returned list from C<guestfs_find> C</tmp> would be
2299 4 elements:
2300
2301  a
2302  b
2303  c
2304  c/d
2305
2306 If C<directory> is not a directory, then this command returns
2307 an error.
2308
2309 The returned list is sorted.");
2310
2311   ("e2fsck_f", (RErr, [String "device"]), 108, [],
2312    [], (* lvresize tests this *)
2313    "check an ext2/ext3 filesystem",
2314    "\
2315 This runs C<e2fsck -p -f device>, ie. runs the ext2/ext3
2316 filesystem checker on C<device>, noninteractively (C<-p>),
2317 even if the filesystem appears to be clean (C<-f>).
2318
2319 This command is only needed because of C<guestfs_resize2fs>
2320 (q.v.).  Normally you should use C<guestfs_fsck>.");
2321
2322   ("sleep", (RErr, [Int "secs"]), 109, [],
2323    [InitNone, Always, TestRun (
2324     [["sleep"; "1"]])],
2325    "sleep for some seconds",
2326    "\
2327 Sleep for C<secs> seconds.");
2328
2329   ("ntfs_3g_probe", (RInt "status", [Bool "rw"; String "device"]), 110, [],
2330    [InitNone, Always, TestOutputInt (
2331       [["sfdisk"; "/dev/sda"; "0"; "0"; "0"; ","];
2332        ["mkfs"; "ntfs"; "/dev/sda1"];
2333        ["ntfs_3g_probe"; "true"; "/dev/sda1"]], 0);
2334     InitNone, Always, TestOutputInt (
2335       [["sfdisk"; "/dev/sda"; "0"; "0"; "0"; ","];
2336        ["mkfs"; "ext2"; "/dev/sda1"];
2337        ["ntfs_3g_probe"; "true"; "/dev/sda1"]], 12)],
2338    "probe NTFS volume",
2339    "\
2340 This command runs the L<ntfs-3g.probe(8)> command which probes
2341 an NTFS C<device> for mountability.  (Not all NTFS volumes can
2342 be mounted read-write, and some cannot be mounted at all).
2343
2344 C<rw> is a boolean flag.  Set it to true if you want to test
2345 if the volume can be mounted read-write.  Set it to false if
2346 you want to test if the volume can be mounted read-only.
2347
2348 The return value is an integer which C<0> if the operation
2349 would succeed, or some non-zero value documented in the
2350 L<ntfs-3g.probe(8)> manual page.");
2351
2352   ("sh", (RString "output", [String "command"]), 111, [],
2353    [], (* XXX needs tests *)
2354    "run a command via the shell",
2355    "\
2356 This call runs a command from the guest filesystem via the
2357 guest's C</bin/sh>.
2358
2359 This is like C<guestfs_command>, but passes the command to:
2360
2361  /bin/sh -c \"command\"
2362
2363 Depending on the guest's shell, this usually results in
2364 wildcards being expanded, shell expressions being interpolated
2365 and so on.
2366
2367 All the provisos about C<guestfs_command> apply to this call.");
2368
2369   ("sh_lines", (RStringList "lines", [String "command"]), 112, [],
2370    [], (* XXX needs tests *)
2371    "run a command via the shell returning lines",
2372    "\
2373 This is the same as C<guestfs_sh>, but splits the result
2374 into a list of lines.
2375
2376 See also: C<guestfs_command_lines>");
2377
2378   ("glob_expand", (RStringList "paths", [String "pattern"]), 113, [],
2379    [InitBasicFS, Always, TestOutputList (
2380       [["mkdir_p"; "/a/b/c"];
2381        ["touch"; "/a/b/c/d"];
2382        ["touch"; "/a/b/c/e"];
2383        ["glob_expand"; "/a/b/c/*"]], ["/a/b/c/d"; "/a/b/c/e"]);
2384     InitBasicFS, Always, TestOutputList (
2385       [["mkdir_p"; "/a/b/c"];
2386        ["touch"; "/a/b/c/d"];
2387        ["touch"; "/a/b/c/e"];
2388        ["glob_expand"; "/a/*/c/*"]], ["/a/b/c/d"; "/a/b/c/e"]);
2389     InitBasicFS, Always, TestOutputList (
2390       [["mkdir_p"; "/a/b/c"];
2391        ["touch"; "/a/b/c/d"];
2392        ["touch"; "/a/b/c/e"];
2393        ["glob_expand"; "/a/*/x/*"]], [])],
2394    "expand a wildcard path",
2395    "\
2396 This command searches for all the pathnames matching
2397 C<pattern> according to the wildcard expansion rules
2398 used by the shell.
2399
2400 If no paths match, then this returns an empty list
2401 (note: not an error).
2402
2403 It is just a wrapper around the C L<glob(3)> function
2404 with flags C<GLOB_MARK|GLOB_BRACE>.
2405 See that manual page for more details.");
2406
2407   ("scrub_device", (RErr, [String "device"]), 114, [DangerWillRobinson],
2408    [InitNone, Always, TestRun ( (* use /dev/sdc because it's smaller *)
2409       [["scrub_device"; "/dev/sdc"]])],
2410    "scrub (securely wipe) a device",
2411    "\
2412 This command writes patterns over C<device> to make data retrieval
2413 more difficult.
2414
2415 It is an interface to the L<scrub(1)> program.  See that
2416 manual page for more details.");
2417
2418   ("scrub_file", (RErr, [String "file"]), 115, [],
2419    [InitBasicFS, Always, TestRun (
2420       [["write_file"; "/file"; "content"; "0"];
2421        ["scrub_file"; "/file"]])],
2422    "scrub (securely wipe) a file",
2423    "\
2424 This command writes patterns over a file to make data retrieval
2425 more difficult.
2426
2427 The file is I<removed> after scrubbing.
2428
2429 It is an interface to the L<scrub(1)> program.  See that
2430 manual page for more details.");
2431
2432   ("scrub_freespace", (RErr, [String "dir"]), 116, [],
2433    [], (* XXX needs testing *)
2434    "scrub (securely wipe) free space",
2435    "\
2436 This command creates the directory C<dir> and then fills it
2437 with files until the filesystem is full, and scrubs the files
2438 as for C<guestfs_scrub_file>, and deletes them.
2439 The intention is to scrub any free space on the partition
2440 containing C<dir>.
2441
2442 It is an interface to the L<scrub(1)> program.  See that
2443 manual page for more details.");
2444
2445   ("mkdtemp", (RString "dir", [String "template"]), 117, [],
2446    [InitBasicFS, Always, TestRun (
2447       [["mkdir"; "/tmp"];
2448        ["mkdtemp"; "/tmp/tmpXXXXXX"]])],
2449    "create a temporary directory",
2450    "\
2451 This command creates a temporary directory.  The
2452 C<template> parameter should be a full pathname for the
2453 temporary directory name with the final six characters being
2454 \"XXXXXX\".
2455
2456 For example: \"/tmp/myprogXXXXXX\" or \"/Temp/myprogXXXXXX\",
2457 the second one being suitable for Windows filesystems.
2458
2459 The name of the temporary directory that was created
2460 is returned.
2461
2462 The temporary directory is created with mode 0700
2463 and is owned by root.
2464
2465 The caller is responsible for deleting the temporary
2466 directory and its contents after use.
2467
2468 See also: L<mkdtemp(3)>");
2469
2470 ]
2471
2472 let all_functions = non_daemon_functions @ daemon_functions
2473
2474 (* In some places we want the functions to be displayed sorted
2475  * alphabetically, so this is useful:
2476  *)
2477 let all_functions_sorted =
2478   List.sort (fun (n1,_,_,_,_,_,_) (n2,_,_,_,_,_,_) ->
2479                compare n1 n2) all_functions
2480
2481 (* Column names and types from LVM PVs/VGs/LVs. *)
2482 let pv_cols = [
2483   "pv_name", `String;
2484   "pv_uuid", `UUID;
2485   "pv_fmt", `String;
2486   "pv_size", `Bytes;
2487   "dev_size", `Bytes;
2488   "pv_free", `Bytes;
2489   "pv_used", `Bytes;
2490   "pv_attr", `String (* XXX *);
2491   "pv_pe_count", `Int;
2492   "pv_pe_alloc_count", `Int;
2493   "pv_tags", `String;
2494   "pe_start", `Bytes;
2495   "pv_mda_count", `Int;
2496   "pv_mda_free", `Bytes;
2497 (* Not in Fedora 10:
2498   "pv_mda_size", `Bytes;
2499 *)
2500 ]
2501 let vg_cols = [
2502   "vg_name", `String;
2503   "vg_uuid", `UUID;
2504   "vg_fmt", `String;
2505   "vg_attr", `String (* XXX *);
2506   "vg_size", `Bytes;
2507   "vg_free", `Bytes;
2508   "vg_sysid", `String;
2509   "vg_extent_size", `Bytes;
2510   "vg_extent_count", `Int;
2511   "vg_free_count", `Int;
2512   "max_lv", `Int;
2513   "max_pv", `Int;
2514   "pv_count", `Int;
2515   "lv_count", `Int;
2516   "snap_count", `Int;
2517   "vg_seqno", `Int;
2518   "vg_tags", `String;
2519   "vg_mda_count", `Int;
2520   "vg_mda_free", `Bytes;
2521 (* Not in Fedora 10:
2522   "vg_mda_size", `Bytes;
2523 *)
2524 ]
2525 let lv_cols = [
2526   "lv_name", `String;
2527   "lv_uuid", `UUID;
2528   "lv_attr", `String (* XXX *);
2529   "lv_major", `Int;
2530   "lv_minor", `Int;
2531   "lv_kernel_major", `Int;
2532   "lv_kernel_minor", `Int;
2533   "lv_size", `Bytes;
2534   "seg_count", `Int;
2535   "origin", `String;
2536   "snap_percent", `OptPercent;
2537   "copy_percent", `OptPercent;
2538   "move_pv", `String;
2539   "lv_tags", `String;
2540   "mirror_log", `String;
2541   "modules", `String;
2542 ]
2543
2544 (* Column names and types from stat structures.
2545  * NB. Can't use things like 'st_atime' because glibc header files
2546  * define some of these as macros.  Ugh.
2547  *)
2548 let stat_cols = [
2549   "dev", `Int;
2550   "ino", `Int;
2551   "mode", `Int;
2552   "nlink", `Int;
2553   "uid", `Int;
2554   "gid", `Int;
2555   "rdev", `Int;
2556   "size", `Int;
2557   "blksize", `Int;
2558   "blocks", `Int;
2559   "atime", `Int;
2560   "mtime", `Int;
2561   "ctime", `Int;
2562 ]
2563 let statvfs_cols = [
2564   "bsize", `Int;
2565   "frsize", `Int;
2566   "blocks", `Int;
2567   "bfree", `Int;
2568   "bavail", `Int;
2569   "files", `Int;
2570   "ffree", `Int;
2571   "favail", `Int;
2572   "fsid", `Int;
2573   "flag", `Int;
2574   "namemax", `Int;
2575 ]
2576
2577 (* Used for testing language bindings. *)
2578 type callt =
2579   | CallString of string
2580   | CallOptString of string option
2581   | CallStringList of string list
2582   | CallInt of int
2583   | CallBool of bool
2584
2585 (* Useful functions.
2586  * Note we don't want to use any external OCaml libraries which
2587  * makes this a bit harder than it should be.
2588  *)
2589 let failwithf fs = ksprintf failwith fs
2590
2591 let replace_char s c1 c2 =
2592   let s2 = String.copy s in
2593   let r = ref false in
2594   for i = 0 to String.length s2 - 1 do
2595     if String.unsafe_get s2 i = c1 then (
2596       String.unsafe_set s2 i c2;
2597       r := true
2598     )
2599   done;
2600   if not !r then s else s2
2601
2602 let isspace c =
2603   c = ' '
2604   (* || c = '\f' *) || c = '\n' || c = '\r' || c = '\t' (* || c = '\v' *)
2605
2606 let triml ?(test = isspace) str =
2607   let i = ref 0 in
2608   let n = ref (String.length str) in
2609   while !n > 0 && test str.[!i]; do
2610     decr n;
2611     incr i
2612   done;
2613   if !i = 0 then str
2614   else String.sub str !i !n
2615
2616 let trimr ?(test = isspace) str =
2617   let n = ref (String.length str) in
2618   while !n > 0 && test str.[!n-1]; do
2619     decr n
2620   done;
2621   if !n = String.length str then str
2622   else String.sub str 0 !n
2623
2624 let trim ?(test = isspace) str =
2625   trimr ~test (triml ~test str)
2626
2627 let rec find s sub =
2628   let len = String.length s in
2629   let sublen = String.length sub in
2630   let rec loop i =
2631     if i <= len-sublen then (
2632       let rec loop2 j =
2633         if j < sublen then (
2634           if s.[i+j] = sub.[j] then loop2 (j+1)
2635           else -1
2636         ) else
2637           i (* found *)
2638       in
2639       let r = loop2 0 in
2640       if r = -1 then loop (i+1) else r
2641     ) else
2642       -1 (* not found *)
2643   in
2644   loop 0
2645
2646 let rec replace_str s s1 s2 =
2647   let len = String.length s in
2648   let sublen = String.length s1 in
2649   let i = find s s1 in
2650   if i = -1 then s
2651   else (
2652     let s' = String.sub s 0 i in
2653     let s'' = String.sub s (i+sublen) (len-i-sublen) in
2654     s' ^ s2 ^ replace_str s'' s1 s2
2655   )
2656
2657 let rec string_split sep str =
2658   let len = String.length str in
2659   let seplen = String.length sep in
2660   let i = find str sep in
2661   if i = -1 then [str]
2662   else (
2663     let s' = String.sub str 0 i in
2664     let s'' = String.sub str (i+seplen) (len-i-seplen) in
2665     s' :: string_split sep s''
2666   )
2667
2668 let files_equal n1 n2 =
2669   let cmd = sprintf "cmp -s %s %s" (Filename.quote n1) (Filename.quote n2) in
2670   match Sys.command cmd with
2671   | 0 -> true
2672   | 1 -> false
2673   | i -> failwithf "%s: failed with error code %d" cmd i
2674
2675 let rec find_map f = function
2676   | [] -> raise Not_found
2677   | x :: xs ->
2678       match f x with
2679       | Some y -> y
2680       | None -> find_map f xs
2681
2682 let iteri f xs =
2683   let rec loop i = function
2684     | [] -> ()
2685     | x :: xs -> f i x; loop (i+1) xs
2686   in
2687   loop 0 xs
2688
2689 let mapi f xs =
2690   let rec loop i = function
2691     | [] -> []
2692     | x :: xs -> let r = f i x in r :: loop (i+1) xs
2693   in
2694   loop 0 xs
2695
2696 let name_of_argt = function
2697   | String n | OptString n | StringList n | Bool n | Int n
2698   | FileIn n | FileOut n -> n
2699
2700 let seq_of_test = function
2701   | TestRun s | TestOutput (s, _) | TestOutputList (s, _)
2702   | TestOutputListOfDevices (s, _)
2703   | TestOutputInt (s, _) | TestOutputTrue s | TestOutputFalse s
2704   | TestOutputLength (s, _) | TestOutputStruct (s, _)
2705   | TestLastFail s -> s
2706
2707 (* Check function names etc. for consistency. *)
2708 let check_functions () =
2709   let contains_uppercase str =
2710     let len = String.length str in
2711     let rec loop i =
2712       if i >= len then false
2713       else (
2714         let c = str.[i] in
2715         if c >= 'A' && c <= 'Z' then true
2716         else loop (i+1)
2717       )
2718     in
2719     loop 0
2720   in
2721
2722   (* Check function names. *)
2723   List.iter (
2724     fun (name, _, _, _, _, _, _) ->
2725       if String.length name >= 7 && String.sub name 0 7 = "guestfs" then
2726         failwithf "function name %s does not need 'guestfs' prefix" name;
2727       if name = "" then
2728         failwithf "function name is empty";
2729       if name.[0] < 'a' || name.[0] > 'z' then
2730         failwithf "function name %s must start with lowercase a-z" name;
2731       if String.contains name '-' then
2732         failwithf "function name %s should not contain '-', use '_' instead."
2733           name
2734   ) all_functions;
2735
2736   (* Check function parameter/return names. *)
2737   List.iter (
2738     fun (name, style, _, _, _, _, _) ->
2739       let check_arg_ret_name n =
2740         if contains_uppercase n then
2741           failwithf "%s param/ret %s should not contain uppercase chars"
2742             name n;
2743         if String.contains n '-' || String.contains n '_' then
2744           failwithf "%s param/ret %s should not contain '-' or '_'"
2745             name n;
2746         if n = "value" then
2747           failwithf "%s has a param/ret called 'value', which causes conflicts in the OCaml bindings, use something like 'val' or a more descriptive name" name;
2748         if n = "int" || n = "char" || n = "short" || n = "long" then
2749           failwithf "%s has a param/ret which conflicts with a C type (eg. 'int', 'char' etc.)" name;
2750         if n = "i" then
2751           failwithf "%s has a param/ret called 'i', which will cause some conflicts in the generated code" name;
2752         if n = "argv" || n = "args" then
2753           failwithf "%s has a param/ret called 'argv' or 'args', which will cause some conflicts in the generated code" name
2754       in
2755
2756       (match fst style with
2757        | RErr -> ()
2758        | RInt n | RInt64 n | RBool n | RConstString n | RString n
2759        | RStringList n | RPVList n | RVGList n | RLVList n
2760        | RStat n | RStatVFS n
2761        | RHashtable n ->
2762            check_arg_ret_name n
2763        | RIntBool (n,m) ->
2764            check_arg_ret_name n;
2765            check_arg_ret_name m
2766       );
2767       List.iter (fun arg -> check_arg_ret_name (name_of_argt arg)) (snd style)
2768   ) all_functions;
2769
2770   (* Check short descriptions. *)
2771   List.iter (
2772     fun (name, _, _, _, _, shortdesc, _) ->
2773       if shortdesc.[0] <> Char.lowercase shortdesc.[0] then
2774         failwithf "short description of %s should begin with lowercase." name;
2775       let c = shortdesc.[String.length shortdesc-1] in
2776       if c = '\n' || c = '.' then
2777         failwithf "short description of %s should not end with . or \\n." name
2778   ) all_functions;
2779
2780   (* Check long dscriptions. *)
2781   List.iter (
2782     fun (name, _, _, _, _, _, longdesc) ->
2783       if longdesc.[String.length longdesc-1] = '\n' then
2784         failwithf "long description of %s should not end with \\n." name
2785   ) all_functions;
2786
2787   (* Check proc_nrs. *)
2788   List.iter (
2789     fun (name, _, proc_nr, _, _, _, _) ->
2790       if proc_nr <= 0 then
2791         failwithf "daemon function %s should have proc_nr > 0" name
2792   ) daemon_functions;
2793
2794   List.iter (
2795     fun (name, _, proc_nr, _, _, _, _) ->
2796       if proc_nr <> -1 then
2797         failwithf "non-daemon function %s should have proc_nr -1" name
2798   ) non_daemon_functions;
2799
2800   let proc_nrs =
2801     List.map (fun (name, _, proc_nr, _, _, _, _) -> name, proc_nr)
2802       daemon_functions in
2803   let proc_nrs =
2804     List.sort (fun (_,nr1) (_,nr2) -> compare nr1 nr2) proc_nrs in
2805   let rec loop = function
2806     | [] -> ()
2807     | [_] -> ()
2808     | (name1,nr1) :: ((name2,nr2) :: _ as rest) when nr1 < nr2 ->
2809         loop rest
2810     | (name1,nr1) :: (name2,nr2) :: _ ->
2811         failwithf "%s and %s have conflicting procedure numbers (%d, %d)"
2812           name1 name2 nr1 nr2
2813   in
2814   loop proc_nrs;
2815
2816   (* Check tests. *)
2817   List.iter (
2818     function
2819       (* Ignore functions that have no tests.  We generate a
2820        * warning when the user does 'make check' instead.
2821        *)
2822     | name, _, _, _, [], _, _ -> ()
2823     | name, _, _, _, tests, _, _ ->
2824         let funcs =
2825           List.map (
2826             fun (_, _, test) ->
2827               match seq_of_test test with
2828               | [] ->
2829                   failwithf "%s has a test containing an empty sequence" name
2830               | cmds -> List.map List.hd cmds
2831           ) tests in
2832         let funcs = List.flatten funcs in
2833
2834         let tested = List.mem name funcs in
2835
2836         if not tested then
2837           failwithf "function %s has tests but does not test itself" name
2838   ) all_functions
2839
2840 (* 'pr' prints to the current output file. *)
2841 let chan = ref stdout
2842 let pr fs = ksprintf (output_string !chan) fs
2843
2844 (* Generate a header block in a number of standard styles. *)
2845 type comment_style = CStyle | HashStyle | OCamlStyle | HaskellStyle
2846 type license = GPLv2 | LGPLv2
2847
2848 let generate_header comment license =
2849   let c = match comment with
2850     | CStyle ->     pr "/* "; " *"
2851     | HashStyle ->  pr "# ";  "#"
2852     | OCamlStyle -> pr "(* "; " *"
2853     | HaskellStyle -> pr "{- "; "  " in
2854   pr "libguestfs generated file\n";
2855   pr "%s WARNING: THIS FILE IS GENERATED BY 'src/generator.ml'.\n" c;
2856   pr "%s ANY CHANGES YOU MAKE TO THIS FILE WILL BE LOST.\n" c;
2857   pr "%s\n" c;
2858   pr "%s Copyright (C) 2009 Red Hat Inc.\n" c;
2859   pr "%s\n" c;
2860   (match license with
2861    | GPLv2 ->
2862        pr "%s This program is free software; you can redistribute it and/or modify\n" c;
2863        pr "%s it under the terms of the GNU General Public License as published by\n" c;
2864        pr "%s the Free Software Foundation; either version 2 of the License, or\n" c;
2865        pr "%s (at your option) any later version.\n" c;
2866        pr "%s\n" c;
2867        pr "%s This program is distributed in the hope that it will be useful,\n" c;
2868        pr "%s but WITHOUT ANY WARRANTY; without even the implied warranty of\n" c;
2869        pr "%s MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n" c;
2870        pr "%s GNU General Public License for more details.\n" c;
2871        pr "%s\n" c;
2872        pr "%s You should have received a copy of the GNU General Public License along\n" c;
2873        pr "%s with this program; if not, write to the Free Software Foundation, Inc.,\n" c;
2874        pr "%s 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.\n" c;
2875
2876    | LGPLv2 ->
2877        pr "%s This library is free software; you can redistribute it and/or\n" c;
2878        pr "%s modify it under the terms of the GNU Lesser General Public\n" c;
2879        pr "%s License as published by the Free Software Foundation; either\n" c;
2880        pr "%s version 2 of the License, or (at your option) any later version.\n" c;
2881        pr "%s\n" c;
2882        pr "%s This library is distributed in the hope that it will be useful,\n" c;
2883        pr "%s but WITHOUT ANY WARRANTY; without even the implied warranty of\n" c;
2884        pr "%s MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n" c;
2885        pr "%s Lesser General Public License for more details.\n" c;
2886        pr "%s\n" c;
2887        pr "%s You should have received a copy of the GNU Lesser General Public\n" c;
2888        pr "%s License along with this library; if not, write to the Free Software\n" c;
2889        pr "%s Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA\n" c;
2890   );
2891   (match comment with
2892    | CStyle -> pr " */\n"
2893    | HashStyle -> ()
2894    | OCamlStyle -> pr " *)\n"
2895    | HaskellStyle -> pr "-}\n"
2896   );
2897   pr "\n"
2898
2899 (* Start of main code generation functions below this line. *)
2900
2901 (* Generate the pod documentation for the C API. *)
2902 let rec generate_actions_pod () =
2903   List.iter (
2904     fun (shortname, style, _, flags, _, _, longdesc) ->
2905       if not (List.mem NotInDocs flags) then (
2906         let name = "guestfs_" ^ shortname in
2907         pr "=head2 %s\n\n" name;
2908         pr " ";
2909         generate_prototype ~extern:false ~handle:"handle" name style;
2910         pr "\n\n";
2911         pr "%s\n\n" longdesc;
2912         (match fst style with
2913          | RErr ->
2914              pr "This function returns 0 on success or -1 on error.\n\n"
2915          | RInt _ ->
2916              pr "On error this function returns -1.\n\n"
2917          | RInt64 _ ->
2918              pr "On error this function returns -1.\n\n"
2919          | RBool _ ->
2920              pr "This function returns a C truth value on success or -1 on error.\n\n"
2921          | RConstString _ ->
2922              pr "This function returns a string, or NULL on error.
2923 The string is owned by the guest handle and must I<not> be freed.\n\n"
2924          | RString _ ->
2925              pr "This function returns a string, or NULL on error.
2926 I<The caller must free the returned string after use>.\n\n"
2927          | RStringList _ ->
2928              pr "This function returns a NULL-terminated array of strings
2929 (like L<environ(3)>), or NULL if there was an error.
2930 I<The caller must free the strings and the array after use>.\n\n"
2931          | RIntBool _ ->
2932              pr "This function returns a C<struct guestfs_int_bool *>,
2933 or NULL if there was an error.
2934 I<The caller must call C<guestfs_free_int_bool> after use>.\n\n"
2935          | RPVList _ ->
2936              pr "This function returns a C<struct guestfs_lvm_pv_list *>
2937 (see E<lt>guestfs-structs.hE<gt>),
2938 or NULL if there was an error.
2939 I<The caller must call C<guestfs_free_lvm_pv_list> after use>.\n\n"
2940          | RVGList _ ->
2941              pr "This function returns a C<struct guestfs_lvm_vg_list *>
2942 (see E<lt>guestfs-structs.hE<gt>),
2943 or NULL if there was an error.
2944 I<The caller must call C<guestfs_free_lvm_vg_list> after use>.\n\n"
2945          | RLVList _ ->
2946              pr "This function returns a C<struct guestfs_lvm_lv_list *>
2947 (see E<lt>guestfs-structs.hE<gt>),
2948 or NULL if there was an error.
2949 I<The caller must call C<guestfs_free_lvm_lv_list> after use>.\n\n"
2950          | RStat _ ->
2951              pr "This function returns a C<struct guestfs_stat *>
2952 (see L<stat(2)> and E<lt>guestfs-structs.hE<gt>),
2953 or NULL if there was an error.
2954 I<The caller must call C<free> after use>.\n\n"
2955          | RStatVFS _ ->
2956              pr "This function returns a C<struct guestfs_statvfs *>
2957 (see L<statvfs(2)> and E<lt>guestfs-structs.hE<gt>),
2958 or NULL if there was an error.
2959 I<The caller must call C<free> after use>.\n\n"
2960          | RHashtable _ ->
2961              pr "This function returns a NULL-terminated array of
2962 strings, or NULL if there was an error.
2963 The array of strings will always have length C<2n+1>, where
2964 C<n> keys and values alternate, followed by the trailing NULL entry.
2965 I<The caller must free the strings and the array after use>.\n\n"
2966         );
2967         if List.mem ProtocolLimitWarning flags then
2968           pr "%s\n\n" protocol_limit_warning;
2969         if List.mem DangerWillRobinson flags then
2970           pr "%s\n\n" danger_will_robinson
2971       )
2972   ) all_functions_sorted
2973
2974 and generate_structs_pod () =
2975   (* LVM structs documentation. *)
2976   List.iter (
2977     fun (typ, cols) ->
2978       pr "=head2 guestfs_lvm_%s\n" typ;
2979       pr "\n";
2980       pr " struct guestfs_lvm_%s {\n" typ;
2981       List.iter (
2982         function
2983         | name, `String -> pr "  char *%s;\n" name
2984         | name, `UUID ->
2985             pr "  /* The next field is NOT nul-terminated, be careful when printing it: */\n";
2986             pr "  char %s[32];\n" name
2987         | name, `Bytes -> pr "  uint64_t %s;\n" name
2988         | name, `Int -> pr "  int64_t %s;\n" name
2989         | name, `OptPercent ->
2990             pr "  /* The next field is [0..100] or -1 meaning 'not present': */\n";
2991             pr "  float %s;\n" name
2992       ) cols;
2993       pr " \n";
2994       pr " struct guestfs_lvm_%s_list {\n" typ;
2995       pr "   uint32_t len; /* Number of elements in list. */\n";
2996       pr "   struct guestfs_lvm_%s *val; /* Elements. */\n" typ;
2997       pr " };\n";
2998       pr " \n";
2999       pr " void guestfs_free_lvm_%s_list (struct guestfs_free_lvm_%s_list *);\n"
3000         typ typ;
3001       pr "\n"
3002   ) ["pv", pv_cols; "vg", vg_cols; "lv", lv_cols]
3003
3004 (* Generate the protocol (XDR) file, 'guestfs_protocol.x' and
3005  * indirectly 'guestfs_protocol.h' and 'guestfs_protocol.c'.
3006  *
3007  * We have to use an underscore instead of a dash because otherwise
3008  * rpcgen generates incorrect code.
3009  *
3010  * This header is NOT exported to clients, but see also generate_structs_h.
3011  *)
3012 and generate_xdr () =
3013   generate_header CStyle LGPLv2;
3014
3015   (* This has to be defined to get around a limitation in Sun's rpcgen. *)
3016   pr "typedef string str<>;\n";
3017   pr "\n";
3018
3019   (* LVM internal structures. *)
3020   List.iter (
3021     function
3022     | typ, cols ->
3023         pr "struct guestfs_lvm_int_%s {\n" typ;
3024         List.iter (function
3025                    | name, `String -> pr "  string %s<>;\n" name
3026                    | name, `UUID -> pr "  opaque %s[32];\n" name
3027                    | name, `Bytes -> pr "  hyper %s;\n" name
3028                    | name, `Int -> pr "  hyper %s;\n" name
3029                    | name, `OptPercent -> pr "  float %s;\n" name
3030                   ) cols;
3031         pr "};\n";
3032         pr "\n";
3033         pr "typedef struct guestfs_lvm_int_%s guestfs_lvm_int_%s_list<>;\n" typ typ;
3034         pr "\n";
3035   ) ["pv", pv_cols; "vg", vg_cols; "lv", lv_cols];
3036
3037   (* Stat internal structures. *)
3038   List.iter (
3039     function
3040     | typ, cols ->
3041         pr "struct guestfs_int_%s {\n" typ;
3042         List.iter (function
3043                    | name, `Int -> pr "  hyper %s;\n" name
3044                   ) cols;
3045         pr "};\n";
3046         pr "\n";
3047   ) ["stat", stat_cols; "statvfs", statvfs_cols];
3048
3049   List.iter (
3050     fun (shortname, style, _, _, _, _, _) ->
3051       let name = "guestfs_" ^ shortname in
3052
3053       (match snd style with
3054        | [] -> ()
3055        | args ->
3056            pr "struct %s_args {\n" name;
3057            List.iter (
3058              function
3059              | String n -> pr "  string %s<>;\n" n
3060              | OptString n -> pr "  str *%s;\n" n
3061              | StringList n -> pr "  str %s<>;\n" n
3062              | Bool n -> pr "  bool %s;\n" n
3063              | Int n -> pr "  int %s;\n" n
3064              | FileIn _ | FileOut _ -> ()
3065            ) args;
3066            pr "};\n\n"
3067       );
3068       (match fst style with
3069        | RErr -> ()
3070        | RInt n ->
3071            pr "struct %s_ret {\n" name;
3072            pr "  int %s;\n" n;
3073            pr "};\n\n"
3074        | RInt64 n ->
3075            pr "struct %s_ret {\n" name;
3076            pr "  hyper %s;\n" n;
3077            pr "};\n\n"
3078        | RBool n ->
3079            pr "struct %s_ret {\n" name;
3080            pr "  bool %s;\n" n;
3081            pr "};\n\n"
3082        | RConstString _ ->
3083            failwithf "RConstString cannot be returned from a daemon function"
3084        | RString n ->
3085            pr "struct %s_ret {\n" name;
3086            pr "  string %s<>;\n" n;
3087            pr "};\n\n"
3088        | RStringList n ->
3089            pr "struct %s_ret {\n" name;
3090            pr "  str %s<>;\n" n;
3091            pr "};\n\n"
3092        | RIntBool (n,m) ->
3093            pr "struct %s_ret {\n" name;
3094            pr "  int %s;\n" n;
3095            pr "  bool %s;\n" m;
3096            pr "};\n\n"
3097        | RPVList n ->
3098            pr "struct %s_ret {\n" name;
3099            pr "  guestfs_lvm_int_pv_list %s;\n" n;
3100            pr "};\n\n"
3101        | RVGList n ->
3102            pr "struct %s_ret {\n" name;
3103            pr "  guestfs_lvm_int_vg_list %s;\n" n;
3104            pr "};\n\n"
3105        | RLVList n ->
3106            pr "struct %s_ret {\n" name;
3107            pr "  guestfs_lvm_int_lv_list %s;\n" n;
3108            pr "};\n\n"
3109        | RStat n ->
3110            pr "struct %s_ret {\n" name;
3111            pr "  guestfs_int_stat %s;\n" n;
3112            pr "};\n\n"
3113        | RStatVFS n ->
3114            pr "struct %s_ret {\n" name;
3115            pr "  guestfs_int_statvfs %s;\n" n;
3116            pr "};\n\n"
3117        | RHashtable n ->
3118            pr "struct %s_ret {\n" name;
3119            pr "  str %s<>;\n" n;
3120            pr "};\n\n"
3121       );
3122   ) daemon_functions;
3123
3124   (* Table of procedure numbers. *)
3125   pr "enum guestfs_procedure {\n";
3126   List.iter (
3127     fun (shortname, _, proc_nr, _, _, _, _) ->
3128       pr "  GUESTFS_PROC_%s = %d,\n" (String.uppercase shortname) proc_nr
3129   ) daemon_functions;
3130   pr "  GUESTFS_PROC_NR_PROCS\n";
3131   pr "};\n";
3132   pr "\n";
3133
3134   (* Having to choose a maximum message size is annoying for several
3135    * reasons (it limits what we can do in the API), but it (a) makes
3136    * the protocol a lot simpler, and (b) provides a bound on the size
3137    * of the daemon which operates in limited memory space.  For large
3138    * file transfers you should use FTP.
3139    *)
3140   pr "const GUESTFS_MESSAGE_MAX = %d;\n" (4 * 1024 * 1024);
3141   pr "\n";
3142
3143   (* Message header, etc. *)
3144   pr "\
3145 /* The communication protocol is now documented in the guestfs(3)
3146  * manpage.
3147  */
3148
3149 const GUESTFS_PROGRAM = 0x2000F5F5;
3150 const GUESTFS_PROTOCOL_VERSION = 1;
3151
3152 /* These constants must be larger than any possible message length. */
3153 const GUESTFS_LAUNCH_FLAG = 0xf5f55ff5;
3154 const GUESTFS_CANCEL_FLAG = 0xffffeeee;
3155
3156 enum guestfs_message_direction {
3157   GUESTFS_DIRECTION_CALL = 0,        /* client -> daemon */
3158   GUESTFS_DIRECTION_REPLY = 1        /* daemon -> client */
3159 };
3160
3161 enum guestfs_message_status {
3162   GUESTFS_STATUS_OK = 0,
3163   GUESTFS_STATUS_ERROR = 1
3164 };
3165
3166 const GUESTFS_ERROR_LEN = 256;
3167
3168 struct guestfs_message_error {
3169   string error_message<GUESTFS_ERROR_LEN>;
3170 };
3171
3172 struct guestfs_message_header {
3173   unsigned prog;                     /* GUESTFS_PROGRAM */
3174   unsigned vers;                     /* GUESTFS_PROTOCOL_VERSION */
3175   guestfs_procedure proc;            /* GUESTFS_PROC_x */
3176   guestfs_message_direction direction;
3177   unsigned serial;                   /* message serial number */
3178   guestfs_message_status status;
3179 };
3180
3181 const GUESTFS_MAX_CHUNK_SIZE = 8192;
3182
3183 struct guestfs_chunk {
3184   int cancel;                        /* if non-zero, transfer is cancelled */
3185   /* data size is 0 bytes if the transfer has finished successfully */
3186   opaque data<GUESTFS_MAX_CHUNK_SIZE>;
3187 };
3188 "
3189
3190 (* Generate the guestfs-structs.h file. *)
3191 and generate_structs_h () =
3192   generate_header CStyle LGPLv2;
3193
3194   (* This is a public exported header file containing various
3195    * structures.  The structures are carefully written to have
3196    * exactly the same in-memory format as the XDR structures that
3197    * we use on the wire to the daemon.  The reason for creating
3198    * copies of these structures here is just so we don't have to
3199    * export the whole of guestfs_protocol.h (which includes much
3200    * unrelated and XDR-dependent stuff that we don't want to be
3201    * public, or required by clients).
3202    *
3203    * To reiterate, we will pass these structures to and from the
3204    * client with a simple assignment or memcpy, so the format
3205    * must be identical to what rpcgen / the RFC defines.
3206    *)
3207
3208   (* guestfs_int_bool structure. *)
3209   pr "struct guestfs_int_bool {\n";
3210   pr "  int32_t i;\n";
3211   pr "  int32_t b;\n";
3212   pr "};\n";
3213   pr "\n";
3214
3215   (* LVM public structures. *)
3216   List.iter (
3217     function
3218     | typ, cols ->
3219         pr "struct guestfs_lvm_%s {\n" typ;
3220         List.iter (
3221           function
3222           | name, `String -> pr "  char *%s;\n" name
3223           | name, `UUID -> pr "  char %s[32]; /* this is NOT nul-terminated, be careful when printing */\n" name
3224           | name, `Bytes -> pr "  uint64_t %s;\n" name
3225           | name, `Int -> pr "  int64_t %s;\n" name
3226           | name, `OptPercent -> pr "  float %s; /* [0..100] or -1 */\n" name
3227         ) cols;
3228         pr "};\n";
3229         pr "\n";
3230         pr "struct guestfs_lvm_%s_list {\n" typ;
3231         pr "  uint32_t len;\n";
3232         pr "  struct guestfs_lvm_%s *val;\n" typ;
3233         pr "};\n";
3234         pr "\n"
3235   ) ["pv", pv_cols; "vg", vg_cols; "lv", lv_cols];
3236
3237   (* Stat structures. *)
3238   List.iter (
3239     function
3240     | typ, cols ->
3241         pr "struct guestfs_%s {\n" typ;
3242         List.iter (
3243           function
3244           | name, `Int -> pr "  int64_t %s;\n" name
3245         ) cols;
3246         pr "};\n";
3247         pr "\n"
3248   ) ["stat", stat_cols; "statvfs", statvfs_cols]
3249
3250 (* Generate the guestfs-actions.h file. *)
3251 and generate_actions_h () =
3252   generate_header CStyle LGPLv2;
3253   List.iter (
3254     fun (shortname, style, _, _, _, _, _) ->
3255       let name = "guestfs_" ^ shortname in
3256       generate_prototype ~single_line:true ~newline:true ~handle:"handle"
3257         name style
3258   ) all_functions
3259
3260 (* Generate the client-side dispatch stubs. *)
3261 and generate_client_actions () =
3262   generate_header CStyle LGPLv2;
3263
3264   pr "\
3265 #include <stdio.h>
3266 #include <stdlib.h>
3267
3268 #include \"guestfs.h\"
3269 #include \"guestfs_protocol.h\"
3270
3271 #define error guestfs_error
3272 #define perrorf guestfs_perrorf
3273 #define safe_malloc guestfs_safe_malloc
3274 #define safe_realloc guestfs_safe_realloc
3275 #define safe_strdup guestfs_safe_strdup
3276 #define safe_memdup guestfs_safe_memdup
3277
3278 /* Check the return message from a call for validity. */
3279 static int
3280 check_reply_header (guestfs_h *g,
3281                     const struct guestfs_message_header *hdr,
3282                     int proc_nr, int serial)
3283 {
3284   if (hdr->prog != GUESTFS_PROGRAM) {
3285     error (g, \"wrong program (%%d/%%d)\", hdr->prog, GUESTFS_PROGRAM);
3286     return -1;
3287   }
3288   if (hdr->vers != GUESTFS_PROTOCOL_VERSION) {
3289     error (g, \"wrong protocol version (%%d/%%d)\",
3290            hdr->vers, GUESTFS_PROTOCOL_VERSION);
3291     return -1;
3292   }
3293   if (hdr->direction != GUESTFS_DIRECTION_REPLY) {
3294     error (g, \"unexpected message direction (%%d/%%d)\",
3295            hdr->direction, GUESTFS_DIRECTION_REPLY);
3296     return -1;
3297   }
3298   if (hdr->proc != proc_nr) {
3299     error (g, \"unexpected procedure number (%%d/%%d)\", hdr->proc, proc_nr);
3300     return -1;
3301   }
3302   if (hdr->serial != serial) {
3303     error (g, \"unexpected serial (%%d/%%d)\", hdr->serial, serial);
3304     return -1;
3305   }
3306
3307   return 0;
3308 }
3309
3310 /* Check we are in the right state to run a high-level action. */
3311 static int
3312 check_state (guestfs_h *g, const char *caller)
3313 {
3314   if (!guestfs_is_ready (g)) {
3315     if (guestfs_is_config (g))
3316       error (g, \"%%s: call launch() before using this function\",
3317         caller);
3318     else if (guestfs_is_launching (g))
3319       error (g, \"%%s: call wait_ready() before using this function\",
3320         caller);
3321     else
3322       error (g, \"%%s called from the wrong state, %%d != READY\",
3323         caller, guestfs_get_state (g));
3324     return -1;
3325   }
3326   return 0;
3327 }
3328
3329 ";
3330
3331   (* Client-side stubs for each function. *)
3332   List.iter (
3333     fun (shortname, style, _, _, _, _, _) ->
3334       let name = "guestfs_" ^ shortname in
3335
3336       (* Generate the context struct which stores the high-level
3337        * state between callback functions.
3338        *)
3339       pr "struct %s_ctx {\n" shortname;
3340       pr "  /* This flag is set by the callbacks, so we know we've done\n";
3341       pr "   * the callbacks as expected, and in the right sequence.\n";
3342       pr "   * 0 = not called, 1 = reply_cb called.\n";
3343       pr "   */\n";
3344       pr "  int cb_sequence;\n";
3345       pr "  struct guestfs_message_header hdr;\n";
3346       pr "  struct guestfs_message_error err;\n";
3347       (match fst style with
3348        | RErr -> ()
3349        | RConstString _ ->
3350            failwithf "RConstString cannot be returned from a daemon function"
3351        | RInt _ | RInt64 _
3352        | RBool _ | RString _ | RStringList _
3353        | RIntBool _
3354        | RPVList _ | RVGList _ | RLVList _
3355        | RStat _ | RStatVFS _
3356        | RHashtable _ ->
3357            pr "  struct %s_ret ret;\n" name
3358       );
3359       pr "};\n";
3360       pr "\n";
3361
3362       (* Generate the reply callback function. *)
3363       pr "static void %s_reply_cb (guestfs_h *g, void *data, XDR *xdr)\n" shortname;
3364       pr "{\n";
3365       pr "  guestfs_main_loop *ml = guestfs_get_main_loop (g);\n";
3366       pr "  struct %s_ctx *ctx = (struct %s_ctx *) data;\n" shortname shortname;
3367       pr "\n";
3368       pr "  /* This should definitely not happen. */\n";
3369       pr "  if (ctx->cb_sequence != 0) {\n";
3370       pr "    ctx->cb_sequence = 9999;\n";
3371       pr "    error (g, \"%%s: internal error: reply callback called twice\", \"%s\");\n" name;
3372       pr "    return;\n";
3373       pr "  }\n";
3374       pr "\n";
3375       pr "  ml->main_loop_quit (ml, g);\n";
3376       pr "\n";
3377       pr "  if (!xdr_guestfs_message_header (xdr, &ctx->hdr)) {\n";
3378       pr "    error (g, \"%%s: failed to parse reply header\", \"%s\");\n" name;
3379       pr "    return;\n";
3380       pr "  }\n";
3381       pr "  if (ctx->hdr.status == GUESTFS_STATUS_ERROR) {\n";
3382       pr "    if (!xdr_guestfs_message_error (xdr, &ctx->err)) {\n";
3383       pr "      error (g, \"%%s: failed to parse reply error\", \"%s\");\n"
3384         name;
3385       pr "      return;\n";
3386       pr "    }\n";
3387       pr "    goto done;\n";
3388       pr "  }\n";
3389
3390       (match fst style with
3391        | RErr -> ()
3392        | RConstString _ ->
3393            failwithf "RConstString cannot be returned from a daemon function"
3394        | RInt _ | RInt64 _
3395        | RBool _ | RString _ | RStringList _
3396        | RIntBool _
3397        | RPVList _ | RVGList _ | RLVList _
3398        | RStat _ | RStatVFS _
3399        | RHashtable _ ->
3400             pr "  if (!xdr_%s_ret (xdr, &ctx->ret)) {\n" name;
3401             pr "    error (g, \"%%s: failed to parse reply\", \"%s\");\n" name;
3402             pr "    return;\n";
3403             pr "  }\n";
3404       );
3405
3406       pr " done:\n";
3407       pr "  ctx->cb_sequence = 1;\n";
3408       pr "}\n\n";
3409
3410       (* Generate the action stub. *)
3411       generate_prototype ~extern:false ~semicolon:false ~newline:true
3412         ~handle:"g" name style;
3413
3414       let error_code =
3415         match fst style with
3416         | RErr | RInt _ | RInt64 _ | RBool _ -> "-1"
3417         | RConstString _ ->
3418             failwithf "RConstString cannot be returned from a daemon function"
3419         | RString _ | RStringList _ | RIntBool _
3420         | RPVList _ | RVGList _ | RLVList _
3421         | RStat _ | RStatVFS _
3422         | RHashtable _ ->
3423             "NULL" in
3424
3425       pr "{\n";
3426
3427       (match snd style with
3428        | [] -> ()
3429        | _ -> pr "  struct %s_args args;\n" name
3430       );
3431
3432       pr "  struct %s_ctx ctx;\n" shortname;
3433       pr "  guestfs_main_loop *ml = guestfs_get_main_loop (g);\n";
3434       pr "  int serial;\n";
3435       pr "\n";
3436       pr "  if (check_state (g, \"%s\") == -1) return %s;\n" name error_code;
3437       pr "  guestfs_set_busy (g);\n";
3438       pr "\n";
3439       pr "  memset (&ctx, 0, sizeof ctx);\n";
3440       pr "\n";
3441
3442       (* Send the main header and arguments. *)
3443       (match snd style with
3444        | [] ->
3445            pr "  serial = guestfs__send_sync (g, GUESTFS_PROC_%s, NULL, NULL);\n"
3446              (String.uppercase shortname)
3447        | args ->
3448            List.iter (
3449              function
3450              | String n ->
3451                  pr "  args.%s = (char *) %s;\n" n n
3452              | OptString n ->
3453                  pr "  args.%s = %s ? (char **) &%s : NULL;\n" n n n
3454              | StringList n ->
3455                  pr "  args.%s.%s_val = (char **) %s;\n" n n n;
3456                  pr "  for (args.%s.%s_len = 0; %s[args.%s.%s_len]; args.%s.%s_len++) ;\n" n n n n n n n;
3457              | Bool n ->
3458                  pr "  args.%s = %s;\n" n n
3459              | Int n ->
3460                  pr "  args.%s = %s;\n" n n
3461              | FileIn _ | FileOut _ -> ()
3462            ) args;
3463            pr "  serial = guestfs__send_sync (g, GUESTFS_PROC_%s,\n"
3464              (String.uppercase shortname);
3465            pr "        (xdrproc_t) xdr_%s_args, (char *) &args);\n"
3466              name;
3467       );
3468       pr "  if (serial == -1) {\n";
3469       pr "    guestfs_end_busy (g);\n";
3470       pr "    return %s;\n" error_code;
3471       pr "  }\n";
3472       pr "\n";
3473
3474       (* Send any additional files (FileIn) requested. *)
3475       let need_read_reply_label = ref false in
3476       List.iter (
3477         function
3478         | FileIn n ->
3479             pr "  {\n";
3480             pr "    int r;\n";
3481             pr "\n";
3482             pr "    r = guestfs__send_file_sync (g, %s);\n" n;
3483             pr "    if (r == -1) {\n";
3484             pr "      guestfs_end_busy (g);\n";
3485             pr "      return %s;\n" error_code;
3486             pr "    }\n";
3487             pr "    if (r == -2) /* daemon cancelled */\n";
3488             pr "      goto read_reply;\n";
3489             need_read_reply_label := true;
3490             pr "  }\n";
3491             pr "\n";
3492         | _ -> ()
3493       ) (snd style);
3494
3495       (* Wait for the reply from the remote end. *)
3496       if !need_read_reply_label then pr " read_reply:\n";
3497       pr "  guestfs__switch_to_receiving (g);\n";
3498       pr "  ctx.cb_sequence = 0;\n";
3499       pr "  guestfs_set_reply_callback (g, %s_reply_cb, &ctx);\n" shortname;
3500       pr "  (void) ml->main_loop_run (ml, g);\n";
3501       pr "  guestfs_set_reply_callback (g, NULL, NULL);\n";
3502       pr "  if (ctx.cb_sequence != 1) {\n";
3503       pr "    error (g, \"%%s reply failed, see earlier error messages\", \"%s\");\n" name;
3504       pr "    guestfs_end_busy (g);\n";
3505       pr "    return %s;\n" error_code;
3506       pr "  }\n";
3507       pr "\n";
3508
3509       pr "  if (check_reply_header (g, &ctx.hdr, GUESTFS_PROC_%s, serial) == -1) {\n"
3510         (String.uppercase shortname);
3511       pr "    guestfs_end_busy (g);\n";
3512       pr "    return %s;\n" error_code;
3513       pr "  }\n";
3514       pr "\n";
3515
3516       pr "  if (ctx.hdr.status == GUESTFS_STATUS_ERROR) {\n";
3517       pr "    error (g, \"%%s\", ctx.err.error_message);\n";
3518       pr "    free (ctx.err.error_message);\n";
3519       pr "    guestfs_end_busy (g);\n";
3520       pr "    return %s;\n" error_code;
3521       pr "  }\n";
3522       pr "\n";
3523
3524       (* Expecting to receive further files (FileOut)? *)
3525       List.iter (
3526         function
3527         | FileOut n ->
3528             pr "  if (guestfs__receive_file_sync (g, %s) == -1) {\n" n;
3529             pr "    guestfs_end_busy (g);\n";
3530             pr "    return %s;\n" error_code;
3531             pr "  }\n";
3532             pr "\n";
3533         | _ -> ()
3534       ) (snd style);
3535
3536       pr "  guestfs_end_busy (g);\n";
3537
3538       (match fst style with
3539        | RErr -> pr "  return 0;\n"
3540        | RInt n | RInt64 n | RBool n ->
3541            pr "  return ctx.ret.%s;\n" n
3542        | RConstString _ ->
3543            failwithf "RConstString cannot be returned from a daemon function"
3544        | RString n ->
3545            pr "  return ctx.ret.%s; /* caller will free */\n" n
3546        | RStringList n | RHashtable n ->
3547            pr "  /* caller will free this, but we need to add a NULL entry */\n";
3548            pr "  ctx.ret.%s.%s_val =\n" n n;
3549            pr "    safe_realloc (g, ctx.ret.%s.%s_val,\n" n n;
3550            pr "                  sizeof (char *) * (ctx.ret.%s.%s_len + 1));\n"
3551              n n;
3552            pr "  ctx.ret.%s.%s_val[ctx.ret.%s.%s_len] = NULL;\n" n n n n;
3553            pr "  return ctx.ret.%s.%s_val;\n" n n
3554        | RIntBool _ ->
3555            pr "  /* caller with free this */\n";
3556            pr "  return safe_memdup (g, &ctx.ret, sizeof (ctx.ret));\n"
3557        | RPVList n | RVGList n | RLVList n
3558        | RStat n | RStatVFS n ->
3559            pr "  /* caller will free this */\n";
3560            pr "  return safe_memdup (g, &ctx.ret.%s, sizeof (ctx.ret.%s));\n" n n
3561       );
3562
3563       pr "}\n\n"
3564   ) daemon_functions
3565
3566 (* Generate daemon/actions.h. *)
3567 and generate_daemon_actions_h () =
3568   generate_header CStyle GPLv2;
3569
3570   pr "#include \"../src/guestfs_protocol.h\"\n";
3571   pr "\n";
3572
3573   List.iter (
3574     fun (name, style, _, _, _, _, _) ->
3575         generate_prototype
3576           ~single_line:true ~newline:true ~in_daemon:true ~prefix:"do_"
3577           name style;
3578   ) daemon_functions
3579
3580 (* Generate the server-side stubs. *)
3581 and generate_daemon_actions () =
3582   generate_header CStyle GPLv2;
3583
3584   pr "#include <config.h>\n";
3585   pr "\n";
3586   pr "#include <stdio.h>\n";
3587   pr "#include <stdlib.h>\n";
3588   pr "#include <string.h>\n";
3589   pr "#include <inttypes.h>\n";
3590   pr "#include <ctype.h>\n";
3591   pr "#include <rpc/types.h>\n";
3592   pr "#include <rpc/xdr.h>\n";
3593   pr "\n";
3594   pr "#include \"daemon.h\"\n";
3595   pr "#include \"../src/guestfs_protocol.h\"\n";
3596   pr "#include \"actions.h\"\n";
3597   pr "\n";
3598
3599   List.iter (
3600     fun (name, style, _, _, _, _, _) ->
3601       (* Generate server-side stubs. *)
3602       pr "static void %s_stub (XDR *xdr_in)\n" name;
3603       pr "{\n";
3604       let error_code =
3605         match fst style with
3606         | RErr | RInt _ -> pr "  int r;\n"; "-1"
3607         | RInt64 _ -> pr "  int64_t r;\n"; "-1"
3608         | RBool _ -> pr "  int r;\n"; "-1"
3609         | RConstString _ ->
3610             failwithf "RConstString cannot be returned from a daemon function"
3611         | RString _ -> pr "  char *r;\n"; "NULL"
3612         | RStringList _ | RHashtable _ -> pr "  char **r;\n"; "NULL"
3613         | RIntBool _ -> pr "  guestfs_%s_ret *r;\n" name; "NULL"
3614         | RPVList _ -> pr "  guestfs_lvm_int_pv_list *r;\n"; "NULL"
3615         | RVGList _ -> pr "  guestfs_lvm_int_vg_list *r;\n"; "NULL"
3616         | RLVList _ -> pr "  guestfs_lvm_int_lv_list *r;\n"; "NULL"
3617         | RStat _ -> pr "  guestfs_int_stat *r;\n"; "NULL"
3618         | RStatVFS _ -> pr "  guestfs_int_statvfs *r;\n"; "NULL" in
3619
3620       (match snd style with
3621        | [] -> ()
3622        | args ->
3623            pr "  struct guestfs_%s_args args;\n" name;
3624            List.iter (
3625              function
3626                (* Note we allow the string to be writable, in order to
3627                 * allow device name translation.  This is safe because
3628                 * we can modify the string (passed from RPC).
3629                 *)
3630              | String n
3631              | OptString n -> pr "  char *%s;\n" n
3632              | StringList n -> pr "  char **%s;\n" n
3633              | Bool n -> pr "  int %s;\n" n
3634              | Int n -> pr "  int %s;\n" n
3635              | FileIn _ | FileOut _ -> ()
3636            ) args
3637       );
3638       pr "\n";
3639
3640       (match snd style with
3641        | [] -> ()
3642        | args ->
3643            pr "  memset (&args, 0, sizeof args);\n";
3644            pr "\n";
3645            pr "  if (!xdr_guestfs_%s_args (xdr_in, &args)) {\n" name;
3646            pr "    reply_with_error (\"%%s: daemon failed to decode procedure arguments\", \"%s\");\n" name;
3647            pr "    return;\n";
3648            pr "  }\n";
3649            List.iter (
3650              function
3651              | String n -> pr "  %s = args.%s;\n" n n
3652              | OptString n -> pr "  %s = args.%s ? *args.%s : NULL;\n" n n n
3653              | StringList n ->
3654                  pr "  %s = realloc (args.%s.%s_val,\n" n n n;
3655                  pr "                sizeof (char *) * (args.%s.%s_len+1));\n" n n;
3656                  pr "  if (%s == NULL) {\n" n;
3657                  pr "    reply_with_perror (\"realloc\");\n";
3658                  pr "    goto done;\n";
3659                  pr "  }\n";
3660                  pr "  %s[args.%s.%s_len] = NULL;\n" n n n;
3661                  pr "  args.%s.%s_val = %s;\n" n n n;
3662              | Bool n -> pr "  %s = args.%s;\n" n n
3663              | Int n -> pr "  %s = args.%s;\n" n n
3664              | FileIn _ | FileOut _ -> ()
3665            ) args;
3666            pr "\n"
3667       );
3668
3669       (* Don't want to call the impl with any FileIn or FileOut
3670        * parameters, since these go "outside" the RPC protocol.
3671        *)
3672       let argsnofile =
3673         List.filter (function FileIn _ | FileOut _ -> false | _ -> true)
3674           (snd style) in
3675       pr "  r = do_%s " name;
3676       generate_call_args argsnofile;
3677       pr ";\n";
3678
3679       pr "  if (r == %s)\n" error_code;
3680       pr "    /* do_%s has already called reply_with_error */\n" name;
3681       pr "    goto done;\n";
3682       pr "\n";
3683
3684       (* If there are any FileOut parameters, then the impl must
3685        * send its own reply.
3686        *)
3687       let no_reply =
3688         List.exists (function FileOut _ -> true | _ -> false) (snd style) in
3689       if no_reply then
3690         pr "  /* do_%s has already sent a reply */\n" name
3691       else (
3692         match fst style with
3693         | RErr -> pr "  reply (NULL, NULL);\n"
3694         | RInt n | RInt64 n | RBool n ->
3695             pr "  struct guestfs_%s_ret ret;\n" name;
3696             pr "  ret.%s = r;\n" n;
3697             pr "  reply ((xdrproc_t) &xdr_guestfs_%s_ret, (char *) &ret);\n"
3698               name
3699         | RConstString _ ->
3700             failwithf "RConstString cannot be returned from a daemon function"
3701         | RString n ->
3702             pr "  struct guestfs_%s_ret ret;\n" name;
3703             pr "  ret.%s = r;\n" n;
3704             pr "  reply ((xdrproc_t) &xdr_guestfs_%s_ret, (char *) &ret);\n"
3705               name;
3706             pr "  free (r);\n"
3707         | RStringList n | RHashtable n ->
3708             pr "  struct guestfs_%s_ret ret;\n" name;
3709             pr "  ret.%s.%s_len = count_strings (r);\n" n n;
3710             pr "  ret.%s.%s_val = r;\n" n n;
3711             pr "  reply ((xdrproc_t) &xdr_guestfs_%s_ret, (char *) &ret);\n"
3712               name;
3713             pr "  free_strings (r);\n"
3714         | RIntBool _ ->
3715             pr "  reply ((xdrproc_t) xdr_guestfs_%s_ret, (char *) r);\n"
3716               name;
3717             pr "  xdr_free ((xdrproc_t) xdr_guestfs_%s_ret, (char *) r);\n" name
3718         | RPVList n | RVGList n | RLVList n
3719         | RStat n | RStatVFS n ->
3720             pr "  struct guestfs_%s_ret ret;\n" name;
3721             pr "  ret.%s = *r;\n" n;
3722             pr "  reply ((xdrproc_t) xdr_guestfs_%s_ret, (char *) &ret);\n"
3723               name;
3724             pr "  xdr_free ((xdrproc_t) xdr_guestfs_%s_ret, (char *) &ret);\n"
3725               name
3726       );
3727
3728       (* Free the args. *)
3729       (match snd style with
3730        | [] ->
3731            pr "done: ;\n";
3732        | _ ->
3733            pr "done:\n";
3734            pr "  xdr_free ((xdrproc_t) xdr_guestfs_%s_args, (char *) &args);\n"
3735              name
3736       );
3737
3738       pr "}\n\n";
3739   ) daemon_functions;
3740
3741   (* Dispatch function. *)
3742   pr "void dispatch_incoming_message (XDR *xdr_in)\n";
3743   pr "{\n";
3744   pr "  switch (proc_nr) {\n";
3745
3746   List.iter (
3747     fun (name, style, _, _, _, _, _) ->
3748         pr "    case GUESTFS_PROC_%s:\n" (String.uppercase name);
3749         pr "      %s_stub (xdr_in);\n" name;
3750         pr "      break;\n"
3751   ) daemon_functions;
3752
3753   pr "    default:\n";
3754   pr "      reply_with_error (\"dispatch_incoming_message: unknown procedure number %%d, set LIBGUESTFS_PATH to point to the matching libguestfs appliance directory\", proc_nr);\n";
3755   pr "  }\n";
3756   pr "}\n";
3757   pr "\n";
3758
3759   (* LVM columns and tokenization functions. *)
3760   (* XXX This generates crap code.  We should rethink how we
3761    * do this parsing.
3762    *)
3763   List.iter (
3764     function
3765     | typ, cols ->
3766         pr "static const char *lvm_%s_cols = \"%s\";\n"
3767           typ (String.concat "," (List.map fst cols));
3768         pr "\n";
3769
3770         pr "static int lvm_tokenize_%s (char *str, struct guestfs_lvm_int_%s *r)\n" typ typ;
3771         pr "{\n";
3772         pr "  char *tok, *p, *next;\n";
3773         pr "  int i, j;\n";
3774         pr "\n";
3775         (*
3776         pr "  fprintf (stderr, \"%%s: <<%%s>>\\n\", __func__, str);\n";
3777         pr "\n";
3778         *)
3779         pr "  if (!str) {\n";
3780         pr "    fprintf (stderr, \"%%s: failed: passed a NULL string\\n\", __func__);\n";
3781         pr "    return -1;\n";
3782         pr "  }\n";
3783         pr "  if (!*str || isspace (*str)) {\n";
3784         pr "    fprintf (stderr, \"%%s: failed: passed a empty string or one beginning with whitespace\\n\", __func__);\n";
3785         pr "    return -1;\n";
3786         pr "  }\n";
3787         pr "  tok = str;\n";
3788         List.iter (
3789           fun (name, coltype) ->
3790             pr "  if (!tok) {\n";
3791             pr "    fprintf (stderr, \"%%s: failed: string finished early, around token %%s\\n\", __func__, \"%s\");\n" name;
3792             pr "    return -1;\n";
3793             pr "  }\n";
3794             pr "  p = strchrnul (tok, ',');\n";
3795             pr "  if (*p) next = p+1; else next = NULL;\n";
3796             pr "  *p = '\\0';\n";
3797             (match coltype with
3798              | `String ->
3799                  pr "  r->%s = strdup (tok);\n" name;
3800                  pr "  if (r->%s == NULL) {\n" name;
3801                  pr "    perror (\"strdup\");\n";
3802                  pr "    return -1;\n";
3803                  pr "  }\n"
3804              | `UUID ->
3805                  pr "  for (i = j = 0; i < 32; ++j) {\n";
3806                  pr "    if (tok[j] == '\\0') {\n";
3807                  pr "      fprintf (stderr, \"%%s: failed to parse UUID from '%%s'\\n\", __func__, tok);\n";
3808                  pr "      return -1;\n";
3809                  pr "    } else if (tok[j] != '-')\n";
3810                  pr "      r->%s[i++] = tok[j];\n" name;
3811                  pr "  }\n";
3812              | `Bytes ->
3813                  pr "  if (sscanf (tok, \"%%\"SCNu64, &r->%s) != 1) {\n" name;
3814                  pr "    fprintf (stderr, \"%%s: failed to parse size '%%s' from token %%s\\n\", __func__, tok, \"%s\");\n" name;
3815                  pr "    return -1;\n";
3816                  pr "  }\n";
3817              | `Int ->
3818                  pr "  if (sscanf (tok, \"%%\"SCNi64, &r->%s) != 1) {\n" name;
3819                  pr "    fprintf (stderr, \"%%s: failed to parse int '%%s' from token %%s\\n\", __func__, tok, \"%s\");\n" name;
3820                  pr "    return -1;\n";
3821                  pr "  }\n";
3822              | `OptPercent ->
3823                  pr "  if (tok[0] == '\\0')\n";
3824                  pr "    r->%s = -1;\n" name;
3825                  pr "  else if (sscanf (tok, \"%%f\", &r->%s) != 1) {\n" name;
3826                  pr "    fprintf (stderr, \"%%s: failed to parse float '%%s' from token %%s\\n\", __func__, tok, \"%s\");\n" name;
3827                  pr "    return -1;\n";
3828                  pr "  }\n";
3829             );
3830             pr "  tok = next;\n";
3831         ) cols;
3832
3833         pr "  if (tok != NULL) {\n";
3834         pr "    fprintf (stderr, \"%%s: failed: extra tokens at end of string\\n\", __func__);\n";
3835         pr "    return -1;\n";
3836         pr "  }\n";
3837         pr "  return 0;\n";
3838         pr "}\n";
3839         pr "\n";
3840
3841         pr "guestfs_lvm_int_%s_list *\n" typ;
3842         pr "parse_command_line_%ss (void)\n" typ;
3843         pr "{\n";
3844         pr "  char *out, *err;\n";
3845         pr "  char *p, *pend;\n";
3846         pr "  int r, i;\n";
3847         pr "  guestfs_lvm_int_%s_list *ret;\n" typ;
3848         pr "  void *newp;\n";
3849         pr "\n";
3850         pr "  ret = malloc (sizeof *ret);\n";
3851         pr "  if (!ret) {\n";
3852         pr "    reply_with_perror (\"malloc\");\n";
3853         pr "    return NULL;\n";
3854         pr "  }\n";
3855         pr "\n";
3856         pr "  ret->guestfs_lvm_int_%s_list_len = 0;\n" typ;
3857         pr "  ret->guestfs_lvm_int_%s_list_val = NULL;\n" typ;
3858         pr "\n";
3859         pr "  r = command (&out, &err,\n";
3860         pr "           \"/sbin/lvm\", \"%ss\",\n" typ;
3861         pr "           \"-o\", lvm_%s_cols, \"--unbuffered\", \"--noheadings\",\n" typ;
3862         pr "           \"--nosuffix\", \"--separator\", \",\", \"--units\", \"b\", NULL);\n";
3863         pr "  if (r == -1) {\n";
3864         pr "    reply_with_error (\"%%s\", err);\n";
3865         pr "    free (out);\n";
3866         pr "    free (err);\n";
3867         pr "    free (ret);\n";
3868         pr "    return NULL;\n";
3869         pr "  }\n";
3870         pr "\n";
3871         pr "  free (err);\n";
3872         pr "\n";
3873         pr "  /* Tokenize each line of the output. */\n";
3874         pr "  p = out;\n";
3875         pr "  i = 0;\n";
3876         pr "  while (p) {\n";
3877         pr "    pend = strchr (p, '\\n');       /* Get the next line of output. */\n";
3878         pr "    if (pend) {\n";
3879         pr "      *pend = '\\0';\n";
3880         pr "      pend++;\n";
3881         pr "    }\n";
3882         pr "\n";
3883         pr "    while (*p && isspace (*p))      /* Skip any leading whitespace. */\n";
3884         pr "      p++;\n";
3885         pr "\n";
3886         pr "    if (!*p) {                      /* Empty line?  Skip it. */\n";
3887         pr "      p = pend;\n";
3888         pr "      continue;\n";
3889         pr "    }\n";
3890         pr "\n";
3891         pr "    /* Allocate some space to store this next entry. */\n";
3892         pr "    newp = realloc (ret->guestfs_lvm_int_%s_list_val,\n" typ;
3893         pr "                sizeof (guestfs_lvm_int_%s) * (i+1));\n" typ;
3894         pr "    if (newp == NULL) {\n";
3895         pr "      reply_with_perror (\"realloc\");\n";
3896         pr "      free (ret->guestfs_lvm_int_%s_list_val);\n" typ;
3897         pr "      free (ret);\n";
3898         pr "      free (out);\n";
3899         pr "      return NULL;\n";
3900         pr "    }\n";
3901         pr "    ret->guestfs_lvm_int_%s_list_val = newp;\n" typ;
3902         pr "\n";
3903         pr "    /* Tokenize the next entry. */\n";
3904         pr "    r = lvm_tokenize_%s (p, &ret->guestfs_lvm_int_%s_list_val[i]);\n" typ typ;
3905         pr "    if (r == -1) {\n";
3906         pr "      reply_with_error (\"failed to parse output of '%ss' command\");\n" typ;
3907         pr "      free (ret->guestfs_lvm_int_%s_list_val);\n" typ;
3908         pr "      free (ret);\n";
3909         pr "      free (out);\n";
3910         pr "      return NULL;\n";
3911         pr "    }\n";
3912         pr "\n";
3913         pr "    ++i;\n";
3914         pr "    p = pend;\n";
3915         pr "  }\n";
3916         pr "\n";
3917         pr "  ret->guestfs_lvm_int_%s_list_len = i;\n" typ;
3918         pr "\n";
3919         pr "  free (out);\n";
3920         pr "  return ret;\n";
3921         pr "}\n"
3922
3923   ) ["pv", pv_cols; "vg", vg_cols; "lv", lv_cols]
3924
3925 (* Generate the tests. *)
3926 and generate_tests () =
3927   generate_header CStyle GPLv2;
3928
3929   pr "\
3930 #include <stdio.h>
3931 #include <stdlib.h>
3932 #include <string.h>
3933 #include <unistd.h>
3934 #include <sys/types.h>
3935 #include <fcntl.h>
3936
3937 #include \"guestfs.h\"
3938
3939 static guestfs_h *g;
3940 static int suppress_error = 0;
3941
3942 static void print_error (guestfs_h *g, void *data, const char *msg)
3943 {
3944   if (!suppress_error)
3945     fprintf (stderr, \"%%s\\n\", msg);
3946 }
3947
3948 static void print_strings (char * const * const argv)
3949 {
3950   int argc;
3951
3952   for (argc = 0; argv[argc] != NULL; ++argc)
3953     printf (\"\\t%%s\\n\", argv[argc]);
3954 }
3955
3956 /*
3957 static void print_table (char * const * const argv)
3958 {
3959   int i;
3960
3961   for (i = 0; argv[i] != NULL; i += 2)
3962     printf (\"%%s: %%s\\n\", argv[i], argv[i+1]);
3963 }
3964 */
3965
3966 static void no_test_warnings (void)
3967 {
3968 ";
3969
3970   List.iter (
3971     function
3972     | name, _, _, _, [], _, _ ->
3973         pr "  fprintf (stderr, \"warning: \\\"guestfs_%s\\\" has no tests\\n\");\n" name
3974     | name, _, _, _, tests, _, _ -> ()
3975   ) all_functions;
3976
3977   pr "}\n";
3978   pr "\n";
3979
3980   (* Generate the actual tests.  Note that we generate the tests
3981    * in reverse order, deliberately, so that (in general) the
3982    * newest tests run first.  This makes it quicker and easier to
3983    * debug them.
3984    *)
3985   let test_names =
3986     List.map (
3987       fun (name, _, _, _, tests, _, _) ->
3988         mapi (generate_one_test name) tests
3989     ) (List.rev all_functions) in
3990   let test_names = List.concat test_names in
3991   let nr_tests = List.length test_names in
3992
3993   pr "\
3994 int main (int argc, char *argv[])
3995 {
3996   char c = 0;
3997   int failed = 0;
3998   const char *filename;
3999   int fd;
4000   int nr_tests, test_num = 0;
4001
4002   no_test_warnings ();
4003
4004   g = guestfs_create ();
4005   if (g == NULL) {
4006     printf (\"guestfs_create FAILED\\n\");
4007     exit (1);
4008   }
4009
4010   guestfs_set_error_handler (g, print_error, NULL);
4011
4012   guestfs_set_path (g, \"../appliance\");
4013
4014   filename = \"test1.img\";
4015   fd = open (filename, O_WRONLY|O_CREAT|O_NOCTTY|O_NONBLOCK|O_TRUNC, 0666);
4016   if (fd == -1) {
4017     perror (filename);
4018     exit (1);
4019   }
4020   if (lseek (fd, %d, SEEK_SET) == -1) {
4021     perror (\"lseek\");
4022     close (fd);
4023     unlink (filename);
4024     exit (1);
4025   }
4026   if (write (fd, &c, 1) == -1) {
4027     perror (\"write\");
4028     close (fd);
4029     unlink (filename);
4030     exit (1);
4031   }
4032   if (close (fd) == -1) {
4033     perror (filename);
4034     unlink (filename);
4035     exit (1);
4036   }
4037   if (guestfs_add_drive (g, filename) == -1) {
4038     printf (\"guestfs_add_drive %%s FAILED\\n\", filename);
4039     exit (1);
4040   }
4041
4042   filename = \"test2.img\";
4043   fd = open (filename, O_WRONLY|O_CREAT|O_NOCTTY|O_NONBLOCK|O_TRUNC, 0666);
4044   if (fd == -1) {
4045     perror (filename);
4046     exit (1);
4047   }
4048   if (lseek (fd, %d, SEEK_SET) == -1) {
4049     perror (\"lseek\");
4050     close (fd);
4051     unlink (filename);
4052     exit (1);
4053   }
4054   if (write (fd, &c, 1) == -1) {
4055     perror (\"write\");
4056     close (fd);
4057     unlink (filename);
4058     exit (1);
4059   }
4060   if (close (fd) == -1) {
4061     perror (filename);
4062     unlink (filename);
4063     exit (1);
4064   }
4065   if (guestfs_add_drive (g, filename) == -1) {
4066     printf (\"guestfs_add_drive %%s FAILED\\n\", filename);
4067     exit (1);
4068   }
4069
4070   filename = \"test3.img\";
4071   fd = open (filename, O_WRONLY|O_CREAT|O_NOCTTY|O_NONBLOCK|O_TRUNC, 0666);
4072   if (fd == -1) {
4073     perror (filename);
4074     exit (1);
4075   }
4076   if (lseek (fd, %d, SEEK_SET) == -1) {
4077     perror (\"lseek\");
4078     close (fd);
4079     unlink (filename);
4080     exit (1);
4081   }
4082   if (write (fd, &c, 1) == -1) {
4083     perror (\"write\");
4084     close (fd);
4085     unlink (filename);
4086     exit (1);
4087   }
4088   if (close (fd) == -1) {
4089     perror (filename);
4090     unlink (filename);
4091     exit (1);
4092   }
4093   if (guestfs_add_drive (g, filename) == -1) {
4094     printf (\"guestfs_add_drive %%s FAILED\\n\", filename);
4095     exit (1);
4096   }
4097
4098   if (guestfs_add_drive_ro (g, \"../images/test.sqsh\") == -1) {
4099     printf (\"guestfs_add_drive_ro ../images/test.sqsh FAILED\\n\");
4100     exit (1);
4101   }
4102
4103   if (guestfs_launch (g) == -1) {
4104     printf (\"guestfs_launch FAILED\\n\");
4105     exit (1);
4106   }
4107
4108   /* Set a timeout in case qemu hangs during launch (RHBZ#505329). */
4109   alarm (600);
4110
4111   if (guestfs_wait_ready (g) == -1) {
4112     printf (\"guestfs_wait_ready FAILED\\n\");
4113     exit (1);
4114   }
4115
4116   /* Cancel previous alarm. */
4117   alarm (0);
4118
4119   nr_tests = %d;
4120
4121 " (500 * 1024 * 1024) (50 * 1024 * 1024) (10 * 1024 * 1024) nr_tests;
4122
4123   iteri (
4124     fun i test_name ->
4125       pr "  test_num++;\n";
4126       pr "  printf (\"%%3d/%%3d %s\\n\", test_num, nr_tests);\n" test_name;
4127       pr "  if (%s () == -1) {\n" test_name;
4128       pr "    printf (\"%s FAILED\\n\");\n" test_name;
4129       pr "    failed++;\n";
4130       pr "  }\n";
4131   ) test_names;
4132   pr "\n";
4133
4134   pr "  guestfs_close (g);\n";
4135   pr "  unlink (\"test1.img\");\n";
4136   pr "  unlink (\"test2.img\");\n";
4137   pr "  unlink (\"test3.img\");\n";
4138   pr "\n";
4139
4140   pr "  if (failed > 0) {\n";
4141   pr "    printf (\"***** %%d / %%d tests FAILED *****\\n\", failed, nr_tests);\n";
4142   pr "    exit (1);\n";
4143   pr "  }\n";
4144   pr "\n";
4145
4146   pr "  exit (0);\n";
4147   pr "}\n"
4148
4149 and generate_one_test name i (init, prereq, test) =
4150   let test_name = sprintf "test_%s_%d" name i in
4151
4152   pr "\
4153 static int %s_skip (void)
4154 {
4155   const char *str;
4156
4157   str = getenv (\"SKIP_%s\");
4158   if (str && strcmp (str, \"1\") == 0) return 1;
4159   str = getenv (\"SKIP_TEST_%s\");
4160   if (str && strcmp (str, \"1\") == 0) return 1;
4161   return 0;
4162 }
4163
4164 " test_name (String.uppercase test_name) (String.uppercase name);
4165
4166   (match prereq with
4167    | Disabled | Always -> ()
4168    | If code | Unless code ->
4169        pr "static int %s_prereq (void)\n" test_name;
4170        pr "{\n";
4171        pr "  %s\n" code;
4172        pr "}\n";
4173        pr "\n";
4174   );
4175
4176   pr "\
4177 static int %s (void)
4178 {
4179   if (%s_skip ()) {
4180     printf (\"%%s skipped (reason: SKIP_TEST_* variable set)\\n\", \"%s\");
4181     return 0;
4182   }
4183
4184 " test_name test_name test_name;
4185
4186   (match prereq with
4187    | Disabled ->
4188        pr "  printf (\"%%s skipped (reason: test disabled in generator)\\n\", \"%s\");\n" test_name
4189    | If _ ->
4190        pr "  if (! %s_prereq ()) {\n" test_name;
4191        pr "    printf (\"%%s skipped (reason: test prerequisite)\\n\", \"%s\");\n" test_name;
4192        pr "    return 0;\n";
4193        pr "  }\n";
4194        pr "\n";
4195        generate_one_test_body name i test_name init test;
4196    | Unless _ ->
4197        pr "  if (%s_prereq ()) {\n" test_name;
4198        pr "    printf (\"%%s skipped (reason: test prerequisite)\\n\", \"%s\");\n" test_name;
4199        pr "    return 0;\n";
4200        pr "  }\n";
4201        pr "\n";
4202        generate_one_test_body name i test_name init test;
4203    | Always ->
4204        generate_one_test_body name i test_name init test
4205   );
4206
4207   pr "  return 0;\n";
4208   pr "}\n";
4209   pr "\n";
4210   test_name
4211
4212 and generate_one_test_body name i test_name init test =
4213   (match init with
4214    | InitNone
4215    | InitEmpty ->
4216        pr "  /* InitNone|InitEmpty for %s */\n" test_name;
4217        List.iter (generate_test_command_call test_name)
4218          [["blockdev_setrw"; "/dev/sda"];
4219           ["umount_all"];
4220           ["lvm_remove_all"]]
4221    | InitBasicFS ->
4222        pr "  /* InitBasicFS for %s: create ext2 on /dev/sda1 */\n" test_name;
4223        List.iter (generate_test_command_call test_name)
4224          [["blockdev_setrw"; "/dev/sda"];
4225           ["umount_all"];
4226           ["lvm_remove_all"];
4227           ["sfdisk"; "/dev/sda"; "0"; "0"; "0"; ","];
4228           ["mkfs"; "ext2"; "/dev/sda1"];
4229           ["mount"; "/dev/sda1"; "/"]]
4230    | InitBasicFSonLVM ->
4231        pr "  /* InitBasicFSonLVM for %s: create ext2 on /dev/VG/LV */\n"
4232          test_name;
4233        List.iter (generate_test_command_call test_name)
4234          [["blockdev_setrw"; "/dev/sda"];
4235           ["umount_all"];
4236           ["lvm_remove_all"];
4237           ["sfdisk"; "/dev/sda"; "0"; "0"; "0"; ","];
4238           ["pvcreate"; "/dev/sda1"];
4239           ["vgcreate"; "VG"; "/dev/sda1"];
4240           ["lvcreate"; "LV"; "VG"; "8"];
4241           ["mkfs"; "ext2"; "/dev/VG/LV"];
4242           ["mount"; "/dev/VG/LV"; "/"]]
4243   );
4244
4245   let get_seq_last = function
4246     | [] ->
4247         failwithf "%s: you cannot use [] (empty list) when expecting a command"
4248           test_name
4249     | seq ->
4250         let seq = List.rev seq in
4251         List.rev (List.tl seq), List.hd seq
4252   in
4253
4254   match test with
4255   | TestRun seq ->
4256       pr "  /* TestRun for %s (%d) */\n" name i;
4257       List.iter (generate_test_command_call test_name) seq
4258   | TestOutput (seq, expected) ->
4259       pr "  /* TestOutput for %s (%d) */\n" name i;
4260       pr "  char expected[] = \"%s\";\n" (c_quote expected);
4261       let seq, last = get_seq_last seq in
4262       let test () =
4263         pr "    if (strcmp (r, expected) != 0) {\n";
4264         pr "      fprintf (stderr, \"%s: expected \\\"%%s\\\" but got \\\"%%s\\\"\\n\", expected, r);\n" test_name;
4265         pr "      return -1;\n";
4266         pr "    }\n"
4267       in
4268       List.iter (generate_test_command_call test_name) seq;
4269       generate_test_command_call ~test test_name last
4270   | TestOutputList (seq, expected) ->
4271       pr "  /* TestOutputList for %s (%d) */\n" name i;
4272       let seq, last = get_seq_last seq in
4273       let test () =
4274         iteri (
4275           fun i str ->
4276             pr "    if (!r[%d]) {\n" i;
4277             pr "      fprintf (stderr, \"%s: short list returned from command\\n\");\n" test_name;
4278             pr "      print_strings (r);\n";
4279             pr "      return -1;\n";
4280             pr "    }\n";
4281             pr "    {\n";
4282             pr "      char expected[] = \"%s\";\n" (c_quote str);
4283             pr "      if (strcmp (r[%d], expected) != 0) {\n" i;
4284             pr "        fprintf (stderr, \"%s: expected \\\"%%s\\\" but got \\\"%%s\\\"\\n\", expected, r[%d]);\n" test_name i;
4285             pr "        return -1;\n";
4286             pr "      }\n";
4287             pr "    }\n"
4288         ) expected;
4289         pr "    if (r[%d] != NULL) {\n" (List.length expected);
4290         pr "      fprintf (stderr, \"%s: extra elements returned from command\\n\");\n"
4291           test_name;
4292         pr "      print_strings (r);\n";
4293         pr "      return -1;\n";
4294         pr "    }\n"
4295       in
4296       List.iter (generate_test_command_call test_name) seq;
4297       generate_test_command_call ~test test_name last
4298   | TestOutputListOfDevices (seq, expected) ->
4299       pr "  /* TestOutputListOfDevices for %s (%d) */\n" name i;
4300       let seq, last = get_seq_last seq in
4301       let test () =
4302         iteri (
4303           fun i str ->
4304             pr "    if (!r[%d]) {\n" i;
4305             pr "      fprintf (stderr, \"%s: short list returned from command\\n\");\n" test_name;
4306             pr "      print_strings (r);\n";
4307             pr "      return -1;\n";
4308             pr "    }\n";
4309             pr "    {\n";
4310             pr "      char expected[] = \"%s\";\n" (c_quote str);
4311             pr "      r[%d][5] = 's';\n" i;
4312             pr "      if (strcmp (r[%d], expected) != 0) {\n" i;
4313             pr "        fprintf (stderr, \"%s: expected \\\"%%s\\\" but got \\\"%%s\\\"\\n\", expected, r[%d]);\n" test_name i;
4314             pr "        return -1;\n";
4315             pr "      }\n";
4316             pr "    }\n"
4317         ) expected;
4318         pr "    if (r[%d] != NULL) {\n" (List.length expected);
4319         pr "      fprintf (stderr, \"%s: extra elements returned from command\\n\");\n"
4320           test_name;
4321         pr "      print_strings (r);\n";
4322         pr "      return -1;\n";
4323         pr "    }\n"
4324       in
4325       List.iter (generate_test_command_call test_name) seq;
4326       generate_test_command_call ~test test_name last
4327   | TestOutputInt (seq, expected) ->
4328       pr "  /* TestOutputInt for %s (%d) */\n" name i;
4329       let seq, last = get_seq_last seq in
4330       let test () =
4331         pr "    if (r != %d) {\n" expected;
4332         pr "      fprintf (stderr, \"%s: expected %d but got %%d\\n\","
4333           test_name expected;
4334         pr "               (int) r);\n";
4335         pr "      return -1;\n";
4336         pr "    }\n"
4337       in
4338       List.iter (generate_test_command_call test_name) seq;
4339       generate_test_command_call ~test test_name last
4340   | TestOutputTrue seq ->
4341       pr "  /* TestOutputTrue for %s (%d) */\n" name i;
4342       let seq, last = get_seq_last seq in
4343       let test () =
4344         pr "    if (!r) {\n";
4345         pr "      fprintf (stderr, \"%s: expected true, got false\\n\");\n"
4346           test_name;
4347         pr "      return -1;\n";
4348         pr "    }\n"
4349       in
4350       List.iter (generate_test_command_call test_name) seq;
4351       generate_test_command_call ~test test_name last
4352   | TestOutputFalse seq ->
4353       pr "  /* TestOutputFalse for %s (%d) */\n" name i;
4354       let seq, last = get_seq_last seq in
4355       let test () =
4356         pr "    if (r) {\n";
4357         pr "      fprintf (stderr, \"%s: expected false, got true\\n\");\n"
4358           test_name;
4359         pr "      return -1;\n";
4360         pr "    }\n"
4361       in
4362       List.iter (generate_test_command_call test_name) seq;
4363       generate_test_command_call ~test test_name last
4364   | TestOutputLength (seq, expected) ->
4365       pr "  /* TestOutputLength for %s (%d) */\n" name i;
4366       let seq, last = get_seq_last seq in
4367       let test () =
4368         pr "    int j;\n";
4369         pr "    for (j = 0; j < %d; ++j)\n" expected;
4370         pr "      if (r[j] == NULL) {\n";
4371         pr "        fprintf (stderr, \"%s: short list returned\\n\");\n"
4372           test_name;
4373         pr "        print_strings (r);\n";
4374         pr "        return -1;\n";
4375         pr "      }\n";
4376         pr "    if (r[j] != NULL) {\n";
4377         pr "      fprintf (stderr, \"%s: long list returned\\n\");\n"
4378           test_name;
4379         pr "      print_strings (r);\n";
4380         pr "      return -1;\n";
4381         pr "    }\n"
4382       in
4383       List.iter (generate_test_command_call test_name) seq;
4384       generate_test_command_call ~test test_name last
4385   | TestOutputStruct (seq, checks) ->
4386       pr "  /* TestOutputStruct for %s (%d) */\n" name i;
4387       let seq, last = get_seq_last seq in
4388       let test () =
4389         List.iter (
4390           function
4391           | CompareWithInt (field, expected) ->
4392               pr "    if (r->%s != %d) {\n" field expected;
4393               pr "      fprintf (stderr, \"%s: %s was %%d, expected %d\\n\",\n"
4394                 test_name field expected;
4395               pr "               (int) r->%s);\n" field;
4396               pr "      return -1;\n";
4397               pr "    }\n"
4398           | CompareWithString (field, expected) ->
4399               pr "    if (strcmp (r->%s, \"%s\") != 0) {\n" field expected;
4400               pr "      fprintf (stderr, \"%s: %s was \"%%s\", expected \"%s\"\\n\",\n"
4401                 test_name field expected;
4402               pr "               r->%s);\n" field;
4403               pr "      return -1;\n";
4404               pr "    }\n"
4405           | CompareFieldsIntEq (field1, field2) ->
4406               pr "    if (r->%s != r->%s) {\n" field1 field2;
4407               pr "      fprintf (stderr, \"%s: %s (%%d) <> %s (%%d)\\n\",\n"
4408                 test_name field1 field2;
4409               pr "               (int) r->%s, (int) r->%s);\n" field1 field2;
4410               pr "      return -1;\n";
4411               pr "    }\n"
4412           | CompareFieldsStrEq (field1, field2) ->
4413               pr "    if (strcmp (r->%s, r->%s) != 0) {\n" field1 field2;
4414               pr "      fprintf (stderr, \"%s: %s (\"%%s\") <> %s (\"%%s\")\\n\",\n"
4415                 test_name field1 field2;
4416               pr "               r->%s, r->%s);\n" field1 field2;
4417               pr "      return -1;\n";
4418               pr "    }\n"
4419         ) checks
4420       in
4421       List.iter (generate_test_command_call test_name) seq;
4422       generate_test_command_call ~test test_name last
4423   | TestLastFail seq ->
4424       pr "  /* TestLastFail for %s (%d) */\n" name i;
4425       let seq, last = get_seq_last seq in
4426       List.iter (generate_test_command_call test_name) seq;
4427       generate_test_command_call test_name ~expect_error:true last
4428
4429 (* Generate the code to run a command, leaving the result in 'r'.
4430  * If you expect to get an error then you should set expect_error:true.
4431  *)
4432 and generate_test_command_call ?(expect_error = false) ?test test_name cmd =
4433   match cmd with
4434   | [] -> assert false
4435   | name :: args ->
4436       (* Look up the command to find out what args/ret it has. *)
4437       let style =
4438         try
4439           let _, style, _, _, _, _, _ =
4440             List.find (fun (n, _, _, _, _, _, _) -> n = name) all_functions in
4441           style
4442         with Not_found ->
4443           failwithf "%s: in test, command %s was not found" test_name name in
4444
4445       if List.length (snd style) <> List.length args then
4446         failwithf "%s: in test, wrong number of args given to %s"
4447           test_name name;
4448
4449       pr "  {\n";
4450
4451       List.iter (
4452         function
4453         | OptString n, "NULL" -> ()
4454         | String n, arg
4455         | OptString n, arg ->
4456             pr "    char %s[] = \"%s\";\n" n (c_quote arg);
4457         | Int _, _
4458         | Bool _, _
4459         | FileIn _, _ | FileOut _, _ -> ()
4460         | StringList n, arg ->
4461             let strs = string_split " " arg in
4462             iteri (
4463               fun i str ->
4464                 pr "    char %s_%d[] = \"%s\";\n" n i (c_quote str);
4465             ) strs;
4466             pr "    char *%s[] = {\n" n;
4467             iteri (
4468               fun i _ -> pr "      %s_%d,\n" n i
4469             ) strs;
4470             pr "      NULL\n";
4471             pr "    };\n";
4472       ) (List.combine (snd style) args);
4473
4474       let error_code =
4475         match fst style with
4476         | RErr | RInt _ | RBool _ -> pr "    int r;\n"; "-1"
4477         | RInt64 _ -> pr "    int64_t r;\n"; "-1"
4478         | RConstString _ -> pr "    const char *r;\n"; "NULL"
4479         | RString _ -> pr "    char *r;\n"; "NULL"
4480         | RStringList _ | RHashtable _ ->
4481             pr "    char **r;\n";
4482             pr "    int i;\n";
4483             "NULL"
4484         | RIntBool _ ->
4485             pr "    struct guestfs_int_bool *r;\n"; "NULL"
4486         | RPVList _ ->
4487             pr "    struct guestfs_lvm_pv_list *r;\n"; "NULL"
4488         | RVGList _ ->
4489             pr "    struct guestfs_lvm_vg_list *r;\n"; "NULL"
4490         | RLVList _ ->
4491             pr "    struct guestfs_lvm_lv_list *r;\n"; "NULL"
4492         | RStat _ ->
4493             pr "    struct guestfs_stat *r;\n"; "NULL"
4494         | RStatVFS _ ->
4495             pr "    struct guestfs_statvfs *r;\n"; "NULL" in
4496
4497       pr "    suppress_error = %d;\n" (if expect_error then 1 else 0);
4498       pr "    r = guestfs_%s (g" name;
4499
4500       (* Generate the parameters. *)
4501       List.iter (
4502         function
4503         | OptString _, "NULL" -> pr ", NULL"
4504         | String n, _
4505         | OptString n, _ ->
4506             pr ", %s" n
4507         | FileIn _, arg | FileOut _, arg ->
4508             pr ", \"%s\"" (c_quote arg)
4509         | StringList n, _ ->
4510             pr ", %s" n
4511         | Int _, arg ->
4512             let i =
4513               try int_of_string arg
4514               with Failure "int_of_string" ->
4515                 failwithf "%s: expecting an int, but got '%s'" test_name arg in
4516             pr ", %d" i
4517         | Bool _, arg ->
4518             let b = bool_of_string arg in pr ", %d" (if b then 1 else 0)
4519       ) (List.combine (snd style) args);
4520
4521       pr ");\n";
4522       if not expect_error then
4523         pr "    if (r == %s)\n" error_code
4524       else
4525         pr "    if (r != %s)\n" error_code;
4526       pr "      return -1;\n";
4527
4528       (* Insert the test code. *)
4529       (match test with
4530        | None -> ()
4531        | Some f -> f ()
4532       );
4533
4534       (match fst style with
4535        | RErr | RInt _ | RInt64 _ | RBool _ | RConstString _ -> ()
4536        | RString _ -> pr "    free (r);\n"
4537        | RStringList _ | RHashtable _ ->
4538            pr "    for (i = 0; r[i] != NULL; ++i)\n";
4539            pr "      free (r[i]);\n";
4540            pr "    free (r);\n"
4541        | RIntBool _ ->
4542            pr "    guestfs_free_int_bool (r);\n"
4543        | RPVList _ ->
4544            pr "    guestfs_free_lvm_pv_list (r);\n"
4545        | RVGList _ ->
4546            pr "    guestfs_free_lvm_vg_list (r);\n"
4547        | RLVList _ ->
4548            pr "    guestfs_free_lvm_lv_list (r);\n"
4549        | RStat _ | RStatVFS _ ->
4550            pr "    free (r);\n"
4551       );
4552
4553       pr "  }\n"
4554
4555 and c_quote str =
4556   let str = replace_str str "\r" "\\r" in
4557   let str = replace_str str "\n" "\\n" in
4558   let str = replace_str str "\t" "\\t" in
4559   let str = replace_str str "\000" "\\0" in
4560   str
4561
4562 (* Generate a lot of different functions for guestfish. *)
4563 and generate_fish_cmds () =
4564   generate_header CStyle GPLv2;
4565
4566   let all_functions =
4567     List.filter (
4568       fun (_, _, _, flags, _, _, _) -> not (List.mem NotInFish flags)
4569     ) all_functions in
4570   let all_functions_sorted =
4571     List.filter (
4572       fun (_, _, _, flags, _, _, _) -> not (List.mem NotInFish flags)
4573     ) all_functions_sorted in
4574
4575   pr "#include <stdio.h>\n";
4576   pr "#include <stdlib.h>\n";
4577   pr "#include <string.h>\n";
4578   pr "#include <inttypes.h>\n";
4579   pr "\n";
4580   pr "#include <guestfs.h>\n";
4581   pr "#include \"fish.h\"\n";
4582   pr "\n";
4583
4584   (* list_commands function, which implements guestfish -h *)
4585   pr "void list_commands (void)\n";
4586   pr "{\n";
4587   pr "  printf (\"    %%-16s     %%s\\n\", \"Command\", \"Description\");\n";
4588   pr "  list_builtin_commands ();\n";
4589   List.iter (
4590     fun (name, _, _, flags, _, shortdesc, _) ->
4591       let name = replace_char name '_' '-' in
4592       pr "  printf (\"%%-20s %%s\\n\", \"%s\", \"%s\");\n"
4593         name shortdesc
4594   ) all_functions_sorted;
4595   pr "  printf (\"    Use -h <cmd> / help <cmd> to show detailed help for a command.\\n\");\n";
4596   pr "}\n";
4597   pr "\n";
4598
4599   (* display_command function, which implements guestfish -h cmd *)
4600   pr "void display_command (const char *cmd)\n";
4601   pr "{\n";
4602   List.iter (
4603     fun (name, style, _, flags, _, shortdesc, longdesc) ->
4604       let name2 = replace_char name '_' '-' in
4605       let alias =
4606         try find_map (function FishAlias n -> Some n | _ -> None) flags
4607         with Not_found -> name in
4608       let longdesc = replace_str longdesc "C<guestfs_" "C<" in
4609       let synopsis =
4610         match snd style with
4611         | [] -> name2
4612         | args ->
4613             sprintf "%s <%s>"
4614               name2 (String.concat "> <" (List.map name_of_argt args)) in
4615
4616       let warnings =
4617         if List.mem ProtocolLimitWarning flags then
4618           ("\n\n" ^ protocol_limit_warning)
4619         else "" in
4620
4621       (* For DangerWillRobinson commands, we should probably have
4622        * guestfish prompt before allowing you to use them (especially
4623        * in interactive mode). XXX
4624        *)
4625       let warnings =
4626         warnings ^
4627           if List.mem DangerWillRobinson flags then
4628             ("\n\n" ^ danger_will_robinson)
4629           else "" in
4630
4631       let describe_alias =
4632         if name <> alias then
4633           sprintf "\n\nYou can use '%s' as an alias for this command." alias
4634         else "" in
4635
4636       pr "  if (";
4637       pr "strcasecmp (cmd, \"%s\") == 0" name;
4638       if name <> name2 then
4639         pr " || strcasecmp (cmd, \"%s\") == 0" name2;
4640       if name <> alias then
4641         pr " || strcasecmp (cmd, \"%s\") == 0" alias;
4642       pr ")\n";
4643       pr "    pod2text (\"%s - %s\", %S);\n"
4644         name2 shortdesc
4645         (" " ^ synopsis ^ "\n\n" ^ longdesc ^ warnings ^ describe_alias);
4646       pr "  else\n"
4647   ) all_functions;
4648   pr "    display_builtin_command (cmd);\n";
4649   pr "}\n";
4650   pr "\n";
4651
4652   (* print_{pv,vg,lv}_list functions *)
4653   List.iter (
4654     function
4655     | typ, cols ->
4656         pr "static void print_%s (struct guestfs_lvm_%s *%s)\n" typ typ typ;
4657         pr "{\n";
4658         pr "  int i;\n";
4659         pr "\n";
4660         List.iter (
4661           function
4662           | name, `String ->
4663               pr "  printf (\"%s: %%s\\n\", %s->%s);\n" name typ name
4664           | name, `UUID ->
4665               pr "  printf (\"%s: \");\n" name;
4666               pr "  for (i = 0; i < 32; ++i)\n";
4667               pr "    printf (\"%%c\", %s->%s[i]);\n" typ name;
4668               pr "  printf (\"\\n\");\n"
4669           | name, `Bytes ->
4670               pr "  printf (\"%s: %%\" PRIu64 \"\\n\", %s->%s);\n" name typ name
4671           | name, `Int ->
4672               pr "  printf (\"%s: %%\" PRIi64 \"\\n\", %s->%s);\n" name typ name
4673           | name, `OptPercent ->
4674               pr "  if (%s->%s >= 0) printf (\"%s: %%g %%%%\\n\", %s->%s);\n"
4675                 typ name name typ name;
4676               pr "  else printf (\"%s: \\n\");\n" name
4677         ) cols;
4678         pr "}\n";
4679         pr "\n";
4680         pr "static void print_%s_list (struct guestfs_lvm_%s_list *%ss)\n"
4681           typ typ typ;
4682         pr "{\n";
4683         pr "  int i;\n";
4684         pr "\n";
4685         pr "  for (i = 0; i < %ss->len; ++i)\n" typ;
4686         pr "    print_%s (&%ss->val[i]);\n" typ typ;
4687         pr "}\n";
4688         pr "\n";
4689   ) ["pv", pv_cols; "vg", vg_cols; "lv", lv_cols];
4690
4691   (* print_{stat,statvfs} functions *)
4692   List.iter (
4693     function
4694     | typ, cols ->
4695         pr "static void print_%s (struct guestfs_%s *%s)\n" typ typ typ;
4696         pr "{\n";
4697         List.iter (
4698           function
4699           | name, `Int ->
4700               pr "  printf (\"%s: %%\" PRIi64 \"\\n\", %s->%s);\n" name typ name
4701         ) cols;
4702         pr "}\n";
4703         pr "\n";
4704   ) ["stat", stat_cols; "statvfs", statvfs_cols];
4705
4706   (* run_<action> actions *)
4707   List.iter (
4708     fun (name, style, _, flags, _, _, _) ->
4709       pr "static int run_%s (const char *cmd, int argc, char *argv[])\n" name;
4710       pr "{\n";
4711       (match fst style with
4712        | RErr
4713        | RInt _
4714        | RBool _ -> pr "  int r;\n"
4715        | RInt64 _ -> pr "  int64_t r;\n"
4716        | RConstString _ -> pr "  const char *r;\n"
4717        | RString _ -> pr "  char *r;\n"
4718        | RStringList _ | RHashtable _ -> pr "  char **r;\n"
4719        | RIntBool _ -> pr "  struct guestfs_int_bool *r;\n"
4720        | RPVList _ -> pr "  struct guestfs_lvm_pv_list *r;\n"
4721        | RVGList _ -> pr "  struct guestfs_lvm_vg_list *r;\n"
4722        | RLVList _ -> pr "  struct guestfs_lvm_lv_list *r;\n"
4723        | RStat _ -> pr "  struct guestfs_stat *r;\n"
4724        | RStatVFS _ -> pr "  struct guestfs_statvfs *r;\n"
4725       );
4726       List.iter (
4727         function
4728         | String n
4729         | OptString n
4730         | FileIn n
4731         | FileOut n -> pr "  const char *%s;\n" n
4732         | StringList n -> pr "  char **%s;\n" n
4733         | Bool n -> pr "  int %s;\n" n
4734         | Int n -> pr "  int %s;\n" n
4735       ) (snd style);
4736
4737       (* Check and convert parameters. *)
4738       let argc_expected = List.length (snd style) in
4739       pr "  if (argc != %d) {\n" argc_expected;
4740       pr "    fprintf (stderr, \"%%s should have %d parameter(s)\\n\", cmd);\n"
4741         argc_expected;
4742       pr "    fprintf (stderr, \"type 'help %%s' for help on %%s\\n\", cmd, cmd);\n";
4743       pr "    return -1;\n";
4744       pr "  }\n";
4745       iteri (
4746         fun i ->
4747           function
4748           | String name -> pr "  %s = argv[%d];\n" name i
4749           | OptString name ->
4750               pr "  %s = strcmp (argv[%d], \"\") != 0 ? argv[%d] : NULL;\n"
4751                 name i i
4752           | FileIn name ->
4753               pr "  %s = strcmp (argv[%d], \"-\") != 0 ? argv[%d] : \"/dev/stdin\";\n"
4754                 name i i
4755           | FileOut name ->
4756               pr "  %s = strcmp (argv[%d], \"-\") != 0 ? argv[%d] : \"/dev/stdout\";\n"
4757                 name i i
4758           | StringList name ->
4759               pr "  %s = parse_string_list (argv[%d]);\n" name i
4760           | Bool name ->
4761               pr "  %s = is_true (argv[%d]) ? 1 : 0;\n" name i
4762           | Int name ->
4763               pr "  %s = atoi (argv[%d]);\n" name i
4764       ) (snd style);
4765
4766       (* Call C API function. *)
4767       let fn =
4768         try find_map (function FishAction n -> Some n | _ -> None) flags
4769         with Not_found -> sprintf "guestfs_%s" name in
4770       pr "  r = %s " fn;
4771       generate_call_args ~handle:"g" (snd style);
4772       pr ";\n";
4773
4774       (* Check return value for errors and display command results. *)
4775       (match fst style with
4776        | RErr -> pr "  return r;\n"
4777        | RInt _ ->
4778            pr "  if (r == -1) return -1;\n";
4779            pr "  printf (\"%%d\\n\", r);\n";
4780            pr "  return 0;\n"
4781        | RInt64 _ ->
4782            pr "  if (r == -1) return -1;\n";
4783            pr "  printf (\"%%\" PRIi64 \"\\n\", r);\n";
4784            pr "  return 0;\n"
4785        | RBool _ ->
4786            pr "  if (r == -1) return -1;\n";
4787            pr "  if (r) printf (\"true\\n\"); else printf (\"false\\n\");\n";
4788            pr "  return 0;\n"
4789        | RConstString _ ->
4790            pr "  if (r == NULL) return -1;\n";
4791            pr "  printf (\"%%s\\n\", r);\n";
4792            pr "  return 0;\n"
4793        | RString _ ->
4794            pr "  if (r == NULL) return -1;\n";
4795            pr "  printf (\"%%s\\n\", r);\n";
4796            pr "  free (r);\n";
4797            pr "  return 0;\n"
4798        | RStringList _ ->
4799            pr "  if (r == NULL) return -1;\n";
4800            pr "  print_strings (r);\n";
4801            pr "  free_strings (r);\n";
4802            pr "  return 0;\n"
4803        | RIntBool _ ->
4804            pr "  if (r == NULL) return -1;\n";
4805            pr "  printf (\"%%d, %%s\\n\", r->i,\n";
4806            pr "    r->b ? \"true\" : \"false\");\n";
4807            pr "  guestfs_free_int_bool (r);\n";
4808            pr "  return 0;\n"
4809        | RPVList _ ->
4810            pr "  if (r == NULL) return -1;\n";
4811            pr "  print_pv_list (r);\n";
4812            pr "  guestfs_free_lvm_pv_list (r);\n";
4813            pr "  return 0;\n"
4814        | RVGList _ ->
4815            pr "  if (r == NULL) return -1;\n";
4816            pr "  print_vg_list (r);\n";
4817            pr "  guestfs_free_lvm_vg_list (r);\n";
4818            pr "  return 0;\n"
4819        | RLVList _ ->
4820            pr "  if (r == NULL) return -1;\n";
4821            pr "  print_lv_list (r);\n";
4822            pr "  guestfs_free_lvm_lv_list (r);\n";
4823            pr "  return 0;\n"
4824        | RStat _ ->
4825            pr "  if (r == NULL) return -1;\n";
4826            pr "  print_stat (r);\n";
4827            pr "  free (r);\n";
4828            pr "  return 0;\n"
4829        | RStatVFS _ ->
4830            pr "  if (r == NULL) return -1;\n";
4831            pr "  print_statvfs (r);\n";
4832            pr "  free (r);\n";
4833            pr "  return 0;\n"
4834        | RHashtable _ ->
4835            pr "  if (r == NULL) return -1;\n";
4836            pr "  print_table (r);\n";
4837            pr "  free_strings (r);\n";
4838            pr "  return 0;\n"
4839       );
4840       pr "}\n";
4841       pr "\n"
4842   ) all_functions;
4843
4844   (* run_action function *)
4845   pr "int run_action (const char *cmd, int argc, char *argv[])\n";
4846   pr "{\n";
4847   List.iter (
4848     fun (name, _, _, flags, _, _, _) ->
4849       let name2 = replace_char name '_' '-' in
4850       let alias =
4851         try find_map (function FishAlias n -> Some n | _ -> None) flags
4852         with Not_found -> name in
4853       pr "  if (";
4854       pr "strcasecmp (cmd, \"%s\") == 0" name;
4855       if name <> name2 then
4856         pr " || strcasecmp (cmd, \"%s\") == 0" name2;
4857       if name <> alias then
4858         pr " || strcasecmp (cmd, \"%s\") == 0" alias;
4859       pr ")\n";
4860       pr "    return run_%s (cmd, argc, argv);\n" name;
4861       pr "  else\n";
4862   ) all_functions;
4863   pr "    {\n";
4864   pr "      fprintf (stderr, \"%%s: unknown command\\n\", cmd);\n";
4865   pr "      return -1;\n";
4866   pr "    }\n";
4867   pr "  return 0;\n";
4868   pr "}\n";
4869   pr "\n"
4870
4871 (* Readline completion for guestfish. *)
4872 and generate_fish_completion () =
4873   generate_header CStyle GPLv2;
4874
4875   let all_functions =
4876     List.filter (
4877       fun (_, _, _, flags, _, _, _) -> not (List.mem NotInFish flags)
4878     ) all_functions in
4879
4880   pr "\
4881 #include <config.h>
4882
4883 #include <stdio.h>
4884 #include <stdlib.h>
4885 #include <string.h>
4886
4887 #ifdef HAVE_LIBREADLINE
4888 #include <readline/readline.h>
4889 #endif
4890
4891 #include \"fish.h\"
4892
4893 #ifdef HAVE_LIBREADLINE
4894
4895 static const char *const commands[] = {
4896   BUILTIN_COMMANDS_FOR_COMPLETION,
4897 ";
4898
4899   (* Get the commands, including the aliases.  They don't need to be
4900    * sorted - the generator() function just does a dumb linear search.
4901    *)
4902   let commands =
4903     List.map (
4904       fun (name, _, _, flags, _, _, _) ->
4905         let name2 = replace_char name '_' '-' in
4906         let alias =
4907           try find_map (function FishAlias n -> Some n | _ -> None) flags
4908           with Not_found -> name in
4909
4910         if name <> alias then [name2; alias] else [name2]
4911     ) all_functions in
4912   let commands = List.flatten commands in
4913
4914   List.iter (pr "  \"%s\",\n") commands;
4915
4916   pr "  NULL
4917 };
4918
4919 static char *
4920 generator (const char *text, int state)
4921 {
4922   static int index, len;
4923   const char *name;
4924
4925   if (!state) {
4926     index = 0;
4927     len = strlen (text);
4928   }
4929
4930   rl_attempted_completion_over = 1;
4931
4932   while ((name = commands[index]) != NULL) {
4933     index++;
4934     if (strncasecmp (name, text, len) == 0)
4935       return strdup (name);
4936   }
4937
4938   return NULL;
4939 }
4940
4941 #endif /* HAVE_LIBREADLINE */
4942
4943 char **do_completion (const char *text, int start, int end)
4944 {
4945   char **matches = NULL;
4946
4947 #ifdef HAVE_LIBREADLINE
4948   rl_completion_append_character = ' ';
4949
4950   if (start == 0)
4951     matches = rl_completion_matches (text, generator);
4952   else if (complete_dest_paths)
4953     matches = rl_completion_matches (text, complete_dest_paths_generator);
4954 #endif
4955
4956   return matches;
4957 }
4958 ";
4959
4960 (* Generate the POD documentation for guestfish. *)
4961 and generate_fish_actions_pod () =
4962   let all_functions_sorted =
4963     List.filter (
4964       fun (_, _, _, flags, _, _, _) ->
4965         not (List.mem NotInFish flags || List.mem NotInDocs flags)
4966     ) all_functions_sorted in
4967
4968   let rex = Str.regexp "C<guestfs_\\([^>]+\\)>" in
4969
4970   List.iter (
4971     fun (name, style, _, flags, _, _, longdesc) ->
4972       let longdesc =
4973         Str.global_substitute rex (
4974           fun s ->
4975             let sub =
4976               try Str.matched_group 1 s
4977               with Not_found ->
4978                 failwithf "error substituting C<guestfs_...> in longdesc of function %s" name in
4979             "C<" ^ replace_char sub '_' '-' ^ ">"
4980         ) longdesc in
4981       let name = replace_char name '_' '-' in
4982       let alias =
4983         try find_map (function FishAlias n -> Some n | _ -> None) flags
4984         with Not_found -> name in
4985
4986       pr "=head2 %s" name;
4987       if name <> alias then
4988         pr " | %s" alias;
4989       pr "\n";
4990       pr "\n";
4991       pr " %s" name;
4992       List.iter (
4993         function
4994         | String n -> pr " %s" n
4995         | OptString n -> pr " %s" n
4996         | StringList n -> pr " '%s ...'" n
4997         | Bool _ -> pr " true|false"
4998         | Int n -> pr " %s" n
4999         | FileIn n | FileOut n -> pr " (%s|-)" n
5000       ) (snd style);
5001       pr "\n";
5002       pr "\n";
5003       pr "%s\n\n" longdesc;
5004
5005       if List.exists (function FileIn _ | FileOut _ -> true
5006                       | _ -> false) (snd style) then
5007         pr "Use C<-> instead of a filename to read/write from stdin/stdout.\n\n";
5008
5009       if List.mem ProtocolLimitWarning flags then
5010         pr "%s\n\n" protocol_limit_warning;
5011
5012       if List.mem DangerWillRobinson flags then
5013         pr "%s\n\n" danger_will_robinson
5014   ) all_functions_sorted
5015
5016 (* Generate a C function prototype. *)
5017 and generate_prototype ?(extern = true) ?(static = false) ?(semicolon = true)
5018     ?(single_line = false) ?(newline = false) ?(in_daemon = false)
5019     ?(prefix = "")
5020     ?handle name style =
5021   if extern then pr "extern ";
5022   if static then pr "static ";
5023   (match fst style with
5024    | RErr -> pr "int "
5025    | RInt _ -> pr "int "
5026    | RInt64 _ -> pr "int64_t "
5027    | RBool _ -> pr "int "
5028    | RConstString _ -> pr "const char *"
5029    | RString _ -> pr "char *"
5030    | RStringList _ | RHashtable _ -> pr "char **"
5031    | RIntBool _ ->
5032        if not in_daemon then pr "struct guestfs_int_bool *"
5033        else pr "guestfs_%s_ret *" name
5034    | RPVList _ ->
5035        if not in_daemon then pr "struct guestfs_lvm_pv_list *"
5036        else pr "guestfs_lvm_int_pv_list *"
5037    | RVGList _ ->
5038        if not in_daemon then pr "struct guestfs_lvm_vg_list *"
5039        else pr "guestfs_lvm_int_vg_list *"
5040    | RLVList _ ->
5041        if not in_daemon then pr "struct guestfs_lvm_lv_list *"
5042        else pr "guestfs_lvm_int_lv_list *"
5043    | RStat _ ->
5044        if not in_daemon then pr "struct guestfs_stat *"
5045        else pr "guestfs_int_stat *"
5046    | RStatVFS _ ->
5047        if not in_daemon then pr "struct guestfs_statvfs *"
5048        else pr "guestfs_int_statvfs *"
5049   );
5050   pr "%s%s (" prefix name;
5051   if handle = None && List.length (snd style) = 0 then
5052     pr "void"
5053   else (
5054     let comma = ref false in
5055     (match handle with
5056      | None -> ()
5057      | Some handle -> pr "guestfs_h *%s" handle; comma := true
5058     );
5059     let next () =
5060       if !comma then (
5061         if single_line then pr ", " else pr ",\n\t\t"
5062       );
5063       comma := true
5064     in
5065     List.iter (
5066       function
5067       | String n
5068       | OptString n ->
5069           next ();
5070           if not in_daemon then pr "const char *%s" n
5071           else pr "char *%s" n
5072       | StringList n ->
5073           next ();
5074           if not in_daemon then pr "char * const* const %s" n
5075           else pr "char **%s" n
5076       | Bool n -> next (); pr "int %s" n
5077       | Int n -> next (); pr "int %s" n
5078       | FileIn n
5079       | FileOut n ->
5080           if not in_daemon then (next (); pr "const char *%s" n)
5081     ) (snd style);
5082   );
5083   pr ")";
5084   if semicolon then pr ";";
5085   if newline then pr "\n"
5086
5087 (* Generate C call arguments, eg "(handle, foo, bar)" *)
5088 and generate_call_args ?handle args =
5089   pr "(";
5090   let comma = ref false in
5091   (match handle with
5092    | None -> ()
5093    | Some handle -> pr "%s" handle; comma := true
5094   );
5095   List.iter (
5096     fun arg ->
5097       if !comma then pr ", ";
5098       comma := true;
5099       pr "%s" (name_of_argt arg)
5100   ) args;
5101   pr ")"
5102
5103 (* Generate the OCaml bindings interface. *)
5104 and generate_ocaml_mli () =
5105   generate_header OCamlStyle LGPLv2;
5106
5107   pr "\
5108 (** For API documentation you should refer to the C API
5109     in the guestfs(3) manual page.  The OCaml API uses almost
5110     exactly the same calls. *)
5111
5112 type t
5113 (** A [guestfs_h] handle. *)
5114
5115 exception Error of string
5116 (** This exception is raised when there is an error. *)
5117
5118 val create : unit -> t
5119
5120 val close : t -> unit
5121 (** Handles are closed by the garbage collector when they become
5122     unreferenced, but callers can also call this in order to
5123     provide predictable cleanup. *)
5124
5125 ";
5126   generate_ocaml_lvm_structure_decls ();
5127
5128   generate_ocaml_stat_structure_decls ();
5129
5130   (* The actions. *)
5131   List.iter (
5132     fun (name, style, _, _, _, shortdesc, _) ->
5133       generate_ocaml_prototype name style;
5134       pr "(** %s *)\n" shortdesc;
5135       pr "\n"
5136   ) all_functions
5137
5138 (* Generate the OCaml bindings implementation. *)
5139 and generate_ocaml_ml () =
5140   generate_header OCamlStyle LGPLv2;
5141
5142   pr "\
5143 type t
5144 exception Error of string
5145 external create : unit -> t = \"ocaml_guestfs_create\"
5146 external close : t -> unit = \"ocaml_guestfs_close\"
5147
5148 let () =
5149   Callback.register_exception \"ocaml_guestfs_error\" (Error \"\")
5150
5151 ";
5152
5153   generate_ocaml_lvm_structure_decls ();
5154
5155   generate_ocaml_stat_structure_decls ();
5156
5157   (* The actions. *)
5158   List.iter (
5159     fun (name, style, _, _, _, shortdesc, _) ->
5160       generate_ocaml_prototype ~is_external:true name style;
5161   ) all_functions
5162
5163 (* Generate the OCaml bindings C implementation. *)
5164 and generate_ocaml_c () =
5165   generate_header CStyle LGPLv2;
5166
5167   pr "\
5168 #include <stdio.h>
5169 #include <stdlib.h>
5170 #include <string.h>
5171
5172 #include <caml/config.h>
5173 #include <caml/alloc.h>
5174 #include <caml/callback.h>
5175 #include <caml/fail.h>
5176 #include <caml/memory.h>
5177 #include <caml/mlvalues.h>
5178 #include <caml/signals.h>
5179
5180 #include <guestfs.h>
5181
5182 #include \"guestfs_c.h\"
5183
5184 /* Copy a hashtable of string pairs into an assoc-list.  We return
5185  * the list in reverse order, but hashtables aren't supposed to be
5186  * ordered anyway.
5187  */
5188 static CAMLprim value
5189 copy_table (char * const * argv)
5190 {
5191   CAMLparam0 ();
5192   CAMLlocal5 (rv, pairv, kv, vv, cons);
5193   int i;
5194
5195   rv = Val_int (0);
5196   for (i = 0; argv[i] != NULL; i += 2) {
5197     kv = caml_copy_string (argv[i]);
5198     vv = caml_copy_string (argv[i+1]);
5199     pairv = caml_alloc (2, 0);
5200     Store_field (pairv, 0, kv);
5201     Store_field (pairv, 1, vv);
5202     cons = caml_alloc (2, 0);
5203     Store_field (cons, 1, rv);
5204     rv = cons;
5205     Store_field (cons, 0, pairv);
5206   }
5207
5208   CAMLreturn (rv);
5209 }
5210
5211 ";
5212
5213   (* LVM struct copy functions. *)
5214   List.iter (
5215     fun (typ, cols) ->
5216       let has_optpercent_col =
5217         List.exists (function (_, `OptPercent) -> true | _ -> false) cols in
5218
5219       pr "static CAMLprim value\n";
5220       pr "copy_lvm_%s (const struct guestfs_lvm_%s *%s)\n" typ typ typ;
5221       pr "{\n";
5222       pr "  CAMLparam0 ();\n";
5223       if has_optpercent_col then
5224         pr "  CAMLlocal3 (rv, v, v2);\n"
5225       else
5226         pr "  CAMLlocal2 (rv, v);\n";
5227       pr "\n";
5228       pr "  rv = caml_alloc (%d, 0);\n" (List.length cols);
5229       iteri (
5230         fun i col ->
5231           (match col with
5232            | name, `String ->
5233                pr "  v = caml_copy_string (%s->%s);\n" typ name
5234            | name, `UUID ->
5235                pr "  v = caml_alloc_string (32);\n";
5236                pr "  memcpy (String_val (v), %s->%s, 32);\n" typ name
5237            | name, `Bytes
5238            | name, `Int ->
5239                pr "  v = caml_copy_int64 (%s->%s);\n" typ name
5240            | name, `OptPercent ->
5241                pr "  if (%s->%s >= 0) { /* Some %s */\n" typ name name;
5242                pr "    v2 = caml_copy_double (%s->%s);\n" typ name;
5243                pr "    v = caml_alloc (1, 0);\n";
5244                pr "    Store_field (v, 0, v2);\n";
5245                pr "  } else /* None */\n";
5246                pr "    v = Val_int (0);\n";
5247           );
5248           pr "  Store_field (rv, %d, v);\n" i
5249       ) cols;
5250       pr "  CAMLreturn (rv);\n";
5251       pr "}\n";
5252       pr "\n";
5253
5254       pr "static CAMLprim value\n";
5255       pr "copy_lvm_%s_list (const struct guestfs_lvm_%s_list *%ss)\n"
5256         typ typ typ;
5257       pr "{\n";
5258       pr "  CAMLparam0 ();\n";
5259       pr "  CAMLlocal2 (rv, v);\n";
5260       pr "  int i;\n";
5261       pr "\n";
5262       pr "  if (%ss->len == 0)\n" typ;
5263       pr "    CAMLreturn (Atom (0));\n";
5264       pr "  else {\n";
5265       pr "    rv = caml_alloc (%ss->len, 0);\n" typ;
5266       pr "    for (i = 0; i < %ss->len; ++i) {\n" typ;
5267       pr "      v = copy_lvm_%s (&%ss->val[i]);\n" typ typ;
5268       pr "      caml_modify (&Field (rv, i), v);\n";
5269       pr "    }\n";
5270       pr "    CAMLreturn (rv);\n";
5271       pr "  }\n";
5272       pr "}\n";
5273       pr "\n";
5274   ) ["pv", pv_cols; "vg", vg_cols; "lv", lv_cols];
5275
5276   (* Stat copy functions. *)
5277   List.iter (
5278     fun (typ, cols) ->
5279       pr "static CAMLprim value\n";
5280       pr "copy_%s (const struct guestfs_%s *%s)\n" typ typ typ;
5281       pr "{\n";
5282       pr "  CAMLparam0 ();\n";
5283       pr "  CAMLlocal2 (rv, v);\n";
5284       pr "\n";
5285       pr "  rv = caml_alloc (%d, 0);\n" (List.length cols);
5286       iteri (
5287         fun i col ->
5288           (match col with
5289            | name, `Int ->
5290                pr "  v = caml_copy_int64 (%s->%s);\n" typ name
5291           );
5292           pr "  Store_field (rv, %d, v);\n" i
5293       ) cols;
5294       pr "  CAMLreturn (rv);\n";
5295       pr "}\n";
5296       pr "\n";
5297   ) ["stat", stat_cols; "statvfs", statvfs_cols];
5298
5299   (* The wrappers. *)
5300   List.iter (
5301     fun (name, style, _, _, _, _, _) ->
5302       let params =
5303         "gv" :: List.map (fun arg -> name_of_argt arg ^ "v") (snd style) in
5304
5305       pr "CAMLprim value\n";
5306       pr "ocaml_guestfs_%s (value %s" name (List.hd params);
5307       List.iter (pr ", value %s") (List.tl params);
5308       pr ")\n";
5309       pr "{\n";
5310
5311       (match params with
5312        | [p1; p2; p3; p4; p5] ->
5313            pr "  CAMLparam5 (%s);\n" (String.concat ", " params)
5314        | p1 :: p2 :: p3 :: p4 :: p5 :: rest ->
5315            pr "  CAMLparam5 (%s);\n" (String.concat ", " [p1; p2; p3; p4; p5]);
5316            pr "  CAMLxparam%d (%s);\n"
5317              (List.length rest) (String.concat ", " rest)
5318        | ps ->
5319            pr "  CAMLparam%d (%s);\n" (List.length ps) (String.concat ", " ps)
5320       );
5321       pr "  CAMLlocal1 (rv);\n";
5322       pr "\n";
5323
5324       pr "  guestfs_h *g = Guestfs_val (gv);\n";
5325       pr "  if (g == NULL)\n";
5326       pr "    caml_failwith (\"%s: used handle after closing it\");\n" name;
5327       pr "\n";
5328
5329       List.iter (
5330         function
5331         | String n
5332         | FileIn n
5333         | FileOut n ->
5334             pr "  const char *%s = String_val (%sv);\n" n n
5335         | OptString n ->
5336             pr "  const char *%s =\n" n;
5337             pr "    %sv != Val_int (0) ? String_val (Field (%sv, 0)) : NULL;\n"
5338               n n
5339         | StringList n ->
5340             pr "  char **%s = ocaml_guestfs_strings_val (g, %sv);\n" n n
5341         | Bool n ->
5342             pr "  int %s = Bool_val (%sv);\n" n n
5343         | Int n ->
5344             pr "  int %s = Int_val (%sv);\n" n n
5345       ) (snd style);
5346       let error_code =
5347         match fst style with
5348         | RErr -> pr "  int r;\n"; "-1"
5349         | RInt _ -> pr "  int r;\n"; "-1"
5350         | RInt64 _ -> pr "  int64_t r;\n"; "-1"
5351         | RBool _ -> pr "  int r;\n"; "-1"
5352         | RConstString _ -> pr "  const char *r;\n"; "NULL"
5353         | RString _ -> pr "  char *r;\n"; "NULL"
5354         | RStringList _ ->
5355             pr "  int i;\n";
5356             pr "  char **r;\n";
5357             "NULL"
5358         | RIntBool _ ->
5359             pr "  struct guestfs_int_bool *r;\n"; "NULL"
5360         | RPVList _ ->
5361             pr "  struct guestfs_lvm_pv_list *r;\n"; "NULL"
5362         | RVGList _ ->
5363             pr "  struct guestfs_lvm_vg_list *r;\n"; "NULL"
5364         | RLVList _ ->
5365             pr "  struct guestfs_lvm_lv_list *r;\n"; "NULL"
5366         | RStat _ ->
5367             pr "  struct guestfs_stat *r;\n"; "NULL"
5368         | RStatVFS _ ->
5369             pr "  struct guestfs_statvfs *r;\n"; "NULL"
5370         | RHashtable _ ->
5371             pr "  int i;\n";
5372             pr "  char **r;\n";
5373             "NULL" in
5374       pr "\n";
5375
5376       pr "  caml_enter_blocking_section ();\n";
5377       pr "  r = guestfs_%s " name;
5378       generate_call_args ~handle:"g" (snd style);
5379       pr ";\n";
5380       pr "  caml_leave_blocking_section ();\n";
5381
5382       List.iter (
5383         function
5384         | StringList n ->
5385             pr "  ocaml_guestfs_free_strings (%s);\n" n;
5386         | String _ | OptString _ | Bool _ | Int _ | FileIn _ | FileOut _ -> ()
5387       ) (snd style);
5388
5389       pr "  if (r == %s)\n" error_code;
5390       pr "    ocaml_guestfs_raise_error (g, \"%s\");\n" name;
5391       pr "\n";
5392
5393       (match fst style with
5394        | RErr -> pr "  rv = Val_unit;\n"
5395        | RInt _ -> pr "  rv = Val_int (r);\n"
5396        | RInt64 _ ->
5397            pr "  rv = caml_copy_int64 (r);\n"
5398        | RBool _ -> pr "  rv = Val_bool (r);\n"
5399        | RConstString _ -> pr "  rv = caml_copy_string (r);\n"
5400        | RString _ ->
5401            pr "  rv = caml_copy_string (r);\n";
5402            pr "  free (r);\n"
5403        | RStringList _ ->
5404            pr "  rv = caml_copy_string_array ((const char **) r);\n";
5405            pr "  for (i = 0; r[i] != NULL; ++i) free (r[i]);\n";
5406            pr "  free (r);\n"
5407        | RIntBool _ ->
5408            pr "  rv = caml_alloc (2, 0);\n";
5409            pr "  Store_field (rv, 0, Val_int (r->i));\n";
5410            pr "  Store_field (rv, 1, Val_bool (r->b));\n";
5411            pr "  guestfs_free_int_bool (r);\n";
5412        | RPVList _ ->
5413            pr "  rv = copy_lvm_pv_list (r);\n";
5414            pr "  guestfs_free_lvm_pv_list (r);\n";
5415        | RVGList _ ->
5416            pr "  rv = copy_lvm_vg_list (r);\n";
5417            pr "  guestfs_free_lvm_vg_list (r);\n";
5418        | RLVList _ ->
5419            pr "  rv = copy_lvm_lv_list (r);\n";
5420            pr "  guestfs_free_lvm_lv_list (r);\n";
5421        | RStat _ ->
5422            pr "  rv = copy_stat (r);\n";
5423            pr "  free (r);\n";
5424        | RStatVFS _ ->
5425            pr "  rv = copy_statvfs (r);\n";
5426            pr "  free (r);\n";
5427        | RHashtable _ ->
5428            pr "  rv = copy_table (r);\n";
5429            pr "  for (i = 0; r[i] != NULL; ++i) free (r[i]);\n";
5430            pr "  free (r);\n";
5431       );
5432
5433       pr "  CAMLreturn (rv);\n";
5434       pr "}\n";
5435       pr "\n";
5436
5437       if List.length params > 5 then (
5438         pr "CAMLprim value\n";
5439         pr "ocaml_guestfs_%s_byte (value *argv, int argn)\n" name;
5440         pr "{\n";
5441         pr "  return ocaml_guestfs_%s (argv[0]" name;
5442         iteri (fun i _ -> pr ", argv[%d]" i) (List.tl params);
5443         pr ");\n";
5444         pr "}\n";
5445         pr "\n"
5446       )
5447   ) all_functions
5448
5449 and generate_ocaml_lvm_structure_decls () =
5450   List.iter (
5451     fun (typ, cols) ->
5452       pr "type lvm_%s = {\n" typ;
5453       List.iter (
5454         function
5455         | name, `String -> pr "  %s : string;\n" name
5456         | name, `UUID -> pr "  %s : string;\n" name
5457         | name, `Bytes -> pr "  %s : int64;\n" name
5458         | name, `Int -> pr "  %s : int64;\n" name
5459         | name, `OptPercent -> pr "  %s : float option;\n" name
5460       ) cols;
5461       pr "}\n";
5462       pr "\n"
5463   ) ["pv", pv_cols; "vg", vg_cols; "lv", lv_cols]
5464
5465 and generate_ocaml_stat_structure_decls () =
5466   List.iter (
5467     fun (typ, cols) ->
5468       pr "type %s = {\n" typ;
5469       List.iter (
5470         function
5471         | name, `Int -> pr "  %s : int64;\n" name
5472       ) cols;
5473       pr "}\n";
5474       pr "\n"
5475   ) ["stat", stat_cols; "statvfs", statvfs_cols]
5476
5477 and generate_ocaml_prototype ?(is_external = false) name style =
5478   if is_external then pr "external " else pr "val ";
5479   pr "%s : t -> " name;
5480   List.iter (
5481     function
5482     | String _ | FileIn _ | FileOut _ -> pr "string -> "
5483     | OptString _ -> pr "string option -> "
5484     | StringList _ -> pr "string array -> "
5485     | Bool _ -> pr "bool -> "
5486     | Int _ -> pr "int -> "
5487   ) (snd style);
5488   (match fst style with
5489    | RErr -> pr "unit" (* all errors are turned into exceptions *)
5490    | RInt _ -> pr "int"
5491    | RInt64 _ -> pr "int64"
5492    | RBool _ -> pr "bool"
5493    | RConstString _ -> pr "string"
5494    | RString _ -> pr "string"
5495    | RStringList _ -> pr "string array"
5496    | RIntBool _ -> pr "int * bool"
5497    | RPVList _ -> pr "lvm_pv array"
5498    | RVGList _ -> pr "lvm_vg array"
5499    | RLVList _ -> pr "lvm_lv array"
5500    | RStat _ -> pr "stat"
5501    | RStatVFS _ -> pr "statvfs"
5502    | RHashtable _ -> pr "(string * string) list"
5503   );
5504   if is_external then (
5505     pr " = ";
5506     if List.length (snd style) + 1 > 5 then
5507       pr "\"ocaml_guestfs_%s_byte\" " name;
5508     pr "\"ocaml_guestfs_%s\"" name
5509   );
5510   pr "\n"
5511
5512 (* Generate Perl xs code, a sort of crazy variation of C with macros. *)
5513 and generate_perl_xs () =
5514   generate_header CStyle LGPLv2;
5515
5516   pr "\
5517 #include \"EXTERN.h\"
5518 #include \"perl.h\"
5519 #include \"XSUB.h\"
5520
5521 #include <guestfs.h>
5522
5523 #ifndef PRId64
5524 #define PRId64 \"lld\"
5525 #endif
5526
5527 static SV *
5528 my_newSVll(long long val) {
5529 #ifdef USE_64_BIT_ALL
5530   return newSViv(val);
5531 #else
5532   char buf[100];
5533   int len;
5534   len = snprintf(buf, 100, \"%%\" PRId64, val);
5535   return newSVpv(buf, len);
5536 #endif
5537 }
5538
5539 #ifndef PRIu64
5540 #define PRIu64 \"llu\"
5541 #endif
5542
5543 static SV *
5544 my_newSVull(unsigned long long val) {
5545 #ifdef USE_64_BIT_ALL
5546   return newSVuv(val);
5547 #else
5548   char buf[100];
5549   int len;
5550   len = snprintf(buf, 100, \"%%\" PRIu64, val);
5551   return newSVpv(buf, len);
5552 #endif
5553 }
5554
5555 /* http://www.perlmonks.org/?node_id=680842 */
5556 static char **
5557 XS_unpack_charPtrPtr (SV *arg) {
5558   char **ret;
5559   AV *av;
5560   I32 i;
5561
5562   if (!arg || !SvOK (arg) || !SvROK (arg) || SvTYPE (SvRV (arg)) != SVt_PVAV)
5563     croak (\"array reference expected\");
5564
5565   av = (AV *)SvRV (arg);
5566   ret = malloc ((av_len (av) + 1 + 1) * sizeof (char *));
5567   if (!ret)
5568     croak (\"malloc failed\");
5569
5570   for (i = 0; i <= av_len (av); i++) {
5571     SV **elem = av_fetch (av, i, 0);
5572
5573     if (!elem || !*elem)
5574       croak (\"missing element in list\");
5575
5576     ret[i] = SvPV_nolen (*elem);
5577   }
5578
5579   ret[i] = NULL;
5580
5581   return ret;
5582 }
5583
5584 MODULE = Sys::Guestfs  PACKAGE = Sys::Guestfs
5585
5586 PROTOTYPES: ENABLE
5587
5588 guestfs_h *
5589 _create ()
5590    CODE:
5591       RETVAL = guestfs_create ();
5592       if (!RETVAL)
5593         croak (\"could not create guestfs handle\");
5594       guestfs_set_error_handler (RETVAL, NULL, NULL);
5595  OUTPUT:
5596       RETVAL
5597
5598 void
5599 DESTROY (g)
5600       guestfs_h *g;
5601  PPCODE:
5602       guestfs_close (g);
5603
5604 ";
5605
5606   List.iter (
5607     fun (name, style, _, _, _, _, _) ->
5608       (match fst style with
5609        | RErr -> pr "void\n"
5610        | RInt _ -> pr "SV *\n"
5611        | RInt64 _ -> pr "SV *\n"
5612        | RBool _ -> pr "SV *\n"
5613        | RConstString _ -> pr "SV *\n"
5614        | RString _ -> pr "SV *\n"
5615        | RStringList _
5616        | RIntBool _
5617        | RPVList _ | RVGList _ | RLVList _
5618        | RStat _ | RStatVFS _
5619        | RHashtable _ ->
5620            pr "void\n" (* all lists returned implictly on the stack *)
5621       );
5622       (* Call and arguments. *)
5623       pr "%s " name;
5624       generate_call_args ~handle:"g" (snd style);
5625       pr "\n";
5626       pr "      guestfs_h *g;\n";
5627       iteri (
5628         fun i ->
5629           function
5630           | String n | FileIn n | FileOut n -> pr "      char *%s;\n" n
5631           | OptString n ->
5632               (* http://www.perlmonks.org/?node_id=554277
5633                * Note that the implicit handle argument means we have
5634                * to add 1 to the ST(x) operator.
5635                *)
5636               pr "      char *%s = SvOK(ST(%d)) ? SvPV_nolen(ST(%d)) : NULL;\n" n (i+1) (i+1)
5637           | StringList n -> pr "      char **%s;\n" n
5638           | Bool n -> pr "      int %s;\n" n
5639           | Int n -> pr "      int %s;\n" n
5640       ) (snd style);
5641
5642       let do_cleanups () =
5643         List.iter (
5644           function
5645           | String _ | OptString _ | Bool _ | Int _
5646           | FileIn _ | FileOut _ -> ()
5647           | StringList n -> pr "      free (%s);\n" n
5648         ) (snd style)
5649       in
5650
5651       (* Code. *)
5652       (match fst style with
5653        | RErr ->
5654            pr "PREINIT:\n";
5655            pr "      int r;\n";
5656            pr " PPCODE:\n";
5657            pr "      r = guestfs_%s " name;
5658            generate_call_args ~handle:"g" (snd style);
5659            pr ";\n";
5660            do_cleanups ();
5661            pr "      if (r == -1)\n";
5662            pr "        croak (\"%s: %%s\", guestfs_last_error (g));\n" name;
5663        | RInt n
5664        | RBool n ->
5665            pr "PREINIT:\n";
5666            pr "      int %s;\n" n;
5667            pr "   CODE:\n";
5668            pr "      %s = guestfs_%s " n name;
5669            generate_call_args ~handle:"g" (snd style);
5670            pr ";\n";
5671            do_cleanups ();
5672            pr "      if (%s == -1)\n" n;
5673            pr "        croak (\"%s: %%s\", guestfs_last_error (g));\n" name;
5674            pr "      RETVAL = newSViv (%s);\n" n;
5675            pr " OUTPUT:\n";
5676            pr "      RETVAL\n"
5677        | RInt64 n ->
5678            pr "PREINIT:\n";
5679            pr "      int64_t %s;\n" n;
5680            pr "   CODE:\n";
5681            pr "      %s = guestfs_%s " n name;
5682            generate_call_args ~handle:"g" (snd style);
5683            pr ";\n";
5684            do_cleanups ();
5685            pr "      if (%s == -1)\n" n;
5686            pr "        croak (\"%s: %%s\", guestfs_last_error (g));\n" name;
5687            pr "      RETVAL = my_newSVll (%s);\n" n;
5688            pr " OUTPUT:\n";
5689            pr "      RETVAL\n"
5690        | RConstString n ->
5691            pr "PREINIT:\n";
5692            pr "      const char *%s;\n" n;
5693            pr "   CODE:\n";
5694            pr "      %s = guestfs_%s " n name;
5695            generate_call_args ~handle:"g" (snd style);
5696            pr ";\n";
5697            do_cleanups ();
5698            pr "      if (%s == NULL)\n" n;
5699            pr "        croak (\"%s: %%s\", guestfs_last_error (g));\n" name;
5700            pr "      RETVAL = newSVpv (%s, 0);\n" n;
5701            pr " OUTPUT:\n";
5702            pr "      RETVAL\n"
5703        | RString n ->
5704            pr "PREINIT:\n";
5705            pr "      char *%s;\n" n;
5706            pr "   CODE:\n";
5707            pr "      %s = guestfs_%s " n name;
5708            generate_call_args ~handle:"g" (snd style);
5709            pr ";\n";
5710            do_cleanups ();
5711            pr "      if (%s == NULL)\n" n;
5712            pr "        croak (\"%s: %%s\", guestfs_last_error (g));\n" name;
5713            pr "      RETVAL = newSVpv (%s, 0);\n" n;
5714            pr "      free (%s);\n" n;
5715            pr " OUTPUT:\n";
5716            pr "      RETVAL\n"
5717        | RStringList n | RHashtable n ->
5718            pr "PREINIT:\n";
5719            pr "      char **%s;\n" n;
5720            pr "      int i, n;\n";
5721            pr " PPCODE:\n";
5722            pr "      %s = guestfs_%s " n name;
5723            generate_call_args ~handle:"g" (snd style);
5724            pr ";\n";
5725            do_cleanups ();
5726            pr "      if (%s == NULL)\n" n;
5727            pr "        croak (\"%s: %%s\", guestfs_last_error (g));\n" name;
5728            pr "      for (n = 0; %s[n] != NULL; ++n) /**/;\n" n;
5729            pr "      EXTEND (SP, n);\n";
5730            pr "      for (i = 0; i < n; ++i) {\n";
5731            pr "        PUSHs (sv_2mortal (newSVpv (%s[i], 0)));\n" n;
5732            pr "        free (%s[i]);\n" n;
5733            pr "      }\n";
5734            pr "      free (%s);\n" n;
5735        | RIntBool _ ->
5736            pr "PREINIT:\n";
5737            pr "      struct guestfs_int_bool *r;\n";
5738            pr " PPCODE:\n";
5739            pr "      r = guestfs_%s " name;
5740            generate_call_args ~handle:"g" (snd style);
5741            pr ";\n";
5742            do_cleanups ();
5743            pr "      if (r == NULL)\n";
5744            pr "        croak (\"%s: %%s\", guestfs_last_error (g));\n" name;
5745            pr "      EXTEND (SP, 2);\n";
5746            pr "      PUSHs (sv_2mortal (newSViv (r->i)));\n";
5747            pr "      PUSHs (sv_2mortal (newSViv (r->b)));\n";
5748            pr "      guestfs_free_int_bool (r);\n";
5749        | RPVList n ->
5750            generate_perl_lvm_code "pv" pv_cols name style n do_cleanups
5751        | RVGList n ->
5752            generate_perl_lvm_code "vg" vg_cols name style n do_cleanups
5753        | RLVList n ->
5754            generate_perl_lvm_code "lv" lv_cols name style n do_cleanups
5755        | RStat n ->
5756            generate_perl_stat_code "stat" stat_cols name style n do_cleanups
5757        | RStatVFS n ->
5758            generate_perl_stat_code
5759              "statvfs" statvfs_cols name style n do_cleanups
5760       );
5761
5762       pr "\n"
5763   ) all_functions
5764
5765 and generate_perl_lvm_code typ cols name style n do_cleanups =
5766   pr "PREINIT:\n";
5767   pr "      struct guestfs_lvm_%s_list *%s;\n" typ n;
5768   pr "      int i;\n";
5769   pr "      HV *hv;\n";
5770   pr " PPCODE:\n";
5771   pr "      %s = guestfs_%s " n name;
5772   generate_call_args ~handle:"g" (snd style);
5773   pr ";\n";
5774   do_cleanups ();
5775   pr "      if (%s == NULL)\n" n;
5776   pr "        croak (\"%s: %%s\", guestfs_last_error (g));\n" name;
5777   pr "      EXTEND (SP, %s->len);\n" n;
5778   pr "      for (i = 0; i < %s->len; ++i) {\n" n;
5779   pr "        hv = newHV ();\n";
5780   List.iter (
5781     function
5782     | name, `String ->
5783         pr "        (void) hv_store (hv, \"%s\", %d, newSVpv (%s->val[i].%s, 0), 0);\n"
5784           name (String.length name) n name
5785     | name, `UUID ->
5786         pr "        (void) hv_store (hv, \"%s\", %d, newSVpv (%s->val[i].%s, 32), 0);\n"
5787           name (String.length name) n name
5788     | name, `Bytes ->
5789         pr "        (void) hv_store (hv, \"%s\", %d, my_newSVull (%s->val[i].%s), 0);\n"
5790           name (String.length name) n name
5791     | name, `Int ->
5792         pr "        (void) hv_store (hv, \"%s\", %d, my_newSVll (%s->val[i].%s), 0);\n"
5793           name (String.length name) n name
5794     | name, `OptPercent ->
5795         pr "        (void) hv_store (hv, \"%s\", %d, newSVnv (%s->val[i].%s), 0);\n"
5796           name (String.length name) n name
5797   ) cols;
5798   pr "        PUSHs (sv_2mortal ((SV *) hv));\n";
5799   pr "      }\n";
5800   pr "      guestfs_free_lvm_%s_list (%s);\n" typ n
5801
5802 and generate_perl_stat_code typ cols name style n do_cleanups =
5803   pr "PREINIT:\n";
5804   pr "      struct guestfs_%s *%s;\n" typ n;
5805   pr " PPCODE:\n";
5806   pr "      %s = guestfs_%s " n name;
5807   generate_call_args ~handle:"g" (snd style);
5808   pr ";\n";
5809   do_cleanups ();
5810   pr "      if (%s == NULL)\n" n;
5811   pr "        croak (\"%s: %%s\", guestfs_last_error (g));\n" name;
5812   pr "      EXTEND (SP, %d);\n" (List.length cols);
5813   List.iter (
5814     function
5815     | name, `Int ->
5816         pr "      PUSHs (sv_2mortal (my_newSVll (%s->%s)));\n" n name
5817   ) cols;
5818   pr "      free (%s);\n" n
5819
5820 (* Generate Sys/Guestfs.pm. *)
5821 and generate_perl_pm () =
5822   generate_header HashStyle LGPLv2;
5823
5824   pr "\
5825 =pod
5826
5827 =head1 NAME
5828
5829 Sys::Guestfs - Perl bindings for libguestfs
5830
5831 =head1 SYNOPSIS
5832
5833  use Sys::Guestfs;
5834  
5835  my $h = Sys::Guestfs->new ();
5836  $h->add_drive ('guest.img');
5837  $h->launch ();
5838  $h->wait_ready ();
5839  $h->mount ('/dev/sda1', '/');
5840  $h->touch ('/hello');
5841  $h->sync ();
5842
5843 =head1 DESCRIPTION
5844
5845 The C<Sys::Guestfs> module provides a Perl XS binding to the
5846 libguestfs API for examining and modifying virtual machine
5847 disk images.
5848
5849 Amongst the things this is good for: making batch configuration
5850 changes to guests, getting disk used/free statistics (see also:
5851 virt-df), migrating between virtualization systems (see also:
5852 virt-p2v), performing partial backups, performing partial guest
5853 clones, cloning guests and changing registry/UUID/hostname info, and
5854 much else besides.
5855
5856 Libguestfs uses Linux kernel and qemu code, and can access any type of
5857 guest filesystem that Linux and qemu can, including but not limited
5858 to: ext2/3/4, btrfs, FAT and NTFS, LVM, many different disk partition
5859 schemes, qcow, qcow2, vmdk.
5860
5861 Libguestfs provides ways to enumerate guest storage (eg. partitions,
5862 LVs, what filesystem is in each LV, etc.).  It can also run commands
5863 in the context of the guest.  Also you can access filesystems over FTP.
5864
5865 =head1 ERRORS
5866
5867 All errors turn into calls to C<croak> (see L<Carp(3)>).
5868
5869 =head1 METHODS
5870
5871 =over 4
5872
5873 =cut
5874
5875 package Sys::Guestfs;
5876
5877 use strict;
5878 use warnings;
5879
5880 require XSLoader;
5881 XSLoader::load ('Sys::Guestfs');
5882
5883 =item $h = Sys::Guestfs->new ();
5884
5885 Create a new guestfs handle.
5886
5887 =cut
5888
5889 sub new {
5890   my $proto = shift;
5891   my $class = ref ($proto) || $proto;
5892
5893   my $self = Sys::Guestfs::_create ();
5894   bless $self, $class;
5895   return $self;
5896 }
5897
5898 ";
5899
5900   (* Actions.  We only need to print documentation for these as
5901    * they are pulled in from the XS code automatically.
5902    *)
5903   List.iter (
5904     fun (name, style, _, flags, _, _, longdesc) ->
5905       if not (List.mem NotInDocs flags) then (
5906         let longdesc = replace_str longdesc "C<guestfs_" "C<$h-E<gt>" in
5907         pr "=item ";
5908         generate_perl_prototype name style;
5909         pr "\n\n";
5910         pr "%s\n\n" longdesc;
5911         if List.mem ProtocolLimitWarning flags then
5912           pr "%s\n\n" protocol_limit_warning;
5913         if List.mem DangerWillRobinson flags then
5914           pr "%s\n\n" danger_will_robinson
5915       )
5916   ) all_functions_sorted;
5917
5918   (* End of file. *)
5919   pr "\
5920 =cut
5921
5922 1;
5923
5924 =back
5925
5926 =head1 COPYRIGHT
5927
5928 Copyright (C) 2009 Red Hat Inc.
5929
5930 =head1 LICENSE
5931
5932 Please see the file COPYING.LIB for the full license.
5933
5934 =head1 SEE ALSO
5935
5936 L<guestfs(3)>, L<guestfish(1)>.
5937
5938 =cut
5939 "
5940
5941 and generate_perl_prototype name style =
5942   (match fst style with
5943    | RErr -> ()
5944    | RBool n
5945    | RInt n
5946    | RInt64 n
5947    | RConstString n
5948    | RString n -> pr "$%s = " n
5949    | RIntBool (n, m) -> pr "($%s, $%s) = " n m
5950    | RStringList n
5951    | RPVList n
5952    | RVGList n
5953    | RLVList n -> pr "@%s = " n
5954    | RStat n
5955    | RStatVFS n
5956    | RHashtable n -> pr "%%%s = " n
5957   );
5958   pr "$h->%s (" name;
5959   let comma = ref false in
5960   List.iter (
5961     fun arg ->
5962       if !comma then pr ", ";
5963       comma := true;
5964       match arg with
5965       | String n | OptString n | Bool n | Int n | FileIn n | FileOut n ->
5966           pr "$%s" n
5967       | StringList n ->
5968           pr "\\@%s" n
5969   ) (snd style);
5970   pr ");"
5971
5972 (* Generate Python C module. *)
5973 and generate_python_c () =
5974   generate_header CStyle LGPLv2;
5975
5976   pr "\
5977 #include <stdio.h>
5978 #include <stdlib.h>
5979 #include <assert.h>
5980
5981 #include <Python.h>
5982
5983 #include \"guestfs.h\"
5984
5985 typedef struct {
5986   PyObject_HEAD
5987   guestfs_h *g;
5988 } Pyguestfs_Object;
5989
5990 static guestfs_h *
5991 get_handle (PyObject *obj)
5992 {
5993   assert (obj);
5994   assert (obj != Py_None);
5995   return ((Pyguestfs_Object *) obj)->g;
5996 }
5997
5998 static PyObject *
5999 put_handle (guestfs_h *g)
6000 {
6001   assert (g);
6002   return
6003     PyCObject_FromVoidPtrAndDesc ((void *) g, (char *) \"guestfs_h\", NULL);
6004 }
6005
6006 /* This list should be freed (but not the strings) after use. */
6007 static const char **
6008 get_string_list (PyObject *obj)
6009 {
6010   int i, len;
6011   const char **r;
6012
6013   assert (obj);
6014
6015   if (!PyList_Check (obj)) {
6016     PyErr_SetString (PyExc_RuntimeError, \"expecting a list parameter\");
6017     return NULL;
6018   }
6019
6020   len = PyList_Size (obj);
6021   r = malloc (sizeof (char *) * (len+1));
6022   if (r == NULL) {
6023     PyErr_SetString (PyExc_RuntimeError, \"get_string_list: out of memory\");
6024     return NULL;
6025   }
6026
6027   for (i = 0; i < len; ++i)
6028     r[i] = PyString_AsString (PyList_GetItem (obj, i));
6029   r[len] = NULL;
6030
6031   return r;
6032 }
6033
6034 static PyObject *
6035 put_string_list (char * const * const argv)
6036 {
6037   PyObject *list;
6038   int argc, i;
6039
6040   for (argc = 0; argv[argc] != NULL; ++argc)
6041     ;
6042
6043   list = PyList_New (argc);
6044   for (i = 0; i < argc; ++i)
6045     PyList_SetItem (list, i, PyString_FromString (argv[i]));
6046
6047   return list;
6048 }
6049
6050 static PyObject *
6051 put_table (char * const * const argv)
6052 {
6053   PyObject *list, *item;
6054   int argc, i;
6055
6056   for (argc = 0; argv[argc] != NULL; ++argc)
6057     ;
6058
6059   list = PyList_New (argc >> 1);
6060   for (i = 0; i < argc; i += 2) {
6061     item = PyTuple_New (2);
6062     PyTuple_SetItem (item, 0, PyString_FromString (argv[i]));
6063     PyTuple_SetItem (item, 1, PyString_FromString (argv[i+1]));
6064     PyList_SetItem (list, i >> 1, item);
6065   }
6066
6067   return list;
6068 }
6069
6070 static void
6071 free_strings (char **argv)
6072 {
6073   int argc;
6074
6075   for (argc = 0; argv[argc] != NULL; ++argc)
6076     free (argv[argc]);
6077   free (argv);
6078 }
6079
6080 static PyObject *
6081 py_guestfs_create (PyObject *self, PyObject *args)
6082 {
6083   guestfs_h *g;
6084
6085   g = guestfs_create ();
6086   if (g == NULL) {
6087     PyErr_SetString (PyExc_RuntimeError,
6088                      \"guestfs.create: failed to allocate handle\");
6089     return NULL;
6090   }
6091   guestfs_set_error_handler (g, NULL, NULL);
6092   return put_handle (g);
6093 }
6094
6095 static PyObject *
6096 py_guestfs_close (PyObject *self, PyObject *args)
6097 {
6098   PyObject *py_g;
6099   guestfs_h *g;
6100
6101   if (!PyArg_ParseTuple (args, (char *) \"O:guestfs_close\", &py_g))
6102     return NULL;
6103   g = get_handle (py_g);
6104
6105   guestfs_close (g);
6106
6107   Py_INCREF (Py_None);
6108   return Py_None;
6109 }
6110
6111 ";
6112
6113   (* LVM structures, turned into Python dictionaries. *)
6114   List.iter (
6115     fun (typ, cols) ->
6116       pr "static PyObject *\n";
6117       pr "put_lvm_%s (struct guestfs_lvm_%s *%s)\n" typ typ typ;
6118       pr "{\n";
6119       pr "  PyObject *dict;\n";
6120       pr "\n";
6121       pr "  dict = PyDict_New ();\n";
6122       List.iter (
6123         function
6124         | name, `String ->
6125             pr "  PyDict_SetItemString (dict, \"%s\",\n" name;
6126             pr "                        PyString_FromString (%s->%s));\n"
6127               typ name
6128         | name, `UUID ->
6129             pr "  PyDict_SetItemString (dict, \"%s\",\n" name;
6130             pr "                        PyString_FromStringAndSize (%s->%s, 32));\n"
6131               typ name
6132         | name, `Bytes ->
6133             pr "  PyDict_SetItemString (dict, \"%s\",\n" name;
6134             pr "                        PyLong_FromUnsignedLongLong (%s->%s));\n"
6135               typ name
6136         | name, `Int ->
6137             pr "  PyDict_SetItemString (dict, \"%s\",\n" name;
6138             pr "                        PyLong_FromLongLong (%s->%s));\n"
6139               typ name
6140         | name, `OptPercent ->
6141             pr "  if (%s->%s >= 0)\n" typ name;
6142             pr "    PyDict_SetItemString (dict, \"%s\",\n" name;
6143             pr "                          PyFloat_FromDouble ((double) %s->%s));\n"
6144               typ name;
6145             pr "  else {\n";
6146             pr "    Py_INCREF (Py_None);\n";
6147             pr "    PyDict_SetItemString (dict, \"%s\", Py_None);" name;
6148             pr "  }\n"
6149       ) cols;
6150       pr "  return dict;\n";
6151       pr "};\n";
6152       pr "\n";
6153
6154       pr "static PyObject *\n";
6155       pr "put_lvm_%s_list (struct guestfs_lvm_%s_list *%ss)\n" typ typ typ;
6156       pr "{\n";
6157       pr "  PyObject *list;\n";
6158       pr "  int i;\n";
6159       pr "\n";
6160       pr "  list = PyList_New (%ss->len);\n" typ;
6161       pr "  for (i = 0; i < %ss->len; ++i)\n" typ;
6162       pr "    PyList_SetItem (list, i, put_lvm_%s (&%ss->val[i]));\n" typ typ;
6163       pr "  return list;\n";
6164       pr "};\n";
6165       pr "\n"
6166   ) ["pv", pv_cols; "vg", vg_cols; "lv", lv_cols];
6167
6168   (* Stat structures, turned into Python dictionaries. *)
6169   List.iter (
6170     fun (typ, cols) ->
6171       pr "static PyObject *\n";
6172       pr "put_%s (struct guestfs_%s *%s)\n" typ typ typ;
6173       pr "{\n";
6174       pr "  PyObject *dict;\n";
6175       pr "\n";
6176       pr "  dict = PyDict_New ();\n";
6177       List.iter (
6178         function
6179         | name, `Int ->
6180             pr "  PyDict_SetItemString (dict, \"%s\",\n" name;
6181             pr "                        PyLong_FromLongLong (%s->%s));\n"
6182               typ name
6183       ) cols;
6184       pr "  return dict;\n";
6185       pr "};\n";
6186       pr "\n";
6187   ) ["stat", stat_cols; "statvfs", statvfs_cols];
6188
6189   (* Python wrapper functions. *)
6190   List.iter (
6191     fun (name, style, _, _, _, _, _) ->
6192       pr "static PyObject *\n";
6193       pr "py_guestfs_%s (PyObject *self, PyObject *args)\n" name;
6194       pr "{\n";
6195
6196       pr "  PyObject *py_g;\n";
6197       pr "  guestfs_h *g;\n";
6198       pr "  PyObject *py_r;\n";
6199
6200       let error_code =
6201         match fst style with
6202         | RErr | RInt _ | RBool _ -> pr "  int r;\n"; "-1"
6203         | RInt64 _ -> pr "  int64_t r;\n"; "-1"
6204         | RConstString _ -> pr "  const char *r;\n"; "NULL"
6205         | RString _ -> pr "  char *r;\n"; "NULL"
6206         | RStringList _ | RHashtable _ -> pr "  char **r;\n"; "NULL"
6207         | RIntBool _ -> pr "  struct guestfs_int_bool *r;\n"; "NULL"
6208         | RPVList n -> pr "  struct guestfs_lvm_pv_list *r;\n"; "NULL"
6209         | RVGList n -> pr "  struct guestfs_lvm_vg_list *r;\n"; "NULL"
6210         | RLVList n -> pr "  struct guestfs_lvm_lv_list *r;\n"; "NULL"
6211         | RStat n -> pr "  struct guestfs_stat *r;\n"; "NULL"
6212         | RStatVFS n -> pr "  struct guestfs_statvfs *r;\n"; "NULL" in
6213
6214       List.iter (
6215         function
6216         | String n | FileIn n | FileOut n -> pr "  const char *%s;\n" n
6217         | OptString n -> pr "  const char *%s;\n" n
6218         | StringList n ->
6219             pr "  PyObject *py_%s;\n" n;
6220             pr "  const char **%s;\n" n
6221         | Bool n -> pr "  int %s;\n" n
6222         | Int n -> pr "  int %s;\n" n
6223       ) (snd style);
6224
6225       pr "\n";
6226
6227       (* Convert the parameters. *)
6228       pr "  if (!PyArg_ParseTuple (args, (char *) \"O";
6229       List.iter (
6230         function
6231         | String _ | FileIn _ | FileOut _ -> pr "s"
6232         | OptString _ -> pr "z"
6233         | StringList _ -> pr "O"
6234         | Bool _ -> pr "i" (* XXX Python has booleans? *)
6235         | Int _ -> pr "i"
6236       ) (snd style);
6237       pr ":guestfs_%s\",\n" name;
6238       pr "                         &py_g";
6239       List.iter (
6240         function
6241         | String n | FileIn n | FileOut n -> pr ", &%s" n
6242         | OptString n -> pr ", &%s" n
6243         | StringList n -> pr ", &py_%s" n
6244         | Bool n -> pr ", &%s" n
6245         | Int n -> pr ", &%s" n
6246       ) (snd style);
6247
6248       pr "))\n";
6249       pr "    return NULL;\n";
6250
6251       pr "  g = get_handle (py_g);\n";
6252       List.iter (
6253         function
6254         | String _ | FileIn _ | FileOut _ | OptString _ | Bool _ | Int _ -> ()
6255         | StringList n ->
6256             pr "  %s = get_string_list (py_%s);\n" n n;
6257             pr "  if (!%s) return NULL;\n" n
6258       ) (snd style);
6259
6260       pr "\n";
6261
6262       pr "  r = guestfs_%s " name;
6263       generate_call_args ~handle:"g" (snd style);
6264       pr ";\n";
6265
6266       List.iter (
6267         function
6268         | String _ | FileIn _ | FileOut _ | OptString _ | Bool _ | Int _ -> ()
6269         | StringList n ->
6270             pr "  free (%s);\n" n
6271       ) (snd style);
6272
6273       pr "  if (r == %s) {\n" error_code;
6274       pr "    PyErr_SetString (PyExc_RuntimeError, guestfs_last_error (g));\n";
6275       pr "    return NULL;\n";
6276       pr "  }\n";
6277       pr "\n";
6278
6279       (match fst style with
6280        | RErr ->
6281            pr "  Py_INCREF (Py_None);\n";
6282            pr "  py_r = Py_None;\n"
6283        | RInt _
6284        | RBool _ -> pr "  py_r = PyInt_FromLong ((long) r);\n"
6285        | RInt64 _ -> pr "  py_r = PyLong_FromLongLong (r);\n"
6286        | RConstString _ -> pr "  py_r = PyString_FromString (r);\n"
6287        | RString _ ->
6288            pr "  py_r = PyString_FromString (r);\n";
6289            pr "  free (r);\n"
6290        | RStringList _ ->
6291            pr "  py_r = put_string_list (r);\n";
6292            pr "  free_strings (r);\n"
6293        | RIntBool _ ->
6294            pr "  py_r = PyTuple_New (2);\n";
6295            pr "  PyTuple_SetItem (py_r, 0, PyInt_FromLong ((long) r->i));\n";
6296            pr "  PyTuple_SetItem (py_r, 1, PyInt_FromLong ((long) r->b));\n";
6297            pr "  guestfs_free_int_bool (r);\n"
6298        | RPVList n ->
6299            pr "  py_r = put_lvm_pv_list (r);\n";
6300            pr "  guestfs_free_lvm_pv_list (r);\n"
6301        | RVGList n ->
6302            pr "  py_r = put_lvm_vg_list (r);\n";
6303            pr "  guestfs_free_lvm_vg_list (r);\n"
6304        | RLVList n ->
6305            pr "  py_r = put_lvm_lv_list (r);\n";
6306            pr "  guestfs_free_lvm_lv_list (r);\n"
6307        | RStat n ->
6308            pr "  py_r = put_stat (r);\n";
6309            pr "  free (r);\n"
6310        | RStatVFS n ->
6311            pr "  py_r = put_statvfs (r);\n";
6312            pr "  free (r);\n"
6313        | RHashtable n ->
6314            pr "  py_r = put_table (r);\n";
6315            pr "  free_strings (r);\n"
6316       );
6317
6318       pr "  return py_r;\n";
6319       pr "}\n";
6320       pr "\n"
6321   ) all_functions;
6322
6323   (* Table of functions. *)
6324   pr "static PyMethodDef methods[] = {\n";
6325   pr "  { (char *) \"create\", py_guestfs_create, METH_VARARGS, NULL },\n";
6326   pr "  { (char *) \"close\", py_guestfs_close, METH_VARARGS, NULL },\n";
6327   List.iter (
6328     fun (name, _, _, _, _, _, _) ->
6329       pr "  { (char *) \"%s\", py_guestfs_%s, METH_VARARGS, NULL },\n"
6330         name name
6331   ) all_functions;
6332   pr "  { NULL, NULL, 0, NULL }\n";
6333   pr "};\n";
6334   pr "\n";
6335
6336   (* Init function. *)
6337   pr "\
6338 void
6339 initlibguestfsmod (void)
6340 {
6341   static int initialized = 0;
6342
6343   if (initialized) return;
6344   Py_InitModule ((char *) \"libguestfsmod\", methods);
6345   initialized = 1;
6346 }
6347 "
6348
6349 (* Generate Python module. *)
6350 and generate_python_py () =
6351   generate_header HashStyle LGPLv2;
6352
6353   pr "\
6354 u\"\"\"Python bindings for libguestfs
6355
6356 import guestfs
6357 g = guestfs.GuestFS ()
6358 g.add_drive (\"guest.img\")
6359 g.launch ()
6360 g.wait_ready ()
6361 parts = g.list_partitions ()
6362
6363 The guestfs module provides a Python binding to the libguestfs API
6364 for examining and modifying virtual machine disk images.
6365
6366 Amongst the things this is good for: making batch configuration
6367 changes to guests, getting disk used/free statistics (see also:
6368 virt-df), migrating between virtualization systems (see also:
6369 virt-p2v), performing partial backups, performing partial guest
6370 clones, cloning guests and changing registry/UUID/hostname info, and
6371 much else besides.
6372
6373 Libguestfs uses Linux kernel and qemu code, and can access any type of
6374 guest filesystem that Linux and qemu can, including but not limited
6375 to: ext2/3/4, btrfs, FAT and NTFS, LVM, many different disk partition
6376 schemes, qcow, qcow2, vmdk.
6377
6378 Libguestfs provides ways to enumerate guest storage (eg. partitions,
6379 LVs, what filesystem is in each LV, etc.).  It can also run commands
6380 in the context of the guest.  Also you can access filesystems over FTP.
6381
6382 Errors which happen while using the API are turned into Python
6383 RuntimeError exceptions.
6384
6385 To create a guestfs handle you usually have to perform the following
6386 sequence of calls:
6387
6388 # Create the handle, call add_drive at least once, and possibly
6389 # several times if the guest has multiple block devices:
6390 g = guestfs.GuestFS ()
6391 g.add_drive (\"guest.img\")
6392
6393 # Launch the qemu subprocess and wait for it to become ready:
6394 g.launch ()
6395 g.wait_ready ()
6396
6397 # Now you can issue commands, for example:
6398 logvols = g.lvs ()
6399
6400 \"\"\"
6401
6402 import libguestfsmod
6403
6404 class GuestFS:
6405     \"\"\"Instances of this class are libguestfs API handles.\"\"\"
6406
6407     def __init__ (self):
6408         \"\"\"Create a new libguestfs handle.\"\"\"
6409         self._o = libguestfsmod.create ()
6410
6411     def __del__ (self):
6412         libguestfsmod.close (self._o)
6413
6414 ";
6415
6416   List.iter (
6417     fun (name, style, _, flags, _, _, longdesc) ->
6418       pr "    def %s " name;
6419       generate_call_args ~handle:"self" (snd style);
6420       pr ":\n";
6421
6422       if not (List.mem NotInDocs flags) then (
6423         let doc = replace_str longdesc "C<guestfs_" "C<g." in
6424         let doc =
6425           match fst style with
6426           | RErr | RInt _ | RInt64 _ | RBool _ | RConstString _
6427           | RString _ -> doc
6428           | RStringList _ ->
6429               doc ^ "\n\nThis function returns a list of strings."
6430           | RIntBool _ ->
6431               doc ^ "\n\nThis function returns a tuple (int, bool).\n"
6432           | RPVList _ ->
6433               doc ^ "\n\nThis function returns a list of PVs.  Each PV is represented as a dictionary."
6434           | RVGList _ ->
6435               doc ^ "\n\nThis function returns a list of VGs.  Each VG is represented as a dictionary."
6436           | RLVList _ ->
6437               doc ^ "\n\nThis function returns a list of LVs.  Each LV is represented as a dictionary."
6438           | RStat _ ->
6439               doc ^ "\n\nThis function returns a dictionary, with keys matching the various fields in the stat structure."
6440           | RStatVFS _ ->
6441               doc ^ "\n\nThis function returns a dictionary, with keys matching the various fields in the statvfs structure."
6442           | RHashtable _ ->
6443               doc ^ "\n\nThis function returns a dictionary." in
6444         let doc =
6445           if List.mem ProtocolLimitWarning flags then
6446             doc ^ "\n\n" ^ protocol_limit_warning
6447           else doc in
6448         let doc =
6449           if List.mem DangerWillRobinson flags then
6450             doc ^ "\n\n" ^ danger_will_robinson
6451           else doc in
6452         let doc = pod2text ~width:60 name doc in
6453         let doc = List.map (fun line -> replace_str line "\\" "\\\\") doc in
6454         let doc = String.concat "\n        " doc in
6455         pr "        u\"\"\"%s\"\"\"\n" doc;
6456       );
6457       pr "        return libguestfsmod.%s " name;
6458       generate_call_args ~handle:"self._o" (snd style);
6459       pr "\n";
6460       pr "\n";
6461   ) all_functions
6462
6463 (* Useful if you need the longdesc POD text as plain text.  Returns a
6464  * list of lines.
6465  *
6466  * This is the slowest thing about autogeneration.
6467  *)
6468 and pod2text ~width name longdesc =
6469   let filename, chan = Filename.open_temp_file "gen" ".tmp" in
6470   fprintf chan "=head1 %s\n\n%s\n" name longdesc;
6471   close_out chan;
6472   let cmd = sprintf "pod2text -w %d %s" width (Filename.quote filename) in
6473   let chan = Unix.open_process_in cmd in
6474   let lines = ref [] in
6475   let rec loop i =
6476     let line = input_line chan in
6477     if i = 1 then               (* discard the first line of output *)
6478       loop (i+1)
6479     else (
6480       let line = triml line in
6481       lines := line :: !lines;
6482       loop (i+1)
6483     ) in
6484   let lines = try loop 1 with End_of_file -> List.rev !lines in
6485   Unix.unlink filename;
6486   match Unix.close_process_in chan with
6487   | Unix.WEXITED 0 -> lines
6488   | Unix.WEXITED i ->
6489       failwithf "pod2text: process exited with non-zero status (%d)" i
6490   | Unix.WSIGNALED i | Unix.WSTOPPED i ->
6491       failwithf "pod2text: process signalled or stopped by signal %d" i
6492
6493 (* Generate ruby bindings. *)
6494 and generate_ruby_c () =
6495   generate_header CStyle LGPLv2;
6496
6497   pr "\
6498 #include <stdio.h>
6499 #include <stdlib.h>
6500
6501 #include <ruby.h>
6502
6503 #include \"guestfs.h\"
6504
6505 #include \"extconf.h\"
6506
6507 /* For Ruby < 1.9 */
6508 #ifndef RARRAY_LEN
6509 #define RARRAY_LEN(r) (RARRAY((r))->len)
6510 #endif
6511
6512 static VALUE m_guestfs;                 /* guestfs module */
6513 static VALUE c_guestfs;                 /* guestfs_h handle */
6514 static VALUE e_Error;                   /* used for all errors */
6515
6516 static void ruby_guestfs_free (void *p)
6517 {
6518   if (!p) return;
6519   guestfs_close ((guestfs_h *) p);
6520 }
6521
6522 static VALUE ruby_guestfs_create (VALUE m)
6523 {
6524   guestfs_h *g;
6525
6526   g = guestfs_create ();
6527   if (!g)
6528     rb_raise (e_Error, \"failed to create guestfs handle\");
6529
6530   /* Don't print error messages to stderr by default. */
6531   guestfs_set_error_handler (g, NULL, NULL);
6532
6533   /* Wrap it, and make sure the close function is called when the
6534    * handle goes away.
6535    */
6536   return Data_Wrap_Struct (c_guestfs, NULL, ruby_guestfs_free, g);
6537 }
6538
6539 static VALUE ruby_guestfs_close (VALUE gv)
6540 {
6541   guestfs_h *g;
6542   Data_Get_Struct (gv, guestfs_h, g);
6543
6544   ruby_guestfs_free (g);
6545   DATA_PTR (gv) = NULL;
6546
6547   return Qnil;
6548 }
6549
6550 ";
6551
6552   List.iter (
6553     fun (name, style, _, _, _, _, _) ->
6554       pr "static VALUE ruby_guestfs_%s (VALUE gv" name;
6555       List.iter (fun arg -> pr ", VALUE %sv" (name_of_argt arg)) (snd style);
6556       pr ")\n";
6557       pr "{\n";
6558       pr "  guestfs_h *g;\n";
6559       pr "  Data_Get_Struct (gv, guestfs_h, g);\n";
6560       pr "  if (!g)\n";
6561       pr "    rb_raise (rb_eArgError, \"%%s: used handle after closing it\", \"%s\");\n"
6562         name;
6563       pr "\n";
6564
6565       List.iter (
6566         function
6567         | String n | FileIn n | FileOut n ->
6568             pr "  Check_Type (%sv, T_STRING);\n" n;
6569             pr "  const char *%s = StringValueCStr (%sv);\n" n n;
6570             pr "  if (!%s)\n" n;
6571             pr "    rb_raise (rb_eTypeError, \"expected string for parameter %%s of %%s\",\n";
6572             pr "              \"%s\", \"%s\");\n" n name
6573         | OptString n ->
6574             pr "  const char *%s = !NIL_P (%sv) ? StringValueCStr (%sv) : NULL;\n" n n n
6575         | StringList n ->
6576             pr "  char **%s;\n" n;
6577             pr "  Check_Type (%sv, T_ARRAY);\n" n;
6578             pr "  {\n";
6579             pr "    int i, len;\n";
6580             pr "    len = RARRAY_LEN (%sv);\n" n;
6581             pr "    %s = guestfs_safe_malloc (g, sizeof (char *) * (len+1));\n"
6582               n;
6583             pr "    for (i = 0; i < len; ++i) {\n";
6584             pr "      VALUE v = rb_ary_entry (%sv, i);\n" n;
6585             pr "      %s[i] = StringValueCStr (v);\n" n;
6586             pr "    }\n";
6587             pr "    %s[len] = NULL;\n" n;
6588             pr "  }\n";
6589         | Bool n ->
6590             pr "  int %s = RTEST (%sv);\n" n n
6591         | Int n ->
6592             pr "  int %s = NUM2INT (%sv);\n" n n
6593       ) (snd style);
6594       pr "\n";
6595
6596       let error_code =
6597         match fst style with
6598         | RErr | RInt _ | RBool _ -> pr "  int r;\n"; "-1"
6599         | RInt64 _ -> pr "  int64_t r;\n"; "-1"
6600         | RConstString _ -> pr "  const char *r;\n"; "NULL"
6601         | RString _ -> pr "  char *r;\n"; "NULL"
6602         | RStringList _ | RHashtable _ -> pr "  char **r;\n"; "NULL"
6603         | RIntBool _ -> pr "  struct guestfs_int_bool *r;\n"; "NULL"
6604         | RPVList n -> pr "  struct guestfs_lvm_pv_list *r;\n"; "NULL"
6605         | RVGList n -> pr "  struct guestfs_lvm_vg_list *r;\n"; "NULL"
6606         | RLVList n -> pr "  struct guestfs_lvm_lv_list *r;\n"; "NULL"
6607         | RStat n -> pr "  struct guestfs_stat *r;\n"; "NULL"
6608         | RStatVFS n -> pr "  struct guestfs_statvfs *r;\n"; "NULL" in
6609       pr "\n";
6610
6611       pr "  r = guestfs_%s " name;
6612       generate_call_args ~handle:"g" (snd style);
6613       pr ";\n";
6614
6615       List.iter (
6616         function
6617         | String _ | FileIn _ | FileOut _ | OptString _ | Bool _ | Int _ -> ()
6618         | StringList n ->
6619             pr "  free (%s);\n" n
6620       ) (snd style);
6621
6622       pr "  if (r == %s)\n" error_code;
6623       pr "    rb_raise (e_Error, \"%%s\", guestfs_last_error (g));\n";
6624       pr "\n";
6625
6626       (match fst style with
6627        | RErr ->
6628            pr "  return Qnil;\n"
6629        | RInt _ | RBool _ ->
6630            pr "  return INT2NUM (r);\n"
6631        | RInt64 _ ->
6632            pr "  return ULL2NUM (r);\n"
6633        | RConstString _ ->
6634            pr "  return rb_str_new2 (r);\n";
6635        | RString _ ->
6636            pr "  VALUE rv = rb_str_new2 (r);\n";
6637            pr "  free (r);\n";
6638            pr "  return rv;\n";
6639        | RStringList _ ->
6640            pr "  int i, len = 0;\n";
6641            pr "  for (i = 0; r[i] != NULL; ++i) len++;\n";
6642            pr "  VALUE rv = rb_ary_new2 (len);\n";
6643            pr "  for (i = 0; r[i] != NULL; ++i) {\n";
6644            pr "    rb_ary_push (rv, rb_str_new2 (r[i]));\n";
6645            pr "    free (r[i]);\n";
6646            pr "  }\n";
6647            pr "  free (r);\n";
6648            pr "  return rv;\n"
6649        | RIntBool _ ->
6650            pr "  VALUE rv = rb_ary_new2 (2);\n";
6651            pr "  rb_ary_push (rv, INT2NUM (r->i));\n";
6652            pr "  rb_ary_push (rv, INT2NUM (r->b));\n";
6653            pr "  guestfs_free_int_bool (r);\n";
6654            pr "  return rv;\n"
6655        | RPVList n ->
6656            generate_ruby_lvm_code "pv" pv_cols
6657        | RVGList n ->
6658            generate_ruby_lvm_code "vg" vg_cols
6659        | RLVList n ->
6660            generate_ruby_lvm_code "lv" lv_cols
6661        | RStat n ->
6662            pr "  VALUE rv = rb_hash_new ();\n";
6663            List.iter (
6664              function
6665              | name, `Int ->
6666                  pr "  rb_hash_aset (rv, rb_str_new2 (\"%s\"), ULL2NUM (r->%s));\n" name name
6667            ) stat_cols;
6668            pr "  free (r);\n";
6669            pr "  return rv;\n"
6670        | RStatVFS n ->
6671            pr "  VALUE rv = rb_hash_new ();\n";
6672            List.iter (
6673              function
6674              | name, `Int ->
6675                  pr "  rb_hash_aset (rv, rb_str_new2 (\"%s\"), ULL2NUM (r->%s));\n" name name
6676            ) statvfs_cols;
6677            pr "  free (r);\n";
6678            pr "  return rv;\n"
6679        | RHashtable _ ->
6680            pr "  VALUE rv = rb_hash_new ();\n";
6681            pr "  int i;\n";
6682            pr "  for (i = 0; r[i] != NULL; i+=2) {\n";
6683            pr "    rb_hash_aset (rv, rb_str_new2 (r[i]), rb_str_new2 (r[i+1]));\n";
6684            pr "    free (r[i]);\n";
6685            pr "    free (r[i+1]);\n";
6686            pr "  }\n";
6687            pr "  free (r);\n";
6688            pr "  return rv;\n"
6689       );
6690
6691       pr "}\n";
6692       pr "\n"
6693   ) all_functions;
6694
6695   pr "\
6696 /* Initialize the module. */
6697 void Init__guestfs ()
6698 {
6699   m_guestfs = rb_define_module (\"Guestfs\");
6700   c_guestfs = rb_define_class_under (m_guestfs, \"Guestfs\", rb_cObject);
6701   e_Error = rb_define_class_under (m_guestfs, \"Error\", rb_eStandardError);
6702
6703   rb_define_module_function (m_guestfs, \"create\", ruby_guestfs_create, 0);
6704   rb_define_method (c_guestfs, \"close\", ruby_guestfs_close, 0);
6705
6706 ";
6707   (* Define the rest of the methods. *)
6708   List.iter (
6709     fun (name, style, _, _, _, _, _) ->
6710       pr "  rb_define_method (c_guestfs, \"%s\",\n" name;
6711       pr "        ruby_guestfs_%s, %d);\n" name (List.length (snd style))
6712   ) all_functions;
6713
6714   pr "}\n"
6715
6716 (* Ruby code to return an LVM struct list. *)
6717 and generate_ruby_lvm_code typ cols =
6718   pr "  VALUE rv = rb_ary_new2 (r->len);\n";
6719   pr "  int i;\n";
6720   pr "  for (i = 0; i < r->len; ++i) {\n";
6721   pr "    VALUE hv = rb_hash_new ();\n";
6722   List.iter (
6723     function
6724     | name, `String ->
6725         pr "    rb_hash_aset (rv, rb_str_new2 (\"%s\"), rb_str_new2 (r->val[i].%s));\n" name name
6726     | name, `UUID ->
6727         pr "    rb_hash_aset (rv, rb_str_new2 (\"%s\"), rb_str_new (r->val[i].%s, 32));\n" name name
6728     | name, `Bytes
6729     | name, `Int ->
6730         pr "    rb_hash_aset (rv, rb_str_new2 (\"%s\"), ULL2NUM (r->val[i].%s));\n" name name
6731     | name, `OptPercent ->
6732         pr "    rb_hash_aset (rv, rb_str_new2 (\"%s\"), rb_dbl2big (r->val[i].%s));\n" name name
6733   ) cols;
6734   pr "    rb_ary_push (rv, hv);\n";
6735   pr "  }\n";
6736   pr "  guestfs_free_lvm_%s_list (r);\n" typ;
6737   pr "  return rv;\n"
6738
6739 (* Generate Java bindings GuestFS.java file. *)
6740 and generate_java_java () =
6741   generate_header CStyle LGPLv2;
6742
6743   pr "\
6744 package com.redhat.et.libguestfs;
6745
6746 import java.util.HashMap;
6747 import com.redhat.et.libguestfs.LibGuestFSException;
6748 import com.redhat.et.libguestfs.PV;
6749 import com.redhat.et.libguestfs.VG;
6750 import com.redhat.et.libguestfs.LV;
6751 import com.redhat.et.libguestfs.Stat;
6752 import com.redhat.et.libguestfs.StatVFS;
6753 import com.redhat.et.libguestfs.IntBool;
6754
6755 /**
6756  * The GuestFS object is a libguestfs handle.
6757  *
6758  * @author rjones
6759  */
6760 public class GuestFS {
6761   // Load the native code.
6762   static {
6763     System.loadLibrary (\"guestfs_jni\");
6764   }
6765
6766   /**
6767    * The native guestfs_h pointer.
6768    */
6769   long g;
6770
6771   /**
6772    * Create a libguestfs handle.
6773    *
6774    * @throws LibGuestFSException
6775    */
6776   public GuestFS () throws LibGuestFSException
6777   {
6778     g = _create ();
6779   }
6780   private native long _create () throws LibGuestFSException;
6781
6782   /**
6783    * Close a libguestfs handle.
6784    *
6785    * You can also leave handles to be collected by the garbage
6786    * collector, but this method ensures that the resources used
6787    * by the handle are freed up immediately.  If you call any
6788    * other methods after closing the handle, you will get an
6789    * exception.
6790    *
6791    * @throws LibGuestFSException
6792    */
6793   public void close () throws LibGuestFSException
6794   {
6795     if (g != 0)
6796       _close (g);
6797     g = 0;
6798   }
6799   private native void _close (long g) throws LibGuestFSException;
6800
6801   public void finalize () throws LibGuestFSException
6802   {
6803     close ();
6804   }
6805
6806 ";
6807
6808   List.iter (
6809     fun (name, style, _, flags, _, shortdesc, longdesc) ->
6810       if not (List.mem NotInDocs flags); then (
6811         let doc = replace_str longdesc "C<guestfs_" "C<g." in
6812         let doc =
6813           if List.mem ProtocolLimitWarning flags then
6814             doc ^ "\n\n" ^ protocol_limit_warning
6815           else doc in
6816         let doc =
6817           if List.mem DangerWillRobinson flags then
6818             doc ^ "\n\n" ^ danger_will_robinson
6819           else doc in
6820         let doc = pod2text ~width:60 name doc in
6821         let doc = List.map (            (* RHBZ#501883 *)
6822           function
6823           | "" -> "<p>"
6824           | nonempty -> nonempty
6825         ) doc in
6826         let doc = String.concat "\n   * " doc in
6827
6828         pr "  /**\n";
6829         pr "   * %s\n" shortdesc;
6830         pr "   * <p>\n";
6831         pr "   * %s\n" doc;
6832         pr "   * @throws LibGuestFSException\n";
6833         pr "   */\n";
6834         pr "  ";
6835       );
6836       generate_java_prototype ~public:true ~semicolon:false name style;
6837       pr "\n";
6838       pr "  {\n";
6839       pr "    if (g == 0)\n";
6840       pr "      throw new LibGuestFSException (\"%s: handle is closed\");\n"
6841         name;
6842       pr "    ";
6843       if fst style <> RErr then pr "return ";
6844       pr "_%s " name;
6845       generate_call_args ~handle:"g" (snd style);
6846       pr ";\n";
6847       pr "  }\n";
6848       pr "  ";
6849       generate_java_prototype ~privat:true ~native:true name style;
6850       pr "\n";
6851       pr "\n";
6852   ) all_functions;
6853
6854   pr "}\n"
6855
6856 and generate_java_prototype ?(public=false) ?(privat=false) ?(native=false)
6857     ?(semicolon=true) name style =
6858   if privat then pr "private ";
6859   if public then pr "public ";
6860   if native then pr "native ";
6861
6862   (* return type *)
6863   (match fst style with
6864    | RErr -> pr "void ";
6865    | RInt _ -> pr "int ";
6866    | RInt64 _ -> pr "long ";
6867    | RBool _ -> pr "boolean ";
6868    | RConstString _ | RString _ -> pr "String ";
6869    | RStringList _ -> pr "String[] ";
6870    | RIntBool _ -> pr "IntBool ";
6871    | RPVList _ -> pr "PV[] ";
6872    | RVGList _ -> pr "VG[] ";
6873    | RLVList _ -> pr "LV[] ";
6874    | RStat _ -> pr "Stat ";
6875    | RStatVFS _ -> pr "StatVFS ";
6876    | RHashtable _ -> pr "HashMap<String,String> ";
6877   );
6878
6879   if native then pr "_%s " name else pr "%s " name;
6880   pr "(";
6881   let needs_comma = ref false in
6882   if native then (
6883     pr "long g";
6884     needs_comma := true
6885   );
6886
6887   (* args *)
6888   List.iter (
6889     fun arg ->
6890       if !needs_comma then pr ", ";
6891       needs_comma := true;
6892
6893       match arg with
6894       | String n
6895       | OptString n
6896       | FileIn n
6897       | FileOut n ->
6898           pr "String %s" n
6899       | StringList n ->
6900           pr "String[] %s" n
6901       | Bool n ->
6902           pr "boolean %s" n
6903       | Int n ->
6904           pr "int %s" n
6905   ) (snd style);
6906
6907   pr ")\n";
6908   pr "    throws LibGuestFSException";
6909   if semicolon then pr ";"
6910
6911 and generate_java_struct typ cols =
6912   generate_header CStyle LGPLv2;
6913
6914   pr "\
6915 package com.redhat.et.libguestfs;
6916
6917 /**
6918  * Libguestfs %s structure.
6919  *
6920  * @author rjones
6921  * @see GuestFS
6922  */
6923 public class %s {
6924 " typ typ;
6925
6926   List.iter (
6927     function
6928     | name, `String
6929     | name, `UUID -> pr "  public String %s;\n" name
6930     | name, `Bytes
6931     | name, `Int -> pr "  public long %s;\n" name
6932     | name, `OptPercent ->
6933         pr "  /* The next field is [0..100] or -1 meaning 'not present': */\n";
6934         pr "  public float %s;\n" name
6935   ) cols;
6936
6937   pr "}\n"
6938
6939 and generate_java_c () =
6940   generate_header CStyle LGPLv2;
6941
6942   pr "\
6943 #include <stdio.h>
6944 #include <stdlib.h>
6945 #include <string.h>
6946
6947 #include \"com_redhat_et_libguestfs_GuestFS.h\"
6948 #include \"guestfs.h\"
6949
6950 /* Note that this function returns.  The exception is not thrown
6951  * until after the wrapper function returns.
6952  */
6953 static void
6954 throw_exception (JNIEnv *env, const char *msg)
6955 {
6956   jclass cl;
6957   cl = (*env)->FindClass (env,
6958                           \"com/redhat/et/libguestfs/LibGuestFSException\");
6959   (*env)->ThrowNew (env, cl, msg);
6960 }
6961
6962 JNIEXPORT jlong JNICALL
6963 Java_com_redhat_et_libguestfs_GuestFS__1create
6964   (JNIEnv *env, jobject obj)
6965 {
6966   guestfs_h *g;
6967
6968   g = guestfs_create ();
6969   if (g == NULL) {
6970     throw_exception (env, \"GuestFS.create: failed to allocate handle\");
6971     return 0;
6972   }
6973   guestfs_set_error_handler (g, NULL, NULL);
6974   return (jlong) (long) g;
6975 }
6976
6977 JNIEXPORT void JNICALL
6978 Java_com_redhat_et_libguestfs_GuestFS__1close
6979   (JNIEnv *env, jobject obj, jlong jg)
6980 {
6981   guestfs_h *g = (guestfs_h *) (long) jg;
6982   guestfs_close (g);
6983 }
6984
6985 ";
6986
6987   List.iter (
6988     fun (name, style, _, _, _, _, _) ->
6989       pr "JNIEXPORT ";
6990       (match fst style with
6991        | RErr -> pr "void ";
6992        | RInt _ -> pr "jint ";
6993        | RInt64 _ -> pr "jlong ";
6994        | RBool _ -> pr "jboolean ";
6995        | RConstString _ | RString _ -> pr "jstring ";
6996        | RIntBool _ | RStat _ | RStatVFS _ | RHashtable _ ->
6997            pr "jobject ";
6998        | RStringList _ | RPVList _ | RVGList _ | RLVList _ ->
6999            pr "jobjectArray ";
7000       );
7001       pr "JNICALL\n";
7002       pr "Java_com_redhat_et_libguestfs_GuestFS_";
7003       pr "%s" (replace_str ("_" ^ name) "_" "_1");
7004       pr "\n";
7005       pr "  (JNIEnv *env, jobject obj, jlong jg";
7006       List.iter (
7007         function
7008         | String n
7009         | OptString n
7010         | FileIn n
7011         | FileOut n ->
7012             pr ", jstring j%s" n
7013         | StringList n ->
7014             pr ", jobjectArray j%s" n
7015         | Bool n ->
7016             pr ", jboolean j%s" n
7017         | Int n ->
7018             pr ", jint j%s" n
7019       ) (snd style);
7020       pr ")\n";
7021       pr "{\n";
7022       pr "  guestfs_h *g = (guestfs_h *) (long) jg;\n";
7023       let error_code, no_ret =
7024         match fst style with
7025         | RErr -> pr "  int r;\n"; "-1", ""
7026         | RBool _
7027         | RInt _ -> pr "  int r;\n"; "-1", "0"
7028         | RInt64 _ -> pr "  int64_t r;\n"; "-1", "0"
7029         | RConstString _ -> pr "  const char *r;\n"; "NULL", "NULL"
7030         | RString _ ->
7031             pr "  jstring jr;\n";
7032             pr "  char *r;\n"; "NULL", "NULL"
7033         | RStringList _ ->
7034             pr "  jobjectArray jr;\n";
7035             pr "  int r_len;\n";
7036             pr "  jclass cl;\n";
7037             pr "  jstring jstr;\n";
7038             pr "  char **r;\n"; "NULL", "NULL"
7039         | RIntBool _ ->
7040             pr "  jobject jr;\n";
7041             pr "  jclass cl;\n";
7042             pr "  jfieldID fl;\n";
7043             pr "  struct guestfs_int_bool *r;\n"; "NULL", "NULL"
7044         | RStat _ ->
7045             pr "  jobject jr;\n";
7046             pr "  jclass cl;\n";
7047             pr "  jfieldID fl;\n";
7048             pr "  struct guestfs_stat *r;\n"; "NULL", "NULL"
7049         | RStatVFS _ ->
7050             pr "  jobject jr;\n";
7051             pr "  jclass cl;\n";
7052             pr "  jfieldID fl;\n";
7053             pr "  struct guestfs_statvfs *r;\n"; "NULL", "NULL"
7054         | RPVList _ ->
7055             pr "  jobjectArray jr;\n";
7056             pr "  jclass cl;\n";
7057             pr "  jfieldID fl;\n";
7058             pr "  jobject jfl;\n";
7059             pr "  struct guestfs_lvm_pv_list *r;\n"; "NULL", "NULL"
7060         | RVGList _ ->
7061             pr "  jobjectArray jr;\n";
7062             pr "  jclass cl;\n";
7063             pr "  jfieldID fl;\n";
7064             pr "  jobject jfl;\n";
7065             pr "  struct guestfs_lvm_vg_list *r;\n"; "NULL", "NULL"
7066         | RLVList _ ->
7067             pr "  jobjectArray jr;\n";
7068             pr "  jclass cl;\n";
7069             pr "  jfieldID fl;\n";
7070             pr "  jobject jfl;\n";
7071             pr "  struct guestfs_lvm_lv_list *r;\n"; "NULL", "NULL"
7072         | RHashtable _ -> pr "  char **r;\n"; "NULL", "NULL" in
7073       List.iter (
7074         function
7075         | String n
7076         | OptString n
7077         | FileIn n
7078         | FileOut n ->
7079             pr "  const char *%s;\n" n
7080         | StringList n ->
7081             pr "  int %s_len;\n" n;
7082             pr "  const char **%s;\n" n
7083         | Bool n
7084         | Int n ->
7085             pr "  int %s;\n" n
7086       ) (snd style);
7087
7088       let needs_i =
7089         (match fst style with
7090          | RStringList _ | RPVList _ | RVGList _ | RLVList _ -> true
7091          | RErr | RBool _ | RInt _ | RInt64 _ | RConstString _
7092          | RString _ | RIntBool _ | RStat _ | RStatVFS _
7093          | RHashtable _ -> false) ||
7094         List.exists (function StringList _ -> true | _ -> false) (snd style) in
7095       if needs_i then
7096         pr "  int i;\n";
7097
7098       pr "\n";
7099
7100       (* Get the parameters. *)
7101       List.iter (
7102         function
7103         | String n
7104         | FileIn n
7105         | FileOut n ->
7106             pr "  %s = (*env)->GetStringUTFChars (env, j%s, NULL);\n" n n
7107         | OptString n ->
7108             (* This is completely undocumented, but Java null becomes
7109              * a NULL parameter.
7110              *)
7111             pr "  %s = j%s ? (*env)->GetStringUTFChars (env, j%s, NULL) : NULL;\n" n n n
7112         | StringList n ->
7113             pr "  %s_len = (*env)->GetArrayLength (env, j%s);\n" n n;
7114             pr "  %s = guestfs_safe_malloc (g, sizeof (char *) * (%s_len+1));\n" n n;
7115             pr "  for (i = 0; i < %s_len; ++i) {\n" n;
7116             pr "    jobject o = (*env)->GetObjectArrayElement (env, j%s, i);\n"
7117               n;
7118             pr "    %s[i] = (*env)->GetStringUTFChars (env, o, NULL);\n" n;
7119             pr "  }\n";
7120             pr "  %s[%s_len] = NULL;\n" n n;
7121         | Bool n
7122         | Int n ->
7123             pr "  %s = j%s;\n" n n
7124       ) (snd style);
7125
7126       (* Make the call. *)
7127       pr "  r = guestfs_%s " name;
7128       generate_call_args ~handle:"g" (snd style);
7129       pr ";\n";
7130
7131       (* Release the parameters. *)
7132       List.iter (
7133         function
7134         | String n
7135         | FileIn n
7136         | FileOut n ->
7137             pr "  (*env)->ReleaseStringUTFChars (env, j%s, %s);\n" n n
7138         | OptString n ->
7139             pr "  if (j%s)\n" n;
7140             pr "    (*env)->ReleaseStringUTFChars (env, j%s, %s);\n" n n
7141         | StringList n ->
7142             pr "  for (i = 0; i < %s_len; ++i) {\n" n;
7143             pr "    jobject o = (*env)->GetObjectArrayElement (env, j%s, i);\n"
7144               n;
7145             pr "    (*env)->ReleaseStringUTFChars (env, o, %s[i]);\n" n;
7146             pr "  }\n";
7147             pr "  free (%s);\n" n
7148         | Bool n
7149         | Int n -> ()
7150       ) (snd style);
7151
7152       (* Check for errors. *)
7153       pr "  if (r == %s) {\n" error_code;
7154       pr "    throw_exception (env, guestfs_last_error (g));\n";
7155       pr "    return %s;\n" no_ret;
7156       pr "  }\n";
7157
7158       (* Return value. *)
7159       (match fst style with
7160        | RErr -> ()
7161        | RInt _ -> pr "  return (jint) r;\n"
7162        | RBool _ -> pr "  return (jboolean) r;\n"
7163        | RInt64 _ -> pr "  return (jlong) r;\n"
7164        | RConstString _ -> pr "  return (*env)->NewStringUTF (env, r);\n"
7165        | RString _ ->
7166            pr "  jr = (*env)->NewStringUTF (env, r);\n";
7167            pr "  free (r);\n";
7168            pr "  return jr;\n"
7169        | RStringList _ ->
7170            pr "  for (r_len = 0; r[r_len] != NULL; ++r_len) ;\n";
7171            pr "  cl = (*env)->FindClass (env, \"java/lang/String\");\n";
7172            pr "  jstr = (*env)->NewStringUTF (env, \"\");\n";
7173            pr "  jr = (*env)->NewObjectArray (env, r_len, cl, jstr);\n";
7174            pr "  for (i = 0; i < r_len; ++i) {\n";
7175            pr "    jstr = (*env)->NewStringUTF (env, r[i]);\n";
7176            pr "    (*env)->SetObjectArrayElement (env, jr, i, jstr);\n";
7177            pr "    free (r[i]);\n";
7178            pr "  }\n";
7179            pr "  free (r);\n";
7180            pr "  return jr;\n"
7181        | RIntBool _ ->
7182            pr "  cl = (*env)->FindClass (env, \"com/redhat/et/libguestfs/IntBool\");\n";
7183            pr "  jr = (*env)->AllocObject (env, cl);\n";
7184            pr "  fl = (*env)->GetFieldID (env, cl, \"i\", \"I\");\n";
7185            pr "  (*env)->SetIntField (env, jr, fl, r->i);\n";
7186            pr "  fl = (*env)->GetFieldID (env, cl, \"i\", \"Z\");\n";
7187            pr "  (*env)->SetBooleanField (env, jr, fl, r->b);\n";
7188            pr "  guestfs_free_int_bool (r);\n";
7189            pr "  return jr;\n"
7190        | RStat _ ->
7191            pr "  cl = (*env)->FindClass (env, \"com/redhat/et/libguestfs/Stat\");\n";
7192            pr "  jr = (*env)->AllocObject (env, cl);\n";
7193            List.iter (
7194              function
7195              | name, `Int ->
7196                  pr "  fl = (*env)->GetFieldID (env, cl, \"%s\", \"J\");\n"
7197                    name;
7198                  pr "  (*env)->SetLongField (env, jr, fl, r->%s);\n" name;
7199            ) stat_cols;
7200            pr "  free (r);\n";
7201            pr "  return jr;\n"
7202        | RStatVFS _ ->
7203            pr "  cl = (*env)->FindClass (env, \"com/redhat/et/libguestfs/StatVFS\");\n";
7204            pr "  jr = (*env)->AllocObject (env, cl);\n";
7205            List.iter (
7206              function
7207              | name, `Int ->
7208                  pr "  fl = (*env)->GetFieldID (env, cl, \"%s\", \"J\");\n"
7209                    name;
7210                  pr "  (*env)->SetLongField (env, jr, fl, r->%s);\n" name;
7211            ) statvfs_cols;
7212            pr "  free (r);\n";
7213            pr "  return jr;\n"
7214        | RPVList _ ->
7215            generate_java_lvm_return "pv" "PV" pv_cols
7216        | RVGList _ ->
7217            generate_java_lvm_return "vg" "VG" vg_cols
7218        | RLVList _ ->
7219            generate_java_lvm_return "lv" "LV" lv_cols
7220        | RHashtable _ ->
7221            (* XXX *)
7222            pr "  throw_exception (env, \"%s: internal error: please let us know how to make a Java HashMap from JNI bindings!\");\n" name;
7223            pr "  return NULL;\n"
7224       );
7225
7226       pr "}\n";
7227       pr "\n"
7228   ) all_functions
7229
7230 and generate_java_lvm_return typ jtyp cols =
7231   pr "  cl = (*env)->FindClass (env, \"com/redhat/et/libguestfs/%s\");\n" jtyp;
7232   pr "  jr = (*env)->NewObjectArray (env, r->len, cl, NULL);\n";
7233   pr "  for (i = 0; i < r->len; ++i) {\n";
7234   pr "    jfl = (*env)->AllocObject (env, cl);\n";
7235   List.iter (
7236     function
7237     | name, `String ->
7238         pr "    fl = (*env)->GetFieldID (env, cl, \"%s\", \"Ljava/lang/String;\");\n" name;
7239         pr "    (*env)->SetObjectField (env, jfl, fl, (*env)->NewStringUTF (env, r->val[i].%s));\n" name;
7240     | name, `UUID ->
7241         pr "    {\n";
7242         pr "      char s[33];\n";
7243         pr "      memcpy (s, r->val[i].%s, 32);\n" name;
7244         pr "      s[32] = 0;\n";
7245         pr "      fl = (*env)->GetFieldID (env, cl, \"%s\", \"Ljava/lang/String;\");\n" name;
7246         pr "      (*env)->SetObjectField (env, jfl, fl, (*env)->NewStringUTF (env, s));\n";
7247         pr "    }\n";
7248     | name, (`Bytes|`Int) ->
7249         pr "    fl = (*env)->GetFieldID (env, cl, \"%s\", \"J\");\n" name;
7250         pr "    (*env)->SetLongField (env, jfl, fl, r->val[i].%s);\n" name;
7251     | name, `OptPercent ->
7252         pr "    fl = (*env)->GetFieldID (env, cl, \"%s\", \"F\");\n" name;
7253         pr "    (*env)->SetFloatField (env, jfl, fl, r->val[i].%s);\n" name;
7254   ) cols;
7255   pr "    (*env)->SetObjectArrayElement (env, jfl, i, jfl);\n";
7256   pr "  }\n";
7257   pr "  guestfs_free_lvm_%s_list (r);\n" typ;
7258   pr "  return jr;\n"
7259
7260 and generate_haskell_hs () =
7261   generate_header HaskellStyle LGPLv2;
7262
7263   (* XXX We only know how to generate partial FFI for Haskell
7264    * at the moment.  Please help out!
7265    *)
7266   let can_generate style =
7267     match style with
7268     | RErr, _ -> true
7269     | RBool _, _
7270     | RInt _, _
7271     | RInt64 _, _
7272     | RConstString _, _
7273     | RString _, _
7274     | RStringList _, _
7275     | RIntBool _, _
7276     | RPVList _, _
7277     | RVGList _, _
7278     | RLVList _, _
7279     | RStat _, _
7280     | RStatVFS _, _
7281     | RHashtable _, _ -> false in
7282
7283   pr "\
7284 {-# INCLUDE <guestfs.h> #-}
7285 {-# LANGUAGE ForeignFunctionInterface #-}
7286
7287 module Guestfs (
7288   create";
7289
7290   (* List out the names of the actions we want to export. *)
7291   List.iter (
7292     fun (name, style, _, _, _, _, _) ->
7293       if can_generate style then pr ",\n  %s" name
7294   ) all_functions;
7295
7296   pr "
7297   ) where
7298 import Foreign
7299 import Foreign.C
7300 import Foreign.C.Types
7301 import IO
7302 import Control.Exception
7303 import Data.Typeable
7304
7305 data GuestfsS = GuestfsS            -- represents the opaque C struct
7306 type GuestfsP = Ptr GuestfsS        -- guestfs_h *
7307 type GuestfsH = ForeignPtr GuestfsS -- guestfs_h * with attached finalizer
7308
7309 -- XXX define properly later XXX
7310 data PV = PV
7311 data VG = VG
7312 data LV = LV
7313 data IntBool = IntBool
7314 data Stat = Stat
7315 data StatVFS = StatVFS
7316 data Hashtable = Hashtable
7317
7318 foreign import ccall unsafe \"guestfs_create\" c_create
7319   :: IO GuestfsP
7320 foreign import ccall unsafe \"&guestfs_close\" c_close
7321   :: FunPtr (GuestfsP -> IO ())
7322 foreign import ccall unsafe \"guestfs_set_error_handler\" c_set_error_handler
7323   :: GuestfsP -> Ptr CInt -> Ptr CInt -> IO ()
7324
7325 create :: IO GuestfsH
7326 create = do
7327   p <- c_create
7328   c_set_error_handler p nullPtr nullPtr
7329   h <- newForeignPtr c_close p
7330   return h
7331
7332 foreign import ccall unsafe \"guestfs_last_error\" c_last_error
7333   :: GuestfsP -> IO CString
7334
7335 -- last_error :: GuestfsH -> IO (Maybe String)
7336 -- last_error h = do
7337 --   str <- withForeignPtr h (\\p -> c_last_error p)
7338 --   maybePeek peekCString str
7339
7340 last_error :: GuestfsH -> IO (String)
7341 last_error h = do
7342   str <- withForeignPtr h (\\p -> c_last_error p)
7343   if (str == nullPtr)
7344     then return \"no error\"
7345     else peekCString str
7346
7347 ";
7348
7349   (* Generate wrappers for each foreign function. *)
7350   List.iter (
7351     fun (name, style, _, _, _, _, _) ->
7352       if can_generate style then (
7353         pr "foreign import ccall unsafe \"guestfs_%s\" c_%s\n" name name;
7354         pr "  :: ";
7355         generate_haskell_prototype ~handle:"GuestfsP" style;
7356         pr "\n";
7357         pr "\n";
7358         pr "%s :: " name;
7359         generate_haskell_prototype ~handle:"GuestfsH" ~hs:true style;
7360         pr "\n";
7361         pr "%s %s = do\n" name
7362           (String.concat " " ("h" :: List.map name_of_argt (snd style)));
7363         pr "  r <- ";
7364         (* Convert pointer arguments using with* functions. *)
7365         List.iter (
7366           function
7367           | FileIn n
7368           | FileOut n
7369           | String n -> pr "withCString %s $ \\%s -> " n n
7370           | OptString n -> pr "maybeWith withCString %s $ \\%s -> " n n
7371           | StringList n -> pr "withMany withCString %s $ \\%s -> withArray0 nullPtr %s $ \\%s -> " n n n n
7372           | Bool _ | Int _ -> ()
7373         ) (snd style);
7374         (* Convert integer arguments. *)
7375         let args =
7376           List.map (
7377             function
7378             | Bool n -> sprintf "(fromBool %s)" n
7379             | Int n -> sprintf "(fromIntegral %s)" n
7380             | FileIn n | FileOut n | String n | OptString n | StringList n -> n
7381           ) (snd style) in
7382         pr "withForeignPtr h (\\p -> c_%s %s)\n" name
7383           (String.concat " " ("p" :: args));
7384         (match fst style with
7385          | RErr | RInt _ | RInt64 _ | RBool _ ->
7386              pr "  if (r == -1)\n";
7387              pr "    then do\n";
7388              pr "      err <- last_error h\n";
7389              pr "      fail err\n";
7390          | RConstString _ | RString _ | RStringList _ | RIntBool _
7391          | RPVList _ | RVGList _ | RLVList _ | RStat _ | RStatVFS _
7392          | RHashtable _ ->
7393              pr "  if (r == nullPtr)\n";
7394              pr "    then do\n";
7395              pr "      err <- last_error h\n";
7396              pr "      fail err\n";
7397         );
7398         (match fst style with
7399          | RErr ->
7400              pr "    else return ()\n"
7401          | RInt _ ->
7402              pr "    else return (fromIntegral r)\n"
7403          | RInt64 _ ->
7404              pr "    else return (fromIntegral r)\n"
7405          | RBool _ ->
7406              pr "    else return (toBool r)\n"
7407          | RConstString _
7408          | RString _
7409          | RStringList _
7410          | RIntBool _
7411          | RPVList _
7412          | RVGList _
7413          | RLVList _
7414          | RStat _
7415          | RStatVFS _
7416          | RHashtable _ ->
7417              pr "    else return ()\n" (* XXXXXXXXXXXXXXXXXXXX *)
7418         );
7419         pr "\n";
7420       )
7421   ) all_functions
7422
7423 and generate_haskell_prototype ~handle ?(hs = false) style =
7424   pr "%s -> " handle;
7425   let string = if hs then "String" else "CString" in
7426   let int = if hs then "Int" else "CInt" in
7427   let bool = if hs then "Bool" else "CInt" in
7428   let int64 = if hs then "Integer" else "Int64" in
7429   List.iter (
7430     fun arg ->
7431       (match arg with
7432        | String _ -> pr "%s" string
7433        | OptString _ -> if hs then pr "Maybe String" else pr "CString"
7434        | StringList _ -> if hs then pr "[String]" else pr "Ptr CString"
7435        | Bool _ -> pr "%s" bool
7436        | Int _ -> pr "%s" int
7437        | FileIn _ -> pr "%s" string
7438        | FileOut _ -> pr "%s" string
7439       );
7440       pr " -> ";
7441   ) (snd style);
7442   pr "IO (";
7443   (match fst style with
7444    | RErr -> if not hs then pr "CInt"
7445    | RInt _ -> pr "%s" int
7446    | RInt64 _ -> pr "%s" int64
7447    | RBool _ -> pr "%s" bool
7448    | RConstString _ -> pr "%s" string
7449    | RString _ -> pr "%s" string
7450    | RStringList _ -> pr "[%s]" string
7451    | RIntBool _ -> pr "IntBool"
7452    | RPVList _ -> pr "[PV]"
7453    | RVGList _ -> pr "[VG]"
7454    | RLVList _ -> pr "[LV]"
7455    | RStat _ -> pr "Stat"
7456    | RStatVFS _ -> pr "StatVFS"
7457    | RHashtable _ -> pr "Hashtable"
7458   );
7459   pr ")"
7460
7461 and generate_bindtests () =
7462   generate_header CStyle LGPLv2;
7463
7464   pr "\
7465 #include <stdio.h>
7466 #include <stdlib.h>
7467 #include <inttypes.h>
7468 #include <string.h>
7469
7470 #include \"guestfs.h\"
7471 #include \"guestfs_protocol.h\"
7472
7473 #define error guestfs_error
7474
7475 static void
7476 print_strings (char * const* const argv)
7477 {
7478   int argc;
7479
7480   printf (\"[\");
7481   for (argc = 0; argv[argc] != NULL; ++argc) {
7482     if (argc > 0) printf (\", \");
7483     printf (\"\\\"%%s\\\"\", argv[argc]);
7484   }
7485   printf (\"]\\n\");
7486 }
7487
7488 /* The test0 function prints its parameters to stdout. */
7489 ";
7490
7491   let test0, tests =
7492     match test_functions with
7493     | [] -> assert false
7494     | test0 :: tests -> test0, tests in
7495
7496   let () =
7497     let (name, style, _, _, _, _, _) = test0 in
7498     generate_prototype ~extern:false ~semicolon:false ~newline:true
7499       ~handle:"g" ~prefix:"guestfs_" name style;
7500     pr "{\n";
7501     List.iter (
7502       function
7503       | String n
7504       | FileIn n
7505       | FileOut n -> pr "  printf (\"%%s\\n\", %s);\n" n
7506       | OptString n -> pr "  printf (\"%%s\\n\", %s ? %s : \"null\");\n" n n
7507       | StringList n -> pr "  print_strings (%s);\n" n
7508       | Bool n -> pr "  printf (\"%%s\\n\", %s ? \"true\" : \"false\");\n" n
7509       | Int n -> pr "  printf (\"%%d\\n\", %s);\n" n
7510     ) (snd style);
7511     pr "  /* Java changes stdout line buffering so we need this: */\n";
7512     pr "  fflush (stdout);\n";
7513     pr "  return 0;\n";
7514     pr "}\n";
7515     pr "\n" in
7516
7517   List.iter (
7518     fun (name, style, _, _, _, _, _) ->
7519       if String.sub name (String.length name - 3) 3 <> "err" then (
7520         pr "/* Test normal return. */\n";
7521         generate_prototype ~extern:false ~semicolon:false ~newline:true
7522           ~handle:"g" ~prefix:"guestfs_" name style;
7523         pr "{\n";
7524         (match fst style with
7525          | RErr ->
7526              pr "  return 0;\n"
7527          | RInt _ ->
7528              pr "  int r;\n";
7529              pr "  sscanf (val, \"%%d\", &r);\n";
7530              pr "  return r;\n"
7531          | RInt64 _ ->
7532              pr "  int64_t r;\n";
7533              pr "  sscanf (val, \"%%\" SCNi64, &r);\n";
7534              pr "  return r;\n"
7535          | RBool _ ->
7536              pr "  return strcmp (val, \"true\") == 0;\n"
7537          | RConstString _ ->
7538              (* Can't return the input string here.  Return a static
7539               * string so we ensure we get a segfault if the caller
7540               * tries to free it.
7541               *)
7542              pr "  return \"static string\";\n"
7543          | RString _ ->
7544              pr "  return strdup (val);\n"
7545          | RStringList _ ->
7546              pr "  char **strs;\n";
7547              pr "  int n, i;\n";
7548              pr "  sscanf (val, \"%%d\", &n);\n";
7549              pr "  strs = malloc ((n+1) * sizeof (char *));\n";
7550              pr "  for (i = 0; i < n; ++i) {\n";
7551              pr "    strs[i] = malloc (16);\n";
7552              pr "    snprintf (strs[i], 16, \"%%d\", i);\n";
7553              pr "  }\n";
7554              pr "  strs[n] = NULL;\n";
7555              pr "  return strs;\n"
7556          | RIntBool _ ->
7557              pr "  struct guestfs_int_bool *r;\n";
7558              pr "  r = malloc (sizeof (struct guestfs_int_bool));\n";
7559              pr "  sscanf (val, \"%%\" SCNi32, &r->i);\n";
7560              pr "  r->b = 0;\n";
7561              pr "  return r;\n"
7562          | RPVList _ ->
7563              pr "  struct guestfs_lvm_pv_list *r;\n";
7564              pr "  int i;\n";
7565              pr "  r = malloc (sizeof (struct guestfs_lvm_pv_list));\n";
7566              pr "  sscanf (val, \"%%d\", &r->len);\n";
7567              pr "  r->val = calloc (r->len, sizeof (struct guestfs_lvm_pv));\n";
7568              pr "  for (i = 0; i < r->len; ++i) {\n";
7569              pr "    r->val[i].pv_name = malloc (16);\n";
7570              pr "    snprintf (r->val[i].pv_name, 16, \"%%d\", i);\n";
7571              pr "  }\n";
7572              pr "  return r;\n"
7573          | RVGList _ ->
7574              pr "  struct guestfs_lvm_vg_list *r;\n";
7575              pr "  int i;\n";
7576              pr "  r = malloc (sizeof (struct guestfs_lvm_vg_list));\n";
7577              pr "  sscanf (val, \"%%d\", &r->len);\n";
7578              pr "  r->val = calloc (r->len, sizeof (struct guestfs_lvm_vg));\n";
7579              pr "  for (i = 0; i < r->len; ++i) {\n";
7580              pr "    r->val[i].vg_name = malloc (16);\n";
7581              pr "    snprintf (r->val[i].vg_name, 16, \"%%d\", i);\n";
7582              pr "  }\n";
7583              pr "  return r;\n"
7584          | RLVList _ ->
7585              pr "  struct guestfs_lvm_lv_list *r;\n";
7586              pr "  int i;\n";
7587              pr "  r = malloc (sizeof (struct guestfs_lvm_lv_list));\n";
7588              pr "  sscanf (val, \"%%d\", &r->len);\n";
7589              pr "  r->val = calloc (r->len, sizeof (struct guestfs_lvm_lv));\n";
7590              pr "  for (i = 0; i < r->len; ++i) {\n";
7591              pr "    r->val[i].lv_name = malloc (16);\n";
7592              pr "    snprintf (r->val[i].lv_name, 16, \"%%d\", i);\n";
7593              pr "  }\n";
7594              pr "  return r;\n"
7595          | RStat _ ->
7596              pr "  struct guestfs_stat *r;\n";
7597              pr "  r = calloc (1, sizeof (*r));\n";
7598              pr "  sscanf (val, \"%%\" SCNi64, &r->dev);\n";
7599              pr "  return r;\n"
7600          | RStatVFS _ ->
7601              pr "  struct guestfs_statvfs *r;\n";
7602              pr "  r = calloc (1, sizeof (*r));\n";
7603              pr "  sscanf (val, \"%%\" SCNi64, &r->bsize);\n";
7604              pr "  return r;\n"
7605          | RHashtable _ ->
7606              pr "  char **strs;\n";
7607              pr "  int n, i;\n";
7608              pr "  sscanf (val, \"%%d\", &n);\n";
7609              pr "  strs = malloc ((n*2+1) * sizeof (char *));\n";
7610              pr "  for (i = 0; i < n; ++i) {\n";
7611              pr "    strs[i*2] = malloc (16);\n";
7612              pr "    strs[i*2+1] = malloc (16);\n";
7613              pr "    snprintf (strs[i*2], 16, \"%%d\", i);\n";
7614              pr "    snprintf (strs[i*2+1], 16, \"%%d\", i);\n";
7615              pr "  }\n";
7616              pr "  strs[n*2] = NULL;\n";
7617              pr "  return strs;\n"
7618         );
7619         pr "}\n";
7620         pr "\n"
7621       ) else (
7622         pr "/* Test error return. */\n";
7623         generate_prototype ~extern:false ~semicolon:false ~newline:true
7624           ~handle:"g" ~prefix:"guestfs_" name style;
7625         pr "{\n";
7626         pr "  error (g, \"error\");\n";
7627         (match fst style with
7628          | RErr | RInt _ | RInt64 _ | RBool _ ->
7629              pr "  return -1;\n"
7630          | RConstString _
7631          | RString _ | RStringList _ | RIntBool _
7632          | RPVList _ | RVGList _ | RLVList _ | RStat _ | RStatVFS _
7633          | RHashtable _ ->
7634              pr "  return NULL;\n"
7635         );
7636         pr "}\n";
7637         pr "\n"
7638       )
7639   ) tests
7640
7641 and generate_ocaml_bindtests () =
7642   generate_header OCamlStyle GPLv2;
7643
7644   pr "\
7645 let () =
7646   let g = Guestfs.create () in
7647 ";
7648
7649   let mkargs args =
7650     String.concat " " (
7651       List.map (
7652         function
7653         | CallString s -> "\"" ^ s ^ "\""
7654         | CallOptString None -> "None"
7655         | CallOptString (Some s) -> sprintf "(Some \"%s\")" s
7656         | CallStringList xs ->
7657             "[|" ^ String.concat ";" (List.map (sprintf "\"%s\"") xs) ^ "|]"
7658         | CallInt i when i >= 0 -> string_of_int i
7659         | CallInt i (* when i < 0 *) -> "(" ^ string_of_int i ^ ")"
7660         | CallBool b -> string_of_bool b
7661       ) args
7662     )
7663   in
7664
7665   generate_lang_bindtests (
7666     fun f args -> pr "  Guestfs.%s g %s;\n" f (mkargs args)
7667   );
7668
7669   pr "print_endline \"EOF\"\n"
7670
7671 and generate_perl_bindtests () =
7672   pr "#!/usr/bin/perl -w\n";
7673   generate_header HashStyle GPLv2;
7674
7675   pr "\
7676 use strict;
7677
7678 use Sys::Guestfs;
7679
7680 my $g = Sys::Guestfs->new ();
7681 ";
7682
7683   let mkargs args =
7684     String.concat ", " (
7685       List.map (
7686         function
7687         | CallString s -> "\"" ^ s ^ "\""
7688         | CallOptString None -> "undef"
7689         | CallOptString (Some s) -> sprintf "\"%s\"" s
7690         | CallStringList xs ->
7691             "[" ^ String.concat "," (List.map (sprintf "\"%s\"") xs) ^ "]"
7692         | CallInt i -> string_of_int i
7693         | CallBool b -> if b then "1" else "0"
7694       ) args
7695     )
7696   in
7697
7698   generate_lang_bindtests (
7699     fun f args -> pr "$g->%s (%s);\n" f (mkargs args)
7700   );
7701
7702   pr "print \"EOF\\n\"\n"
7703
7704 and generate_python_bindtests () =
7705   generate_header HashStyle GPLv2;
7706
7707   pr "\
7708 import guestfs
7709
7710 g = guestfs.GuestFS ()
7711 ";
7712
7713   let mkargs args =
7714     String.concat ", " (
7715       List.map (
7716         function
7717         | CallString s -> "\"" ^ s ^ "\""
7718         | CallOptString None -> "None"
7719         | CallOptString (Some s) -> sprintf "\"%s\"" s
7720         | CallStringList xs ->
7721             "[" ^ String.concat "," (List.map (sprintf "\"%s\"") xs) ^ "]"
7722         | CallInt i -> string_of_int i
7723         | CallBool b -> if b then "1" else "0"
7724       ) args
7725     )
7726   in
7727
7728   generate_lang_bindtests (
7729     fun f args -> pr "g.%s (%s)\n" f (mkargs args)
7730   );
7731
7732   pr "print \"EOF\"\n"
7733
7734 and generate_ruby_bindtests () =
7735   generate_header HashStyle GPLv2;
7736
7737   pr "\
7738 require 'guestfs'
7739
7740 g = Guestfs::create()
7741 ";
7742
7743   let mkargs args =
7744     String.concat ", " (
7745       List.map (
7746         function
7747         | CallString s -> "\"" ^ s ^ "\""
7748         | CallOptString None -> "nil"
7749         | CallOptString (Some s) -> sprintf "\"%s\"" s
7750         | CallStringList xs ->
7751             "[" ^ String.concat "," (List.map (sprintf "\"%s\"") xs) ^ "]"
7752         | CallInt i -> string_of_int i
7753         | CallBool b -> string_of_bool b
7754       ) args
7755     )
7756   in
7757
7758   generate_lang_bindtests (
7759     fun f args -> pr "g.%s(%s)\n" f (mkargs args)
7760   );
7761
7762   pr "print \"EOF\\n\"\n"
7763
7764 and generate_java_bindtests () =
7765   generate_header CStyle GPLv2;
7766
7767   pr "\
7768 import com.redhat.et.libguestfs.*;
7769
7770 public class Bindtests {
7771     public static void main (String[] argv)
7772     {
7773         try {
7774             GuestFS g = new GuestFS ();
7775 ";
7776
7777   let mkargs args =
7778     String.concat ", " (
7779       List.map (
7780         function
7781         | CallString s -> "\"" ^ s ^ "\""
7782         | CallOptString None -> "null"
7783         | CallOptString (Some s) -> sprintf "\"%s\"" s
7784         | CallStringList xs ->
7785             "new String[]{" ^
7786               String.concat "," (List.map (sprintf "\"%s\"") xs) ^ "}"
7787         | CallInt i -> string_of_int i
7788         | CallBool b -> string_of_bool b
7789       ) args
7790     )
7791   in
7792
7793   generate_lang_bindtests (
7794     fun f args -> pr "            g.%s (%s);\n" f (mkargs args)
7795   );
7796
7797   pr "
7798             System.out.println (\"EOF\");
7799         }
7800         catch (Exception exn) {
7801             System.err.println (exn);
7802             System.exit (1);
7803         }
7804     }
7805 }
7806 "
7807
7808 and generate_haskell_bindtests () =
7809   () (* XXX Haskell bindings need to be fleshed out. *)
7810
7811 (* Language-independent bindings tests - we do it this way to
7812  * ensure there is parity in testing bindings across all languages.
7813  *)
7814 and generate_lang_bindtests call =
7815   call "test0" [CallString "abc"; CallOptString (Some "def");
7816                 CallStringList []; CallBool false;
7817                 CallInt 0; CallString "123"; CallString "456"];
7818   call "test0" [CallString "abc"; CallOptString None;
7819                 CallStringList []; CallBool false;
7820                 CallInt 0; CallString "123"; CallString "456"];
7821   call "test0" [CallString ""; CallOptString (Some "def");
7822                 CallStringList []; CallBool false;
7823                 CallInt 0; CallString "123"; CallString "456"];
7824   call "test0" [CallString ""; CallOptString (Some "");
7825                 CallStringList []; CallBool false;
7826                 CallInt 0; CallString "123"; CallString "456"];
7827   call "test0" [CallString "abc"; CallOptString (Some "def");
7828                 CallStringList ["1"]; CallBool false;
7829                 CallInt 0; CallString "123"; CallString "456"];
7830   call "test0" [CallString "abc"; CallOptString (Some "def");
7831                 CallStringList ["1"; "2"]; CallBool false;
7832                 CallInt 0; CallString "123"; CallString "456"];
7833   call "test0" [CallString "abc"; CallOptString (Some "def");
7834                 CallStringList ["1"]; CallBool true;
7835                 CallInt 0; CallString "123"; CallString "456"];
7836   call "test0" [CallString "abc"; CallOptString (Some "def");
7837                 CallStringList ["1"]; CallBool false;
7838                 CallInt (-1); CallString "123"; CallString "456"];
7839   call "test0" [CallString "abc"; CallOptString (Some "def");
7840                 CallStringList ["1"]; CallBool false;
7841                 CallInt (-2); CallString "123"; CallString "456"];
7842   call "test0" [CallString "abc"; CallOptString (Some "def");
7843                 CallStringList ["1"]; CallBool false;
7844                 CallInt 1; CallString "123"; CallString "456"];
7845   call "test0" [CallString "abc"; CallOptString (Some "def");
7846                 CallStringList ["1"]; CallBool false;
7847                 CallInt 2; CallString "123"; CallString "456"];
7848   call "test0" [CallString "abc"; CallOptString (Some "def");
7849                 CallStringList ["1"]; CallBool false;
7850                 CallInt 4095; CallString "123"; CallString "456"];
7851   call "test0" [CallString "abc"; CallOptString (Some "def");
7852                 CallStringList ["1"]; CallBool false;
7853                 CallInt 0; CallString ""; CallString ""]
7854
7855   (* XXX Add here tests of the return and error functions. *)
7856
7857 (* This is used to generate the src/MAX_PROC_NR file which
7858  * contains the maximum procedure number, a surrogate for the
7859  * ABI version number.  See src/Makefile.am for the details.
7860  *)
7861 and generate_max_proc_nr () =
7862   let proc_nrs = List.map (
7863     fun (_, _, proc_nr, _, _, _, _) -> proc_nr
7864   ) daemon_functions in
7865
7866   let max_proc_nr = List.fold_left max 0 proc_nrs in
7867
7868   pr "%d\n" max_proc_nr
7869
7870 let output_to filename =
7871   let filename_new = filename ^ ".new" in
7872   chan := open_out filename_new;
7873   let close () =
7874     close_out !chan;
7875     chan := stdout;
7876
7877     (* Is the new file different from the current file? *)
7878     if Sys.file_exists filename && files_equal filename filename_new then
7879       Unix.unlink filename_new          (* same, so skip it *)
7880     else (
7881       (* different, overwrite old one *)
7882       (try Unix.chmod filename 0o644 with Unix.Unix_error _ -> ());
7883       Unix.rename filename_new filename;
7884       Unix.chmod filename 0o444;
7885       printf "written %s\n%!" filename;
7886     )
7887   in
7888   close
7889
7890 (* Main program. *)
7891 let () =
7892   check_functions ();
7893
7894   if not (Sys.file_exists "configure.ac") then (
7895     eprintf "\
7896 You are probably running this from the wrong directory.
7897 Run it from the top source directory using the command
7898   src/generator.ml
7899 ";
7900     exit 1
7901   );
7902
7903   let close = output_to "src/guestfs_protocol.x" in
7904   generate_xdr ();
7905   close ();
7906
7907   let close = output_to "src/guestfs-structs.h" in
7908   generate_structs_h ();
7909   close ();
7910
7911   let close = output_to "src/guestfs-actions.h" in
7912   generate_actions_h ();
7913   close ();
7914
7915   let close = output_to "src/guestfs-actions.c" in
7916   generate_client_actions ();
7917   close ();
7918
7919   let close = output_to "daemon/actions.h" in
7920   generate_daemon_actions_h ();
7921   close ();
7922
7923   let close = output_to "daemon/stubs.c" in
7924   generate_daemon_actions ();
7925   close ();
7926
7927   let close = output_to "capitests/tests.c" in
7928   generate_tests ();
7929   close ();
7930
7931   let close = output_to "src/guestfs-bindtests.c" in
7932   generate_bindtests ();
7933   close ();
7934
7935   let close = output_to "fish/cmds.c" in
7936   generate_fish_cmds ();
7937   close ();
7938
7939   let close = output_to "fish/completion.c" in
7940   generate_fish_completion ();
7941   close ();
7942
7943   let close = output_to "guestfs-structs.pod" in
7944   generate_structs_pod ();
7945   close ();
7946
7947   let close = output_to "guestfs-actions.pod" in
7948   generate_actions_pod ();
7949   close ();
7950
7951   let close = output_to "guestfish-actions.pod" in
7952   generate_fish_actions_pod ();
7953   close ();
7954
7955   let close = output_to "ocaml/guestfs.mli" in
7956   generate_ocaml_mli ();
7957   close ();
7958
7959   let close = output_to "ocaml/guestfs.ml" in
7960   generate_ocaml_ml ();
7961   close ();
7962
7963   let close = output_to "ocaml/guestfs_c_actions.c" in
7964   generate_ocaml_c ();
7965   close ();
7966
7967   let close = output_to "ocaml/bindtests.ml" in
7968   generate_ocaml_bindtests ();
7969   close ();
7970
7971   let close = output_to "perl/Guestfs.xs" in
7972   generate_perl_xs ();
7973   close ();
7974
7975   let close = output_to "perl/lib/Sys/Guestfs.pm" in
7976   generate_perl_pm ();
7977   close ();
7978
7979   let close = output_to "perl/bindtests.pl" in
7980   generate_perl_bindtests ();
7981   close ();
7982
7983   let close = output_to "python/guestfs-py.c" in
7984   generate_python_c ();
7985   close ();
7986
7987   let close = output_to "python/guestfs.py" in
7988   generate_python_py ();
7989   close ();
7990
7991   let close = output_to "python/bindtests.py" in
7992   generate_python_bindtests ();
7993   close ();
7994
7995   let close = output_to "ruby/ext/guestfs/_guestfs.c" in
7996   generate_ruby_c ();
7997   close ();
7998
7999   let close = output_to "ruby/bindtests.rb" in
8000   generate_ruby_bindtests ();
8001   close ();
8002
8003   let close = output_to "java/com/redhat/et/libguestfs/GuestFS.java" in
8004   generate_java_java ();
8005   close ();
8006
8007   let close = output_to "java/com/redhat/et/libguestfs/PV.java" in
8008   generate_java_struct "PV" pv_cols;
8009   close ();
8010
8011   let close = output_to "java/com/redhat/et/libguestfs/VG.java" in
8012   generate_java_struct "VG" vg_cols;
8013   close ();
8014
8015   let close = output_to "java/com/redhat/et/libguestfs/LV.java" in
8016   generate_java_struct "LV" lv_cols;
8017   close ();
8018
8019   let close = output_to "java/com/redhat/et/libguestfs/Stat.java" in
8020   generate_java_struct "Stat" stat_cols;
8021   close ();
8022
8023   let close = output_to "java/com/redhat/et/libguestfs/StatVFS.java" in
8024   generate_java_struct "StatVFS" statvfs_cols;
8025   close ();
8026
8027   let close = output_to "java/com_redhat_et_libguestfs_GuestFS.c" in
8028   generate_java_c ();
8029   close ();
8030
8031   let close = output_to "java/Bindtests.java" in
8032   generate_java_bindtests ();
8033   close ();
8034
8035   let close = output_to "haskell/Guestfs.hs" in
8036   generate_haskell_hs ();
8037   close ();
8038
8039   let close = output_to "haskell/bindtests.hs" in
8040   generate_haskell_bindtests ();
8041   close ();
8042
8043   let close = output_to "src/MAX_PROC_NR" in
8044   generate_max_proc_nr ();
8045   close ();