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