Add large test files with standard content for the C API test.
[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     (* Test for RHBZ#501888c2 regression which caused large hexdump
2136      * commands to segfault.
2137      *)
2138     InitBasicFS, Always, TestRun (
2139       [["mount_vfs"; "ro"; "squashfs"; "/dev/sdd"; "/"];
2140        ["hexdump"; "/100krandom"]])],
2141    "dump a file in hexadecimal",
2142    "\
2143 This runs C<hexdump -C> on the given C<path>.  The result is
2144 the human-readable, canonical hex dump of the file.");
2145
2146   ("zerofree", (RErr, [String "device"]), 97, [],
2147    [InitNone, Always, TestOutput (
2148       [["sfdisk"; "/dev/sda"; "0"; "0"; "0"; ","];
2149        ["mkfs"; "ext3"; "/dev/sda1"];
2150        ["mount"; "/dev/sda1"; "/"];
2151        ["write_file"; "/new"; "test file"; "0"];
2152        ["umount"; "/dev/sda1"];
2153        ["zerofree"; "/dev/sda1"];
2154        ["mount"; "/dev/sda1"; "/"];
2155        ["cat"; "/new"]], "test file")],
2156    "zero unused inodes and disk blocks on ext2/3 filesystem",
2157    "\
2158 This runs the I<zerofree> program on C<device>.  This program
2159 claims to zero unused inodes and disk blocks on an ext2/3
2160 filesystem, thus making it possible to compress the filesystem
2161 more effectively.
2162
2163 You should B<not> run this program if the filesystem is
2164 mounted.
2165
2166 It is possible that using this program can damage the filesystem
2167 or data on the filesystem.");
2168
2169   ("pvresize", (RErr, [String "device"]), 98, [],
2170    [],
2171    "resize an LVM physical volume",
2172    "\
2173 This resizes (expands or shrinks) an existing LVM physical
2174 volume to match the new size of the underlying device.");
2175
2176   ("sfdisk_N", (RErr, [String "device"; Int "n";
2177                        Int "cyls"; Int "heads"; Int "sectors";
2178                        String "line"]), 99, [DangerWillRobinson],
2179    [],
2180    "modify a single partition on a block device",
2181    "\
2182 This runs L<sfdisk(8)> option to modify just the single
2183 partition C<n> (note: C<n> counts from 1).
2184
2185 For other parameters, see C<guestfs_sfdisk>.  You should usually
2186 pass C<0> for the cyls/heads/sectors parameters.");
2187
2188   ("sfdisk_l", (RString "partitions", [String "device"]), 100, [],
2189    [],
2190    "display the partition table",
2191    "\
2192 This displays the partition table on C<device>, in the
2193 human-readable output of the L<sfdisk(8)> command.  It is
2194 not intended to be parsed.");
2195
2196   ("sfdisk_kernel_geometry", (RString "partitions", [String "device"]), 101, [],
2197    [],
2198    "display the kernel geometry",
2199    "\
2200 This displays the kernel's idea of the geometry of C<device>.
2201
2202 The result is in human-readable format, and not designed to
2203 be parsed.");
2204
2205   ("sfdisk_disk_geometry", (RString "partitions", [String "device"]), 102, [],
2206    [],
2207    "display the disk geometry from the partition table",
2208    "\
2209 This displays the disk geometry of C<device> read from the
2210 partition table.  Especially in the case where the underlying
2211 block device has been resized, this can be different from the
2212 kernel's idea of the geometry (see C<guestfs_sfdisk_kernel_geometry>).
2213
2214 The result is in human-readable format, and not designed to
2215 be parsed.");
2216
2217   ("vg_activate_all", (RErr, [Bool "activate"]), 103, [],
2218    [],
2219    "activate or deactivate all volume groups",
2220    "\
2221 This command activates or (if C<activate> is false) deactivates
2222 all logical volumes in all volume groups.
2223 If activated, then they are made known to the
2224 kernel, ie. they appear as C</dev/mapper> devices.  If deactivated,
2225 then those devices disappear.
2226
2227 This command is the same as running C<vgchange -a y|n>");
2228
2229   ("vg_activate", (RErr, [Bool "activate"; StringList "volgroups"]), 104, [],
2230    [],
2231    "activate or deactivate some volume groups",
2232    "\
2233 This command activates or (if C<activate> is false) deactivates
2234 all logical volumes in the listed volume groups C<volgroups>.
2235 If activated, then they are made known to the
2236 kernel, ie. they appear as C</dev/mapper> devices.  If deactivated,
2237 then those devices disappear.
2238
2239 This command is the same as running C<vgchange -a y|n volgroups...>
2240
2241 Note that if C<volgroups> is an empty list then B<all> volume groups
2242 are activated or deactivated.");
2243
2244   ("lvresize", (RErr, [String "device"; Int "mbytes"]), 105, [],
2245    [InitNone, Always, TestOutput (
2246     [["sfdisk"; "/dev/sda"; "0"; "0"; "0"; ","];
2247      ["pvcreate"; "/dev/sda1"];
2248      ["vgcreate"; "VG"; "/dev/sda1"];
2249      ["lvcreate"; "LV"; "VG"; "10"];
2250      ["mkfs"; "ext2"; "/dev/VG/LV"];
2251      ["mount"; "/dev/VG/LV"; "/"];
2252      ["write_file"; "/new"; "test content"; "0"];
2253      ["umount"; "/"];
2254      ["lvresize"; "/dev/VG/LV"; "20"];
2255      ["e2fsck_f"; "/dev/VG/LV"];
2256      ["resize2fs"; "/dev/VG/LV"];
2257      ["mount"; "/dev/VG/LV"; "/"];
2258      ["cat"; "/new"]], "test content")],
2259    "resize an LVM logical volume",
2260    "\
2261 This resizes (expands or shrinks) an existing LVM logical
2262 volume to C<mbytes>.  When reducing, data in the reduced part
2263 is lost.");
2264
2265   ("resize2fs", (RErr, [String "device"]), 106, [],
2266    [], (* lvresize tests this *)
2267    "resize an ext2/ext3 filesystem",
2268    "\
2269 This resizes an ext2 or ext3 filesystem to match the size of
2270 the underlying device.
2271
2272 I<Note:> It is sometimes required that you run C<guestfs_e2fsck_f>
2273 on the C<device> before calling this command.  For unknown reasons
2274 C<resize2fs> sometimes gives an error about this and sometimes not.
2275 In any case, it is always safe to call C<guestfs_e2fsck_f> before
2276 calling this function.");
2277
2278   ("find", (RStringList "names", [String "directory"]), 107, [],
2279    [InitBasicFS, Always, TestOutputList (
2280       [["find"; "/"]], ["lost+found"]);
2281     InitBasicFS, Always, TestOutputList (
2282       [["touch"; "/a"];
2283        ["mkdir"; "/b"];
2284        ["touch"; "/b/c"];
2285        ["find"; "/"]], ["a"; "b"; "b/c"; "lost+found"]);
2286     InitBasicFS, Always, TestOutputList (
2287       [["mkdir_p"; "/a/b/c"];
2288        ["touch"; "/a/b/c/d"];
2289        ["find"; "/a/b/"]], ["c"; "c/d"])],
2290    "find all files and directories",
2291    "\
2292 This command lists out all files and directories, recursively,
2293 starting at C<directory>.  It is essentially equivalent to
2294 running the shell command C<find directory -print> but some
2295 post-processing happens on the output, described below.
2296
2297 This returns a list of strings I<without any prefix>.  Thus
2298 if the directory structure was:
2299
2300  /tmp/a
2301  /tmp/b
2302  /tmp/c/d
2303
2304 then the returned list from C<guestfs_find> C</tmp> would be
2305 4 elements:
2306
2307  a
2308  b
2309  c
2310  c/d
2311
2312 If C<directory> is not a directory, then this command returns
2313 an error.
2314
2315 The returned list is sorted.");
2316
2317   ("e2fsck_f", (RErr, [String "device"]), 108, [],
2318    [], (* lvresize tests this *)
2319    "check an ext2/ext3 filesystem",
2320    "\
2321 This runs C<e2fsck -p -f device>, ie. runs the ext2/ext3
2322 filesystem checker on C<device>, noninteractively (C<-p>),
2323 even if the filesystem appears to be clean (C<-f>).
2324
2325 This command is only needed because of C<guestfs_resize2fs>
2326 (q.v.).  Normally you should use C<guestfs_fsck>.");
2327
2328   ("sleep", (RErr, [Int "secs"]), 109, [],
2329    [InitNone, Always, TestRun (
2330     [["sleep"; "1"]])],
2331    "sleep for some seconds",
2332    "\
2333 Sleep for C<secs> seconds.");
2334
2335   ("ntfs_3g_probe", (RInt "status", [Bool "rw"; String "device"]), 110, [],
2336    [InitNone, Always, TestOutputInt (
2337       [["sfdisk"; "/dev/sda"; "0"; "0"; "0"; ","];
2338        ["mkfs"; "ntfs"; "/dev/sda1"];
2339        ["ntfs_3g_probe"; "true"; "/dev/sda1"]], 0);
2340     InitNone, Always, TestOutputInt (
2341       [["sfdisk"; "/dev/sda"; "0"; "0"; "0"; ","];
2342        ["mkfs"; "ext2"; "/dev/sda1"];
2343        ["ntfs_3g_probe"; "true"; "/dev/sda1"]], 12)],
2344    "probe NTFS volume",
2345    "\
2346 This command runs the L<ntfs-3g.probe(8)> command which probes
2347 an NTFS C<device> for mountability.  (Not all NTFS volumes can
2348 be mounted read-write, and some cannot be mounted at all).
2349
2350 C<rw> is a boolean flag.  Set it to true if you want to test
2351 if the volume can be mounted read-write.  Set it to false if
2352 you want to test if the volume can be mounted read-only.
2353
2354 The return value is an integer which C<0> if the operation
2355 would succeed, or some non-zero value documented in the
2356 L<ntfs-3g.probe(8)> manual page.");
2357
2358   ("sh", (RString "output", [String "command"]), 111, [],
2359    [], (* XXX needs tests *)
2360    "run a command via the shell",
2361    "\
2362 This call runs a command from the guest filesystem via the
2363 guest's C</bin/sh>.
2364
2365 This is like C<guestfs_command>, but passes the command to:
2366
2367  /bin/sh -c \"command\"
2368
2369 Depending on the guest's shell, this usually results in
2370 wildcards being expanded, shell expressions being interpolated
2371 and so on.
2372
2373 All the provisos about C<guestfs_command> apply to this call.");
2374
2375   ("sh_lines", (RStringList "lines", [String "command"]), 112, [],
2376    [], (* XXX needs tests *)
2377    "run a command via the shell returning lines",
2378    "\
2379 This is the same as C<guestfs_sh>, but splits the result
2380 into a list of lines.
2381
2382 See also: C<guestfs_command_lines>");
2383
2384   ("glob_expand", (RStringList "paths", [String "pattern"]), 113, [],
2385    [InitBasicFS, Always, TestOutputList (
2386       [["mkdir_p"; "/a/b/c"];
2387        ["touch"; "/a/b/c/d"];
2388        ["touch"; "/a/b/c/e"];
2389        ["glob_expand"; "/a/b/c/*"]], ["/a/b/c/d"; "/a/b/c/e"]);
2390     InitBasicFS, Always, TestOutputList (
2391       [["mkdir_p"; "/a/b/c"];
2392        ["touch"; "/a/b/c/d"];
2393        ["touch"; "/a/b/c/e"];
2394        ["glob_expand"; "/a/*/c/*"]], ["/a/b/c/d"; "/a/b/c/e"]);
2395     InitBasicFS, Always, TestOutputList (
2396       [["mkdir_p"; "/a/b/c"];
2397        ["touch"; "/a/b/c/d"];
2398        ["touch"; "/a/b/c/e"];
2399        ["glob_expand"; "/a/*/x/*"]], [])],
2400    "expand a wildcard path",
2401    "\
2402 This command searches for all the pathnames matching
2403 C<pattern> according to the wildcard expansion rules
2404 used by the shell.
2405
2406 If no paths match, then this returns an empty list
2407 (note: not an error).
2408
2409 It is just a wrapper around the C L<glob(3)> function
2410 with flags C<GLOB_MARK|GLOB_BRACE>.
2411 See that manual page for more details.");
2412
2413   ("scrub_device", (RErr, [String "device"]), 114, [DangerWillRobinson],
2414    [InitNone, Always, TestRun ( (* use /dev/sdc because it's smaller *)
2415       [["scrub_device"; "/dev/sdc"]])],
2416    "scrub (securely wipe) a device",
2417    "\
2418 This command writes patterns over C<device> to make data retrieval
2419 more difficult.
2420
2421 It is an interface to the L<scrub(1)> program.  See that
2422 manual page for more details.");
2423
2424   ("scrub_file", (RErr, [String "file"]), 115, [],
2425    [InitBasicFS, Always, TestRun (
2426       [["write_file"; "/file"; "content"; "0"];
2427        ["scrub_file"; "/file"]])],
2428    "scrub (securely wipe) a file",
2429    "\
2430 This command writes patterns over a file to make data retrieval
2431 more difficult.
2432
2433 The file is I<removed> after scrubbing.
2434
2435 It is an interface to the L<scrub(1)> program.  See that
2436 manual page for more details.");
2437
2438   ("scrub_freespace", (RErr, [String "dir"]), 116, [],
2439    [], (* XXX needs testing *)
2440    "scrub (securely wipe) free space",
2441    "\
2442 This command creates the directory C<dir> and then fills it
2443 with files until the filesystem is full, and scrubs the files
2444 as for C<guestfs_scrub_file>, and deletes them.
2445 The intention is to scrub any free space on the partition
2446 containing C<dir>.
2447
2448 It is an interface to the L<scrub(1)> program.  See that
2449 manual page for more details.");
2450
2451   ("mkdtemp", (RString "dir", [String "template"]), 117, [],
2452    [InitBasicFS, Always, TestRun (
2453       [["mkdir"; "/tmp"];
2454        ["mkdtemp"; "/tmp/tmpXXXXXX"]])],
2455    "create a temporary directory",
2456    "\
2457 This command creates a temporary directory.  The
2458 C<template> parameter should be a full pathname for the
2459 temporary directory name with the final six characters being
2460 \"XXXXXX\".
2461
2462 For example: \"/tmp/myprogXXXXXX\" or \"/Temp/myprogXXXXXX\",
2463 the second one being suitable for Windows filesystems.
2464
2465 The name of the temporary directory that was created
2466 is returned.
2467
2468 The temporary directory is created with mode 0700
2469 and is owned by root.
2470
2471 The caller is responsible for deleting the temporary
2472 directory and its contents after use.
2473
2474 See also: L<mkdtemp(3)>");
2475
2476 ]
2477
2478 let all_functions = non_daemon_functions @ daemon_functions
2479
2480 (* In some places we want the functions to be displayed sorted
2481  * alphabetically, so this is useful:
2482  *)
2483 let all_functions_sorted =
2484   List.sort (fun (n1,_,_,_,_,_,_) (n2,_,_,_,_,_,_) ->
2485                compare n1 n2) all_functions
2486
2487 (* Column names and types from LVM PVs/VGs/LVs. *)
2488 let pv_cols = [
2489   "pv_name", `String;
2490   "pv_uuid", `UUID;
2491   "pv_fmt", `String;
2492   "pv_size", `Bytes;
2493   "dev_size", `Bytes;
2494   "pv_free", `Bytes;
2495   "pv_used", `Bytes;
2496   "pv_attr", `String (* XXX *);
2497   "pv_pe_count", `Int;
2498   "pv_pe_alloc_count", `Int;
2499   "pv_tags", `String;
2500   "pe_start", `Bytes;
2501   "pv_mda_count", `Int;
2502   "pv_mda_free", `Bytes;
2503 (* Not in Fedora 10:
2504   "pv_mda_size", `Bytes;
2505 *)
2506 ]
2507 let vg_cols = [
2508   "vg_name", `String;
2509   "vg_uuid", `UUID;
2510   "vg_fmt", `String;
2511   "vg_attr", `String (* XXX *);
2512   "vg_size", `Bytes;
2513   "vg_free", `Bytes;
2514   "vg_sysid", `String;
2515   "vg_extent_size", `Bytes;
2516   "vg_extent_count", `Int;
2517   "vg_free_count", `Int;
2518   "max_lv", `Int;
2519   "max_pv", `Int;
2520   "pv_count", `Int;
2521   "lv_count", `Int;
2522   "snap_count", `Int;
2523   "vg_seqno", `Int;
2524   "vg_tags", `String;
2525   "vg_mda_count", `Int;
2526   "vg_mda_free", `Bytes;
2527 (* Not in Fedora 10:
2528   "vg_mda_size", `Bytes;
2529 *)
2530 ]
2531 let lv_cols = [
2532   "lv_name", `String;
2533   "lv_uuid", `UUID;
2534   "lv_attr", `String (* XXX *);
2535   "lv_major", `Int;
2536   "lv_minor", `Int;
2537   "lv_kernel_major", `Int;
2538   "lv_kernel_minor", `Int;
2539   "lv_size", `Bytes;
2540   "seg_count", `Int;
2541   "origin", `String;
2542   "snap_percent", `OptPercent;
2543   "copy_percent", `OptPercent;
2544   "move_pv", `String;
2545   "lv_tags", `String;
2546   "mirror_log", `String;
2547   "modules", `String;
2548 ]
2549
2550 (* Column names and types from stat structures.
2551  * NB. Can't use things like 'st_atime' because glibc header files
2552  * define some of these as macros.  Ugh.
2553  *)
2554 let stat_cols = [
2555   "dev", `Int;
2556   "ino", `Int;
2557   "mode", `Int;
2558   "nlink", `Int;
2559   "uid", `Int;
2560   "gid", `Int;
2561   "rdev", `Int;
2562   "size", `Int;
2563   "blksize", `Int;
2564   "blocks", `Int;
2565   "atime", `Int;
2566   "mtime", `Int;
2567   "ctime", `Int;
2568 ]
2569 let statvfs_cols = [
2570   "bsize", `Int;
2571   "frsize", `Int;
2572   "blocks", `Int;
2573   "bfree", `Int;
2574   "bavail", `Int;
2575   "files", `Int;
2576   "ffree", `Int;
2577   "favail", `Int;
2578   "fsid", `Int;
2579   "flag", `Int;
2580   "namemax", `Int;
2581 ]
2582
2583 (* Used for testing language bindings. *)
2584 type callt =
2585   | CallString of string
2586   | CallOptString of string option
2587   | CallStringList of string list
2588   | CallInt of int
2589   | CallBool of bool
2590
2591 (* Useful functions.
2592  * Note we don't want to use any external OCaml libraries which
2593  * makes this a bit harder than it should be.
2594  *)
2595 let failwithf fs = ksprintf failwith fs
2596
2597 let replace_char s c1 c2 =
2598   let s2 = String.copy s in
2599   let r = ref false in
2600   for i = 0 to String.length s2 - 1 do
2601     if String.unsafe_get s2 i = c1 then (
2602       String.unsafe_set s2 i c2;
2603       r := true
2604     )
2605   done;
2606   if not !r then s else s2
2607
2608 let isspace c =
2609   c = ' '
2610   (* || c = '\f' *) || c = '\n' || c = '\r' || c = '\t' (* || c = '\v' *)
2611
2612 let triml ?(test = isspace) str =
2613   let i = ref 0 in
2614   let n = ref (String.length str) in
2615   while !n > 0 && test str.[!i]; do
2616     decr n;
2617     incr i
2618   done;
2619   if !i = 0 then str
2620   else String.sub str !i !n
2621
2622 let trimr ?(test = isspace) str =
2623   let n = ref (String.length str) in
2624   while !n > 0 && test str.[!n-1]; do
2625     decr n
2626   done;
2627   if !n = String.length str then str
2628   else String.sub str 0 !n
2629
2630 let trim ?(test = isspace) str =
2631   trimr ~test (triml ~test str)
2632
2633 let rec find s sub =
2634   let len = String.length s in
2635   let sublen = String.length sub in
2636   let rec loop i =
2637     if i <= len-sublen then (
2638       let rec loop2 j =
2639         if j < sublen then (
2640           if s.[i+j] = sub.[j] then loop2 (j+1)
2641           else -1
2642         ) else
2643           i (* found *)
2644       in
2645       let r = loop2 0 in
2646       if r = -1 then loop (i+1) else r
2647     ) else
2648       -1 (* not found *)
2649   in
2650   loop 0
2651
2652 let rec replace_str s s1 s2 =
2653   let len = String.length s in
2654   let sublen = String.length s1 in
2655   let i = find s s1 in
2656   if i = -1 then s
2657   else (
2658     let s' = String.sub s 0 i in
2659     let s'' = String.sub s (i+sublen) (len-i-sublen) in
2660     s' ^ s2 ^ replace_str s'' s1 s2
2661   )
2662
2663 let rec string_split sep str =
2664   let len = String.length str in
2665   let seplen = String.length sep in
2666   let i = find str sep in
2667   if i = -1 then [str]
2668   else (
2669     let s' = String.sub str 0 i in
2670     let s'' = String.sub str (i+seplen) (len-i-seplen) in
2671     s' :: string_split sep s''
2672   )
2673
2674 let files_equal n1 n2 =
2675   let cmd = sprintf "cmp -s %s %s" (Filename.quote n1) (Filename.quote n2) in
2676   match Sys.command cmd with
2677   | 0 -> true
2678   | 1 -> false
2679   | i -> failwithf "%s: failed with error code %d" cmd i
2680
2681 let rec find_map f = function
2682   | [] -> raise Not_found
2683   | x :: xs ->
2684       match f x with
2685       | Some y -> y
2686       | None -> find_map f xs
2687
2688 let iteri f xs =
2689   let rec loop i = function
2690     | [] -> ()
2691     | x :: xs -> f i x; loop (i+1) xs
2692   in
2693   loop 0 xs
2694
2695 let mapi f xs =
2696   let rec loop i = function
2697     | [] -> []
2698     | x :: xs -> let r = f i x in r :: loop (i+1) xs
2699   in
2700   loop 0 xs
2701
2702 let name_of_argt = function
2703   | String n | OptString n | StringList n | Bool n | Int n
2704   | FileIn n | FileOut n -> n
2705
2706 let seq_of_test = function
2707   | TestRun s | TestOutput (s, _) | TestOutputList (s, _)
2708   | TestOutputListOfDevices (s, _)
2709   | TestOutputInt (s, _) | TestOutputTrue s | TestOutputFalse s
2710   | TestOutputLength (s, _) | TestOutputStruct (s, _)
2711   | TestLastFail s -> s
2712
2713 (* Check function names etc. for consistency. *)
2714 let check_functions () =
2715   let contains_uppercase str =
2716     let len = String.length str in
2717     let rec loop i =
2718       if i >= len then false
2719       else (
2720         let c = str.[i] in
2721         if c >= 'A' && c <= 'Z' then true
2722         else loop (i+1)
2723       )
2724     in
2725     loop 0
2726   in
2727
2728   (* Check function names. *)
2729   List.iter (
2730     fun (name, _, _, _, _, _, _) ->
2731       if String.length name >= 7 && String.sub name 0 7 = "guestfs" then
2732         failwithf "function name %s does not need 'guestfs' prefix" name;
2733       if name = "" then
2734         failwithf "function name is empty";
2735       if name.[0] < 'a' || name.[0] > 'z' then
2736         failwithf "function name %s must start with lowercase a-z" name;
2737       if String.contains name '-' then
2738         failwithf "function name %s should not contain '-', use '_' instead."
2739           name
2740   ) all_functions;
2741
2742   (* Check function parameter/return names. *)
2743   List.iter (
2744     fun (name, style, _, _, _, _, _) ->
2745       let check_arg_ret_name n =
2746         if contains_uppercase n then
2747           failwithf "%s param/ret %s should not contain uppercase chars"
2748             name n;
2749         if String.contains n '-' || String.contains n '_' then
2750           failwithf "%s param/ret %s should not contain '-' or '_'"
2751             name n;
2752         if n = "value" then
2753           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;
2754         if n = "int" || n = "char" || n = "short" || n = "long" then
2755           failwithf "%s has a param/ret which conflicts with a C type (eg. 'int', 'char' etc.)" name;
2756         if n = "i" then
2757           failwithf "%s has a param/ret called 'i', which will cause some conflicts in the generated code" name;
2758         if n = "argv" || n = "args" then
2759           failwithf "%s has a param/ret called 'argv' or 'args', which will cause some conflicts in the generated code" name
2760       in
2761
2762       (match fst style with
2763        | RErr -> ()
2764        | RInt n | RInt64 n | RBool n | RConstString n | RString n
2765        | RStringList n | RPVList n | RVGList n | RLVList n
2766        | RStat n | RStatVFS n
2767        | RHashtable n ->
2768            check_arg_ret_name n
2769        | RIntBool (n,m) ->
2770            check_arg_ret_name n;
2771            check_arg_ret_name m
2772       );
2773       List.iter (fun arg -> check_arg_ret_name (name_of_argt arg)) (snd style)
2774   ) all_functions;
2775
2776   (* Check short descriptions. *)
2777   List.iter (
2778     fun (name, _, _, _, _, shortdesc, _) ->
2779       if shortdesc.[0] <> Char.lowercase shortdesc.[0] then
2780         failwithf "short description of %s should begin with lowercase." name;
2781       let c = shortdesc.[String.length shortdesc-1] in
2782       if c = '\n' || c = '.' then
2783         failwithf "short description of %s should not end with . or \\n." name
2784   ) all_functions;
2785
2786   (* Check long dscriptions. *)
2787   List.iter (
2788     fun (name, _, _, _, _, _, longdesc) ->
2789       if longdesc.[String.length longdesc-1] = '\n' then
2790         failwithf "long description of %s should not end with \\n." name
2791   ) all_functions;
2792
2793   (* Check proc_nrs. *)
2794   List.iter (
2795     fun (name, _, proc_nr, _, _, _, _) ->
2796       if proc_nr <= 0 then
2797         failwithf "daemon function %s should have proc_nr > 0" name
2798   ) daemon_functions;
2799
2800   List.iter (
2801     fun (name, _, proc_nr, _, _, _, _) ->
2802       if proc_nr <> -1 then
2803         failwithf "non-daemon function %s should have proc_nr -1" name
2804   ) non_daemon_functions;
2805
2806   let proc_nrs =
2807     List.map (fun (name, _, proc_nr, _, _, _, _) -> name, proc_nr)
2808       daemon_functions in
2809   let proc_nrs =
2810     List.sort (fun (_,nr1) (_,nr2) -> compare nr1 nr2) proc_nrs in
2811   let rec loop = function
2812     | [] -> ()
2813     | [_] -> ()
2814     | (name1,nr1) :: ((name2,nr2) :: _ as rest) when nr1 < nr2 ->
2815         loop rest
2816     | (name1,nr1) :: (name2,nr2) :: _ ->
2817         failwithf "%s and %s have conflicting procedure numbers (%d, %d)"
2818           name1 name2 nr1 nr2
2819   in
2820   loop proc_nrs;
2821
2822   (* Check tests. *)
2823   List.iter (
2824     function
2825       (* Ignore functions that have no tests.  We generate a
2826        * warning when the user does 'make check' instead.
2827        *)
2828     | name, _, _, _, [], _, _ -> ()
2829     | name, _, _, _, tests, _, _ ->
2830         let funcs =
2831           List.map (
2832             fun (_, _, test) ->
2833               match seq_of_test test with
2834               | [] ->
2835                   failwithf "%s has a test containing an empty sequence" name
2836               | cmds -> List.map List.hd cmds
2837           ) tests in
2838         let funcs = List.flatten funcs in
2839
2840         let tested = List.mem name funcs in
2841
2842         if not tested then
2843           failwithf "function %s has tests but does not test itself" name
2844   ) all_functions
2845
2846 (* 'pr' prints to the current output file. *)
2847 let chan = ref stdout
2848 let pr fs = ksprintf (output_string !chan) fs
2849
2850 (* Generate a header block in a number of standard styles. *)
2851 type comment_style = CStyle | HashStyle | OCamlStyle | HaskellStyle
2852 type license = GPLv2 | LGPLv2
2853
2854 let generate_header comment license =
2855   let c = match comment with
2856     | CStyle ->     pr "/* "; " *"
2857     | HashStyle ->  pr "# ";  "#"
2858     | OCamlStyle -> pr "(* "; " *"
2859     | HaskellStyle -> pr "{- "; "  " in
2860   pr "libguestfs generated file\n";
2861   pr "%s WARNING: THIS FILE IS GENERATED BY 'src/generator.ml'.\n" c;
2862   pr "%s ANY CHANGES YOU MAKE TO THIS FILE WILL BE LOST.\n" c;
2863   pr "%s\n" c;
2864   pr "%s Copyright (C) 2009 Red Hat Inc.\n" c;
2865   pr "%s\n" c;
2866   (match license with
2867    | GPLv2 ->
2868        pr "%s This program is free software; you can redistribute it and/or modify\n" c;
2869        pr "%s it under the terms of the GNU General Public License as published by\n" c;
2870        pr "%s the Free Software Foundation; either version 2 of the License, or\n" c;
2871        pr "%s (at your option) any later version.\n" c;
2872        pr "%s\n" c;
2873        pr "%s This program is distributed in the hope that it will be useful,\n" c;
2874        pr "%s but WITHOUT ANY WARRANTY; without even the implied warranty of\n" c;
2875        pr "%s MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n" c;
2876        pr "%s GNU General Public License for more details.\n" c;
2877        pr "%s\n" c;
2878        pr "%s You should have received a copy of the GNU General Public License along\n" c;
2879        pr "%s with this program; if not, write to the Free Software Foundation, Inc.,\n" c;
2880        pr "%s 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.\n" c;
2881
2882    | LGPLv2 ->
2883        pr "%s This library is free software; you can redistribute it and/or\n" c;
2884        pr "%s modify it under the terms of the GNU Lesser General Public\n" c;
2885        pr "%s License as published by the Free Software Foundation; either\n" c;
2886        pr "%s version 2 of the License, or (at your option) any later version.\n" c;
2887        pr "%s\n" c;
2888        pr "%s This library is distributed in the hope that it will be useful,\n" c;
2889        pr "%s but WITHOUT ANY WARRANTY; without even the implied warranty of\n" c;
2890        pr "%s MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n" c;
2891        pr "%s Lesser General Public License for more details.\n" c;
2892        pr "%s\n" c;
2893        pr "%s You should have received a copy of the GNU Lesser General Public\n" c;
2894        pr "%s License along with this library; if not, write to the Free Software\n" c;
2895        pr "%s Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA\n" c;
2896   );
2897   (match comment with
2898    | CStyle -> pr " */\n"
2899    | HashStyle -> ()
2900    | OCamlStyle -> pr " *)\n"
2901    | HaskellStyle -> pr "-}\n"
2902   );
2903   pr "\n"
2904
2905 (* Start of main code generation functions below this line. *)
2906
2907 (* Generate the pod documentation for the C API. *)
2908 let rec generate_actions_pod () =
2909   List.iter (
2910     fun (shortname, style, _, flags, _, _, longdesc) ->
2911       if not (List.mem NotInDocs flags) then (
2912         let name = "guestfs_" ^ shortname in
2913         pr "=head2 %s\n\n" name;
2914         pr " ";
2915         generate_prototype ~extern:false ~handle:"handle" name style;
2916         pr "\n\n";
2917         pr "%s\n\n" longdesc;
2918         (match fst style with
2919          | RErr ->
2920              pr "This function returns 0 on success or -1 on error.\n\n"
2921          | RInt _ ->
2922              pr "On error this function returns -1.\n\n"
2923          | RInt64 _ ->
2924              pr "On error this function returns -1.\n\n"
2925          | RBool _ ->
2926              pr "This function returns a C truth value on success or -1 on error.\n\n"
2927          | RConstString _ ->
2928              pr "This function returns a string, or NULL on error.
2929 The string is owned by the guest handle and must I<not> be freed.\n\n"
2930          | RString _ ->
2931              pr "This function returns a string, or NULL on error.
2932 I<The caller must free the returned string after use>.\n\n"
2933          | RStringList _ ->
2934              pr "This function returns a NULL-terminated array of strings
2935 (like L<environ(3)>), or NULL if there was an error.
2936 I<The caller must free the strings and the array after use>.\n\n"
2937          | RIntBool _ ->
2938              pr "This function returns a C<struct guestfs_int_bool *>,
2939 or NULL if there was an error.
2940 I<The caller must call C<guestfs_free_int_bool> after use>.\n\n"
2941          | RPVList _ ->
2942              pr "This function returns a C<struct guestfs_lvm_pv_list *>
2943 (see E<lt>guestfs-structs.hE<gt>),
2944 or NULL if there was an error.
2945 I<The caller must call C<guestfs_free_lvm_pv_list> after use>.\n\n"
2946          | RVGList _ ->
2947              pr "This function returns a C<struct guestfs_lvm_vg_list *>
2948 (see E<lt>guestfs-structs.hE<gt>),
2949 or NULL if there was an error.
2950 I<The caller must call C<guestfs_free_lvm_vg_list> after use>.\n\n"
2951          | RLVList _ ->
2952              pr "This function returns a C<struct guestfs_lvm_lv_list *>
2953 (see E<lt>guestfs-structs.hE<gt>),
2954 or NULL if there was an error.
2955 I<The caller must call C<guestfs_free_lvm_lv_list> after use>.\n\n"
2956          | RStat _ ->
2957              pr "This function returns a C<struct guestfs_stat *>
2958 (see L<stat(2)> and E<lt>guestfs-structs.hE<gt>),
2959 or NULL if there was an error.
2960 I<The caller must call C<free> after use>.\n\n"
2961          | RStatVFS _ ->
2962              pr "This function returns a C<struct guestfs_statvfs *>
2963 (see L<statvfs(2)> and E<lt>guestfs-structs.hE<gt>),
2964 or NULL if there was an error.
2965 I<The caller must call C<free> after use>.\n\n"
2966          | RHashtable _ ->
2967              pr "This function returns a NULL-terminated array of
2968 strings, or NULL if there was an error.
2969 The array of strings will always have length C<2n+1>, where
2970 C<n> keys and values alternate, followed by the trailing NULL entry.
2971 I<The caller must free the strings and the array after use>.\n\n"
2972         );
2973         if List.mem ProtocolLimitWarning flags then
2974           pr "%s\n\n" protocol_limit_warning;
2975         if List.mem DangerWillRobinson flags then
2976           pr "%s\n\n" danger_will_robinson
2977       )
2978   ) all_functions_sorted
2979
2980 and generate_structs_pod () =
2981   (* LVM structs documentation. *)
2982   List.iter (
2983     fun (typ, cols) ->
2984       pr "=head2 guestfs_lvm_%s\n" typ;
2985       pr "\n";
2986       pr " struct guestfs_lvm_%s {\n" typ;
2987       List.iter (
2988         function
2989         | name, `String -> pr "  char *%s;\n" name
2990         | name, `UUID ->
2991             pr "  /* The next field is NOT nul-terminated, be careful when printing it: */\n";
2992             pr "  char %s[32];\n" name
2993         | name, `Bytes -> pr "  uint64_t %s;\n" name
2994         | name, `Int -> pr "  int64_t %s;\n" name
2995         | name, `OptPercent ->
2996             pr "  /* The next field is [0..100] or -1 meaning 'not present': */\n";
2997             pr "  float %s;\n" name
2998       ) cols;
2999       pr " \n";
3000       pr " struct guestfs_lvm_%s_list {\n" typ;
3001       pr "   uint32_t len; /* Number of elements in list. */\n";
3002       pr "   struct guestfs_lvm_%s *val; /* Elements. */\n" typ;
3003       pr " };\n";
3004       pr " \n";
3005       pr " void guestfs_free_lvm_%s_list (struct guestfs_free_lvm_%s_list *);\n"
3006         typ typ;
3007       pr "\n"
3008   ) ["pv", pv_cols; "vg", vg_cols; "lv", lv_cols]
3009
3010 (* Generate the protocol (XDR) file, 'guestfs_protocol.x' and
3011  * indirectly 'guestfs_protocol.h' and 'guestfs_protocol.c'.
3012  *
3013  * We have to use an underscore instead of a dash because otherwise
3014  * rpcgen generates incorrect code.
3015  *
3016  * This header is NOT exported to clients, but see also generate_structs_h.
3017  *)
3018 and generate_xdr () =
3019   generate_header CStyle LGPLv2;
3020
3021   (* This has to be defined to get around a limitation in Sun's rpcgen. *)
3022   pr "typedef string str<>;\n";
3023   pr "\n";
3024
3025   (* LVM internal structures. *)
3026   List.iter (
3027     function
3028     | typ, cols ->
3029         pr "struct guestfs_lvm_int_%s {\n" typ;
3030         List.iter (function
3031                    | name, `String -> pr "  string %s<>;\n" name
3032                    | name, `UUID -> pr "  opaque %s[32];\n" name
3033                    | name, `Bytes -> pr "  hyper %s;\n" name
3034                    | name, `Int -> pr "  hyper %s;\n" name
3035                    | name, `OptPercent -> pr "  float %s;\n" name
3036                   ) cols;
3037         pr "};\n";
3038         pr "\n";
3039         pr "typedef struct guestfs_lvm_int_%s guestfs_lvm_int_%s_list<>;\n" typ typ;
3040         pr "\n";
3041   ) ["pv", pv_cols; "vg", vg_cols; "lv", lv_cols];
3042
3043   (* Stat internal structures. *)
3044   List.iter (
3045     function
3046     | typ, cols ->
3047         pr "struct guestfs_int_%s {\n" typ;
3048         List.iter (function
3049                    | name, `Int -> pr "  hyper %s;\n" name
3050                   ) cols;
3051         pr "};\n";
3052         pr "\n";
3053   ) ["stat", stat_cols; "statvfs", statvfs_cols];
3054
3055   List.iter (
3056     fun (shortname, style, _, _, _, _, _) ->
3057       let name = "guestfs_" ^ shortname in
3058
3059       (match snd style with
3060        | [] -> ()
3061        | args ->
3062            pr "struct %s_args {\n" name;
3063            List.iter (
3064              function
3065              | String n -> pr "  string %s<>;\n" n
3066              | OptString n -> pr "  str *%s;\n" n
3067              | StringList n -> pr "  str %s<>;\n" n
3068              | Bool n -> pr "  bool %s;\n" n
3069              | Int n -> pr "  int %s;\n" n
3070              | FileIn _ | FileOut _ -> ()
3071            ) args;
3072            pr "};\n\n"
3073       );
3074       (match fst style with
3075        | RErr -> ()
3076        | RInt n ->
3077            pr "struct %s_ret {\n" name;
3078            pr "  int %s;\n" n;
3079            pr "};\n\n"
3080        | RInt64 n ->
3081            pr "struct %s_ret {\n" name;
3082            pr "  hyper %s;\n" n;
3083            pr "};\n\n"
3084        | RBool n ->
3085            pr "struct %s_ret {\n" name;
3086            pr "  bool %s;\n" n;
3087            pr "};\n\n"
3088        | RConstString _ ->
3089            failwithf "RConstString cannot be returned from a daemon function"
3090        | RString n ->
3091            pr "struct %s_ret {\n" name;
3092            pr "  string %s<>;\n" n;
3093            pr "};\n\n"
3094        | RStringList n ->
3095            pr "struct %s_ret {\n" name;
3096            pr "  str %s<>;\n" n;
3097            pr "};\n\n"
3098        | RIntBool (n,m) ->
3099            pr "struct %s_ret {\n" name;
3100            pr "  int %s;\n" n;
3101            pr "  bool %s;\n" m;
3102            pr "};\n\n"
3103        | RPVList n ->
3104            pr "struct %s_ret {\n" name;
3105            pr "  guestfs_lvm_int_pv_list %s;\n" n;
3106            pr "};\n\n"
3107        | RVGList n ->
3108            pr "struct %s_ret {\n" name;
3109            pr "  guestfs_lvm_int_vg_list %s;\n" n;
3110            pr "};\n\n"
3111        | RLVList n ->
3112            pr "struct %s_ret {\n" name;
3113            pr "  guestfs_lvm_int_lv_list %s;\n" n;
3114            pr "};\n\n"
3115        | RStat n ->
3116            pr "struct %s_ret {\n" name;
3117            pr "  guestfs_int_stat %s;\n" n;
3118            pr "};\n\n"
3119        | RStatVFS n ->
3120            pr "struct %s_ret {\n" name;
3121            pr "  guestfs_int_statvfs %s;\n" n;
3122            pr "};\n\n"
3123        | RHashtable n ->
3124            pr "struct %s_ret {\n" name;
3125            pr "  str %s<>;\n" n;
3126            pr "};\n\n"
3127       );
3128   ) daemon_functions;
3129
3130   (* Table of procedure numbers. *)
3131   pr "enum guestfs_procedure {\n";
3132   List.iter (
3133     fun (shortname, _, proc_nr, _, _, _, _) ->
3134       pr "  GUESTFS_PROC_%s = %d,\n" (String.uppercase shortname) proc_nr
3135   ) daemon_functions;
3136   pr "  GUESTFS_PROC_NR_PROCS\n";
3137   pr "};\n";
3138   pr "\n";
3139
3140   (* Having to choose a maximum message size is annoying for several
3141    * reasons (it limits what we can do in the API), but it (a) makes
3142    * the protocol a lot simpler, and (b) provides a bound on the size
3143    * of the daemon which operates in limited memory space.  For large
3144    * file transfers you should use FTP.
3145    *)
3146   pr "const GUESTFS_MESSAGE_MAX = %d;\n" (4 * 1024 * 1024);
3147   pr "\n";
3148
3149   (* Message header, etc. *)
3150   pr "\
3151 /* The communication protocol is now documented in the guestfs(3)
3152  * manpage.
3153  */
3154
3155 const GUESTFS_PROGRAM = 0x2000F5F5;
3156 const GUESTFS_PROTOCOL_VERSION = 1;
3157
3158 /* These constants must be larger than any possible message length. */
3159 const GUESTFS_LAUNCH_FLAG = 0xf5f55ff5;
3160 const GUESTFS_CANCEL_FLAG = 0xffffeeee;
3161
3162 enum guestfs_message_direction {
3163   GUESTFS_DIRECTION_CALL = 0,        /* client -> daemon */
3164   GUESTFS_DIRECTION_REPLY = 1        /* daemon -> client */
3165 };
3166
3167 enum guestfs_message_status {
3168   GUESTFS_STATUS_OK = 0,
3169   GUESTFS_STATUS_ERROR = 1
3170 };
3171
3172 const GUESTFS_ERROR_LEN = 256;
3173
3174 struct guestfs_message_error {
3175   string error_message<GUESTFS_ERROR_LEN>;
3176 };
3177
3178 struct guestfs_message_header {
3179   unsigned prog;                     /* GUESTFS_PROGRAM */
3180   unsigned vers;                     /* GUESTFS_PROTOCOL_VERSION */
3181   guestfs_procedure proc;            /* GUESTFS_PROC_x */
3182   guestfs_message_direction direction;
3183   unsigned serial;                   /* message serial number */
3184   guestfs_message_status status;
3185 };
3186
3187 const GUESTFS_MAX_CHUNK_SIZE = 8192;
3188
3189 struct guestfs_chunk {
3190   int cancel;                        /* if non-zero, transfer is cancelled */
3191   /* data size is 0 bytes if the transfer has finished successfully */
3192   opaque data<GUESTFS_MAX_CHUNK_SIZE>;
3193 };
3194 "
3195
3196 (* Generate the guestfs-structs.h file. *)
3197 and generate_structs_h () =
3198   generate_header CStyle LGPLv2;
3199
3200   (* This is a public exported header file containing various
3201    * structures.  The structures are carefully written to have
3202    * exactly the same in-memory format as the XDR structures that
3203    * we use on the wire to the daemon.  The reason for creating
3204    * copies of these structures here is just so we don't have to
3205    * export the whole of guestfs_protocol.h (which includes much
3206    * unrelated and XDR-dependent stuff that we don't want to be
3207    * public, or required by clients).
3208    *
3209    * To reiterate, we will pass these structures to and from the
3210    * client with a simple assignment or memcpy, so the format
3211    * must be identical to what rpcgen / the RFC defines.
3212    *)
3213
3214   (* guestfs_int_bool structure. *)
3215   pr "struct guestfs_int_bool {\n";
3216   pr "  int32_t i;\n";
3217   pr "  int32_t b;\n";
3218   pr "};\n";
3219   pr "\n";
3220
3221   (* LVM public structures. *)
3222   List.iter (
3223     function
3224     | typ, cols ->
3225         pr "struct guestfs_lvm_%s {\n" typ;
3226         List.iter (
3227           function
3228           | name, `String -> pr "  char *%s;\n" name
3229           | name, `UUID -> pr "  char %s[32]; /* this is NOT nul-terminated, be careful when printing */\n" name
3230           | name, `Bytes -> pr "  uint64_t %s;\n" name
3231           | name, `Int -> pr "  int64_t %s;\n" name
3232           | name, `OptPercent -> pr "  float %s; /* [0..100] or -1 */\n" name
3233         ) cols;
3234         pr "};\n";
3235         pr "\n";
3236         pr "struct guestfs_lvm_%s_list {\n" typ;
3237         pr "  uint32_t len;\n";
3238         pr "  struct guestfs_lvm_%s *val;\n" typ;
3239         pr "};\n";
3240         pr "\n"
3241   ) ["pv", pv_cols; "vg", vg_cols; "lv", lv_cols];
3242
3243   (* Stat structures. *)
3244   List.iter (
3245     function
3246     | typ, cols ->
3247         pr "struct guestfs_%s {\n" typ;
3248         List.iter (
3249           function
3250           | name, `Int -> pr "  int64_t %s;\n" name
3251         ) cols;
3252         pr "};\n";
3253         pr "\n"
3254   ) ["stat", stat_cols; "statvfs", statvfs_cols]
3255
3256 (* Generate the guestfs-actions.h file. *)
3257 and generate_actions_h () =
3258   generate_header CStyle LGPLv2;
3259   List.iter (
3260     fun (shortname, style, _, _, _, _, _) ->
3261       let name = "guestfs_" ^ shortname in
3262       generate_prototype ~single_line:true ~newline:true ~handle:"handle"
3263         name style
3264   ) all_functions
3265
3266 (* Generate the client-side dispatch stubs. *)
3267 and generate_client_actions () =
3268   generate_header CStyle LGPLv2;
3269
3270   pr "\
3271 #include <stdio.h>
3272 #include <stdlib.h>
3273
3274 #include \"guestfs.h\"
3275 #include \"guestfs_protocol.h\"
3276
3277 #define error guestfs_error
3278 #define perrorf guestfs_perrorf
3279 #define safe_malloc guestfs_safe_malloc
3280 #define safe_realloc guestfs_safe_realloc
3281 #define safe_strdup guestfs_safe_strdup
3282 #define safe_memdup guestfs_safe_memdup
3283
3284 /* Check the return message from a call for validity. */
3285 static int
3286 check_reply_header (guestfs_h *g,
3287                     const struct guestfs_message_header *hdr,
3288                     int proc_nr, int serial)
3289 {
3290   if (hdr->prog != GUESTFS_PROGRAM) {
3291     error (g, \"wrong program (%%d/%%d)\", hdr->prog, GUESTFS_PROGRAM);
3292     return -1;
3293   }
3294   if (hdr->vers != GUESTFS_PROTOCOL_VERSION) {
3295     error (g, \"wrong protocol version (%%d/%%d)\",
3296            hdr->vers, GUESTFS_PROTOCOL_VERSION);
3297     return -1;
3298   }
3299   if (hdr->direction != GUESTFS_DIRECTION_REPLY) {
3300     error (g, \"unexpected message direction (%%d/%%d)\",
3301            hdr->direction, GUESTFS_DIRECTION_REPLY);
3302     return -1;
3303   }
3304   if (hdr->proc != proc_nr) {
3305     error (g, \"unexpected procedure number (%%d/%%d)\", hdr->proc, proc_nr);
3306     return -1;
3307   }
3308   if (hdr->serial != serial) {
3309     error (g, \"unexpected serial (%%d/%%d)\", hdr->serial, serial);
3310     return -1;
3311   }
3312
3313   return 0;
3314 }
3315
3316 /* Check we are in the right state to run a high-level action. */
3317 static int
3318 check_state (guestfs_h *g, const char *caller)
3319 {
3320   if (!guestfs_is_ready (g)) {
3321     if (guestfs_is_config (g))
3322       error (g, \"%%s: call launch() before using this function\",
3323         caller);
3324     else if (guestfs_is_launching (g))
3325       error (g, \"%%s: call wait_ready() before using this function\",
3326         caller);
3327     else
3328       error (g, \"%%s called from the wrong state, %%d != READY\",
3329         caller, guestfs_get_state (g));
3330     return -1;
3331   }
3332   return 0;
3333 }
3334
3335 ";
3336
3337   (* Client-side stubs for each function. *)
3338   List.iter (
3339     fun (shortname, style, _, _, _, _, _) ->
3340       let name = "guestfs_" ^ shortname in
3341
3342       (* Generate the context struct which stores the high-level
3343        * state between callback functions.
3344        *)
3345       pr "struct %s_ctx {\n" shortname;
3346       pr "  /* This flag is set by the callbacks, so we know we've done\n";
3347       pr "   * the callbacks as expected, and in the right sequence.\n";
3348       pr "   * 0 = not called, 1 = reply_cb called.\n";
3349       pr "   */\n";
3350       pr "  int cb_sequence;\n";
3351       pr "  struct guestfs_message_header hdr;\n";
3352       pr "  struct guestfs_message_error err;\n";
3353       (match fst style with
3354        | RErr -> ()
3355        | RConstString _ ->
3356            failwithf "RConstString cannot be returned from a daemon function"
3357        | RInt _ | RInt64 _
3358        | RBool _ | RString _ | RStringList _
3359        | RIntBool _
3360        | RPVList _ | RVGList _ | RLVList _
3361        | RStat _ | RStatVFS _
3362        | RHashtable _ ->
3363            pr "  struct %s_ret ret;\n" name
3364       );
3365       pr "};\n";
3366       pr "\n";
3367
3368       (* Generate the reply callback function. *)
3369       pr "static void %s_reply_cb (guestfs_h *g, void *data, XDR *xdr)\n" shortname;
3370       pr "{\n";
3371       pr "  guestfs_main_loop *ml = guestfs_get_main_loop (g);\n";
3372       pr "  struct %s_ctx *ctx = (struct %s_ctx *) data;\n" shortname shortname;
3373       pr "\n";
3374       pr "  /* This should definitely not happen. */\n";
3375       pr "  if (ctx->cb_sequence != 0) {\n";
3376       pr "    ctx->cb_sequence = 9999;\n";
3377       pr "    error (g, \"%%s: internal error: reply callback called twice\", \"%s\");\n" name;
3378       pr "    return;\n";
3379       pr "  }\n";
3380       pr "\n";
3381       pr "  ml->main_loop_quit (ml, g);\n";
3382       pr "\n";
3383       pr "  if (!xdr_guestfs_message_header (xdr, &ctx->hdr)) {\n";
3384       pr "    error (g, \"%%s: failed to parse reply header\", \"%s\");\n" name;
3385       pr "    return;\n";
3386       pr "  }\n";
3387       pr "  if (ctx->hdr.status == GUESTFS_STATUS_ERROR) {\n";
3388       pr "    if (!xdr_guestfs_message_error (xdr, &ctx->err)) {\n";
3389       pr "      error (g, \"%%s: failed to parse reply error\", \"%s\");\n"
3390         name;
3391       pr "      return;\n";
3392       pr "    }\n";
3393       pr "    goto done;\n";
3394       pr "  }\n";
3395
3396       (match fst style with
3397        | RErr -> ()
3398        | RConstString _ ->
3399            failwithf "RConstString cannot be returned from a daemon function"
3400        | RInt _ | RInt64 _
3401        | RBool _ | RString _ | RStringList _
3402        | RIntBool _
3403        | RPVList _ | RVGList _ | RLVList _
3404        | RStat _ | RStatVFS _
3405        | RHashtable _ ->
3406             pr "  if (!xdr_%s_ret (xdr, &ctx->ret)) {\n" name;
3407             pr "    error (g, \"%%s: failed to parse reply\", \"%s\");\n" name;
3408             pr "    return;\n";
3409             pr "  }\n";
3410       );
3411
3412       pr " done:\n";
3413       pr "  ctx->cb_sequence = 1;\n";
3414       pr "}\n\n";
3415
3416       (* Generate the action stub. *)
3417       generate_prototype ~extern:false ~semicolon:false ~newline:true
3418         ~handle:"g" name style;
3419
3420       let error_code =
3421         match fst style with
3422         | RErr | RInt _ | RInt64 _ | RBool _ -> "-1"
3423         | RConstString _ ->
3424             failwithf "RConstString cannot be returned from a daemon function"
3425         | RString _ | RStringList _ | RIntBool _
3426         | RPVList _ | RVGList _ | RLVList _
3427         | RStat _ | RStatVFS _
3428         | RHashtable _ ->
3429             "NULL" in
3430
3431       pr "{\n";
3432
3433       (match snd style with
3434        | [] -> ()
3435        | _ -> pr "  struct %s_args args;\n" name
3436       );
3437
3438       pr "  struct %s_ctx ctx;\n" shortname;
3439       pr "  guestfs_main_loop *ml = guestfs_get_main_loop (g);\n";
3440       pr "  int serial;\n";
3441       pr "\n";
3442       pr "  if (check_state (g, \"%s\") == -1) return %s;\n" name error_code;
3443       pr "  guestfs_set_busy (g);\n";
3444       pr "\n";
3445       pr "  memset (&ctx, 0, sizeof ctx);\n";
3446       pr "\n";
3447
3448       (* Send the main header and arguments. *)
3449       (match snd style with
3450        | [] ->
3451            pr "  serial = guestfs__send_sync (g, GUESTFS_PROC_%s, NULL, NULL);\n"
3452              (String.uppercase shortname)
3453        | args ->
3454            List.iter (
3455              function
3456              | String n ->
3457                  pr "  args.%s = (char *) %s;\n" n n
3458              | OptString n ->
3459                  pr "  args.%s = %s ? (char **) &%s : NULL;\n" n n n
3460              | StringList n ->
3461                  pr "  args.%s.%s_val = (char **) %s;\n" n n n;
3462                  pr "  for (args.%s.%s_len = 0; %s[args.%s.%s_len]; args.%s.%s_len++) ;\n" n n n n n n n;
3463              | Bool n ->
3464                  pr "  args.%s = %s;\n" n n
3465              | Int n ->
3466                  pr "  args.%s = %s;\n" n n
3467              | FileIn _ | FileOut _ -> ()
3468            ) args;
3469            pr "  serial = guestfs__send_sync (g, GUESTFS_PROC_%s,\n"
3470              (String.uppercase shortname);
3471            pr "        (xdrproc_t) xdr_%s_args, (char *) &args);\n"
3472              name;
3473       );
3474       pr "  if (serial == -1) {\n";
3475       pr "    guestfs_end_busy (g);\n";
3476       pr "    return %s;\n" error_code;
3477       pr "  }\n";
3478       pr "\n";
3479
3480       (* Send any additional files (FileIn) requested. *)
3481       let need_read_reply_label = ref false in
3482       List.iter (
3483         function
3484         | FileIn n ->
3485             pr "  {\n";
3486             pr "    int r;\n";
3487             pr "\n";
3488             pr "    r = guestfs__send_file_sync (g, %s);\n" n;
3489             pr "    if (r == -1) {\n";
3490             pr "      guestfs_end_busy (g);\n";
3491             pr "      return %s;\n" error_code;
3492             pr "    }\n";
3493             pr "    if (r == -2) /* daemon cancelled */\n";
3494             pr "      goto read_reply;\n";
3495             need_read_reply_label := true;
3496             pr "  }\n";
3497             pr "\n";
3498         | _ -> ()
3499       ) (snd style);
3500
3501       (* Wait for the reply from the remote end. *)
3502       if !need_read_reply_label then pr " read_reply:\n";
3503       pr "  guestfs__switch_to_receiving (g);\n";
3504       pr "  ctx.cb_sequence = 0;\n";
3505       pr "  guestfs_set_reply_callback (g, %s_reply_cb, &ctx);\n" shortname;
3506       pr "  (void) ml->main_loop_run (ml, g);\n";
3507       pr "  guestfs_set_reply_callback (g, NULL, NULL);\n";
3508       pr "  if (ctx.cb_sequence != 1) {\n";
3509       pr "    error (g, \"%%s reply failed, see earlier error messages\", \"%s\");\n" name;
3510       pr "    guestfs_end_busy (g);\n";
3511       pr "    return %s;\n" error_code;
3512       pr "  }\n";
3513       pr "\n";
3514
3515       pr "  if (check_reply_header (g, &ctx.hdr, GUESTFS_PROC_%s, serial) == -1) {\n"
3516         (String.uppercase shortname);
3517       pr "    guestfs_end_busy (g);\n";
3518       pr "    return %s;\n" error_code;
3519       pr "  }\n";
3520       pr "\n";
3521
3522       pr "  if (ctx.hdr.status == GUESTFS_STATUS_ERROR) {\n";
3523       pr "    error (g, \"%%s\", ctx.err.error_message);\n";
3524       pr "    free (ctx.err.error_message);\n";
3525       pr "    guestfs_end_busy (g);\n";
3526       pr "    return %s;\n" error_code;
3527       pr "  }\n";
3528       pr "\n";
3529
3530       (* Expecting to receive further files (FileOut)? *)
3531       List.iter (
3532         function
3533         | FileOut n ->
3534             pr "  if (guestfs__receive_file_sync (g, %s) == -1) {\n" n;
3535             pr "    guestfs_end_busy (g);\n";
3536             pr "    return %s;\n" error_code;
3537             pr "  }\n";
3538             pr "\n";
3539         | _ -> ()
3540       ) (snd style);
3541
3542       pr "  guestfs_end_busy (g);\n";
3543
3544       (match fst style with
3545        | RErr -> pr "  return 0;\n"
3546        | RInt n | RInt64 n | RBool n ->
3547            pr "  return ctx.ret.%s;\n" n
3548        | RConstString _ ->
3549            failwithf "RConstString cannot be returned from a daemon function"
3550        | RString n ->
3551            pr "  return ctx.ret.%s; /* caller will free */\n" n
3552        | RStringList n | RHashtable n ->
3553            pr "  /* caller will free this, but we need to add a NULL entry */\n";
3554            pr "  ctx.ret.%s.%s_val =\n" n n;
3555            pr "    safe_realloc (g, ctx.ret.%s.%s_val,\n" n n;
3556            pr "                  sizeof (char *) * (ctx.ret.%s.%s_len + 1));\n"
3557              n n;
3558            pr "  ctx.ret.%s.%s_val[ctx.ret.%s.%s_len] = NULL;\n" n n n n;
3559            pr "  return ctx.ret.%s.%s_val;\n" n n
3560        | RIntBool _ ->
3561            pr "  /* caller with free this */\n";
3562            pr "  return safe_memdup (g, &ctx.ret, sizeof (ctx.ret));\n"
3563        | RPVList n | RVGList n | RLVList n
3564        | RStat n | RStatVFS n ->
3565            pr "  /* caller will free this */\n";
3566            pr "  return safe_memdup (g, &ctx.ret.%s, sizeof (ctx.ret.%s));\n" n n
3567       );
3568
3569       pr "}\n\n"
3570   ) daemon_functions
3571
3572 (* Generate daemon/actions.h. *)
3573 and generate_daemon_actions_h () =
3574   generate_header CStyle GPLv2;
3575
3576   pr "#include \"../src/guestfs_protocol.h\"\n";
3577   pr "\n";
3578
3579   List.iter (
3580     fun (name, style, _, _, _, _, _) ->
3581         generate_prototype
3582           ~single_line:true ~newline:true ~in_daemon:true ~prefix:"do_"
3583           name style;
3584   ) daemon_functions
3585
3586 (* Generate the server-side stubs. *)
3587 and generate_daemon_actions () =
3588   generate_header CStyle GPLv2;
3589
3590   pr "#include <config.h>\n";
3591   pr "\n";
3592   pr "#include <stdio.h>\n";
3593   pr "#include <stdlib.h>\n";
3594   pr "#include <string.h>\n";
3595   pr "#include <inttypes.h>\n";
3596   pr "#include <ctype.h>\n";
3597   pr "#include <rpc/types.h>\n";
3598   pr "#include <rpc/xdr.h>\n";
3599   pr "\n";
3600   pr "#include \"daemon.h\"\n";
3601   pr "#include \"../src/guestfs_protocol.h\"\n";
3602   pr "#include \"actions.h\"\n";
3603   pr "\n";
3604
3605   List.iter (
3606     fun (name, style, _, _, _, _, _) ->
3607       (* Generate server-side stubs. *)
3608       pr "static void %s_stub (XDR *xdr_in)\n" name;
3609       pr "{\n";
3610       let error_code =
3611         match fst style with
3612         | RErr | RInt _ -> pr "  int r;\n"; "-1"
3613         | RInt64 _ -> pr "  int64_t r;\n"; "-1"
3614         | RBool _ -> pr "  int r;\n"; "-1"
3615         | RConstString _ ->
3616             failwithf "RConstString cannot be returned from a daemon function"
3617         | RString _ -> pr "  char *r;\n"; "NULL"
3618         | RStringList _ | RHashtable _ -> pr "  char **r;\n"; "NULL"
3619         | RIntBool _ -> pr "  guestfs_%s_ret *r;\n" name; "NULL"
3620         | RPVList _ -> pr "  guestfs_lvm_int_pv_list *r;\n"; "NULL"
3621         | RVGList _ -> pr "  guestfs_lvm_int_vg_list *r;\n"; "NULL"
3622         | RLVList _ -> pr "  guestfs_lvm_int_lv_list *r;\n"; "NULL"
3623         | RStat _ -> pr "  guestfs_int_stat *r;\n"; "NULL"
3624         | RStatVFS _ -> pr "  guestfs_int_statvfs *r;\n"; "NULL" in
3625
3626       (match snd style with
3627        | [] -> ()
3628        | args ->
3629            pr "  struct guestfs_%s_args args;\n" name;
3630            List.iter (
3631              function
3632                (* Note we allow the string to be writable, in order to
3633                 * allow device name translation.  This is safe because
3634                 * we can modify the string (passed from RPC).
3635                 *)
3636              | String n
3637              | OptString n -> pr "  char *%s;\n" n
3638              | StringList n -> pr "  char **%s;\n" n
3639              | Bool n -> pr "  int %s;\n" n
3640              | Int n -> pr "  int %s;\n" n
3641              | FileIn _ | FileOut _ -> ()
3642            ) args
3643       );
3644       pr "\n";
3645
3646       (match snd style with
3647        | [] -> ()
3648        | args ->
3649            pr "  memset (&args, 0, sizeof args);\n";
3650            pr "\n";
3651            pr "  if (!xdr_guestfs_%s_args (xdr_in, &args)) {\n" name;
3652            pr "    reply_with_error (\"%%s: daemon failed to decode procedure arguments\", \"%s\");\n" name;
3653            pr "    return;\n";
3654            pr "  }\n";
3655            List.iter (
3656              function
3657              | String n -> pr "  %s = args.%s;\n" n n
3658              | OptString n -> pr "  %s = args.%s ? *args.%s : NULL;\n" n n n
3659              | StringList n ->
3660                  pr "  %s = realloc (args.%s.%s_val,\n" n n n;
3661                  pr "                sizeof (char *) * (args.%s.%s_len+1));\n" n n;
3662                  pr "  if (%s == NULL) {\n" n;
3663                  pr "    reply_with_perror (\"realloc\");\n";
3664                  pr "    goto done;\n";
3665                  pr "  }\n";
3666                  pr "  %s[args.%s.%s_len] = NULL;\n" n n n;
3667                  pr "  args.%s.%s_val = %s;\n" n n n;
3668              | Bool n -> pr "  %s = args.%s;\n" n n
3669              | Int n -> pr "  %s = args.%s;\n" n n
3670              | FileIn _ | FileOut _ -> ()
3671            ) args;
3672            pr "\n"
3673       );
3674
3675       (* Don't want to call the impl with any FileIn or FileOut
3676        * parameters, since these go "outside" the RPC protocol.
3677        *)
3678       let argsnofile =
3679         List.filter (function FileIn _ | FileOut _ -> false | _ -> true)
3680           (snd style) in
3681       pr "  r = do_%s " name;
3682       generate_call_args argsnofile;
3683       pr ";\n";
3684
3685       pr "  if (r == %s)\n" error_code;
3686       pr "    /* do_%s has already called reply_with_error */\n" name;
3687       pr "    goto done;\n";
3688       pr "\n";
3689
3690       (* If there are any FileOut parameters, then the impl must
3691        * send its own reply.
3692        *)
3693       let no_reply =
3694         List.exists (function FileOut _ -> true | _ -> false) (snd style) in
3695       if no_reply then
3696         pr "  /* do_%s has already sent a reply */\n" name
3697       else (
3698         match fst style with
3699         | RErr -> pr "  reply (NULL, NULL);\n"
3700         | RInt n | RInt64 n | RBool n ->
3701             pr "  struct guestfs_%s_ret ret;\n" name;
3702             pr "  ret.%s = r;\n" n;
3703             pr "  reply ((xdrproc_t) &xdr_guestfs_%s_ret, (char *) &ret);\n"
3704               name
3705         | RConstString _ ->
3706             failwithf "RConstString cannot be returned from a daemon function"
3707         | RString n ->
3708             pr "  struct guestfs_%s_ret ret;\n" name;
3709             pr "  ret.%s = r;\n" n;
3710             pr "  reply ((xdrproc_t) &xdr_guestfs_%s_ret, (char *) &ret);\n"
3711               name;
3712             pr "  free (r);\n"
3713         | RStringList n | RHashtable n ->
3714             pr "  struct guestfs_%s_ret ret;\n" name;
3715             pr "  ret.%s.%s_len = count_strings (r);\n" n n;
3716             pr "  ret.%s.%s_val = r;\n" n n;
3717             pr "  reply ((xdrproc_t) &xdr_guestfs_%s_ret, (char *) &ret);\n"
3718               name;
3719             pr "  free_strings (r);\n"
3720         | RIntBool _ ->
3721             pr "  reply ((xdrproc_t) xdr_guestfs_%s_ret, (char *) r);\n"
3722               name;
3723             pr "  xdr_free ((xdrproc_t) xdr_guestfs_%s_ret, (char *) r);\n" name
3724         | RPVList n | RVGList n | RLVList n
3725         | RStat n | RStatVFS n ->
3726             pr "  struct guestfs_%s_ret ret;\n" name;
3727             pr "  ret.%s = *r;\n" n;
3728             pr "  reply ((xdrproc_t) xdr_guestfs_%s_ret, (char *) &ret);\n"
3729               name;
3730             pr "  xdr_free ((xdrproc_t) xdr_guestfs_%s_ret, (char *) &ret);\n"
3731               name
3732       );
3733
3734       (* Free the args. *)
3735       (match snd style with
3736        | [] ->
3737            pr "done: ;\n";
3738        | _ ->
3739            pr "done:\n";
3740            pr "  xdr_free ((xdrproc_t) xdr_guestfs_%s_args, (char *) &args);\n"
3741              name
3742       );
3743
3744       pr "}\n\n";
3745   ) daemon_functions;
3746
3747   (* Dispatch function. *)
3748   pr "void dispatch_incoming_message (XDR *xdr_in)\n";
3749   pr "{\n";
3750   pr "  switch (proc_nr) {\n";
3751
3752   List.iter (
3753     fun (name, style, _, _, _, _, _) ->
3754         pr "    case GUESTFS_PROC_%s:\n" (String.uppercase name);
3755         pr "      %s_stub (xdr_in);\n" name;
3756         pr "      break;\n"
3757   ) daemon_functions;
3758
3759   pr "    default:\n";
3760   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";
3761   pr "  }\n";
3762   pr "}\n";
3763   pr "\n";
3764
3765   (* LVM columns and tokenization functions. *)
3766   (* XXX This generates crap code.  We should rethink how we
3767    * do this parsing.
3768    *)
3769   List.iter (
3770     function
3771     | typ, cols ->
3772         pr "static const char *lvm_%s_cols = \"%s\";\n"
3773           typ (String.concat "," (List.map fst cols));
3774         pr "\n";
3775
3776         pr "static int lvm_tokenize_%s (char *str, struct guestfs_lvm_int_%s *r)\n" typ typ;
3777         pr "{\n";
3778         pr "  char *tok, *p, *next;\n";
3779         pr "  int i, j;\n";
3780         pr "\n";
3781         (*
3782         pr "  fprintf (stderr, \"%%s: <<%%s>>\\n\", __func__, str);\n";
3783         pr "\n";
3784         *)
3785         pr "  if (!str) {\n";
3786         pr "    fprintf (stderr, \"%%s: failed: passed a NULL string\\n\", __func__);\n";
3787         pr "    return -1;\n";
3788         pr "  }\n";
3789         pr "  if (!*str || isspace (*str)) {\n";
3790         pr "    fprintf (stderr, \"%%s: failed: passed a empty string or one beginning with whitespace\\n\", __func__);\n";
3791         pr "    return -1;\n";
3792         pr "  }\n";
3793         pr "  tok = str;\n";
3794         List.iter (
3795           fun (name, coltype) ->
3796             pr "  if (!tok) {\n";
3797             pr "    fprintf (stderr, \"%%s: failed: string finished early, around token %%s\\n\", __func__, \"%s\");\n" name;
3798             pr "    return -1;\n";
3799             pr "  }\n";
3800             pr "  p = strchrnul (tok, ',');\n";
3801             pr "  if (*p) next = p+1; else next = NULL;\n";
3802             pr "  *p = '\\0';\n";
3803             (match coltype with
3804              | `String ->
3805                  pr "  r->%s = strdup (tok);\n" name;
3806                  pr "  if (r->%s == NULL) {\n" name;
3807                  pr "    perror (\"strdup\");\n";
3808                  pr "    return -1;\n";
3809                  pr "  }\n"
3810              | `UUID ->
3811                  pr "  for (i = j = 0; i < 32; ++j) {\n";
3812                  pr "    if (tok[j] == '\\0') {\n";
3813                  pr "      fprintf (stderr, \"%%s: failed to parse UUID from '%%s'\\n\", __func__, tok);\n";
3814                  pr "      return -1;\n";
3815                  pr "    } else if (tok[j] != '-')\n";
3816                  pr "      r->%s[i++] = tok[j];\n" name;
3817                  pr "  }\n";
3818              | `Bytes ->
3819                  pr "  if (sscanf (tok, \"%%\"SCNu64, &r->%s) != 1) {\n" name;
3820                  pr "    fprintf (stderr, \"%%s: failed to parse size '%%s' from token %%s\\n\", __func__, tok, \"%s\");\n" name;
3821                  pr "    return -1;\n";
3822                  pr "  }\n";
3823              | `Int ->
3824                  pr "  if (sscanf (tok, \"%%\"SCNi64, &r->%s) != 1) {\n" name;
3825                  pr "    fprintf (stderr, \"%%s: failed to parse int '%%s' from token %%s\\n\", __func__, tok, \"%s\");\n" name;
3826                  pr "    return -1;\n";
3827                  pr "  }\n";
3828              | `OptPercent ->
3829                  pr "  if (tok[0] == '\\0')\n";
3830                  pr "    r->%s = -1;\n" name;
3831                  pr "  else if (sscanf (tok, \"%%f\", &r->%s) != 1) {\n" name;
3832                  pr "    fprintf (stderr, \"%%s: failed to parse float '%%s' from token %%s\\n\", __func__, tok, \"%s\");\n" name;
3833                  pr "    return -1;\n";
3834                  pr "  }\n";
3835             );
3836             pr "  tok = next;\n";
3837         ) cols;
3838
3839         pr "  if (tok != NULL) {\n";
3840         pr "    fprintf (stderr, \"%%s: failed: extra tokens at end of string\\n\", __func__);\n";
3841         pr "    return -1;\n";
3842         pr "  }\n";
3843         pr "  return 0;\n";
3844         pr "}\n";
3845         pr "\n";
3846
3847         pr "guestfs_lvm_int_%s_list *\n" typ;
3848         pr "parse_command_line_%ss (void)\n" typ;
3849         pr "{\n";
3850         pr "  char *out, *err;\n";
3851         pr "  char *p, *pend;\n";
3852         pr "  int r, i;\n";
3853         pr "  guestfs_lvm_int_%s_list *ret;\n" typ;
3854         pr "  void *newp;\n";
3855         pr "\n";
3856         pr "  ret = malloc (sizeof *ret);\n";
3857         pr "  if (!ret) {\n";
3858         pr "    reply_with_perror (\"malloc\");\n";
3859         pr "    return NULL;\n";
3860         pr "  }\n";
3861         pr "\n";
3862         pr "  ret->guestfs_lvm_int_%s_list_len = 0;\n" typ;
3863         pr "  ret->guestfs_lvm_int_%s_list_val = NULL;\n" typ;
3864         pr "\n";
3865         pr "  r = command (&out, &err,\n";
3866         pr "           \"/sbin/lvm\", \"%ss\",\n" typ;
3867         pr "           \"-o\", lvm_%s_cols, \"--unbuffered\", \"--noheadings\",\n" typ;
3868         pr "           \"--nosuffix\", \"--separator\", \",\", \"--units\", \"b\", NULL);\n";
3869         pr "  if (r == -1) {\n";
3870         pr "    reply_with_error (\"%%s\", err);\n";
3871         pr "    free (out);\n";
3872         pr "    free (err);\n";
3873         pr "    free (ret);\n";
3874         pr "    return NULL;\n";
3875         pr "  }\n";
3876         pr "\n";
3877         pr "  free (err);\n";
3878         pr "\n";
3879         pr "  /* Tokenize each line of the output. */\n";
3880         pr "  p = out;\n";
3881         pr "  i = 0;\n";
3882         pr "  while (p) {\n";
3883         pr "    pend = strchr (p, '\\n');       /* Get the next line of output. */\n";
3884         pr "    if (pend) {\n";
3885         pr "      *pend = '\\0';\n";
3886         pr "      pend++;\n";
3887         pr "    }\n";
3888         pr "\n";
3889         pr "    while (*p && isspace (*p))      /* Skip any leading whitespace. */\n";
3890         pr "      p++;\n";
3891         pr "\n";
3892         pr "    if (!*p) {                      /* Empty line?  Skip it. */\n";
3893         pr "      p = pend;\n";
3894         pr "      continue;\n";
3895         pr "    }\n";
3896         pr "\n";
3897         pr "    /* Allocate some space to store this next entry. */\n";
3898         pr "    newp = realloc (ret->guestfs_lvm_int_%s_list_val,\n" typ;
3899         pr "                sizeof (guestfs_lvm_int_%s) * (i+1));\n" typ;
3900         pr "    if (newp == NULL) {\n";
3901         pr "      reply_with_perror (\"realloc\");\n";
3902         pr "      free (ret->guestfs_lvm_int_%s_list_val);\n" typ;
3903         pr "      free (ret);\n";
3904         pr "      free (out);\n";
3905         pr "      return NULL;\n";
3906         pr "    }\n";
3907         pr "    ret->guestfs_lvm_int_%s_list_val = newp;\n" typ;
3908         pr "\n";
3909         pr "    /* Tokenize the next entry. */\n";
3910         pr "    r = lvm_tokenize_%s (p, &ret->guestfs_lvm_int_%s_list_val[i]);\n" typ typ;
3911         pr "    if (r == -1) {\n";
3912         pr "      reply_with_error (\"failed to parse output of '%ss' command\");\n" typ;
3913         pr "      free (ret->guestfs_lvm_int_%s_list_val);\n" typ;
3914         pr "      free (ret);\n";
3915         pr "      free (out);\n";
3916         pr "      return NULL;\n";
3917         pr "    }\n";
3918         pr "\n";
3919         pr "    ++i;\n";
3920         pr "    p = pend;\n";
3921         pr "  }\n";
3922         pr "\n";
3923         pr "  ret->guestfs_lvm_int_%s_list_len = i;\n" typ;
3924         pr "\n";
3925         pr "  free (out);\n";
3926         pr "  return ret;\n";
3927         pr "}\n"
3928
3929   ) ["pv", pv_cols; "vg", vg_cols; "lv", lv_cols]
3930
3931 (* Generate the tests. *)
3932 and generate_tests () =
3933   generate_header CStyle GPLv2;
3934
3935   pr "\
3936 #include <stdio.h>
3937 #include <stdlib.h>
3938 #include <string.h>
3939 #include <unistd.h>
3940 #include <sys/types.h>
3941 #include <fcntl.h>
3942
3943 #include \"guestfs.h\"
3944
3945 static guestfs_h *g;
3946 static int suppress_error = 0;
3947
3948 static void print_error (guestfs_h *g, void *data, const char *msg)
3949 {
3950   if (!suppress_error)
3951     fprintf (stderr, \"%%s\\n\", msg);
3952 }
3953
3954 static void print_strings (char * const * const argv)
3955 {
3956   int argc;
3957
3958   for (argc = 0; argv[argc] != NULL; ++argc)
3959     printf (\"\\t%%s\\n\", argv[argc]);
3960 }
3961
3962 /*
3963 static void print_table (char * const * const argv)
3964 {
3965   int i;
3966
3967   for (i = 0; argv[i] != NULL; i += 2)
3968     printf (\"%%s: %%s\\n\", argv[i], argv[i+1]);
3969 }
3970 */
3971
3972 static void no_test_warnings (void)
3973 {
3974 ";
3975
3976   List.iter (
3977     function
3978     | name, _, _, _, [], _, _ ->
3979         pr "  fprintf (stderr, \"warning: \\\"guestfs_%s\\\" has no tests\\n\");\n" name
3980     | name, _, _, _, tests, _, _ -> ()
3981   ) all_functions;
3982
3983   pr "}\n";
3984   pr "\n";
3985
3986   (* Generate the actual tests.  Note that we generate the tests
3987    * in reverse order, deliberately, so that (in general) the
3988    * newest tests run first.  This makes it quicker and easier to
3989    * debug them.
3990    *)
3991   let test_names =
3992     List.map (
3993       fun (name, _, _, _, tests, _, _) ->
3994         mapi (generate_one_test name) tests
3995     ) (List.rev all_functions) in
3996   let test_names = List.concat test_names in
3997   let nr_tests = List.length test_names in
3998
3999   pr "\
4000 int main (int argc, char *argv[])
4001 {
4002   char c = 0;
4003   int failed = 0;
4004   const char *filename;
4005   int fd;
4006   int nr_tests, test_num = 0;
4007
4008   no_test_warnings ();
4009
4010   g = guestfs_create ();
4011   if (g == NULL) {
4012     printf (\"guestfs_create FAILED\\n\");
4013     exit (1);
4014   }
4015
4016   guestfs_set_error_handler (g, print_error, NULL);
4017
4018   guestfs_set_path (g, \"../appliance\");
4019
4020   filename = \"test1.img\";
4021   fd = open (filename, O_WRONLY|O_CREAT|O_NOCTTY|O_NONBLOCK|O_TRUNC, 0666);
4022   if (fd == -1) {
4023     perror (filename);
4024     exit (1);
4025   }
4026   if (lseek (fd, %d, SEEK_SET) == -1) {
4027     perror (\"lseek\");
4028     close (fd);
4029     unlink (filename);
4030     exit (1);
4031   }
4032   if (write (fd, &c, 1) == -1) {
4033     perror (\"write\");
4034     close (fd);
4035     unlink (filename);
4036     exit (1);
4037   }
4038   if (close (fd) == -1) {
4039     perror (filename);
4040     unlink (filename);
4041     exit (1);
4042   }
4043   if (guestfs_add_drive (g, filename) == -1) {
4044     printf (\"guestfs_add_drive %%s FAILED\\n\", filename);
4045     exit (1);
4046   }
4047
4048   filename = \"test2.img\";
4049   fd = open (filename, O_WRONLY|O_CREAT|O_NOCTTY|O_NONBLOCK|O_TRUNC, 0666);
4050   if (fd == -1) {
4051     perror (filename);
4052     exit (1);
4053   }
4054   if (lseek (fd, %d, SEEK_SET) == -1) {
4055     perror (\"lseek\");
4056     close (fd);
4057     unlink (filename);
4058     exit (1);
4059   }
4060   if (write (fd, &c, 1) == -1) {
4061     perror (\"write\");
4062     close (fd);
4063     unlink (filename);
4064     exit (1);
4065   }
4066   if (close (fd) == -1) {
4067     perror (filename);
4068     unlink (filename);
4069     exit (1);
4070   }
4071   if (guestfs_add_drive (g, filename) == -1) {
4072     printf (\"guestfs_add_drive %%s FAILED\\n\", filename);
4073     exit (1);
4074   }
4075
4076   filename = \"test3.img\";
4077   fd = open (filename, O_WRONLY|O_CREAT|O_NOCTTY|O_NONBLOCK|O_TRUNC, 0666);
4078   if (fd == -1) {
4079     perror (filename);
4080     exit (1);
4081   }
4082   if (lseek (fd, %d, SEEK_SET) == -1) {
4083     perror (\"lseek\");
4084     close (fd);
4085     unlink (filename);
4086     exit (1);
4087   }
4088   if (write (fd, &c, 1) == -1) {
4089     perror (\"write\");
4090     close (fd);
4091     unlink (filename);
4092     exit (1);
4093   }
4094   if (close (fd) == -1) {
4095     perror (filename);
4096     unlink (filename);
4097     exit (1);
4098   }
4099   if (guestfs_add_drive (g, filename) == -1) {
4100     printf (\"guestfs_add_drive %%s FAILED\\n\", filename);
4101     exit (1);
4102   }
4103
4104   if (guestfs_add_drive_ro (g, \"../images/test.sqsh\") == -1) {
4105     printf (\"guestfs_add_drive_ro ../images/test.sqsh FAILED\\n\");
4106     exit (1);
4107   }
4108
4109   if (guestfs_launch (g) == -1) {
4110     printf (\"guestfs_launch FAILED\\n\");
4111     exit (1);
4112   }
4113
4114   /* Set a timeout in case qemu hangs during launch (RHBZ#505329). */
4115   alarm (600);
4116
4117   if (guestfs_wait_ready (g) == -1) {
4118     printf (\"guestfs_wait_ready FAILED\\n\");
4119     exit (1);
4120   }
4121
4122   /* Cancel previous alarm. */
4123   alarm (0);
4124
4125   nr_tests = %d;
4126
4127 " (500 * 1024 * 1024) (50 * 1024 * 1024) (10 * 1024 * 1024) nr_tests;
4128
4129   iteri (
4130     fun i test_name ->
4131       pr "  test_num++;\n";
4132       pr "  printf (\"%%3d/%%3d %s\\n\", test_num, nr_tests);\n" test_name;
4133       pr "  if (%s () == -1) {\n" test_name;
4134       pr "    printf (\"%s FAILED\\n\");\n" test_name;
4135       pr "    failed++;\n";
4136       pr "  }\n";
4137   ) test_names;
4138   pr "\n";
4139
4140   pr "  guestfs_close (g);\n";
4141   pr "  unlink (\"test1.img\");\n";
4142   pr "  unlink (\"test2.img\");\n";
4143   pr "  unlink (\"test3.img\");\n";
4144   pr "\n";
4145
4146   pr "  if (failed > 0) {\n";
4147   pr "    printf (\"***** %%d / %%d tests FAILED *****\\n\", failed, nr_tests);\n";
4148   pr "    exit (1);\n";
4149   pr "  }\n";
4150   pr "\n";
4151
4152   pr "  exit (0);\n";
4153   pr "}\n"
4154
4155 and generate_one_test name i (init, prereq, test) =
4156   let test_name = sprintf "test_%s_%d" name i in
4157
4158   pr "\
4159 static int %s_skip (void)
4160 {
4161   const char *str;
4162
4163   str = getenv (\"SKIP_%s\");
4164   if (str && strcmp (str, \"1\") == 0) return 1;
4165   str = getenv (\"SKIP_TEST_%s\");
4166   if (str && strcmp (str, \"1\") == 0) return 1;
4167   return 0;
4168 }
4169
4170 " test_name (String.uppercase test_name) (String.uppercase name);
4171
4172   (match prereq with
4173    | Disabled | Always -> ()
4174    | If code | Unless code ->
4175        pr "static int %s_prereq (void)\n" test_name;
4176        pr "{\n";
4177        pr "  %s\n" code;
4178        pr "}\n";
4179        pr "\n";
4180   );
4181
4182   pr "\
4183 static int %s (void)
4184 {
4185   if (%s_skip ()) {
4186     printf (\"%%s skipped (reason: SKIP_TEST_* variable set)\\n\", \"%s\");
4187     return 0;
4188   }
4189
4190 " test_name test_name test_name;
4191
4192   (match prereq with
4193    | Disabled ->
4194        pr "  printf (\"%%s skipped (reason: test disabled in generator)\\n\", \"%s\");\n" test_name
4195    | If _ ->
4196        pr "  if (! %s_prereq ()) {\n" test_name;
4197        pr "    printf (\"%%s skipped (reason: test prerequisite)\\n\", \"%s\");\n" test_name;
4198        pr "    return 0;\n";
4199        pr "  }\n";
4200        pr "\n";
4201        generate_one_test_body name i test_name init test;
4202    | Unless _ ->
4203        pr "  if (%s_prereq ()) {\n" test_name;
4204        pr "    printf (\"%%s skipped (reason: test prerequisite)\\n\", \"%s\");\n" test_name;
4205        pr "    return 0;\n";
4206        pr "  }\n";
4207        pr "\n";
4208        generate_one_test_body name i test_name init test;
4209    | Always ->
4210        generate_one_test_body name i test_name init test
4211   );
4212
4213   pr "  return 0;\n";
4214   pr "}\n";
4215   pr "\n";
4216   test_name
4217
4218 and generate_one_test_body name i test_name init test =
4219   (match init with
4220    | InitNone
4221    | InitEmpty ->
4222        pr "  /* InitNone|InitEmpty for %s */\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    | InitBasicFS ->
4228        pr "  /* InitBasicFS for %s: create ext2 on /dev/sda1 */\n" test_name;
4229        List.iter (generate_test_command_call test_name)
4230          [["blockdev_setrw"; "/dev/sda"];
4231           ["umount_all"];
4232           ["lvm_remove_all"];
4233           ["sfdisk"; "/dev/sda"; "0"; "0"; "0"; ","];
4234           ["mkfs"; "ext2"; "/dev/sda1"];
4235           ["mount"; "/dev/sda1"; "/"]]
4236    | InitBasicFSonLVM ->
4237        pr "  /* InitBasicFSonLVM for %s: create ext2 on /dev/VG/LV */\n"
4238          test_name;
4239        List.iter (generate_test_command_call test_name)
4240          [["blockdev_setrw"; "/dev/sda"];
4241           ["umount_all"];
4242           ["lvm_remove_all"];
4243           ["sfdisk"; "/dev/sda"; "0"; "0"; "0"; ","];
4244           ["pvcreate"; "/dev/sda1"];
4245           ["vgcreate"; "VG"; "/dev/sda1"];
4246           ["lvcreate"; "LV"; "VG"; "8"];
4247           ["mkfs"; "ext2"; "/dev/VG/LV"];
4248           ["mount"; "/dev/VG/LV"; "/"]]
4249   );
4250
4251   let get_seq_last = function
4252     | [] ->
4253         failwithf "%s: you cannot use [] (empty list) when expecting a command"
4254           test_name
4255     | seq ->
4256         let seq = List.rev seq in
4257         List.rev (List.tl seq), List.hd seq
4258   in
4259
4260   match test with
4261   | TestRun seq ->
4262       pr "  /* TestRun for %s (%d) */\n" name i;
4263       List.iter (generate_test_command_call test_name) seq
4264   | TestOutput (seq, expected) ->
4265       pr "  /* TestOutput for %s (%d) */\n" name i;
4266       pr "  char expected[] = \"%s\";\n" (c_quote expected);
4267       let seq, last = get_seq_last seq in
4268       let test () =
4269         pr "    if (strcmp (r, expected) != 0) {\n";
4270         pr "      fprintf (stderr, \"%s: expected \\\"%%s\\\" but got \\\"%%s\\\"\\n\", expected, r);\n" test_name;
4271         pr "      return -1;\n";
4272         pr "    }\n"
4273       in
4274       List.iter (generate_test_command_call test_name) seq;
4275       generate_test_command_call ~test test_name last
4276   | TestOutputList (seq, expected) ->
4277       pr "  /* TestOutputList for %s (%d) */\n" name i;
4278       let seq, last = get_seq_last seq in
4279       let test () =
4280         iteri (
4281           fun i str ->
4282             pr "    if (!r[%d]) {\n" i;
4283             pr "      fprintf (stderr, \"%s: short list returned from command\\n\");\n" test_name;
4284             pr "      print_strings (r);\n";
4285             pr "      return -1;\n";
4286             pr "    }\n";
4287             pr "    {\n";
4288             pr "      char expected[] = \"%s\";\n" (c_quote str);
4289             pr "      if (strcmp (r[%d], expected) != 0) {\n" i;
4290             pr "        fprintf (stderr, \"%s: expected \\\"%%s\\\" but got \\\"%%s\\\"\\n\", expected, r[%d]);\n" test_name i;
4291             pr "        return -1;\n";
4292             pr "      }\n";
4293             pr "    }\n"
4294         ) expected;
4295         pr "    if (r[%d] != NULL) {\n" (List.length expected);
4296         pr "      fprintf (stderr, \"%s: extra elements returned from command\\n\");\n"
4297           test_name;
4298         pr "      print_strings (r);\n";
4299         pr "      return -1;\n";
4300         pr "    }\n"
4301       in
4302       List.iter (generate_test_command_call test_name) seq;
4303       generate_test_command_call ~test test_name last
4304   | TestOutputListOfDevices (seq, expected) ->
4305       pr "  /* TestOutputListOfDevices for %s (%d) */\n" name i;
4306       let seq, last = get_seq_last seq in
4307       let test () =
4308         iteri (
4309           fun i str ->
4310             pr "    if (!r[%d]) {\n" i;
4311             pr "      fprintf (stderr, \"%s: short list returned from command\\n\");\n" test_name;
4312             pr "      print_strings (r);\n";
4313             pr "      return -1;\n";
4314             pr "    }\n";
4315             pr "    {\n";
4316             pr "      char expected[] = \"%s\";\n" (c_quote str);
4317             pr "      r[%d][5] = 's';\n" i;
4318             pr "      if (strcmp (r[%d], expected) != 0) {\n" i;
4319             pr "        fprintf (stderr, \"%s: expected \\\"%%s\\\" but got \\\"%%s\\\"\\n\", expected, r[%d]);\n" test_name i;
4320             pr "        return -1;\n";
4321             pr "      }\n";
4322             pr "    }\n"
4323         ) expected;
4324         pr "    if (r[%d] != NULL) {\n" (List.length expected);
4325         pr "      fprintf (stderr, \"%s: extra elements returned from command\\n\");\n"
4326           test_name;
4327         pr "      print_strings (r);\n";
4328         pr "      return -1;\n";
4329         pr "    }\n"
4330       in
4331       List.iter (generate_test_command_call test_name) seq;
4332       generate_test_command_call ~test test_name last
4333   | TestOutputInt (seq, expected) ->
4334       pr "  /* TestOutputInt for %s (%d) */\n" name i;
4335       let seq, last = get_seq_last seq in
4336       let test () =
4337         pr "    if (r != %d) {\n" expected;
4338         pr "      fprintf (stderr, \"%s: expected %d but got %%d\\n\","
4339           test_name expected;
4340         pr "               (int) r);\n";
4341         pr "      return -1;\n";
4342         pr "    }\n"
4343       in
4344       List.iter (generate_test_command_call test_name) seq;
4345       generate_test_command_call ~test test_name last
4346   | TestOutputTrue seq ->
4347       pr "  /* TestOutputTrue for %s (%d) */\n" name i;
4348       let seq, last = get_seq_last seq in
4349       let test () =
4350         pr "    if (!r) {\n";
4351         pr "      fprintf (stderr, \"%s: expected true, got false\\n\");\n"
4352           test_name;
4353         pr "      return -1;\n";
4354         pr "    }\n"
4355       in
4356       List.iter (generate_test_command_call test_name) seq;
4357       generate_test_command_call ~test test_name last
4358   | TestOutputFalse seq ->
4359       pr "  /* TestOutputFalse for %s (%d) */\n" name i;
4360       let seq, last = get_seq_last seq in
4361       let test () =
4362         pr "    if (r) {\n";
4363         pr "      fprintf (stderr, \"%s: expected false, got true\\n\");\n"
4364           test_name;
4365         pr "      return -1;\n";
4366         pr "    }\n"
4367       in
4368       List.iter (generate_test_command_call test_name) seq;
4369       generate_test_command_call ~test test_name last
4370   | TestOutputLength (seq, expected) ->
4371       pr "  /* TestOutputLength for %s (%d) */\n" name i;
4372       let seq, last = get_seq_last seq in
4373       let test () =
4374         pr "    int j;\n";
4375         pr "    for (j = 0; j < %d; ++j)\n" expected;
4376         pr "      if (r[j] == NULL) {\n";
4377         pr "        fprintf (stderr, \"%s: short list returned\\n\");\n"
4378           test_name;
4379         pr "        print_strings (r);\n";
4380         pr "        return -1;\n";
4381         pr "      }\n";
4382         pr "    if (r[j] != NULL) {\n";
4383         pr "      fprintf (stderr, \"%s: long list returned\\n\");\n"
4384           test_name;
4385         pr "      print_strings (r);\n";
4386         pr "      return -1;\n";
4387         pr "    }\n"
4388       in
4389       List.iter (generate_test_command_call test_name) seq;
4390       generate_test_command_call ~test test_name last
4391   | TestOutputStruct (seq, checks) ->
4392       pr "  /* TestOutputStruct for %s (%d) */\n" name i;
4393       let seq, last = get_seq_last seq in
4394       let test () =
4395         List.iter (
4396           function
4397           | CompareWithInt (field, expected) ->
4398               pr "    if (r->%s != %d) {\n" field expected;
4399               pr "      fprintf (stderr, \"%s: %s was %%d, expected %d\\n\",\n"
4400                 test_name field expected;
4401               pr "               (int) r->%s);\n" field;
4402               pr "      return -1;\n";
4403               pr "    }\n"
4404           | CompareWithString (field, expected) ->
4405               pr "    if (strcmp (r->%s, \"%s\") != 0) {\n" field expected;
4406               pr "      fprintf (stderr, \"%s: %s was \"%%s\", expected \"%s\"\\n\",\n"
4407                 test_name field expected;
4408               pr "               r->%s);\n" field;
4409               pr "      return -1;\n";
4410               pr "    }\n"
4411           | CompareFieldsIntEq (field1, field2) ->
4412               pr "    if (r->%s != r->%s) {\n" field1 field2;
4413               pr "      fprintf (stderr, \"%s: %s (%%d) <> %s (%%d)\\n\",\n"
4414                 test_name field1 field2;
4415               pr "               (int) r->%s, (int) r->%s);\n" field1 field2;
4416               pr "      return -1;\n";
4417               pr "    }\n"
4418           | CompareFieldsStrEq (field1, field2) ->
4419               pr "    if (strcmp (r->%s, r->%s) != 0) {\n" field1 field2;
4420               pr "      fprintf (stderr, \"%s: %s (\"%%s\") <> %s (\"%%s\")\\n\",\n"
4421                 test_name field1 field2;
4422               pr "               r->%s, r->%s);\n" field1 field2;
4423               pr "      return -1;\n";
4424               pr "    }\n"
4425         ) checks
4426       in
4427       List.iter (generate_test_command_call test_name) seq;
4428       generate_test_command_call ~test test_name last
4429   | TestLastFail seq ->
4430       pr "  /* TestLastFail for %s (%d) */\n" name i;
4431       let seq, last = get_seq_last seq in
4432       List.iter (generate_test_command_call test_name) seq;
4433       generate_test_command_call test_name ~expect_error:true last
4434
4435 (* Generate the code to run a command, leaving the result in 'r'.
4436  * If you expect to get an error then you should set expect_error:true.
4437  *)
4438 and generate_test_command_call ?(expect_error = false) ?test test_name cmd =
4439   match cmd with
4440   | [] -> assert false
4441   | name :: args ->
4442       (* Look up the command to find out what args/ret it has. *)
4443       let style =
4444         try
4445           let _, style, _, _, _, _, _ =
4446             List.find (fun (n, _, _, _, _, _, _) -> n = name) all_functions in
4447           style
4448         with Not_found ->
4449           failwithf "%s: in test, command %s was not found" test_name name in
4450
4451       if List.length (snd style) <> List.length args then
4452         failwithf "%s: in test, wrong number of args given to %s"
4453           test_name name;
4454
4455       pr "  {\n";
4456
4457       List.iter (
4458         function
4459         | OptString n, "NULL" -> ()
4460         | String n, arg
4461         | OptString n, arg ->
4462             pr "    char %s[] = \"%s\";\n" n (c_quote arg);
4463         | Int _, _
4464         | Bool _, _
4465         | FileIn _, _ | FileOut _, _ -> ()
4466         | StringList n, arg ->
4467             let strs = string_split " " arg in
4468             iteri (
4469               fun i str ->
4470                 pr "    char %s_%d[] = \"%s\";\n" n i (c_quote str);
4471             ) strs;
4472             pr "    char *%s[] = {\n" n;
4473             iteri (
4474               fun i _ -> pr "      %s_%d,\n" n i
4475             ) strs;
4476             pr "      NULL\n";
4477             pr "    };\n";
4478       ) (List.combine (snd style) args);
4479
4480       let error_code =
4481         match fst style with
4482         | RErr | RInt _ | RBool _ -> pr "    int r;\n"; "-1"
4483         | RInt64 _ -> pr "    int64_t r;\n"; "-1"
4484         | RConstString _ -> pr "    const char *r;\n"; "NULL"
4485         | RString _ -> pr "    char *r;\n"; "NULL"
4486         | RStringList _ | RHashtable _ ->
4487             pr "    char **r;\n";
4488             pr "    int i;\n";
4489             "NULL"
4490         | RIntBool _ ->
4491             pr "    struct guestfs_int_bool *r;\n"; "NULL"
4492         | RPVList _ ->
4493             pr "    struct guestfs_lvm_pv_list *r;\n"; "NULL"
4494         | RVGList _ ->
4495             pr "    struct guestfs_lvm_vg_list *r;\n"; "NULL"
4496         | RLVList _ ->
4497             pr "    struct guestfs_lvm_lv_list *r;\n"; "NULL"
4498         | RStat _ ->
4499             pr "    struct guestfs_stat *r;\n"; "NULL"
4500         | RStatVFS _ ->
4501             pr "    struct guestfs_statvfs *r;\n"; "NULL" in
4502
4503       pr "    suppress_error = %d;\n" (if expect_error then 1 else 0);
4504       pr "    r = guestfs_%s (g" name;
4505
4506       (* Generate the parameters. *)
4507       List.iter (
4508         function
4509         | OptString _, "NULL" -> pr ", NULL"
4510         | String n, _
4511         | OptString n, _ ->
4512             pr ", %s" n
4513         | FileIn _, arg | FileOut _, arg ->
4514             pr ", \"%s\"" (c_quote arg)
4515         | StringList n, _ ->
4516             pr ", %s" n
4517         | Int _, arg ->
4518             let i =
4519               try int_of_string arg
4520               with Failure "int_of_string" ->
4521                 failwithf "%s: expecting an int, but got '%s'" test_name arg in
4522             pr ", %d" i
4523         | Bool _, arg ->
4524             let b = bool_of_string arg in pr ", %d" (if b then 1 else 0)
4525       ) (List.combine (snd style) args);
4526
4527       pr ");\n";
4528       if not expect_error then
4529         pr "    if (r == %s)\n" error_code
4530       else
4531         pr "    if (r != %s)\n" error_code;
4532       pr "      return -1;\n";
4533
4534       (* Insert the test code. *)
4535       (match test with
4536        | None -> ()
4537        | Some f -> f ()
4538       );
4539
4540       (match fst style with
4541        | RErr | RInt _ | RInt64 _ | RBool _ | RConstString _ -> ()
4542        | RString _ -> pr "    free (r);\n"
4543        | RStringList _ | RHashtable _ ->
4544            pr "    for (i = 0; r[i] != NULL; ++i)\n";
4545            pr "      free (r[i]);\n";
4546            pr "    free (r);\n"
4547        | RIntBool _ ->
4548            pr "    guestfs_free_int_bool (r);\n"
4549        | RPVList _ ->
4550            pr "    guestfs_free_lvm_pv_list (r);\n"
4551        | RVGList _ ->
4552            pr "    guestfs_free_lvm_vg_list (r);\n"
4553        | RLVList _ ->
4554            pr "    guestfs_free_lvm_lv_list (r);\n"
4555        | RStat _ | RStatVFS _ ->
4556            pr "    free (r);\n"
4557       );
4558
4559       pr "  }\n"
4560
4561 and c_quote str =
4562   let str = replace_str str "\r" "\\r" in
4563   let str = replace_str str "\n" "\\n" in
4564   let str = replace_str str "\t" "\\t" in
4565   let str = replace_str str "\000" "\\0" in
4566   str
4567
4568 (* Generate a lot of different functions for guestfish. *)
4569 and generate_fish_cmds () =
4570   generate_header CStyle GPLv2;
4571
4572   let all_functions =
4573     List.filter (
4574       fun (_, _, _, flags, _, _, _) -> not (List.mem NotInFish flags)
4575     ) all_functions in
4576   let all_functions_sorted =
4577     List.filter (
4578       fun (_, _, _, flags, _, _, _) -> not (List.mem NotInFish flags)
4579     ) all_functions_sorted in
4580
4581   pr "#include <stdio.h>\n";
4582   pr "#include <stdlib.h>\n";
4583   pr "#include <string.h>\n";
4584   pr "#include <inttypes.h>\n";
4585   pr "\n";
4586   pr "#include <guestfs.h>\n";
4587   pr "#include \"fish.h\"\n";
4588   pr "\n";
4589
4590   (* list_commands function, which implements guestfish -h *)
4591   pr "void list_commands (void)\n";
4592   pr "{\n";
4593   pr "  printf (\"    %%-16s     %%s\\n\", \"Command\", \"Description\");\n";
4594   pr "  list_builtin_commands ();\n";
4595   List.iter (
4596     fun (name, _, _, flags, _, shortdesc, _) ->
4597       let name = replace_char name '_' '-' in
4598       pr "  printf (\"%%-20s %%s\\n\", \"%s\", \"%s\");\n"
4599         name shortdesc
4600   ) all_functions_sorted;
4601   pr "  printf (\"    Use -h <cmd> / help <cmd> to show detailed help for a command.\\n\");\n";
4602   pr "}\n";
4603   pr "\n";
4604
4605   (* display_command function, which implements guestfish -h cmd *)
4606   pr "void display_command (const char *cmd)\n";
4607   pr "{\n";
4608   List.iter (
4609     fun (name, style, _, flags, _, shortdesc, longdesc) ->
4610       let name2 = replace_char name '_' '-' in
4611       let alias =
4612         try find_map (function FishAlias n -> Some n | _ -> None) flags
4613         with Not_found -> name in
4614       let longdesc = replace_str longdesc "C<guestfs_" "C<" in
4615       let synopsis =
4616         match snd style with
4617         | [] -> name2
4618         | args ->
4619             sprintf "%s <%s>"
4620               name2 (String.concat "> <" (List.map name_of_argt args)) in
4621
4622       let warnings =
4623         if List.mem ProtocolLimitWarning flags then
4624           ("\n\n" ^ protocol_limit_warning)
4625         else "" in
4626
4627       (* For DangerWillRobinson commands, we should probably have
4628        * guestfish prompt before allowing you to use them (especially
4629        * in interactive mode). XXX
4630        *)
4631       let warnings =
4632         warnings ^
4633           if List.mem DangerWillRobinson flags then
4634             ("\n\n" ^ danger_will_robinson)
4635           else "" in
4636
4637       let describe_alias =
4638         if name <> alias then
4639           sprintf "\n\nYou can use '%s' as an alias for this command." alias
4640         else "" in
4641
4642       pr "  if (";
4643       pr "strcasecmp (cmd, \"%s\") == 0" name;
4644       if name <> name2 then
4645         pr " || strcasecmp (cmd, \"%s\") == 0" name2;
4646       if name <> alias then
4647         pr " || strcasecmp (cmd, \"%s\") == 0" alias;
4648       pr ")\n";
4649       pr "    pod2text (\"%s - %s\", %S);\n"
4650         name2 shortdesc
4651         (" " ^ synopsis ^ "\n\n" ^ longdesc ^ warnings ^ describe_alias);
4652       pr "  else\n"
4653   ) all_functions;
4654   pr "    display_builtin_command (cmd);\n";
4655   pr "}\n";
4656   pr "\n";
4657
4658   (* print_{pv,vg,lv}_list functions *)
4659   List.iter (
4660     function
4661     | typ, cols ->
4662         pr "static void print_%s (struct guestfs_lvm_%s *%s)\n" typ typ typ;
4663         pr "{\n";
4664         pr "  int i;\n";
4665         pr "\n";
4666         List.iter (
4667           function
4668           | name, `String ->
4669               pr "  printf (\"%s: %%s\\n\", %s->%s);\n" name typ name
4670           | name, `UUID ->
4671               pr "  printf (\"%s: \");\n" name;
4672               pr "  for (i = 0; i < 32; ++i)\n";
4673               pr "    printf (\"%%c\", %s->%s[i]);\n" typ name;
4674               pr "  printf (\"\\n\");\n"
4675           | name, `Bytes ->
4676               pr "  printf (\"%s: %%\" PRIu64 \"\\n\", %s->%s);\n" name typ name
4677           | name, `Int ->
4678               pr "  printf (\"%s: %%\" PRIi64 \"\\n\", %s->%s);\n" name typ name
4679           | name, `OptPercent ->
4680               pr "  if (%s->%s >= 0) printf (\"%s: %%g %%%%\\n\", %s->%s);\n"
4681                 typ name name typ name;
4682               pr "  else printf (\"%s: \\n\");\n" name
4683         ) cols;
4684         pr "}\n";
4685         pr "\n";
4686         pr "static void print_%s_list (struct guestfs_lvm_%s_list *%ss)\n"
4687           typ typ typ;
4688         pr "{\n";
4689         pr "  int i;\n";
4690         pr "\n";
4691         pr "  for (i = 0; i < %ss->len; ++i)\n" typ;
4692         pr "    print_%s (&%ss->val[i]);\n" typ typ;
4693         pr "}\n";
4694         pr "\n";
4695   ) ["pv", pv_cols; "vg", vg_cols; "lv", lv_cols];
4696
4697   (* print_{stat,statvfs} functions *)
4698   List.iter (
4699     function
4700     | typ, cols ->
4701         pr "static void print_%s (struct guestfs_%s *%s)\n" typ typ typ;
4702         pr "{\n";
4703         List.iter (
4704           function
4705           | name, `Int ->
4706               pr "  printf (\"%s: %%\" PRIi64 \"\\n\", %s->%s);\n" name typ name
4707         ) cols;
4708         pr "}\n";
4709         pr "\n";
4710   ) ["stat", stat_cols; "statvfs", statvfs_cols];
4711
4712   (* run_<action> actions *)
4713   List.iter (
4714     fun (name, style, _, flags, _, _, _) ->
4715       pr "static int run_%s (const char *cmd, int argc, char *argv[])\n" name;
4716       pr "{\n";
4717       (match fst style with
4718        | RErr
4719        | RInt _
4720        | RBool _ -> pr "  int r;\n"
4721        | RInt64 _ -> pr "  int64_t r;\n"
4722        | RConstString _ -> pr "  const char *r;\n"
4723        | RString _ -> pr "  char *r;\n"
4724        | RStringList _ | RHashtable _ -> pr "  char **r;\n"
4725        | RIntBool _ -> pr "  struct guestfs_int_bool *r;\n"
4726        | RPVList _ -> pr "  struct guestfs_lvm_pv_list *r;\n"
4727        | RVGList _ -> pr "  struct guestfs_lvm_vg_list *r;\n"
4728        | RLVList _ -> pr "  struct guestfs_lvm_lv_list *r;\n"
4729        | RStat _ -> pr "  struct guestfs_stat *r;\n"
4730        | RStatVFS _ -> pr "  struct guestfs_statvfs *r;\n"
4731       );
4732       List.iter (
4733         function
4734         | String n
4735         | OptString n
4736         | FileIn n
4737         | FileOut n -> pr "  const char *%s;\n" n
4738         | StringList n -> pr "  char **%s;\n" n
4739         | Bool n -> pr "  int %s;\n" n
4740         | Int n -> pr "  int %s;\n" n
4741       ) (snd style);
4742
4743       (* Check and convert parameters. *)
4744       let argc_expected = List.length (snd style) in
4745       pr "  if (argc != %d) {\n" argc_expected;
4746       pr "    fprintf (stderr, \"%%s should have %d parameter(s)\\n\", cmd);\n"
4747         argc_expected;
4748       pr "    fprintf (stderr, \"type 'help %%s' for help on %%s\\n\", cmd, cmd);\n";
4749       pr "    return -1;\n";
4750       pr "  }\n";
4751       iteri (
4752         fun i ->
4753           function
4754           | String name -> pr "  %s = argv[%d];\n" name i
4755           | OptString name ->
4756               pr "  %s = strcmp (argv[%d], \"\") != 0 ? argv[%d] : NULL;\n"
4757                 name i i
4758           | FileIn name ->
4759               pr "  %s = strcmp (argv[%d], \"-\") != 0 ? argv[%d] : \"/dev/stdin\";\n"
4760                 name i i
4761           | FileOut name ->
4762               pr "  %s = strcmp (argv[%d], \"-\") != 0 ? argv[%d] : \"/dev/stdout\";\n"
4763                 name i i
4764           | StringList name ->
4765               pr "  %s = parse_string_list (argv[%d]);\n" name i
4766           | Bool name ->
4767               pr "  %s = is_true (argv[%d]) ? 1 : 0;\n" name i
4768           | Int name ->
4769               pr "  %s = atoi (argv[%d]);\n" name i
4770       ) (snd style);
4771
4772       (* Call C API function. *)
4773       let fn =
4774         try find_map (function FishAction n -> Some n | _ -> None) flags
4775         with Not_found -> sprintf "guestfs_%s" name in
4776       pr "  r = %s " fn;
4777       generate_call_args ~handle:"g" (snd style);
4778       pr ";\n";
4779
4780       (* Check return value for errors and display command results. *)
4781       (match fst style with
4782        | RErr -> pr "  return r;\n"
4783        | RInt _ ->
4784            pr "  if (r == -1) return -1;\n";
4785            pr "  printf (\"%%d\\n\", r);\n";
4786            pr "  return 0;\n"
4787        | RInt64 _ ->
4788            pr "  if (r == -1) return -1;\n";
4789            pr "  printf (\"%%\" PRIi64 \"\\n\", r);\n";
4790            pr "  return 0;\n"
4791        | RBool _ ->
4792            pr "  if (r == -1) return -1;\n";
4793            pr "  if (r) printf (\"true\\n\"); else printf (\"false\\n\");\n";
4794            pr "  return 0;\n"
4795        | RConstString _ ->
4796            pr "  if (r == NULL) return -1;\n";
4797            pr "  printf (\"%%s\\n\", r);\n";
4798            pr "  return 0;\n"
4799        | RString _ ->
4800            pr "  if (r == NULL) return -1;\n";
4801            pr "  printf (\"%%s\\n\", r);\n";
4802            pr "  free (r);\n";
4803            pr "  return 0;\n"
4804        | RStringList _ ->
4805            pr "  if (r == NULL) return -1;\n";
4806            pr "  print_strings (r);\n";
4807            pr "  free_strings (r);\n";
4808            pr "  return 0;\n"
4809        | RIntBool _ ->
4810            pr "  if (r == NULL) return -1;\n";
4811            pr "  printf (\"%%d, %%s\\n\", r->i,\n";
4812            pr "    r->b ? \"true\" : \"false\");\n";
4813            pr "  guestfs_free_int_bool (r);\n";
4814            pr "  return 0;\n"
4815        | RPVList _ ->
4816            pr "  if (r == NULL) return -1;\n";
4817            pr "  print_pv_list (r);\n";
4818            pr "  guestfs_free_lvm_pv_list (r);\n";
4819            pr "  return 0;\n"
4820        | RVGList _ ->
4821            pr "  if (r == NULL) return -1;\n";
4822            pr "  print_vg_list (r);\n";
4823            pr "  guestfs_free_lvm_vg_list (r);\n";
4824            pr "  return 0;\n"
4825        | RLVList _ ->
4826            pr "  if (r == NULL) return -1;\n";
4827            pr "  print_lv_list (r);\n";
4828            pr "  guestfs_free_lvm_lv_list (r);\n";
4829            pr "  return 0;\n"
4830        | RStat _ ->
4831            pr "  if (r == NULL) return -1;\n";
4832            pr "  print_stat (r);\n";
4833            pr "  free (r);\n";
4834            pr "  return 0;\n"
4835        | RStatVFS _ ->
4836            pr "  if (r == NULL) return -1;\n";
4837            pr "  print_statvfs (r);\n";
4838            pr "  free (r);\n";
4839            pr "  return 0;\n"
4840        | RHashtable _ ->
4841            pr "  if (r == NULL) return -1;\n";
4842            pr "  print_table (r);\n";
4843            pr "  free_strings (r);\n";
4844            pr "  return 0;\n"
4845       );
4846       pr "}\n";
4847       pr "\n"
4848   ) all_functions;
4849
4850   (* run_action function *)
4851   pr "int run_action (const char *cmd, int argc, char *argv[])\n";
4852   pr "{\n";
4853   List.iter (
4854     fun (name, _, _, flags, _, _, _) ->
4855       let name2 = replace_char name '_' '-' in
4856       let alias =
4857         try find_map (function FishAlias n -> Some n | _ -> None) flags
4858         with Not_found -> name in
4859       pr "  if (";
4860       pr "strcasecmp (cmd, \"%s\") == 0" name;
4861       if name <> name2 then
4862         pr " || strcasecmp (cmd, \"%s\") == 0" name2;
4863       if name <> alias then
4864         pr " || strcasecmp (cmd, \"%s\") == 0" alias;
4865       pr ")\n";
4866       pr "    return run_%s (cmd, argc, argv);\n" name;
4867       pr "  else\n";
4868   ) all_functions;
4869   pr "    {\n";
4870   pr "      fprintf (stderr, \"%%s: unknown command\\n\", cmd);\n";
4871   pr "      return -1;\n";
4872   pr "    }\n";
4873   pr "  return 0;\n";
4874   pr "}\n";
4875   pr "\n"
4876
4877 (* Readline completion for guestfish. *)
4878 and generate_fish_completion () =
4879   generate_header CStyle GPLv2;
4880
4881   let all_functions =
4882     List.filter (
4883       fun (_, _, _, flags, _, _, _) -> not (List.mem NotInFish flags)
4884     ) all_functions in
4885
4886   pr "\
4887 #include <config.h>
4888
4889 #include <stdio.h>
4890 #include <stdlib.h>
4891 #include <string.h>
4892
4893 #ifdef HAVE_LIBREADLINE
4894 #include <readline/readline.h>
4895 #endif
4896
4897 #include \"fish.h\"
4898
4899 #ifdef HAVE_LIBREADLINE
4900
4901 static const char *const commands[] = {
4902   BUILTIN_COMMANDS_FOR_COMPLETION,
4903 ";
4904
4905   (* Get the commands, including the aliases.  They don't need to be
4906    * sorted - the generator() function just does a dumb linear search.
4907    *)
4908   let commands =
4909     List.map (
4910       fun (name, _, _, flags, _, _, _) ->
4911         let name2 = replace_char name '_' '-' in
4912         let alias =
4913           try find_map (function FishAlias n -> Some n | _ -> None) flags
4914           with Not_found -> name in
4915
4916         if name <> alias then [name2; alias] else [name2]
4917     ) all_functions in
4918   let commands = List.flatten commands in
4919
4920   List.iter (pr "  \"%s\",\n") commands;
4921
4922   pr "  NULL
4923 };
4924
4925 static char *
4926 generator (const char *text, int state)
4927 {
4928   static int index, len;
4929   const char *name;
4930
4931   if (!state) {
4932     index = 0;
4933     len = strlen (text);
4934   }
4935
4936   rl_attempted_completion_over = 1;
4937
4938   while ((name = commands[index]) != NULL) {
4939     index++;
4940     if (strncasecmp (name, text, len) == 0)
4941       return strdup (name);
4942   }
4943
4944   return NULL;
4945 }
4946
4947 #endif /* HAVE_LIBREADLINE */
4948
4949 char **do_completion (const char *text, int start, int end)
4950 {
4951   char **matches = NULL;
4952
4953 #ifdef HAVE_LIBREADLINE
4954   rl_completion_append_character = ' ';
4955
4956   if (start == 0)
4957     matches = rl_completion_matches (text, generator);
4958   else if (complete_dest_paths)
4959     matches = rl_completion_matches (text, complete_dest_paths_generator);
4960 #endif
4961
4962   return matches;
4963 }
4964 ";
4965
4966 (* Generate the POD documentation for guestfish. *)
4967 and generate_fish_actions_pod () =
4968   let all_functions_sorted =
4969     List.filter (
4970       fun (_, _, _, flags, _, _, _) ->
4971         not (List.mem NotInFish flags || List.mem NotInDocs flags)
4972     ) all_functions_sorted in
4973
4974   let rex = Str.regexp "C<guestfs_\\([^>]+\\)>" in
4975
4976   List.iter (
4977     fun (name, style, _, flags, _, _, longdesc) ->
4978       let longdesc =
4979         Str.global_substitute rex (
4980           fun s ->
4981             let sub =
4982               try Str.matched_group 1 s
4983               with Not_found ->
4984                 failwithf "error substituting C<guestfs_...> in longdesc of function %s" name in
4985             "C<" ^ replace_char sub '_' '-' ^ ">"
4986         ) longdesc in
4987       let name = replace_char name '_' '-' in
4988       let alias =
4989         try find_map (function FishAlias n -> Some n | _ -> None) flags
4990         with Not_found -> name in
4991
4992       pr "=head2 %s" name;
4993       if name <> alias then
4994         pr " | %s" alias;
4995       pr "\n";
4996       pr "\n";
4997       pr " %s" name;
4998       List.iter (
4999         function
5000         | String n -> pr " %s" n
5001         | OptString n -> pr " %s" n
5002         | StringList n -> pr " '%s ...'" n
5003         | Bool _ -> pr " true|false"
5004         | Int n -> pr " %s" n
5005         | FileIn n | FileOut n -> pr " (%s|-)" n
5006       ) (snd style);
5007       pr "\n";
5008       pr "\n";
5009       pr "%s\n\n" longdesc;
5010
5011       if List.exists (function FileIn _ | FileOut _ -> true
5012                       | _ -> false) (snd style) then
5013         pr "Use C<-> instead of a filename to read/write from stdin/stdout.\n\n";
5014
5015       if List.mem ProtocolLimitWarning flags then
5016         pr "%s\n\n" protocol_limit_warning;
5017
5018       if List.mem DangerWillRobinson flags then
5019         pr "%s\n\n" danger_will_robinson
5020   ) all_functions_sorted
5021
5022 (* Generate a C function prototype. *)
5023 and generate_prototype ?(extern = true) ?(static = false) ?(semicolon = true)
5024     ?(single_line = false) ?(newline = false) ?(in_daemon = false)
5025     ?(prefix = "")
5026     ?handle name style =
5027   if extern then pr "extern ";
5028   if static then pr "static ";
5029   (match fst style with
5030    | RErr -> pr "int "
5031    | RInt _ -> pr "int "
5032    | RInt64 _ -> pr "int64_t "
5033    | RBool _ -> pr "int "
5034    | RConstString _ -> pr "const char *"
5035    | RString _ -> pr "char *"
5036    | RStringList _ | RHashtable _ -> pr "char **"
5037    | RIntBool _ ->
5038        if not in_daemon then pr "struct guestfs_int_bool *"
5039        else pr "guestfs_%s_ret *" name
5040    | RPVList _ ->
5041        if not in_daemon then pr "struct guestfs_lvm_pv_list *"
5042        else pr "guestfs_lvm_int_pv_list *"
5043    | RVGList _ ->
5044        if not in_daemon then pr "struct guestfs_lvm_vg_list *"
5045        else pr "guestfs_lvm_int_vg_list *"
5046    | RLVList _ ->
5047        if not in_daemon then pr "struct guestfs_lvm_lv_list *"
5048        else pr "guestfs_lvm_int_lv_list *"
5049    | RStat _ ->
5050        if not in_daemon then pr "struct guestfs_stat *"
5051        else pr "guestfs_int_stat *"
5052    | RStatVFS _ ->
5053        if not in_daemon then pr "struct guestfs_statvfs *"
5054        else pr "guestfs_int_statvfs *"
5055   );
5056   pr "%s%s (" prefix name;
5057   if handle = None && List.length (snd style) = 0 then
5058     pr "void"
5059   else (
5060     let comma = ref false in
5061     (match handle with
5062      | None -> ()
5063      | Some handle -> pr "guestfs_h *%s" handle; comma := true
5064     );
5065     let next () =
5066       if !comma then (
5067         if single_line then pr ", " else pr ",\n\t\t"
5068       );
5069       comma := true
5070     in
5071     List.iter (
5072       function
5073       | String n
5074       | OptString n ->
5075           next ();
5076           if not in_daemon then pr "const char *%s" n
5077           else pr "char *%s" n
5078       | StringList n ->
5079           next ();
5080           if not in_daemon then pr "char * const* const %s" n
5081           else pr "char **%s" n
5082       | Bool n -> next (); pr "int %s" n
5083       | Int n -> next (); pr "int %s" n
5084       | FileIn n
5085       | FileOut n ->
5086           if not in_daemon then (next (); pr "const char *%s" n)
5087     ) (snd style);
5088   );
5089   pr ")";
5090   if semicolon then pr ";";
5091   if newline then pr "\n"
5092
5093 (* Generate C call arguments, eg "(handle, foo, bar)" *)
5094 and generate_call_args ?handle args =
5095   pr "(";
5096   let comma = ref false in
5097   (match handle with
5098    | None -> ()
5099    | Some handle -> pr "%s" handle; comma := true
5100   );
5101   List.iter (
5102     fun arg ->
5103       if !comma then pr ", ";
5104       comma := true;
5105       pr "%s" (name_of_argt arg)
5106   ) args;
5107   pr ")"
5108
5109 (* Generate the OCaml bindings interface. *)
5110 and generate_ocaml_mli () =
5111   generate_header OCamlStyle LGPLv2;
5112
5113   pr "\
5114 (** For API documentation you should refer to the C API
5115     in the guestfs(3) manual page.  The OCaml API uses almost
5116     exactly the same calls. *)
5117
5118 type t
5119 (** A [guestfs_h] handle. *)
5120
5121 exception Error of string
5122 (** This exception is raised when there is an error. *)
5123
5124 val create : unit -> t
5125
5126 val close : t -> unit
5127 (** Handles are closed by the garbage collector when they become
5128     unreferenced, but callers can also call this in order to
5129     provide predictable cleanup. *)
5130
5131 ";
5132   generate_ocaml_lvm_structure_decls ();
5133
5134   generate_ocaml_stat_structure_decls ();
5135
5136   (* The actions. *)
5137   List.iter (
5138     fun (name, style, _, _, _, shortdesc, _) ->
5139       generate_ocaml_prototype name style;
5140       pr "(** %s *)\n" shortdesc;
5141       pr "\n"
5142   ) all_functions
5143
5144 (* Generate the OCaml bindings implementation. *)
5145 and generate_ocaml_ml () =
5146   generate_header OCamlStyle LGPLv2;
5147
5148   pr "\
5149 type t
5150 exception Error of string
5151 external create : unit -> t = \"ocaml_guestfs_create\"
5152 external close : t -> unit = \"ocaml_guestfs_close\"
5153
5154 let () =
5155   Callback.register_exception \"ocaml_guestfs_error\" (Error \"\")
5156
5157 ";
5158
5159   generate_ocaml_lvm_structure_decls ();
5160
5161   generate_ocaml_stat_structure_decls ();
5162
5163   (* The actions. *)
5164   List.iter (
5165     fun (name, style, _, _, _, shortdesc, _) ->
5166       generate_ocaml_prototype ~is_external:true name style;
5167   ) all_functions
5168
5169 (* Generate the OCaml bindings C implementation. *)
5170 and generate_ocaml_c () =
5171   generate_header CStyle LGPLv2;
5172
5173   pr "\
5174 #include <stdio.h>
5175 #include <stdlib.h>
5176 #include <string.h>
5177
5178 #include <caml/config.h>
5179 #include <caml/alloc.h>
5180 #include <caml/callback.h>
5181 #include <caml/fail.h>
5182 #include <caml/memory.h>
5183 #include <caml/mlvalues.h>
5184 #include <caml/signals.h>
5185
5186 #include <guestfs.h>
5187
5188 #include \"guestfs_c.h\"
5189
5190 /* Copy a hashtable of string pairs into an assoc-list.  We return
5191  * the list in reverse order, but hashtables aren't supposed to be
5192  * ordered anyway.
5193  */
5194 static CAMLprim value
5195 copy_table (char * const * argv)
5196 {
5197   CAMLparam0 ();
5198   CAMLlocal5 (rv, pairv, kv, vv, cons);
5199   int i;
5200
5201   rv = Val_int (0);
5202   for (i = 0; argv[i] != NULL; i += 2) {
5203     kv = caml_copy_string (argv[i]);
5204     vv = caml_copy_string (argv[i+1]);
5205     pairv = caml_alloc (2, 0);
5206     Store_field (pairv, 0, kv);
5207     Store_field (pairv, 1, vv);
5208     cons = caml_alloc (2, 0);
5209     Store_field (cons, 1, rv);
5210     rv = cons;
5211     Store_field (cons, 0, pairv);
5212   }
5213
5214   CAMLreturn (rv);
5215 }
5216
5217 ";
5218
5219   (* LVM struct copy functions. *)
5220   List.iter (
5221     fun (typ, cols) ->
5222       let has_optpercent_col =
5223         List.exists (function (_, `OptPercent) -> true | _ -> false) cols in
5224
5225       pr "static CAMLprim value\n";
5226       pr "copy_lvm_%s (const struct guestfs_lvm_%s *%s)\n" typ typ typ;
5227       pr "{\n";
5228       pr "  CAMLparam0 ();\n";
5229       if has_optpercent_col then
5230         pr "  CAMLlocal3 (rv, v, v2);\n"
5231       else
5232         pr "  CAMLlocal2 (rv, v);\n";
5233       pr "\n";
5234       pr "  rv = caml_alloc (%d, 0);\n" (List.length cols);
5235       iteri (
5236         fun i col ->
5237           (match col with
5238            | name, `String ->
5239                pr "  v = caml_copy_string (%s->%s);\n" typ name
5240            | name, `UUID ->
5241                pr "  v = caml_alloc_string (32);\n";
5242                pr "  memcpy (String_val (v), %s->%s, 32);\n" typ name
5243            | name, `Bytes
5244            | name, `Int ->
5245                pr "  v = caml_copy_int64 (%s->%s);\n" typ name
5246            | name, `OptPercent ->
5247                pr "  if (%s->%s >= 0) { /* Some %s */\n" typ name name;
5248                pr "    v2 = caml_copy_double (%s->%s);\n" typ name;
5249                pr "    v = caml_alloc (1, 0);\n";
5250                pr "    Store_field (v, 0, v2);\n";
5251                pr "  } else /* None */\n";
5252                pr "    v = Val_int (0);\n";
5253           );
5254           pr "  Store_field (rv, %d, v);\n" i
5255       ) cols;
5256       pr "  CAMLreturn (rv);\n";
5257       pr "}\n";
5258       pr "\n";
5259
5260       pr "static CAMLprim value\n";
5261       pr "copy_lvm_%s_list (const struct guestfs_lvm_%s_list *%ss)\n"
5262         typ typ typ;
5263       pr "{\n";
5264       pr "  CAMLparam0 ();\n";
5265       pr "  CAMLlocal2 (rv, v);\n";
5266       pr "  int i;\n";
5267       pr "\n";
5268       pr "  if (%ss->len == 0)\n" typ;
5269       pr "    CAMLreturn (Atom (0));\n";
5270       pr "  else {\n";
5271       pr "    rv = caml_alloc (%ss->len, 0);\n" typ;
5272       pr "    for (i = 0; i < %ss->len; ++i) {\n" typ;
5273       pr "      v = copy_lvm_%s (&%ss->val[i]);\n" typ typ;
5274       pr "      caml_modify (&Field (rv, i), v);\n";
5275       pr "    }\n";
5276       pr "    CAMLreturn (rv);\n";
5277       pr "  }\n";
5278       pr "}\n";
5279       pr "\n";
5280   ) ["pv", pv_cols; "vg", vg_cols; "lv", lv_cols];
5281
5282   (* Stat copy functions. *)
5283   List.iter (
5284     fun (typ, cols) ->
5285       pr "static CAMLprim value\n";
5286       pr "copy_%s (const struct guestfs_%s *%s)\n" typ typ typ;
5287       pr "{\n";
5288       pr "  CAMLparam0 ();\n";
5289       pr "  CAMLlocal2 (rv, v);\n";
5290       pr "\n";
5291       pr "  rv = caml_alloc (%d, 0);\n" (List.length cols);
5292       iteri (
5293         fun i col ->
5294           (match col with
5295            | name, `Int ->
5296                pr "  v = caml_copy_int64 (%s->%s);\n" typ name
5297           );
5298           pr "  Store_field (rv, %d, v);\n" i
5299       ) cols;
5300       pr "  CAMLreturn (rv);\n";
5301       pr "}\n";
5302       pr "\n";
5303   ) ["stat", stat_cols; "statvfs", statvfs_cols];
5304
5305   (* The wrappers. *)
5306   List.iter (
5307     fun (name, style, _, _, _, _, _) ->
5308       let params =
5309         "gv" :: List.map (fun arg -> name_of_argt arg ^ "v") (snd style) in
5310
5311       pr "CAMLprim value\n";
5312       pr "ocaml_guestfs_%s (value %s" name (List.hd params);
5313       List.iter (pr ", value %s") (List.tl params);
5314       pr ")\n";
5315       pr "{\n";
5316
5317       (match params with
5318        | [p1; p2; p3; p4; p5] ->
5319            pr "  CAMLparam5 (%s);\n" (String.concat ", " params)
5320        | p1 :: p2 :: p3 :: p4 :: p5 :: rest ->
5321            pr "  CAMLparam5 (%s);\n" (String.concat ", " [p1; p2; p3; p4; p5]);
5322            pr "  CAMLxparam%d (%s);\n"
5323              (List.length rest) (String.concat ", " rest)
5324        | ps ->
5325            pr "  CAMLparam%d (%s);\n" (List.length ps) (String.concat ", " ps)
5326       );
5327       pr "  CAMLlocal1 (rv);\n";
5328       pr "\n";
5329
5330       pr "  guestfs_h *g = Guestfs_val (gv);\n";
5331       pr "  if (g == NULL)\n";
5332       pr "    caml_failwith (\"%s: used handle after closing it\");\n" name;
5333       pr "\n";
5334
5335       List.iter (
5336         function
5337         | String n
5338         | FileIn n
5339         | FileOut n ->
5340             pr "  const char *%s = String_val (%sv);\n" n n
5341         | OptString n ->
5342             pr "  const char *%s =\n" n;
5343             pr "    %sv != Val_int (0) ? String_val (Field (%sv, 0)) : NULL;\n"
5344               n n
5345         | StringList n ->
5346             pr "  char **%s = ocaml_guestfs_strings_val (g, %sv);\n" n n
5347         | Bool n ->
5348             pr "  int %s = Bool_val (%sv);\n" n n
5349         | Int n ->
5350             pr "  int %s = Int_val (%sv);\n" n n
5351       ) (snd style);
5352       let error_code =
5353         match fst style with
5354         | RErr -> pr "  int r;\n"; "-1"
5355         | RInt _ -> pr "  int r;\n"; "-1"
5356         | RInt64 _ -> pr "  int64_t r;\n"; "-1"
5357         | RBool _ -> pr "  int r;\n"; "-1"
5358         | RConstString _ -> pr "  const char *r;\n"; "NULL"
5359         | RString _ -> pr "  char *r;\n"; "NULL"
5360         | RStringList _ ->
5361             pr "  int i;\n";
5362             pr "  char **r;\n";
5363             "NULL"
5364         | RIntBool _ ->
5365             pr "  struct guestfs_int_bool *r;\n"; "NULL"
5366         | RPVList _ ->
5367             pr "  struct guestfs_lvm_pv_list *r;\n"; "NULL"
5368         | RVGList _ ->
5369             pr "  struct guestfs_lvm_vg_list *r;\n"; "NULL"
5370         | RLVList _ ->
5371             pr "  struct guestfs_lvm_lv_list *r;\n"; "NULL"
5372         | RStat _ ->
5373             pr "  struct guestfs_stat *r;\n"; "NULL"
5374         | RStatVFS _ ->
5375             pr "  struct guestfs_statvfs *r;\n"; "NULL"
5376         | RHashtable _ ->
5377             pr "  int i;\n";
5378             pr "  char **r;\n";
5379             "NULL" in
5380       pr "\n";
5381
5382       pr "  caml_enter_blocking_section ();\n";
5383       pr "  r = guestfs_%s " name;
5384       generate_call_args ~handle:"g" (snd style);
5385       pr ";\n";
5386       pr "  caml_leave_blocking_section ();\n";
5387
5388       List.iter (
5389         function
5390         | StringList n ->
5391             pr "  ocaml_guestfs_free_strings (%s);\n" n;
5392         | String _ | OptString _ | Bool _ | Int _ | FileIn _ | FileOut _ -> ()
5393       ) (snd style);
5394
5395       pr "  if (r == %s)\n" error_code;
5396       pr "    ocaml_guestfs_raise_error (g, \"%s\");\n" name;
5397       pr "\n";
5398
5399       (match fst style with
5400        | RErr -> pr "  rv = Val_unit;\n"
5401        | RInt _ -> pr "  rv = Val_int (r);\n"
5402        | RInt64 _ ->
5403            pr "  rv = caml_copy_int64 (r);\n"
5404        | RBool _ -> pr "  rv = Val_bool (r);\n"
5405        | RConstString _ -> pr "  rv = caml_copy_string (r);\n"
5406        | RString _ ->
5407            pr "  rv = caml_copy_string (r);\n";
5408            pr "  free (r);\n"
5409        | RStringList _ ->
5410            pr "  rv = caml_copy_string_array ((const char **) r);\n";
5411            pr "  for (i = 0; r[i] != NULL; ++i) free (r[i]);\n";
5412            pr "  free (r);\n"
5413        | RIntBool _ ->
5414            pr "  rv = caml_alloc (2, 0);\n";
5415            pr "  Store_field (rv, 0, Val_int (r->i));\n";
5416            pr "  Store_field (rv, 1, Val_bool (r->b));\n";
5417            pr "  guestfs_free_int_bool (r);\n";
5418        | RPVList _ ->
5419            pr "  rv = copy_lvm_pv_list (r);\n";
5420            pr "  guestfs_free_lvm_pv_list (r);\n";
5421        | RVGList _ ->
5422            pr "  rv = copy_lvm_vg_list (r);\n";
5423            pr "  guestfs_free_lvm_vg_list (r);\n";
5424        | RLVList _ ->
5425            pr "  rv = copy_lvm_lv_list (r);\n";
5426            pr "  guestfs_free_lvm_lv_list (r);\n";
5427        | RStat _ ->
5428            pr "  rv = copy_stat (r);\n";
5429            pr "  free (r);\n";
5430        | RStatVFS _ ->
5431            pr "  rv = copy_statvfs (r);\n";
5432            pr "  free (r);\n";
5433        | RHashtable _ ->
5434            pr "  rv = copy_table (r);\n";
5435            pr "  for (i = 0; r[i] != NULL; ++i) free (r[i]);\n";
5436            pr "  free (r);\n";
5437       );
5438
5439       pr "  CAMLreturn (rv);\n";
5440       pr "}\n";
5441       pr "\n";
5442
5443       if List.length params > 5 then (
5444         pr "CAMLprim value\n";
5445         pr "ocaml_guestfs_%s_byte (value *argv, int argn)\n" name;
5446         pr "{\n";
5447         pr "  return ocaml_guestfs_%s (argv[0]" name;
5448         iteri (fun i _ -> pr ", argv[%d]" i) (List.tl params);
5449         pr ");\n";
5450         pr "}\n";
5451         pr "\n"
5452       )
5453   ) all_functions
5454
5455 and generate_ocaml_lvm_structure_decls () =
5456   List.iter (
5457     fun (typ, cols) ->
5458       pr "type lvm_%s = {\n" typ;
5459       List.iter (
5460         function
5461         | name, `String -> pr "  %s : string;\n" name
5462         | name, `UUID -> pr "  %s : string;\n" name
5463         | name, `Bytes -> pr "  %s : int64;\n" name
5464         | name, `Int -> pr "  %s : int64;\n" name
5465         | name, `OptPercent -> pr "  %s : float option;\n" name
5466       ) cols;
5467       pr "}\n";
5468       pr "\n"
5469   ) ["pv", pv_cols; "vg", vg_cols; "lv", lv_cols]
5470
5471 and generate_ocaml_stat_structure_decls () =
5472   List.iter (
5473     fun (typ, cols) ->
5474       pr "type %s = {\n" typ;
5475       List.iter (
5476         function
5477         | name, `Int -> pr "  %s : int64;\n" name
5478       ) cols;
5479       pr "}\n";
5480       pr "\n"
5481   ) ["stat", stat_cols; "statvfs", statvfs_cols]
5482
5483 and generate_ocaml_prototype ?(is_external = false) name style =
5484   if is_external then pr "external " else pr "val ";
5485   pr "%s : t -> " name;
5486   List.iter (
5487     function
5488     | String _ | FileIn _ | FileOut _ -> pr "string -> "
5489     | OptString _ -> pr "string option -> "
5490     | StringList _ -> pr "string array -> "
5491     | Bool _ -> pr "bool -> "
5492     | Int _ -> pr "int -> "
5493   ) (snd style);
5494   (match fst style with
5495    | RErr -> pr "unit" (* all errors are turned into exceptions *)
5496    | RInt _ -> pr "int"
5497    | RInt64 _ -> pr "int64"
5498    | RBool _ -> pr "bool"
5499    | RConstString _ -> pr "string"
5500    | RString _ -> pr "string"
5501    | RStringList _ -> pr "string array"
5502    | RIntBool _ -> pr "int * bool"
5503    | RPVList _ -> pr "lvm_pv array"
5504    | RVGList _ -> pr "lvm_vg array"
5505    | RLVList _ -> pr "lvm_lv array"
5506    | RStat _ -> pr "stat"
5507    | RStatVFS _ -> pr "statvfs"
5508    | RHashtable _ -> pr "(string * string) list"
5509   );
5510   if is_external then (
5511     pr " = ";
5512     if List.length (snd style) + 1 > 5 then
5513       pr "\"ocaml_guestfs_%s_byte\" " name;
5514     pr "\"ocaml_guestfs_%s\"" name
5515   );
5516   pr "\n"
5517
5518 (* Generate Perl xs code, a sort of crazy variation of C with macros. *)
5519 and generate_perl_xs () =
5520   generate_header CStyle LGPLv2;
5521
5522   pr "\
5523 #include \"EXTERN.h\"
5524 #include \"perl.h\"
5525 #include \"XSUB.h\"
5526
5527 #include <guestfs.h>
5528
5529 #ifndef PRId64
5530 #define PRId64 \"lld\"
5531 #endif
5532
5533 static SV *
5534 my_newSVll(long long val) {
5535 #ifdef USE_64_BIT_ALL
5536   return newSViv(val);
5537 #else
5538   char buf[100];
5539   int len;
5540   len = snprintf(buf, 100, \"%%\" PRId64, val);
5541   return newSVpv(buf, len);
5542 #endif
5543 }
5544
5545 #ifndef PRIu64
5546 #define PRIu64 \"llu\"
5547 #endif
5548
5549 static SV *
5550 my_newSVull(unsigned long long val) {
5551 #ifdef USE_64_BIT_ALL
5552   return newSVuv(val);
5553 #else
5554   char buf[100];
5555   int len;
5556   len = snprintf(buf, 100, \"%%\" PRIu64, val);
5557   return newSVpv(buf, len);
5558 #endif
5559 }
5560
5561 /* http://www.perlmonks.org/?node_id=680842 */
5562 static char **
5563 XS_unpack_charPtrPtr (SV *arg) {
5564   char **ret;
5565   AV *av;
5566   I32 i;
5567
5568   if (!arg || !SvOK (arg) || !SvROK (arg) || SvTYPE (SvRV (arg)) != SVt_PVAV)
5569     croak (\"array reference expected\");
5570
5571   av = (AV *)SvRV (arg);
5572   ret = malloc ((av_len (av) + 1 + 1) * sizeof (char *));
5573   if (!ret)
5574     croak (\"malloc failed\");
5575
5576   for (i = 0; i <= av_len (av); i++) {
5577     SV **elem = av_fetch (av, i, 0);
5578
5579     if (!elem || !*elem)
5580       croak (\"missing element in list\");
5581
5582     ret[i] = SvPV_nolen (*elem);
5583   }
5584
5585   ret[i] = NULL;
5586
5587   return ret;
5588 }
5589
5590 MODULE = Sys::Guestfs  PACKAGE = Sys::Guestfs
5591
5592 PROTOTYPES: ENABLE
5593
5594 guestfs_h *
5595 _create ()
5596    CODE:
5597       RETVAL = guestfs_create ();
5598       if (!RETVAL)
5599         croak (\"could not create guestfs handle\");
5600       guestfs_set_error_handler (RETVAL, NULL, NULL);
5601  OUTPUT:
5602       RETVAL
5603
5604 void
5605 DESTROY (g)
5606       guestfs_h *g;
5607  PPCODE:
5608       guestfs_close (g);
5609
5610 ";
5611
5612   List.iter (
5613     fun (name, style, _, _, _, _, _) ->
5614       (match fst style with
5615        | RErr -> pr "void\n"
5616        | RInt _ -> pr "SV *\n"
5617        | RInt64 _ -> pr "SV *\n"
5618        | RBool _ -> pr "SV *\n"
5619        | RConstString _ -> pr "SV *\n"
5620        | RString _ -> pr "SV *\n"
5621        | RStringList _
5622        | RIntBool _
5623        | RPVList _ | RVGList _ | RLVList _
5624        | RStat _ | RStatVFS _
5625        | RHashtable _ ->
5626            pr "void\n" (* all lists returned implictly on the stack *)
5627       );
5628       (* Call and arguments. *)
5629       pr "%s " name;
5630       generate_call_args ~handle:"g" (snd style);
5631       pr "\n";
5632       pr "      guestfs_h *g;\n";
5633       iteri (
5634         fun i ->
5635           function
5636           | String n | FileIn n | FileOut n -> pr "      char *%s;\n" n
5637           | OptString n ->
5638               (* http://www.perlmonks.org/?node_id=554277
5639                * Note that the implicit handle argument means we have
5640                * to add 1 to the ST(x) operator.
5641                *)
5642               pr "      char *%s = SvOK(ST(%d)) ? SvPV_nolen(ST(%d)) : NULL;\n" n (i+1) (i+1)
5643           | StringList n -> pr "      char **%s;\n" n
5644           | Bool n -> pr "      int %s;\n" n
5645           | Int n -> pr "      int %s;\n" n
5646       ) (snd style);
5647
5648       let do_cleanups () =
5649         List.iter (
5650           function
5651           | String _ | OptString _ | Bool _ | Int _
5652           | FileIn _ | FileOut _ -> ()
5653           | StringList n -> pr "      free (%s);\n" n
5654         ) (snd style)
5655       in
5656
5657       (* Code. *)
5658       (match fst style with
5659        | RErr ->
5660            pr "PREINIT:\n";
5661            pr "      int r;\n";
5662            pr " PPCODE:\n";
5663            pr "      r = guestfs_%s " name;
5664            generate_call_args ~handle:"g" (snd style);
5665            pr ";\n";
5666            do_cleanups ();
5667            pr "      if (r == -1)\n";
5668            pr "        croak (\"%s: %%s\", guestfs_last_error (g));\n" name;
5669        | RInt n
5670        | RBool n ->
5671            pr "PREINIT:\n";
5672            pr "      int %s;\n" n;
5673            pr "   CODE:\n";
5674            pr "      %s = guestfs_%s " n name;
5675            generate_call_args ~handle:"g" (snd style);
5676            pr ";\n";
5677            do_cleanups ();
5678            pr "      if (%s == -1)\n" n;
5679            pr "        croak (\"%s: %%s\", guestfs_last_error (g));\n" name;
5680            pr "      RETVAL = newSViv (%s);\n" n;
5681            pr " OUTPUT:\n";
5682            pr "      RETVAL\n"
5683        | RInt64 n ->
5684            pr "PREINIT:\n";
5685            pr "      int64_t %s;\n" n;
5686            pr "   CODE:\n";
5687            pr "      %s = guestfs_%s " n name;
5688            generate_call_args ~handle:"g" (snd style);
5689            pr ";\n";
5690            do_cleanups ();
5691            pr "      if (%s == -1)\n" n;
5692            pr "        croak (\"%s: %%s\", guestfs_last_error (g));\n" name;
5693            pr "      RETVAL = my_newSVll (%s);\n" n;
5694            pr " OUTPUT:\n";
5695            pr "      RETVAL\n"
5696        | RConstString n ->
5697            pr "PREINIT:\n";
5698            pr "      const char *%s;\n" n;
5699            pr "   CODE:\n";
5700            pr "      %s = guestfs_%s " n name;
5701            generate_call_args ~handle:"g" (snd style);
5702            pr ";\n";
5703            do_cleanups ();
5704            pr "      if (%s == NULL)\n" n;
5705            pr "        croak (\"%s: %%s\", guestfs_last_error (g));\n" name;
5706            pr "      RETVAL = newSVpv (%s, 0);\n" n;
5707            pr " OUTPUT:\n";
5708            pr "      RETVAL\n"
5709        | RString n ->
5710            pr "PREINIT:\n";
5711            pr "      char *%s;\n" n;
5712            pr "   CODE:\n";
5713            pr "      %s = guestfs_%s " n name;
5714            generate_call_args ~handle:"g" (snd style);
5715            pr ";\n";
5716            do_cleanups ();
5717            pr "      if (%s == NULL)\n" n;
5718            pr "        croak (\"%s: %%s\", guestfs_last_error (g));\n" name;
5719            pr "      RETVAL = newSVpv (%s, 0);\n" n;
5720            pr "      free (%s);\n" n;
5721            pr " OUTPUT:\n";
5722            pr "      RETVAL\n"
5723        | RStringList n | RHashtable n ->
5724            pr "PREINIT:\n";
5725            pr "      char **%s;\n" n;
5726            pr "      int i, n;\n";
5727            pr " PPCODE:\n";
5728            pr "      %s = guestfs_%s " n name;
5729            generate_call_args ~handle:"g" (snd style);
5730            pr ";\n";
5731            do_cleanups ();
5732            pr "      if (%s == NULL)\n" n;
5733            pr "        croak (\"%s: %%s\", guestfs_last_error (g));\n" name;
5734            pr "      for (n = 0; %s[n] != NULL; ++n) /**/;\n" n;
5735            pr "      EXTEND (SP, n);\n";
5736            pr "      for (i = 0; i < n; ++i) {\n";
5737            pr "        PUSHs (sv_2mortal (newSVpv (%s[i], 0)));\n" n;
5738            pr "        free (%s[i]);\n" n;
5739            pr "      }\n";
5740            pr "      free (%s);\n" n;
5741        | RIntBool _ ->
5742            pr "PREINIT:\n";
5743            pr "      struct guestfs_int_bool *r;\n";
5744            pr " PPCODE:\n";
5745            pr "      r = guestfs_%s " name;
5746            generate_call_args ~handle:"g" (snd style);
5747            pr ";\n";
5748            do_cleanups ();
5749            pr "      if (r == NULL)\n";
5750            pr "        croak (\"%s: %%s\", guestfs_last_error (g));\n" name;
5751            pr "      EXTEND (SP, 2);\n";
5752            pr "      PUSHs (sv_2mortal (newSViv (r->i)));\n";
5753            pr "      PUSHs (sv_2mortal (newSViv (r->b)));\n";
5754            pr "      guestfs_free_int_bool (r);\n";
5755        | RPVList n ->
5756            generate_perl_lvm_code "pv" pv_cols name style n do_cleanups
5757        | RVGList n ->
5758            generate_perl_lvm_code "vg" vg_cols name style n do_cleanups
5759        | RLVList n ->
5760            generate_perl_lvm_code "lv" lv_cols name style n do_cleanups
5761        | RStat n ->
5762            generate_perl_stat_code "stat" stat_cols name style n do_cleanups
5763        | RStatVFS n ->
5764            generate_perl_stat_code
5765              "statvfs" statvfs_cols name style n do_cleanups
5766       );
5767
5768       pr "\n"
5769   ) all_functions
5770
5771 and generate_perl_lvm_code typ cols name style n do_cleanups =
5772   pr "PREINIT:\n";
5773   pr "      struct guestfs_lvm_%s_list *%s;\n" typ n;
5774   pr "      int i;\n";
5775   pr "      HV *hv;\n";
5776   pr " PPCODE:\n";
5777   pr "      %s = guestfs_%s " n name;
5778   generate_call_args ~handle:"g" (snd style);
5779   pr ";\n";
5780   do_cleanups ();
5781   pr "      if (%s == NULL)\n" n;
5782   pr "        croak (\"%s: %%s\", guestfs_last_error (g));\n" name;
5783   pr "      EXTEND (SP, %s->len);\n" n;
5784   pr "      for (i = 0; i < %s->len; ++i) {\n" n;
5785   pr "        hv = newHV ();\n";
5786   List.iter (
5787     function
5788     | name, `String ->
5789         pr "        (void) hv_store (hv, \"%s\", %d, newSVpv (%s->val[i].%s, 0), 0);\n"
5790           name (String.length name) n name
5791     | name, `UUID ->
5792         pr "        (void) hv_store (hv, \"%s\", %d, newSVpv (%s->val[i].%s, 32), 0);\n"
5793           name (String.length name) n name
5794     | name, `Bytes ->
5795         pr "        (void) hv_store (hv, \"%s\", %d, my_newSVull (%s->val[i].%s), 0);\n"
5796           name (String.length name) n name
5797     | name, `Int ->
5798         pr "        (void) hv_store (hv, \"%s\", %d, my_newSVll (%s->val[i].%s), 0);\n"
5799           name (String.length name) n name
5800     | name, `OptPercent ->
5801         pr "        (void) hv_store (hv, \"%s\", %d, newSVnv (%s->val[i].%s), 0);\n"
5802           name (String.length name) n name
5803   ) cols;
5804   pr "        PUSHs (sv_2mortal ((SV *) hv));\n";
5805   pr "      }\n";
5806   pr "      guestfs_free_lvm_%s_list (%s);\n" typ n
5807
5808 and generate_perl_stat_code typ cols name style n do_cleanups =
5809   pr "PREINIT:\n";
5810   pr "      struct guestfs_%s *%s;\n" typ n;
5811   pr " PPCODE:\n";
5812   pr "      %s = guestfs_%s " n name;
5813   generate_call_args ~handle:"g" (snd style);
5814   pr ";\n";
5815   do_cleanups ();
5816   pr "      if (%s == NULL)\n" n;
5817   pr "        croak (\"%s: %%s\", guestfs_last_error (g));\n" name;
5818   pr "      EXTEND (SP, %d);\n" (List.length cols);
5819   List.iter (
5820     function
5821     | name, `Int ->
5822         pr "      PUSHs (sv_2mortal (my_newSVll (%s->%s)));\n" n name
5823   ) cols;
5824   pr "      free (%s);\n" n
5825
5826 (* Generate Sys/Guestfs.pm. *)
5827 and generate_perl_pm () =
5828   generate_header HashStyle LGPLv2;
5829
5830   pr "\
5831 =pod
5832
5833 =head1 NAME
5834
5835 Sys::Guestfs - Perl bindings for libguestfs
5836
5837 =head1 SYNOPSIS
5838
5839  use Sys::Guestfs;
5840  
5841  my $h = Sys::Guestfs->new ();
5842  $h->add_drive ('guest.img');
5843  $h->launch ();
5844  $h->wait_ready ();
5845  $h->mount ('/dev/sda1', '/');
5846  $h->touch ('/hello');
5847  $h->sync ();
5848
5849 =head1 DESCRIPTION
5850
5851 The C<Sys::Guestfs> module provides a Perl XS binding to the
5852 libguestfs API for examining and modifying virtual machine
5853 disk images.
5854
5855 Amongst the things this is good for: making batch configuration
5856 changes to guests, getting disk used/free statistics (see also:
5857 virt-df), migrating between virtualization systems (see also:
5858 virt-p2v), performing partial backups, performing partial guest
5859 clones, cloning guests and changing registry/UUID/hostname info, and
5860 much else besides.
5861
5862 Libguestfs uses Linux kernel and qemu code, and can access any type of
5863 guest filesystem that Linux and qemu can, including but not limited
5864 to: ext2/3/4, btrfs, FAT and NTFS, LVM, many different disk partition
5865 schemes, qcow, qcow2, vmdk.
5866
5867 Libguestfs provides ways to enumerate guest storage (eg. partitions,
5868 LVs, what filesystem is in each LV, etc.).  It can also run commands
5869 in the context of the guest.  Also you can access filesystems over FTP.
5870
5871 =head1 ERRORS
5872
5873 All errors turn into calls to C<croak> (see L<Carp(3)>).
5874
5875 =head1 METHODS
5876
5877 =over 4
5878
5879 =cut
5880
5881 package Sys::Guestfs;
5882
5883 use strict;
5884 use warnings;
5885
5886 require XSLoader;
5887 XSLoader::load ('Sys::Guestfs');
5888
5889 =item $h = Sys::Guestfs->new ();
5890
5891 Create a new guestfs handle.
5892
5893 =cut
5894
5895 sub new {
5896   my $proto = shift;
5897   my $class = ref ($proto) || $proto;
5898
5899   my $self = Sys::Guestfs::_create ();
5900   bless $self, $class;
5901   return $self;
5902 }
5903
5904 ";
5905
5906   (* Actions.  We only need to print documentation for these as
5907    * they are pulled in from the XS code automatically.
5908    *)
5909   List.iter (
5910     fun (name, style, _, flags, _, _, longdesc) ->
5911       if not (List.mem NotInDocs flags) then (
5912         let longdesc = replace_str longdesc "C<guestfs_" "C<$h-E<gt>" in
5913         pr "=item ";
5914         generate_perl_prototype name style;
5915         pr "\n\n";
5916         pr "%s\n\n" longdesc;
5917         if List.mem ProtocolLimitWarning flags then
5918           pr "%s\n\n" protocol_limit_warning;
5919         if List.mem DangerWillRobinson flags then
5920           pr "%s\n\n" danger_will_robinson
5921       )
5922   ) all_functions_sorted;
5923
5924   (* End of file. *)
5925   pr "\
5926 =cut
5927
5928 1;
5929
5930 =back
5931
5932 =head1 COPYRIGHT
5933
5934 Copyright (C) 2009 Red Hat Inc.
5935
5936 =head1 LICENSE
5937
5938 Please see the file COPYING.LIB for the full license.
5939
5940 =head1 SEE ALSO
5941
5942 L<guestfs(3)>, L<guestfish(1)>.
5943
5944 =cut
5945 "
5946
5947 and generate_perl_prototype name style =
5948   (match fst style with
5949    | RErr -> ()
5950    | RBool n
5951    | RInt n
5952    | RInt64 n
5953    | RConstString n
5954    | RString n -> pr "$%s = " n
5955    | RIntBool (n, m) -> pr "($%s, $%s) = " n m
5956    | RStringList n
5957    | RPVList n
5958    | RVGList n
5959    | RLVList n -> pr "@%s = " n
5960    | RStat n
5961    | RStatVFS n
5962    | RHashtable n -> pr "%%%s = " n
5963   );
5964   pr "$h->%s (" name;
5965   let comma = ref false in
5966   List.iter (
5967     fun arg ->
5968       if !comma then pr ", ";
5969       comma := true;
5970       match arg with
5971       | String n | OptString n | Bool n | Int n | FileIn n | FileOut n ->
5972           pr "$%s" n
5973       | StringList n ->
5974           pr "\\@%s" n
5975   ) (snd style);
5976   pr ");"
5977
5978 (* Generate Python C module. *)
5979 and generate_python_c () =
5980   generate_header CStyle LGPLv2;
5981
5982   pr "\
5983 #include <stdio.h>
5984 #include <stdlib.h>
5985 #include <assert.h>
5986
5987 #include <Python.h>
5988
5989 #include \"guestfs.h\"
5990
5991 typedef struct {
5992   PyObject_HEAD
5993   guestfs_h *g;
5994 } Pyguestfs_Object;
5995
5996 static guestfs_h *
5997 get_handle (PyObject *obj)
5998 {
5999   assert (obj);
6000   assert (obj != Py_None);
6001   return ((Pyguestfs_Object *) obj)->g;
6002 }
6003
6004 static PyObject *
6005 put_handle (guestfs_h *g)
6006 {
6007   assert (g);
6008   return
6009     PyCObject_FromVoidPtrAndDesc ((void *) g, (char *) \"guestfs_h\", NULL);
6010 }
6011
6012 /* This list should be freed (but not the strings) after use. */
6013 static const char **
6014 get_string_list (PyObject *obj)
6015 {
6016   int i, len;
6017   const char **r;
6018
6019   assert (obj);
6020
6021   if (!PyList_Check (obj)) {
6022     PyErr_SetString (PyExc_RuntimeError, \"expecting a list parameter\");
6023     return NULL;
6024   }
6025
6026   len = PyList_Size (obj);
6027   r = malloc (sizeof (char *) * (len+1));
6028   if (r == NULL) {
6029     PyErr_SetString (PyExc_RuntimeError, \"get_string_list: out of memory\");
6030     return NULL;
6031   }
6032
6033   for (i = 0; i < len; ++i)
6034     r[i] = PyString_AsString (PyList_GetItem (obj, i));
6035   r[len] = NULL;
6036
6037   return r;
6038 }
6039
6040 static PyObject *
6041 put_string_list (char * const * const argv)
6042 {
6043   PyObject *list;
6044   int argc, i;
6045
6046   for (argc = 0; argv[argc] != NULL; ++argc)
6047     ;
6048
6049   list = PyList_New (argc);
6050   for (i = 0; i < argc; ++i)
6051     PyList_SetItem (list, i, PyString_FromString (argv[i]));
6052
6053   return list;
6054 }
6055
6056 static PyObject *
6057 put_table (char * const * const argv)
6058 {
6059   PyObject *list, *item;
6060   int argc, i;
6061
6062   for (argc = 0; argv[argc] != NULL; ++argc)
6063     ;
6064
6065   list = PyList_New (argc >> 1);
6066   for (i = 0; i < argc; i += 2) {
6067     item = PyTuple_New (2);
6068     PyTuple_SetItem (item, 0, PyString_FromString (argv[i]));
6069     PyTuple_SetItem (item, 1, PyString_FromString (argv[i+1]));
6070     PyList_SetItem (list, i >> 1, item);
6071   }
6072
6073   return list;
6074 }
6075
6076 static void
6077 free_strings (char **argv)
6078 {
6079   int argc;
6080
6081   for (argc = 0; argv[argc] != NULL; ++argc)
6082     free (argv[argc]);
6083   free (argv);
6084 }
6085
6086 static PyObject *
6087 py_guestfs_create (PyObject *self, PyObject *args)
6088 {
6089   guestfs_h *g;
6090
6091   g = guestfs_create ();
6092   if (g == NULL) {
6093     PyErr_SetString (PyExc_RuntimeError,
6094                      \"guestfs.create: failed to allocate handle\");
6095     return NULL;
6096   }
6097   guestfs_set_error_handler (g, NULL, NULL);
6098   return put_handle (g);
6099 }
6100
6101 static PyObject *
6102 py_guestfs_close (PyObject *self, PyObject *args)
6103 {
6104   PyObject *py_g;
6105   guestfs_h *g;
6106
6107   if (!PyArg_ParseTuple (args, (char *) \"O:guestfs_close\", &py_g))
6108     return NULL;
6109   g = get_handle (py_g);
6110
6111   guestfs_close (g);
6112
6113   Py_INCREF (Py_None);
6114   return Py_None;
6115 }
6116
6117 ";
6118
6119   (* LVM structures, turned into Python dictionaries. *)
6120   List.iter (
6121     fun (typ, cols) ->
6122       pr "static PyObject *\n";
6123       pr "put_lvm_%s (struct guestfs_lvm_%s *%s)\n" typ typ typ;
6124       pr "{\n";
6125       pr "  PyObject *dict;\n";
6126       pr "\n";
6127       pr "  dict = PyDict_New ();\n";
6128       List.iter (
6129         function
6130         | name, `String ->
6131             pr "  PyDict_SetItemString (dict, \"%s\",\n" name;
6132             pr "                        PyString_FromString (%s->%s));\n"
6133               typ name
6134         | name, `UUID ->
6135             pr "  PyDict_SetItemString (dict, \"%s\",\n" name;
6136             pr "                        PyString_FromStringAndSize (%s->%s, 32));\n"
6137               typ name
6138         | name, `Bytes ->
6139             pr "  PyDict_SetItemString (dict, \"%s\",\n" name;
6140             pr "                        PyLong_FromUnsignedLongLong (%s->%s));\n"
6141               typ name
6142         | name, `Int ->
6143             pr "  PyDict_SetItemString (dict, \"%s\",\n" name;
6144             pr "                        PyLong_FromLongLong (%s->%s));\n"
6145               typ name
6146         | name, `OptPercent ->
6147             pr "  if (%s->%s >= 0)\n" typ name;
6148             pr "    PyDict_SetItemString (dict, \"%s\",\n" name;
6149             pr "                          PyFloat_FromDouble ((double) %s->%s));\n"
6150               typ name;
6151             pr "  else {\n";
6152             pr "    Py_INCREF (Py_None);\n";
6153             pr "    PyDict_SetItemString (dict, \"%s\", Py_None);" name;
6154             pr "  }\n"
6155       ) cols;
6156       pr "  return dict;\n";
6157       pr "};\n";
6158       pr "\n";
6159
6160       pr "static PyObject *\n";
6161       pr "put_lvm_%s_list (struct guestfs_lvm_%s_list *%ss)\n" typ typ typ;
6162       pr "{\n";
6163       pr "  PyObject *list;\n";
6164       pr "  int i;\n";
6165       pr "\n";
6166       pr "  list = PyList_New (%ss->len);\n" typ;
6167       pr "  for (i = 0; i < %ss->len; ++i)\n" typ;
6168       pr "    PyList_SetItem (list, i, put_lvm_%s (&%ss->val[i]));\n" typ typ;
6169       pr "  return list;\n";
6170       pr "};\n";
6171       pr "\n"
6172   ) ["pv", pv_cols; "vg", vg_cols; "lv", lv_cols];
6173
6174   (* Stat structures, turned into Python dictionaries. *)
6175   List.iter (
6176     fun (typ, cols) ->
6177       pr "static PyObject *\n";
6178       pr "put_%s (struct guestfs_%s *%s)\n" typ typ typ;
6179       pr "{\n";
6180       pr "  PyObject *dict;\n";
6181       pr "\n";
6182       pr "  dict = PyDict_New ();\n";
6183       List.iter (
6184         function
6185         | name, `Int ->
6186             pr "  PyDict_SetItemString (dict, \"%s\",\n" name;
6187             pr "                        PyLong_FromLongLong (%s->%s));\n"
6188               typ name
6189       ) cols;
6190       pr "  return dict;\n";
6191       pr "};\n";
6192       pr "\n";
6193   ) ["stat", stat_cols; "statvfs", statvfs_cols];
6194
6195   (* Python wrapper functions. *)
6196   List.iter (
6197     fun (name, style, _, _, _, _, _) ->
6198       pr "static PyObject *\n";
6199       pr "py_guestfs_%s (PyObject *self, PyObject *args)\n" name;
6200       pr "{\n";
6201
6202       pr "  PyObject *py_g;\n";
6203       pr "  guestfs_h *g;\n";
6204       pr "  PyObject *py_r;\n";
6205
6206       let error_code =
6207         match fst style with
6208         | RErr | RInt _ | RBool _ -> pr "  int r;\n"; "-1"
6209         | RInt64 _ -> pr "  int64_t r;\n"; "-1"
6210         | RConstString _ -> pr "  const char *r;\n"; "NULL"
6211         | RString _ -> pr "  char *r;\n"; "NULL"
6212         | RStringList _ | RHashtable _ -> pr "  char **r;\n"; "NULL"
6213         | RIntBool _ -> pr "  struct guestfs_int_bool *r;\n"; "NULL"
6214         | RPVList n -> pr "  struct guestfs_lvm_pv_list *r;\n"; "NULL"
6215         | RVGList n -> pr "  struct guestfs_lvm_vg_list *r;\n"; "NULL"
6216         | RLVList n -> pr "  struct guestfs_lvm_lv_list *r;\n"; "NULL"
6217         | RStat n -> pr "  struct guestfs_stat *r;\n"; "NULL"
6218         | RStatVFS n -> pr "  struct guestfs_statvfs *r;\n"; "NULL" in
6219
6220       List.iter (
6221         function
6222         | String n | FileIn n | FileOut n -> pr "  const char *%s;\n" n
6223         | OptString n -> pr "  const char *%s;\n" n
6224         | StringList n ->
6225             pr "  PyObject *py_%s;\n" n;
6226             pr "  const char **%s;\n" n
6227         | Bool n -> pr "  int %s;\n" n
6228         | Int n -> pr "  int %s;\n" n
6229       ) (snd style);
6230
6231       pr "\n";
6232
6233       (* Convert the parameters. *)
6234       pr "  if (!PyArg_ParseTuple (args, (char *) \"O";
6235       List.iter (
6236         function
6237         | String _ | FileIn _ | FileOut _ -> pr "s"
6238         | OptString _ -> pr "z"
6239         | StringList _ -> pr "O"
6240         | Bool _ -> pr "i" (* XXX Python has booleans? *)
6241         | Int _ -> pr "i"
6242       ) (snd style);
6243       pr ":guestfs_%s\",\n" name;
6244       pr "                         &py_g";
6245       List.iter (
6246         function
6247         | String n | FileIn n | FileOut n -> pr ", &%s" n
6248         | OptString n -> pr ", &%s" n
6249         | StringList n -> pr ", &py_%s" n
6250         | Bool n -> pr ", &%s" n
6251         | Int n -> pr ", &%s" n
6252       ) (snd style);
6253
6254       pr "))\n";
6255       pr "    return NULL;\n";
6256
6257       pr "  g = get_handle (py_g);\n";
6258       List.iter (
6259         function
6260         | String _ | FileIn _ | FileOut _ | OptString _ | Bool _ | Int _ -> ()
6261         | StringList n ->
6262             pr "  %s = get_string_list (py_%s);\n" n n;
6263             pr "  if (!%s) return NULL;\n" n
6264       ) (snd style);
6265
6266       pr "\n";
6267
6268       pr "  r = guestfs_%s " name;
6269       generate_call_args ~handle:"g" (snd style);
6270       pr ";\n";
6271
6272       List.iter (
6273         function
6274         | String _ | FileIn _ | FileOut _ | OptString _ | Bool _ | Int _ -> ()
6275         | StringList n ->
6276             pr "  free (%s);\n" n
6277       ) (snd style);
6278
6279       pr "  if (r == %s) {\n" error_code;
6280       pr "    PyErr_SetString (PyExc_RuntimeError, guestfs_last_error (g));\n";
6281       pr "    return NULL;\n";
6282       pr "  }\n";
6283       pr "\n";
6284
6285       (match fst style with
6286        | RErr ->
6287            pr "  Py_INCREF (Py_None);\n";
6288            pr "  py_r = Py_None;\n"
6289        | RInt _
6290        | RBool _ -> pr "  py_r = PyInt_FromLong ((long) r);\n"
6291        | RInt64 _ -> pr "  py_r = PyLong_FromLongLong (r);\n"
6292        | RConstString _ -> pr "  py_r = PyString_FromString (r);\n"
6293        | RString _ ->
6294            pr "  py_r = PyString_FromString (r);\n";
6295            pr "  free (r);\n"
6296        | RStringList _ ->
6297            pr "  py_r = put_string_list (r);\n";
6298            pr "  free_strings (r);\n"
6299        | RIntBool _ ->
6300            pr "  py_r = PyTuple_New (2);\n";
6301            pr "  PyTuple_SetItem (py_r, 0, PyInt_FromLong ((long) r->i));\n";
6302            pr "  PyTuple_SetItem (py_r, 1, PyInt_FromLong ((long) r->b));\n";
6303            pr "  guestfs_free_int_bool (r);\n"
6304        | RPVList n ->
6305            pr "  py_r = put_lvm_pv_list (r);\n";
6306            pr "  guestfs_free_lvm_pv_list (r);\n"
6307        | RVGList n ->
6308            pr "  py_r = put_lvm_vg_list (r);\n";
6309            pr "  guestfs_free_lvm_vg_list (r);\n"
6310        | RLVList n ->
6311            pr "  py_r = put_lvm_lv_list (r);\n";
6312            pr "  guestfs_free_lvm_lv_list (r);\n"
6313        | RStat n ->
6314            pr "  py_r = put_stat (r);\n";
6315            pr "  free (r);\n"
6316        | RStatVFS n ->
6317            pr "  py_r = put_statvfs (r);\n";
6318            pr "  free (r);\n"
6319        | RHashtable n ->
6320            pr "  py_r = put_table (r);\n";
6321            pr "  free_strings (r);\n"
6322       );
6323
6324       pr "  return py_r;\n";
6325       pr "}\n";
6326       pr "\n"
6327   ) all_functions;
6328
6329   (* Table of functions. *)
6330   pr "static PyMethodDef methods[] = {\n";
6331   pr "  { (char *) \"create\", py_guestfs_create, METH_VARARGS, NULL },\n";
6332   pr "  { (char *) \"close\", py_guestfs_close, METH_VARARGS, NULL },\n";
6333   List.iter (
6334     fun (name, _, _, _, _, _, _) ->
6335       pr "  { (char *) \"%s\", py_guestfs_%s, METH_VARARGS, NULL },\n"
6336         name name
6337   ) all_functions;
6338   pr "  { NULL, NULL, 0, NULL }\n";
6339   pr "};\n";
6340   pr "\n";
6341
6342   (* Init function. *)
6343   pr "\
6344 void
6345 initlibguestfsmod (void)
6346 {
6347   static int initialized = 0;
6348
6349   if (initialized) return;
6350   Py_InitModule ((char *) \"libguestfsmod\", methods);
6351   initialized = 1;
6352 }
6353 "
6354
6355 (* Generate Python module. *)
6356 and generate_python_py () =
6357   generate_header HashStyle LGPLv2;
6358
6359   pr "\
6360 u\"\"\"Python bindings for libguestfs
6361
6362 import guestfs
6363 g = guestfs.GuestFS ()
6364 g.add_drive (\"guest.img\")
6365 g.launch ()
6366 g.wait_ready ()
6367 parts = g.list_partitions ()
6368
6369 The guestfs module provides a Python binding to the libguestfs API
6370 for examining and modifying virtual machine disk images.
6371
6372 Amongst the things this is good for: making batch configuration
6373 changes to guests, getting disk used/free statistics (see also:
6374 virt-df), migrating between virtualization systems (see also:
6375 virt-p2v), performing partial backups, performing partial guest
6376 clones, cloning guests and changing registry/UUID/hostname info, and
6377 much else besides.
6378
6379 Libguestfs uses Linux kernel and qemu code, and can access any type of
6380 guest filesystem that Linux and qemu can, including but not limited
6381 to: ext2/3/4, btrfs, FAT and NTFS, LVM, many different disk partition
6382 schemes, qcow, qcow2, vmdk.
6383
6384 Libguestfs provides ways to enumerate guest storage (eg. partitions,
6385 LVs, what filesystem is in each LV, etc.).  It can also run commands
6386 in the context of the guest.  Also you can access filesystems over FTP.
6387
6388 Errors which happen while using the API are turned into Python
6389 RuntimeError exceptions.
6390
6391 To create a guestfs handle you usually have to perform the following
6392 sequence of calls:
6393
6394 # Create the handle, call add_drive at least once, and possibly
6395 # several times if the guest has multiple block devices:
6396 g = guestfs.GuestFS ()
6397 g.add_drive (\"guest.img\")
6398
6399 # Launch the qemu subprocess and wait for it to become ready:
6400 g.launch ()
6401 g.wait_ready ()
6402
6403 # Now you can issue commands, for example:
6404 logvols = g.lvs ()
6405
6406 \"\"\"
6407
6408 import libguestfsmod
6409
6410 class GuestFS:
6411     \"\"\"Instances of this class are libguestfs API handles.\"\"\"
6412
6413     def __init__ (self):
6414         \"\"\"Create a new libguestfs handle.\"\"\"
6415         self._o = libguestfsmod.create ()
6416
6417     def __del__ (self):
6418         libguestfsmod.close (self._o)
6419
6420 ";
6421
6422   List.iter (
6423     fun (name, style, _, flags, _, _, longdesc) ->
6424       pr "    def %s " name;
6425       generate_call_args ~handle:"self" (snd style);
6426       pr ":\n";
6427
6428       if not (List.mem NotInDocs flags) then (
6429         let doc = replace_str longdesc "C<guestfs_" "C<g." in
6430         let doc =
6431           match fst style with
6432           | RErr | RInt _ | RInt64 _ | RBool _ | RConstString _
6433           | RString _ -> doc
6434           | RStringList _ ->
6435               doc ^ "\n\nThis function returns a list of strings."
6436           | RIntBool _ ->
6437               doc ^ "\n\nThis function returns a tuple (int, bool).\n"
6438           | RPVList _ ->
6439               doc ^ "\n\nThis function returns a list of PVs.  Each PV is represented as a dictionary."
6440           | RVGList _ ->
6441               doc ^ "\n\nThis function returns a list of VGs.  Each VG is represented as a dictionary."
6442           | RLVList _ ->
6443               doc ^ "\n\nThis function returns a list of LVs.  Each LV is represented as a dictionary."
6444           | RStat _ ->
6445               doc ^ "\n\nThis function returns a dictionary, with keys matching the various fields in the stat structure."
6446           | RStatVFS _ ->
6447               doc ^ "\n\nThis function returns a dictionary, with keys matching the various fields in the statvfs structure."
6448           | RHashtable _ ->
6449               doc ^ "\n\nThis function returns a dictionary." in
6450         let doc =
6451           if List.mem ProtocolLimitWarning flags then
6452             doc ^ "\n\n" ^ protocol_limit_warning
6453           else doc in
6454         let doc =
6455           if List.mem DangerWillRobinson flags then
6456             doc ^ "\n\n" ^ danger_will_robinson
6457           else doc in
6458         let doc = pod2text ~width:60 name doc in
6459         let doc = List.map (fun line -> replace_str line "\\" "\\\\") doc in
6460         let doc = String.concat "\n        " doc in
6461         pr "        u\"\"\"%s\"\"\"\n" doc;
6462       );
6463       pr "        return libguestfsmod.%s " name;
6464       generate_call_args ~handle:"self._o" (snd style);
6465       pr "\n";
6466       pr "\n";
6467   ) all_functions
6468
6469 (* Useful if you need the longdesc POD text as plain text.  Returns a
6470  * list of lines.
6471  *
6472  * This is the slowest thing about autogeneration.
6473  *)
6474 and pod2text ~width name longdesc =
6475   let filename, chan = Filename.open_temp_file "gen" ".tmp" in
6476   fprintf chan "=head1 %s\n\n%s\n" name longdesc;
6477   close_out chan;
6478   let cmd = sprintf "pod2text -w %d %s" width (Filename.quote filename) in
6479   let chan = Unix.open_process_in cmd in
6480   let lines = ref [] in
6481   let rec loop i =
6482     let line = input_line chan in
6483     if i = 1 then               (* discard the first line of output *)
6484       loop (i+1)
6485     else (
6486       let line = triml line in
6487       lines := line :: !lines;
6488       loop (i+1)
6489     ) in
6490   let lines = try loop 1 with End_of_file -> List.rev !lines in
6491   Unix.unlink filename;
6492   match Unix.close_process_in chan with
6493   | Unix.WEXITED 0 -> lines
6494   | Unix.WEXITED i ->
6495       failwithf "pod2text: process exited with non-zero status (%d)" i
6496   | Unix.WSIGNALED i | Unix.WSTOPPED i ->
6497       failwithf "pod2text: process signalled or stopped by signal %d" i
6498
6499 (* Generate ruby bindings. *)
6500 and generate_ruby_c () =
6501   generate_header CStyle LGPLv2;
6502
6503   pr "\
6504 #include <stdio.h>
6505 #include <stdlib.h>
6506
6507 #include <ruby.h>
6508
6509 #include \"guestfs.h\"
6510
6511 #include \"extconf.h\"
6512
6513 /* For Ruby < 1.9 */
6514 #ifndef RARRAY_LEN
6515 #define RARRAY_LEN(r) (RARRAY((r))->len)
6516 #endif
6517
6518 static VALUE m_guestfs;                 /* guestfs module */
6519 static VALUE c_guestfs;                 /* guestfs_h handle */
6520 static VALUE e_Error;                   /* used for all errors */
6521
6522 static void ruby_guestfs_free (void *p)
6523 {
6524   if (!p) return;
6525   guestfs_close ((guestfs_h *) p);
6526 }
6527
6528 static VALUE ruby_guestfs_create (VALUE m)
6529 {
6530   guestfs_h *g;
6531
6532   g = guestfs_create ();
6533   if (!g)
6534     rb_raise (e_Error, \"failed to create guestfs handle\");
6535
6536   /* Don't print error messages to stderr by default. */
6537   guestfs_set_error_handler (g, NULL, NULL);
6538
6539   /* Wrap it, and make sure the close function is called when the
6540    * handle goes away.
6541    */
6542   return Data_Wrap_Struct (c_guestfs, NULL, ruby_guestfs_free, g);
6543 }
6544
6545 static VALUE ruby_guestfs_close (VALUE gv)
6546 {
6547   guestfs_h *g;
6548   Data_Get_Struct (gv, guestfs_h, g);
6549
6550   ruby_guestfs_free (g);
6551   DATA_PTR (gv) = NULL;
6552
6553   return Qnil;
6554 }
6555
6556 ";
6557
6558   List.iter (
6559     fun (name, style, _, _, _, _, _) ->
6560       pr "static VALUE ruby_guestfs_%s (VALUE gv" name;
6561       List.iter (fun arg -> pr ", VALUE %sv" (name_of_argt arg)) (snd style);
6562       pr ")\n";
6563       pr "{\n";
6564       pr "  guestfs_h *g;\n";
6565       pr "  Data_Get_Struct (gv, guestfs_h, g);\n";
6566       pr "  if (!g)\n";
6567       pr "    rb_raise (rb_eArgError, \"%%s: used handle after closing it\", \"%s\");\n"
6568         name;
6569       pr "\n";
6570
6571       List.iter (
6572         function
6573         | String n | FileIn n | FileOut n ->
6574             pr "  Check_Type (%sv, T_STRING);\n" n;
6575             pr "  const char *%s = StringValueCStr (%sv);\n" n n;
6576             pr "  if (!%s)\n" n;
6577             pr "    rb_raise (rb_eTypeError, \"expected string for parameter %%s of %%s\",\n";
6578             pr "              \"%s\", \"%s\");\n" n name
6579         | OptString n ->
6580             pr "  const char *%s = !NIL_P (%sv) ? StringValueCStr (%sv) : NULL;\n" n n n
6581         | StringList n ->
6582             pr "  char **%s;\n" n;
6583             pr "  Check_Type (%sv, T_ARRAY);\n" n;
6584             pr "  {\n";
6585             pr "    int i, len;\n";
6586             pr "    len = RARRAY_LEN (%sv);\n" n;
6587             pr "    %s = guestfs_safe_malloc (g, sizeof (char *) * (len+1));\n"
6588               n;
6589             pr "    for (i = 0; i < len; ++i) {\n";
6590             pr "      VALUE v = rb_ary_entry (%sv, i);\n" n;
6591             pr "      %s[i] = StringValueCStr (v);\n" n;
6592             pr "    }\n";
6593             pr "    %s[len] = NULL;\n" n;
6594             pr "  }\n";
6595         | Bool n ->
6596             pr "  int %s = RTEST (%sv);\n" n n
6597         | Int n ->
6598             pr "  int %s = NUM2INT (%sv);\n" n n
6599       ) (snd style);
6600       pr "\n";
6601
6602       let error_code =
6603         match fst style with
6604         | RErr | RInt _ | RBool _ -> pr "  int r;\n"; "-1"
6605         | RInt64 _ -> pr "  int64_t r;\n"; "-1"
6606         | RConstString _ -> pr "  const char *r;\n"; "NULL"
6607         | RString _ -> pr "  char *r;\n"; "NULL"
6608         | RStringList _ | RHashtable _ -> pr "  char **r;\n"; "NULL"
6609         | RIntBool _ -> pr "  struct guestfs_int_bool *r;\n"; "NULL"
6610         | RPVList n -> pr "  struct guestfs_lvm_pv_list *r;\n"; "NULL"
6611         | RVGList n -> pr "  struct guestfs_lvm_vg_list *r;\n"; "NULL"
6612         | RLVList n -> pr "  struct guestfs_lvm_lv_list *r;\n"; "NULL"
6613         | RStat n -> pr "  struct guestfs_stat *r;\n"; "NULL"
6614         | RStatVFS n -> pr "  struct guestfs_statvfs *r;\n"; "NULL" in
6615       pr "\n";
6616
6617       pr "  r = guestfs_%s " name;
6618       generate_call_args ~handle:"g" (snd style);
6619       pr ";\n";
6620
6621       List.iter (
6622         function
6623         | String _ | FileIn _ | FileOut _ | OptString _ | Bool _ | Int _ -> ()
6624         | StringList n ->
6625             pr "  free (%s);\n" n
6626       ) (snd style);
6627
6628       pr "  if (r == %s)\n" error_code;
6629       pr "    rb_raise (e_Error, \"%%s\", guestfs_last_error (g));\n";
6630       pr "\n";
6631
6632       (match fst style with
6633        | RErr ->
6634            pr "  return Qnil;\n"
6635        | RInt _ | RBool _ ->
6636            pr "  return INT2NUM (r);\n"
6637        | RInt64 _ ->
6638            pr "  return ULL2NUM (r);\n"
6639        | RConstString _ ->
6640            pr "  return rb_str_new2 (r);\n";
6641        | RString _ ->
6642            pr "  VALUE rv = rb_str_new2 (r);\n";
6643            pr "  free (r);\n";
6644            pr "  return rv;\n";
6645        | RStringList _ ->
6646            pr "  int i, len = 0;\n";
6647            pr "  for (i = 0; r[i] != NULL; ++i) len++;\n";
6648            pr "  VALUE rv = rb_ary_new2 (len);\n";
6649            pr "  for (i = 0; r[i] != NULL; ++i) {\n";
6650            pr "    rb_ary_push (rv, rb_str_new2 (r[i]));\n";
6651            pr "    free (r[i]);\n";
6652            pr "  }\n";
6653            pr "  free (r);\n";
6654            pr "  return rv;\n"
6655        | RIntBool _ ->
6656            pr "  VALUE rv = rb_ary_new2 (2);\n";
6657            pr "  rb_ary_push (rv, INT2NUM (r->i));\n";
6658            pr "  rb_ary_push (rv, INT2NUM (r->b));\n";
6659            pr "  guestfs_free_int_bool (r);\n";
6660            pr "  return rv;\n"
6661        | RPVList n ->
6662            generate_ruby_lvm_code "pv" pv_cols
6663        | RVGList n ->
6664            generate_ruby_lvm_code "vg" vg_cols
6665        | RLVList n ->
6666            generate_ruby_lvm_code "lv" lv_cols
6667        | RStat n ->
6668            pr "  VALUE rv = rb_hash_new ();\n";
6669            List.iter (
6670              function
6671              | name, `Int ->
6672                  pr "  rb_hash_aset (rv, rb_str_new2 (\"%s\"), ULL2NUM (r->%s));\n" name name
6673            ) stat_cols;
6674            pr "  free (r);\n";
6675            pr "  return rv;\n"
6676        | RStatVFS n ->
6677            pr "  VALUE rv = rb_hash_new ();\n";
6678            List.iter (
6679              function
6680              | name, `Int ->
6681                  pr "  rb_hash_aset (rv, rb_str_new2 (\"%s\"), ULL2NUM (r->%s));\n" name name
6682            ) statvfs_cols;
6683            pr "  free (r);\n";
6684            pr "  return rv;\n"
6685        | RHashtable _ ->
6686            pr "  VALUE rv = rb_hash_new ();\n";
6687            pr "  int i;\n";
6688            pr "  for (i = 0; r[i] != NULL; i+=2) {\n";
6689            pr "    rb_hash_aset (rv, rb_str_new2 (r[i]), rb_str_new2 (r[i+1]));\n";
6690            pr "    free (r[i]);\n";
6691            pr "    free (r[i+1]);\n";
6692            pr "  }\n";
6693            pr "  free (r);\n";
6694            pr "  return rv;\n"
6695       );
6696
6697       pr "}\n";
6698       pr "\n"
6699   ) all_functions;
6700
6701   pr "\
6702 /* Initialize the module. */
6703 void Init__guestfs ()
6704 {
6705   m_guestfs = rb_define_module (\"Guestfs\");
6706   c_guestfs = rb_define_class_under (m_guestfs, \"Guestfs\", rb_cObject);
6707   e_Error = rb_define_class_under (m_guestfs, \"Error\", rb_eStandardError);
6708
6709   rb_define_module_function (m_guestfs, \"create\", ruby_guestfs_create, 0);
6710   rb_define_method (c_guestfs, \"close\", ruby_guestfs_close, 0);
6711
6712 ";
6713   (* Define the rest of the methods. *)
6714   List.iter (
6715     fun (name, style, _, _, _, _, _) ->
6716       pr "  rb_define_method (c_guestfs, \"%s\",\n" name;
6717       pr "        ruby_guestfs_%s, %d);\n" name (List.length (snd style))
6718   ) all_functions;
6719
6720   pr "}\n"
6721
6722 (* Ruby code to return an LVM struct list. *)
6723 and generate_ruby_lvm_code typ cols =
6724   pr "  VALUE rv = rb_ary_new2 (r->len);\n";
6725   pr "  int i;\n";
6726   pr "  for (i = 0; i < r->len; ++i) {\n";
6727   pr "    VALUE hv = rb_hash_new ();\n";
6728   List.iter (
6729     function
6730     | name, `String ->
6731         pr "    rb_hash_aset (rv, rb_str_new2 (\"%s\"), rb_str_new2 (r->val[i].%s));\n" name name
6732     | name, `UUID ->
6733         pr "    rb_hash_aset (rv, rb_str_new2 (\"%s\"), rb_str_new (r->val[i].%s, 32));\n" name name
6734     | name, `Bytes
6735     | name, `Int ->
6736         pr "    rb_hash_aset (rv, rb_str_new2 (\"%s\"), ULL2NUM (r->val[i].%s));\n" name name
6737     | name, `OptPercent ->
6738         pr "    rb_hash_aset (rv, rb_str_new2 (\"%s\"), rb_dbl2big (r->val[i].%s));\n" name name
6739   ) cols;
6740   pr "    rb_ary_push (rv, hv);\n";
6741   pr "  }\n";
6742   pr "  guestfs_free_lvm_%s_list (r);\n" typ;
6743   pr "  return rv;\n"
6744
6745 (* Generate Java bindings GuestFS.java file. *)
6746 and generate_java_java () =
6747   generate_header CStyle LGPLv2;
6748
6749   pr "\
6750 package com.redhat.et.libguestfs;
6751
6752 import java.util.HashMap;
6753 import com.redhat.et.libguestfs.LibGuestFSException;
6754 import com.redhat.et.libguestfs.PV;
6755 import com.redhat.et.libguestfs.VG;
6756 import com.redhat.et.libguestfs.LV;
6757 import com.redhat.et.libguestfs.Stat;
6758 import com.redhat.et.libguestfs.StatVFS;
6759 import com.redhat.et.libguestfs.IntBool;
6760
6761 /**
6762  * The GuestFS object is a libguestfs handle.
6763  *
6764  * @author rjones
6765  */
6766 public class GuestFS {
6767   // Load the native code.
6768   static {
6769     System.loadLibrary (\"guestfs_jni\");
6770   }
6771
6772   /**
6773    * The native guestfs_h pointer.
6774    */
6775   long g;
6776
6777   /**
6778    * Create a libguestfs handle.
6779    *
6780    * @throws LibGuestFSException
6781    */
6782   public GuestFS () throws LibGuestFSException
6783   {
6784     g = _create ();
6785   }
6786   private native long _create () throws LibGuestFSException;
6787
6788   /**
6789    * Close a libguestfs handle.
6790    *
6791    * You can also leave handles to be collected by the garbage
6792    * collector, but this method ensures that the resources used
6793    * by the handle are freed up immediately.  If you call any
6794    * other methods after closing the handle, you will get an
6795    * exception.
6796    *
6797    * @throws LibGuestFSException
6798    */
6799   public void close () throws LibGuestFSException
6800   {
6801     if (g != 0)
6802       _close (g);
6803     g = 0;
6804   }
6805   private native void _close (long g) throws LibGuestFSException;
6806
6807   public void finalize () throws LibGuestFSException
6808   {
6809     close ();
6810   }
6811
6812 ";
6813
6814   List.iter (
6815     fun (name, style, _, flags, _, shortdesc, longdesc) ->
6816       if not (List.mem NotInDocs flags); then (
6817         let doc = replace_str longdesc "C<guestfs_" "C<g." in
6818         let doc =
6819           if List.mem ProtocolLimitWarning flags then
6820             doc ^ "\n\n" ^ protocol_limit_warning
6821           else doc in
6822         let doc =
6823           if List.mem DangerWillRobinson flags then
6824             doc ^ "\n\n" ^ danger_will_robinson
6825           else doc in
6826         let doc = pod2text ~width:60 name doc in
6827         let doc = List.map (            (* RHBZ#501883 *)
6828           function
6829           | "" -> "<p>"
6830           | nonempty -> nonempty
6831         ) doc in
6832         let doc = String.concat "\n   * " doc in
6833
6834         pr "  /**\n";
6835         pr "   * %s\n" shortdesc;
6836         pr "   * <p>\n";
6837         pr "   * %s\n" doc;
6838         pr "   * @throws LibGuestFSException\n";
6839         pr "   */\n";
6840         pr "  ";
6841       );
6842       generate_java_prototype ~public:true ~semicolon:false name style;
6843       pr "\n";
6844       pr "  {\n";
6845       pr "    if (g == 0)\n";
6846       pr "      throw new LibGuestFSException (\"%s: handle is closed\");\n"
6847         name;
6848       pr "    ";
6849       if fst style <> RErr then pr "return ";
6850       pr "_%s " name;
6851       generate_call_args ~handle:"g" (snd style);
6852       pr ";\n";
6853       pr "  }\n";
6854       pr "  ";
6855       generate_java_prototype ~privat:true ~native:true name style;
6856       pr "\n";
6857       pr "\n";
6858   ) all_functions;
6859
6860   pr "}\n"
6861
6862 and generate_java_prototype ?(public=false) ?(privat=false) ?(native=false)
6863     ?(semicolon=true) name style =
6864   if privat then pr "private ";
6865   if public then pr "public ";
6866   if native then pr "native ";
6867
6868   (* return type *)
6869   (match fst style with
6870    | RErr -> pr "void ";
6871    | RInt _ -> pr "int ";
6872    | RInt64 _ -> pr "long ";
6873    | RBool _ -> pr "boolean ";
6874    | RConstString _ | RString _ -> pr "String ";
6875    | RStringList _ -> pr "String[] ";
6876    | RIntBool _ -> pr "IntBool ";
6877    | RPVList _ -> pr "PV[] ";
6878    | RVGList _ -> pr "VG[] ";
6879    | RLVList _ -> pr "LV[] ";
6880    | RStat _ -> pr "Stat ";
6881    | RStatVFS _ -> pr "StatVFS ";
6882    | RHashtable _ -> pr "HashMap<String,String> ";
6883   );
6884
6885   if native then pr "_%s " name else pr "%s " name;
6886   pr "(";
6887   let needs_comma = ref false in
6888   if native then (
6889     pr "long g";
6890     needs_comma := true
6891   );
6892
6893   (* args *)
6894   List.iter (
6895     fun arg ->
6896       if !needs_comma then pr ", ";
6897       needs_comma := true;
6898
6899       match arg with
6900       | String n
6901       | OptString n
6902       | FileIn n
6903       | FileOut n ->
6904           pr "String %s" n
6905       | StringList n ->
6906           pr "String[] %s" n
6907       | Bool n ->
6908           pr "boolean %s" n
6909       | Int n ->
6910           pr "int %s" n
6911   ) (snd style);
6912
6913   pr ")\n";
6914   pr "    throws LibGuestFSException";
6915   if semicolon then pr ";"
6916
6917 and generate_java_struct typ cols =
6918   generate_header CStyle LGPLv2;
6919
6920   pr "\
6921 package com.redhat.et.libguestfs;
6922
6923 /**
6924  * Libguestfs %s structure.
6925  *
6926  * @author rjones
6927  * @see GuestFS
6928  */
6929 public class %s {
6930 " typ typ;
6931
6932   List.iter (
6933     function
6934     | name, `String
6935     | name, `UUID -> pr "  public String %s;\n" name
6936     | name, `Bytes
6937     | name, `Int -> pr "  public long %s;\n" name
6938     | name, `OptPercent ->
6939         pr "  /* The next field is [0..100] or -1 meaning 'not present': */\n";
6940         pr "  public float %s;\n" name
6941   ) cols;
6942
6943   pr "}\n"
6944
6945 and generate_java_c () =
6946   generate_header CStyle LGPLv2;
6947
6948   pr "\
6949 #include <stdio.h>
6950 #include <stdlib.h>
6951 #include <string.h>
6952
6953 #include \"com_redhat_et_libguestfs_GuestFS.h\"
6954 #include \"guestfs.h\"
6955
6956 /* Note that this function returns.  The exception is not thrown
6957  * until after the wrapper function returns.
6958  */
6959 static void
6960 throw_exception (JNIEnv *env, const char *msg)
6961 {
6962   jclass cl;
6963   cl = (*env)->FindClass (env,
6964                           \"com/redhat/et/libguestfs/LibGuestFSException\");
6965   (*env)->ThrowNew (env, cl, msg);
6966 }
6967
6968 JNIEXPORT jlong JNICALL
6969 Java_com_redhat_et_libguestfs_GuestFS__1create
6970   (JNIEnv *env, jobject obj)
6971 {
6972   guestfs_h *g;
6973
6974   g = guestfs_create ();
6975   if (g == NULL) {
6976     throw_exception (env, \"GuestFS.create: failed to allocate handle\");
6977     return 0;
6978   }
6979   guestfs_set_error_handler (g, NULL, NULL);
6980   return (jlong) (long) g;
6981 }
6982
6983 JNIEXPORT void JNICALL
6984 Java_com_redhat_et_libguestfs_GuestFS__1close
6985   (JNIEnv *env, jobject obj, jlong jg)
6986 {
6987   guestfs_h *g = (guestfs_h *) (long) jg;
6988   guestfs_close (g);
6989 }
6990
6991 ";
6992
6993   List.iter (
6994     fun (name, style, _, _, _, _, _) ->
6995       pr "JNIEXPORT ";
6996       (match fst style with
6997        | RErr -> pr "void ";
6998        | RInt _ -> pr "jint ";
6999        | RInt64 _ -> pr "jlong ";
7000        | RBool _ -> pr "jboolean ";
7001        | RConstString _ | RString _ -> pr "jstring ";
7002        | RIntBool _ | RStat _ | RStatVFS _ | RHashtable _ ->
7003            pr "jobject ";
7004        | RStringList _ | RPVList _ | RVGList _ | RLVList _ ->
7005            pr "jobjectArray ";
7006       );
7007       pr "JNICALL\n";
7008       pr "Java_com_redhat_et_libguestfs_GuestFS_";
7009       pr "%s" (replace_str ("_" ^ name) "_" "_1");
7010       pr "\n";
7011       pr "  (JNIEnv *env, jobject obj, jlong jg";
7012       List.iter (
7013         function
7014         | String n
7015         | OptString n
7016         | FileIn n
7017         | FileOut n ->
7018             pr ", jstring j%s" n
7019         | StringList n ->
7020             pr ", jobjectArray j%s" n
7021         | Bool n ->
7022             pr ", jboolean j%s" n
7023         | Int n ->
7024             pr ", jint j%s" n
7025       ) (snd style);
7026       pr ")\n";
7027       pr "{\n";
7028       pr "  guestfs_h *g = (guestfs_h *) (long) jg;\n";
7029       let error_code, no_ret =
7030         match fst style with
7031         | RErr -> pr "  int r;\n"; "-1", ""
7032         | RBool _
7033         | RInt _ -> pr "  int r;\n"; "-1", "0"
7034         | RInt64 _ -> pr "  int64_t r;\n"; "-1", "0"
7035         | RConstString _ -> pr "  const char *r;\n"; "NULL", "NULL"
7036         | RString _ ->
7037             pr "  jstring jr;\n";
7038             pr "  char *r;\n"; "NULL", "NULL"
7039         | RStringList _ ->
7040             pr "  jobjectArray jr;\n";
7041             pr "  int r_len;\n";
7042             pr "  jclass cl;\n";
7043             pr "  jstring jstr;\n";
7044             pr "  char **r;\n"; "NULL", "NULL"
7045         | RIntBool _ ->
7046             pr "  jobject jr;\n";
7047             pr "  jclass cl;\n";
7048             pr "  jfieldID fl;\n";
7049             pr "  struct guestfs_int_bool *r;\n"; "NULL", "NULL"
7050         | RStat _ ->
7051             pr "  jobject jr;\n";
7052             pr "  jclass cl;\n";
7053             pr "  jfieldID fl;\n";
7054             pr "  struct guestfs_stat *r;\n"; "NULL", "NULL"
7055         | RStatVFS _ ->
7056             pr "  jobject jr;\n";
7057             pr "  jclass cl;\n";
7058             pr "  jfieldID fl;\n";
7059             pr "  struct guestfs_statvfs *r;\n"; "NULL", "NULL"
7060         | RPVList _ ->
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_pv_list *r;\n"; "NULL", "NULL"
7066         | RVGList _ ->
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_vg_list *r;\n"; "NULL", "NULL"
7072         | RLVList _ ->
7073             pr "  jobjectArray jr;\n";
7074             pr "  jclass cl;\n";
7075             pr "  jfieldID fl;\n";
7076             pr "  jobject jfl;\n";
7077             pr "  struct guestfs_lvm_lv_list *r;\n"; "NULL", "NULL"
7078         | RHashtable _ -> pr "  char **r;\n"; "NULL", "NULL" in
7079       List.iter (
7080         function
7081         | String n
7082         | OptString n
7083         | FileIn n
7084         | FileOut n ->
7085             pr "  const char *%s;\n" n
7086         | StringList n ->
7087             pr "  int %s_len;\n" n;
7088             pr "  const char **%s;\n" n
7089         | Bool n
7090         | Int n ->
7091             pr "  int %s;\n" n
7092       ) (snd style);
7093
7094       let needs_i =
7095         (match fst style with
7096          | RStringList _ | RPVList _ | RVGList _ | RLVList _ -> true
7097          | RErr | RBool _ | RInt _ | RInt64 _ | RConstString _
7098          | RString _ | RIntBool _ | RStat _ | RStatVFS _
7099          | RHashtable _ -> false) ||
7100         List.exists (function StringList _ -> true | _ -> false) (snd style) in
7101       if needs_i then
7102         pr "  int i;\n";
7103
7104       pr "\n";
7105
7106       (* Get the parameters. *)
7107       List.iter (
7108         function
7109         | String n
7110         | FileIn n
7111         | FileOut n ->
7112             pr "  %s = (*env)->GetStringUTFChars (env, j%s, NULL);\n" n n
7113         | OptString n ->
7114             (* This is completely undocumented, but Java null becomes
7115              * a NULL parameter.
7116              *)
7117             pr "  %s = j%s ? (*env)->GetStringUTFChars (env, j%s, NULL) : NULL;\n" n n n
7118         | StringList n ->
7119             pr "  %s_len = (*env)->GetArrayLength (env, j%s);\n" n n;
7120             pr "  %s = guestfs_safe_malloc (g, sizeof (char *) * (%s_len+1));\n" n n;
7121             pr "  for (i = 0; i < %s_len; ++i) {\n" n;
7122             pr "    jobject o = (*env)->GetObjectArrayElement (env, j%s, i);\n"
7123               n;
7124             pr "    %s[i] = (*env)->GetStringUTFChars (env, o, NULL);\n" n;
7125             pr "  }\n";
7126             pr "  %s[%s_len] = NULL;\n" n n;
7127         | Bool n
7128         | Int n ->
7129             pr "  %s = j%s;\n" n n
7130       ) (snd style);
7131
7132       (* Make the call. *)
7133       pr "  r = guestfs_%s " name;
7134       generate_call_args ~handle:"g" (snd style);
7135       pr ";\n";
7136
7137       (* Release the parameters. *)
7138       List.iter (
7139         function
7140         | String n
7141         | FileIn n
7142         | FileOut n ->
7143             pr "  (*env)->ReleaseStringUTFChars (env, j%s, %s);\n" n n
7144         | OptString n ->
7145             pr "  if (j%s)\n" n;
7146             pr "    (*env)->ReleaseStringUTFChars (env, j%s, %s);\n" n n
7147         | StringList n ->
7148             pr "  for (i = 0; i < %s_len; ++i) {\n" n;
7149             pr "    jobject o = (*env)->GetObjectArrayElement (env, j%s, i);\n"
7150               n;
7151             pr "    (*env)->ReleaseStringUTFChars (env, o, %s[i]);\n" n;
7152             pr "  }\n";
7153             pr "  free (%s);\n" n
7154         | Bool n
7155         | Int n -> ()
7156       ) (snd style);
7157
7158       (* Check for errors. *)
7159       pr "  if (r == %s) {\n" error_code;
7160       pr "    throw_exception (env, guestfs_last_error (g));\n";
7161       pr "    return %s;\n" no_ret;
7162       pr "  }\n";
7163
7164       (* Return value. *)
7165       (match fst style with
7166        | RErr -> ()
7167        | RInt _ -> pr "  return (jint) r;\n"
7168        | RBool _ -> pr "  return (jboolean) r;\n"
7169        | RInt64 _ -> pr "  return (jlong) r;\n"
7170        | RConstString _ -> pr "  return (*env)->NewStringUTF (env, r);\n"
7171        | RString _ ->
7172            pr "  jr = (*env)->NewStringUTF (env, r);\n";
7173            pr "  free (r);\n";
7174            pr "  return jr;\n"
7175        | RStringList _ ->
7176            pr "  for (r_len = 0; r[r_len] != NULL; ++r_len) ;\n";
7177            pr "  cl = (*env)->FindClass (env, \"java/lang/String\");\n";
7178            pr "  jstr = (*env)->NewStringUTF (env, \"\");\n";
7179            pr "  jr = (*env)->NewObjectArray (env, r_len, cl, jstr);\n";
7180            pr "  for (i = 0; i < r_len; ++i) {\n";
7181            pr "    jstr = (*env)->NewStringUTF (env, r[i]);\n";
7182            pr "    (*env)->SetObjectArrayElement (env, jr, i, jstr);\n";
7183            pr "    free (r[i]);\n";
7184            pr "  }\n";
7185            pr "  free (r);\n";
7186            pr "  return jr;\n"
7187        | RIntBool _ ->
7188            pr "  cl = (*env)->FindClass (env, \"com/redhat/et/libguestfs/IntBool\");\n";
7189            pr "  jr = (*env)->AllocObject (env, cl);\n";
7190            pr "  fl = (*env)->GetFieldID (env, cl, \"i\", \"I\");\n";
7191            pr "  (*env)->SetIntField (env, jr, fl, r->i);\n";
7192            pr "  fl = (*env)->GetFieldID (env, cl, \"i\", \"Z\");\n";
7193            pr "  (*env)->SetBooleanField (env, jr, fl, r->b);\n";
7194            pr "  guestfs_free_int_bool (r);\n";
7195            pr "  return jr;\n"
7196        | RStat _ ->
7197            pr "  cl = (*env)->FindClass (env, \"com/redhat/et/libguestfs/Stat\");\n";
7198            pr "  jr = (*env)->AllocObject (env, cl);\n";
7199            List.iter (
7200              function
7201              | name, `Int ->
7202                  pr "  fl = (*env)->GetFieldID (env, cl, \"%s\", \"J\");\n"
7203                    name;
7204                  pr "  (*env)->SetLongField (env, jr, fl, r->%s);\n" name;
7205            ) stat_cols;
7206            pr "  free (r);\n";
7207            pr "  return jr;\n"
7208        | RStatVFS _ ->
7209            pr "  cl = (*env)->FindClass (env, \"com/redhat/et/libguestfs/StatVFS\");\n";
7210            pr "  jr = (*env)->AllocObject (env, cl);\n";
7211            List.iter (
7212              function
7213              | name, `Int ->
7214                  pr "  fl = (*env)->GetFieldID (env, cl, \"%s\", \"J\");\n"
7215                    name;
7216                  pr "  (*env)->SetLongField (env, jr, fl, r->%s);\n" name;
7217            ) statvfs_cols;
7218            pr "  free (r);\n";
7219            pr "  return jr;\n"
7220        | RPVList _ ->
7221            generate_java_lvm_return "pv" "PV" pv_cols
7222        | RVGList _ ->
7223            generate_java_lvm_return "vg" "VG" vg_cols
7224        | RLVList _ ->
7225            generate_java_lvm_return "lv" "LV" lv_cols
7226        | RHashtable _ ->
7227            (* XXX *)
7228            pr "  throw_exception (env, \"%s: internal error: please let us know how to make a Java HashMap from JNI bindings!\");\n" name;
7229            pr "  return NULL;\n"
7230       );
7231
7232       pr "}\n";
7233       pr "\n"
7234   ) all_functions
7235
7236 and generate_java_lvm_return typ jtyp cols =
7237   pr "  cl = (*env)->FindClass (env, \"com/redhat/et/libguestfs/%s\");\n" jtyp;
7238   pr "  jr = (*env)->NewObjectArray (env, r->len, cl, NULL);\n";
7239   pr "  for (i = 0; i < r->len; ++i) {\n";
7240   pr "    jfl = (*env)->AllocObject (env, cl);\n";
7241   List.iter (
7242     function
7243     | name, `String ->
7244         pr "    fl = (*env)->GetFieldID (env, cl, \"%s\", \"Ljava/lang/String;\");\n" name;
7245         pr "    (*env)->SetObjectField (env, jfl, fl, (*env)->NewStringUTF (env, r->val[i].%s));\n" name;
7246     | name, `UUID ->
7247         pr "    {\n";
7248         pr "      char s[33];\n";
7249         pr "      memcpy (s, r->val[i].%s, 32);\n" name;
7250         pr "      s[32] = 0;\n";
7251         pr "      fl = (*env)->GetFieldID (env, cl, \"%s\", \"Ljava/lang/String;\");\n" name;
7252         pr "      (*env)->SetObjectField (env, jfl, fl, (*env)->NewStringUTF (env, s));\n";
7253         pr "    }\n";
7254     | name, (`Bytes|`Int) ->
7255         pr "    fl = (*env)->GetFieldID (env, cl, \"%s\", \"J\");\n" name;
7256         pr "    (*env)->SetLongField (env, jfl, fl, r->val[i].%s);\n" name;
7257     | name, `OptPercent ->
7258         pr "    fl = (*env)->GetFieldID (env, cl, \"%s\", \"F\");\n" name;
7259         pr "    (*env)->SetFloatField (env, jfl, fl, r->val[i].%s);\n" name;
7260   ) cols;
7261   pr "    (*env)->SetObjectArrayElement (env, jfl, i, jfl);\n";
7262   pr "  }\n";
7263   pr "  guestfs_free_lvm_%s_list (r);\n" typ;
7264   pr "  return jr;\n"
7265
7266 and generate_haskell_hs () =
7267   generate_header HaskellStyle LGPLv2;
7268
7269   (* XXX We only know how to generate partial FFI for Haskell
7270    * at the moment.  Please help out!
7271    *)
7272   let can_generate style =
7273     match style with
7274     | RErr, _
7275     | RInt _, _
7276     | RInt64 _, _ -> true
7277     | RBool _, _
7278     | RConstString _, _
7279     | RString _, _
7280     | RStringList _, _
7281     | RIntBool _, _
7282     | RPVList _, _
7283     | RVGList _, _
7284     | RLVList _, _
7285     | RStat _, _
7286     | RStatVFS _, _
7287     | RHashtable _, _ -> false in
7288
7289   pr "\
7290 {-# INCLUDE <guestfs.h> #-}
7291 {-# LANGUAGE ForeignFunctionInterface #-}
7292
7293 module Guestfs (
7294   create";
7295
7296   (* List out the names of the actions we want to export. *)
7297   List.iter (
7298     fun (name, style, _, _, _, _, _) ->
7299       if can_generate style then pr ",\n  %s" name
7300   ) all_functions;
7301
7302   pr "
7303   ) where
7304 import Foreign
7305 import Foreign.C
7306 import Foreign.C.Types
7307 import IO
7308 import Control.Exception
7309 import Data.Typeable
7310
7311 data GuestfsS = GuestfsS            -- represents the opaque C struct
7312 type GuestfsP = Ptr GuestfsS        -- guestfs_h *
7313 type GuestfsH = ForeignPtr GuestfsS -- guestfs_h * with attached finalizer
7314
7315 -- XXX define properly later XXX
7316 data PV = PV
7317 data VG = VG
7318 data LV = LV
7319 data IntBool = IntBool
7320 data Stat = Stat
7321 data StatVFS = StatVFS
7322 data Hashtable = Hashtable
7323
7324 foreign import ccall unsafe \"guestfs_create\" c_create
7325   :: IO GuestfsP
7326 foreign import ccall unsafe \"&guestfs_close\" c_close
7327   :: FunPtr (GuestfsP -> IO ())
7328 foreign import ccall unsafe \"guestfs_set_error_handler\" c_set_error_handler
7329   :: GuestfsP -> Ptr CInt -> Ptr CInt -> IO ()
7330
7331 create :: IO GuestfsH
7332 create = do
7333   p <- c_create
7334   c_set_error_handler p nullPtr nullPtr
7335   h <- newForeignPtr c_close p
7336   return h
7337
7338 foreign import ccall unsafe \"guestfs_last_error\" c_last_error
7339   :: GuestfsP -> IO CString
7340
7341 -- last_error :: GuestfsH -> IO (Maybe String)
7342 -- last_error h = do
7343 --   str <- withForeignPtr h (\\p -> c_last_error p)
7344 --   maybePeek peekCString str
7345
7346 last_error :: GuestfsH -> IO (String)
7347 last_error h = do
7348   str <- withForeignPtr h (\\p -> c_last_error p)
7349   if (str == nullPtr)
7350     then return \"no error\"
7351     else peekCString str
7352
7353 ";
7354
7355   (* Generate wrappers for each foreign function. *)
7356   List.iter (
7357     fun (name, style, _, _, _, _, _) ->
7358       if can_generate style then (
7359         pr "foreign import ccall unsafe \"guestfs_%s\" c_%s\n" name name;
7360         pr "  :: ";
7361         generate_haskell_prototype ~handle:"GuestfsP" style;
7362         pr "\n";
7363         pr "\n";
7364         pr "%s :: " name;
7365         generate_haskell_prototype ~handle:"GuestfsH" ~hs:true style;
7366         pr "\n";
7367         pr "%s %s = do\n" name
7368           (String.concat " " ("h" :: List.map name_of_argt (snd style)));
7369         pr "  r <- ";
7370         (* Convert pointer arguments using with* functions. *)
7371         List.iter (
7372           function
7373           | FileIn n
7374           | FileOut n
7375           | String n -> pr "withCString %s $ \\%s -> " n n
7376           | OptString n -> pr "maybeWith withCString %s $ \\%s -> " n n
7377           | StringList n -> pr "withMany withCString %s $ \\%s -> withArray0 nullPtr %s $ \\%s -> " n n n n
7378           | Bool _ | Int _ -> ()
7379         ) (snd style);
7380         (* Convert integer arguments. *)
7381         let args =
7382           List.map (
7383             function
7384             | Bool n -> sprintf "(fromBool %s)" n
7385             | Int n -> sprintf "(fromIntegral %s)" n
7386             | FileIn n | FileOut n | String n | OptString n | StringList n -> n
7387           ) (snd style) in
7388         pr "withForeignPtr h (\\p -> c_%s %s)\n" name
7389           (String.concat " " ("p" :: args));
7390         (match fst style with
7391          | RErr | RInt _ | RInt64 _ | RBool _ ->
7392              pr "  if (r == -1)\n";
7393              pr "    then do\n";
7394              pr "      err <- last_error h\n";
7395              pr "      fail err\n";
7396          | RConstString _ | RString _ | RStringList _ | RIntBool _
7397          | RPVList _ | RVGList _ | RLVList _ | RStat _ | RStatVFS _
7398          | RHashtable _ ->
7399              pr "  if (r == nullPtr)\n";
7400              pr "    then do\n";
7401              pr "      err <- last_error h\n";
7402              pr "      fail err\n";
7403         );
7404         (match fst style with
7405          | RErr ->
7406              pr "    else return ()\n"
7407          | RInt _ ->
7408              pr "    else return (fromIntegral r)\n"
7409          | RInt64 _ ->
7410              pr "    else return (fromIntegral r)\n"
7411          | RBool _ ->
7412              pr "    else return (toBool r)\n"
7413          | RConstString _
7414          | RString _
7415          | RStringList _
7416          | RIntBool _
7417          | RPVList _
7418          | RVGList _
7419          | RLVList _
7420          | RStat _
7421          | RStatVFS _
7422          | RHashtable _ ->
7423              pr "    else return ()\n" (* XXXXXXXXXXXXXXXXXXXX *)
7424         );
7425         pr "\n";
7426       )
7427   ) all_functions
7428
7429 and generate_haskell_prototype ~handle ?(hs = false) style =
7430   pr "%s -> " handle;
7431   let string = if hs then "String" else "CString" in
7432   let int = if hs then "Int" else "CInt" in
7433   let bool = if hs then "Bool" else "CInt" in
7434   let int64 = if hs then "Integer" else "Int64" in
7435   List.iter (
7436     fun arg ->
7437       (match arg with
7438        | String _ -> pr "%s" string
7439        | OptString _ -> if hs then pr "Maybe String" else pr "CString"
7440        | StringList _ -> if hs then pr "[String]" else pr "Ptr CString"
7441        | Bool _ -> pr "%s" bool
7442        | Int _ -> pr "%s" int
7443        | FileIn _ -> pr "%s" string
7444        | FileOut _ -> pr "%s" string
7445       );
7446       pr " -> ";
7447   ) (snd style);
7448   pr "IO (";
7449   (match fst style with
7450    | RErr -> if not hs then pr "CInt"
7451    | RInt _ -> pr "%s" int
7452    | RInt64 _ -> pr "%s" int64
7453    | RBool _ -> pr "%s" bool
7454    | RConstString _ -> pr "%s" string
7455    | RString _ -> pr "%s" string
7456    | RStringList _ -> pr "[%s]" string
7457    | RIntBool _ -> pr "IntBool"
7458    | RPVList _ -> pr "[PV]"
7459    | RVGList _ -> pr "[VG]"
7460    | RLVList _ -> pr "[LV]"
7461    | RStat _ -> pr "Stat"
7462    | RStatVFS _ -> pr "StatVFS"
7463    | RHashtable _ -> pr "Hashtable"
7464   );
7465   pr ")"
7466
7467 and generate_bindtests () =
7468   generate_header CStyle LGPLv2;
7469
7470   pr "\
7471 #include <stdio.h>
7472 #include <stdlib.h>
7473 #include <inttypes.h>
7474 #include <string.h>
7475
7476 #include \"guestfs.h\"
7477 #include \"guestfs_protocol.h\"
7478
7479 #define error guestfs_error
7480
7481 static void
7482 print_strings (char * const* const argv)
7483 {
7484   int argc;
7485
7486   printf (\"[\");
7487   for (argc = 0; argv[argc] != NULL; ++argc) {
7488     if (argc > 0) printf (\", \");
7489     printf (\"\\\"%%s\\\"\", argv[argc]);
7490   }
7491   printf (\"]\\n\");
7492 }
7493
7494 /* The test0 function prints its parameters to stdout. */
7495 ";
7496
7497   let test0, tests =
7498     match test_functions with
7499     | [] -> assert false
7500     | test0 :: tests -> test0, tests in
7501
7502   let () =
7503     let (name, style, _, _, _, _, _) = test0 in
7504     generate_prototype ~extern:false ~semicolon:false ~newline:true
7505       ~handle:"g" ~prefix:"guestfs_" name style;
7506     pr "{\n";
7507     List.iter (
7508       function
7509       | String n
7510       | FileIn n
7511       | FileOut n -> pr "  printf (\"%%s\\n\", %s);\n" n
7512       | OptString n -> pr "  printf (\"%%s\\n\", %s ? %s : \"null\");\n" n n
7513       | StringList n -> pr "  print_strings (%s);\n" n
7514       | Bool n -> pr "  printf (\"%%s\\n\", %s ? \"true\" : \"false\");\n" n
7515       | Int n -> pr "  printf (\"%%d\\n\", %s);\n" n
7516     ) (snd style);
7517     pr "  /* Java changes stdout line buffering so we need this: */\n";
7518     pr "  fflush (stdout);\n";
7519     pr "  return 0;\n";
7520     pr "}\n";
7521     pr "\n" in
7522
7523   List.iter (
7524     fun (name, style, _, _, _, _, _) ->
7525       if String.sub name (String.length name - 3) 3 <> "err" then (
7526         pr "/* Test normal return. */\n";
7527         generate_prototype ~extern:false ~semicolon:false ~newline:true
7528           ~handle:"g" ~prefix:"guestfs_" name style;
7529         pr "{\n";
7530         (match fst style with
7531          | RErr ->
7532              pr "  return 0;\n"
7533          | RInt _ ->
7534              pr "  int r;\n";
7535              pr "  sscanf (val, \"%%d\", &r);\n";
7536              pr "  return r;\n"
7537          | RInt64 _ ->
7538              pr "  int64_t r;\n";
7539              pr "  sscanf (val, \"%%\" SCNi64, &r);\n";
7540              pr "  return r;\n"
7541          | RBool _ ->
7542              pr "  return strcmp (val, \"true\") == 0;\n"
7543          | RConstString _ ->
7544              (* Can't return the input string here.  Return a static
7545               * string so we ensure we get a segfault if the caller
7546               * tries to free it.
7547               *)
7548              pr "  return \"static string\";\n"
7549          | RString _ ->
7550              pr "  return strdup (val);\n"
7551          | RStringList _ ->
7552              pr "  char **strs;\n";
7553              pr "  int n, i;\n";
7554              pr "  sscanf (val, \"%%d\", &n);\n";
7555              pr "  strs = malloc ((n+1) * sizeof (char *));\n";
7556              pr "  for (i = 0; i < n; ++i) {\n";
7557              pr "    strs[i] = malloc (16);\n";
7558              pr "    snprintf (strs[i], 16, \"%%d\", i);\n";
7559              pr "  }\n";
7560              pr "  strs[n] = NULL;\n";
7561              pr "  return strs;\n"
7562          | RIntBool _ ->
7563              pr "  struct guestfs_int_bool *r;\n";
7564              pr "  r = malloc (sizeof (struct guestfs_int_bool));\n";
7565              pr "  sscanf (val, \"%%\" SCNi32, &r->i);\n";
7566              pr "  r->b = 0;\n";
7567              pr "  return r;\n"
7568          | RPVList _ ->
7569              pr "  struct guestfs_lvm_pv_list *r;\n";
7570              pr "  int i;\n";
7571              pr "  r = malloc (sizeof (struct guestfs_lvm_pv_list));\n";
7572              pr "  sscanf (val, \"%%d\", &r->len);\n";
7573              pr "  r->val = calloc (r->len, sizeof (struct guestfs_lvm_pv));\n";
7574              pr "  for (i = 0; i < r->len; ++i) {\n";
7575              pr "    r->val[i].pv_name = malloc (16);\n";
7576              pr "    snprintf (r->val[i].pv_name, 16, \"%%d\", i);\n";
7577              pr "  }\n";
7578              pr "  return r;\n"
7579          | RVGList _ ->
7580              pr "  struct guestfs_lvm_vg_list *r;\n";
7581              pr "  int i;\n";
7582              pr "  r = malloc (sizeof (struct guestfs_lvm_vg_list));\n";
7583              pr "  sscanf (val, \"%%d\", &r->len);\n";
7584              pr "  r->val = calloc (r->len, sizeof (struct guestfs_lvm_vg));\n";
7585              pr "  for (i = 0; i < r->len; ++i) {\n";
7586              pr "    r->val[i].vg_name = malloc (16);\n";
7587              pr "    snprintf (r->val[i].vg_name, 16, \"%%d\", i);\n";
7588              pr "  }\n";
7589              pr "  return r;\n"
7590          | RLVList _ ->
7591              pr "  struct guestfs_lvm_lv_list *r;\n";
7592              pr "  int i;\n";
7593              pr "  r = malloc (sizeof (struct guestfs_lvm_lv_list));\n";
7594              pr "  sscanf (val, \"%%d\", &r->len);\n";
7595              pr "  r->val = calloc (r->len, sizeof (struct guestfs_lvm_lv));\n";
7596              pr "  for (i = 0; i < r->len; ++i) {\n";
7597              pr "    r->val[i].lv_name = malloc (16);\n";
7598              pr "    snprintf (r->val[i].lv_name, 16, \"%%d\", i);\n";
7599              pr "  }\n";
7600              pr "  return r;\n"
7601          | RStat _ ->
7602              pr "  struct guestfs_stat *r;\n";
7603              pr "  r = calloc (1, sizeof (*r));\n";
7604              pr "  sscanf (val, \"%%\" SCNi64, &r->dev);\n";
7605              pr "  return r;\n"
7606          | RStatVFS _ ->
7607              pr "  struct guestfs_statvfs *r;\n";
7608              pr "  r = calloc (1, sizeof (*r));\n";
7609              pr "  sscanf (val, \"%%\" SCNi64, &r->bsize);\n";
7610              pr "  return r;\n"
7611          | RHashtable _ ->
7612              pr "  char **strs;\n";
7613              pr "  int n, i;\n";
7614              pr "  sscanf (val, \"%%d\", &n);\n";
7615              pr "  strs = malloc ((n*2+1) * sizeof (char *));\n";
7616              pr "  for (i = 0; i < n; ++i) {\n";
7617              pr "    strs[i*2] = malloc (16);\n";
7618              pr "    strs[i*2+1] = malloc (16);\n";
7619              pr "    snprintf (strs[i*2], 16, \"%%d\", i);\n";
7620              pr "    snprintf (strs[i*2+1], 16, \"%%d\", i);\n";
7621              pr "  }\n";
7622              pr "  strs[n*2] = NULL;\n";
7623              pr "  return strs;\n"
7624         );
7625         pr "}\n";
7626         pr "\n"
7627       ) else (
7628         pr "/* Test error return. */\n";
7629         generate_prototype ~extern:false ~semicolon:false ~newline:true
7630           ~handle:"g" ~prefix:"guestfs_" name style;
7631         pr "{\n";
7632         pr "  error (g, \"error\");\n";
7633         (match fst style with
7634          | RErr | RInt _ | RInt64 _ | RBool _ ->
7635              pr "  return -1;\n"
7636          | RConstString _
7637          | RString _ | RStringList _ | RIntBool _
7638          | RPVList _ | RVGList _ | RLVList _ | RStat _ | RStatVFS _
7639          | RHashtable _ ->
7640              pr "  return NULL;\n"
7641         );
7642         pr "}\n";
7643         pr "\n"
7644       )
7645   ) tests
7646
7647 and generate_ocaml_bindtests () =
7648   generate_header OCamlStyle GPLv2;
7649
7650   pr "\
7651 let () =
7652   let g = Guestfs.create () in
7653 ";
7654
7655   let mkargs args =
7656     String.concat " " (
7657       List.map (
7658         function
7659         | CallString s -> "\"" ^ s ^ "\""
7660         | CallOptString None -> "None"
7661         | CallOptString (Some s) -> sprintf "(Some \"%s\")" s
7662         | CallStringList xs ->
7663             "[|" ^ String.concat ";" (List.map (sprintf "\"%s\"") xs) ^ "|]"
7664         | CallInt i when i >= 0 -> string_of_int i
7665         | CallInt i (* when i < 0 *) -> "(" ^ string_of_int i ^ ")"
7666         | CallBool b -> string_of_bool b
7667       ) args
7668     )
7669   in
7670
7671   generate_lang_bindtests (
7672     fun f args -> pr "  Guestfs.%s g %s;\n" f (mkargs args)
7673   );
7674
7675   pr "print_endline \"EOF\"\n"
7676
7677 and generate_perl_bindtests () =
7678   pr "#!/usr/bin/perl -w\n";
7679   generate_header HashStyle GPLv2;
7680
7681   pr "\
7682 use strict;
7683
7684 use Sys::Guestfs;
7685
7686 my $g = Sys::Guestfs->new ();
7687 ";
7688
7689   let mkargs args =
7690     String.concat ", " (
7691       List.map (
7692         function
7693         | CallString s -> "\"" ^ s ^ "\""
7694         | CallOptString None -> "undef"
7695         | CallOptString (Some s) -> sprintf "\"%s\"" s
7696         | CallStringList xs ->
7697             "[" ^ String.concat "," (List.map (sprintf "\"%s\"") xs) ^ "]"
7698         | CallInt i -> string_of_int i
7699         | CallBool b -> if b then "1" else "0"
7700       ) args
7701     )
7702   in
7703
7704   generate_lang_bindtests (
7705     fun f args -> pr "$g->%s (%s);\n" f (mkargs args)
7706   );
7707
7708   pr "print \"EOF\\n\"\n"
7709
7710 and generate_python_bindtests () =
7711   generate_header HashStyle GPLv2;
7712
7713   pr "\
7714 import guestfs
7715
7716 g = guestfs.GuestFS ()
7717 ";
7718
7719   let mkargs args =
7720     String.concat ", " (
7721       List.map (
7722         function
7723         | CallString s -> "\"" ^ s ^ "\""
7724         | CallOptString None -> "None"
7725         | CallOptString (Some s) -> sprintf "\"%s\"" s
7726         | CallStringList xs ->
7727             "[" ^ String.concat "," (List.map (sprintf "\"%s\"") xs) ^ "]"
7728         | CallInt i -> string_of_int i
7729         | CallBool b -> if b then "1" else "0"
7730       ) args
7731     )
7732   in
7733
7734   generate_lang_bindtests (
7735     fun f args -> pr "g.%s (%s)\n" f (mkargs args)
7736   );
7737
7738   pr "print \"EOF\"\n"
7739
7740 and generate_ruby_bindtests () =
7741   generate_header HashStyle GPLv2;
7742
7743   pr "\
7744 require 'guestfs'
7745
7746 g = Guestfs::create()
7747 ";
7748
7749   let mkargs args =
7750     String.concat ", " (
7751       List.map (
7752         function
7753         | CallString s -> "\"" ^ s ^ "\""
7754         | CallOptString None -> "nil"
7755         | CallOptString (Some s) -> sprintf "\"%s\"" s
7756         | CallStringList xs ->
7757             "[" ^ String.concat "," (List.map (sprintf "\"%s\"") xs) ^ "]"
7758         | CallInt i -> string_of_int i
7759         | CallBool b -> string_of_bool b
7760       ) args
7761     )
7762   in
7763
7764   generate_lang_bindtests (
7765     fun f args -> pr "g.%s(%s)\n" f (mkargs args)
7766   );
7767
7768   pr "print \"EOF\\n\"\n"
7769
7770 and generate_java_bindtests () =
7771   generate_header CStyle GPLv2;
7772
7773   pr "\
7774 import com.redhat.et.libguestfs.*;
7775
7776 public class Bindtests {
7777     public static void main (String[] argv)
7778     {
7779         try {
7780             GuestFS g = new GuestFS ();
7781 ";
7782
7783   let mkargs args =
7784     String.concat ", " (
7785       List.map (
7786         function
7787         | CallString s -> "\"" ^ s ^ "\""
7788         | CallOptString None -> "null"
7789         | CallOptString (Some s) -> sprintf "\"%s\"" s
7790         | CallStringList xs ->
7791             "new String[]{" ^
7792               String.concat "," (List.map (sprintf "\"%s\"") xs) ^ "}"
7793         | CallInt i -> string_of_int i
7794         | CallBool b -> string_of_bool b
7795       ) args
7796     )
7797   in
7798
7799   generate_lang_bindtests (
7800     fun f args -> pr "            g.%s (%s);\n" f (mkargs args)
7801   );
7802
7803   pr "
7804             System.out.println (\"EOF\");
7805         }
7806         catch (Exception exn) {
7807             System.err.println (exn);
7808             System.exit (1);
7809         }
7810     }
7811 }
7812 "
7813
7814 and generate_haskell_bindtests () =
7815   generate_header HaskellStyle GPLv2;
7816
7817   pr "\
7818 module Bindtests where
7819 import qualified Guestfs
7820
7821 main = do
7822   g <- Guestfs.create
7823 ";
7824
7825   let mkargs args =
7826     String.concat " " (
7827       List.map (
7828         function
7829         | CallString s -> "\"" ^ s ^ "\""
7830         | CallOptString None -> "Nothing"
7831         | CallOptString (Some s) -> sprintf "(Just \"%s\")" s
7832         | CallStringList xs ->
7833             "[" ^ String.concat "," (List.map (sprintf "\"%s\"") xs) ^ "]"
7834         | CallInt i when i < 0 -> "(" ^ string_of_int i ^ ")"
7835         | CallInt i -> string_of_int i
7836         | CallBool true -> "True"
7837         | CallBool false -> "False"
7838       ) args
7839     )
7840   in
7841
7842   generate_lang_bindtests (
7843     fun f args -> pr "  Guestfs.%s g %s\n" f (mkargs args)
7844   );
7845
7846   pr "  putStrLn \"EOF\"\n"
7847
7848 (* Language-independent bindings tests - we do it this way to
7849  * ensure there is parity in testing bindings across all languages.
7850  *)
7851 and generate_lang_bindtests call =
7852   call "test0" [CallString "abc"; CallOptString (Some "def");
7853                 CallStringList []; CallBool false;
7854                 CallInt 0; CallString "123"; CallString "456"];
7855   call "test0" [CallString "abc"; CallOptString None;
7856                 CallStringList []; CallBool false;
7857                 CallInt 0; CallString "123"; CallString "456"];
7858   call "test0" [CallString ""; CallOptString (Some "def");
7859                 CallStringList []; CallBool false;
7860                 CallInt 0; CallString "123"; CallString "456"];
7861   call "test0" [CallString ""; CallOptString (Some "");
7862                 CallStringList []; CallBool false;
7863                 CallInt 0; CallString "123"; CallString "456"];
7864   call "test0" [CallString "abc"; CallOptString (Some "def");
7865                 CallStringList ["1"]; CallBool false;
7866                 CallInt 0; CallString "123"; CallString "456"];
7867   call "test0" [CallString "abc"; CallOptString (Some "def");
7868                 CallStringList ["1"; "2"]; CallBool false;
7869                 CallInt 0; CallString "123"; CallString "456"];
7870   call "test0" [CallString "abc"; CallOptString (Some "def");
7871                 CallStringList ["1"]; CallBool true;
7872                 CallInt 0; CallString "123"; CallString "456"];
7873   call "test0" [CallString "abc"; CallOptString (Some "def");
7874                 CallStringList ["1"]; CallBool false;
7875                 CallInt (-1); CallString "123"; CallString "456"];
7876   call "test0" [CallString "abc"; CallOptString (Some "def");
7877                 CallStringList ["1"]; CallBool false;
7878                 CallInt (-2); CallString "123"; CallString "456"];
7879   call "test0" [CallString "abc"; CallOptString (Some "def");
7880                 CallStringList ["1"]; CallBool false;
7881                 CallInt 1; CallString "123"; CallString "456"];
7882   call "test0" [CallString "abc"; CallOptString (Some "def");
7883                 CallStringList ["1"]; CallBool false;
7884                 CallInt 2; CallString "123"; CallString "456"];
7885   call "test0" [CallString "abc"; CallOptString (Some "def");
7886                 CallStringList ["1"]; CallBool false;
7887                 CallInt 4095; CallString "123"; CallString "456"];
7888   call "test0" [CallString "abc"; CallOptString (Some "def");
7889                 CallStringList ["1"]; CallBool false;
7890                 CallInt 0; CallString ""; CallString ""]
7891
7892   (* XXX Add here tests of the return and error functions. *)
7893
7894 (* This is used to generate the src/MAX_PROC_NR file which
7895  * contains the maximum procedure number, a surrogate for the
7896  * ABI version number.  See src/Makefile.am for the details.
7897  *)
7898 and generate_max_proc_nr () =
7899   let proc_nrs = List.map (
7900     fun (_, _, proc_nr, _, _, _, _) -> proc_nr
7901   ) daemon_functions in
7902
7903   let max_proc_nr = List.fold_left max 0 proc_nrs in
7904
7905   pr "%d\n" max_proc_nr
7906
7907 let output_to filename =
7908   let filename_new = filename ^ ".new" in
7909   chan := open_out filename_new;
7910   let close () =
7911     close_out !chan;
7912     chan := stdout;
7913
7914     (* Is the new file different from the current file? *)
7915     if Sys.file_exists filename && files_equal filename filename_new then
7916       Unix.unlink filename_new          (* same, so skip it *)
7917     else (
7918       (* different, overwrite old one *)
7919       (try Unix.chmod filename 0o644 with Unix.Unix_error _ -> ());
7920       Unix.rename filename_new filename;
7921       Unix.chmod filename 0o444;
7922       printf "written %s\n%!" filename;
7923     )
7924   in
7925   close
7926
7927 (* Main program. *)
7928 let () =
7929   check_functions ();
7930
7931   if not (Sys.file_exists "configure.ac") then (
7932     eprintf "\
7933 You are probably running this from the wrong directory.
7934 Run it from the top source directory using the command
7935   src/generator.ml
7936 ";
7937     exit 1
7938   );
7939
7940   let close = output_to "src/guestfs_protocol.x" in
7941   generate_xdr ();
7942   close ();
7943
7944   let close = output_to "src/guestfs-structs.h" in
7945   generate_structs_h ();
7946   close ();
7947
7948   let close = output_to "src/guestfs-actions.h" in
7949   generate_actions_h ();
7950   close ();
7951
7952   let close = output_to "src/guestfs-actions.c" in
7953   generate_client_actions ();
7954   close ();
7955
7956   let close = output_to "daemon/actions.h" in
7957   generate_daemon_actions_h ();
7958   close ();
7959
7960   let close = output_to "daemon/stubs.c" in
7961   generate_daemon_actions ();
7962   close ();
7963
7964   let close = output_to "capitests/tests.c" in
7965   generate_tests ();
7966   close ();
7967
7968   let close = output_to "src/guestfs-bindtests.c" in
7969   generate_bindtests ();
7970   close ();
7971
7972   let close = output_to "fish/cmds.c" in
7973   generate_fish_cmds ();
7974   close ();
7975
7976   let close = output_to "fish/completion.c" in
7977   generate_fish_completion ();
7978   close ();
7979
7980   let close = output_to "guestfs-structs.pod" in
7981   generate_structs_pod ();
7982   close ();
7983
7984   let close = output_to "guestfs-actions.pod" in
7985   generate_actions_pod ();
7986   close ();
7987
7988   let close = output_to "guestfish-actions.pod" in
7989   generate_fish_actions_pod ();
7990   close ();
7991
7992   let close = output_to "ocaml/guestfs.mli" in
7993   generate_ocaml_mli ();
7994   close ();
7995
7996   let close = output_to "ocaml/guestfs.ml" in
7997   generate_ocaml_ml ();
7998   close ();
7999
8000   let close = output_to "ocaml/guestfs_c_actions.c" in
8001   generate_ocaml_c ();
8002   close ();
8003
8004   let close = output_to "ocaml/bindtests.ml" in
8005   generate_ocaml_bindtests ();
8006   close ();
8007
8008   let close = output_to "perl/Guestfs.xs" in
8009   generate_perl_xs ();
8010   close ();
8011
8012   let close = output_to "perl/lib/Sys/Guestfs.pm" in
8013   generate_perl_pm ();
8014   close ();
8015
8016   let close = output_to "perl/bindtests.pl" in
8017   generate_perl_bindtests ();
8018   close ();
8019
8020   let close = output_to "python/guestfs-py.c" in
8021   generate_python_c ();
8022   close ();
8023
8024   let close = output_to "python/guestfs.py" in
8025   generate_python_py ();
8026   close ();
8027
8028   let close = output_to "python/bindtests.py" in
8029   generate_python_bindtests ();
8030   close ();
8031
8032   let close = output_to "ruby/ext/guestfs/_guestfs.c" in
8033   generate_ruby_c ();
8034   close ();
8035
8036   let close = output_to "ruby/bindtests.rb" in
8037   generate_ruby_bindtests ();
8038   close ();
8039
8040   let close = output_to "java/com/redhat/et/libguestfs/GuestFS.java" in
8041   generate_java_java ();
8042   close ();
8043
8044   let close = output_to "java/com/redhat/et/libguestfs/PV.java" in
8045   generate_java_struct "PV" pv_cols;
8046   close ();
8047
8048   let close = output_to "java/com/redhat/et/libguestfs/VG.java" in
8049   generate_java_struct "VG" vg_cols;
8050   close ();
8051
8052   let close = output_to "java/com/redhat/et/libguestfs/LV.java" in
8053   generate_java_struct "LV" lv_cols;
8054   close ();
8055
8056   let close = output_to "java/com/redhat/et/libguestfs/Stat.java" in
8057   generate_java_struct "Stat" stat_cols;
8058   close ();
8059
8060   let close = output_to "java/com/redhat/et/libguestfs/StatVFS.java" in
8061   generate_java_struct "StatVFS" statvfs_cols;
8062   close ();
8063
8064   let close = output_to "java/com_redhat_et_libguestfs_GuestFS.c" in
8065   generate_java_c ();
8066   close ();
8067
8068   let close = output_to "java/Bindtests.java" in
8069   generate_java_bindtests ();
8070   close ();
8071
8072   let close = output_to "haskell/Guestfs.hs" in
8073   generate_haskell_hs ();
8074   close ();
8075
8076   let close = output_to "haskell/Bindtests.hs" in
8077   generate_haskell_bindtests ();
8078   close ();
8079
8080   let close = output_to "src/MAX_PROC_NR" in
8081   generate_max_proc_nr ();
8082   close ();