44dc8a5d225c05f60e4b26d2f7e69ddb468bd1dd
[libguestfs.git] / src / generator.ml
1 #!/usr/bin/env ocaml
2 (* libguestfs
3  * Copyright (C) 2009-2010 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 of
25  * 'daemon_functions' below), and daemon/<somefile>.c to write the
26  * implementation.
27  * 
28  * After editing this file, run it (./src/generator.ml) to regenerate
29  * all the output files.  'make' will rerun this automatically when
30  * necessary.  Note that if you are using a separate build directory
31  * you must run generator.ml from the _source_ directory.
32  * 
33  * IMPORTANT: This script should NOT print any warnings.  If it prints
34  * warnings, you should treat them as errors.
35  *
36  * OCaml tips:
37  * (1) In emacs, install tuareg-mode to display and format OCaml code
38  * correctly.  'vim' comes with a good OCaml editing mode by default.
39  * (2) Read the resources at http://ocaml-tutorial.org/
40  *)
41
42 #load "unix.cma";;
43 #load "str.cma";;
44 #directory "+xml-light";;
45 #load "xml-light.cma";;
46
47 open Unix
48 open Printf
49
50 type style = ret * args
51 and ret =
52     (* "RErr" as a return value means an int used as a simple error
53      * indication, ie. 0 or -1.
54      *)
55   | RErr
56
57     (* "RInt" as a return value means an int which is -1 for error
58      * or any value >= 0 on success.  Only use this for smallish
59      * positive ints (0 <= i < 2^30).
60      *)
61   | RInt of string
62
63     (* "RInt64" is the same as RInt, but is guaranteed to be able
64      * to return a full 64 bit value, _except_ that -1 means error
65      * (so -1 cannot be a valid, non-error return value).
66      *)
67   | RInt64 of string
68
69     (* "RBool" is a bool return value which can be true/false or
70      * -1 for error.
71      *)
72   | RBool of string
73
74     (* "RConstString" is a string that refers to a constant value.
75      * The return value must NOT be NULL (since NULL indicates
76      * an error).
77      *
78      * Try to avoid using this.  In particular you cannot use this
79      * for values returned from the daemon, because there is no
80      * thread-safe way to return them in the C API.
81      *)
82   | RConstString of string
83
84     (* "RConstOptString" is an even more broken version of
85      * "RConstString".  The returned string may be NULL and there
86      * is no way to return an error indication.  Avoid using this!
87      *)
88   | RConstOptString of string
89
90     (* "RString" is a returned string.  It must NOT be NULL, since
91      * a NULL return indicates an error.  The caller frees this.
92      *)
93   | RString of string
94
95     (* "RStringList" is a list of strings.  No string in the list
96      * can be NULL.  The caller frees the strings and the array.
97      *)
98   | RStringList of string
99
100     (* "RStruct" is a function which returns a single named structure
101      * or an error indication (in C, a struct, and in other languages
102      * with varying representations, but usually very efficient).  See
103      * after the function list below for the structures.
104      *)
105   | RStruct of string * string          (* name of retval, name of struct *)
106
107     (* "RStructList" is a function which returns either a list/array
108      * of structures (could be zero-length), or an error indication.
109      *)
110   | RStructList of string * string      (* name of retval, name of struct *)
111
112     (* Key-value pairs of untyped strings.  Turns into a hashtable or
113      * dictionary in languages which support it.  DON'T use this as a
114      * general "bucket" for results.  Prefer a stronger typed return
115      * value if one is available, or write a custom struct.  Don't use
116      * this if the list could potentially be very long, since it is
117      * inefficient.  Keys should be unique.  NULLs are not permitted.
118      *)
119   | RHashtable of string
120
121     (* "RBufferOut" is handled almost exactly like RString, but
122      * it allows the string to contain arbitrary 8 bit data including
123      * ASCII NUL.  In the C API this causes an implicit extra parameter
124      * to be added of type <size_t *size_r>.  The extra parameter
125      * returns the actual size of the return buffer in bytes.
126      *
127      * Other programming languages support strings with arbitrary 8 bit
128      * data.
129      *
130      * At the RPC layer we have to use the opaque<> type instead of
131      * string<>.  Returned data is still limited to the max message
132      * size (ie. ~ 2 MB).
133      *)
134   | RBufferOut of string
135
136 and args = argt list    (* Function parameters, guestfs handle is implicit. *)
137
138     (* Note in future we should allow a "variable args" parameter as
139      * the final parameter, to allow commands like
140      *   chmod mode file [file(s)...]
141      * This is not implemented yet, but many commands (such as chmod)
142      * are currently defined with the argument order keeping this future
143      * possibility in mind.
144      *)
145 and argt =
146   | String of string    (* const char *name, cannot be NULL *)
147   | Device of string    (* /dev device name, cannot be NULL *)
148   | Pathname of string  (* file name, cannot be NULL *)
149   | Dev_or_Path of string (* /dev device name or Pathname, cannot be NULL *)
150   | OptString of string (* const char *name, may be NULL *)
151   | StringList of string(* list of strings (each string cannot be NULL) *)
152   | DeviceList of string(* list of Device names (each cannot be NULL) *)
153   | Bool of string      (* boolean *)
154   | Int of string       (* int (smallish ints, signed, <= 31 bits) *)
155   | Int64 of string     (* any 64 bit int *)
156     (* These are treated as filenames (simple string parameters) in
157      * the C API and bindings.  But in the RPC protocol, we transfer
158      * the actual file content up to or down from the daemon.
159      * FileIn: local machine -> daemon (in request)
160      * FileOut: daemon -> local machine (in reply)
161      * In guestfish (only), the special name "-" means read from
162      * stdin or write to stdout.
163      *)
164   | FileIn of string
165   | FileOut of string
166 (* Not implemented:
167     (* Opaque buffer which can contain arbitrary 8 bit data.
168      * In the C API, this is expressed as <char *, int> pair.
169      * Most other languages have a string type which can contain
170      * ASCII NUL.  We use whatever type is appropriate for each
171      * language.
172      * Buffers are limited by the total message size.  To transfer
173      * large blocks of data, use FileIn/FileOut parameters instead.
174      * To return an arbitrary buffer, use RBufferOut.
175      *)
176   | BufferIn of string
177 *)
178
179 type flags =
180   | ProtocolLimitWarning  (* display warning about protocol size limits *)
181   | DangerWillRobinson    (* flags particularly dangerous commands *)
182   | FishAlias of string   (* provide an alias for this cmd in guestfish *)
183   | FishAction of string  (* call this function in guestfish *)
184   | NotInFish             (* do not export via guestfish *)
185   | NotInDocs             (* do not add this function to documentation *)
186   | DeprecatedBy of string (* function is deprecated, use .. instead *)
187   | Optional of string    (* function is part of an optional group *)
188
189 (* You can supply zero or as many tests as you want per API call.
190  *
191  * Note that the test environment has 3 block devices, of size 500MB,
192  * 50MB and 10MB (respectively /dev/sda, /dev/sdb, /dev/sdc), and
193  * a fourth ISO block device with some known files on it (/dev/sdd).
194  *
195  * Note for partitioning purposes, the 500MB device has 1015 cylinders.
196  * Number of cylinders was 63 for IDE emulated disks with precisely
197  * the same size.  How exactly this is calculated is a mystery.
198  *
199  * The ISO block device (/dev/sdd) comes from images/test.iso.
200  *
201  * To be able to run the tests in a reasonable amount of time,
202  * the virtual machine and block devices are reused between tests.
203  * So don't try testing kill_subprocess :-x
204  *
205  * Between each test we blockdev-setrw, umount-all, lvm-remove-all.
206  *
207  * Don't assume anything about the previous contents of the block
208  * devices.  Use 'Init*' to create some initial scenarios.
209  *
210  * You can add a prerequisite clause to any individual test.  This
211  * is a run-time check, which, if it fails, causes the test to be
212  * skipped.  Useful if testing a command which might not work on
213  * all variations of libguestfs builds.  A test that has prerequisite
214  * of 'Always' is run unconditionally.
215  *
216  * In addition, packagers can skip individual tests by setting the
217  * environment variables:     eg:
218  *   SKIP_TEST_<CMD>_<NUM>=1  SKIP_TEST_COMMAND_3=1  (skips test #3 of command)
219  *   SKIP_TEST_<CMD>=1        SKIP_TEST_ZEROFREE=1   (skips all zerofree tests)
220  *)
221 type tests = (test_init * test_prereq * test) list
222 and test =
223     (* Run the command sequence and just expect nothing to fail. *)
224   | TestRun of seq
225
226     (* Run the command sequence and expect the output of the final
227      * command to be the string.
228      *)
229   | TestOutput of seq * string
230
231     (* Run the command sequence and expect the output of the final
232      * command to be the list of strings.
233      *)
234   | TestOutputList of seq * string list
235
236     (* Run the command sequence and expect the output of the final
237      * command to be the list of block devices (could be either
238      * "/dev/sd.." or "/dev/hd.." form - we don't check the 5th
239      * character of each string).
240      *)
241   | TestOutputListOfDevices of seq * string list
242
243     (* Run the command sequence and expect the output of the final
244      * command to be the integer.
245      *)
246   | TestOutputInt of seq * int
247
248     (* Run the command sequence and expect the output of the final
249      * command to be <op> <int>, eg. ">=", "1".
250      *)
251   | TestOutputIntOp of seq * string * int
252
253     (* Run the command sequence and expect the output of the final
254      * command to be a true value (!= 0 or != NULL).
255      *)
256   | TestOutputTrue of seq
257
258     (* Run the command sequence and expect the output of the final
259      * command to be a false value (== 0 or == NULL, but not an error).
260      *)
261   | TestOutputFalse of seq
262
263     (* Run the command sequence and expect the output of the final
264      * command to be a list of the given length (but don't care about
265      * content).
266      *)
267   | TestOutputLength of seq * int
268
269     (* Run the command sequence and expect the output of the final
270      * command to be a buffer (RBufferOut), ie. string + size.
271      *)
272   | TestOutputBuffer of seq * string
273
274     (* Run the command sequence and expect the output of the final
275      * command to be a structure.
276      *)
277   | TestOutputStruct of seq * test_field_compare list
278
279     (* Run the command sequence and expect the final command (only)
280      * to fail.
281      *)
282   | TestLastFail of seq
283
284 and test_field_compare =
285   | CompareWithInt of string * int
286   | CompareWithIntOp of string * string * int
287   | CompareWithString of string * string
288   | CompareFieldsIntEq of string * string
289   | CompareFieldsStrEq of string * string
290
291 (* Test prerequisites. *)
292 and test_prereq =
293     (* Test always runs. *)
294   | Always
295
296     (* Test is currently disabled - eg. it fails, or it tests some
297      * unimplemented feature.
298      *)
299   | Disabled
300
301     (* 'string' is some C code (a function body) that should return
302      * true or false.  The test will run if the code returns true.
303      *)
304   | If of string
305
306     (* As for 'If' but the test runs _unless_ the code returns true. *)
307   | Unless of string
308
309 (* Some initial scenarios for testing. *)
310 and test_init =
311     (* Do nothing, block devices could contain random stuff including
312      * LVM PVs, and some filesystems might be mounted.  This is usually
313      * a bad idea.
314      *)
315   | InitNone
316
317     (* Block devices are empty and no filesystems are mounted. *)
318   | InitEmpty
319
320     (* /dev/sda contains a single partition /dev/sda1, with random
321      * content.  /dev/sdb and /dev/sdc may have random content.
322      * No LVM.
323      *)
324   | InitPartition
325
326     (* /dev/sda contains a single partition /dev/sda1, which is formatted
327      * as ext2, empty [except for lost+found] and mounted on /.
328      * /dev/sdb and /dev/sdc may have random content.
329      * No LVM.
330      *)
331   | InitBasicFS
332
333     (* /dev/sda:
334      *   /dev/sda1 (is a PV):
335      *     /dev/VG/LV (size 8MB):
336      *       formatted as ext2, empty [except for lost+found], mounted on /
337      * /dev/sdb and /dev/sdc may have random content.
338      *)
339   | InitBasicFSonLVM
340
341     (* /dev/sdd (the ISO, see images/ directory in source)
342      * is mounted on /
343      *)
344   | InitISOFS
345
346 (* Sequence of commands for testing. *)
347 and seq = cmd list
348 and cmd = string list
349
350 (* Note about long descriptions: When referring to another
351  * action, use the format C<guestfs_other> (ie. the full name of
352  * the C function).  This will be replaced as appropriate in other
353  * language bindings.
354  *
355  * Apart from that, long descriptions are just perldoc paragraphs.
356  *)
357
358 (* Generate a random UUID (used in tests). *)
359 let uuidgen () =
360   let chan = open_process_in "uuidgen" in
361   let uuid = input_line chan in
362   (match close_process_in chan with
363    | WEXITED 0 -> ()
364    | WEXITED _ ->
365        failwith "uuidgen: process exited with non-zero status"
366    | WSIGNALED _ | WSTOPPED _ ->
367        failwith "uuidgen: process signalled or stopped by signal"
368   );
369   uuid
370
371 (* These test functions are used in the language binding tests. *)
372
373 let test_all_args = [
374   String "str";
375   OptString "optstr";
376   StringList "strlist";
377   Bool "b";
378   Int "integer";
379   Int64 "integer64";
380   FileIn "filein";
381   FileOut "fileout";
382 ]
383
384 let test_all_rets = [
385   (* except for RErr, which is tested thoroughly elsewhere *)
386   "test0rint",         RInt "valout";
387   "test0rint64",       RInt64 "valout";
388   "test0rbool",        RBool "valout";
389   "test0rconststring", RConstString "valout";
390   "test0rconstoptstring", RConstOptString "valout";
391   "test0rstring",      RString "valout";
392   "test0rstringlist",  RStringList "valout";
393   "test0rstruct",      RStruct ("valout", "lvm_pv");
394   "test0rstructlist",  RStructList ("valout", "lvm_pv");
395   "test0rhashtable",   RHashtable "valout";
396 ]
397
398 let test_functions = [
399   ("test0", (RErr, test_all_args), -1, [NotInFish; NotInDocs],
400    [],
401    "internal test function - do not use",
402    "\
403 This is an internal test function which is used to test whether
404 the automatically generated bindings can handle every possible
405 parameter type correctly.
406
407 It echos the contents of each parameter to stdout.
408
409 You probably don't want to call this function.");
410 ] @ List.flatten (
411   List.map (
412     fun (name, ret) ->
413       [(name, (ret, [String "val"]), -1, [NotInFish; NotInDocs],
414         [],
415         "internal test function - do not use",
416         "\
417 This is an internal test function which is used to test whether
418 the automatically generated bindings can handle every possible
419 return type correctly.
420
421 It converts string C<val> to the return type.
422
423 You probably don't want to call this function.");
424        (name ^ "err", (ret, []), -1, [NotInFish; NotInDocs],
425         [],
426         "internal test function - do not use",
427         "\
428 This is an internal test function which is used to test whether
429 the automatically generated bindings can handle every possible
430 return type correctly.
431
432 This function always returns an error.
433
434 You probably don't want to call this function.")]
435   ) test_all_rets
436 )
437
438 (* non_daemon_functions are any functions which don't get processed
439  * in the daemon, eg. functions for setting and getting local
440  * configuration values.
441  *)
442
443 let non_daemon_functions = test_functions @ [
444   ("launch", (RErr, []), -1, [FishAlias "run"; FishAction "launch"],
445    [],
446    "launch the qemu subprocess",
447    "\
448 Internally libguestfs is implemented by running a virtual machine
449 using L<qemu(1)>.
450
451 You should call this after configuring the handle
452 (eg. adding drives) but before performing any actions.");
453
454   ("wait_ready", (RErr, []), -1, [NotInFish],
455    [],
456    "wait until the qemu subprocess launches (no op)",
457    "\
458 This function is a no op.
459
460 In versions of the API E<lt> 1.0.71 you had to call this function
461 just after calling C<guestfs_launch> to wait for the launch
462 to complete.  However this is no longer necessary because
463 C<guestfs_launch> now does the waiting.
464
465 If you see any calls to this function in code then you can just
466 remove them, unless you want to retain compatibility with older
467 versions of the API.");
468
469   ("kill_subprocess", (RErr, []), -1, [],
470    [],
471    "kill the qemu subprocess",
472    "\
473 This kills the qemu subprocess.  You should never need to call this.");
474
475   ("add_drive", (RErr, [String "filename"]), -1, [FishAlias "add"],
476    [],
477    "add an image to examine or modify",
478    "\
479 This function adds a virtual machine disk image C<filename> to the
480 guest.  The first time you call this function, the disk appears as IDE
481 disk 0 (C</dev/sda>) in the guest, the second time as C</dev/sdb>, and
482 so on.
483
484 You don't necessarily need to be root when using libguestfs.  However
485 you obviously do need sufficient permissions to access the filename
486 for whatever operations you want to perform (ie. read access if you
487 just want to read the image or write access if you want to modify the
488 image).
489
490 This is equivalent to the qemu parameter
491 C<-drive file=filename,cache=off,if=...>.
492 C<cache=off> is omitted in cases where it is not supported by
493 the underlying filesystem.
494
495 Note that this call checks for the existence of C<filename>.  This
496 stops you from specifying other types of drive which are supported
497 by qemu such as C<nbd:> and C<http:> URLs.  To specify those, use
498 the general C<guestfs_config> call instead.");
499
500   ("add_cdrom", (RErr, [String "filename"]), -1, [FishAlias "cdrom"],
501    [],
502    "add a CD-ROM disk image to examine",
503    "\
504 This function adds a virtual CD-ROM disk image to the guest.
505
506 This is equivalent to the qemu parameter C<-cdrom filename>.
507
508 Note that this call checks for the existence of C<filename>.  This
509 stops you from specifying other types of drive which are supported
510 by qemu such as C<nbd:> and C<http:> URLs.  To specify those, use
511 the general C<guestfs_config> call instead.");
512
513   ("add_drive_ro", (RErr, [String "filename"]), -1, [FishAlias "add-ro"],
514    [],
515    "add a drive in snapshot mode (read-only)",
516    "\
517 This adds a drive in snapshot mode, making it effectively
518 read-only.
519
520 Note that writes to the device are allowed, and will be seen for
521 the duration of the guestfs handle, but they are written
522 to a temporary file which is discarded as soon as the guestfs
523 handle is closed.  We don't currently have any method to enable
524 changes to be committed, although qemu can support this.
525
526 This is equivalent to the qemu parameter
527 C<-drive file=filename,snapshot=on,if=...>.
528
529 Note that this call checks for the existence of C<filename>.  This
530 stops you from specifying other types of drive which are supported
531 by qemu such as C<nbd:> and C<http:> URLs.  To specify those, use
532 the general C<guestfs_config> call instead.");
533
534   ("config", (RErr, [String "qemuparam"; OptString "qemuvalue"]), -1, [],
535    [],
536    "add qemu parameters",
537    "\
538 This can be used to add arbitrary qemu command line parameters
539 of the form C<-param value>.  Actually it's not quite arbitrary - we
540 prevent you from setting some parameters which would interfere with
541 parameters that we use.
542
543 The first character of C<param> string must be a C<-> (dash).
544
545 C<value> can be NULL.");
546
547   ("set_qemu", (RErr, [String "qemu"]), -1, [FishAlias "qemu"],
548    [],
549    "set the qemu binary",
550    "\
551 Set the qemu binary that we will use.
552
553 The default is chosen when the library was compiled by the
554 configure script.
555
556 You can also override this by setting the C<LIBGUESTFS_QEMU>
557 environment variable.
558
559 Setting C<qemu> to C<NULL> restores the default qemu binary.");
560
561   ("get_qemu", (RConstString "qemu", []), -1, [],
562    [InitNone, Always, TestRun (
563       [["get_qemu"]])],
564    "get the qemu binary",
565    "\
566 Return the current qemu binary.
567
568 This is always non-NULL.  If it wasn't set already, then this will
569 return the default qemu binary name.");
570
571   ("set_path", (RErr, [String "searchpath"]), -1, [FishAlias "path"],
572    [],
573    "set the search path",
574    "\
575 Set the path that libguestfs searches for kernel and initrd.img.
576
577 The default is C<$libdir/guestfs> unless overridden by setting
578 C<LIBGUESTFS_PATH> environment variable.
579
580 Setting C<path> to C<NULL> restores the default path.");
581
582   ("get_path", (RConstString "path", []), -1, [],
583    [InitNone, Always, TestRun (
584       [["get_path"]])],
585    "get the search path",
586    "\
587 Return the current search path.
588
589 This is always non-NULL.  If it wasn't set already, then this will
590 return the default path.");
591
592   ("set_append", (RErr, [OptString "append"]), -1, [FishAlias "append"],
593    [],
594    "add options to kernel command line",
595    "\
596 This function is used to add additional options to the
597 guest kernel command line.
598
599 The default is C<NULL> unless overridden by setting
600 C<LIBGUESTFS_APPEND> environment variable.
601
602 Setting C<append> to C<NULL> means I<no> additional options
603 are passed (libguestfs always adds a few of its own).");
604
605   ("get_append", (RConstOptString "append", []), -1, [],
606    (* This cannot be tested with the current framework.  The
607     * function can return NULL in normal operations, which the
608     * test framework interprets as an error.
609     *)
610    [],
611    "get the additional kernel options",
612    "\
613 Return the additional kernel options which are added to the
614 guest kernel command line.
615
616 If C<NULL> then no options are added.");
617
618   ("set_autosync", (RErr, [Bool "autosync"]), -1, [FishAlias "autosync"],
619    [],
620    "set autosync mode",
621    "\
622 If C<autosync> is true, this enables autosync.  Libguestfs will make a
623 best effort attempt to run C<guestfs_umount_all> followed by
624 C<guestfs_sync> when the handle is closed
625 (also if the program exits without closing handles).
626
627 This is disabled by default (except in guestfish where it is
628 enabled by default).");
629
630   ("get_autosync", (RBool "autosync", []), -1, [],
631    [InitNone, Always, TestRun (
632       [["get_autosync"]])],
633    "get autosync mode",
634    "\
635 Get the autosync flag.");
636
637   ("set_verbose", (RErr, [Bool "verbose"]), -1, [FishAlias "verbose"],
638    [],
639    "set verbose mode",
640    "\
641 If C<verbose> is true, this turns on verbose messages (to C<stderr>).
642
643 Verbose messages are disabled unless the environment variable
644 C<LIBGUESTFS_DEBUG> is defined and set to C<1>.");
645
646   ("get_verbose", (RBool "verbose", []), -1, [],
647    [],
648    "get verbose mode",
649    "\
650 This returns the verbose messages flag.");
651
652   ("is_ready", (RBool "ready", []), -1, [],
653    [InitNone, Always, TestOutputTrue (
654       [["is_ready"]])],
655    "is ready to accept commands",
656    "\
657 This returns true iff this handle is ready to accept commands
658 (in the C<READY> state).
659
660 For more information on states, see L<guestfs(3)>.");
661
662   ("is_config", (RBool "config", []), -1, [],
663    [InitNone, Always, TestOutputFalse (
664       [["is_config"]])],
665    "is in configuration state",
666    "\
667 This returns true iff this handle is being configured
668 (in the C<CONFIG> state).
669
670 For more information on states, see L<guestfs(3)>.");
671
672   ("is_launching", (RBool "launching", []), -1, [],
673    [InitNone, Always, TestOutputFalse (
674       [["is_launching"]])],
675    "is launching subprocess",
676    "\
677 This returns true iff this handle is launching the subprocess
678 (in the C<LAUNCHING> state).
679
680 For more information on states, see L<guestfs(3)>.");
681
682   ("is_busy", (RBool "busy", []), -1, [],
683    [InitNone, Always, TestOutputFalse (
684       [["is_busy"]])],
685    "is busy processing a command",
686    "\
687 This returns true iff this handle is busy processing a command
688 (in the C<BUSY> state).
689
690 For more information on states, see L<guestfs(3)>.");
691
692   ("get_state", (RInt "state", []), -1, [],
693    [],
694    "get the current state",
695    "\
696 This returns the current state as an opaque integer.  This is
697 only useful for printing debug and internal error messages.
698
699 For more information on states, see L<guestfs(3)>.");
700
701   ("set_memsize", (RErr, [Int "memsize"]), -1, [FishAlias "memsize"],
702    [InitNone, Always, TestOutputInt (
703       [["set_memsize"; "500"];
704        ["get_memsize"]], 500)],
705    "set memory allocated to the qemu subprocess",
706    "\
707 This sets the memory size in megabytes allocated to the
708 qemu subprocess.  This only has any effect if called before
709 C<guestfs_launch>.
710
711 You can also change this by setting the environment
712 variable C<LIBGUESTFS_MEMSIZE> before the handle is
713 created.
714
715 For more information on the architecture of libguestfs,
716 see L<guestfs(3)>.");
717
718   ("get_memsize", (RInt "memsize", []), -1, [],
719    [InitNone, Always, TestOutputIntOp (
720       [["get_memsize"]], ">=", 256)],
721    "get memory allocated to the qemu subprocess",
722    "\
723 This gets the memory size in megabytes allocated to the
724 qemu subprocess.
725
726 If C<guestfs_set_memsize> was not called
727 on this handle, and if C<LIBGUESTFS_MEMSIZE> was not set,
728 then this returns the compiled-in default value for memsize.
729
730 For more information on the architecture of libguestfs,
731 see L<guestfs(3)>.");
732
733   ("get_pid", (RInt "pid", []), -1, [FishAlias "pid"],
734    [InitNone, Always, TestOutputIntOp (
735       [["get_pid"]], ">=", 1)],
736    "get PID of qemu subprocess",
737    "\
738 Return the process ID of the qemu subprocess.  If there is no
739 qemu subprocess, then this will return an error.
740
741 This is an internal call used for debugging and testing.");
742
743   ("version", (RStruct ("version", "version"), []), -1, [],
744    [InitNone, Always, TestOutputStruct (
745       [["version"]], [CompareWithInt ("major", 1)])],
746    "get the library version number",
747    "\
748 Return the libguestfs version number that the program is linked
749 against.
750
751 Note that because of dynamic linking this is not necessarily
752 the version of libguestfs that you compiled against.  You can
753 compile the program, and then at runtime dynamically link
754 against a completely different C<libguestfs.so> library.
755
756 This call was added in version C<1.0.58>.  In previous
757 versions of libguestfs there was no way to get the version
758 number.  From C code you can use ELF weak linking tricks to find out if
759 this symbol exists (if it doesn't, then it's an earlier version).
760
761 The call returns a structure with four elements.  The first
762 three (C<major>, C<minor> and C<release>) are numbers and
763 correspond to the usual version triplet.  The fourth element
764 (C<extra>) is a string and is normally empty, but may be
765 used for distro-specific information.
766
767 To construct the original version string:
768 C<$major.$minor.$release$extra>
769
770 I<Note:> Don't use this call to test for availability
771 of features.  Distro backports makes this unreliable.  Use
772 C<guestfs_available> instead.");
773
774   ("set_selinux", (RErr, [Bool "selinux"]), -1, [FishAlias "selinux"],
775    [InitNone, Always, TestOutputTrue (
776       [["set_selinux"; "true"];
777        ["get_selinux"]])],
778    "set SELinux enabled or disabled at appliance boot",
779    "\
780 This sets the selinux flag that is passed to the appliance
781 at boot time.  The default is C<selinux=0> (disabled).
782
783 Note that if SELinux is enabled, it is always in
784 Permissive mode (C<enforcing=0>).
785
786 For more information on the architecture of libguestfs,
787 see L<guestfs(3)>.");
788
789   ("get_selinux", (RBool "selinux", []), -1, [],
790    [],
791    "get SELinux enabled flag",
792    "\
793 This returns the current setting of the selinux flag which
794 is passed to the appliance at boot time.  See C<guestfs_set_selinux>.
795
796 For more information on the architecture of libguestfs,
797 see L<guestfs(3)>.");
798
799   ("set_trace", (RErr, [Bool "trace"]), -1, [FishAlias "trace"],
800    [InitNone, Always, TestOutputFalse (
801       [["set_trace"; "false"];
802        ["get_trace"]])],
803    "enable or disable command traces",
804    "\
805 If the command trace flag is set to 1, then commands are
806 printed on stdout before they are executed in a format
807 which is very similar to the one used by guestfish.  In
808 other words, you can run a program with this enabled, and
809 you will get out a script which you can feed to guestfish
810 to perform the same set of actions.
811
812 If you want to trace C API calls into libguestfs (and
813 other libraries) then possibly a better way is to use
814 the external ltrace(1) command.
815
816 Command traces are disabled unless the environment variable
817 C<LIBGUESTFS_TRACE> is defined and set to C<1>.");
818
819   ("get_trace", (RBool "trace", []), -1, [],
820    [],
821    "get command trace enabled flag",
822    "\
823 Return the command trace flag.");
824
825   ("set_direct", (RErr, [Bool "direct"]), -1, [FishAlias "direct"],
826    [InitNone, Always, TestOutputFalse (
827       [["set_direct"; "false"];
828        ["get_direct"]])],
829    "enable or disable direct appliance mode",
830    "\
831 If the direct appliance mode flag is enabled, then stdin and
832 stdout are passed directly through to the appliance once it
833 is launched.
834
835 One consequence of this is that log messages aren't caught
836 by the library and handled by C<guestfs_set_log_message_callback>,
837 but go straight to stdout.
838
839 You probably don't want to use this unless you know what you
840 are doing.
841
842 The default is disabled.");
843
844   ("get_direct", (RBool "direct", []), -1, [],
845    [],
846    "get direct appliance mode flag",
847    "\
848 Return the direct appliance mode flag.");
849
850   ("set_recovery_proc", (RErr, [Bool "recoveryproc"]), -1, [FishAlias "recovery-proc"],
851    [InitNone, Always, TestOutputTrue (
852       [["set_recovery_proc"; "true"];
853        ["get_recovery_proc"]])],
854    "enable or disable the recovery process",
855    "\
856 If this is called with the parameter C<false> then
857 C<guestfs_launch> does not create a recovery process.  The
858 purpose of the recovery process is to stop runaway qemu
859 processes in the case where the main program aborts abruptly.
860
861 This only has any effect if called before C<guestfs_launch>,
862 and the default is true.
863
864 About the only time when you would want to disable this is
865 if the main process will fork itself into the background
866 (\"daemonize\" itself).  In this case the recovery process
867 thinks that the main program has disappeared and so kills
868 qemu, which is not very helpful.");
869
870   ("get_recovery_proc", (RBool "recoveryproc", []), -1, [],
871    [],
872    "get recovery process enabled flag",
873    "\
874 Return the recovery process enabled flag.");
875
876 ]
877
878 (* daemon_functions are any functions which cause some action
879  * to take place in the daemon.
880  *)
881
882 let daemon_functions = [
883   ("mount", (RErr, [Device "device"; String "mountpoint"]), 1, [],
884    [InitEmpty, Always, TestOutput (
885       [["part_disk"; "/dev/sda"; "mbr"];
886        ["mkfs"; "ext2"; "/dev/sda1"];
887        ["mount"; "/dev/sda1"; "/"];
888        ["write_file"; "/new"; "new file contents"; "0"];
889        ["cat"; "/new"]], "new file contents")],
890    "mount a guest disk at a position in the filesystem",
891    "\
892 Mount a guest disk at a position in the filesystem.  Block devices
893 are named C</dev/sda>, C</dev/sdb> and so on, as they were added to
894 the guest.  If those block devices contain partitions, they will have
895 the usual names (eg. C</dev/sda1>).  Also LVM C</dev/VG/LV>-style
896 names can be used.
897
898 The rules are the same as for L<mount(2)>:  A filesystem must
899 first be mounted on C</> before others can be mounted.  Other
900 filesystems can only be mounted on directories which already
901 exist.
902
903 The mounted filesystem is writable, if we have sufficient permissions
904 on the underlying device.
905
906 The filesystem options C<sync> and C<noatime> are set with this
907 call, in order to improve reliability.");
908
909   ("sync", (RErr, []), 2, [],
910    [ InitEmpty, Always, TestRun [["sync"]]],
911    "sync disks, writes are flushed through to the disk image",
912    "\
913 This syncs the disk, so that any writes are flushed through to the
914 underlying disk image.
915
916 You should always call this if you have modified a disk image, before
917 closing the handle.");
918
919   ("touch", (RErr, [Pathname "path"]), 3, [],
920    [InitBasicFS, Always, TestOutputTrue (
921       [["touch"; "/new"];
922        ["exists"; "/new"]])],
923    "update file timestamps or create a new file",
924    "\
925 Touch acts like the L<touch(1)> command.  It can be used to
926 update the timestamps on a file, or, if the file does not exist,
927 to create a new zero-length file.");
928
929   ("cat", (RString "content", [Pathname "path"]), 4, [ProtocolLimitWarning],
930    [InitISOFS, Always, TestOutput (
931       [["cat"; "/known-2"]], "abcdef\n")],
932    "list the contents of a file",
933    "\
934 Return the contents of the file named C<path>.
935
936 Note that this function cannot correctly handle binary files
937 (specifically, files containing C<\\0> character which is treated
938 as end of string).  For those you need to use the C<guestfs_read_file>
939 or C<guestfs_download> functions which have a more complex interface.");
940
941   ("ll", (RString "listing", [Pathname "directory"]), 5, [],
942    [], (* XXX Tricky to test because it depends on the exact format
943         * of the 'ls -l' command, which changes between F10 and F11.
944         *)
945    "list the files in a directory (long format)",
946    "\
947 List the files in C<directory> (relative to the root directory,
948 there is no cwd) in the format of 'ls -la'.
949
950 This command is mostly useful for interactive sessions.  It
951 is I<not> intended that you try to parse the output string.");
952
953   ("ls", (RStringList "listing", [Pathname "directory"]), 6, [],
954    [InitBasicFS, Always, TestOutputList (
955       [["touch"; "/new"];
956        ["touch"; "/newer"];
957        ["touch"; "/newest"];
958        ["ls"; "/"]], ["lost+found"; "new"; "newer"; "newest"])],
959    "list the files in a directory",
960    "\
961 List the files in C<directory> (relative to the root directory,
962 there is no cwd).  The '.' and '..' entries are not returned, but
963 hidden files are shown.
964
965 This command is mostly useful for interactive sessions.  Programs
966 should probably use C<guestfs_readdir> instead.");
967
968   ("list_devices", (RStringList "devices", []), 7, [],
969    [InitEmpty, Always, TestOutputListOfDevices (
970       [["list_devices"]], ["/dev/sda"; "/dev/sdb"; "/dev/sdc"; "/dev/sdd"])],
971    "list the block devices",
972    "\
973 List all the block devices.
974
975 The full block device names are returned, eg. C</dev/sda>");
976
977   ("list_partitions", (RStringList "partitions", []), 8, [],
978    [InitBasicFS, Always, TestOutputListOfDevices (
979       [["list_partitions"]], ["/dev/sda1"]);
980     InitEmpty, Always, TestOutputListOfDevices (
981       [["sfdiskM"; "/dev/sda"; ",100 ,200 ,"];
982        ["list_partitions"]], ["/dev/sda1"; "/dev/sda2"; "/dev/sda3"])],
983    "list the partitions",
984    "\
985 List all the partitions detected on all block devices.
986
987 The full partition device names are returned, eg. C</dev/sda1>
988
989 This does not return logical volumes.  For that you will need to
990 call C<guestfs_lvs>.");
991
992   ("pvs", (RStringList "physvols", []), 9, [Optional "lvm2"],
993    [InitBasicFSonLVM, Always, TestOutputListOfDevices (
994       [["pvs"]], ["/dev/sda1"]);
995     InitEmpty, Always, TestOutputListOfDevices (
996       [["sfdiskM"; "/dev/sda"; ",100 ,200 ,"];
997        ["pvcreate"; "/dev/sda1"];
998        ["pvcreate"; "/dev/sda2"];
999        ["pvcreate"; "/dev/sda3"];
1000        ["pvs"]], ["/dev/sda1"; "/dev/sda2"; "/dev/sda3"])],
1001    "list the LVM physical volumes (PVs)",
1002    "\
1003 List all the physical volumes detected.  This is the equivalent
1004 of the L<pvs(8)> command.
1005
1006 This returns a list of just the device names that contain
1007 PVs (eg. C</dev/sda2>).
1008
1009 See also C<guestfs_pvs_full>.");
1010
1011   ("vgs", (RStringList "volgroups", []), 10, [Optional "lvm2"],
1012    [InitBasicFSonLVM, Always, TestOutputList (
1013       [["vgs"]], ["VG"]);
1014     InitEmpty, Always, TestOutputList (
1015       [["sfdiskM"; "/dev/sda"; ",100 ,200 ,"];
1016        ["pvcreate"; "/dev/sda1"];
1017        ["pvcreate"; "/dev/sda2"];
1018        ["pvcreate"; "/dev/sda3"];
1019        ["vgcreate"; "VG1"; "/dev/sda1 /dev/sda2"];
1020        ["vgcreate"; "VG2"; "/dev/sda3"];
1021        ["vgs"]], ["VG1"; "VG2"])],
1022    "list the LVM volume groups (VGs)",
1023    "\
1024 List all the volumes groups detected.  This is the equivalent
1025 of the L<vgs(8)> command.
1026
1027 This returns a list of just the volume group names that were
1028 detected (eg. C<VolGroup00>).
1029
1030 See also C<guestfs_vgs_full>.");
1031
1032   ("lvs", (RStringList "logvols", []), 11, [Optional "lvm2"],
1033    [InitBasicFSonLVM, Always, TestOutputList (
1034       [["lvs"]], ["/dev/VG/LV"]);
1035     InitEmpty, Always, TestOutputList (
1036       [["sfdiskM"; "/dev/sda"; ",100 ,200 ,"];
1037        ["pvcreate"; "/dev/sda1"];
1038        ["pvcreate"; "/dev/sda2"];
1039        ["pvcreate"; "/dev/sda3"];
1040        ["vgcreate"; "VG1"; "/dev/sda1 /dev/sda2"];
1041        ["vgcreate"; "VG2"; "/dev/sda3"];
1042        ["lvcreate"; "LV1"; "VG1"; "50"];
1043        ["lvcreate"; "LV2"; "VG1"; "50"];
1044        ["lvcreate"; "LV3"; "VG2"; "50"];
1045        ["lvs"]], ["/dev/VG1/LV1"; "/dev/VG1/LV2"; "/dev/VG2/LV3"])],
1046    "list the LVM logical volumes (LVs)",
1047    "\
1048 List all the logical volumes detected.  This is the equivalent
1049 of the L<lvs(8)> command.
1050
1051 This returns a list of the logical volume device names
1052 (eg. C</dev/VolGroup00/LogVol00>).
1053
1054 See also C<guestfs_lvs_full>.");
1055
1056   ("pvs_full", (RStructList ("physvols", "lvm_pv"), []), 12, [Optional "lvm2"],
1057    [], (* XXX how to test? *)
1058    "list the LVM physical volumes (PVs)",
1059    "\
1060 List all the physical volumes detected.  This is the equivalent
1061 of the L<pvs(8)> command.  The \"full\" version includes all fields.");
1062
1063   ("vgs_full", (RStructList ("volgroups", "lvm_vg"), []), 13, [Optional "lvm2"],
1064    [], (* XXX how to test? *)
1065    "list the LVM volume groups (VGs)",
1066    "\
1067 List all the volumes groups detected.  This is the equivalent
1068 of the L<vgs(8)> command.  The \"full\" version includes all fields.");
1069
1070   ("lvs_full", (RStructList ("logvols", "lvm_lv"), []), 14, [Optional "lvm2"],
1071    [], (* XXX how to test? *)
1072    "list the LVM logical volumes (LVs)",
1073    "\
1074 List all the logical volumes detected.  This is the equivalent
1075 of the L<lvs(8)> command.  The \"full\" version includes all fields.");
1076
1077   ("read_lines", (RStringList "lines", [Pathname "path"]), 15, [],
1078    [InitISOFS, Always, TestOutputList (
1079       [["read_lines"; "/known-4"]], ["abc"; "def"; "ghi"]);
1080     InitISOFS, Always, TestOutputList (
1081       [["read_lines"; "/empty"]], [])],
1082    "read file as lines",
1083    "\
1084 Return the contents of the file named C<path>.
1085
1086 The file contents are returned as a list of lines.  Trailing
1087 C<LF> and C<CRLF> character sequences are I<not> returned.
1088
1089 Note that this function cannot correctly handle binary files
1090 (specifically, files containing C<\\0> character which is treated
1091 as end of line).  For those you need to use the C<guestfs_read_file>
1092 function which has a more complex interface.");
1093
1094   ("aug_init", (RErr, [Pathname "root"; Int "flags"]), 16, [Optional "augeas"],
1095    [], (* XXX Augeas code needs tests. *)
1096    "create a new Augeas handle",
1097    "\
1098 Create a new Augeas handle for editing configuration files.
1099 If there was any previous Augeas handle associated with this
1100 guestfs session, then it is closed.
1101
1102 You must call this before using any other C<guestfs_aug_*>
1103 commands.
1104
1105 C<root> is the filesystem root.  C<root> must not be NULL,
1106 use C</> instead.
1107
1108 The flags are the same as the flags defined in
1109 E<lt>augeas.hE<gt>, the logical I<or> of the following
1110 integers:
1111
1112 =over 4
1113
1114 =item C<AUG_SAVE_BACKUP> = 1
1115
1116 Keep the original file with a C<.augsave> extension.
1117
1118 =item C<AUG_SAVE_NEWFILE> = 2
1119
1120 Save changes into a file with extension C<.augnew>, and
1121 do not overwrite original.  Overrides C<AUG_SAVE_BACKUP>.
1122
1123 =item C<AUG_TYPE_CHECK> = 4
1124
1125 Typecheck lenses (can be expensive).
1126
1127 =item C<AUG_NO_STDINC> = 8
1128
1129 Do not use standard load path for modules.
1130
1131 =item C<AUG_SAVE_NOOP> = 16
1132
1133 Make save a no-op, just record what would have been changed.
1134
1135 =item C<AUG_NO_LOAD> = 32
1136
1137 Do not load the tree in C<guestfs_aug_init>.
1138
1139 =back
1140
1141 To close the handle, you can call C<guestfs_aug_close>.
1142
1143 To find out more about Augeas, see L<http://augeas.net/>.");
1144
1145   ("aug_close", (RErr, []), 26, [Optional "augeas"],
1146    [], (* XXX Augeas code needs tests. *)
1147    "close the current Augeas handle",
1148    "\
1149 Close the current Augeas handle and free up any resources
1150 used by it.  After calling this, you have to call
1151 C<guestfs_aug_init> again before you can use any other
1152 Augeas functions.");
1153
1154   ("aug_defvar", (RInt "nrnodes", [String "name"; OptString "expr"]), 17, [Optional "augeas"],
1155    [], (* XXX Augeas code needs tests. *)
1156    "define an Augeas variable",
1157    "\
1158 Defines an Augeas variable C<name> whose value is the result
1159 of evaluating C<expr>.  If C<expr> is NULL, then C<name> is
1160 undefined.
1161
1162 On success this returns the number of nodes in C<expr>, or
1163 C<0> if C<expr> evaluates to something which is not a nodeset.");
1164
1165   ("aug_defnode", (RStruct ("nrnodescreated", "int_bool"), [String "name"; String "expr"; String "val"]), 18, [Optional "augeas"],
1166    [], (* XXX Augeas code needs tests. *)
1167    "define an Augeas node",
1168    "\
1169 Defines a variable C<name> whose value is the result of
1170 evaluating C<expr>.
1171
1172 If C<expr> evaluates to an empty nodeset, a node is created,
1173 equivalent to calling C<guestfs_aug_set> C<expr>, C<value>.
1174 C<name> will be the nodeset containing that single node.
1175
1176 On success this returns a pair containing the
1177 number of nodes in the nodeset, and a boolean flag
1178 if a node was created.");
1179
1180   ("aug_get", (RString "val", [String "augpath"]), 19, [Optional "augeas"],
1181    [], (* XXX Augeas code needs tests. *)
1182    "look up the value of an Augeas path",
1183    "\
1184 Look up the value associated with C<path>.  If C<path>
1185 matches exactly one node, the C<value> is returned.");
1186
1187   ("aug_set", (RErr, [String "augpath"; String "val"]), 20, [Optional "augeas"],
1188    [], (* XXX Augeas code needs tests. *)
1189    "set Augeas path to value",
1190    "\
1191 Set the value associated with C<path> to C<value>.");
1192
1193   ("aug_insert", (RErr, [String "augpath"; String "label"; Bool "before"]), 21, [Optional "augeas"],
1194    [], (* XXX Augeas code needs tests. *)
1195    "insert a sibling Augeas node",
1196    "\
1197 Create a new sibling C<label> for C<path>, inserting it into
1198 the tree before or after C<path> (depending on the boolean
1199 flag C<before>).
1200
1201 C<path> must match exactly one existing node in the tree, and
1202 C<label> must be a label, ie. not contain C</>, C<*> or end
1203 with a bracketed index C<[N]>.");
1204
1205   ("aug_rm", (RInt "nrnodes", [String "augpath"]), 22, [Optional "augeas"],
1206    [], (* XXX Augeas code needs tests. *)
1207    "remove an Augeas path",
1208    "\
1209 Remove C<path> and all of its children.
1210
1211 On success this returns the number of entries which were removed.");
1212
1213   ("aug_mv", (RErr, [String "src"; String "dest"]), 23, [Optional "augeas"],
1214    [], (* XXX Augeas code needs tests. *)
1215    "move Augeas node",
1216    "\
1217 Move the node C<src> to C<dest>.  C<src> must match exactly
1218 one node.  C<dest> is overwritten if it exists.");
1219
1220   ("aug_match", (RStringList "matches", [String "augpath"]), 24, [Optional "augeas"],
1221    [], (* XXX Augeas code needs tests. *)
1222    "return Augeas nodes which match augpath",
1223    "\
1224 Returns a list of paths which match the path expression C<path>.
1225 The returned paths are sufficiently qualified so that they match
1226 exactly one node in the current tree.");
1227
1228   ("aug_save", (RErr, []), 25, [Optional "augeas"],
1229    [], (* XXX Augeas code needs tests. *)
1230    "write all pending Augeas changes to disk",
1231    "\
1232 This writes all pending changes to disk.
1233
1234 The flags which were passed to C<guestfs_aug_init> affect exactly
1235 how files are saved.");
1236
1237   ("aug_load", (RErr, []), 27, [Optional "augeas"],
1238    [], (* XXX Augeas code needs tests. *)
1239    "load files into the tree",
1240    "\
1241 Load files into the tree.
1242
1243 See C<aug_load> in the Augeas documentation for the full gory
1244 details.");
1245
1246   ("aug_ls", (RStringList "matches", [String "augpath"]), 28, [Optional "augeas"],
1247    [], (* XXX Augeas code needs tests. *)
1248    "list Augeas nodes under augpath",
1249    "\
1250 This is just a shortcut for listing C<guestfs_aug_match>
1251 C<path/*> and sorting the resulting nodes into alphabetical order.");
1252
1253   ("rm", (RErr, [Pathname "path"]), 29, [],
1254    [InitBasicFS, Always, TestRun
1255       [["touch"; "/new"];
1256        ["rm"; "/new"]];
1257     InitBasicFS, Always, TestLastFail
1258       [["rm"; "/new"]];
1259     InitBasicFS, Always, TestLastFail
1260       [["mkdir"; "/new"];
1261        ["rm"; "/new"]]],
1262    "remove a file",
1263    "\
1264 Remove the single file C<path>.");
1265
1266   ("rmdir", (RErr, [Pathname "path"]), 30, [],
1267    [InitBasicFS, Always, TestRun
1268       [["mkdir"; "/new"];
1269        ["rmdir"; "/new"]];
1270     InitBasicFS, Always, TestLastFail
1271       [["rmdir"; "/new"]];
1272     InitBasicFS, Always, TestLastFail
1273       [["touch"; "/new"];
1274        ["rmdir"; "/new"]]],
1275    "remove a directory",
1276    "\
1277 Remove the single directory C<path>.");
1278
1279   ("rm_rf", (RErr, [Pathname "path"]), 31, [],
1280    [InitBasicFS, Always, TestOutputFalse
1281       [["mkdir"; "/new"];
1282        ["mkdir"; "/new/foo"];
1283        ["touch"; "/new/foo/bar"];
1284        ["rm_rf"; "/new"];
1285        ["exists"; "/new"]]],
1286    "remove a file or directory recursively",
1287    "\
1288 Remove the file or directory C<path>, recursively removing the
1289 contents if its a directory.  This is like the C<rm -rf> shell
1290 command.");
1291
1292   ("mkdir", (RErr, [Pathname "path"]), 32, [],
1293    [InitBasicFS, Always, TestOutputTrue
1294       [["mkdir"; "/new"];
1295        ["is_dir"; "/new"]];
1296     InitBasicFS, Always, TestLastFail
1297       [["mkdir"; "/new/foo/bar"]]],
1298    "create a directory",
1299    "\
1300 Create a directory named C<path>.");
1301
1302   ("mkdir_p", (RErr, [Pathname "path"]), 33, [],
1303    [InitBasicFS, Always, TestOutputTrue
1304       [["mkdir_p"; "/new/foo/bar"];
1305        ["is_dir"; "/new/foo/bar"]];
1306     InitBasicFS, Always, TestOutputTrue
1307       [["mkdir_p"; "/new/foo/bar"];
1308        ["is_dir"; "/new/foo"]];
1309     InitBasicFS, Always, TestOutputTrue
1310       [["mkdir_p"; "/new/foo/bar"];
1311        ["is_dir"; "/new"]];
1312     (* Regression tests for RHBZ#503133: *)
1313     InitBasicFS, Always, TestRun
1314       [["mkdir"; "/new"];
1315        ["mkdir_p"; "/new"]];
1316     InitBasicFS, Always, TestLastFail
1317       [["touch"; "/new"];
1318        ["mkdir_p"; "/new"]]],
1319    "create a directory and parents",
1320    "\
1321 Create a directory named C<path>, creating any parent directories
1322 as necessary.  This is like the C<mkdir -p> shell command.");
1323
1324   ("chmod", (RErr, [Int "mode"; Pathname "path"]), 34, [],
1325    [], (* XXX Need stat command to test *)
1326    "change file mode",
1327    "\
1328 Change the mode (permissions) of C<path> to C<mode>.  Only
1329 numeric modes are supported.
1330
1331 I<Note>: When using this command from guestfish, C<mode>
1332 by default would be decimal, unless you prefix it with
1333 C<0> to get octal, ie. use C<0700> not C<700>.");
1334
1335   ("chown", (RErr, [Int "owner"; Int "group"; Pathname "path"]), 35, [],
1336    [], (* XXX Need stat command to test *)
1337    "change file owner and group",
1338    "\
1339 Change the file owner to C<owner> and group to C<group>.
1340
1341 Only numeric uid and gid are supported.  If you want to use
1342 names, you will need to locate and parse the password file
1343 yourself (Augeas support makes this relatively easy).");
1344
1345   ("exists", (RBool "existsflag", [Pathname "path"]), 36, [],
1346    [InitISOFS, Always, TestOutputTrue (
1347       [["exists"; "/empty"]]);
1348     InitISOFS, Always, TestOutputTrue (
1349       [["exists"; "/directory"]])],
1350    "test if file or directory exists",
1351    "\
1352 This returns C<true> if and only if there is a file, directory
1353 (or anything) with the given C<path> name.
1354
1355 See also C<guestfs_is_file>, C<guestfs_is_dir>, C<guestfs_stat>.");
1356
1357   ("is_file", (RBool "fileflag", [Pathname "path"]), 37, [],
1358    [InitISOFS, Always, TestOutputTrue (
1359       [["is_file"; "/known-1"]]);
1360     InitISOFS, Always, TestOutputFalse (
1361       [["is_file"; "/directory"]])],
1362    "test if file exists",
1363    "\
1364 This returns C<true> if and only if there is a file
1365 with the given C<path> name.  Note that it returns false for
1366 other objects like directories.
1367
1368 See also C<guestfs_stat>.");
1369
1370   ("is_dir", (RBool "dirflag", [Pathname "path"]), 38, [],
1371    [InitISOFS, Always, TestOutputFalse (
1372       [["is_dir"; "/known-3"]]);
1373     InitISOFS, Always, TestOutputTrue (
1374       [["is_dir"; "/directory"]])],
1375    "test if file exists",
1376    "\
1377 This returns C<true> if and only if there is a directory
1378 with the given C<path> name.  Note that it returns false for
1379 other objects like files.
1380
1381 See also C<guestfs_stat>.");
1382
1383   ("pvcreate", (RErr, [Device "device"]), 39, [Optional "lvm2"],
1384    [InitEmpty, Always, TestOutputListOfDevices (
1385       [["sfdiskM"; "/dev/sda"; ",100 ,200 ,"];
1386        ["pvcreate"; "/dev/sda1"];
1387        ["pvcreate"; "/dev/sda2"];
1388        ["pvcreate"; "/dev/sda3"];
1389        ["pvs"]], ["/dev/sda1"; "/dev/sda2"; "/dev/sda3"])],
1390    "create an LVM physical volume",
1391    "\
1392 This creates an LVM physical volume on the named C<device>,
1393 where C<device> should usually be a partition name such
1394 as C</dev/sda1>.");
1395
1396   ("vgcreate", (RErr, [String "volgroup"; DeviceList "physvols"]), 40, [Optional "lvm2"],
1397    [InitEmpty, Always, TestOutputList (
1398       [["sfdiskM"; "/dev/sda"; ",100 ,200 ,"];
1399        ["pvcreate"; "/dev/sda1"];
1400        ["pvcreate"; "/dev/sda2"];
1401        ["pvcreate"; "/dev/sda3"];
1402        ["vgcreate"; "VG1"; "/dev/sda1 /dev/sda2"];
1403        ["vgcreate"; "VG2"; "/dev/sda3"];
1404        ["vgs"]], ["VG1"; "VG2"])],
1405    "create an LVM volume group",
1406    "\
1407 This creates an LVM volume group called C<volgroup>
1408 from the non-empty list of physical volumes C<physvols>.");
1409
1410   ("lvcreate", (RErr, [String "logvol"; String "volgroup"; Int "mbytes"]), 41, [Optional "lvm2"],
1411    [InitEmpty, Always, TestOutputList (
1412       [["sfdiskM"; "/dev/sda"; ",100 ,200 ,"];
1413        ["pvcreate"; "/dev/sda1"];
1414        ["pvcreate"; "/dev/sda2"];
1415        ["pvcreate"; "/dev/sda3"];
1416        ["vgcreate"; "VG1"; "/dev/sda1 /dev/sda2"];
1417        ["vgcreate"; "VG2"; "/dev/sda3"];
1418        ["lvcreate"; "LV1"; "VG1"; "50"];
1419        ["lvcreate"; "LV2"; "VG1"; "50"];
1420        ["lvcreate"; "LV3"; "VG2"; "50"];
1421        ["lvcreate"; "LV4"; "VG2"; "50"];
1422        ["lvcreate"; "LV5"; "VG2"; "50"];
1423        ["lvs"]],
1424       ["/dev/VG1/LV1"; "/dev/VG1/LV2";
1425        "/dev/VG2/LV3"; "/dev/VG2/LV4"; "/dev/VG2/LV5"])],
1426    "create an LVM volume group",
1427    "\
1428 This creates an LVM volume group called C<logvol>
1429 on the volume group C<volgroup>, with C<size> megabytes.");
1430
1431   ("mkfs", (RErr, [String "fstype"; Device "device"]), 42, [],
1432    [InitEmpty, Always, TestOutput (
1433       [["part_disk"; "/dev/sda"; "mbr"];
1434        ["mkfs"; "ext2"; "/dev/sda1"];
1435        ["mount_options"; ""; "/dev/sda1"; "/"];
1436        ["write_file"; "/new"; "new file contents"; "0"];
1437        ["cat"; "/new"]], "new file contents")],
1438    "make a filesystem",
1439    "\
1440 This creates a filesystem on C<device> (usually a partition
1441 or LVM logical volume).  The filesystem type is C<fstype>, for
1442 example C<ext3>.");
1443
1444   ("sfdisk", (RErr, [Device "device";
1445                      Int "cyls"; Int "heads"; Int "sectors";
1446                      StringList "lines"]), 43, [DangerWillRobinson],
1447    [],
1448    "create partitions on a block device",
1449    "\
1450 This is a direct interface to the L<sfdisk(8)> program for creating
1451 partitions on block devices.
1452
1453 C<device> should be a block device, for example C</dev/sda>.
1454
1455 C<cyls>, C<heads> and C<sectors> are the number of cylinders, heads
1456 and sectors on the device, which are passed directly to sfdisk as
1457 the I<-C>, I<-H> and I<-S> parameters.  If you pass C<0> for any
1458 of these, then the corresponding parameter is omitted.  Usually for
1459 'large' disks, you can just pass C<0> for these, but for small
1460 (floppy-sized) disks, sfdisk (or rather, the kernel) cannot work
1461 out the right geometry and you will need to tell it.
1462
1463 C<lines> is a list of lines that we feed to C<sfdisk>.  For more
1464 information refer to the L<sfdisk(8)> manpage.
1465
1466 To create a single partition occupying the whole disk, you would
1467 pass C<lines> as a single element list, when the single element being
1468 the string C<,> (comma).
1469
1470 See also: C<guestfs_sfdisk_l>, C<guestfs_sfdisk_N>,
1471 C<guestfs_part_init>");
1472
1473   ("write_file", (RErr, [Pathname "path"; String "content"; Int "size"]), 44, [ProtocolLimitWarning],
1474    [InitBasicFS, Always, TestOutput (
1475       [["write_file"; "/new"; "new file contents"; "0"];
1476        ["cat"; "/new"]], "new file contents");
1477     InitBasicFS, Always, TestOutput (
1478       [["write_file"; "/new"; "\nnew file contents\n"; "0"];
1479        ["cat"; "/new"]], "\nnew file contents\n");
1480     InitBasicFS, Always, TestOutput (
1481       [["write_file"; "/new"; "\n\n"; "0"];
1482        ["cat"; "/new"]], "\n\n");
1483     InitBasicFS, Always, TestOutput (
1484       [["write_file"; "/new"; ""; "0"];
1485        ["cat"; "/new"]], "");
1486     InitBasicFS, Always, TestOutput (
1487       [["write_file"; "/new"; "\n\n\n"; "0"];
1488        ["cat"; "/new"]], "\n\n\n");
1489     InitBasicFS, Always, TestOutput (
1490       [["write_file"; "/new"; "\n"; "0"];
1491        ["cat"; "/new"]], "\n")],
1492    "create a file",
1493    "\
1494 This call creates a file called C<path>.  The contents of the
1495 file is the string C<content> (which can contain any 8 bit data),
1496 with length C<size>.
1497
1498 As a special case, if C<size> is C<0>
1499 then the length is calculated using C<strlen> (so in this case
1500 the content cannot contain embedded ASCII NULs).
1501
1502 I<NB.> Owing to a bug, writing content containing ASCII NUL
1503 characters does I<not> work, even if the length is specified.
1504 We hope to resolve this bug in a future version.  In the meantime
1505 use C<guestfs_upload>.");
1506
1507   ("umount", (RErr, [String "pathordevice"]), 45, [FishAlias "unmount"],
1508    [InitEmpty, Always, TestOutputListOfDevices (
1509       [["part_disk"; "/dev/sda"; "mbr"];
1510        ["mkfs"; "ext2"; "/dev/sda1"];
1511        ["mount_options"; ""; "/dev/sda1"; "/"];
1512        ["mounts"]], ["/dev/sda1"]);
1513     InitEmpty, Always, TestOutputList (
1514       [["part_disk"; "/dev/sda"; "mbr"];
1515        ["mkfs"; "ext2"; "/dev/sda1"];
1516        ["mount_options"; ""; "/dev/sda1"; "/"];
1517        ["umount"; "/"];
1518        ["mounts"]], [])],
1519    "unmount a filesystem",
1520    "\
1521 This unmounts the given filesystem.  The filesystem may be
1522 specified either by its mountpoint (path) or the device which
1523 contains the filesystem.");
1524
1525   ("mounts", (RStringList "devices", []), 46, [],
1526    [InitBasicFS, Always, TestOutputListOfDevices (
1527       [["mounts"]], ["/dev/sda1"])],
1528    "show mounted filesystems",
1529    "\
1530 This returns the list of currently mounted filesystems.  It returns
1531 the list of devices (eg. C</dev/sda1>, C</dev/VG/LV>).
1532
1533 Some internal mounts are not shown.
1534
1535 See also: C<guestfs_mountpoints>");
1536
1537   ("umount_all", (RErr, []), 47, [FishAlias "unmount-all"],
1538    [InitBasicFS, Always, TestOutputList (
1539       [["umount_all"];
1540        ["mounts"]], []);
1541     (* check that umount_all can unmount nested mounts correctly: *)
1542     InitEmpty, Always, TestOutputList (
1543       [["sfdiskM"; "/dev/sda"; ",100 ,200 ,"];
1544        ["mkfs"; "ext2"; "/dev/sda1"];
1545        ["mkfs"; "ext2"; "/dev/sda2"];
1546        ["mkfs"; "ext2"; "/dev/sda3"];
1547        ["mount_options"; ""; "/dev/sda1"; "/"];
1548        ["mkdir"; "/mp1"];
1549        ["mount_options"; ""; "/dev/sda2"; "/mp1"];
1550        ["mkdir"; "/mp1/mp2"];
1551        ["mount_options"; ""; "/dev/sda3"; "/mp1/mp2"];
1552        ["mkdir"; "/mp1/mp2/mp3"];
1553        ["umount_all"];
1554        ["mounts"]], [])],
1555    "unmount all filesystems",
1556    "\
1557 This unmounts all mounted filesystems.
1558
1559 Some internal mounts are not unmounted by this call.");
1560
1561   ("lvm_remove_all", (RErr, []), 48, [DangerWillRobinson; Optional "lvm2"],
1562    [],
1563    "remove all LVM LVs, VGs and PVs",
1564    "\
1565 This command removes all LVM logical volumes, volume groups
1566 and physical volumes.");
1567
1568   ("file", (RString "description", [Dev_or_Path "path"]), 49, [],
1569    [InitISOFS, Always, TestOutput (
1570       [["file"; "/empty"]], "empty");
1571     InitISOFS, Always, TestOutput (
1572       [["file"; "/known-1"]], "ASCII text");
1573     InitISOFS, Always, TestLastFail (
1574       [["file"; "/notexists"]])],
1575    "determine file type",
1576    "\
1577 This call uses the standard L<file(1)> command to determine
1578 the type or contents of the file.  This also works on devices,
1579 for example to find out whether a partition contains a filesystem.
1580
1581 This call will also transparently look inside various types
1582 of compressed file.
1583
1584 The exact command which runs is C<file -zbsL path>.  Note in
1585 particular that the filename is not prepended to the output
1586 (the C<-b> option).");
1587
1588   ("command", (RString "output", [StringList "arguments"]), 50, [ProtocolLimitWarning],
1589    [InitBasicFS, Always, TestOutput (
1590       [["upload"; "test-command"; "/test-command"];
1591        ["chmod"; "0o755"; "/test-command"];
1592        ["command"; "/test-command 1"]], "Result1");
1593     InitBasicFS, Always, TestOutput (
1594       [["upload"; "test-command"; "/test-command"];
1595        ["chmod"; "0o755"; "/test-command"];
1596        ["command"; "/test-command 2"]], "Result2\n");
1597     InitBasicFS, Always, TestOutput (
1598       [["upload"; "test-command"; "/test-command"];
1599        ["chmod"; "0o755"; "/test-command"];
1600        ["command"; "/test-command 3"]], "\nResult3");
1601     InitBasicFS, Always, TestOutput (
1602       [["upload"; "test-command"; "/test-command"];
1603        ["chmod"; "0o755"; "/test-command"];
1604        ["command"; "/test-command 4"]], "\nResult4\n");
1605     InitBasicFS, Always, TestOutput (
1606       [["upload"; "test-command"; "/test-command"];
1607        ["chmod"; "0o755"; "/test-command"];
1608        ["command"; "/test-command 5"]], "\nResult5\n\n");
1609     InitBasicFS, Always, TestOutput (
1610       [["upload"; "test-command"; "/test-command"];
1611        ["chmod"; "0o755"; "/test-command"];
1612        ["command"; "/test-command 6"]], "\n\nResult6\n\n");
1613     InitBasicFS, Always, TestOutput (
1614       [["upload"; "test-command"; "/test-command"];
1615        ["chmod"; "0o755"; "/test-command"];
1616        ["command"; "/test-command 7"]], "");
1617     InitBasicFS, Always, TestOutput (
1618       [["upload"; "test-command"; "/test-command"];
1619        ["chmod"; "0o755"; "/test-command"];
1620        ["command"; "/test-command 8"]], "\n");
1621     InitBasicFS, Always, TestOutput (
1622       [["upload"; "test-command"; "/test-command"];
1623        ["chmod"; "0o755"; "/test-command"];
1624        ["command"; "/test-command 9"]], "\n\n");
1625     InitBasicFS, Always, TestOutput (
1626       [["upload"; "test-command"; "/test-command"];
1627        ["chmod"; "0o755"; "/test-command"];
1628        ["command"; "/test-command 10"]], "Result10-1\nResult10-2\n");
1629     InitBasicFS, Always, TestOutput (
1630       [["upload"; "test-command"; "/test-command"];
1631        ["chmod"; "0o755"; "/test-command"];
1632        ["command"; "/test-command 11"]], "Result11-1\nResult11-2");
1633     InitBasicFS, Always, TestLastFail (
1634       [["upload"; "test-command"; "/test-command"];
1635        ["chmod"; "0o755"; "/test-command"];
1636        ["command"; "/test-command"]])],
1637    "run a command from the guest filesystem",
1638    "\
1639 This call runs a command from the guest filesystem.  The
1640 filesystem must be mounted, and must contain a compatible
1641 operating system (ie. something Linux, with the same
1642 or compatible processor architecture).
1643
1644 The single parameter is an argv-style list of arguments.
1645 The first element is the name of the program to run.
1646 Subsequent elements are parameters.  The list must be
1647 non-empty (ie. must contain a program name).  Note that
1648 the command runs directly, and is I<not> invoked via
1649 the shell (see C<guestfs_sh>).
1650
1651 The return value is anything printed to I<stdout> by
1652 the command.
1653
1654 If the command returns a non-zero exit status, then
1655 this function returns an error message.  The error message
1656 string is the content of I<stderr> from the command.
1657
1658 The C<$PATH> environment variable will contain at least
1659 C</usr/bin> and C</bin>.  If you require a program from
1660 another location, you should provide the full path in the
1661 first parameter.
1662
1663 Shared libraries and data files required by the program
1664 must be available on filesystems which are mounted in the
1665 correct places.  It is the caller's responsibility to ensure
1666 all filesystems that are needed are mounted at the right
1667 locations.");
1668
1669   ("command_lines", (RStringList "lines", [StringList "arguments"]), 51, [ProtocolLimitWarning],
1670    [InitBasicFS, Always, TestOutputList (
1671       [["upload"; "test-command"; "/test-command"];
1672        ["chmod"; "0o755"; "/test-command"];
1673        ["command_lines"; "/test-command 1"]], ["Result1"]);
1674     InitBasicFS, Always, TestOutputList (
1675       [["upload"; "test-command"; "/test-command"];
1676        ["chmod"; "0o755"; "/test-command"];
1677        ["command_lines"; "/test-command 2"]], ["Result2"]);
1678     InitBasicFS, Always, TestOutputList (
1679       [["upload"; "test-command"; "/test-command"];
1680        ["chmod"; "0o755"; "/test-command"];
1681        ["command_lines"; "/test-command 3"]], ["";"Result3"]);
1682     InitBasicFS, Always, TestOutputList (
1683       [["upload"; "test-command"; "/test-command"];
1684        ["chmod"; "0o755"; "/test-command"];
1685        ["command_lines"; "/test-command 4"]], ["";"Result4"]);
1686     InitBasicFS, Always, TestOutputList (
1687       [["upload"; "test-command"; "/test-command"];
1688        ["chmod"; "0o755"; "/test-command"];
1689        ["command_lines"; "/test-command 5"]], ["";"Result5";""]);
1690     InitBasicFS, Always, TestOutputList (
1691       [["upload"; "test-command"; "/test-command"];
1692        ["chmod"; "0o755"; "/test-command"];
1693        ["command_lines"; "/test-command 6"]], ["";"";"Result6";""]);
1694     InitBasicFS, Always, TestOutputList (
1695       [["upload"; "test-command"; "/test-command"];
1696        ["chmod"; "0o755"; "/test-command"];
1697        ["command_lines"; "/test-command 7"]], []);
1698     InitBasicFS, Always, TestOutputList (
1699       [["upload"; "test-command"; "/test-command"];
1700        ["chmod"; "0o755"; "/test-command"];
1701        ["command_lines"; "/test-command 8"]], [""]);
1702     InitBasicFS, Always, TestOutputList (
1703       [["upload"; "test-command"; "/test-command"];
1704        ["chmod"; "0o755"; "/test-command"];
1705        ["command_lines"; "/test-command 9"]], ["";""]);
1706     InitBasicFS, Always, TestOutputList (
1707       [["upload"; "test-command"; "/test-command"];
1708        ["chmod"; "0o755"; "/test-command"];
1709        ["command_lines"; "/test-command 10"]], ["Result10-1";"Result10-2"]);
1710     InitBasicFS, Always, TestOutputList (
1711       [["upload"; "test-command"; "/test-command"];
1712        ["chmod"; "0o755"; "/test-command"];
1713        ["command_lines"; "/test-command 11"]], ["Result11-1";"Result11-2"])],
1714    "run a command, returning lines",
1715    "\
1716 This is the same as C<guestfs_command>, but splits the
1717 result into a list of lines.
1718
1719 See also: C<guestfs_sh_lines>");
1720
1721   ("stat", (RStruct ("statbuf", "stat"), [Pathname "path"]), 52, [],
1722    [InitISOFS, Always, TestOutputStruct (
1723       [["stat"; "/empty"]], [CompareWithInt ("size", 0)])],
1724    "get file information",
1725    "\
1726 Returns file information for the given C<path>.
1727
1728 This is the same as the C<stat(2)> system call.");
1729
1730   ("lstat", (RStruct ("statbuf", "stat"), [Pathname "path"]), 53, [],
1731    [InitISOFS, Always, TestOutputStruct (
1732       [["lstat"; "/empty"]], [CompareWithInt ("size", 0)])],
1733    "get file information for a symbolic link",
1734    "\
1735 Returns file information for the given C<path>.
1736
1737 This is the same as C<guestfs_stat> except that if C<path>
1738 is a symbolic link, then the link is stat-ed, not the file it
1739 refers to.
1740
1741 This is the same as the C<lstat(2)> system call.");
1742
1743   ("statvfs", (RStruct ("statbuf", "statvfs"), [Pathname "path"]), 54, [],
1744    [InitISOFS, Always, TestOutputStruct (
1745       [["statvfs"; "/"]], [CompareWithInt ("namemax", 255)])],
1746    "get file system statistics",
1747    "\
1748 Returns file system statistics for any mounted file system.
1749 C<path> should be a file or directory in the mounted file system
1750 (typically it is the mount point itself, but it doesn't need to be).
1751
1752 This is the same as the C<statvfs(2)> system call.");
1753
1754   ("tune2fs_l", (RHashtable "superblock", [Device "device"]), 55, [],
1755    [], (* XXX test *)
1756    "get ext2/ext3/ext4 superblock details",
1757    "\
1758 This returns the contents of the ext2, ext3 or ext4 filesystem
1759 superblock on C<device>.
1760
1761 It is the same as running C<tune2fs -l device>.  See L<tune2fs(8)>
1762 manpage for more details.  The list of fields returned isn't
1763 clearly defined, and depends on both the version of C<tune2fs>
1764 that libguestfs was built against, and the filesystem itself.");
1765
1766   ("blockdev_setro", (RErr, [Device "device"]), 56, [],
1767    [InitEmpty, Always, TestOutputTrue (
1768       [["blockdev_setro"; "/dev/sda"];
1769        ["blockdev_getro"; "/dev/sda"]])],
1770    "set block device to read-only",
1771    "\
1772 Sets the block device named C<device> to read-only.
1773
1774 This uses the L<blockdev(8)> command.");
1775
1776   ("blockdev_setrw", (RErr, [Device "device"]), 57, [],
1777    [InitEmpty, Always, TestOutputFalse (
1778       [["blockdev_setrw"; "/dev/sda"];
1779        ["blockdev_getro"; "/dev/sda"]])],
1780    "set block device to read-write",
1781    "\
1782 Sets the block device named C<device> to read-write.
1783
1784 This uses the L<blockdev(8)> command.");
1785
1786   ("blockdev_getro", (RBool "ro", [Device "device"]), 58, [],
1787    [InitEmpty, Always, TestOutputTrue (
1788       [["blockdev_setro"; "/dev/sda"];
1789        ["blockdev_getro"; "/dev/sda"]])],
1790    "is block device set to read-only",
1791    "\
1792 Returns a boolean indicating if the block device is read-only
1793 (true if read-only, false if not).
1794
1795 This uses the L<blockdev(8)> command.");
1796
1797   ("blockdev_getss", (RInt "sectorsize", [Device "device"]), 59, [],
1798    [InitEmpty, Always, TestOutputInt (
1799       [["blockdev_getss"; "/dev/sda"]], 512)],
1800    "get sectorsize of block device",
1801    "\
1802 This returns the size of sectors on a block device.
1803 Usually 512, but can be larger for modern devices.
1804
1805 (Note, this is not the size in sectors, use C<guestfs_blockdev_getsz>
1806 for that).
1807
1808 This uses the L<blockdev(8)> command.");
1809
1810   ("blockdev_getbsz", (RInt "blocksize", [Device "device"]), 60, [],
1811    [InitEmpty, Always, TestOutputInt (
1812       [["blockdev_getbsz"; "/dev/sda"]], 4096)],
1813    "get blocksize of block device",
1814    "\
1815 This returns the block size of a device.
1816
1817 (Note this is different from both I<size in blocks> and
1818 I<filesystem block size>).
1819
1820 This uses the L<blockdev(8)> command.");
1821
1822   ("blockdev_setbsz", (RErr, [Device "device"; Int "blocksize"]), 61, [],
1823    [], (* XXX test *)
1824    "set blocksize of block device",
1825    "\
1826 This sets the block size of a device.
1827
1828 (Note this is different from both I<size in blocks> and
1829 I<filesystem block size>).
1830
1831 This uses the L<blockdev(8)> command.");
1832
1833   ("blockdev_getsz", (RInt64 "sizeinsectors", [Device "device"]), 62, [],
1834    [InitEmpty, Always, TestOutputInt (
1835       [["blockdev_getsz"; "/dev/sda"]], 1024000)],
1836    "get total size of device in 512-byte sectors",
1837    "\
1838 This returns the size of the device in units of 512-byte sectors
1839 (even if the sectorsize isn't 512 bytes ... weird).
1840
1841 See also C<guestfs_blockdev_getss> for the real sector size of
1842 the device, and C<guestfs_blockdev_getsize64> for the more
1843 useful I<size in bytes>.
1844
1845 This uses the L<blockdev(8)> command.");
1846
1847   ("blockdev_getsize64", (RInt64 "sizeinbytes", [Device "device"]), 63, [],
1848    [InitEmpty, Always, TestOutputInt (
1849       [["blockdev_getsize64"; "/dev/sda"]], 524288000)],
1850    "get total size of device in bytes",
1851    "\
1852 This returns the size of the device in bytes.
1853
1854 See also C<guestfs_blockdev_getsz>.
1855
1856 This uses the L<blockdev(8)> command.");
1857
1858   ("blockdev_flushbufs", (RErr, [Device "device"]), 64, [],
1859    [InitEmpty, Always, TestRun
1860       [["blockdev_flushbufs"; "/dev/sda"]]],
1861    "flush device buffers",
1862    "\
1863 This tells the kernel to flush internal buffers associated
1864 with C<device>.
1865
1866 This uses the L<blockdev(8)> command.");
1867
1868   ("blockdev_rereadpt", (RErr, [Device "device"]), 65, [],
1869    [InitEmpty, Always, TestRun
1870       [["blockdev_rereadpt"; "/dev/sda"]]],
1871    "reread partition table",
1872    "\
1873 Reread the partition table on C<device>.
1874
1875 This uses the L<blockdev(8)> command.");
1876
1877   ("upload", (RErr, [FileIn "filename"; Dev_or_Path "remotefilename"]), 66, [],
1878    [InitBasicFS, Always, TestOutput (
1879       (* Pick a file from cwd which isn't likely to change. *)
1880       [["upload"; "../COPYING.LIB"; "/COPYING.LIB"];
1881        ["checksum"; "md5"; "/COPYING.LIB"]],
1882       Digest.to_hex (Digest.file "COPYING.LIB"))],
1883    "upload a file from the local machine",
1884    "\
1885 Upload local file C<filename> to C<remotefilename> on the
1886 filesystem.
1887
1888 C<filename> can also be a named pipe.
1889
1890 See also C<guestfs_download>.");
1891
1892   ("download", (RErr, [Dev_or_Path "remotefilename"; FileOut "filename"]), 67, [],
1893    [InitBasicFS, Always, TestOutput (
1894       (* Pick a file from cwd which isn't likely to change. *)
1895       [["upload"; "../COPYING.LIB"; "/COPYING.LIB"];
1896        ["download"; "/COPYING.LIB"; "testdownload.tmp"];
1897        ["upload"; "testdownload.tmp"; "/upload"];
1898        ["checksum"; "md5"; "/upload"]],
1899       Digest.to_hex (Digest.file "COPYING.LIB"))],
1900    "download a file to the local machine",
1901    "\
1902 Download file C<remotefilename> and save it as C<filename>
1903 on the local machine.
1904
1905 C<filename> can also be a named pipe.
1906
1907 See also C<guestfs_upload>, C<guestfs_cat>.");
1908
1909   ("checksum", (RString "checksum", [String "csumtype"; Pathname "path"]), 68, [],
1910    [InitISOFS, Always, TestOutput (
1911       [["checksum"; "crc"; "/known-3"]], "2891671662");
1912     InitISOFS, Always, TestLastFail (
1913       [["checksum"; "crc"; "/notexists"]]);
1914     InitISOFS, Always, TestOutput (
1915       [["checksum"; "md5"; "/known-3"]], "46d6ca27ee07cdc6fa99c2e138cc522c");
1916     InitISOFS, Always, TestOutput (
1917       [["checksum"; "sha1"; "/known-3"]], "b7ebccc3ee418311091c3eda0a45b83c0a770f15");
1918     InitISOFS, Always, TestOutput (
1919       [["checksum"; "sha224"; "/known-3"]], "d2cd1774b28f3659c14116be0a6dc2bb5c4b350ce9cd5defac707741");
1920     InitISOFS, Always, TestOutput (
1921       [["checksum"; "sha256"; "/known-3"]], "75bb71b90cd20cb13f86d2bea8dad63ac7194e7517c3b52b8d06ff52d3487d30");
1922     InitISOFS, Always, TestOutput (
1923       [["checksum"; "sha384"; "/known-3"]], "5fa7883430f357b5d7b7271d3a1d2872b51d73cba72731de6863d3dea55f30646af2799bef44d5ea776a5ec7941ac640");
1924     InitISOFS, Always, TestOutput (
1925       [["checksum"; "sha512"; "/known-3"]], "2794062c328c6b216dca90443b7f7134c5f40e56bd0ed7853123275a09982a6f992e6ca682f9d2fba34a4c5e870d8fe077694ff831e3032a004ee077e00603f6")],
1926    "compute MD5, SHAx or CRC checksum of file",
1927    "\
1928 This call computes the MD5, SHAx or CRC checksum of the
1929 file named C<path>.
1930
1931 The type of checksum to compute is given by the C<csumtype>
1932 parameter which must have one of the following values:
1933
1934 =over 4
1935
1936 =item C<crc>
1937
1938 Compute the cyclic redundancy check (CRC) specified by POSIX
1939 for the C<cksum> command.
1940
1941 =item C<md5>
1942
1943 Compute the MD5 hash (using the C<md5sum> program).
1944
1945 =item C<sha1>
1946
1947 Compute the SHA1 hash (using the C<sha1sum> program).
1948
1949 =item C<sha224>
1950
1951 Compute the SHA224 hash (using the C<sha224sum> program).
1952
1953 =item C<sha256>
1954
1955 Compute the SHA256 hash (using the C<sha256sum> program).
1956
1957 =item C<sha384>
1958
1959 Compute the SHA384 hash (using the C<sha384sum> program).
1960
1961 =item C<sha512>
1962
1963 Compute the SHA512 hash (using the C<sha512sum> program).
1964
1965 =back
1966
1967 The checksum is returned as a printable string.");
1968
1969   ("tar_in", (RErr, [FileIn "tarfile"; String "directory"]), 69, [],
1970    [InitBasicFS, Always, TestOutput (
1971       [["tar_in"; "../images/helloworld.tar"; "/"];
1972        ["cat"; "/hello"]], "hello\n")],
1973    "unpack tarfile to directory",
1974    "\
1975 This command uploads and unpacks local file C<tarfile> (an
1976 I<uncompressed> tar file) into C<directory>.
1977
1978 To upload a compressed tarball, use C<guestfs_tgz_in>.");
1979
1980   ("tar_out", (RErr, [String "directory"; FileOut "tarfile"]), 70, [],
1981    [],
1982    "pack directory into tarfile",
1983    "\
1984 This command packs the contents of C<directory> and downloads
1985 it to local file C<tarfile>.
1986
1987 To download a compressed tarball, use C<guestfs_tgz_out>.");
1988
1989   ("tgz_in", (RErr, [FileIn "tarball"; String "directory"]), 71, [],
1990    [InitBasicFS, Always, TestOutput (
1991       [["tgz_in"; "../images/helloworld.tar.gz"; "/"];
1992        ["cat"; "/hello"]], "hello\n")],
1993    "unpack compressed tarball to directory",
1994    "\
1995 This command uploads and unpacks local file C<tarball> (a
1996 I<gzip compressed> tar file) into C<directory>.
1997
1998 To upload an uncompressed tarball, use C<guestfs_tar_in>.");
1999
2000   ("tgz_out", (RErr, [Pathname "directory"; FileOut "tarball"]), 72, [],
2001    [],
2002    "pack directory into compressed tarball",
2003    "\
2004 This command packs the contents of C<directory> and downloads
2005 it to local file C<tarball>.
2006
2007 To download an uncompressed tarball, use C<guestfs_tar_out>.");
2008
2009   ("mount_ro", (RErr, [Device "device"; String "mountpoint"]), 73, [],
2010    [InitBasicFS, Always, TestLastFail (
2011       [["umount"; "/"];
2012        ["mount_ro"; "/dev/sda1"; "/"];
2013        ["touch"; "/new"]]);
2014     InitBasicFS, Always, TestOutput (
2015       [["write_file"; "/new"; "data"; "0"];
2016        ["umount"; "/"];
2017        ["mount_ro"; "/dev/sda1"; "/"];
2018        ["cat"; "/new"]], "data")],
2019    "mount a guest disk, read-only",
2020    "\
2021 This is the same as the C<guestfs_mount> command, but it
2022 mounts the filesystem with the read-only (I<-o ro>) flag.");
2023
2024   ("mount_options", (RErr, [String "options"; Device "device"; String "mountpoint"]), 74, [],
2025    [],
2026    "mount a guest disk with mount options",
2027    "\
2028 This is the same as the C<guestfs_mount> command, but it
2029 allows you to set the mount options as for the
2030 L<mount(8)> I<-o> flag.");
2031
2032   ("mount_vfs", (RErr, [String "options"; String "vfstype"; Device "device"; String "mountpoint"]), 75, [],
2033    [],
2034    "mount a guest disk with mount options and vfstype",
2035    "\
2036 This is the same as the C<guestfs_mount> command, but it
2037 allows you to set both the mount options and the vfstype
2038 as for the L<mount(8)> I<-o> and I<-t> flags.");
2039
2040   ("debug", (RString "result", [String "subcmd"; StringList "extraargs"]), 76, [],
2041    [],
2042    "debugging and internals",
2043    "\
2044 The C<guestfs_debug> command exposes some internals of
2045 C<guestfsd> (the guestfs daemon) that runs inside the
2046 qemu subprocess.
2047
2048 There is no comprehensive help for this command.  You have
2049 to look at the file C<daemon/debug.c> in the libguestfs source
2050 to find out what you can do.");
2051
2052   ("lvremove", (RErr, [Device "device"]), 77, [Optional "lvm2"],
2053    [InitEmpty, Always, TestOutputList (
2054       [["part_disk"; "/dev/sda"; "mbr"];
2055        ["pvcreate"; "/dev/sda1"];
2056        ["vgcreate"; "VG"; "/dev/sda1"];
2057        ["lvcreate"; "LV1"; "VG"; "50"];
2058        ["lvcreate"; "LV2"; "VG"; "50"];
2059        ["lvremove"; "/dev/VG/LV1"];
2060        ["lvs"]], ["/dev/VG/LV2"]);
2061     InitEmpty, Always, TestOutputList (
2062       [["part_disk"; "/dev/sda"; "mbr"];
2063        ["pvcreate"; "/dev/sda1"];
2064        ["vgcreate"; "VG"; "/dev/sda1"];
2065        ["lvcreate"; "LV1"; "VG"; "50"];
2066        ["lvcreate"; "LV2"; "VG"; "50"];
2067        ["lvremove"; "/dev/VG"];
2068        ["lvs"]], []);
2069     InitEmpty, Always, TestOutputList (
2070       [["part_disk"; "/dev/sda"; "mbr"];
2071        ["pvcreate"; "/dev/sda1"];
2072        ["vgcreate"; "VG"; "/dev/sda1"];
2073        ["lvcreate"; "LV1"; "VG"; "50"];
2074        ["lvcreate"; "LV2"; "VG"; "50"];
2075        ["lvremove"; "/dev/VG"];
2076        ["vgs"]], ["VG"])],
2077    "remove an LVM logical volume",
2078    "\
2079 Remove an LVM logical volume C<device>, where C<device> is
2080 the path to the LV, such as C</dev/VG/LV>.
2081
2082 You can also remove all LVs in a volume group by specifying
2083 the VG name, C</dev/VG>.");
2084
2085   ("vgremove", (RErr, [String "vgname"]), 78, [Optional "lvm2"],
2086    [InitEmpty, Always, TestOutputList (
2087       [["part_disk"; "/dev/sda"; "mbr"];
2088        ["pvcreate"; "/dev/sda1"];
2089        ["vgcreate"; "VG"; "/dev/sda1"];
2090        ["lvcreate"; "LV1"; "VG"; "50"];
2091        ["lvcreate"; "LV2"; "VG"; "50"];
2092        ["vgremove"; "VG"];
2093        ["lvs"]], []);
2094     InitEmpty, Always, TestOutputList (
2095       [["part_disk"; "/dev/sda"; "mbr"];
2096        ["pvcreate"; "/dev/sda1"];
2097        ["vgcreate"; "VG"; "/dev/sda1"];
2098        ["lvcreate"; "LV1"; "VG"; "50"];
2099        ["lvcreate"; "LV2"; "VG"; "50"];
2100        ["vgremove"; "VG"];
2101        ["vgs"]], [])],
2102    "remove an LVM volume group",
2103    "\
2104 Remove an LVM volume group C<vgname>, (for example C<VG>).
2105
2106 This also forcibly removes all logical volumes in the volume
2107 group (if any).");
2108
2109   ("pvremove", (RErr, [Device "device"]), 79, [Optional "lvm2"],
2110    [InitEmpty, Always, TestOutputListOfDevices (
2111       [["part_disk"; "/dev/sda"; "mbr"];
2112        ["pvcreate"; "/dev/sda1"];
2113        ["vgcreate"; "VG"; "/dev/sda1"];
2114        ["lvcreate"; "LV1"; "VG"; "50"];
2115        ["lvcreate"; "LV2"; "VG"; "50"];
2116        ["vgremove"; "VG"];
2117        ["pvremove"; "/dev/sda1"];
2118        ["lvs"]], []);
2119     InitEmpty, Always, TestOutputListOfDevices (
2120       [["part_disk"; "/dev/sda"; "mbr"];
2121        ["pvcreate"; "/dev/sda1"];
2122        ["vgcreate"; "VG"; "/dev/sda1"];
2123        ["lvcreate"; "LV1"; "VG"; "50"];
2124        ["lvcreate"; "LV2"; "VG"; "50"];
2125        ["vgremove"; "VG"];
2126        ["pvremove"; "/dev/sda1"];
2127        ["vgs"]], []);
2128     InitEmpty, Always, TestOutputListOfDevices (
2129       [["part_disk"; "/dev/sda"; "mbr"];
2130        ["pvcreate"; "/dev/sda1"];
2131        ["vgcreate"; "VG"; "/dev/sda1"];
2132        ["lvcreate"; "LV1"; "VG"; "50"];
2133        ["lvcreate"; "LV2"; "VG"; "50"];
2134        ["vgremove"; "VG"];
2135        ["pvremove"; "/dev/sda1"];
2136        ["pvs"]], [])],
2137    "remove an LVM physical volume",
2138    "\
2139 This wipes a physical volume C<device> so that LVM will no longer
2140 recognise it.
2141
2142 The implementation uses the C<pvremove> command which refuses to
2143 wipe physical volumes that contain any volume groups, so you have
2144 to remove those first.");
2145
2146   ("set_e2label", (RErr, [Device "device"; String "label"]), 80, [],
2147    [InitBasicFS, Always, TestOutput (
2148       [["set_e2label"; "/dev/sda1"; "testlabel"];
2149        ["get_e2label"; "/dev/sda1"]], "testlabel")],
2150    "set the ext2/3/4 filesystem label",
2151    "\
2152 This sets the ext2/3/4 filesystem label of the filesystem on
2153 C<device> to C<label>.  Filesystem labels are limited to
2154 16 characters.
2155
2156 You can use either C<guestfs_tune2fs_l> or C<guestfs_get_e2label>
2157 to return the existing label on a filesystem.");
2158
2159   ("get_e2label", (RString "label", [Device "device"]), 81, [],
2160    [],
2161    "get the ext2/3/4 filesystem label",
2162    "\
2163 This returns the ext2/3/4 filesystem label of the filesystem on
2164 C<device>.");
2165
2166   ("set_e2uuid", (RErr, [Device "device"; String "uuid"]), 82, [],
2167    (let uuid = uuidgen () in
2168     [InitBasicFS, Always, TestOutput (
2169        [["set_e2uuid"; "/dev/sda1"; uuid];
2170         ["get_e2uuid"; "/dev/sda1"]], uuid);
2171      InitBasicFS, Always, TestOutput (
2172        [["set_e2uuid"; "/dev/sda1"; "clear"];
2173         ["get_e2uuid"; "/dev/sda1"]], "");
2174      (* We can't predict what UUIDs will be, so just check the commands run. *)
2175      InitBasicFS, Always, TestRun (
2176        [["set_e2uuid"; "/dev/sda1"; "random"]]);
2177      InitBasicFS, Always, TestRun (
2178        [["set_e2uuid"; "/dev/sda1"; "time"]])]),
2179    "set the ext2/3/4 filesystem UUID",
2180    "\
2181 This sets the ext2/3/4 filesystem UUID of the filesystem on
2182 C<device> to C<uuid>.  The format of the UUID and alternatives
2183 such as C<clear>, C<random> and C<time> are described in the
2184 L<tune2fs(8)> manpage.
2185
2186 You can use either C<guestfs_tune2fs_l> or C<guestfs_get_e2uuid>
2187 to return the existing UUID of a filesystem.");
2188
2189   ("get_e2uuid", (RString "uuid", [Device "device"]), 83, [],
2190    [],
2191    "get the ext2/3/4 filesystem UUID",
2192    "\
2193 This returns the ext2/3/4 filesystem UUID of the filesystem on
2194 C<device>.");
2195
2196   ("fsck", (RInt "status", [String "fstype"; Device "device"]), 84, [],
2197    [InitBasicFS, Always, TestOutputInt (
2198       [["umount"; "/dev/sda1"];
2199        ["fsck"; "ext2"; "/dev/sda1"]], 0);
2200     InitBasicFS, Always, TestOutputInt (
2201       [["umount"; "/dev/sda1"];
2202        ["zero"; "/dev/sda1"];
2203        ["fsck"; "ext2"; "/dev/sda1"]], 8)],
2204    "run the filesystem checker",
2205    "\
2206 This runs the filesystem checker (fsck) on C<device> which
2207 should have filesystem type C<fstype>.
2208
2209 The returned integer is the status.  See L<fsck(8)> for the
2210 list of status codes from C<fsck>.
2211
2212 Notes:
2213
2214 =over 4
2215
2216 =item *
2217
2218 Multiple status codes can be summed together.
2219
2220 =item *
2221
2222 A non-zero return code can mean \"success\", for example if
2223 errors have been corrected on the filesystem.
2224
2225 =item *
2226
2227 Checking or repairing NTFS volumes is not supported
2228 (by linux-ntfs).
2229
2230 =back
2231
2232 This command is entirely equivalent to running C<fsck -a -t fstype device>.");
2233
2234   ("zero", (RErr, [Device "device"]), 85, [],
2235    [InitBasicFS, Always, TestOutput (
2236       [["umount"; "/dev/sda1"];
2237        ["zero"; "/dev/sda1"];
2238        ["file"; "/dev/sda1"]], "data")],
2239    "write zeroes to the device",
2240    "\
2241 This command writes zeroes over the first few blocks of C<device>.
2242
2243 How many blocks are zeroed isn't specified (but it's I<not> enough
2244 to securely wipe the device).  It should be sufficient to remove
2245 any partition tables, filesystem superblocks and so on.
2246
2247 See also: C<guestfs_scrub_device>.");
2248
2249   ("grub_install", (RErr, [Pathname "root"; Device "device"]), 86, [],
2250    (* Test disabled because grub-install incompatible with virtio-blk driver.
2251     * See also: https://bugzilla.redhat.com/show_bug.cgi?id=479760
2252     *)
2253    [InitBasicFS, Disabled, TestOutputTrue (
2254       [["grub_install"; "/"; "/dev/sda1"];
2255        ["is_dir"; "/boot"]])],
2256    "install GRUB",
2257    "\
2258 This command installs GRUB (the Grand Unified Bootloader) on
2259 C<device>, with the root directory being C<root>.");
2260
2261   ("cp", (RErr, [Pathname "src"; Pathname "dest"]), 87, [],
2262    [InitBasicFS, Always, TestOutput (
2263       [["write_file"; "/old"; "file content"; "0"];
2264        ["cp"; "/old"; "/new"];
2265        ["cat"; "/new"]], "file content");
2266     InitBasicFS, Always, TestOutputTrue (
2267       [["write_file"; "/old"; "file content"; "0"];
2268        ["cp"; "/old"; "/new"];
2269        ["is_file"; "/old"]]);
2270     InitBasicFS, Always, TestOutput (
2271       [["write_file"; "/old"; "file content"; "0"];
2272        ["mkdir"; "/dir"];
2273        ["cp"; "/old"; "/dir/new"];
2274        ["cat"; "/dir/new"]], "file content")],
2275    "copy a file",
2276    "\
2277 This copies a file from C<src> to C<dest> where C<dest> is
2278 either a destination filename or destination directory.");
2279
2280   ("cp_a", (RErr, [Pathname "src"; Pathname "dest"]), 88, [],
2281    [InitBasicFS, Always, TestOutput (
2282       [["mkdir"; "/olddir"];
2283        ["mkdir"; "/newdir"];
2284        ["write_file"; "/olddir/file"; "file content"; "0"];
2285        ["cp_a"; "/olddir"; "/newdir"];
2286        ["cat"; "/newdir/olddir/file"]], "file content")],
2287    "copy a file or directory recursively",
2288    "\
2289 This copies a file or directory from C<src> to C<dest>
2290 recursively using the C<cp -a> command.");
2291
2292   ("mv", (RErr, [Pathname "src"; Pathname "dest"]), 89, [],
2293    [InitBasicFS, Always, TestOutput (
2294       [["write_file"; "/old"; "file content"; "0"];
2295        ["mv"; "/old"; "/new"];
2296        ["cat"; "/new"]], "file content");
2297     InitBasicFS, Always, TestOutputFalse (
2298       [["write_file"; "/old"; "file content"; "0"];
2299        ["mv"; "/old"; "/new"];
2300        ["is_file"; "/old"]])],
2301    "move a file",
2302    "\
2303 This moves a file from C<src> to C<dest> where C<dest> is
2304 either a destination filename or destination directory.");
2305
2306   ("drop_caches", (RErr, [Int "whattodrop"]), 90, [],
2307    [InitEmpty, Always, TestRun (
2308       [["drop_caches"; "3"]])],
2309    "drop kernel page cache, dentries and inodes",
2310    "\
2311 This instructs the guest kernel to drop its page cache,
2312 and/or dentries and inode caches.  The parameter C<whattodrop>
2313 tells the kernel what precisely to drop, see
2314 L<http://linux-mm.org/Drop_Caches>
2315
2316 Setting C<whattodrop> to 3 should drop everything.
2317
2318 This automatically calls L<sync(2)> before the operation,
2319 so that the maximum guest memory is freed.");
2320
2321   ("dmesg", (RString "kmsgs", []), 91, [],
2322    [InitEmpty, Always, TestRun (
2323       [["dmesg"]])],
2324    "return kernel messages",
2325    "\
2326 This returns the kernel messages (C<dmesg> output) from
2327 the guest kernel.  This is sometimes useful for extended
2328 debugging of problems.
2329
2330 Another way to get the same information is to enable
2331 verbose messages with C<guestfs_set_verbose> or by setting
2332 the environment variable C<LIBGUESTFS_DEBUG=1> before
2333 running the program.");
2334
2335   ("ping_daemon", (RErr, []), 92, [],
2336    [InitEmpty, Always, TestRun (
2337       [["ping_daemon"]])],
2338    "ping the guest daemon",
2339    "\
2340 This is a test probe into the guestfs daemon running inside
2341 the qemu subprocess.  Calling this function checks that the
2342 daemon responds to the ping message, without affecting the daemon
2343 or attached block device(s) in any other way.");
2344
2345   ("equal", (RBool "equality", [Pathname "file1"; Pathname "file2"]), 93, [],
2346    [InitBasicFS, Always, TestOutputTrue (
2347       [["write_file"; "/file1"; "contents of a file"; "0"];
2348        ["cp"; "/file1"; "/file2"];
2349        ["equal"; "/file1"; "/file2"]]);
2350     InitBasicFS, Always, TestOutputFalse (
2351       [["write_file"; "/file1"; "contents of a file"; "0"];
2352        ["write_file"; "/file2"; "contents of another file"; "0"];
2353        ["equal"; "/file1"; "/file2"]]);
2354     InitBasicFS, Always, TestLastFail (
2355       [["equal"; "/file1"; "/file2"]])],
2356    "test if two files have equal contents",
2357    "\
2358 This compares the two files C<file1> and C<file2> and returns
2359 true if their content is exactly equal, or false otherwise.
2360
2361 The external L<cmp(1)> program is used for the comparison.");
2362
2363   ("strings", (RStringList "stringsout", [Pathname "path"]), 94, [ProtocolLimitWarning],
2364    [InitISOFS, Always, TestOutputList (
2365       [["strings"; "/known-5"]], ["abcdefghi"; "jklmnopqr"]);
2366     InitISOFS, Always, TestOutputList (
2367       [["strings"; "/empty"]], [])],
2368    "print the printable strings in a file",
2369    "\
2370 This runs the L<strings(1)> command on a file and returns
2371 the list of printable strings found.");
2372
2373   ("strings_e", (RStringList "stringsout", [String "encoding"; Pathname "path"]), 95, [ProtocolLimitWarning],
2374    [InitISOFS, Always, TestOutputList (
2375       [["strings_e"; "b"; "/known-5"]], []);
2376     InitBasicFS, Disabled, TestOutputList (
2377       [["write_file"; "/new"; "\000h\000e\000l\000l\000o\000\n\000w\000o\000r\000l\000d\000\n"; "24"];
2378        ["strings_e"; "b"; "/new"]], ["hello"; "world"])],
2379    "print the printable strings in a file",
2380    "\
2381 This is like the C<guestfs_strings> command, but allows you to
2382 specify the encoding.
2383
2384 See the L<strings(1)> manpage for the full list of encodings.
2385
2386 Commonly useful encodings are C<l> (lower case L) which will
2387 show strings inside Windows/x86 files.
2388
2389 The returned strings are transcoded to UTF-8.");
2390
2391   ("hexdump", (RString "dump", [Pathname "path"]), 96, [ProtocolLimitWarning],
2392    [InitISOFS, Always, TestOutput (
2393       [["hexdump"; "/known-4"]], "00000000  61 62 63 0a 64 65 66 0a  67 68 69                 |abc.def.ghi|\n0000000b\n");
2394     (* Test for RHBZ#501888c2 regression which caused large hexdump
2395      * commands to segfault.
2396      *)
2397     InitISOFS, Always, TestRun (
2398       [["hexdump"; "/100krandom"]])],
2399    "dump a file in hexadecimal",
2400    "\
2401 This runs C<hexdump -C> on the given C<path>.  The result is
2402 the human-readable, canonical hex dump of the file.");
2403
2404   ("zerofree", (RErr, [Device "device"]), 97, [Optional "zerofree"],
2405    [InitNone, Always, TestOutput (
2406       [["part_disk"; "/dev/sda"; "mbr"];
2407        ["mkfs"; "ext3"; "/dev/sda1"];
2408        ["mount_options"; ""; "/dev/sda1"; "/"];
2409        ["write_file"; "/new"; "test file"; "0"];
2410        ["umount"; "/dev/sda1"];
2411        ["zerofree"; "/dev/sda1"];
2412        ["mount_options"; ""; "/dev/sda1"; "/"];
2413        ["cat"; "/new"]], "test file")],
2414    "zero unused inodes and disk blocks on ext2/3 filesystem",
2415    "\
2416 This runs the I<zerofree> program on C<device>.  This program
2417 claims to zero unused inodes and disk blocks on an ext2/3
2418 filesystem, thus making it possible to compress the filesystem
2419 more effectively.
2420
2421 You should B<not> run this program if the filesystem is
2422 mounted.
2423
2424 It is possible that using this program can damage the filesystem
2425 or data on the filesystem.");
2426
2427   ("pvresize", (RErr, [Device "device"]), 98, [Optional "lvm2"],
2428    [],
2429    "resize an LVM physical volume",
2430    "\
2431 This resizes (expands or shrinks) an existing LVM physical
2432 volume to match the new size of the underlying device.");
2433
2434   ("sfdisk_N", (RErr, [Device "device"; Int "partnum";
2435                        Int "cyls"; Int "heads"; Int "sectors";
2436                        String "line"]), 99, [DangerWillRobinson],
2437    [],
2438    "modify a single partition on a block device",
2439    "\
2440 This runs L<sfdisk(8)> option to modify just the single
2441 partition C<n> (note: C<n> counts from 1).
2442
2443 For other parameters, see C<guestfs_sfdisk>.  You should usually
2444 pass C<0> for the cyls/heads/sectors parameters.
2445
2446 See also: C<guestfs_part_add>");
2447
2448   ("sfdisk_l", (RString "partitions", [Device "device"]), 100, [],
2449    [],
2450    "display the partition table",
2451    "\
2452 This displays the partition table on C<device>, in the
2453 human-readable output of the L<sfdisk(8)> command.  It is
2454 not intended to be parsed.
2455
2456 See also: C<guestfs_part_list>");
2457
2458   ("sfdisk_kernel_geometry", (RString "partitions", [Device "device"]), 101, [],
2459    [],
2460    "display the kernel geometry",
2461    "\
2462 This displays the kernel's idea of the geometry of C<device>.
2463
2464 The result is in human-readable format, and not designed to
2465 be parsed.");
2466
2467   ("sfdisk_disk_geometry", (RString "partitions", [Device "device"]), 102, [],
2468    [],
2469    "display the disk geometry from the partition table",
2470    "\
2471 This displays the disk geometry of C<device> read from the
2472 partition table.  Especially in the case where the underlying
2473 block device has been resized, this can be different from the
2474 kernel's idea of the geometry (see C<guestfs_sfdisk_kernel_geometry>).
2475
2476 The result is in human-readable format, and not designed to
2477 be parsed.");
2478
2479   ("vg_activate_all", (RErr, [Bool "activate"]), 103, [Optional "lvm2"],
2480    [],
2481    "activate or deactivate all volume groups",
2482    "\
2483 This command activates or (if C<activate> is false) deactivates
2484 all logical volumes in all volume groups.
2485 If activated, then they are made known to the
2486 kernel, ie. they appear as C</dev/mapper> devices.  If deactivated,
2487 then those devices disappear.
2488
2489 This command is the same as running C<vgchange -a y|n>");
2490
2491   ("vg_activate", (RErr, [Bool "activate"; StringList "volgroups"]), 104, [Optional "lvm2"],
2492    [],
2493    "activate or deactivate some volume groups",
2494    "\
2495 This command activates or (if C<activate> is false) deactivates
2496 all logical volumes in the listed volume groups C<volgroups>.
2497 If activated, then they are made known to the
2498 kernel, ie. they appear as C</dev/mapper> devices.  If deactivated,
2499 then those devices disappear.
2500
2501 This command is the same as running C<vgchange -a y|n volgroups...>
2502
2503 Note that if C<volgroups> is an empty list then B<all> volume groups
2504 are activated or deactivated.");
2505
2506   ("lvresize", (RErr, [Device "device"; Int "mbytes"]), 105, [Optional "lvm2"],
2507    [InitNone, Always, TestOutput (
2508       [["part_disk"; "/dev/sda"; "mbr"];
2509        ["pvcreate"; "/dev/sda1"];
2510        ["vgcreate"; "VG"; "/dev/sda1"];
2511        ["lvcreate"; "LV"; "VG"; "10"];
2512        ["mkfs"; "ext2"; "/dev/VG/LV"];
2513        ["mount_options"; ""; "/dev/VG/LV"; "/"];
2514        ["write_file"; "/new"; "test content"; "0"];
2515        ["umount"; "/"];
2516        ["lvresize"; "/dev/VG/LV"; "20"];
2517        ["e2fsck_f"; "/dev/VG/LV"];
2518        ["resize2fs"; "/dev/VG/LV"];
2519        ["mount_options"; ""; "/dev/VG/LV"; "/"];
2520        ["cat"; "/new"]], "test content")],
2521    "resize an LVM logical volume",
2522    "\
2523 This resizes (expands or shrinks) an existing LVM logical
2524 volume to C<mbytes>.  When reducing, data in the reduced part
2525 is lost.");
2526
2527   ("resize2fs", (RErr, [Device "device"]), 106, [],
2528    [], (* lvresize tests this *)
2529    "resize an ext2/ext3 filesystem",
2530    "\
2531 This resizes an ext2 or ext3 filesystem to match the size of
2532 the underlying device.
2533
2534 I<Note:> It is sometimes required that you run C<guestfs_e2fsck_f>
2535 on the C<device> before calling this command.  For unknown reasons
2536 C<resize2fs> sometimes gives an error about this and sometimes not.
2537 In any case, it is always safe to call C<guestfs_e2fsck_f> before
2538 calling this function.");
2539
2540   ("find", (RStringList "names", [Pathname "directory"]), 107, [ProtocolLimitWarning],
2541    [InitBasicFS, Always, TestOutputList (
2542       [["find"; "/"]], ["lost+found"]);
2543     InitBasicFS, Always, TestOutputList (
2544       [["touch"; "/a"];
2545        ["mkdir"; "/b"];
2546        ["touch"; "/b/c"];
2547        ["find"; "/"]], ["a"; "b"; "b/c"; "lost+found"]);
2548     InitBasicFS, Always, TestOutputList (
2549       [["mkdir_p"; "/a/b/c"];
2550        ["touch"; "/a/b/c/d"];
2551        ["find"; "/a/b/"]], ["c"; "c/d"])],
2552    "find all files and directories",
2553    "\
2554 This command lists out all files and directories, recursively,
2555 starting at C<directory>.  It is essentially equivalent to
2556 running the shell command C<find directory -print> but some
2557 post-processing happens on the output, described below.
2558
2559 This returns a list of strings I<without any prefix>.  Thus
2560 if the directory structure was:
2561
2562  /tmp/a
2563  /tmp/b
2564  /tmp/c/d
2565
2566 then the returned list from C<guestfs_find> C</tmp> would be
2567 4 elements:
2568
2569  a
2570  b
2571  c
2572  c/d
2573
2574 If C<directory> is not a directory, then this command returns
2575 an error.
2576
2577 The returned list is sorted.
2578
2579 See also C<guestfs_find0>.");
2580
2581   ("e2fsck_f", (RErr, [Device "device"]), 108, [],
2582    [], (* lvresize tests this *)
2583    "check an ext2/ext3 filesystem",
2584    "\
2585 This runs C<e2fsck -p -f device>, ie. runs the ext2/ext3
2586 filesystem checker on C<device>, noninteractively (C<-p>),
2587 even if the filesystem appears to be clean (C<-f>).
2588
2589 This command is only needed because of C<guestfs_resize2fs>
2590 (q.v.).  Normally you should use C<guestfs_fsck>.");
2591
2592   ("sleep", (RErr, [Int "secs"]), 109, [],
2593    [InitNone, Always, TestRun (
2594       [["sleep"; "1"]])],
2595    "sleep for some seconds",
2596    "\
2597 Sleep for C<secs> seconds.");
2598
2599   ("ntfs_3g_probe", (RInt "status", [Bool "rw"; Device "device"]), 110, [Optional "ntfs3g"],
2600    [InitNone, Always, TestOutputInt (
2601       [["part_disk"; "/dev/sda"; "mbr"];
2602        ["mkfs"; "ntfs"; "/dev/sda1"];
2603        ["ntfs_3g_probe"; "true"; "/dev/sda1"]], 0);
2604     InitNone, Always, TestOutputInt (
2605       [["part_disk"; "/dev/sda"; "mbr"];
2606        ["mkfs"; "ext2"; "/dev/sda1"];
2607        ["ntfs_3g_probe"; "true"; "/dev/sda1"]], 12)],
2608    "probe NTFS volume",
2609    "\
2610 This command runs the L<ntfs-3g.probe(8)> command which probes
2611 an NTFS C<device> for mountability.  (Not all NTFS volumes can
2612 be mounted read-write, and some cannot be mounted at all).
2613
2614 C<rw> is a boolean flag.  Set it to true if you want to test
2615 if the volume can be mounted read-write.  Set it to false if
2616 you want to test if the volume can be mounted read-only.
2617
2618 The return value is an integer which C<0> if the operation
2619 would succeed, or some non-zero value documented in the
2620 L<ntfs-3g.probe(8)> manual page.");
2621
2622   ("sh", (RString "output", [String "command"]), 111, [],
2623    [], (* XXX needs tests *)
2624    "run a command via the shell",
2625    "\
2626 This call runs a command from the guest filesystem via the
2627 guest's C</bin/sh>.
2628
2629 This is like C<guestfs_command>, but passes the command to:
2630
2631  /bin/sh -c \"command\"
2632
2633 Depending on the guest's shell, this usually results in
2634 wildcards being expanded, shell expressions being interpolated
2635 and so on.
2636
2637 All the provisos about C<guestfs_command> apply to this call.");
2638
2639   ("sh_lines", (RStringList "lines", [String "command"]), 112, [],
2640    [], (* XXX needs tests *)
2641    "run a command via the shell returning lines",
2642    "\
2643 This is the same as C<guestfs_sh>, but splits the result
2644 into a list of lines.
2645
2646 See also: C<guestfs_command_lines>");
2647
2648   ("glob_expand", (RStringList "paths", [Pathname "pattern"]), 113, [],
2649    (* Use Pathname here, and hence ABS_PATH (pattern,... in generated
2650     * code in stubs.c, since all valid glob patterns must start with "/".
2651     * There is no concept of "cwd" in libguestfs, hence no "."-relative names.
2652     *)
2653    [InitBasicFS, Always, TestOutputList (
2654       [["mkdir_p"; "/a/b/c"];
2655        ["touch"; "/a/b/c/d"];
2656        ["touch"; "/a/b/c/e"];
2657        ["glob_expand"; "/a/b/c/*"]], ["/a/b/c/d"; "/a/b/c/e"]);
2658     InitBasicFS, Always, TestOutputList (
2659       [["mkdir_p"; "/a/b/c"];
2660        ["touch"; "/a/b/c/d"];
2661        ["touch"; "/a/b/c/e"];
2662        ["glob_expand"; "/a/*/c/*"]], ["/a/b/c/d"; "/a/b/c/e"]);
2663     InitBasicFS, Always, TestOutputList (
2664       [["mkdir_p"; "/a/b/c"];
2665        ["touch"; "/a/b/c/d"];
2666        ["touch"; "/a/b/c/e"];
2667        ["glob_expand"; "/a/*/x/*"]], [])],
2668    "expand a wildcard path",
2669    "\
2670 This command searches for all the pathnames matching
2671 C<pattern> according to the wildcard expansion rules
2672 used by the shell.
2673
2674 If no paths match, then this returns an empty list
2675 (note: not an error).
2676
2677 It is just a wrapper around the C L<glob(3)> function
2678 with flags C<GLOB_MARK|GLOB_BRACE>.
2679 See that manual page for more details.");
2680
2681   ("scrub_device", (RErr, [Device "device"]), 114, [DangerWillRobinson; Optional "scrub"],
2682    [InitNone, Always, TestRun ( (* use /dev/sdc because it's smaller *)
2683       [["scrub_device"; "/dev/sdc"]])],
2684    "scrub (securely wipe) a device",
2685    "\
2686 This command writes patterns over C<device> to make data retrieval
2687 more difficult.
2688
2689 It is an interface to the L<scrub(1)> program.  See that
2690 manual page for more details.");
2691
2692   ("scrub_file", (RErr, [Pathname "file"]), 115, [Optional "scrub"],
2693    [InitBasicFS, Always, TestRun (
2694       [["write_file"; "/file"; "content"; "0"];
2695        ["scrub_file"; "/file"]])],
2696    "scrub (securely wipe) a file",
2697    "\
2698 This command writes patterns over a file to make data retrieval
2699 more difficult.
2700
2701 The file is I<removed> after scrubbing.
2702
2703 It is an interface to the L<scrub(1)> program.  See that
2704 manual page for more details.");
2705
2706   ("scrub_freespace", (RErr, [Pathname "dir"]), 116, [Optional "scrub"],
2707    [], (* XXX needs testing *)
2708    "scrub (securely wipe) free space",
2709    "\
2710 This command creates the directory C<dir> and then fills it
2711 with files until the filesystem is full, and scrubs the files
2712 as for C<guestfs_scrub_file>, and deletes them.
2713 The intention is to scrub any free space on the partition
2714 containing C<dir>.
2715
2716 It is an interface to the L<scrub(1)> program.  See that
2717 manual page for more details.");
2718
2719   ("mkdtemp", (RString "dir", [Pathname "template"]), 117, [],
2720    [InitBasicFS, Always, TestRun (
2721       [["mkdir"; "/tmp"];
2722        ["mkdtemp"; "/tmp/tmpXXXXXX"]])],
2723    "create a temporary directory",
2724    "\
2725 This command creates a temporary directory.  The
2726 C<template> parameter should be a full pathname for the
2727 temporary directory name with the final six characters being
2728 \"XXXXXX\".
2729
2730 For example: \"/tmp/myprogXXXXXX\" or \"/Temp/myprogXXXXXX\",
2731 the second one being suitable for Windows filesystems.
2732
2733 The name of the temporary directory that was created
2734 is returned.
2735
2736 The temporary directory is created with mode 0700
2737 and is owned by root.
2738
2739 The caller is responsible for deleting the temporary
2740 directory and its contents after use.
2741
2742 See also: L<mkdtemp(3)>");
2743
2744   ("wc_l", (RInt "lines", [Pathname "path"]), 118, [],
2745    [InitISOFS, Always, TestOutputInt (
2746       [["wc_l"; "/10klines"]], 10000)],
2747    "count lines in a file",
2748    "\
2749 This command counts the lines in a file, using the
2750 C<wc -l> external command.");
2751
2752   ("wc_w", (RInt "words", [Pathname "path"]), 119, [],
2753    [InitISOFS, Always, TestOutputInt (
2754       [["wc_w"; "/10klines"]], 10000)],
2755    "count words in a file",
2756    "\
2757 This command counts the words in a file, using the
2758 C<wc -w> external command.");
2759
2760   ("wc_c", (RInt "chars", [Pathname "path"]), 120, [],
2761    [InitISOFS, Always, TestOutputInt (
2762       [["wc_c"; "/100kallspaces"]], 102400)],
2763    "count characters in a file",
2764    "\
2765 This command counts the characters in a file, using the
2766 C<wc -c> external command.");
2767
2768   ("head", (RStringList "lines", [Pathname "path"]), 121, [ProtocolLimitWarning],
2769    [InitISOFS, Always, TestOutputList (
2770       [["head"; "/10klines"]], ["0abcdefghijklmnopqrstuvwxyz";"1abcdefghijklmnopqrstuvwxyz";"2abcdefghijklmnopqrstuvwxyz";"3abcdefghijklmnopqrstuvwxyz";"4abcdefghijklmnopqrstuvwxyz";"5abcdefghijklmnopqrstuvwxyz";"6abcdefghijklmnopqrstuvwxyz";"7abcdefghijklmnopqrstuvwxyz";"8abcdefghijklmnopqrstuvwxyz";"9abcdefghijklmnopqrstuvwxyz"])],
2771    "return first 10 lines of a file",
2772    "\
2773 This command returns up to the first 10 lines of a file as
2774 a list of strings.");
2775
2776   ("head_n", (RStringList "lines", [Int "nrlines"; Pathname "path"]), 122, [ProtocolLimitWarning],
2777    [InitISOFS, Always, TestOutputList (
2778       [["head_n"; "3"; "/10klines"]], ["0abcdefghijklmnopqrstuvwxyz";"1abcdefghijklmnopqrstuvwxyz";"2abcdefghijklmnopqrstuvwxyz"]);
2779     InitISOFS, Always, TestOutputList (
2780       [["head_n"; "-9997"; "/10klines"]], ["0abcdefghijklmnopqrstuvwxyz";"1abcdefghijklmnopqrstuvwxyz";"2abcdefghijklmnopqrstuvwxyz"]);
2781     InitISOFS, Always, TestOutputList (
2782       [["head_n"; "0"; "/10klines"]], [])],
2783    "return first N lines of a file",
2784    "\
2785 If the parameter C<nrlines> is a positive number, this returns the first
2786 C<nrlines> lines of the file C<path>.
2787
2788 If the parameter C<nrlines> is a negative number, this returns lines
2789 from the file C<path>, excluding the last C<nrlines> lines.
2790
2791 If the parameter C<nrlines> is zero, this returns an empty list.");
2792
2793   ("tail", (RStringList "lines", [Pathname "path"]), 123, [ProtocolLimitWarning],
2794    [InitISOFS, Always, TestOutputList (
2795       [["tail"; "/10klines"]], ["9990abcdefghijklmnopqrstuvwxyz";"9991abcdefghijklmnopqrstuvwxyz";"9992abcdefghijklmnopqrstuvwxyz";"9993abcdefghijklmnopqrstuvwxyz";"9994abcdefghijklmnopqrstuvwxyz";"9995abcdefghijklmnopqrstuvwxyz";"9996abcdefghijklmnopqrstuvwxyz";"9997abcdefghijklmnopqrstuvwxyz";"9998abcdefghijklmnopqrstuvwxyz";"9999abcdefghijklmnopqrstuvwxyz"])],
2796    "return last 10 lines of a file",
2797    "\
2798 This command returns up to the last 10 lines of a file as
2799 a list of strings.");
2800
2801   ("tail_n", (RStringList "lines", [Int "nrlines"; Pathname "path"]), 124, [ProtocolLimitWarning],
2802    [InitISOFS, Always, TestOutputList (
2803       [["tail_n"; "3"; "/10klines"]], ["9997abcdefghijklmnopqrstuvwxyz";"9998abcdefghijklmnopqrstuvwxyz";"9999abcdefghijklmnopqrstuvwxyz"]);
2804     InitISOFS, Always, TestOutputList (
2805       [["tail_n"; "-9998"; "/10klines"]], ["9997abcdefghijklmnopqrstuvwxyz";"9998abcdefghijklmnopqrstuvwxyz";"9999abcdefghijklmnopqrstuvwxyz"]);
2806     InitISOFS, Always, TestOutputList (
2807       [["tail_n"; "0"; "/10klines"]], [])],
2808    "return last N lines of a file",
2809    "\
2810 If the parameter C<nrlines> is a positive number, this returns the last
2811 C<nrlines> lines of the file C<path>.
2812
2813 If the parameter C<nrlines> is a negative number, this returns lines
2814 from the file C<path>, starting with the C<-nrlines>th line.
2815
2816 If the parameter C<nrlines> is zero, this returns an empty list.");
2817
2818   ("df", (RString "output", []), 125, [],
2819    [], (* XXX Tricky to test because it depends on the exact format
2820         * of the 'df' command and other imponderables.
2821         *)
2822    "report file system disk space usage",
2823    "\
2824 This command runs the C<df> command to report disk space used.
2825
2826 This command is mostly useful for interactive sessions.  It
2827 is I<not> intended that you try to parse the output string.
2828 Use C<statvfs> from programs.");
2829
2830   ("df_h", (RString "output", []), 126, [],
2831    [], (* XXX Tricky to test because it depends on the exact format
2832         * of the 'df' command and other imponderables.
2833         *)
2834    "report file system disk space usage (human readable)",
2835    "\
2836 This command runs the C<df -h> command to report disk space used
2837 in human-readable format.
2838
2839 This command is mostly useful for interactive sessions.  It
2840 is I<not> intended that you try to parse the output string.
2841 Use C<statvfs> from programs.");
2842
2843   ("du", (RInt64 "sizekb", [Pathname "path"]), 127, [],
2844    [InitISOFS, Always, TestOutputInt (
2845       [["du"; "/directory"]], 2 (* ISO fs blocksize is 2K *))],
2846    "estimate file space usage",
2847    "\
2848 This command runs the C<du -s> command to estimate file space
2849 usage for C<path>.
2850
2851 C<path> can be a file or a directory.  If C<path> is a directory
2852 then the estimate includes the contents of the directory and all
2853 subdirectories (recursively).
2854
2855 The result is the estimated size in I<kilobytes>
2856 (ie. units of 1024 bytes).");
2857
2858   ("initrd_list", (RStringList "filenames", [Pathname "path"]), 128, [],
2859    [InitISOFS, Always, TestOutputList (
2860       [["initrd_list"; "/initrd"]], ["empty";"known-1";"known-2";"known-3";"known-4"; "known-5"])],
2861    "list files in an initrd",
2862    "\
2863 This command lists out files contained in an initrd.
2864
2865 The files are listed without any initial C</> character.  The
2866 files are listed in the order they appear (not necessarily
2867 alphabetical).  Directory names are listed as separate items.
2868
2869 Old Linux kernels (2.4 and earlier) used a compressed ext2
2870 filesystem as initrd.  We I<only> support the newer initramfs
2871 format (compressed cpio files).");
2872
2873   ("mount_loop", (RErr, [Pathname "file"; Pathname "mountpoint"]), 129, [],
2874    [],
2875    "mount a file using the loop device",
2876    "\
2877 This command lets you mount C<file> (a filesystem image
2878 in a file) on a mount point.  It is entirely equivalent to
2879 the command C<mount -o loop file mountpoint>.");
2880
2881   ("mkswap", (RErr, [Device "device"]), 130, [],
2882    [InitEmpty, Always, TestRun (
2883       [["part_disk"; "/dev/sda"; "mbr"];
2884        ["mkswap"; "/dev/sda1"]])],
2885    "create a swap partition",
2886    "\
2887 Create a swap partition on C<device>.");
2888
2889   ("mkswap_L", (RErr, [String "label"; Device "device"]), 131, [],
2890    [InitEmpty, Always, TestRun (
2891       [["part_disk"; "/dev/sda"; "mbr"];
2892        ["mkswap_L"; "hello"; "/dev/sda1"]])],
2893    "create a swap partition with a label",
2894    "\
2895 Create a swap partition on C<device> with label C<label>.
2896
2897 Note that you cannot attach a swap label to a block device
2898 (eg. C</dev/sda>), just to a partition.  This appears to be
2899 a limitation of the kernel or swap tools.");
2900
2901   ("mkswap_U", (RErr, [String "uuid"; Device "device"]), 132, [Optional "linuxfsuuid"],
2902    (let uuid = uuidgen () in
2903     [InitEmpty, Always, TestRun (
2904        [["part_disk"; "/dev/sda"; "mbr"];
2905         ["mkswap_U"; uuid; "/dev/sda1"]])]),
2906    "create a swap partition with an explicit UUID",
2907    "\
2908 Create a swap partition on C<device> with UUID C<uuid>.");
2909
2910   ("mknod", (RErr, [Int "mode"; Int "devmajor"; Int "devminor"; Pathname "path"]), 133, [Optional "mknod"],
2911    [InitBasicFS, Always, TestOutputStruct (
2912       [["mknod"; "0o10777"; "0"; "0"; "/node"];
2913        (* NB: default umask 022 means 0777 -> 0755 in these tests *)
2914        ["stat"; "/node"]], [CompareWithInt ("mode", 0o10755)]);
2915     InitBasicFS, Always, TestOutputStruct (
2916       [["mknod"; "0o60777"; "66"; "99"; "/node"];
2917        ["stat"; "/node"]], [CompareWithInt ("mode", 0o60755)])],
2918    "make block, character or FIFO devices",
2919    "\
2920 This call creates block or character special devices, or
2921 named pipes (FIFOs).
2922
2923 The C<mode> parameter should be the mode, using the standard
2924 constants.  C<devmajor> and C<devminor> are the
2925 device major and minor numbers, only used when creating block
2926 and character special devices.");
2927
2928   ("mkfifo", (RErr, [Int "mode"; Pathname "path"]), 134, [Optional "mknod"],
2929    [InitBasicFS, Always, TestOutputStruct (
2930       [["mkfifo"; "0o777"; "/node"];
2931        ["stat"; "/node"]], [CompareWithInt ("mode", 0o10755)])],
2932    "make FIFO (named pipe)",
2933    "\
2934 This call creates a FIFO (named pipe) called C<path> with
2935 mode C<mode>.  It is just a convenient wrapper around
2936 C<guestfs_mknod>.");
2937
2938   ("mknod_b", (RErr, [Int "mode"; Int "devmajor"; Int "devminor"; Pathname "path"]), 135, [Optional "mknod"],
2939    [InitBasicFS, Always, TestOutputStruct (
2940       [["mknod_b"; "0o777"; "99"; "66"; "/node"];
2941        ["stat"; "/node"]], [CompareWithInt ("mode", 0o60755)])],
2942    "make block device node",
2943    "\
2944 This call creates a block device node called C<path> with
2945 mode C<mode> and device major/minor C<devmajor> and C<devminor>.
2946 It is just a convenient wrapper around C<guestfs_mknod>.");
2947
2948   ("mknod_c", (RErr, [Int "mode"; Int "devmajor"; Int "devminor"; Pathname "path"]), 136, [Optional "mknod"],
2949    [InitBasicFS, Always, TestOutputStruct (
2950       [["mknod_c"; "0o777"; "99"; "66"; "/node"];
2951        ["stat"; "/node"]], [CompareWithInt ("mode", 0o20755)])],
2952    "make char device node",
2953    "\
2954 This call creates a char device node called C<path> with
2955 mode C<mode> and device major/minor C<devmajor> and C<devminor>.
2956 It is just a convenient wrapper around C<guestfs_mknod>.");
2957
2958   ("umask", (RInt "oldmask", [Int "mask"]), 137, [],
2959    [], (* XXX umask is one of those stateful things that we should
2960         * reset between each test.
2961         *)
2962    "set file mode creation mask (umask)",
2963    "\
2964 This function sets the mask used for creating new files and
2965 device nodes to C<mask & 0777>.
2966
2967 Typical umask values would be C<022> which creates new files
2968 with permissions like \"-rw-r--r--\" or \"-rwxr-xr-x\", and
2969 C<002> which creates new files with permissions like
2970 \"-rw-rw-r--\" or \"-rwxrwxr-x\".
2971
2972 The default umask is C<022>.  This is important because it
2973 means that directories and device nodes will be created with
2974 C<0644> or C<0755> mode even if you specify C<0777>.
2975
2976 See also L<umask(2)>, C<guestfs_mknod>, C<guestfs_mkdir>.
2977
2978 This call returns the previous umask.");
2979
2980   ("readdir", (RStructList ("entries", "dirent"), [Pathname "dir"]), 138, [],
2981    [],
2982    "read directories entries",
2983    "\
2984 This returns the list of directory entries in directory C<dir>.
2985
2986 All entries in the directory are returned, including C<.> and
2987 C<..>.  The entries are I<not> sorted, but returned in the same
2988 order as the underlying filesystem.
2989
2990 Also this call returns basic file type information about each
2991 file.  The C<ftyp> field will contain one of the following characters:
2992
2993 =over 4
2994
2995 =item 'b'
2996
2997 Block special
2998
2999 =item 'c'
3000
3001 Char special
3002
3003 =item 'd'
3004
3005 Directory
3006
3007 =item 'f'
3008
3009 FIFO (named pipe)
3010
3011 =item 'l'
3012
3013 Symbolic link
3014
3015 =item 'r'
3016
3017 Regular file
3018
3019 =item 's'
3020
3021 Socket
3022
3023 =item 'u'
3024
3025 Unknown file type
3026
3027 =item '?'
3028
3029 The L<readdir(3)> returned a C<d_type> field with an
3030 unexpected value
3031
3032 =back
3033
3034 This function is primarily intended for use by programs.  To
3035 get a simple list of names, use C<guestfs_ls>.  To get a printable
3036 directory for human consumption, use C<guestfs_ll>.");
3037
3038   ("sfdiskM", (RErr, [Device "device"; StringList "lines"]), 139, [DangerWillRobinson],
3039    [],
3040    "create partitions on a block device",
3041    "\
3042 This is a simplified interface to the C<guestfs_sfdisk>
3043 command, where partition sizes are specified in megabytes
3044 only (rounded to the nearest cylinder) and you don't need
3045 to specify the cyls, heads and sectors parameters which
3046 were rarely if ever used anyway.
3047
3048 See also: C<guestfs_sfdisk>, the L<sfdisk(8)> manpage
3049 and C<guestfs_part_disk>");
3050
3051   ("zfile", (RString "description", [String "meth"; Pathname "path"]), 140, [DeprecatedBy "file"],
3052    [],
3053    "determine file type inside a compressed file",
3054    "\
3055 This command runs C<file> after first decompressing C<path>
3056 using C<method>.
3057
3058 C<method> must be one of C<gzip>, C<compress> or C<bzip2>.
3059
3060 Since 1.0.63, use C<guestfs_file> instead which can now
3061 process compressed files.");
3062
3063   ("getxattrs", (RStructList ("xattrs", "xattr"), [Pathname "path"]), 141, [Optional "linuxxattrs"],
3064    [],
3065    "list extended attributes of a file or directory",
3066    "\
3067 This call lists the extended attributes of the file or directory
3068 C<path>.
3069
3070 At the system call level, this is a combination of the
3071 L<listxattr(2)> and L<getxattr(2)> calls.
3072
3073 See also: C<guestfs_lgetxattrs>, L<attr(5)>.");
3074
3075   ("lgetxattrs", (RStructList ("xattrs", "xattr"), [Pathname "path"]), 142, [Optional "linuxxattrs"],
3076    [],
3077    "list extended attributes of a file or directory",
3078    "\
3079 This is the same as C<guestfs_getxattrs>, but if C<path>
3080 is a symbolic link, then it returns the extended attributes
3081 of the link itself.");
3082
3083   ("setxattr", (RErr, [String "xattr";
3084                        String "val"; Int "vallen"; (* will be BufferIn *)
3085                        Pathname "path"]), 143, [Optional "linuxxattrs"],
3086    [],
3087    "set extended attribute of a file or directory",
3088    "\
3089 This call sets the extended attribute named C<xattr>
3090 of the file C<path> to the value C<val> (of length C<vallen>).
3091 The value is arbitrary 8 bit data.
3092
3093 See also: C<guestfs_lsetxattr>, L<attr(5)>.");
3094
3095   ("lsetxattr", (RErr, [String "xattr";
3096                         String "val"; Int "vallen"; (* will be BufferIn *)
3097                         Pathname "path"]), 144, [Optional "linuxxattrs"],
3098    [],
3099    "set extended attribute of a file or directory",
3100    "\
3101 This is the same as C<guestfs_setxattr>, but if C<path>
3102 is a symbolic link, then it sets an extended attribute
3103 of the link itself.");
3104
3105   ("removexattr", (RErr, [String "xattr"; Pathname "path"]), 145, [Optional "linuxxattrs"],
3106    [],
3107    "remove extended attribute of a file or directory",
3108    "\
3109 This call removes the extended attribute named C<xattr>
3110 of the file C<path>.
3111
3112 See also: C<guestfs_lremovexattr>, L<attr(5)>.");
3113
3114   ("lremovexattr", (RErr, [String "xattr"; Pathname "path"]), 146, [Optional "linuxxattrs"],
3115    [],
3116    "remove extended attribute of a file or directory",
3117    "\
3118 This is the same as C<guestfs_removexattr>, but if C<path>
3119 is a symbolic link, then it removes an extended attribute
3120 of the link itself.");
3121
3122   ("mountpoints", (RHashtable "mps", []), 147, [],
3123    [],
3124    "show mountpoints",
3125    "\
3126 This call is similar to C<guestfs_mounts>.  That call returns
3127 a list of devices.  This one returns a hash table (map) of
3128 device name to directory where the device is mounted.");
3129
3130   ("mkmountpoint", (RErr, [String "exemptpath"]), 148, [],
3131    (* This is a special case: while you would expect a parameter
3132     * of type "Pathname", that doesn't work, because it implies
3133     * NEED_ROOT in the generated calling code in stubs.c, and
3134     * this function cannot use NEED_ROOT.
3135     *)
3136    [],
3137    "create a mountpoint",
3138    "\
3139 C<guestfs_mkmountpoint> and C<guestfs_rmmountpoint> are
3140 specialized calls that can be used to create extra mountpoints
3141 before mounting the first filesystem.
3142
3143 These calls are I<only> necessary in some very limited circumstances,
3144 mainly the case where you want to mount a mix of unrelated and/or
3145 read-only filesystems together.
3146
3147 For example, live CDs often contain a \"Russian doll\" nest of
3148 filesystems, an ISO outer layer, with a squashfs image inside, with
3149 an ext2/3 image inside that.  You can unpack this as follows
3150 in guestfish:
3151
3152  add-ro Fedora-11-i686-Live.iso
3153  run
3154  mkmountpoint /cd
3155  mkmountpoint /squash
3156  mkmountpoint /ext3
3157  mount /dev/sda /cd
3158  mount-loop /cd/LiveOS/squashfs.img /squash
3159  mount-loop /squash/LiveOS/ext3fs.img /ext3
3160
3161 The inner filesystem is now unpacked under the /ext3 mountpoint.");
3162
3163   ("rmmountpoint", (RErr, [String "exemptpath"]), 149, [],
3164    [],
3165    "remove a mountpoint",
3166    "\
3167 This calls removes a mountpoint that was previously created
3168 with C<guestfs_mkmountpoint>.  See C<guestfs_mkmountpoint>
3169 for full details.");
3170
3171   ("read_file", (RBufferOut "content", [Pathname "path"]), 150, [ProtocolLimitWarning],
3172    [InitISOFS, Always, TestOutputBuffer (
3173       [["read_file"; "/known-4"]], "abc\ndef\nghi")],
3174    "read a file",
3175    "\
3176 This calls returns the contents of the file C<path> as a
3177 buffer.
3178
3179 Unlike C<guestfs_cat>, this function can correctly
3180 handle files that contain embedded ASCII NUL characters.
3181 However unlike C<guestfs_download>, this function is limited
3182 in the total size of file that can be handled.");
3183
3184   ("grep", (RStringList "lines", [String "regex"; Pathname "path"]), 151, [ProtocolLimitWarning],
3185    [InitISOFS, Always, TestOutputList (
3186       [["grep"; "abc"; "/test-grep.txt"]], ["abc"; "abc123"]);
3187     InitISOFS, Always, TestOutputList (
3188       [["grep"; "nomatch"; "/test-grep.txt"]], [])],
3189    "return lines matching a pattern",
3190    "\
3191 This calls the external C<grep> program and returns the
3192 matching lines.");
3193
3194   ("egrep", (RStringList "lines", [String "regex"; Pathname "path"]), 152, [ProtocolLimitWarning],
3195    [InitISOFS, Always, TestOutputList (
3196       [["egrep"; "abc"; "/test-grep.txt"]], ["abc"; "abc123"])],
3197    "return lines matching a pattern",
3198    "\
3199 This calls the external C<egrep> program and returns the
3200 matching lines.");
3201
3202   ("fgrep", (RStringList "lines", [String "pattern"; Pathname "path"]), 153, [ProtocolLimitWarning],
3203    [InitISOFS, Always, TestOutputList (
3204       [["fgrep"; "abc"; "/test-grep.txt"]], ["abc"; "abc123"])],
3205    "return lines matching a pattern",
3206    "\
3207 This calls the external C<fgrep> program and returns the
3208 matching lines.");
3209
3210   ("grepi", (RStringList "lines", [String "regex"; Pathname "path"]), 154, [ProtocolLimitWarning],
3211    [InitISOFS, Always, TestOutputList (
3212       [["grepi"; "abc"; "/test-grep.txt"]], ["abc"; "abc123"; "ABC"])],
3213    "return lines matching a pattern",
3214    "\
3215 This calls the external C<grep -i> program and returns the
3216 matching lines.");
3217
3218   ("egrepi", (RStringList "lines", [String "regex"; Pathname "path"]), 155, [ProtocolLimitWarning],
3219    [InitISOFS, Always, TestOutputList (
3220       [["egrepi"; "abc"; "/test-grep.txt"]], ["abc"; "abc123"; "ABC"])],
3221    "return lines matching a pattern",
3222    "\
3223 This calls the external C<egrep -i> program and returns the
3224 matching lines.");
3225
3226   ("fgrepi", (RStringList "lines", [String "pattern"; Pathname "path"]), 156, [ProtocolLimitWarning],
3227    [InitISOFS, Always, TestOutputList (
3228       [["fgrepi"; "abc"; "/test-grep.txt"]], ["abc"; "abc123"; "ABC"])],
3229    "return lines matching a pattern",
3230    "\
3231 This calls the external C<fgrep -i> program and returns the
3232 matching lines.");
3233
3234   ("zgrep", (RStringList "lines", [String "regex"; Pathname "path"]), 157, [ProtocolLimitWarning],
3235    [InitISOFS, Always, TestOutputList (
3236       [["zgrep"; "abc"; "/test-grep.txt.gz"]], ["abc"; "abc123"])],
3237    "return lines matching a pattern",
3238    "\
3239 This calls the external C<zgrep> program and returns the
3240 matching lines.");
3241
3242   ("zegrep", (RStringList "lines", [String "regex"; Pathname "path"]), 158, [ProtocolLimitWarning],
3243    [InitISOFS, Always, TestOutputList (
3244       [["zegrep"; "abc"; "/test-grep.txt.gz"]], ["abc"; "abc123"])],
3245    "return lines matching a pattern",
3246    "\
3247 This calls the external C<zegrep> program and returns the
3248 matching lines.");
3249
3250   ("zfgrep", (RStringList "lines", [String "pattern"; Pathname "path"]), 159, [ProtocolLimitWarning],
3251    [InitISOFS, Always, TestOutputList (
3252       [["zfgrep"; "abc"; "/test-grep.txt.gz"]], ["abc"; "abc123"])],
3253    "return lines matching a pattern",
3254    "\
3255 This calls the external C<zfgrep> program and returns the
3256 matching lines.");
3257
3258   ("zgrepi", (RStringList "lines", [String "regex"; Pathname "path"]), 160, [ProtocolLimitWarning],
3259    [InitISOFS, Always, TestOutputList (
3260       [["zgrepi"; "abc"; "/test-grep.txt.gz"]], ["abc"; "abc123"; "ABC"])],
3261    "return lines matching a pattern",
3262    "\
3263 This calls the external C<zgrep -i> program and returns the
3264 matching lines.");
3265
3266   ("zegrepi", (RStringList "lines", [String "regex"; Pathname "path"]), 161, [ProtocolLimitWarning],
3267    [InitISOFS, Always, TestOutputList (
3268       [["zegrepi"; "abc"; "/test-grep.txt.gz"]], ["abc"; "abc123"; "ABC"])],
3269    "return lines matching a pattern",
3270    "\
3271 This calls the external C<zegrep -i> program and returns the
3272 matching lines.");
3273
3274   ("zfgrepi", (RStringList "lines", [String "pattern"; Pathname "path"]), 162, [ProtocolLimitWarning],
3275    [InitISOFS, Always, TestOutputList (
3276       [["zfgrepi"; "abc"; "/test-grep.txt.gz"]], ["abc"; "abc123"; "ABC"])],
3277    "return lines matching a pattern",
3278    "\
3279 This calls the external C<zfgrep -i> program and returns the
3280 matching lines.");
3281
3282   ("realpath", (RString "rpath", [Pathname "path"]), 163, [Optional "realpath"],
3283    [InitISOFS, Always, TestOutput (
3284       [["realpath"; "/../directory"]], "/directory")],
3285    "canonicalized absolute pathname",
3286    "\
3287 Return the canonicalized absolute pathname of C<path>.  The
3288 returned path has no C<.>, C<..> or symbolic link path elements.");
3289
3290   ("ln", (RErr, [String "target"; Pathname "linkname"]), 164, [],
3291    [InitBasicFS, Always, TestOutputStruct (
3292       [["touch"; "/a"];
3293        ["ln"; "/a"; "/b"];
3294        ["stat"; "/b"]], [CompareWithInt ("nlink", 2)])],
3295    "create a hard link",
3296    "\
3297 This command creates a hard link using the C<ln> command.");
3298
3299   ("ln_f", (RErr, [String "target"; Pathname "linkname"]), 165, [],
3300    [InitBasicFS, Always, TestOutputStruct (
3301       [["touch"; "/a"];
3302        ["touch"; "/b"];
3303        ["ln_f"; "/a"; "/b"];
3304        ["stat"; "/b"]], [CompareWithInt ("nlink", 2)])],
3305    "create a hard link",
3306    "\
3307 This command creates a hard link using the C<ln -f> command.
3308 The C<-f> option removes the link (C<linkname>) if it exists already.");
3309
3310   ("ln_s", (RErr, [String "target"; Pathname "linkname"]), 166, [],
3311    [InitBasicFS, Always, TestOutputStruct (
3312       [["touch"; "/a"];
3313        ["ln_s"; "a"; "/b"];
3314        ["lstat"; "/b"]], [CompareWithInt ("mode", 0o120777)])],
3315    "create a symbolic link",
3316    "\
3317 This command creates a symbolic link using the C<ln -s> command.");
3318
3319   ("ln_sf", (RErr, [String "target"; Pathname "linkname"]), 167, [],
3320    [InitBasicFS, Always, TestOutput (
3321       [["mkdir_p"; "/a/b"];
3322        ["touch"; "/a/b/c"];
3323        ["ln_sf"; "../d"; "/a/b/c"];
3324        ["readlink"; "/a/b/c"]], "../d")],
3325    "create a symbolic link",
3326    "\
3327 This command creates a symbolic link using the C<ln -sf> command,
3328 The C<-f> option removes the link (C<linkname>) if it exists already.");
3329
3330   ("readlink", (RString "link", [Pathname "path"]), 168, [],
3331    [] (* XXX tested above *),
3332    "read the target of a symbolic link",
3333    "\
3334 This command reads the target of a symbolic link.");
3335
3336   ("fallocate", (RErr, [Pathname "path"; Int "len"]), 169, [],
3337    [InitBasicFS, Always, TestOutputStruct (
3338       [["fallocate"; "/a"; "1000000"];
3339        ["stat"; "/a"]], [CompareWithInt ("size", 1_000_000)])],
3340    "preallocate a file in the guest filesystem",
3341    "\
3342 This command preallocates a file (containing zero bytes) named
3343 C<path> of size C<len> bytes.  If the file exists already, it
3344 is overwritten.
3345
3346 Do not confuse this with the guestfish-specific
3347 C<alloc> command which allocates a file in the host and
3348 attaches it as a device.");
3349
3350   ("swapon_device", (RErr, [Device "device"]), 170, [],
3351    [InitPartition, Always, TestRun (
3352       [["mkswap"; "/dev/sda1"];
3353        ["swapon_device"; "/dev/sda1"];
3354        ["swapoff_device"; "/dev/sda1"]])],
3355    "enable swap on device",
3356    "\
3357 This command enables the libguestfs appliance to use the
3358 swap device or partition named C<device>.  The increased
3359 memory is made available for all commands, for example
3360 those run using C<guestfs_command> or C<guestfs_sh>.
3361
3362 Note that you should not swap to existing guest swap
3363 partitions unless you know what you are doing.  They may
3364 contain hibernation information, or other information that
3365 the guest doesn't want you to trash.  You also risk leaking
3366 information about the host to the guest this way.  Instead,
3367 attach a new host device to the guest and swap on that.");
3368
3369   ("swapoff_device", (RErr, [Device "device"]), 171, [],
3370    [], (* XXX tested by swapon_device *)
3371    "disable swap on device",
3372    "\
3373 This command disables the libguestfs appliance swap
3374 device or partition named C<device>.
3375 See C<guestfs_swapon_device>.");
3376
3377   ("swapon_file", (RErr, [Pathname "file"]), 172, [],
3378    [InitBasicFS, Always, TestRun (
3379       [["fallocate"; "/swap"; "8388608"];
3380        ["mkswap_file"; "/swap"];
3381        ["swapon_file"; "/swap"];
3382        ["swapoff_file"; "/swap"]])],
3383    "enable swap on file",
3384    "\
3385 This command enables swap to a file.
3386 See C<guestfs_swapon_device> for other notes.");
3387
3388   ("swapoff_file", (RErr, [Pathname "file"]), 173, [],
3389    [], (* XXX tested by swapon_file *)
3390    "disable swap on file",
3391    "\
3392 This command disables the libguestfs appliance swap on file.");
3393
3394   ("swapon_label", (RErr, [String "label"]), 174, [],
3395    [InitEmpty, Always, TestRun (
3396       [["part_disk"; "/dev/sdb"; "mbr"];
3397        ["mkswap_L"; "swapit"; "/dev/sdb1"];
3398        ["swapon_label"; "swapit"];
3399        ["swapoff_label"; "swapit"];
3400        ["zero"; "/dev/sdb"];
3401        ["blockdev_rereadpt"; "/dev/sdb"]])],
3402    "enable swap on labeled swap partition",
3403    "\
3404 This command enables swap to a labeled swap partition.
3405 See C<guestfs_swapon_device> for other notes.");
3406
3407   ("swapoff_label", (RErr, [String "label"]), 175, [],
3408    [], (* XXX tested by swapon_label *)
3409    "disable swap on labeled swap partition",
3410    "\
3411 This command disables the libguestfs appliance swap on
3412 labeled swap partition.");
3413
3414   ("swapon_uuid", (RErr, [String "uuid"]), 176, [Optional "linuxfsuuid"],
3415    (let uuid = uuidgen () in
3416     [InitEmpty, Always, TestRun (
3417        [["mkswap_U"; uuid; "/dev/sdb"];
3418         ["swapon_uuid"; uuid];
3419         ["swapoff_uuid"; uuid]])]),
3420    "enable swap on swap partition by UUID",
3421    "\
3422 This command enables swap to a swap partition with the given UUID.
3423 See C<guestfs_swapon_device> for other notes.");
3424
3425   ("swapoff_uuid", (RErr, [String "uuid"]), 177, [Optional "linuxfsuuid"],
3426    [], (* XXX tested by swapon_uuid *)
3427    "disable swap on swap partition by UUID",
3428    "\
3429 This command disables the libguestfs appliance swap partition
3430 with the given UUID.");
3431
3432   ("mkswap_file", (RErr, [Pathname "path"]), 178, [],
3433    [InitBasicFS, Always, TestRun (
3434       [["fallocate"; "/swap"; "8388608"];
3435        ["mkswap_file"; "/swap"]])],
3436    "create a swap file",
3437    "\
3438 Create a swap file.
3439
3440 This command just writes a swap file signature to an existing
3441 file.  To create the file itself, use something like C<guestfs_fallocate>.");
3442
3443   ("inotify_init", (RErr, [Int "maxevents"]), 179, [Optional "inotify"],
3444    [InitISOFS, Always, TestRun (
3445       [["inotify_init"; "0"]])],
3446    "create an inotify handle",
3447    "\
3448 This command creates a new inotify handle.
3449 The inotify subsystem can be used to notify events which happen to
3450 objects in the guest filesystem.
3451
3452 C<maxevents> is the maximum number of events which will be
3453 queued up between calls to C<guestfs_inotify_read> or
3454 C<guestfs_inotify_files>.
3455 If this is passed as C<0>, then the kernel (or previously set)
3456 default is used.  For Linux 2.6.29 the default was 16384 events.
3457 Beyond this limit, the kernel throws away events, but records
3458 the fact that it threw them away by setting a flag
3459 C<IN_Q_OVERFLOW> in the returned structure list (see
3460 C<guestfs_inotify_read>).
3461
3462 Before any events are generated, you have to add some
3463 watches to the internal watch list.  See:
3464 C<guestfs_inotify_add_watch>,
3465 C<guestfs_inotify_rm_watch> and
3466 C<guestfs_inotify_watch_all>.
3467
3468 Queued up events should be read periodically by calling
3469 C<guestfs_inotify_read>
3470 (or C<guestfs_inotify_files> which is just a helpful
3471 wrapper around C<guestfs_inotify_read>).  If you don't
3472 read the events out often enough then you risk the internal
3473 queue overflowing.
3474
3475 The handle should be closed after use by calling
3476 C<guestfs_inotify_close>.  This also removes any
3477 watches automatically.
3478
3479 See also L<inotify(7)> for an overview of the inotify interface
3480 as exposed by the Linux kernel, which is roughly what we expose
3481 via libguestfs.  Note that there is one global inotify handle
3482 per libguestfs instance.");
3483
3484   ("inotify_add_watch", (RInt64 "wd", [Pathname "path"; Int "mask"]), 180, [Optional "inotify"],
3485    [InitBasicFS, Always, TestOutputList (
3486       [["inotify_init"; "0"];
3487        ["inotify_add_watch"; "/"; "1073741823"];
3488        ["touch"; "/a"];
3489        ["touch"; "/b"];
3490        ["inotify_files"]], ["a"; "b"])],
3491    "add an inotify watch",
3492    "\
3493 Watch C<path> for the events listed in C<mask>.
3494
3495 Note that if C<path> is a directory then events within that
3496 directory are watched, but this does I<not> happen recursively
3497 (in subdirectories).
3498
3499 Note for non-C or non-Linux callers: the inotify events are
3500 defined by the Linux kernel ABI and are listed in
3501 C</usr/include/sys/inotify.h>.");
3502
3503   ("inotify_rm_watch", (RErr, [Int(*XXX64*) "wd"]), 181, [Optional "inotify"],
3504    [],
3505    "remove an inotify watch",
3506    "\
3507 Remove a previously defined inotify watch.
3508 See C<guestfs_inotify_add_watch>.");
3509
3510   ("inotify_read", (RStructList ("events", "inotify_event"), []), 182, [Optional "inotify"],
3511    [],
3512    "return list of inotify events",
3513    "\
3514 Return the complete queue of events that have happened
3515 since the previous read call.
3516
3517 If no events have happened, this returns an empty list.
3518
3519 I<Note>: In order to make sure that all events have been
3520 read, you must call this function repeatedly until it
3521 returns an empty list.  The reason is that the call will
3522 read events up to the maximum appliance-to-host message
3523 size and leave remaining events in the queue.");
3524
3525   ("inotify_files", (RStringList "paths", []), 183, [Optional "inotify"],
3526    [],
3527    "return list of watched files that had events",
3528    "\
3529 This function is a helpful wrapper around C<guestfs_inotify_read>
3530 which just returns a list of pathnames of objects that were
3531 touched.  The returned pathnames are sorted and deduplicated.");
3532
3533   ("inotify_close", (RErr, []), 184, [Optional "inotify"],
3534    [],
3535    "close the inotify handle",
3536    "\
3537 This closes the inotify handle which was previously
3538 opened by inotify_init.  It removes all watches, throws
3539 away any pending events, and deallocates all resources.");
3540
3541   ("setcon", (RErr, [String "context"]), 185, [Optional "selinux"],
3542    [],
3543    "set SELinux security context",
3544    "\
3545 This sets the SELinux security context of the daemon
3546 to the string C<context>.
3547
3548 See the documentation about SELINUX in L<guestfs(3)>.");
3549
3550   ("getcon", (RString "context", []), 186, [Optional "selinux"],
3551    [],
3552    "get SELinux security context",
3553    "\
3554 This gets the SELinux security context of the daemon.
3555
3556 See the documentation about SELINUX in L<guestfs(3)>,
3557 and C<guestfs_setcon>");
3558
3559   ("mkfs_b", (RErr, [String "fstype"; Int "blocksize"; Device "device"]), 187, [],
3560    [InitEmpty, Always, TestOutput (
3561       [["part_disk"; "/dev/sda"; "mbr"];
3562        ["mkfs_b"; "ext2"; "4096"; "/dev/sda1"];
3563        ["mount_options"; ""; "/dev/sda1"; "/"];
3564        ["write_file"; "/new"; "new file contents"; "0"];
3565        ["cat"; "/new"]], "new file contents")],
3566    "make a filesystem with block size",
3567    "\
3568 This call is similar to C<guestfs_mkfs>, but it allows you to
3569 control the block size of the resulting filesystem.  Supported
3570 block sizes depend on the filesystem type, but typically they
3571 are C<1024>, C<2048> or C<4096> only.");
3572
3573   ("mke2journal", (RErr, [Int "blocksize"; Device "device"]), 188, [],
3574    [InitEmpty, Always, TestOutput (
3575       [["sfdiskM"; "/dev/sda"; ",100 ,"];
3576        ["mke2journal"; "4096"; "/dev/sda1"];
3577        ["mke2fs_J"; "ext2"; "4096"; "/dev/sda2"; "/dev/sda1"];
3578        ["mount_options"; ""; "/dev/sda2"; "/"];
3579        ["write_file"; "/new"; "new file contents"; "0"];
3580        ["cat"; "/new"]], "new file contents")],
3581    "make ext2/3/4 external journal",
3582    "\
3583 This creates an ext2 external journal on C<device>.  It is equivalent
3584 to the command:
3585
3586  mke2fs -O journal_dev -b blocksize device");
3587
3588   ("mke2journal_L", (RErr, [Int "blocksize"; String "label"; Device "device"]), 189, [],
3589    [InitEmpty, Always, TestOutput (
3590       [["sfdiskM"; "/dev/sda"; ",100 ,"];
3591        ["mke2journal_L"; "4096"; "JOURNAL"; "/dev/sda1"];
3592        ["mke2fs_JL"; "ext2"; "4096"; "/dev/sda2"; "JOURNAL"];
3593        ["mount_options"; ""; "/dev/sda2"; "/"];
3594        ["write_file"; "/new"; "new file contents"; "0"];
3595        ["cat"; "/new"]], "new file contents")],
3596    "make ext2/3/4 external journal with label",
3597    "\
3598 This creates an ext2 external journal on C<device> with label C<label>.");
3599
3600   ("mke2journal_U", (RErr, [Int "blocksize"; String "uuid"; Device "device"]), 190, [Optional "linuxfsuuid"],
3601    (let uuid = uuidgen () in
3602     [InitEmpty, Always, TestOutput (
3603        [["sfdiskM"; "/dev/sda"; ",100 ,"];
3604         ["mke2journal_U"; "4096"; uuid; "/dev/sda1"];
3605         ["mke2fs_JU"; "ext2"; "4096"; "/dev/sda2"; uuid];
3606         ["mount_options"; ""; "/dev/sda2"; "/"];
3607         ["write_file"; "/new"; "new file contents"; "0"];
3608         ["cat"; "/new"]], "new file contents")]),
3609    "make ext2/3/4 external journal with UUID",
3610    "\
3611 This creates an ext2 external journal on C<device> with UUID C<uuid>.");
3612
3613   ("mke2fs_J", (RErr, [String "fstype"; Int "blocksize"; Device "device"; Device "journal"]), 191, [],
3614    [],
3615    "make ext2/3/4 filesystem with external journal",
3616    "\
3617 This creates an ext2/3/4 filesystem on C<device> with
3618 an external journal on C<journal>.  It is equivalent
3619 to the command:
3620
3621  mke2fs -t fstype -b blocksize -J device=<journal> <device>
3622
3623 See also C<guestfs_mke2journal>.");
3624
3625   ("mke2fs_JL", (RErr, [String "fstype"; Int "blocksize"; Device "device"; String "label"]), 192, [],
3626    [],
3627    "make ext2/3/4 filesystem with external journal",
3628    "\
3629 This creates an ext2/3/4 filesystem on C<device> with
3630 an external journal on the journal labeled C<label>.
3631
3632 See also C<guestfs_mke2journal_L>.");
3633
3634   ("mke2fs_JU", (RErr, [String "fstype"; Int "blocksize"; Device "device"; String "uuid"]), 193, [Optional "linuxfsuuid"],
3635    [],
3636    "make ext2/3/4 filesystem with external journal",
3637    "\
3638 This creates an ext2/3/4 filesystem on C<device> with
3639 an external journal on the journal with UUID C<uuid>.
3640
3641 See also C<guestfs_mke2journal_U>.");
3642
3643   ("modprobe", (RErr, [String "modulename"]), 194, [Optional "linuxmodules"],
3644    [InitNone, Always, TestRun [["modprobe"; "fat"]]],
3645    "load a kernel module",
3646    "\
3647 This loads a kernel module in the appliance.
3648
3649 The kernel module must have been whitelisted when libguestfs
3650 was built (see C<appliance/kmod.whitelist.in> in the source).");
3651
3652   ("echo_daemon", (RString "output", [StringList "words"]), 195, [],
3653    [InitNone, Always, TestOutput (
3654       [["echo_daemon"; "This is a test"]], "This is a test"
3655     )],
3656    "echo arguments back to the client",
3657    "\
3658 This command concatenate the list of C<words> passed with single spaces between
3659 them and returns the resulting string.
3660
3661 You can use this command to test the connection through to the daemon.
3662
3663 See also C<guestfs_ping_daemon>.");
3664
3665   ("find0", (RErr, [Pathname "directory"; FileOut "files"]), 196, [],
3666    [], (* There is a regression test for this. *)
3667    "find all files and directories, returning NUL-separated list",
3668    "\
3669 This command lists out all files and directories, recursively,
3670 starting at C<directory>, placing the resulting list in the
3671 external file called C<files>.
3672
3673 This command works the same way as C<guestfs_find> with the
3674 following exceptions:
3675
3676 =over 4
3677
3678 =item *
3679
3680 The resulting list is written to an external file.
3681
3682 =item *
3683
3684 Items (filenames) in the result are separated
3685 by C<\\0> characters.  See L<find(1)> option I<-print0>.
3686
3687 =item *
3688
3689 This command is not limited in the number of names that it
3690 can return.
3691
3692 =item *
3693
3694 The result list is not sorted.
3695
3696 =back");
3697
3698   ("case_sensitive_path", (RString "rpath", [Pathname "path"]), 197, [],
3699    [InitISOFS, Always, TestOutput (
3700       [["case_sensitive_path"; "/DIRECTORY"]], "/directory");
3701     InitISOFS, Always, TestOutput (
3702       [["case_sensitive_path"; "/DIRECTORY/"]], "/directory");
3703     InitISOFS, Always, TestOutput (
3704       [["case_sensitive_path"; "/Known-1"]], "/known-1");
3705     InitISOFS, Always, TestLastFail (
3706       [["case_sensitive_path"; "/Known-1/"]]);
3707     InitBasicFS, Always, TestOutput (
3708       [["mkdir"; "/a"];
3709        ["mkdir"; "/a/bbb"];
3710        ["touch"; "/a/bbb/c"];
3711        ["case_sensitive_path"; "/A/bbB/C"]], "/a/bbb/c");
3712     InitBasicFS, Always, TestOutput (
3713       [["mkdir"; "/a"];
3714        ["mkdir"; "/a/bbb"];
3715        ["touch"; "/a/bbb/c"];
3716        ["case_sensitive_path"; "/A////bbB/C"]], "/a/bbb/c");
3717     InitBasicFS, Always, TestLastFail (
3718       [["mkdir"; "/a"];
3719        ["mkdir"; "/a/bbb"];
3720        ["touch"; "/a/bbb/c"];
3721        ["case_sensitive_path"; "/A/bbb/../bbb/C"]])],
3722    "return true path on case-insensitive filesystem",
3723    "\
3724 This can be used to resolve case insensitive paths on
3725 a filesystem which is case sensitive.  The use case is
3726 to resolve paths which you have read from Windows configuration
3727 files or the Windows Registry, to the true path.
3728
3729 The command handles a peculiarity of the Linux ntfs-3g
3730 filesystem driver (and probably others), which is that although
3731 the underlying filesystem is case-insensitive, the driver
3732 exports the filesystem to Linux as case-sensitive.
3733
3734 One consequence of this is that special directories such
3735 as C<c:\\windows> may appear as C</WINDOWS> or C</windows>
3736 (or other things) depending on the precise details of how
3737 they were created.  In Windows itself this would not be
3738 a problem.
3739
3740 Bug or feature?  You decide:
3741 L<http://www.tuxera.com/community/ntfs-3g-faq/#posixfilenames1>
3742
3743 This function resolves the true case of each element in the
3744 path and returns the case-sensitive path.
3745
3746 Thus C<guestfs_case_sensitive_path> (\"/Windows/System32\")
3747 might return C<\"/WINDOWS/system32\"> (the exact return value
3748 would depend on details of how the directories were originally
3749 created under Windows).
3750
3751 I<Note>:
3752 This function does not handle drive names, backslashes etc.
3753
3754 See also C<guestfs_realpath>.");
3755
3756   ("vfs_type", (RString "fstype", [Device "device"]), 198, [],
3757    [InitBasicFS, Always, TestOutput (
3758       [["vfs_type"; "/dev/sda1"]], "ext2")],
3759    "get the Linux VFS type corresponding to a mounted device",
3760    "\
3761 This command gets the block device type corresponding to
3762 a mounted device called C<device>.
3763
3764 Usually the result is the name of the Linux VFS module that
3765 is used to mount this device (probably determined automatically
3766 if you used the C<guestfs_mount> call).");
3767
3768   ("truncate", (RErr, [Pathname "path"]), 199, [],
3769    [InitBasicFS, Always, TestOutputStruct (
3770       [["write_file"; "/test"; "some stuff so size is not zero"; "0"];
3771        ["truncate"; "/test"];
3772        ["stat"; "/test"]], [CompareWithInt ("size", 0)])],
3773    "truncate a file to zero size",
3774    "\
3775 This command truncates C<path> to a zero-length file.  The
3776 file must exist already.");
3777
3778   ("truncate_size", (RErr, [Pathname "path"; Int64 "size"]), 200, [],
3779    [InitBasicFS, Always, TestOutputStruct (
3780       [["touch"; "/test"];
3781        ["truncate_size"; "/test"; "1000"];
3782        ["stat"; "/test"]], [CompareWithInt ("size", 1000)])],
3783    "truncate a file to a particular size",
3784    "\
3785 This command truncates C<path> to size C<size> bytes.  The file
3786 must exist already.  If the file is smaller than C<size> then
3787 the file is extended to the required size with null bytes.");
3788
3789   ("utimens", (RErr, [Pathname "path"; Int64 "atsecs"; Int64 "atnsecs"; Int64 "mtsecs"; Int64 "mtnsecs"]), 201, [],
3790    [InitBasicFS, Always, TestOutputStruct (
3791       [["touch"; "/test"];
3792        ["utimens"; "/test"; "12345"; "67890"; "9876"; "5432"];
3793        ["stat"; "/test"]], [CompareWithInt ("mtime", 9876)])],
3794    "set timestamp of a file with nanosecond precision",
3795    "\
3796 This command sets the timestamps of a file with nanosecond
3797 precision.
3798
3799 C<atsecs, atnsecs> are the last access time (atime) in secs and
3800 nanoseconds from the epoch.
3801
3802 C<mtsecs, mtnsecs> are the last modification time (mtime) in
3803 secs and nanoseconds from the epoch.
3804
3805 If the C<*nsecs> field contains the special value C<-1> then
3806 the corresponding timestamp is set to the current time.  (The
3807 C<*secs> field is ignored in this case).
3808
3809 If the C<*nsecs> field contains the special value C<-2> then
3810 the corresponding timestamp is left unchanged.  (The
3811 C<*secs> field is ignored in this case).");
3812
3813   ("mkdir_mode", (RErr, [Pathname "path"; Int "mode"]), 202, [],
3814    [InitBasicFS, Always, TestOutputStruct (
3815       [["mkdir_mode"; "/test"; "0o111"];
3816        ["stat"; "/test"]], [CompareWithInt ("mode", 0o40111)])],
3817    "create a directory with a particular mode",
3818    "\
3819 This command creates a directory, setting the initial permissions
3820 of the directory to C<mode>.  See also C<guestfs_mkdir>.");
3821
3822   ("lchown", (RErr, [Int "owner"; Int "group"; Pathname "path"]), 203, [],
3823    [], (* XXX *)
3824    "change file owner and group",
3825    "\
3826 Change the file owner to C<owner> and group to C<group>.
3827 This is like C<guestfs_chown> but if C<path> is a symlink then
3828 the link itself is changed, not the target.
3829
3830 Only numeric uid and gid are supported.  If you want to use
3831 names, you will need to locate and parse the password file
3832 yourself (Augeas support makes this relatively easy).");
3833
3834   ("lstatlist", (RStructList ("statbufs", "stat"), [Pathname "path"; StringList "names"]), 204, [],
3835    [], (* XXX *)
3836    "lstat on multiple files",
3837    "\
3838 This call allows you to perform the C<guestfs_lstat> operation
3839 on multiple files, where all files are in the directory C<path>.
3840 C<names> is the list of files from this directory.
3841
3842 On return you get a list of stat structs, with a one-to-one
3843 correspondence to the C<names> list.  If any name did not exist
3844 or could not be lstat'd, then the C<ino> field of that structure
3845 is set to C<-1>.
3846
3847 This call is intended for programs that want to efficiently
3848 list a directory contents without making many round-trips.
3849 See also C<guestfs_lxattrlist> for a similarly efficient call
3850 for getting extended attributes.  Very long directory listings
3851 might cause the protocol message size to be exceeded, causing
3852 this call to fail.  The caller must split up such requests
3853 into smaller groups of names.");
3854
3855   ("lxattrlist", (RStructList ("xattrs", "xattr"), [Pathname "path"; StringList "names"]), 205, [Optional "linuxxattrs"],
3856    [], (* XXX *)
3857    "lgetxattr on multiple files",
3858    "\
3859 This call allows you to get the extended attributes
3860 of multiple files, where all files are in the directory C<path>.
3861 C<names> is the list of files from this directory.
3862
3863 On return you get a flat list of xattr structs which must be
3864 interpreted sequentially.  The first xattr struct always has a zero-length
3865 C<attrname>.  C<attrval> in this struct is zero-length
3866 to indicate there was an error doing C<lgetxattr> for this
3867 file, I<or> is a C string which is a decimal number
3868 (the number of following attributes for this file, which could
3869 be C<\"0\">).  Then after the first xattr struct are the
3870 zero or more attributes for the first named file.
3871 This repeats for the second and subsequent files.
3872
3873 This call is intended for programs that want to efficiently
3874 list a directory contents without making many round-trips.
3875 See also C<guestfs_lstatlist> for a similarly efficient call
3876 for getting standard stats.  Very long directory listings
3877 might cause the protocol message size to be exceeded, causing
3878 this call to fail.  The caller must split up such requests
3879 into smaller groups of names.");
3880
3881   ("readlinklist", (RStringList "links", [Pathname "path"; StringList "names"]), 206, [],
3882    [], (* XXX *)
3883    "readlink on multiple files",
3884    "\
3885 This call allows you to do a C<readlink> operation
3886 on multiple files, where all files are in the directory C<path>.
3887 C<names> is the list of files from this directory.
3888
3889 On return you get a list of strings, with a one-to-one
3890 correspondence to the C<names> list.  Each string is the
3891 value of the symbol link.
3892
3893 If the C<readlink(2)> operation fails on any name, then
3894 the corresponding result string is the empty string C<\"\">.
3895 However the whole operation is completed even if there
3896 were C<readlink(2)> errors, and so you can call this
3897 function with names where you don't know if they are
3898 symbolic links already (albeit slightly less efficient).
3899
3900 This call is intended for programs that want to efficiently
3901 list a directory contents without making many round-trips.
3902 Very long directory listings might cause the protocol
3903 message size to be exceeded, causing
3904 this call to fail.  The caller must split up such requests
3905 into smaller groups of names.");
3906
3907   ("pread", (RBufferOut "content", [Pathname "path"; Int "count"; Int64 "offset"]), 207, [ProtocolLimitWarning],
3908    [InitISOFS, Always, TestOutputBuffer (
3909       [["pread"; "/known-4"; "1"; "3"]], "\n");
3910     InitISOFS, Always, TestOutputBuffer (
3911       [["pread"; "/empty"; "0"; "100"]], "")],
3912    "read part of a file",
3913    "\
3914 This command lets you read part of a file.  It reads C<count>
3915 bytes of the file, starting at C<offset>, from file C<path>.
3916
3917 This may read fewer bytes than requested.  For further details
3918 see the L<pread(2)> system call.");
3919
3920   ("part_init", (RErr, [Device "device"; String "parttype"]), 208, [],
3921    [InitEmpty, Always, TestRun (
3922       [["part_init"; "/dev/sda"; "gpt"]])],
3923    "create an empty partition table",
3924    "\
3925 This creates an empty partition table on C<device> of one of the
3926 partition types listed below.  Usually C<parttype> should be
3927 either C<msdos> or C<gpt> (for large disks).
3928
3929 Initially there are no partitions.  Following this, you should
3930 call C<guestfs_part_add> for each partition required.
3931
3932 Possible values for C<parttype> are:
3933
3934 =over 4
3935
3936 =item B<efi> | B<gpt>
3937
3938 Intel EFI / GPT partition table.
3939
3940 This is recommended for >= 2 TB partitions that will be accessed
3941 from Linux and Intel-based Mac OS X.  It also has limited backwards
3942 compatibility with the C<mbr> format.
3943
3944 =item B<mbr> | B<msdos>
3945
3946 The standard PC \"Master Boot Record\" (MBR) format used
3947 by MS-DOS and Windows.  This partition type will B<only> work
3948 for device sizes up to 2 TB.  For large disks we recommend
3949 using C<gpt>.
3950
3951 =back
3952
3953 Other partition table types that may work but are not
3954 supported include:
3955
3956 =over 4
3957
3958 =item B<aix>
3959
3960 AIX disk labels.
3961
3962 =item B<amiga> | B<rdb>
3963
3964 Amiga \"Rigid Disk Block\" format.
3965
3966 =item B<bsd>
3967
3968 BSD disk labels.
3969
3970 =item B<dasd>
3971
3972 DASD, used on IBM mainframes.
3973
3974 =item B<dvh>
3975
3976 MIPS/SGI volumes.
3977
3978 =item B<mac>
3979
3980 Old Mac partition format.  Modern Macs use C<gpt>.
3981
3982 =item B<pc98>
3983
3984 NEC PC-98 format, common in Japan apparently.
3985
3986 =item B<sun>
3987
3988 Sun disk labels.
3989
3990 =back");
3991
3992   ("part_add", (RErr, [Device "device"; String "prlogex"; Int64 "startsect"; Int64 "endsect"]), 209, [],
3993    [InitEmpty, Always, TestRun (
3994       [["part_init"; "/dev/sda"; "mbr"];
3995        ["part_add"; "/dev/sda"; "primary"; "1"; "-1"]]);
3996     InitEmpty, Always, TestRun (
3997       [["part_init"; "/dev/sda"; "gpt"];
3998        ["part_add"; "/dev/sda"; "primary"; "34"; "127"];
3999        ["part_add"; "/dev/sda"; "primary"; "128"; "-34"]]);
4000     InitEmpty, Always, TestRun (
4001       [["part_init"; "/dev/sda"; "mbr"];
4002        ["part_add"; "/dev/sda"; "primary"; "32"; "127"];
4003        ["part_add"; "/dev/sda"; "primary"; "128"; "255"];
4004        ["part_add"; "/dev/sda"; "primary"; "256"; "511"];
4005        ["part_add"; "/dev/sda"; "primary"; "512"; "-1"]])],
4006    "add a partition to the device",
4007    "\
4008 This command adds a partition to C<device>.  If there is no partition
4009 table on the device, call C<guestfs_part_init> first.
4010
4011 The C<prlogex> parameter is the type of partition.  Normally you
4012 should pass C<p> or C<primary> here, but MBR partition tables also
4013 support C<l> (or C<logical>) and C<e> (or C<extended>) partition
4014 types.
4015
4016 C<startsect> and C<endsect> are the start and end of the partition
4017 in I<sectors>.  C<endsect> may be negative, which means it counts
4018 backwards from the end of the disk (C<-1> is the last sector).
4019
4020 Creating a partition which covers the whole disk is not so easy.
4021 Use C<guestfs_part_disk> to do that.");
4022
4023   ("part_disk", (RErr, [Device "device"; String "parttype"]), 210, [DangerWillRobinson],
4024    [InitEmpty, Always, TestRun (
4025       [["part_disk"; "/dev/sda"; "mbr"]]);
4026     InitEmpty, Always, TestRun (
4027       [["part_disk"; "/dev/sda"; "gpt"]])],
4028    "partition whole disk with a single primary partition",
4029    "\
4030 This command is simply a combination of C<guestfs_part_init>
4031 followed by C<guestfs_part_add> to create a single primary partition
4032 covering the whole disk.
4033
4034 C<parttype> is the partition table type, usually C<mbr> or C<gpt>,
4035 but other possible values are described in C<guestfs_part_init>.");
4036
4037   ("part_set_bootable", (RErr, [Device "device"; Int "partnum"; Bool "bootable"]), 211, [],
4038    [InitEmpty, Always, TestRun (
4039       [["part_disk"; "/dev/sda"; "mbr"];
4040        ["part_set_bootable"; "/dev/sda"; "1"; "true"]])],
4041    "make a partition bootable",
4042    "\
4043 This sets the bootable flag on partition numbered C<partnum> on
4044 device C<device>.  Note that partitions are numbered from 1.
4045
4046 The bootable flag is used by some PC BIOSes to determine which
4047 partition to boot from.  It is by no means universally recognized,
4048 and in any case if your operating system installed a boot
4049 sector on the device itself, then that takes precedence.");
4050
4051   ("part_set_name", (RErr, [Device "device"; Int "partnum"; String "name"]), 212, [],
4052    [InitEmpty, Always, TestRun (
4053       [["part_disk"; "/dev/sda"; "gpt"];
4054        ["part_set_name"; "/dev/sda"; "1"; "thepartname"]])],
4055    "set partition name",
4056    "\
4057 This sets the partition name on partition numbered C<partnum> on
4058 device C<device>.  Note that partitions are numbered from 1.
4059
4060 The partition name can only be set on certain types of partition
4061 table.  This works on C<gpt> but not on C<mbr> partitions.");
4062
4063   ("part_list", (RStructList ("partitions", "partition"), [Device "device"]), 213, [],
4064    [], (* XXX Add a regression test for this. *)
4065    "list partitions on a device",
4066    "\
4067 This command parses the partition table on C<device> and
4068 returns the list of partitions found.
4069
4070 The fields in the returned structure are:
4071
4072 =over 4
4073
4074 =item B<part_num>
4075
4076 Partition number, counting from 1.
4077
4078 =item B<part_start>
4079
4080 Start of the partition I<in bytes>.  To get sectors you have to
4081 divide by the device's sector size, see C<guestfs_blockdev_getss>.
4082
4083 =item B<part_end>
4084
4085 End of the partition in bytes.
4086
4087 =item B<part_size>
4088
4089 Size of the partition in bytes.
4090
4091 =back");
4092
4093   ("part_get_parttype", (RString "parttype", [Device "device"]), 214, [],
4094    [InitEmpty, Always, TestOutput (
4095       [["part_disk"; "/dev/sda"; "gpt"];
4096        ["part_get_parttype"; "/dev/sda"]], "gpt")],
4097    "get the partition table type",
4098    "\
4099 This command examines the partition table on C<device> and
4100 returns the partition table type (format) being used.
4101
4102 Common return values include: C<msdos> (a DOS/Windows style MBR
4103 partition table), C<gpt> (a GPT/EFI-style partition table).  Other
4104 values are possible, although unusual.  See C<guestfs_part_init>
4105 for a full list.");
4106
4107   ("fill", (RErr, [Int "c"; Int "len"; Pathname "path"]), 215, [],
4108    [InitBasicFS, Always, TestOutputBuffer (
4109       [["fill"; "0x63"; "10"; "/test"];
4110        ["read_file"; "/test"]], "cccccccccc")],
4111    "fill a file with octets",
4112    "\
4113 This command creates a new file called C<path>.  The initial
4114 content of the file is C<len> octets of C<c>, where C<c>
4115 must be a number in the range C<[0..255]>.
4116
4117 To fill a file with zero bytes (sparsely), it is
4118 much more efficient to use C<guestfs_truncate_size>.");
4119
4120   ("available", (RErr, [StringList "groups"]), 216, [],
4121    [InitNone, Always, TestRun [["available"; ""]]],
4122    "test availability of some parts of the API",
4123    "\
4124 This command is used to check the availability of some
4125 groups of functionality in the appliance, which not all builds of
4126 the libguestfs appliance will be able to provide.
4127
4128 The libguestfs groups, and the functions that those
4129 groups correspond to, are listed in L<guestfs(3)/AVAILABILITY>.
4130
4131 The argument C<groups> is a list of group names, eg:
4132 C<[\"inotify\", \"augeas\"]> would check for the availability of
4133 the Linux inotify functions and Augeas (configuration file
4134 editing) functions.
4135
4136 The command returns no error if I<all> requested groups are available.
4137
4138 It fails with an error if one or more of the requested
4139 groups is unavailable in the appliance.
4140
4141 If an unknown group name is included in the
4142 list of groups then an error is always returned.
4143
4144 I<Notes:>
4145
4146 =over 4
4147
4148 =item *
4149
4150 You must call C<guestfs_launch> before calling this function.
4151
4152 The reason is because we don't know what groups are
4153 supported by the appliance/daemon until it is running and can
4154 be queried.
4155
4156 =item *
4157
4158 If a group of functions is available, this does not necessarily
4159 mean that they will work.  You still have to check for errors
4160 when calling individual API functions even if they are
4161 available.
4162
4163 =item *
4164
4165 It is usually the job of distro packagers to build
4166 complete functionality into the libguestfs appliance.
4167 Upstream libguestfs, if built from source with all
4168 requirements satisfied, will support everything.
4169
4170 =item *
4171
4172 This call was added in version C<1.0.80>.  In previous
4173 versions of libguestfs all you could do would be to speculatively
4174 execute a command to find out if the daemon implemented it.
4175 See also C<guestfs_version>.
4176
4177 =back");
4178
4179   ("dd", (RErr, [Dev_or_Path "src"; Dev_or_Path "dest"]), 217, [],
4180    [InitBasicFS, Always, TestOutputBuffer (
4181       [["write_file"; "/src"; "hello, world"; "0"];
4182        ["dd"; "/src"; "/dest"];
4183        ["read_file"; "/dest"]], "hello, world")],
4184    "copy from source to destination using dd",
4185    "\
4186 This command copies from one source device or file C<src>
4187 to another destination device or file C<dest>.  Normally you
4188 would use this to copy to or from a device or partition, for
4189 example to duplicate a filesystem.
4190
4191 If the destination is a device, it must be as large or larger
4192 than the source file or device, otherwise the copy will fail.
4193 This command cannot do partial copies.");
4194
4195   ("filesize", (RInt64 "size", [Pathname "file"]), 218, [],
4196    [InitBasicFS, Always, TestOutputInt (
4197       [["write_file"; "/file"; "hello, world"; "0"];
4198        ["filesize"; "/file"]], 12)],
4199    "return the size of the file in bytes",
4200    "\
4201 This command returns the size of C<file> in bytes.
4202
4203 To get other stats about a file, use C<guestfs_stat>, C<guestfs_lstat>,
4204 C<guestfs_is_dir>, C<guestfs_is_file> etc.
4205 To get the size of block devices, use C<guestfs_blockdev_getsize64>.");
4206
4207   ("lvrename", (RErr, [String "logvol"; String "newlogvol"]), 219, [],
4208    [InitBasicFSonLVM, Always, TestOutputList (
4209       [["lvrename"; "/dev/VG/LV"; "/dev/VG/LV2"];
4210        ["lvs"]], ["/dev/VG/LV2"])],
4211    "rename an LVM logical volume",
4212    "\
4213 Rename a logical volume C<logvol> with the new name C<newlogvol>.");
4214
4215   ("vgrename", (RErr, [String "volgroup"; String "newvolgroup"]), 220, [],
4216    [InitBasicFSonLVM, Always, TestOutputList (
4217       [["umount"; "/"];
4218        ["vg_activate"; "false"; "VG"];
4219        ["vgrename"; "VG"; "VG2"];
4220        ["vg_activate"; "true"; "VG2"];
4221        ["mount_options"; ""; "/dev/VG2/LV"; "/"];
4222        ["vgs"]], ["VG2"])],
4223    "rename an LVM volume group",
4224    "\
4225 Rename a volume group C<volgroup> with the new name C<newvolgroup>.");
4226
4227   ("initrd_cat", (RBufferOut "content", [Pathname "initrdpath"; String "filename"]), 221, [],
4228    [InitISOFS, Always, TestOutputBuffer (
4229       [["initrd_cat"; "/initrd"; "known-4"]], "abc\ndef\nghi")],
4230    "list the contents of a single file in an initrd",
4231    "\
4232 This command unpacks the file C<filename> from the initrd file
4233 called C<initrdpath>.  The filename must be given I<without> the
4234 initial C</> character.
4235
4236 For example, in guestfish you could use the following command
4237 to examine the boot script (usually called C</init>)
4238 contained in a Linux initrd or initramfs image:
4239
4240  initrd-cat /boot/initrd-<version>.img init
4241
4242 See also C<guestfs_initrd_list>.");
4243
4244 ]
4245
4246 let all_functions = non_daemon_functions @ daemon_functions
4247
4248 (* In some places we want the functions to be displayed sorted
4249  * alphabetically, so this is useful:
4250  *)
4251 let all_functions_sorted =
4252   List.sort (fun (n1,_,_,_,_,_,_) (n2,_,_,_,_,_,_) ->
4253                compare n1 n2) all_functions
4254
4255 (* Field types for structures. *)
4256 type field =
4257   | FChar                       (* C 'char' (really, a 7 bit byte). *)
4258   | FString                     (* nul-terminated ASCII string, NOT NULL. *)
4259   | FBuffer                     (* opaque buffer of bytes, (char *, int) pair *)
4260   | FUInt32
4261   | FInt32
4262   | FUInt64
4263   | FInt64
4264   | FBytes                      (* Any int measure that counts bytes. *)
4265   | FUUID                       (* 32 bytes long, NOT nul-terminated. *)
4266   | FOptPercent                 (* [0..100], or -1 meaning "not present". *)
4267
4268 (* Because we generate extra parsing code for LVM command line tools,
4269  * we have to pull out the LVM columns separately here.
4270  *)
4271 let lvm_pv_cols = [
4272   "pv_name", FString;
4273   "pv_uuid", FUUID;
4274   "pv_fmt", FString;
4275   "pv_size", FBytes;
4276   "dev_size", FBytes;
4277   "pv_free", FBytes;
4278   "pv_used", FBytes;
4279   "pv_attr", FString (* XXX *);
4280   "pv_pe_count", FInt64;
4281   "pv_pe_alloc_count", FInt64;
4282   "pv_tags", FString;
4283   "pe_start", FBytes;
4284   "pv_mda_count", FInt64;
4285   "pv_mda_free", FBytes;
4286   (* Not in Fedora 10:
4287      "pv_mda_size", FBytes;
4288   *)
4289 ]
4290 let lvm_vg_cols = [
4291   "vg_name", FString;
4292   "vg_uuid", FUUID;
4293   "vg_fmt", FString;
4294   "vg_attr", FString (* XXX *);
4295   "vg_size", FBytes;
4296   "vg_free", FBytes;
4297   "vg_sysid", FString;
4298   "vg_extent_size", FBytes;
4299   "vg_extent_count", FInt64;
4300   "vg_free_count", FInt64;
4301   "max_lv", FInt64;
4302   "max_pv", FInt64;
4303   "pv_count", FInt64;
4304   "lv_count", FInt64;
4305   "snap_count", FInt64;
4306   "vg_seqno", FInt64;
4307   "vg_tags", FString;
4308   "vg_mda_count", FInt64;
4309   "vg_mda_free", FBytes;
4310   (* Not in Fedora 10:
4311      "vg_mda_size", FBytes;
4312   *)
4313 ]
4314 let lvm_lv_cols = [
4315   "lv_name", FString;
4316   "lv_uuid", FUUID;
4317   "lv_attr", FString (* XXX *);
4318   "lv_major", FInt64;
4319   "lv_minor", FInt64;
4320   "lv_kernel_major", FInt64;
4321   "lv_kernel_minor", FInt64;
4322   "lv_size", FBytes;
4323   "seg_count", FInt64;
4324   "origin", FString;
4325   "snap_percent", FOptPercent;
4326   "copy_percent", FOptPercent;
4327   "move_pv", FString;
4328   "lv_tags", FString;
4329   "mirror_log", FString;
4330   "modules", FString;
4331 ]
4332
4333 (* Names and fields in all structures (in RStruct and RStructList)
4334  * that we support.
4335  *)
4336 let structs = [
4337   (* The old RIntBool return type, only ever used for aug_defnode.  Do
4338    * not use this struct in any new code.
4339    *)
4340   "int_bool", [
4341     "i", FInt32;                (* for historical compatibility *)
4342     "b", FInt32;                (* for historical compatibility *)
4343   ];
4344
4345   (* LVM PVs, VGs, LVs. *)
4346   "lvm_pv", lvm_pv_cols;
4347   "lvm_vg", lvm_vg_cols;
4348   "lvm_lv", lvm_lv_cols;
4349
4350   (* Column names and types from stat structures.
4351    * NB. Can't use things like 'st_atime' because glibc header files
4352    * define some of these as macros.  Ugh.
4353    *)
4354   "stat", [
4355     "dev", FInt64;
4356     "ino", FInt64;
4357     "mode", FInt64;
4358     "nlink", FInt64;
4359     "uid", FInt64;
4360     "gid", FInt64;
4361     "rdev", FInt64;
4362     "size", FInt64;
4363     "blksize", FInt64;
4364     "blocks", FInt64;
4365     "atime", FInt64;
4366     "mtime", FInt64;
4367     "ctime", FInt64;
4368   ];
4369   "statvfs", [
4370     "bsize", FInt64;
4371     "frsize", FInt64;
4372     "blocks", FInt64;
4373     "bfree", FInt64;
4374     "bavail", FInt64;
4375     "files", FInt64;
4376     "ffree", FInt64;
4377     "favail", FInt64;
4378     "fsid", FInt64;
4379     "flag", FInt64;
4380     "namemax", FInt64;
4381   ];
4382
4383   (* Column names in dirent structure. *)
4384   "dirent", [
4385     "ino", FInt64;
4386     (* 'b' 'c' 'd' 'f' (FIFO) 'l' 'r' (regular file) 's' 'u' '?' *)
4387     "ftyp", FChar;
4388     "name", FString;
4389   ];
4390
4391   (* Version numbers. *)
4392   "version", [
4393     "major", FInt64;
4394     "minor", FInt64;
4395     "release", FInt64;
4396     "extra", FString;
4397   ];
4398
4399   (* Extended attribute. *)
4400   "xattr", [
4401     "attrname", FString;
4402     "attrval", FBuffer;
4403   ];
4404
4405   (* Inotify events. *)
4406   "inotify_event", [
4407     "in_wd", FInt64;
4408     "in_mask", FUInt32;
4409     "in_cookie", FUInt32;
4410     "in_name", FString;
4411   ];
4412
4413   (* Partition table entry. *)
4414   "partition", [
4415     "part_num", FInt32;
4416     "part_start", FBytes;
4417     "part_end", FBytes;
4418     "part_size", FBytes;
4419   ];
4420 ] (* end of structs *)
4421
4422 (* Ugh, Java has to be different ..
4423  * These names are also used by the Haskell bindings.
4424  *)
4425 let java_structs = [
4426   "int_bool", "IntBool";
4427   "lvm_pv", "PV";
4428   "lvm_vg", "VG";
4429   "lvm_lv", "LV";
4430   "stat", "Stat";
4431   "statvfs", "StatVFS";
4432   "dirent", "Dirent";
4433   "version", "Version";
4434   "xattr", "XAttr";
4435   "inotify_event", "INotifyEvent";
4436   "partition", "Partition";
4437 ]
4438
4439 (* What structs are actually returned. *)
4440 type rstructs_used_t = RStructOnly | RStructListOnly | RStructAndList
4441
4442 (* Returns a list of RStruct/RStructList structs that are returned
4443  * by any function.  Each element of returned list is a pair:
4444  *
4445  * (structname, RStructOnly)
4446  *    == there exists function which returns RStruct (_, structname)
4447  * (structname, RStructListOnly)
4448  *    == there exists function which returns RStructList (_, structname)
4449  * (structname, RStructAndList)
4450  *    == there are functions returning both RStruct (_, structname)
4451  *                                      and RStructList (_, structname)
4452  *)
4453 let rstructs_used_by functions =
4454   (* ||| is a "logical OR" for rstructs_used_t *)
4455   let (|||) a b =
4456     match a, b with
4457     | RStructAndList, _
4458     | _, RStructAndList -> RStructAndList
4459     | RStructOnly, RStructListOnly
4460     | RStructListOnly, RStructOnly -> RStructAndList
4461     | RStructOnly, RStructOnly -> RStructOnly
4462     | RStructListOnly, RStructListOnly -> RStructListOnly
4463   in
4464
4465   let h = Hashtbl.create 13 in
4466
4467   (* if elem->oldv exists, update entry using ||| operator,
4468    * else just add elem->newv to the hash
4469    *)
4470   let update elem newv =
4471     try  let oldv = Hashtbl.find h elem in
4472          Hashtbl.replace h elem (newv ||| oldv)
4473     with Not_found -> Hashtbl.add h elem newv
4474   in
4475
4476   List.iter (
4477     fun (_, style, _, _, _, _, _) ->
4478       match fst style with
4479       | RStruct (_, structname) -> update structname RStructOnly
4480       | RStructList (_, structname) -> update structname RStructListOnly
4481       | _ -> ()
4482   ) functions;
4483
4484   (* return key->values as a list of (key,value) *)
4485   Hashtbl.fold (fun key value xs -> (key, value) :: xs) h []
4486
4487 (* Used for testing language bindings. *)
4488 type callt =
4489   | CallString of string
4490   | CallOptString of string option
4491   | CallStringList of string list
4492   | CallInt of int
4493   | CallInt64 of int64
4494   | CallBool of bool
4495
4496 (* Used to memoize the result of pod2text. *)
4497 let pod2text_memo_filename = "src/.pod2text.data"
4498 let pod2text_memo : ((int * string * string), string list) Hashtbl.t =
4499   try
4500     let chan = open_in pod2text_memo_filename in
4501     let v = input_value chan in
4502     close_in chan;
4503     v
4504   with
4505     _ -> Hashtbl.create 13
4506 let pod2text_memo_updated () =
4507   let chan = open_out pod2text_memo_filename in
4508   output_value chan pod2text_memo;
4509   close_out chan
4510
4511 (* Useful functions.
4512  * Note we don't want to use any external OCaml libraries which
4513  * makes this a bit harder than it should be.
4514  *)
4515 module StringMap = Map.Make (String)
4516
4517 let failwithf fs = ksprintf failwith fs
4518
4519 let unique = let i = ref 0 in fun () -> incr i; !i
4520
4521 let replace_char s c1 c2 =
4522   let s2 = String.copy s in
4523   let r = ref false in
4524   for i = 0 to String.length s2 - 1 do
4525     if String.unsafe_get s2 i = c1 then (
4526       String.unsafe_set s2 i c2;
4527       r := true
4528     )
4529   done;
4530   if not !r then s else s2
4531
4532 let isspace c =
4533   c = ' '
4534   (* || c = '\f' *) || c = '\n' || c = '\r' || c = '\t' (* || c = '\v' *)
4535
4536 let triml ?(test = isspace) str =
4537   let i = ref 0 in
4538   let n = ref (String.length str) in
4539   while !n > 0 && test str.[!i]; do
4540     decr n;
4541     incr i
4542   done;
4543   if !i = 0 then str
4544   else String.sub str !i !n
4545
4546 let trimr ?(test = isspace) str =
4547   let n = ref (String.length str) in
4548   while !n > 0 && test str.[!n-1]; do
4549     decr n
4550   done;
4551   if !n = String.length str then str
4552   else String.sub str 0 !n
4553
4554 let trim ?(test = isspace) str =
4555   trimr ~test (triml ~test str)
4556
4557 let rec find s sub =
4558   let len = String.length s in
4559   let sublen = String.length sub in
4560   let rec loop i =
4561     if i <= len-sublen then (
4562       let rec loop2 j =
4563         if j < sublen then (
4564           if s.[i+j] = sub.[j] then loop2 (j+1)
4565           else -1
4566         ) else
4567           i (* found *)
4568       in
4569       let r = loop2 0 in
4570       if r = -1 then loop (i+1) else r
4571     ) else
4572       -1 (* not found *)
4573   in
4574   loop 0
4575
4576 let rec replace_str s s1 s2 =
4577   let len = String.length s in
4578   let sublen = String.length s1 in
4579   let i = find s s1 in
4580   if i = -1 then s
4581   else (
4582     let s' = String.sub s 0 i in
4583     let s'' = String.sub s (i+sublen) (len-i-sublen) in
4584     s' ^ s2 ^ replace_str s'' s1 s2
4585   )
4586
4587 let rec string_split sep str =
4588   let len = String.length str in
4589   let seplen = String.length sep in
4590   let i = find str sep in
4591   if i = -1 then [str]
4592   else (
4593     let s' = String.sub str 0 i in
4594     let s'' = String.sub str (i+seplen) (len-i-seplen) in
4595     s' :: string_split sep s''
4596   )
4597
4598 let files_equal n1 n2 =
4599   let cmd = sprintf "cmp -s %s %s" (Filename.quote n1) (Filename.quote n2) in
4600   match Sys.command cmd with
4601   | 0 -> true
4602   | 1 -> false
4603   | i -> failwithf "%s: failed with error code %d" cmd i
4604
4605 let rec filter_map f = function
4606   | [] -> []
4607   | x :: xs ->
4608       match f x with
4609       | Some y -> y :: filter_map f xs
4610       | None -> filter_map f xs
4611
4612 let rec find_map f = function
4613   | [] -> raise Not_found
4614   | x :: xs ->
4615       match f x with
4616       | Some y -> y
4617       | None -> find_map f xs
4618
4619 let iteri f xs =
4620   let rec loop i = function
4621     | [] -> ()
4622     | x :: xs -> f i x; loop (i+1) xs
4623   in
4624   loop 0 xs
4625
4626 let mapi f xs =
4627   let rec loop i = function
4628     | [] -> []
4629     | x :: xs -> let r = f i x in r :: loop (i+1) xs
4630   in
4631   loop 0 xs
4632
4633 let count_chars c str =
4634   let count = ref 0 in
4635   for i = 0 to String.length str - 1 do
4636     if c = String.unsafe_get str i then incr count
4637   done;
4638   !count
4639
4640 let name_of_argt = function
4641   | Pathname n | Device n | Dev_or_Path n | String n | OptString n
4642   | StringList n | DeviceList n | Bool n | Int n | Int64 n
4643   | FileIn n | FileOut n -> n
4644
4645 let java_name_of_struct typ =
4646   try List.assoc typ java_structs
4647   with Not_found ->
4648     failwithf
4649       "java_name_of_struct: no java_structs entry corresponding to %s" typ
4650
4651 let cols_of_struct typ =
4652   try List.assoc typ structs
4653   with Not_found ->
4654     failwithf "cols_of_struct: unknown struct %s" typ
4655
4656 let seq_of_test = function
4657   | TestRun s | TestOutput (s, _) | TestOutputList (s, _)
4658   | TestOutputListOfDevices (s, _)
4659   | TestOutputInt (s, _) | TestOutputIntOp (s, _, _)
4660   | TestOutputTrue s | TestOutputFalse s
4661   | TestOutputLength (s, _) | TestOutputBuffer (s, _)
4662   | TestOutputStruct (s, _)
4663   | TestLastFail s -> s
4664
4665 (* Handling for function flags. *)
4666 let protocol_limit_warning =
4667   "Because of the message protocol, there is a transfer limit
4668 of somewhere between 2MB and 4MB.  To transfer large files you should use
4669 FTP."
4670
4671 let danger_will_robinson =
4672   "B<This command is dangerous.  Without careful use you
4673 can easily destroy all your data>."
4674
4675 let deprecation_notice flags =
4676   try
4677     let alt =
4678       find_map (function DeprecatedBy str -> Some str | _ -> None) flags in
4679     let txt =
4680       sprintf "This function is deprecated.
4681 In new code, use the C<%s> call instead.
4682
4683 Deprecated functions will not be removed from the API, but the
4684 fact that they are deprecated indicates that there are problems
4685 with correct use of these functions." alt in
4686     Some txt
4687   with
4688     Not_found -> None
4689
4690 (* Create list of optional groups. *)
4691 let optgroups =
4692   let h = Hashtbl.create 13 in
4693   List.iter (
4694     fun (name, _, _, flags, _, _, _) ->
4695       List.iter (
4696         function
4697         | Optional group ->
4698             let names = try Hashtbl.find h group with Not_found -> [] in
4699             Hashtbl.replace h group (name :: names)
4700         | _ -> ()
4701       ) flags
4702   ) daemon_functions;
4703   let groups = Hashtbl.fold (fun k _ ks -> k :: ks) h [] in
4704   let groups =
4705     List.map (
4706       fun group -> group, List.sort compare (Hashtbl.find h group)
4707     ) groups in
4708   List.sort (fun x y -> compare (fst x) (fst y)) groups
4709
4710 (* Check function names etc. for consistency. *)
4711 let check_functions () =
4712   let contains_uppercase str =
4713     let len = String.length str in
4714     let rec loop i =
4715       if i >= len then false
4716       else (
4717         let c = str.[i] in
4718         if c >= 'A' && c <= 'Z' then true
4719         else loop (i+1)
4720       )
4721     in
4722     loop 0
4723   in
4724
4725   (* Check function names. *)
4726   List.iter (
4727     fun (name, _, _, _, _, _, _) ->
4728       if String.length name >= 7 && String.sub name 0 7 = "guestfs" then
4729         failwithf "function name %s does not need 'guestfs' prefix" name;
4730       if name = "" then
4731         failwithf "function name is empty";
4732       if name.[0] < 'a' || name.[0] > 'z' then
4733         failwithf "function name %s must start with lowercase a-z" name;
4734       if String.contains name '-' then
4735         failwithf "function name %s should not contain '-', use '_' instead."
4736           name
4737   ) all_functions;
4738
4739   (* Check function parameter/return names. *)
4740   List.iter (
4741     fun (name, style, _, _, _, _, _) ->
4742       let check_arg_ret_name n =
4743         if contains_uppercase n then
4744           failwithf "%s param/ret %s should not contain uppercase chars"
4745             name n;
4746         if String.contains n '-' || String.contains n '_' then
4747           failwithf "%s param/ret %s should not contain '-' or '_'"
4748             name n;
4749         if n = "value" then
4750           failwithf "%s has a param/ret called 'value', which causes conflicts in the OCaml bindings, use something like 'val' or a more descriptive name" name;
4751         if n = "int" || n = "char" || n = "short" || n = "long" then
4752           failwithf "%s has a param/ret which conflicts with a C type (eg. 'int', 'char' etc.)" name;
4753         if n = "i" || n = "n" then
4754           failwithf "%s has a param/ret called 'i' or 'n', which will cause some conflicts in the generated code" name;
4755         if n = "argv" || n = "args" then
4756           failwithf "%s has a param/ret called 'argv' or 'args', which will cause some conflicts in the generated code" name;
4757
4758         (* List Haskell, OCaml and C keywords here.
4759          * http://www.haskell.org/haskellwiki/Keywords
4760          * http://caml.inria.fr/pub/docs/manual-ocaml/lex.html#operator-char
4761          * http://en.wikipedia.org/wiki/C_syntax#Reserved_keywords
4762          * Formatted via: cat c haskell ocaml|sort -u|grep -vE '_|^val$' \
4763          *   |perl -pe 's/(.+)/"$1";/'|fmt -70
4764          * Omitting _-containing words, since they're handled above.
4765          * Omitting the OCaml reserved word, "val", is ok,
4766          * and saves us from renaming several parameters.
4767          *)
4768         let reserved = [
4769           "and"; "as"; "asr"; "assert"; "auto"; "begin"; "break"; "case";
4770           "char"; "class"; "const"; "constraint"; "continue"; "data";
4771           "default"; "deriving"; "do"; "done"; "double"; "downto"; "else";
4772           "end"; "enum"; "exception"; "extern"; "external"; "false"; "float";
4773           "for"; "forall"; "foreign"; "fun"; "function"; "functor"; "goto";
4774           "hiding"; "if"; "import"; "in"; "include"; "infix"; "infixl";
4775           "infixr"; "inherit"; "initializer"; "inline"; "instance"; "int";
4776           "land"; "lazy"; "let"; "long"; "lor"; "lsl"; "lsr"; "lxor";
4777           "match"; "mdo"; "method"; "mod"; "module"; "mutable"; "new";
4778           "newtype"; "object"; "of"; "open"; "or"; "private"; "qualified";
4779           "rec"; "register"; "restrict"; "return"; "short"; "sig"; "signed";
4780           "sizeof"; "static"; "struct"; "switch"; "then"; "to"; "true"; "try";
4781           "type"; "typedef"; "union"; "unsigned"; "virtual"; "void";
4782           "volatile"; "when"; "where"; "while";
4783           ] in
4784         if List.mem n reserved then
4785           failwithf "%s has param/ret using reserved word %s" name n;
4786       in
4787
4788       (match fst style with
4789        | RErr -> ()
4790        | RInt n | RInt64 n | RBool n
4791        | RConstString n | RConstOptString n | RString n
4792        | RStringList n | RStruct (n, _) | RStructList (n, _)
4793        | RHashtable n | RBufferOut n ->
4794            check_arg_ret_name n
4795       );
4796       List.iter (fun arg -> check_arg_ret_name (name_of_argt arg)) (snd style)
4797   ) all_functions;
4798
4799   (* Check short descriptions. *)
4800   List.iter (
4801     fun (name, _, _, _, _, shortdesc, _) ->
4802       if shortdesc.[0] <> Char.lowercase shortdesc.[0] then
4803         failwithf "short description of %s should begin with lowercase." name;
4804       let c = shortdesc.[String.length shortdesc-1] in
4805       if c = '\n' || c = '.' then
4806         failwithf "short description of %s should not end with . or \\n." name
4807   ) all_functions;
4808
4809   (* Check long dscriptions. *)
4810   List.iter (
4811     fun (name, _, _, _, _, _, longdesc) ->
4812       if longdesc.[String.length longdesc-1] = '\n' then
4813         failwithf "long description of %s should not end with \\n." name
4814   ) all_functions;
4815
4816   (* Check proc_nrs. *)
4817   List.iter (
4818     fun (name, _, proc_nr, _, _, _, _) ->
4819       if proc_nr <= 0 then
4820         failwithf "daemon function %s should have proc_nr > 0" name
4821   ) daemon_functions;
4822
4823   List.iter (
4824     fun (name, _, proc_nr, _, _, _, _) ->
4825       if proc_nr <> -1 then
4826         failwithf "non-daemon function %s should have proc_nr -1" name
4827   ) non_daemon_functions;
4828
4829   let proc_nrs =
4830     List.map (fun (name, _, proc_nr, _, _, _, _) -> name, proc_nr)
4831       daemon_functions in
4832   let proc_nrs =
4833     List.sort (fun (_,nr1) (_,nr2) -> compare nr1 nr2) proc_nrs in
4834   let rec loop = function
4835     | [] -> ()
4836     | [_] -> ()
4837     | (name1,nr1) :: ((name2,nr2) :: _ as rest) when nr1 < nr2 ->
4838         loop rest
4839     | (name1,nr1) :: (name2,nr2) :: _ ->
4840         failwithf "%s and %s have conflicting procedure numbers (%d, %d)"
4841           name1 name2 nr1 nr2
4842   in
4843   loop proc_nrs;
4844
4845   (* Check tests. *)
4846   List.iter (
4847     function
4848       (* Ignore functions that have no tests.  We generate a
4849        * warning when the user does 'make check' instead.
4850        *)
4851     | name, _, _, _, [], _, _ -> ()
4852     | name, _, _, _, tests, _, _ ->
4853         let funcs =
4854           List.map (
4855             fun (_, _, test) ->
4856               match seq_of_test test with
4857               | [] ->
4858                   failwithf "%s has a test containing an empty sequence" name
4859               | cmds -> List.map List.hd cmds
4860           ) tests in
4861         let funcs = List.flatten funcs in
4862
4863         let tested = List.mem name funcs in
4864
4865         if not tested then
4866           failwithf "function %s has tests but does not test itself" name
4867   ) all_functions
4868
4869 (* 'pr' prints to the current output file. *)
4870 let chan = ref Pervasives.stdout
4871 let lines = ref 0
4872 let pr fs =
4873   ksprintf
4874     (fun str ->
4875        let i = count_chars '\n' str in
4876        lines := !lines + i;
4877        output_string !chan str
4878     ) fs
4879
4880 let copyright_years =
4881   let this_year = 1900 + (localtime (time ())).tm_year in
4882   if this_year > 2009 then sprintf "2009-%04d" this_year else "2009"
4883
4884 (* Generate a header block in a number of standard styles. *)
4885 type comment_style =
4886     CStyle | CPlusPlusStyle | HashStyle | OCamlStyle | HaskellStyle
4887 type license = GPLv2plus | LGPLv2plus
4888
4889 let generate_header ?(extra_inputs = []) comment license =
4890   let inputs = "src/generator.ml" :: extra_inputs in
4891   let c = match comment with
4892     | CStyle ->         pr "/* "; " *"
4893     | CPlusPlusStyle -> pr "// "; "//"
4894     | HashStyle ->      pr "# ";  "#"
4895     | OCamlStyle ->     pr "(* "; " *"
4896     | HaskellStyle ->   pr "{- "; "  " in
4897   pr "libguestfs generated file\n";
4898   pr "%s WARNING: THIS FILE IS GENERATED FROM:\n" c;
4899   List.iter (pr "%s   %s\n" c) inputs;
4900   pr "%s ANY CHANGES YOU MAKE TO THIS FILE WILL BE LOST.\n" c;
4901   pr "%s\n" c;
4902   pr "%s Copyright (C) %s Red Hat Inc.\n" c copyright_years;
4903   pr "%s\n" c;
4904   (match license with
4905    | GPLv2plus ->
4906        pr "%s This program is free software; you can redistribute it and/or modify\n" c;
4907        pr "%s it under the terms of the GNU General Public License as published by\n" c;
4908        pr "%s the Free Software Foundation; either version 2 of the License, or\n" c;
4909        pr "%s (at your option) any later version.\n" c;
4910        pr "%s\n" c;
4911        pr "%s This program is distributed in the hope that it will be useful,\n" c;
4912        pr "%s but WITHOUT ANY WARRANTY; without even the implied warranty of\n" c;
4913        pr "%s MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n" c;
4914        pr "%s GNU General Public License for more details.\n" c;
4915        pr "%s\n" c;
4916        pr "%s You should have received a copy of the GNU General Public License along\n" c;
4917        pr "%s with this program; if not, write to the Free Software Foundation, Inc.,\n" c;
4918        pr "%s 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.\n" c;
4919
4920    | LGPLv2plus ->
4921        pr "%s This library is free software; you can redistribute it and/or\n" c;
4922        pr "%s modify it under the terms of the GNU Lesser General Public\n" c;
4923        pr "%s License as published by the Free Software Foundation; either\n" c;
4924        pr "%s version 2 of the License, or (at your option) any later version.\n" c;
4925        pr "%s\n" c;
4926        pr "%s This library is distributed in the hope that it will be useful,\n" c;
4927        pr "%s but WITHOUT ANY WARRANTY; without even the implied warranty of\n" c;
4928        pr "%s MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n" c;
4929        pr "%s Lesser General Public License for more details.\n" c;
4930        pr "%s\n" c;
4931        pr "%s You should have received a copy of the GNU Lesser General Public\n" c;
4932        pr "%s License along with this library; if not, write to the Free Software\n" c;
4933        pr "%s Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA\n" c;
4934   );
4935   (match comment with
4936    | CStyle -> pr " */\n"
4937    | CPlusPlusStyle
4938    | HashStyle -> ()
4939    | OCamlStyle -> pr " *)\n"
4940    | HaskellStyle -> pr "-}\n"
4941   );
4942   pr "\n"
4943
4944 (* Start of main code generation functions below this line. *)
4945
4946 (* Generate the pod documentation for the C API. *)
4947 let rec generate_actions_pod () =
4948   List.iter (
4949     fun (shortname, style, _, flags, _, _, longdesc) ->
4950       if not (List.mem NotInDocs flags) then (
4951         let name = "guestfs_" ^ shortname in
4952         pr "=head2 %s\n\n" name;
4953         pr " ";
4954         generate_prototype ~extern:false ~handle:"handle" name style;
4955         pr "\n\n";
4956         pr "%s\n\n" longdesc;
4957         (match fst style with
4958          | RErr ->
4959              pr "This function returns 0 on success or -1 on error.\n\n"
4960          | RInt _ ->
4961              pr "On error this function returns -1.\n\n"
4962          | RInt64 _ ->
4963              pr "On error this function returns -1.\n\n"
4964          | RBool _ ->
4965              pr "This function returns a C truth value on success or -1 on error.\n\n"
4966          | RConstString _ ->
4967              pr "This function returns a string, or NULL on error.
4968 The string is owned by the guest handle and must I<not> be freed.\n\n"
4969          | RConstOptString _ ->
4970              pr "This function returns a string which may be NULL.
4971 There is way to return an error from this function.
4972 The string is owned by the guest handle and must I<not> be freed.\n\n"
4973          | RString _ ->
4974              pr "This function returns a string, or NULL on error.
4975 I<The caller must free the returned string after use>.\n\n"
4976          | RStringList _ ->
4977              pr "This function returns a NULL-terminated array of strings
4978 (like L<environ(3)>), or NULL if there was an error.
4979 I<The caller must free the strings and the array after use>.\n\n"
4980          | RStruct (_, typ) ->
4981              pr "This function returns a C<struct guestfs_%s *>,
4982 or NULL if there was an error.
4983 I<The caller must call C<guestfs_free_%s> after use>.\n\n" typ typ
4984          | RStructList (_, typ) ->
4985              pr "This function returns a C<struct guestfs_%s_list *>
4986 (see E<lt>guestfs-structs.hE<gt>),
4987 or NULL if there was an error.
4988 I<The caller must call C<guestfs_free_%s_list> after use>.\n\n" typ typ
4989          | RHashtable _ ->
4990              pr "This function returns a NULL-terminated array of
4991 strings, or NULL if there was an error.
4992 The array of strings will always have length C<2n+1>, where
4993 C<n> keys and values alternate, followed by the trailing NULL entry.
4994 I<The caller must free the strings and the array after use>.\n\n"
4995          | RBufferOut _ ->
4996              pr "This function returns a buffer, or NULL on error.
4997 The size of the returned buffer is written to C<*size_r>.
4998 I<The caller must free the returned buffer after use>.\n\n"
4999         );
5000         if List.mem ProtocolLimitWarning flags then
5001           pr "%s\n\n" protocol_limit_warning;
5002         if List.mem DangerWillRobinson flags then
5003           pr "%s\n\n" danger_will_robinson;
5004         match deprecation_notice flags with
5005         | None -> ()
5006         | Some txt -> pr "%s\n\n" txt
5007       )
5008   ) all_functions_sorted
5009
5010 and generate_structs_pod () =
5011   (* Structs documentation. *)
5012   List.iter (
5013     fun (typ, cols) ->
5014       pr "=head2 guestfs_%s\n" typ;
5015       pr "\n";
5016       pr " struct guestfs_%s {\n" typ;
5017       List.iter (
5018         function
5019         | name, FChar -> pr "   char %s;\n" name
5020         | name, FUInt32 -> pr "   uint32_t %s;\n" name
5021         | name, FInt32 -> pr "   int32_t %s;\n" name
5022         | name, (FUInt64|FBytes) -> pr "   uint64_t %s;\n" name
5023         | name, FInt64 -> pr "   int64_t %s;\n" name
5024         | name, FString -> pr "   char *%s;\n" name
5025         | name, FBuffer ->
5026             pr "   /* The next two fields describe a byte array. */\n";
5027             pr "   uint32_t %s_len;\n" name;
5028             pr "   char *%s;\n" name
5029         | name, FUUID ->
5030             pr "   /* The next field is NOT nul-terminated, be careful when printing it: */\n";
5031             pr "   char %s[32];\n" name
5032         | name, FOptPercent ->
5033             pr "   /* The next field is [0..100] or -1 meaning 'not present': */\n";
5034             pr "   float %s;\n" name
5035       ) cols;
5036       pr " };\n";
5037       pr " \n";
5038       pr " struct guestfs_%s_list {\n" typ;
5039       pr "   uint32_t len; /* Number of elements in list. */\n";
5040       pr "   struct guestfs_%s *val; /* Elements. */\n" typ;
5041       pr " };\n";
5042       pr " \n";
5043       pr " void guestfs_free_%s (struct guestfs_free_%s *);\n" typ typ;
5044       pr " void guestfs_free_%s_list (struct guestfs_free_%s_list *);\n"
5045         typ typ;
5046       pr "\n"
5047   ) structs
5048
5049 and generate_availability_pod () =
5050   (* Availability documentation. *)
5051   pr "=over 4\n";
5052   pr "\n";
5053   List.iter (
5054     fun (group, functions) ->
5055       pr "=item B<%s>\n" group;
5056       pr "\n";
5057       pr "The following functions:\n";
5058       List.iter (pr "L</guestfs_%s>\n") functions;
5059       pr "\n"
5060   ) optgroups;
5061   pr "=back\n";
5062   pr "\n"
5063
5064 (* Generate the protocol (XDR) file, 'guestfs_protocol.x' and
5065  * indirectly 'guestfs_protocol.h' and 'guestfs_protocol.c'.
5066  *
5067  * We have to use an underscore instead of a dash because otherwise
5068  * rpcgen generates incorrect code.
5069  *
5070  * This header is NOT exported to clients, but see also generate_structs_h.
5071  *)
5072 and generate_xdr () =
5073   generate_header CStyle LGPLv2plus;
5074
5075   (* This has to be defined to get around a limitation in Sun's rpcgen. *)
5076   pr "typedef string str<>;\n";
5077   pr "\n";
5078
5079   (* Internal structures. *)
5080   List.iter (
5081     function
5082     | typ, cols ->
5083         pr "struct guestfs_int_%s {\n" typ;
5084         List.iter (function
5085                    | name, FChar -> pr "  char %s;\n" name
5086                    | name, FString -> pr "  string %s<>;\n" name
5087                    | name, FBuffer -> pr "  opaque %s<>;\n" name
5088                    | name, FUUID -> pr "  opaque %s[32];\n" name
5089                    | name, (FInt32|FUInt32) -> pr "  int %s;\n" name
5090                    | name, (FInt64|FUInt64|FBytes) -> pr "  hyper %s;\n" name
5091                    | name, FOptPercent -> pr "  float %s;\n" name
5092                   ) cols;
5093         pr "};\n";
5094         pr "\n";
5095         pr "typedef struct guestfs_int_%s guestfs_int_%s_list<>;\n" typ typ;
5096         pr "\n";
5097   ) structs;
5098
5099   List.iter (
5100     fun (shortname, style, _, _, _, _, _) ->
5101       let name = "guestfs_" ^ shortname in
5102
5103       (match snd style with
5104        | [] -> ()
5105        | args ->
5106            pr "struct %s_args {\n" name;
5107            List.iter (
5108              function
5109              | Pathname n | Device n | Dev_or_Path n | String n ->
5110                  pr "  string %s<>;\n" n
5111              | OptString n -> pr "  str *%s;\n" n
5112              | StringList n | DeviceList n -> pr "  str %s<>;\n" n
5113              | Bool n -> pr "  bool %s;\n" n
5114              | Int n -> pr "  int %s;\n" n
5115              | Int64 n -> pr "  hyper %s;\n" n
5116              | FileIn _ | FileOut _ -> ()
5117            ) args;
5118            pr "};\n\n"
5119       );
5120       (match fst style with
5121        | RErr -> ()
5122        | RInt n ->
5123            pr "struct %s_ret {\n" name;
5124            pr "  int %s;\n" n;
5125            pr "};\n\n"
5126        | RInt64 n ->
5127            pr "struct %s_ret {\n" name;
5128            pr "  hyper %s;\n" n;
5129            pr "};\n\n"
5130        | RBool n ->
5131            pr "struct %s_ret {\n" name;
5132            pr "  bool %s;\n" n;
5133            pr "};\n\n"
5134        | RConstString _ | RConstOptString _ ->
5135            failwithf "RConstString|RConstOptString cannot be used by daemon functions"
5136        | RString n ->
5137            pr "struct %s_ret {\n" name;
5138            pr "  string %s<>;\n" n;
5139            pr "};\n\n"
5140        | RStringList n ->
5141            pr "struct %s_ret {\n" name;
5142            pr "  str %s<>;\n" n;
5143            pr "};\n\n"
5144        | RStruct (n, typ) ->
5145            pr "struct %s_ret {\n" name;
5146            pr "  guestfs_int_%s %s;\n" typ n;
5147            pr "};\n\n"
5148        | RStructList (n, typ) ->
5149            pr "struct %s_ret {\n" name;
5150            pr "  guestfs_int_%s_list %s;\n" typ n;
5151            pr "};\n\n"
5152        | RHashtable n ->
5153            pr "struct %s_ret {\n" name;
5154            pr "  str %s<>;\n" n;
5155            pr "};\n\n"
5156        | RBufferOut n ->
5157            pr "struct %s_ret {\n" name;
5158            pr "  opaque %s<>;\n" n;
5159            pr "};\n\n"
5160       );
5161   ) daemon_functions;
5162
5163   (* Table of procedure numbers. *)
5164   pr "enum guestfs_procedure {\n";
5165   List.iter (
5166     fun (shortname, _, proc_nr, _, _, _, _) ->
5167       pr "  GUESTFS_PROC_%s = %d,\n" (String.uppercase shortname) proc_nr
5168   ) daemon_functions;
5169   pr "  GUESTFS_PROC_NR_PROCS\n";
5170   pr "};\n";
5171   pr "\n";
5172
5173   (* Having to choose a maximum message size is annoying for several
5174    * reasons (it limits what we can do in the API), but it (a) makes
5175    * the protocol a lot simpler, and (b) provides a bound on the size
5176    * of the daemon which operates in limited memory space.  For large
5177    * file transfers you should use FTP.
5178    *)
5179   pr "const GUESTFS_MESSAGE_MAX = %d;\n" (4 * 1024 * 1024);
5180   pr "\n";
5181
5182   (* Message header, etc. *)
5183   pr "\
5184 /* The communication protocol is now documented in the guestfs(3)
5185  * manpage.
5186  */
5187
5188 const GUESTFS_PROGRAM = 0x2000F5F5;
5189 const GUESTFS_PROTOCOL_VERSION = 1;
5190
5191 /* These constants must be larger than any possible message length. */
5192 const GUESTFS_LAUNCH_FLAG = 0xf5f55ff5;
5193 const GUESTFS_CANCEL_FLAG = 0xffffeeee;
5194
5195 enum guestfs_message_direction {
5196   GUESTFS_DIRECTION_CALL = 0,        /* client -> daemon */
5197   GUESTFS_DIRECTION_REPLY = 1        /* daemon -> client */
5198 };
5199
5200 enum guestfs_message_status {
5201   GUESTFS_STATUS_OK = 0,
5202   GUESTFS_STATUS_ERROR = 1
5203 };
5204
5205 const GUESTFS_ERROR_LEN = 256;
5206
5207 struct guestfs_message_error {
5208   string error_message<GUESTFS_ERROR_LEN>;
5209 };
5210
5211 struct guestfs_message_header {
5212   unsigned prog;                     /* GUESTFS_PROGRAM */
5213   unsigned vers;                     /* GUESTFS_PROTOCOL_VERSION */
5214   guestfs_procedure proc;            /* GUESTFS_PROC_x */
5215   guestfs_message_direction direction;
5216   unsigned serial;                   /* message serial number */
5217   guestfs_message_status status;
5218 };
5219
5220 const GUESTFS_MAX_CHUNK_SIZE = 8192;
5221
5222 struct guestfs_chunk {
5223   int cancel;                        /* if non-zero, transfer is cancelled */
5224   /* data size is 0 bytes if the transfer has finished successfully */
5225   opaque data<GUESTFS_MAX_CHUNK_SIZE>;
5226 };
5227 "
5228
5229 (* Generate the guestfs-structs.h file. *)
5230 and generate_structs_h () =
5231   generate_header CStyle LGPLv2plus;
5232
5233   (* This is a public exported header file containing various
5234    * structures.  The structures are carefully written to have
5235    * exactly the same in-memory format as the XDR structures that
5236    * we use on the wire to the daemon.  The reason for creating
5237    * copies of these structures here is just so we don't have to
5238    * export the whole of guestfs_protocol.h (which includes much
5239    * unrelated and XDR-dependent stuff that we don't want to be
5240    * public, or required by clients).
5241    *
5242    * To reiterate, we will pass these structures to and from the
5243    * client with a simple assignment or memcpy, so the format
5244    * must be identical to what rpcgen / the RFC defines.
5245    *)
5246
5247   (* Public structures. *)
5248   List.iter (
5249     fun (typ, cols) ->
5250       pr "struct guestfs_%s {\n" typ;
5251       List.iter (
5252         function
5253         | name, FChar -> pr "  char %s;\n" name
5254         | name, FString -> pr "  char *%s;\n" name
5255         | name, FBuffer ->
5256             pr "  uint32_t %s_len;\n" name;
5257             pr "  char *%s;\n" name
5258         | name, FUUID -> pr "  char %s[32]; /* this is NOT nul-terminated, be careful when printing */\n" name
5259         | name, FUInt32 -> pr "  uint32_t %s;\n" name
5260         | name, FInt32 -> pr "  int32_t %s;\n" name
5261         | name, (FUInt64|FBytes) -> pr "  uint64_t %s;\n" name
5262         | name, FInt64 -> pr "  int64_t %s;\n" name
5263         | name, FOptPercent -> pr "  float %s; /* [0..100] or -1 */\n" name
5264       ) cols;
5265       pr "};\n";
5266       pr "\n";
5267       pr "struct guestfs_%s_list {\n" typ;
5268       pr "  uint32_t len;\n";
5269       pr "  struct guestfs_%s *val;\n" typ;
5270       pr "};\n";
5271       pr "\n";
5272       pr "extern void guestfs_free_%s (struct guestfs_%s *);\n" typ typ;
5273       pr "extern void guestfs_free_%s_list (struct guestfs_%s_list *);\n" typ typ;
5274       pr "\n"
5275   ) structs
5276
5277 (* Generate the guestfs-actions.h file. *)
5278 and generate_actions_h () =
5279   generate_header CStyle LGPLv2plus;
5280   List.iter (
5281     fun (shortname, style, _, _, _, _, _) ->
5282       let name = "guestfs_" ^ shortname in
5283       generate_prototype ~single_line:true ~newline:true ~handle:"handle"
5284         name style
5285   ) all_functions
5286
5287 (* Generate the guestfs-internal-actions.h file. *)
5288 and generate_internal_actions_h () =
5289   generate_header CStyle LGPLv2plus;
5290   List.iter (
5291     fun (shortname, style, _, _, _, _, _) ->
5292       let name = "guestfs__" ^ shortname in
5293       generate_prototype ~single_line:true ~newline:true ~handle:"handle"
5294         name style
5295   ) non_daemon_functions
5296
5297 (* Generate the client-side dispatch stubs. *)
5298 and generate_client_actions () =
5299   generate_header CStyle LGPLv2plus;
5300
5301   pr "\
5302 #include <stdio.h>
5303 #include <stdlib.h>
5304 #include <stdint.h>
5305 #include <inttypes.h>
5306
5307 #include \"guestfs.h\"
5308 #include \"guestfs-internal.h\"
5309 #include \"guestfs-internal-actions.h\"
5310 #include \"guestfs_protocol.h\"
5311
5312 #define error guestfs_error
5313 //#define perrorf guestfs_perrorf
5314 #define safe_malloc guestfs_safe_malloc
5315 #define safe_realloc guestfs_safe_realloc
5316 //#define safe_strdup guestfs_safe_strdup
5317 #define safe_memdup guestfs_safe_memdup
5318
5319 /* Check the return message from a call for validity. */
5320 static int
5321 check_reply_header (guestfs_h *g,
5322                     const struct guestfs_message_header *hdr,
5323                     unsigned int proc_nr, unsigned int serial)
5324 {
5325   if (hdr->prog != GUESTFS_PROGRAM) {
5326     error (g, \"wrong program (%%d/%%d)\", hdr->prog, GUESTFS_PROGRAM);
5327     return -1;
5328   }
5329   if (hdr->vers != GUESTFS_PROTOCOL_VERSION) {
5330     error (g, \"wrong protocol version (%%d/%%d)\",
5331            hdr->vers, GUESTFS_PROTOCOL_VERSION);
5332     return -1;
5333   }
5334   if (hdr->direction != GUESTFS_DIRECTION_REPLY) {
5335     error (g, \"unexpected message direction (%%d/%%d)\",
5336            hdr->direction, GUESTFS_DIRECTION_REPLY);
5337     return -1;
5338   }
5339   if (hdr->proc != proc_nr) {
5340     error (g, \"unexpected procedure number (%%d/%%d)\", hdr->proc, proc_nr);
5341     return -1;
5342   }
5343   if (hdr->serial != serial) {
5344     error (g, \"unexpected serial (%%d/%%d)\", hdr->serial, serial);
5345     return -1;
5346   }
5347
5348   return 0;
5349 }
5350
5351 /* Check we are in the right state to run a high-level action. */
5352 static int
5353 check_state (guestfs_h *g, const char *caller)
5354 {
5355   if (!guestfs__is_ready (g)) {
5356     if (guestfs__is_config (g) || guestfs__is_launching (g))
5357       error (g, \"%%s: call launch before using this function\\n(in guestfish, don't forget to use the 'run' command)\",
5358         caller);
5359     else
5360       error (g, \"%%s called from the wrong state, %%d != READY\",
5361         caller, guestfs__get_state (g));
5362     return -1;
5363   }
5364   return 0;
5365 }
5366
5367 ";
5368
5369   (* Generate code to generate guestfish call traces. *)
5370   let trace_call shortname style =
5371     pr "  if (guestfs__get_trace (g)) {\n";
5372
5373     let needs_i =
5374       List.exists (function
5375                    | StringList _ | DeviceList _ -> true
5376                    | _ -> false) (snd style) in
5377     if needs_i then (
5378       pr "    int i;\n";
5379       pr "\n"
5380     );
5381
5382     pr "    printf (\"%s\");\n" shortname;
5383     List.iter (
5384       function
5385       | String n                        (* strings *)
5386       | Device n
5387       | Pathname n
5388       | Dev_or_Path n
5389       | FileIn n
5390       | FileOut n ->
5391           (* guestfish doesn't support string escaping, so neither do we *)
5392           pr "    printf (\" \\\"%%s\\\"\", %s);\n" n
5393       | OptString n ->                  (* string option *)
5394           pr "    if (%s) printf (\" \\\"%%s\\\"\", %s);\n" n n;
5395           pr "    else printf (\" null\");\n"
5396       | StringList n
5397       | DeviceList n ->                 (* string list *)
5398           pr "    putchar (' ');\n";
5399           pr "    putchar ('\"');\n";
5400           pr "    for (i = 0; %s[i]; ++i) {\n" n;
5401           pr "      if (i > 0) putchar (' ');\n";
5402           pr "      fputs (%s[i], stdout);\n" n;
5403           pr "    }\n";
5404           pr "    putchar ('\"');\n";
5405       | Bool n ->                       (* boolean *)
5406           pr "    fputs (%s ? \" true\" : \" false\", stdout);\n" n
5407       | Int n ->                        (* int *)
5408           pr "    printf (\" %%d\", %s);\n" n
5409       | Int64 n ->
5410           pr "    printf (\" %%\" PRIi64, %s);\n" n
5411     ) (snd style);
5412     pr "    putchar ('\\n');\n";
5413     pr "  }\n";
5414     pr "\n";
5415   in
5416
5417   (* For non-daemon functions, generate a wrapper around each function. *)
5418   List.iter (
5419     fun (shortname, style, _, _, _, _, _) ->
5420       let name = "guestfs_" ^ shortname in
5421
5422       generate_prototype ~extern:false ~semicolon:false ~newline:true
5423         ~handle:"g" name style;
5424       pr "{\n";
5425       trace_call shortname style;
5426       pr "  return guestfs__%s " shortname;
5427       generate_c_call_args ~handle:"g" style;
5428       pr ";\n";
5429       pr "}\n";
5430       pr "\n"
5431   ) non_daemon_functions;
5432
5433   (* Client-side stubs for each function. *)
5434   List.iter (
5435     fun (shortname, style, _, _, _, _, _) ->
5436       let name = "guestfs_" ^ shortname in
5437
5438       (* Generate the action stub. *)
5439       generate_prototype ~extern:false ~semicolon:false ~newline:true
5440         ~handle:"g" name style;
5441
5442       let error_code =
5443         match fst style with
5444         | RErr | RInt _ | RInt64 _ | RBool _ -> "-1"
5445         | RConstString _ | RConstOptString _ ->
5446             failwithf "RConstString|RConstOptString cannot be used by daemon functions"
5447         | RString _ | RStringList _
5448         | RStruct _ | RStructList _
5449         | RHashtable _ | RBufferOut _ ->
5450             "NULL" in
5451
5452       pr "{\n";
5453
5454       (match snd style with
5455        | [] -> ()
5456        | _ -> pr "  struct %s_args args;\n" name
5457       );
5458
5459       pr "  guestfs_message_header hdr;\n";
5460       pr "  guestfs_message_error err;\n";
5461       let has_ret =
5462         match fst style with
5463         | RErr -> false
5464         | RConstString _ | RConstOptString _ ->
5465             failwithf "RConstString|RConstOptString cannot be used by daemon functions"
5466         | RInt _ | RInt64 _
5467         | RBool _ | RString _ | RStringList _
5468         | RStruct _ | RStructList _
5469         | RHashtable _ | RBufferOut _ ->
5470             pr "  struct %s_ret ret;\n" name;
5471             true in
5472
5473       pr "  int serial;\n";
5474       pr "  int r;\n";
5475       pr "\n";
5476       trace_call shortname style;
5477       pr "  if (check_state (g, \"%s\") == -1) return %s;\n" name error_code;
5478       pr "  guestfs___set_busy (g);\n";
5479       pr "\n";
5480
5481       (* Send the main header and arguments. *)
5482       (match snd style with
5483        | [] ->
5484            pr "  serial = guestfs___send (g, GUESTFS_PROC_%s, NULL, NULL);\n"
5485              (String.uppercase shortname)
5486        | args ->
5487            List.iter (
5488              function
5489              | Pathname n | Device n | Dev_or_Path n | String n ->
5490                  pr "  args.%s = (char *) %s;\n" n n
5491              | OptString n ->
5492                  pr "  args.%s = %s ? (char **) &%s : NULL;\n" n n n
5493              | StringList n | DeviceList n ->
5494                  pr "  args.%s.%s_val = (char **) %s;\n" n n n;
5495                  pr "  for (args.%s.%s_len = 0; %s[args.%s.%s_len]; args.%s.%s_len++) ;\n" n n n n n n n;
5496              | Bool n ->
5497                  pr "  args.%s = %s;\n" n n
5498              | Int n ->
5499                  pr "  args.%s = %s;\n" n n
5500              | Int64 n ->
5501                  pr "  args.%s = %s;\n" n n
5502              | FileIn _ | FileOut _ -> ()
5503            ) args;
5504            pr "  serial = guestfs___send (g, GUESTFS_PROC_%s,\n"
5505              (String.uppercase shortname);
5506            pr "        (xdrproc_t) xdr_%s_args, (char *) &args);\n"
5507              name;
5508       );
5509       pr "  if (serial == -1) {\n";
5510       pr "    guestfs___end_busy (g);\n";
5511       pr "    return %s;\n" error_code;
5512       pr "  }\n";
5513       pr "\n";
5514
5515       (* Send any additional files (FileIn) requested. *)
5516       let need_read_reply_label = ref false in
5517       List.iter (
5518         function
5519         | FileIn n ->
5520             pr "  r = guestfs___send_file (g, %s);\n" n;
5521             pr "  if (r == -1) {\n";
5522             pr "    guestfs___end_busy (g);\n";
5523             pr "    return %s;\n" error_code;
5524             pr "  }\n";
5525             pr "  if (r == -2) /* daemon cancelled */\n";
5526             pr "    goto read_reply;\n";
5527             need_read_reply_label := true;
5528             pr "\n";
5529         | _ -> ()
5530       ) (snd style);
5531
5532       (* Wait for the reply from the remote end. *)
5533       if !need_read_reply_label then pr " read_reply:\n";
5534       pr "  memset (&hdr, 0, sizeof hdr);\n";
5535       pr "  memset (&err, 0, sizeof err);\n";
5536       if has_ret then pr "  memset (&ret, 0, sizeof ret);\n";
5537       pr "\n";
5538       pr "  r = guestfs___recv (g, \"%s\", &hdr, &err,\n        " shortname;
5539       if not has_ret then
5540         pr "NULL, NULL"
5541       else
5542         pr "(xdrproc_t) xdr_guestfs_%s_ret, (char *) &ret" shortname;
5543       pr ");\n";
5544
5545       pr "  if (r == -1) {\n";
5546       pr "    guestfs___end_busy (g);\n";
5547       pr "    return %s;\n" error_code;
5548       pr "  }\n";
5549       pr "\n";
5550
5551       pr "  if (check_reply_header (g, &hdr, GUESTFS_PROC_%s, serial) == -1) {\n"
5552         (String.uppercase shortname);
5553       pr "    guestfs___end_busy (g);\n";
5554       pr "    return %s;\n" error_code;
5555       pr "  }\n";
5556       pr "\n";
5557
5558       pr "  if (hdr.status == GUESTFS_STATUS_ERROR) {\n";
5559       pr "    error (g, \"%%s: %%s\", \"%s\", err.error_message);\n" shortname;
5560       pr "    free (err.error_message);\n";
5561       pr "    guestfs___end_busy (g);\n";
5562       pr "    return %s;\n" error_code;
5563       pr "  }\n";
5564       pr "\n";
5565
5566       (* Expecting to receive further files (FileOut)? *)
5567       List.iter (
5568         function
5569         | FileOut n ->
5570             pr "  if (guestfs___recv_file (g, %s) == -1) {\n" n;
5571             pr "    guestfs___end_busy (g);\n";
5572             pr "    return %s;\n" error_code;
5573             pr "  }\n";
5574             pr "\n";
5575         | _ -> ()
5576       ) (snd style);
5577
5578       pr "  guestfs___end_busy (g);\n";
5579
5580       (match fst style with
5581        | RErr -> pr "  return 0;\n"
5582        | RInt n | RInt64 n | RBool n ->
5583            pr "  return ret.%s;\n" n
5584        | RConstString _ | RConstOptString _ ->
5585            failwithf "RConstString|RConstOptString cannot be used by daemon functions"
5586        | RString n ->
5587            pr "  return ret.%s; /* caller will free */\n" n
5588        | RStringList n | RHashtable n ->
5589            pr "  /* caller will free this, but we need to add a NULL entry */\n";
5590            pr "  ret.%s.%s_val =\n" n n;
5591            pr "    safe_realloc (g, ret.%s.%s_val,\n" n n;
5592            pr "                  sizeof (char *) * (ret.%s.%s_len + 1));\n"
5593              n n;
5594            pr "  ret.%s.%s_val[ret.%s.%s_len] = NULL;\n" n n n n;
5595            pr "  return ret.%s.%s_val;\n" n n
5596        | RStruct (n, _) ->
5597            pr "  /* caller will free this */\n";
5598            pr "  return safe_memdup (g, &ret.%s, sizeof (ret.%s));\n" n n
5599        | RStructList (n, _) ->
5600            pr "  /* caller will free this */\n";
5601            pr "  return safe_memdup (g, &ret.%s, sizeof (ret.%s));\n" n n
5602        | RBufferOut n ->
5603            pr "  /* RBufferOut is tricky: If the buffer is zero-length, then\n";
5604            pr "   * _val might be NULL here.  To make the API saner for\n";
5605            pr "   * callers, we turn this case into a unique pointer (using\n";
5606            pr "   * malloc(1)).\n";
5607            pr "   */\n";
5608            pr "  if (ret.%s.%s_len > 0) {\n" n n;
5609            pr "    *size_r = ret.%s.%s_len;\n" n n;
5610            pr "    return ret.%s.%s_val; /* caller will free */\n" n n;
5611            pr "  } else {\n";
5612            pr "    free (ret.%s.%s_val);\n" n n;
5613            pr "    char *p = safe_malloc (g, 1);\n";
5614            pr "    *size_r = ret.%s.%s_len;\n" n n;
5615            pr "    return p;\n";
5616            pr "  }\n";
5617       );
5618
5619       pr "}\n\n"
5620   ) daemon_functions;
5621
5622   (* Functions to free structures. *)
5623   pr "/* Structure-freeing functions.  These rely on the fact that the\n";
5624   pr " * structure format is identical to the XDR format.  See note in\n";
5625   pr " * generator.ml.\n";
5626   pr " */\n";
5627   pr "\n";
5628
5629   List.iter (
5630     fun (typ, _) ->
5631       pr "void\n";
5632       pr "guestfs_free_%s (struct guestfs_%s *x)\n" typ typ;
5633       pr "{\n";
5634       pr "  xdr_free ((xdrproc_t) xdr_guestfs_int_%s, (char *) x);\n" typ;
5635       pr "  free (x);\n";
5636       pr "}\n";
5637       pr "\n";
5638
5639       pr "void\n";
5640       pr "guestfs_free_%s_list (struct guestfs_%s_list *x)\n" typ typ;
5641       pr "{\n";
5642       pr "  xdr_free ((xdrproc_t) xdr_guestfs_int_%s_list, (char *) x);\n" typ;
5643       pr "  free (x);\n";
5644       pr "}\n";
5645       pr "\n";
5646
5647   ) structs;
5648
5649 (* Generate daemon/actions.h. *)
5650 and generate_daemon_actions_h () =
5651   generate_header CStyle GPLv2plus;
5652
5653   pr "#include \"../src/guestfs_protocol.h\"\n";
5654   pr "\n";
5655
5656   List.iter (
5657     fun (name, style, _, _, _, _, _) ->
5658       generate_prototype
5659         ~single_line:true ~newline:true ~in_daemon:true ~prefix:"do_"
5660         name style;
5661   ) daemon_functions
5662
5663 (* Generate the linker script which controls the visibility of
5664  * symbols in the public ABI and ensures no other symbols get
5665  * exported accidentally.
5666  *)
5667 and generate_linker_script () =
5668   generate_header HashStyle GPLv2plus;
5669
5670   let globals = [
5671     "guestfs_create";
5672     "guestfs_close";
5673     "guestfs_get_error_handler";
5674     "guestfs_get_out_of_memory_handler";
5675     "guestfs_last_error";
5676     "guestfs_set_error_handler";
5677     "guestfs_set_launch_done_callback";
5678     "guestfs_set_log_message_callback";
5679     "guestfs_set_out_of_memory_handler";
5680     "guestfs_set_subprocess_quit_callback";
5681
5682     (* Unofficial parts of the API: the bindings code use these
5683      * functions, so it is useful to export them.
5684      *)
5685     "guestfs_safe_calloc";
5686     "guestfs_safe_malloc";
5687   ] in
5688   let functions =
5689     List.map (fun (name, _, _, _, _, _, _) -> "guestfs_" ^ name)
5690       all_functions in
5691   let structs =
5692     List.concat (
5693       List.map (fun (typ, _) ->
5694                   ["guestfs_free_" ^ typ; "guestfs_free_" ^ typ ^ "_list"])
5695         structs
5696     ) in
5697   let globals = List.sort compare (globals @ functions @ structs) in
5698
5699   pr "{\n";
5700   pr "    global:\n";
5701   List.iter (pr "        %s;\n") globals;
5702   pr "\n";
5703
5704   pr "    local:\n";
5705   pr "        *;\n";
5706   pr "};\n"
5707
5708 (* Generate the server-side stubs. *)
5709 and generate_daemon_actions () =
5710   generate_header CStyle GPLv2plus;
5711
5712   pr "#include <config.h>\n";
5713   pr "\n";
5714   pr "#include <stdio.h>\n";
5715   pr "#include <stdlib.h>\n";
5716   pr "#include <string.h>\n";
5717   pr "#include <inttypes.h>\n";
5718   pr "#include <rpc/types.h>\n";
5719   pr "#include <rpc/xdr.h>\n";
5720   pr "\n";
5721   pr "#include \"daemon.h\"\n";
5722   pr "#include \"c-ctype.h\"\n";
5723   pr "#include \"../src/guestfs_protocol.h\"\n";
5724   pr "#include \"actions.h\"\n";
5725   pr "\n";
5726
5727   List.iter (
5728     fun (name, style, _, _, _, _, _) ->
5729       (* Generate server-side stubs. *)
5730       pr "static void %s_stub (XDR *xdr_in)\n" name;
5731       pr "{\n";
5732       let error_code =
5733         match fst style with
5734         | RErr | RInt _ -> pr "  int r;\n"; "-1"
5735         | RInt64 _ -> pr "  int64_t r;\n"; "-1"
5736         | RBool _ -> pr "  int r;\n"; "-1"
5737         | RConstString _ | RConstOptString _ ->
5738             failwithf "RConstString|RConstOptString cannot be used by daemon functions"
5739         | RString _ -> pr "  char *r;\n"; "NULL"
5740         | RStringList _ | RHashtable _ -> pr "  char **r;\n"; "NULL"
5741         | RStruct (_, typ) -> pr "  guestfs_int_%s *r;\n" typ; "NULL"
5742         | RStructList (_, typ) -> pr "  guestfs_int_%s_list *r;\n" typ; "NULL"
5743         | RBufferOut _ ->
5744             pr "  size_t size = 1;\n";
5745             pr "  char *r;\n";
5746             "NULL" in
5747
5748       (match snd style with
5749        | [] -> ()
5750        | args ->
5751            pr "  struct guestfs_%s_args args;\n" name;
5752            List.iter (
5753              function
5754              | Device n | Dev_or_Path n
5755              | Pathname n
5756              | String n -> ()
5757              | OptString n -> pr "  char *%s;\n" n
5758              | StringList n | DeviceList n -> pr "  char **%s;\n" n
5759              | Bool n -> pr "  int %s;\n" n
5760              | Int n -> pr "  int %s;\n" n
5761              | Int64 n -> pr "  int64_t %s;\n" n
5762              | FileIn _ | FileOut _ -> ()
5763            ) args
5764       );
5765       pr "\n";
5766
5767       (match snd style with
5768        | [] -> ()
5769        | args ->
5770            pr "  memset (&args, 0, sizeof args);\n";
5771            pr "\n";
5772            pr "  if (!xdr_guestfs_%s_args (xdr_in, &args)) {\n" name;
5773            pr "    reply_with_error (\"%%s: daemon failed to decode procedure arguments\", \"%s\");\n" name;
5774            pr "    return;\n";
5775            pr "  }\n";
5776            let pr_args n =
5777              pr "  char *%s = args.%s;\n" n n
5778            in
5779            let pr_list_handling_code n =
5780              pr "  %s = realloc (args.%s.%s_val,\n" n n n;
5781              pr "                sizeof (char *) * (args.%s.%s_len+1));\n" n n;
5782              pr "  if (%s == NULL) {\n" n;
5783              pr "    reply_with_perror (\"realloc\");\n";
5784              pr "    goto done;\n";
5785              pr "  }\n";
5786              pr "  %s[args.%s.%s_len] = NULL;\n" n n n;
5787              pr "  args.%s.%s_val = %s;\n" n n n;
5788            in
5789            List.iter (
5790              function
5791              | Pathname n ->
5792                  pr_args n;
5793                  pr "  ABS_PATH (%s, goto done);\n" n;
5794              | Device n ->
5795                  pr_args n;
5796                  pr "  RESOLVE_DEVICE (%s, goto done);\n" n;
5797              | Dev_or_Path n ->
5798                  pr_args n;
5799                  pr "  REQUIRE_ROOT_OR_RESOLVE_DEVICE (%s, goto done);\n" n;
5800              | String n -> pr_args n
5801              | OptString n -> pr "  %s = args.%s ? *args.%s : NULL;\n" n n n
5802              | StringList n ->
5803                  pr_list_handling_code n;
5804              | DeviceList n ->
5805                  pr_list_handling_code n;
5806                  pr "  /* Ensure that each is a device,\n";
5807                  pr "   * and perform device name translation. */\n";
5808                  pr "  { int pvi; for (pvi = 0; physvols[pvi] != NULL; ++pvi)\n";
5809                  pr "    RESOLVE_DEVICE (physvols[pvi], goto done);\n";
5810                  pr "  }\n";
5811              | Bool n -> pr "  %s = args.%s;\n" n n
5812              | Int n -> pr "  %s = args.%s;\n" n n
5813              | Int64 n -> pr "  %s = args.%s;\n" n n
5814              | FileIn _ | FileOut _ -> ()
5815            ) args;
5816            pr "\n"
5817       );
5818
5819
5820       (* this is used at least for do_equal *)
5821       if List.exists (function Pathname _ -> true | _ -> false) (snd style) then (
5822         (* Emit NEED_ROOT just once, even when there are two or
5823            more Pathname args *)
5824         pr "  NEED_ROOT (goto done);\n";
5825       );
5826
5827       (* Don't want to call the impl with any FileIn or FileOut
5828        * parameters, since these go "outside" the RPC protocol.
5829        *)
5830       let args' =
5831         List.filter (function FileIn _ | FileOut _ -> false | _ -> true)
5832           (snd style) in
5833       pr "  r = do_%s " name;
5834       generate_c_call_args (fst style, args');
5835       pr ";\n";
5836
5837       (match fst style with
5838        | RErr | RInt _ | RInt64 _ | RBool _
5839        | RConstString _ | RConstOptString _
5840        | RString _ | RStringList _ | RHashtable _
5841        | RStruct (_, _) | RStructList (_, _) ->
5842            pr "  if (r == %s)\n" error_code;
5843            pr "    /* do_%s has already called reply_with_error */\n" name;
5844            pr "    goto done;\n";
5845            pr "\n"
5846        | RBufferOut _ ->
5847            pr "  /* size == 0 && r == NULL could be a non-error case (just\n";
5848            pr "   * an ordinary zero-length buffer), so be careful ...\n";
5849            pr "   */\n";
5850            pr "  if (size == 1 && r == %s)\n" error_code;
5851            pr "    /* do_%s has already called reply_with_error */\n" name;
5852            pr "    goto done;\n";
5853            pr "\n"
5854       );
5855
5856       (* If there are any FileOut parameters, then the impl must
5857        * send its own reply.
5858        *)
5859       let no_reply =
5860         List.exists (function FileOut _ -> true | _ -> false) (snd style) in
5861       if no_reply then
5862         pr "  /* do_%s has already sent a reply */\n" name
5863       else (
5864         match fst style with
5865         | RErr -> pr "  reply (NULL, NULL);\n"
5866         | RInt n | RInt64 n | RBool n ->
5867             pr "  struct guestfs_%s_ret ret;\n" name;
5868             pr "  ret.%s = r;\n" n;
5869             pr "  reply ((xdrproc_t) &xdr_guestfs_%s_ret, (char *) &ret);\n"
5870               name
5871         | RConstString _ | RConstOptString _ ->
5872             failwithf "RConstString|RConstOptString cannot be used by daemon functions"
5873         | RString n ->
5874             pr "  struct guestfs_%s_ret ret;\n" name;
5875             pr "  ret.%s = r;\n" n;
5876             pr "  reply ((xdrproc_t) &xdr_guestfs_%s_ret, (char *) &ret);\n"
5877               name;
5878             pr "  free (r);\n"
5879         | RStringList n | RHashtable n ->
5880             pr "  struct guestfs_%s_ret ret;\n" name;
5881             pr "  ret.%s.%s_len = count_strings (r);\n" n n;
5882             pr "  ret.%s.%s_val = r;\n" n n;
5883             pr "  reply ((xdrproc_t) &xdr_guestfs_%s_ret, (char *) &ret);\n"
5884               name;
5885             pr "  free_strings (r);\n"
5886         | RStruct (n, _) ->
5887             pr "  struct guestfs_%s_ret ret;\n" name;
5888             pr "  ret.%s = *r;\n" n;
5889             pr "  reply ((xdrproc_t) xdr_guestfs_%s_ret, (char *) &ret);\n"
5890               name;
5891             pr "  xdr_free ((xdrproc_t) xdr_guestfs_%s_ret, (char *) &ret);\n"
5892               name
5893         | RStructList (n, _) ->
5894             pr "  struct guestfs_%s_ret ret;\n" name;
5895             pr "  ret.%s = *r;\n" n;
5896             pr "  reply ((xdrproc_t) xdr_guestfs_%s_ret, (char *) &ret);\n"
5897               name;
5898             pr "  xdr_free ((xdrproc_t) xdr_guestfs_%s_ret, (char *) &ret);\n"
5899               name
5900         | RBufferOut n ->
5901             pr "  struct guestfs_%s_ret ret;\n" name;
5902             pr "  ret.%s.%s_val = r;\n" n n;
5903             pr "  ret.%s.%s_len = size;\n" n n;
5904             pr "  reply ((xdrproc_t) &xdr_guestfs_%s_ret, (char *) &ret);\n"
5905               name;
5906             pr "  free (r);\n"
5907       );
5908
5909       (* Free the args. *)
5910       (match snd style with
5911        | [] ->
5912            pr "done: ;\n";
5913        | _ ->
5914            pr "done:\n";
5915            pr "  xdr_free ((xdrproc_t) xdr_guestfs_%s_args, (char *) &args);\n"
5916              name
5917       );
5918
5919       pr "}\n\n";
5920   ) daemon_functions;
5921
5922   (* Dispatch function. *)
5923   pr "void dispatch_incoming_message (XDR *xdr_in)\n";
5924   pr "{\n";
5925   pr "  switch (proc_nr) {\n";
5926
5927   List.iter (
5928     fun (name, style, _, _, _, _, _) ->
5929       pr "    case GUESTFS_PROC_%s:\n" (String.uppercase name);
5930       pr "      %s_stub (xdr_in);\n" name;
5931       pr "      break;\n"
5932   ) daemon_functions;
5933
5934   pr "    default:\n";
5935   pr "      reply_with_error (\"dispatch_incoming_message: unknown procedure number %%d, set LIBGUESTFS_PATH to point to the matching libguestfs appliance directory\", proc_nr);\n";
5936   pr "  }\n";
5937   pr "}\n";
5938   pr "\n";
5939
5940   (* LVM columns and tokenization functions. *)
5941   (* XXX This generates crap code.  We should rethink how we
5942    * do this parsing.
5943    *)
5944   List.iter (
5945     function
5946     | typ, cols ->
5947         pr "static const char *lvm_%s_cols = \"%s\";\n"
5948           typ (String.concat "," (List.map fst cols));
5949         pr "\n";
5950
5951         pr "static int lvm_tokenize_%s (char *str, guestfs_int_lvm_%s *r)\n" typ typ;
5952         pr "{\n";
5953         pr "  char *tok, *p, *next;\n";
5954         pr "  int i, j;\n";
5955         pr "\n";
5956         (*
5957           pr "  fprintf (stderr, \"%%s: <<%%s>>\\n\", __func__, str);\n";
5958           pr "\n";
5959         *)
5960         pr "  if (!str) {\n";
5961         pr "    fprintf (stderr, \"%%s: failed: passed a NULL string\\n\", __func__);\n";
5962         pr "    return -1;\n";
5963         pr "  }\n";
5964         pr "  if (!*str || c_isspace (*str)) {\n";
5965         pr "    fprintf (stderr, \"%%s: failed: passed a empty string or one beginning with whitespace\\n\", __func__);\n";
5966         pr "    return -1;\n";
5967         pr "  }\n";
5968         pr "  tok = str;\n";
5969         List.iter (
5970           fun (name, coltype) ->
5971             pr "  if (!tok) {\n";
5972             pr "    fprintf (stderr, \"%%s: failed: string finished early, around token %%s\\n\", __func__, \"%s\");\n" name;
5973             pr "    return -1;\n";
5974             pr "  }\n";
5975             pr "  p = strchrnul (tok, ',');\n";
5976             pr "  if (*p) next = p+1; else next = NULL;\n";
5977             pr "  *p = '\\0';\n";
5978             (match coltype with
5979              | FString ->
5980                  pr "  r->%s = strdup (tok);\n" name;
5981                  pr "  if (r->%s == NULL) {\n" name;
5982                  pr "    perror (\"strdup\");\n";
5983                  pr "    return -1;\n";
5984                  pr "  }\n"
5985              | FUUID ->
5986                  pr "  for (i = j = 0; i < 32; ++j) {\n";
5987                  pr "    if (tok[j] == '\\0') {\n";
5988                  pr "      fprintf (stderr, \"%%s: failed to parse UUID from '%%s'\\n\", __func__, tok);\n";
5989                  pr "      return -1;\n";
5990                  pr "    } else if (tok[j] != '-')\n";
5991                  pr "      r->%s[i++] = tok[j];\n" name;
5992                  pr "  }\n";
5993              | FBytes ->
5994                  pr "  if (sscanf (tok, \"%%\"SCNu64, &r->%s) != 1) {\n" name;
5995                  pr "    fprintf (stderr, \"%%s: failed to parse size '%%s' from token %%s\\n\", __func__, tok, \"%s\");\n" name;
5996                  pr "    return -1;\n";
5997                  pr "  }\n";
5998              | FInt64 ->
5999                  pr "  if (sscanf (tok, \"%%\"SCNi64, &r->%s) != 1) {\n" name;
6000                  pr "    fprintf (stderr, \"%%s: failed to parse int '%%s' from token %%s\\n\", __func__, tok, \"%s\");\n" name;
6001                  pr "    return -1;\n";
6002                  pr "  }\n";
6003              | FOptPercent ->
6004                  pr "  if (tok[0] == '\\0')\n";
6005                  pr "    r->%s = -1;\n" name;
6006                  pr "  else if (sscanf (tok, \"%%f\", &r->%s) != 1) {\n" name;
6007                  pr "    fprintf (stderr, \"%%s: failed to parse float '%%s' from token %%s\\n\", __func__, tok, \"%s\");\n" name;
6008                  pr "    return -1;\n";
6009                  pr "  }\n";
6010              | FBuffer | FInt32 | FUInt32 | FUInt64 | FChar ->
6011                  assert false (* can never be an LVM column *)
6012             );
6013             pr "  tok = next;\n";
6014         ) cols;
6015
6016         pr "  if (tok != NULL) {\n";
6017         pr "    fprintf (stderr, \"%%s: failed: extra tokens at end of string\\n\", __func__);\n";
6018         pr "    return -1;\n";
6019         pr "  }\n";
6020         pr "  return 0;\n";
6021         pr "}\n";
6022         pr "\n";
6023
6024         pr "guestfs_int_lvm_%s_list *\n" typ;
6025         pr "parse_command_line_%ss (void)\n" typ;
6026         pr "{\n";
6027         pr "  char *out, *err;\n";
6028         pr "  char *p, *pend;\n";
6029         pr "  int r, i;\n";
6030         pr "  guestfs_int_lvm_%s_list *ret;\n" typ;
6031         pr "  void *newp;\n";
6032         pr "\n";
6033         pr "  ret = malloc (sizeof *ret);\n";
6034         pr "  if (!ret) {\n";
6035         pr "    reply_with_perror (\"malloc\");\n";
6036         pr "    return NULL;\n";
6037         pr "  }\n";
6038         pr "\n";
6039         pr "  ret->guestfs_int_lvm_%s_list_len = 0;\n" typ;
6040         pr "  ret->guestfs_int_lvm_%s_list_val = NULL;\n" typ;
6041         pr "\n";
6042         pr "  r = command (&out, &err,\n";
6043         pr "           \"/sbin/lvm\", \"%ss\",\n" typ;
6044         pr "           \"-o\", lvm_%s_cols, \"--unbuffered\", \"--noheadings\",\n" typ;
6045         pr "           \"--nosuffix\", \"--separator\", \",\", \"--units\", \"b\", NULL);\n";
6046         pr "  if (r == -1) {\n";
6047         pr "    reply_with_error (\"%%s\", err);\n";
6048         pr "    free (out);\n";
6049         pr "    free (err);\n";
6050         pr "    free (ret);\n";
6051         pr "    return NULL;\n";
6052         pr "  }\n";
6053         pr "\n";
6054         pr "  free (err);\n";
6055         pr "\n";
6056         pr "  /* Tokenize each line of the output. */\n";
6057         pr "  p = out;\n";
6058         pr "  i = 0;\n";
6059         pr "  while (p) {\n";
6060         pr "    pend = strchr (p, '\\n');       /* Get the next line of output. */\n";
6061         pr "    if (pend) {\n";
6062         pr "      *pend = '\\0';\n";
6063         pr "      pend++;\n";
6064         pr "    }\n";
6065         pr "\n";
6066         pr "    while (*p && c_isspace (*p))    /* Skip any leading whitespace. */\n";
6067         pr "      p++;\n";
6068         pr "\n";
6069         pr "    if (!*p) {                      /* Empty line?  Skip it. */\n";
6070         pr "      p = pend;\n";
6071         pr "      continue;\n";
6072         pr "    }\n";
6073         pr "\n";
6074         pr "    /* Allocate some space to store this next entry. */\n";
6075         pr "    newp = realloc (ret->guestfs_int_lvm_%s_list_val,\n" typ;
6076         pr "                sizeof (guestfs_int_lvm_%s) * (i+1));\n" typ;
6077         pr "    if (newp == NULL) {\n";
6078         pr "      reply_with_perror (\"realloc\");\n";
6079         pr "      free (ret->guestfs_int_lvm_%s_list_val);\n" typ;
6080         pr "      free (ret);\n";
6081         pr "      free (out);\n";
6082         pr "      return NULL;\n";
6083         pr "    }\n";
6084         pr "    ret->guestfs_int_lvm_%s_list_val = newp;\n" typ;
6085         pr "\n";
6086         pr "    /* Tokenize the next entry. */\n";
6087         pr "    r = lvm_tokenize_%s (p, &ret->guestfs_int_lvm_%s_list_val[i]);\n" typ typ;
6088         pr "    if (r == -1) {\n";
6089         pr "      reply_with_error (\"failed to parse output of '%ss' command\");\n" typ;
6090         pr "      free (ret->guestfs_int_lvm_%s_list_val);\n" typ;
6091         pr "      free (ret);\n";
6092         pr "      free (out);\n";
6093         pr "      return NULL;\n";
6094         pr "    }\n";
6095         pr "\n";
6096         pr "    ++i;\n";
6097         pr "    p = pend;\n";
6098         pr "  }\n";
6099         pr "\n";
6100         pr "  ret->guestfs_int_lvm_%s_list_len = i;\n" typ;
6101         pr "\n";
6102         pr "  free (out);\n";
6103         pr "  return ret;\n";
6104         pr "}\n"
6105
6106   ) ["pv", lvm_pv_cols; "vg", lvm_vg_cols; "lv", lvm_lv_cols]
6107
6108 (* Generate a list of function names, for debugging in the daemon.. *)
6109 and generate_daemon_names () =
6110   generate_header CStyle GPLv2plus;
6111
6112   pr "#include <config.h>\n";
6113   pr "\n";
6114   pr "#include \"daemon.h\"\n";
6115   pr "\n";
6116
6117   pr "/* This array is indexed by proc_nr.  See guestfs_protocol.x. */\n";
6118   pr "const char *function_names[] = {\n";
6119   List.iter (
6120     fun (name, _, proc_nr, _, _, _, _) -> pr "  [%d] = \"%s\",\n" proc_nr name
6121   ) daemon_functions;
6122   pr "};\n";
6123
6124 (* Generate the optional groups for the daemon to implement
6125  * guestfs_available.
6126  *)
6127 and generate_daemon_optgroups_c () =
6128   generate_header CStyle GPLv2plus;
6129
6130   pr "#include <config.h>\n";
6131   pr "\n";
6132   pr "#include \"daemon.h\"\n";
6133   pr "#include \"optgroups.h\"\n";
6134   pr "\n";
6135
6136   pr "struct optgroup optgroups[] = {\n";
6137   List.iter (
6138     fun (group, _) ->
6139       pr "  { \"%s\", optgroup_%s_available },\n" group group
6140   ) optgroups;
6141   pr "  { NULL, NULL }\n";
6142   pr "};\n"
6143
6144 and generate_daemon_optgroups_h () =
6145   generate_header CStyle GPLv2plus;
6146
6147   List.iter (
6148     fun (group, _) ->
6149       pr "extern int optgroup_%s_available (void);\n" group
6150   ) optgroups
6151
6152 (* Generate the tests. *)
6153 and generate_tests () =
6154   generate_header CStyle GPLv2plus;
6155
6156   pr "\
6157 #include <stdio.h>
6158 #include <stdlib.h>
6159 #include <string.h>
6160 #include <unistd.h>
6161 #include <sys/types.h>
6162 #include <fcntl.h>
6163
6164 #include \"guestfs.h\"
6165 #include \"guestfs-internal.h\"
6166
6167 static guestfs_h *g;
6168 static int suppress_error = 0;
6169
6170 static void print_error (guestfs_h *g, void *data, const char *msg)
6171 {
6172   if (!suppress_error)
6173     fprintf (stderr, \"%%s\\n\", msg);
6174 }
6175
6176 /* FIXME: nearly identical code appears in fish.c */
6177 static void print_strings (char *const *argv)
6178 {
6179   int argc;
6180
6181   for (argc = 0; argv[argc] != NULL; ++argc)
6182     printf (\"\\t%%s\\n\", argv[argc]);
6183 }
6184
6185 /*
6186 static void print_table (char const *const *argv)
6187 {
6188   int i;
6189
6190   for (i = 0; argv[i] != NULL; i += 2)
6191     printf (\"%%s: %%s\\n\", argv[i], argv[i+1]);
6192 }
6193 */
6194
6195 ";
6196
6197   (* Generate a list of commands which are not tested anywhere. *)
6198   pr "static void no_test_warnings (void)\n";
6199   pr "{\n";
6200
6201   let hash : (string, bool) Hashtbl.t = Hashtbl.create 13 in
6202   List.iter (
6203     fun (_, _, _, _, tests, _, _) ->
6204       let tests = filter_map (
6205         function
6206         | (_, (Always|If _|Unless _), test) -> Some test
6207         | (_, Disabled, _) -> None
6208       ) tests in
6209       let seq = List.concat (List.map seq_of_test tests) in
6210       let cmds_tested = List.map List.hd seq in
6211       List.iter (fun cmd -> Hashtbl.replace hash cmd true) cmds_tested
6212   ) all_functions;
6213
6214   List.iter (
6215     fun (name, _, _, _, _, _, _) ->
6216       if not (Hashtbl.mem hash name) then
6217         pr "  fprintf (stderr, \"warning: \\\"guestfs_%s\\\" has no tests\\n\");\n" name
6218   ) all_functions;
6219
6220   pr "}\n";
6221   pr "\n";
6222
6223   (* Generate the actual tests.  Note that we generate the tests
6224    * in reverse order, deliberately, so that (in general) the
6225    * newest tests run first.  This makes it quicker and easier to
6226    * debug them.
6227    *)
6228   let test_names =
6229     List.map (
6230       fun (name, _, _, flags, tests, _, _) ->
6231         mapi (generate_one_test name flags) tests
6232     ) (List.rev all_functions) in
6233   let test_names = List.concat test_names in
6234   let nr_tests = List.length test_names in
6235
6236   pr "\
6237 int main (int argc, char *argv[])
6238 {
6239   char c = 0;
6240   unsigned long int n_failed = 0;
6241   const char *filename;
6242   int fd;
6243   int nr_tests, test_num = 0;
6244
6245   setbuf (stdout, NULL);
6246
6247   no_test_warnings ();
6248
6249   g = guestfs_create ();
6250   if (g == NULL) {
6251     printf (\"guestfs_create FAILED\\n\");
6252     exit (EXIT_FAILURE);
6253   }
6254
6255   guestfs_set_error_handler (g, print_error, NULL);
6256
6257   guestfs_set_path (g, \"../appliance\");
6258
6259   filename = \"test1.img\";
6260   fd = open (filename, O_WRONLY|O_CREAT|O_NOCTTY|O_NONBLOCK|O_TRUNC, 0666);
6261   if (fd == -1) {
6262     perror (filename);
6263     exit (EXIT_FAILURE);
6264   }
6265   if (lseek (fd, %d, SEEK_SET) == -1) {
6266     perror (\"lseek\");
6267     close (fd);
6268     unlink (filename);
6269     exit (EXIT_FAILURE);
6270   }
6271   if (write (fd, &c, 1) == -1) {
6272     perror (\"write\");
6273     close (fd);
6274     unlink (filename);
6275     exit (EXIT_FAILURE);
6276   }
6277   if (close (fd) == -1) {
6278     perror (filename);
6279     unlink (filename);
6280     exit (EXIT_FAILURE);
6281   }
6282   if (guestfs_add_drive (g, filename) == -1) {
6283     printf (\"guestfs_add_drive %%s FAILED\\n\", filename);
6284     exit (EXIT_FAILURE);
6285   }
6286
6287   filename = \"test2.img\";
6288   fd = open (filename, O_WRONLY|O_CREAT|O_NOCTTY|O_NONBLOCK|O_TRUNC, 0666);
6289   if (fd == -1) {
6290     perror (filename);
6291     exit (EXIT_FAILURE);
6292   }
6293   if (lseek (fd, %d, SEEK_SET) == -1) {
6294     perror (\"lseek\");
6295     close (fd);
6296     unlink (filename);
6297     exit (EXIT_FAILURE);
6298   }
6299   if (write (fd, &c, 1) == -1) {
6300     perror (\"write\");
6301     close (fd);
6302     unlink (filename);
6303     exit (EXIT_FAILURE);
6304   }
6305   if (close (fd) == -1) {
6306     perror (filename);
6307     unlink (filename);
6308     exit (EXIT_FAILURE);
6309   }
6310   if (guestfs_add_drive (g, filename) == -1) {
6311     printf (\"guestfs_add_drive %%s FAILED\\n\", filename);
6312     exit (EXIT_FAILURE);
6313   }
6314
6315   filename = \"test3.img\";
6316   fd = open (filename, O_WRONLY|O_CREAT|O_NOCTTY|O_NONBLOCK|O_TRUNC, 0666);
6317   if (fd == -1) {
6318     perror (filename);
6319     exit (EXIT_FAILURE);
6320   }
6321   if (lseek (fd, %d, SEEK_SET) == -1) {
6322     perror (\"lseek\");
6323     close (fd);
6324     unlink (filename);
6325     exit (EXIT_FAILURE);
6326   }
6327   if (write (fd, &c, 1) == -1) {
6328     perror (\"write\");
6329     close (fd);
6330     unlink (filename);
6331     exit (EXIT_FAILURE);
6332   }
6333   if (close (fd) == -1) {
6334     perror (filename);
6335     unlink (filename);
6336     exit (EXIT_FAILURE);
6337   }
6338   if (guestfs_add_drive (g, filename) == -1) {
6339     printf (\"guestfs_add_drive %%s FAILED\\n\", filename);
6340     exit (EXIT_FAILURE);
6341   }
6342
6343   if (guestfs_add_drive_ro (g, \"../images/test.iso\") == -1) {
6344     printf (\"guestfs_add_drive_ro ../images/test.iso FAILED\\n\");
6345     exit (EXIT_FAILURE);
6346   }
6347
6348   if (guestfs_launch (g) == -1) {
6349     printf (\"guestfs_launch FAILED\\n\");
6350     exit (EXIT_FAILURE);
6351   }
6352
6353   /* Set a timeout in case qemu hangs during launch (RHBZ#505329). */
6354   alarm (600);
6355
6356   /* Cancel previous alarm. */
6357   alarm (0);
6358
6359   nr_tests = %d;
6360
6361 " (500 * 1024 * 1024) (50 * 1024 * 1024) (10 * 1024 * 1024) nr_tests;
6362
6363   iteri (
6364     fun i test_name ->
6365       pr "  test_num++;\n";
6366       pr "  printf (\"%%3d/%%3d %s\\n\", test_num, nr_tests);\n" test_name;
6367       pr "  if (%s () == -1) {\n" test_name;
6368       pr "    printf (\"%s FAILED\\n\");\n" test_name;
6369       pr "    n_failed++;\n";
6370       pr "  }\n";
6371   ) test_names;
6372   pr "\n";
6373
6374   pr "  guestfs_close (g);\n";
6375   pr "  unlink (\"test1.img\");\n";
6376   pr "  unlink (\"test2.img\");\n";
6377   pr "  unlink (\"test3.img\");\n";
6378   pr "\n";
6379
6380   pr "  if (n_failed > 0) {\n";
6381   pr "    printf (\"***** %%lu / %%d tests FAILED *****\\n\", n_failed, nr_tests);\n";
6382   pr "    exit (EXIT_FAILURE);\n";
6383   pr "  }\n";
6384   pr "\n";
6385
6386   pr "  exit (EXIT_SUCCESS);\n";
6387   pr "}\n"
6388
6389 and generate_one_test name flags i (init, prereq, test) =
6390   let test_name = sprintf "test_%s_%d" name i in
6391
6392   pr "\
6393 static int %s_skip (void)
6394 {
6395   const char *str;
6396
6397   str = getenv (\"TEST_ONLY\");
6398   if (str)
6399     return strstr (str, \"%s\") == NULL;
6400   str = getenv (\"SKIP_%s\");
6401   if (str && STREQ (str, \"1\")) return 1;
6402   str = getenv (\"SKIP_TEST_%s\");
6403   if (str && STREQ (str, \"1\")) return 1;
6404   return 0;
6405 }
6406
6407 " test_name name (String.uppercase test_name) (String.uppercase name);
6408
6409   (match prereq with
6410    | Disabled | Always -> ()
6411    | If code | Unless code ->
6412        pr "static int %s_prereq (void)\n" test_name;
6413        pr "{\n";
6414        pr "  %s\n" code;
6415        pr "}\n";
6416        pr "\n";
6417   );
6418
6419   pr "\
6420 static int %s (void)
6421 {
6422   if (%s_skip ()) {
6423     printf (\"        %%s skipped (reason: environment variable set)\\n\", \"%s\");
6424     return 0;
6425   }
6426
6427 " test_name test_name test_name;
6428
6429   (* Optional functions should only be tested if the relevant
6430    * support is available in the daemon.
6431    *)
6432   List.iter (
6433     function
6434     | Optional group ->
6435         pr "  {\n";
6436         pr "    const char *groups[] = { \"%s\", NULL };\n" group;
6437         pr "    int r;\n";
6438         pr "    suppress_error = 1;\n";
6439         pr "    r = guestfs_available (g, (char **) groups);\n";
6440         pr "    suppress_error = 0;\n";
6441         pr "    if (r == -1) {\n";
6442         pr "      printf (\"        %%s skipped (reason: group %%s not available in daemon)\\n\", \"%s\", groups[0]);\n" test_name;
6443         pr "      return 0;\n";
6444         pr "    }\n";
6445         pr "  }\n";
6446     | _ -> ()
6447   ) flags;
6448
6449   (match prereq with
6450    | Disabled ->
6451        pr "  printf (\"        %%s skipped (reason: test disabled in generator)\\n\", \"%s\");\n" test_name
6452    | If _ ->
6453        pr "  if (! %s_prereq ()) {\n" test_name;
6454        pr "    printf (\"        %%s skipped (reason: test prerequisite)\\n\", \"%s\");\n" test_name;
6455        pr "    return 0;\n";
6456        pr "  }\n";
6457        pr "\n";
6458        generate_one_test_body name i test_name init test;
6459    | Unless _ ->
6460        pr "  if (%s_prereq ()) {\n" test_name;
6461        pr "    printf (\"        %%s skipped (reason: test prerequisite)\\n\", \"%s\");\n" test_name;
6462        pr "    return 0;\n";
6463        pr "  }\n";
6464        pr "\n";
6465        generate_one_test_body name i test_name init test;
6466    | Always ->
6467        generate_one_test_body name i test_name init test
6468   );
6469
6470   pr "  return 0;\n";
6471   pr "}\n";
6472   pr "\n";
6473   test_name
6474
6475 and generate_one_test_body name i test_name init test =
6476   (match init with
6477    | InitNone (* XXX at some point, InitNone and InitEmpty became
6478                * folded together as the same thing.  Really we should
6479                * make InitNone do nothing at all, but the tests may
6480                * need to be checked to make sure this is OK.
6481                *)
6482    | InitEmpty ->
6483        pr "  /* InitNone|InitEmpty for %s */\n" test_name;
6484        List.iter (generate_test_command_call test_name)
6485          [["blockdev_setrw"; "/dev/sda"];
6486           ["umount_all"];
6487           ["lvm_remove_all"]]
6488    | InitPartition ->
6489        pr "  /* InitPartition for %s: create /dev/sda1 */\n" test_name;
6490        List.iter (generate_test_command_call test_name)
6491          [["blockdev_setrw"; "/dev/sda"];
6492           ["umount_all"];
6493           ["lvm_remove_all"];
6494           ["part_disk"; "/dev/sda"; "mbr"]]
6495    | InitBasicFS ->
6496        pr "  /* InitBasicFS for %s: create ext2 on /dev/sda1 */\n" test_name;
6497        List.iter (generate_test_command_call test_name)
6498          [["blockdev_setrw"; "/dev/sda"];
6499           ["umount_all"];
6500           ["lvm_remove_all"];
6501           ["part_disk"; "/dev/sda"; "mbr"];
6502           ["mkfs"; "ext2"; "/dev/sda1"];
6503           ["mount_options"; ""; "/dev/sda1"; "/"]]
6504    | InitBasicFSonLVM ->
6505        pr "  /* InitBasicFSonLVM for %s: create ext2 on /dev/VG/LV */\n"
6506          test_name;
6507        List.iter (generate_test_command_call test_name)
6508          [["blockdev_setrw"; "/dev/sda"];
6509           ["umount_all"];
6510           ["lvm_remove_all"];
6511           ["part_disk"; "/dev/sda"; "mbr"];
6512           ["pvcreate"; "/dev/sda1"];
6513           ["vgcreate"; "VG"; "/dev/sda1"];
6514           ["lvcreate"; "LV"; "VG"; "8"];
6515           ["mkfs"; "ext2"; "/dev/VG/LV"];
6516           ["mount_options"; ""; "/dev/VG/LV"; "/"]]
6517    | InitISOFS ->
6518        pr "  /* InitISOFS for %s */\n" test_name;
6519        List.iter (generate_test_command_call test_name)
6520          [["blockdev_setrw"; "/dev/sda"];
6521           ["umount_all"];
6522           ["lvm_remove_all"];
6523           ["mount_ro"; "/dev/sdd"; "/"]]
6524   );
6525
6526   let get_seq_last = function
6527     | [] ->
6528         failwithf "%s: you cannot use [] (empty list) when expecting a command"
6529           test_name
6530     | seq ->
6531         let seq = List.rev seq in
6532         List.rev (List.tl seq), List.hd seq
6533   in
6534
6535   match test with
6536   | TestRun seq ->
6537       pr "  /* TestRun for %s (%d) */\n" name i;
6538       List.iter (generate_test_command_call test_name) seq
6539   | TestOutput (seq, expected) ->
6540       pr "  /* TestOutput for %s (%d) */\n" name i;
6541       pr "  const char *expected = \"%s\";\n" (c_quote expected);
6542       let seq, last = get_seq_last seq in
6543       let test () =
6544         pr "    if (STRNEQ (r, expected)) {\n";
6545         pr "      fprintf (stderr, \"%s: expected \\\"%%s\\\" but got \\\"%%s\\\"\\n\", expected, r);\n" test_name;
6546         pr "      return -1;\n";
6547         pr "    }\n"
6548       in
6549       List.iter (generate_test_command_call test_name) seq;
6550       generate_test_command_call ~test test_name last
6551   | TestOutputList (seq, expected) ->
6552       pr "  /* TestOutputList for %s (%d) */\n" name i;
6553       let seq, last = get_seq_last seq in
6554       let test () =
6555         iteri (
6556           fun i str ->
6557             pr "    if (!r[%d]) {\n" i;
6558             pr "      fprintf (stderr, \"%s: short list returned from command\\n\");\n" test_name;
6559             pr "      print_strings (r);\n";
6560             pr "      return -1;\n";
6561             pr "    }\n";
6562             pr "    {\n";
6563             pr "      const char *expected = \"%s\";\n" (c_quote str);
6564             pr "      if (STRNEQ (r[%d], expected)) {\n" i;
6565             pr "        fprintf (stderr, \"%s: expected \\\"%%s\\\" but got \\\"%%s\\\"\\n\", expected, r[%d]);\n" test_name i;
6566             pr "        return -1;\n";
6567             pr "      }\n";
6568             pr "    }\n"
6569         ) expected;
6570         pr "    if (r[%d] != NULL) {\n" (List.length expected);
6571         pr "      fprintf (stderr, \"%s: extra elements returned from command\\n\");\n"
6572           test_name;
6573         pr "      print_strings (r);\n";
6574         pr "      return -1;\n";
6575         pr "    }\n"
6576       in
6577       List.iter (generate_test_command_call test_name) seq;
6578       generate_test_command_call ~test test_name last
6579   | TestOutputListOfDevices (seq, expected) ->
6580       pr "  /* TestOutputListOfDevices for %s (%d) */\n" name i;
6581       let seq, last = get_seq_last seq in
6582       let test () =
6583         iteri (
6584           fun i str ->
6585             pr "    if (!r[%d]) {\n" i;
6586             pr "      fprintf (stderr, \"%s: short list returned from command\\n\");\n" test_name;
6587             pr "      print_strings (r);\n";
6588             pr "      return -1;\n";
6589             pr "    }\n";
6590             pr "    {\n";
6591             pr "      const char *expected = \"%s\";\n" (c_quote str);
6592             pr "      r[%d][5] = 's';\n" i;
6593             pr "      if (STRNEQ (r[%d], expected)) {\n" i;
6594             pr "        fprintf (stderr, \"%s: expected \\\"%%s\\\" but got \\\"%%s\\\"\\n\", expected, r[%d]);\n" test_name i;
6595             pr "        return -1;\n";
6596             pr "      }\n";
6597             pr "    }\n"
6598         ) expected;
6599         pr "    if (r[%d] != NULL) {\n" (List.length expected);
6600         pr "      fprintf (stderr, \"%s: extra elements returned from command\\n\");\n"
6601           test_name;
6602         pr "      print_strings (r);\n";
6603         pr "      return -1;\n";
6604         pr "    }\n"
6605       in
6606       List.iter (generate_test_command_call test_name) seq;
6607       generate_test_command_call ~test test_name last
6608   | TestOutputInt (seq, expected) ->
6609       pr "  /* TestOutputInt for %s (%d) */\n" name i;
6610       let seq, last = get_seq_last seq in
6611       let test () =
6612         pr "    if (r != %d) {\n" expected;
6613         pr "      fprintf (stderr, \"%s: expected %d but got %%d\\n\","
6614           test_name expected;
6615         pr "               (int) r);\n";
6616         pr "      return -1;\n";
6617         pr "    }\n"
6618       in
6619       List.iter (generate_test_command_call test_name) seq;
6620       generate_test_command_call ~test test_name last
6621   | TestOutputIntOp (seq, op, expected) ->
6622       pr "  /* TestOutputIntOp for %s (%d) */\n" name i;
6623       let seq, last = get_seq_last seq in
6624       let test () =
6625         pr "    if (! (r %s %d)) {\n" op expected;
6626         pr "      fprintf (stderr, \"%s: expected %s %d but got %%d\\n\","
6627           test_name op expected;
6628         pr "               (int) r);\n";
6629         pr "      return -1;\n";
6630         pr "    }\n"
6631       in
6632       List.iter (generate_test_command_call test_name) seq;
6633       generate_test_command_call ~test test_name last
6634   | TestOutputTrue seq ->
6635       pr "  /* TestOutputTrue for %s (%d) */\n" name i;
6636       let seq, last = get_seq_last seq in
6637       let test () =
6638         pr "    if (!r) {\n";
6639         pr "      fprintf (stderr, \"%s: expected true, got false\\n\");\n"
6640           test_name;
6641         pr "      return -1;\n";
6642         pr "    }\n"
6643       in
6644       List.iter (generate_test_command_call test_name) seq;
6645       generate_test_command_call ~test test_name last
6646   | TestOutputFalse seq ->
6647       pr "  /* TestOutputFalse for %s (%d) */\n" name i;
6648       let seq, last = get_seq_last seq in
6649       let test () =
6650         pr "    if (r) {\n";
6651         pr "      fprintf (stderr, \"%s: expected false, got true\\n\");\n"
6652           test_name;
6653         pr "      return -1;\n";
6654         pr "    }\n"
6655       in
6656       List.iter (generate_test_command_call test_name) seq;
6657       generate_test_command_call ~test test_name last
6658   | TestOutputLength (seq, expected) ->
6659       pr "  /* TestOutputLength for %s (%d) */\n" name i;
6660       let seq, last = get_seq_last seq in
6661       let test () =
6662         pr "    int j;\n";
6663         pr "    for (j = 0; j < %d; ++j)\n" expected;
6664         pr "      if (r[j] == NULL) {\n";
6665         pr "        fprintf (stderr, \"%s: short list returned\\n\");\n"
6666           test_name;
6667         pr "        print_strings (r);\n";
6668         pr "        return -1;\n";
6669         pr "      }\n";
6670         pr "    if (r[j] != NULL) {\n";
6671         pr "      fprintf (stderr, \"%s: long list returned\\n\");\n"
6672           test_name;
6673         pr "      print_strings (r);\n";
6674         pr "      return -1;\n";
6675         pr "    }\n"
6676       in
6677       List.iter (generate_test_command_call test_name) seq;
6678       generate_test_command_call ~test test_name last
6679   | TestOutputBuffer (seq, expected) ->
6680       pr "  /* TestOutputBuffer for %s (%d) */\n" name i;
6681       pr "  const char *expected = \"%s\";\n" (c_quote expected);
6682       let seq, last = get_seq_last seq in
6683       let len = String.length expected in
6684       let test () =
6685         pr "    if (size != %d) {\n" len;
6686         pr "      fprintf (stderr, \"%s: returned size of buffer wrong, expected %d but got %%zu\\n\", size);\n" test_name len;
6687         pr "      return -1;\n";
6688         pr "    }\n";
6689         pr "    if (STRNEQLEN (r, expected, size)) {\n";
6690         pr "      fprintf (stderr, \"%s: expected \\\"%%s\\\" but got \\\"%%s\\\"\\n\", expected, r);\n" test_name;
6691         pr "      return -1;\n";
6692         pr "    }\n"
6693       in
6694       List.iter (generate_test_command_call test_name) seq;
6695       generate_test_command_call ~test test_name last
6696   | TestOutputStruct (seq, checks) ->
6697       pr "  /* TestOutputStruct for %s (%d) */\n" name i;
6698       let seq, last = get_seq_last seq in
6699       let test () =
6700         List.iter (
6701           function
6702           | CompareWithInt (field, expected) ->
6703               pr "    if (r->%s != %d) {\n" field expected;
6704               pr "      fprintf (stderr, \"%s: %s was %%d, expected %d\\n\",\n"
6705                 test_name field expected;
6706               pr "               (int) r->%s);\n" field;
6707               pr "      return -1;\n";
6708               pr "    }\n"
6709           | CompareWithIntOp (field, op, expected) ->
6710               pr "    if (!(r->%s %s %d)) {\n" field op expected;
6711               pr "      fprintf (stderr, \"%s: %s was %%d, expected %s %d\\n\",\n"
6712                 test_name field op expected;
6713               pr "               (int) r->%s);\n" field;
6714               pr "      return -1;\n";
6715               pr "    }\n"
6716           | CompareWithString (field, expected) ->
6717               pr "    if (STRNEQ (r->%s, \"%s\")) {\n" field expected;
6718               pr "      fprintf (stderr, \"%s: %s was \"%%s\", expected \"%s\"\\n\",\n"
6719                 test_name field expected;
6720               pr "               r->%s);\n" field;
6721               pr "      return -1;\n";
6722               pr "    }\n"
6723           | CompareFieldsIntEq (field1, field2) ->
6724               pr "    if (r->%s != r->%s) {\n" field1 field2;
6725               pr "      fprintf (stderr, \"%s: %s (%%d) <> %s (%%d)\\n\",\n"
6726                 test_name field1 field2;
6727               pr "               (int) r->%s, (int) r->%s);\n" field1 field2;
6728               pr "      return -1;\n";
6729               pr "    }\n"
6730           | CompareFieldsStrEq (field1, field2) ->
6731               pr "    if (STRNEQ (r->%s, r->%s)) {\n" field1 field2;
6732               pr "      fprintf (stderr, \"%s: %s (\"%%s\") <> %s (\"%%s\")\\n\",\n"
6733                 test_name field1 field2;
6734               pr "               r->%s, r->%s);\n" field1 field2;
6735               pr "      return -1;\n";
6736               pr "    }\n"
6737         ) checks
6738       in
6739       List.iter (generate_test_command_call test_name) seq;
6740       generate_test_command_call ~test test_name last
6741   | TestLastFail seq ->
6742       pr "  /* TestLastFail for %s (%d) */\n" name i;
6743       let seq, last = get_seq_last seq in
6744       List.iter (generate_test_command_call test_name) seq;
6745       generate_test_command_call test_name ~expect_error:true last
6746
6747 (* Generate the code to run a command, leaving the result in 'r'.
6748  * If you expect to get an error then you should set expect_error:true.
6749  *)
6750 and generate_test_command_call ?(expect_error = false) ?test test_name cmd =
6751   match cmd with
6752   | [] -> assert false
6753   | name :: args ->
6754       (* Look up the command to find out what args/ret it has. *)
6755       let style =
6756         try
6757           let _, style, _, _, _, _, _ =
6758             List.find (fun (n, _, _, _, _, _, _) -> n = name) all_functions in
6759           style
6760         with Not_found ->
6761           failwithf "%s: in test, command %s was not found" test_name name in
6762
6763       if List.length (snd style) <> List.length args then
6764         failwithf "%s: in test, wrong number of args given to %s"
6765           test_name name;
6766
6767       pr "  {\n";
6768
6769       List.iter (
6770         function
6771         | OptString n, "NULL" -> ()
6772         | Pathname n, arg
6773         | Device n, arg
6774         | Dev_or_Path n, arg
6775         | String n, arg
6776         | OptString n, arg ->
6777             pr "    const char *%s = \"%s\";\n" n (c_quote arg);
6778         | Int _, _
6779         | Int64 _, _
6780         | Bool _, _
6781         | FileIn _, _ | FileOut _, _ -> ()
6782         | StringList n, "" | DeviceList n, "" ->
6783             pr "    const char *const %s[1] = { NULL };\n" n
6784         | StringList n, arg | DeviceList n, arg ->
6785             let strs = string_split " " arg in
6786             iteri (
6787               fun i str ->
6788                 pr "    const char *%s_%d = \"%s\";\n" n i (c_quote str);
6789             ) strs;
6790             pr "    const char *const %s[] = {\n" n;
6791             iteri (
6792               fun i _ -> pr "      %s_%d,\n" n i
6793             ) strs;
6794             pr "      NULL\n";
6795             pr "    };\n";
6796       ) (List.combine (snd style) args);
6797
6798       let error_code =
6799         match fst style with
6800         | RErr | RInt _ | RBool _ -> pr "    int r;\n"; "-1"
6801         | RInt64 _ -> pr "    int64_t r;\n"; "-1"
6802         | RConstString _ | RConstOptString _ ->
6803             pr "    const char *r;\n"; "NULL"
6804         | RString _ -> pr "    char *r;\n"; "NULL"
6805         | RStringList _ | RHashtable _ ->
6806             pr "    char **r;\n";
6807             pr "    int i;\n";
6808             "NULL"
6809         | RStruct (_, typ) ->
6810             pr "    struct guestfs_%s *r;\n" typ; "NULL"
6811         | RStructList (_, typ) ->
6812             pr "    struct guestfs_%s_list *r;\n" typ; "NULL"
6813         | RBufferOut _ ->
6814             pr "    char *r;\n";
6815             pr "    size_t size;\n";
6816             "NULL" in
6817
6818       pr "    suppress_error = %d;\n" (if expect_error then 1 else 0);
6819       pr "    r = guestfs_%s (g" name;
6820
6821       (* Generate the parameters. *)
6822       List.iter (
6823         function
6824         | OptString _, "NULL" -> pr ", NULL"
6825         | Pathname n, _
6826         | Device n, _ | Dev_or_Path n, _
6827         | String n, _
6828         | OptString n, _ ->
6829             pr ", %s" n
6830         | FileIn _, arg | FileOut _, arg ->
6831             pr ", \"%s\"" (c_quote arg)
6832         | StringList n, _ | DeviceList n, _ ->
6833             pr ", (char **) %s" n
6834         | Int _, arg ->
6835             let i =
6836               try int_of_string arg
6837               with Failure "int_of_string" ->
6838                 failwithf "%s: expecting an int, but got '%s'" test_name arg in
6839             pr ", %d" i
6840         | Int64 _, arg ->
6841             let i =
6842               try Int64.of_string arg
6843               with Failure "int_of_string" ->
6844                 failwithf "%s: expecting an int64, but got '%s'" test_name arg in
6845             pr ", %Ld" i
6846         | Bool _, arg ->
6847             let b = bool_of_string arg in pr ", %d" (if b then 1 else 0)
6848       ) (List.combine (snd style) args);
6849
6850       (match fst style with
6851        | RBufferOut _ -> pr ", &size"
6852        | _ -> ()
6853       );
6854
6855       pr ");\n";
6856
6857       if not expect_error then
6858         pr "    if (r == %s)\n" error_code
6859       else
6860         pr "    if (r != %s)\n" error_code;
6861       pr "      return -1;\n";
6862
6863       (* Insert the test code. *)
6864       (match test with
6865        | None -> ()
6866        | Some f -> f ()
6867       );
6868
6869       (match fst style with
6870        | RErr | RInt _ | RInt64 _ | RBool _
6871        | RConstString _ | RConstOptString _ -> ()
6872        | RString _ | RBufferOut _ -> pr "    free (r);\n"
6873        | RStringList _ | RHashtable _ ->
6874            pr "    for (i = 0; r[i] != NULL; ++i)\n";
6875            pr "      free (r[i]);\n";
6876            pr "    free (r);\n"
6877        | RStruct (_, typ) ->
6878            pr "    guestfs_free_%s (r);\n" typ
6879        | RStructList (_, typ) ->
6880            pr "    guestfs_free_%s_list (r);\n" typ
6881       );
6882
6883       pr "  }\n"
6884
6885 and c_quote str =
6886   let str = replace_str str "\r" "\\r" in
6887   let str = replace_str str "\n" "\\n" in
6888   let str = replace_str str "\t" "\\t" in
6889   let str = replace_str str "\000" "\\0" in
6890   str
6891
6892 (* Generate a lot of different functions for guestfish. *)
6893 and generate_fish_cmds () =
6894   generate_header CStyle GPLv2plus;
6895
6896   let all_functions =
6897     List.filter (
6898       fun (_, _, _, flags, _, _, _) -> not (List.mem NotInFish flags)
6899     ) all_functions in
6900   let all_functions_sorted =
6901     List.filter (
6902       fun (_, _, _, flags, _, _, _) -> not (List.mem NotInFish flags)
6903     ) all_functions_sorted in
6904
6905   pr "#include <config.h>\n";
6906   pr "\n";
6907   pr "#include <stdio.h>\n";
6908   pr "#include <stdlib.h>\n";
6909   pr "#include <string.h>\n";
6910   pr "#include <inttypes.h>\n";
6911   pr "\n";
6912   pr "#include <guestfs.h>\n";
6913   pr "#include \"c-ctype.h\"\n";
6914   pr "#include \"full-write.h\"\n";
6915   pr "#include \"xstrtol.h\"\n";
6916   pr "#include \"fish.h\"\n";
6917   pr "\n";
6918
6919   (* list_commands function, which implements guestfish -h *)
6920   pr "void list_commands (void)\n";
6921   pr "{\n";
6922   pr "  printf (\"    %%-16s     %%s\\n\", _(\"Command\"), _(\"Description\"));\n";
6923   pr "  list_builtin_commands ();\n";
6924   List.iter (
6925     fun (name, _, _, flags, _, shortdesc, _) ->
6926       let name = replace_char name '_' '-' in
6927       pr "  printf (\"%%-20s %%s\\n\", \"%s\", _(\"%s\"));\n"
6928         name shortdesc
6929   ) all_functions_sorted;
6930   pr "  printf (\"    %%s\\n\",";
6931   pr "          _(\"Use -h <cmd> / help <cmd> to show detailed help for a command.\"));\n";
6932   pr "}\n";
6933   pr "\n";
6934
6935   (* display_command function, which implements guestfish -h cmd *)
6936   pr "void display_command (const char *cmd)\n";
6937   pr "{\n";
6938   List.iter (
6939     fun (name, style, _, flags, _, shortdesc, longdesc) ->
6940       let name2 = replace_char name '_' '-' in
6941       let alias =
6942         try find_map (function FishAlias n -> Some n | _ -> None) flags
6943         with Not_found -> name in
6944       let longdesc = replace_str longdesc "C<guestfs_" "C<" in
6945       let synopsis =
6946         match snd style with
6947         | [] -> name2
6948         | args ->
6949             sprintf "%s %s"
6950               name2 (String.concat " " (List.map name_of_argt args)) in
6951
6952       let warnings =
6953         if List.mem ProtocolLimitWarning flags then
6954           ("\n\n" ^ protocol_limit_warning)
6955         else "" in
6956
6957       (* For DangerWillRobinson commands, we should probably have
6958        * guestfish prompt before allowing you to use them (especially
6959        * in interactive mode). XXX
6960        *)
6961       let warnings =
6962         warnings ^
6963           if List.mem DangerWillRobinson flags then
6964             ("\n\n" ^ danger_will_robinson)
6965           else "" in
6966
6967       let warnings =
6968         warnings ^
6969           match deprecation_notice flags with
6970           | None -> ""
6971           | Some txt -> "\n\n" ^ txt in
6972
6973       let describe_alias =
6974         if name <> alias then
6975           sprintf "\n\nYou can use '%s' as an alias for this command." alias
6976         else "" in
6977
6978       pr "  if (";
6979       pr "STRCASEEQ (cmd, \"%s\")" name;
6980       if name <> name2 then
6981         pr " || STRCASEEQ (cmd, \"%s\")" name2;
6982       if name <> alias then
6983         pr " || STRCASEEQ (cmd, \"%s\")" alias;
6984       pr ")\n";
6985       pr "    pod2text (\"%s\", _(\"%s\"), %S);\n"
6986         name2 shortdesc
6987         ("=head1 SYNOPSIS\n\n " ^ synopsis ^ "\n\n" ^
6988          "=head1 DESCRIPTION\n\n" ^
6989          longdesc ^ warnings ^ describe_alias);
6990       pr "  else\n"
6991   ) all_functions;
6992   pr "    display_builtin_command (cmd);\n";
6993   pr "}\n";
6994   pr "\n";
6995
6996   let emit_print_list_function typ =
6997     pr "static void print_%s_list (struct guestfs_%s_list *%ss)\n"
6998       typ typ typ;
6999     pr "{\n";
7000     pr "  unsigned int i;\n";
7001     pr "\n";
7002     pr "  for (i = 0; i < %ss->len; ++i) {\n" typ;
7003     pr "    printf (\"[%%d] = {\\n\", i);\n";
7004     pr "    print_%s_indent (&%ss->val[i], \"  \");\n" typ typ;
7005     pr "    printf (\"}\\n\");\n";
7006     pr "  }\n";
7007     pr "}\n";
7008     pr "\n";
7009   in
7010
7011   (* print_* functions *)
7012   List.iter (
7013     fun (typ, cols) ->
7014       let needs_i =
7015         List.exists (function (_, (FUUID|FBuffer)) -> true | _ -> false) cols in
7016
7017       pr "static void print_%s_indent (struct guestfs_%s *%s, const char *indent)\n" typ typ typ;
7018       pr "{\n";
7019       if needs_i then (
7020         pr "  unsigned int i;\n";
7021         pr "\n"
7022       );
7023       List.iter (
7024         function
7025         | name, FString ->
7026             pr "  printf (\"%%s%s: %%s\\n\", indent, %s->%s);\n" name typ name
7027         | name, FUUID ->
7028             pr "  printf (\"%%s%s: \", indent);\n" name;
7029             pr "  for (i = 0; i < 32; ++i)\n";
7030             pr "    printf (\"%%c\", %s->%s[i]);\n" typ name;
7031             pr "  printf (\"\\n\");\n"
7032         | name, FBuffer ->
7033             pr "  printf (\"%%s%s: \", indent);\n" name;
7034             pr "  for (i = 0; i < %s->%s_len; ++i)\n" typ name;
7035             pr "    if (c_isprint (%s->%s[i]))\n" typ name;
7036             pr "      printf (\"%%c\", %s->%s[i]);\n" typ name;
7037             pr "    else\n";
7038             pr "      printf (\"\\\\x%%02x\", %s->%s[i]);\n" typ name;
7039             pr "  printf (\"\\n\");\n"
7040         | name, (FUInt64|FBytes) ->
7041             pr "  printf (\"%%s%s: %%\" PRIu64 \"\\n\", indent, %s->%s);\n"
7042               name typ name
7043         | name, FInt64 ->
7044             pr "  printf (\"%%s%s: %%\" PRIi64 \"\\n\", indent, %s->%s);\n"
7045               name typ name
7046         | name, FUInt32 ->
7047             pr "  printf (\"%%s%s: %%\" PRIu32 \"\\n\", indent, %s->%s);\n"
7048               name typ name
7049         | name, FInt32 ->
7050             pr "  printf (\"%%s%s: %%\" PRIi32 \"\\n\", indent, %s->%s);\n"
7051               name typ name
7052         | name, FChar ->
7053             pr "  printf (\"%%s%s: %%c\\n\", indent, %s->%s);\n"
7054               name typ name
7055         | name, FOptPercent ->
7056             pr "  if (%s->%s >= 0) printf (\"%%s%s: %%g %%%%\\n\", indent, %s->%s);\n"
7057               typ name name typ name;
7058             pr "  else printf (\"%%s%s: \\n\", indent);\n" name
7059       ) cols;
7060       pr "}\n";
7061       pr "\n";
7062   ) structs;
7063
7064   (* Emit a print_TYPE_list function definition only if that function is used. *)
7065   List.iter (
7066     function
7067     | typ, (RStructListOnly | RStructAndList) ->
7068         (* generate the function for typ *)
7069         emit_print_list_function typ
7070     | typ, _ -> () (* empty *)
7071   ) (rstructs_used_by all_functions);
7072
7073   (* Emit a print_TYPE function definition only if that function is used. *)
7074   List.iter (
7075     function
7076     | typ, (RStructOnly | RStructAndList) ->
7077         pr "static void print_%s (struct guestfs_%s *%s)\n" typ typ typ;
7078         pr "{\n";
7079         pr "  print_%s_indent (%s, \"\");\n" typ typ;
7080         pr "}\n";
7081         pr "\n";
7082     | typ, _ -> () (* empty *)
7083   ) (rstructs_used_by all_functions);
7084
7085   (* run_<action> actions *)
7086   List.iter (
7087     fun (name, style, _, flags, _, _, _) ->
7088       pr "static int run_%s (const char *cmd, int argc, char *argv[])\n" name;
7089       pr "{\n";
7090       (match fst style with
7091        | RErr
7092        | RInt _
7093        | RBool _ -> pr "  int r;\n"
7094        | RInt64 _ -> pr "  int64_t r;\n"
7095        | RConstString _ | RConstOptString _ -> pr "  const char *r;\n"
7096        | RString _ -> pr "  char *r;\n"
7097        | RStringList _ | RHashtable _ -> pr "  char **r;\n"
7098        | RStruct (_, typ) -> pr "  struct guestfs_%s *r;\n" typ
7099        | RStructList (_, typ) -> pr "  struct guestfs_%s_list *r;\n" typ
7100        | RBufferOut _ ->
7101            pr "  char *r;\n";
7102            pr "  size_t size;\n";
7103       );
7104       List.iter (
7105         function
7106         | Device n
7107         | String n
7108         | OptString n
7109         | FileIn n
7110         | FileOut n -> pr "  const char *%s;\n" n
7111         | Pathname n
7112         | Dev_or_Path n -> pr "  char *%s;\n" n
7113         | StringList n | DeviceList n -> pr "  char **%s;\n" n
7114         | Bool n -> pr "  int %s;\n" n
7115         | Int n -> pr "  int %s;\n" n
7116         | Int64 n -> pr "  int64_t %s;\n" n
7117       ) (snd style);
7118
7119       (* Check and convert parameters. *)
7120       let argc_expected = List.length (snd style) in
7121       pr "  if (argc != %d) {\n" argc_expected;
7122       pr "    fprintf (stderr, _(\"%%s should have %%d parameter(s)\\n\"), cmd, %d);\n"
7123         argc_expected;
7124       pr "    fprintf (stderr, _(\"type 'help %%s' for help on %%s\\n\"), cmd, cmd);\n";
7125       pr "    return -1;\n";
7126       pr "  }\n";
7127
7128       let parse_integer fn fntyp rtyp range name i =
7129         pr "  {\n";
7130         pr "    strtol_error xerr;\n";
7131         pr "    %s r;\n" fntyp;
7132         pr "\n";
7133         pr "    xerr = %s (argv[%d], NULL, 0, &r, \"\");\n" fn i;
7134         pr "    if (xerr != LONGINT_OK) {\n";
7135         pr "      fprintf (stderr,\n";
7136         pr "               _(\"%%s: %%s: invalid integer parameter (%%s returned %%d)\\n\"),\n";
7137         pr "               cmd, \"%s\", \"%s\", xerr);\n" name fn;
7138         pr "      return -1;\n";
7139         pr "    }\n";
7140         (match range with
7141          | None -> ()
7142          | Some (min, max, comment) ->
7143              pr "    /* %s */\n" comment;
7144              pr "    if (r < %s || r > %s) {\n" min max;
7145              pr "      fprintf (stderr, _(\"%%s: %%s: integer out of range\\n\"), cmd, \"%s\");\n"
7146                name;
7147              pr "      return -1;\n";
7148              pr "    }\n";
7149              pr "    /* The check above should ensure this assignment does not overflow. */\n";
7150         );
7151         pr "    %s = r;\n" name;
7152         pr "  }\n";
7153       in
7154
7155       iteri (
7156         fun i ->
7157           function
7158           | Device name
7159           | String name ->
7160               pr "  %s = argv[%d];\n" name i
7161           | Pathname name
7162           | Dev_or_Path name ->
7163               pr "  %s = resolve_win_path (argv[%d]);\n" name i;
7164               pr "  if (%s == NULL) return -1;\n" name
7165           | OptString name ->
7166               pr "  %s = STRNEQ (argv[%d], \"\") ? argv[%d] : NULL;\n"
7167                 name i i
7168           | FileIn name ->
7169               pr "  %s = STRNEQ (argv[%d], \"-\") ? argv[%d] : \"/dev/stdin\";\n"
7170                 name i i
7171           | FileOut name ->
7172               pr "  %s = STRNEQ (argv[%d], \"-\") ? argv[%d] : \"/dev/stdout\";\n"
7173                 name i i
7174           | StringList name | DeviceList name ->
7175               pr "  %s = parse_string_list (argv[%d]);\n" name i;
7176               pr "  if (%s == NULL) return -1;\n" name;
7177           | Bool name ->
7178               pr "  %s = is_true (argv[%d]) ? 1 : 0;\n" name i
7179           | Int name ->
7180               let range =
7181                 let min = "(-(2LL<<30))"
7182                 and max = "((2LL<<30)-1)"
7183                 and comment =
7184                   "The Int type in the generator is a signed 31 bit int." in
7185                 Some (min, max, comment) in
7186               parse_integer "xstrtol" "long" "int" range name i
7187           | Int64 name ->
7188               parse_integer "xstrtoll" "long long" "int64_t" None name i
7189       ) (snd style);
7190
7191       (* Call C API function. *)
7192       let fn =
7193         try find_map (function FishAction n -> Some n | _ -> None) flags
7194         with Not_found -> sprintf "guestfs_%s" name in
7195       pr "  r = %s " fn;
7196       generate_c_call_args ~handle:"g" style;
7197       pr ";\n";
7198
7199       List.iter (
7200         function
7201         | Device name | String name
7202         | OptString name | FileIn name | FileOut name | Bool name
7203         | Int name | Int64 name -> ()
7204         | Pathname name | Dev_or_Path name ->
7205             pr "  free (%s);\n" name
7206         | StringList name | DeviceList name ->
7207             pr "  free_strings (%s);\n" name
7208       ) (snd style);
7209
7210       (* Check return value for errors and display command results. *)
7211       (match fst style with
7212        | RErr -> pr "  return r;\n"
7213        | RInt _ ->
7214            pr "  if (r == -1) return -1;\n";
7215            pr "  printf (\"%%d\\n\", r);\n";
7216            pr "  return 0;\n"
7217        | RInt64 _ ->
7218            pr "  if (r == -1) return -1;\n";
7219            pr "  printf (\"%%\" PRIi64 \"\\n\", r);\n";
7220            pr "  return 0;\n"
7221        | RBool _ ->
7222            pr "  if (r == -1) return -1;\n";
7223            pr "  if (r) printf (\"true\\n\"); else printf (\"false\\n\");\n";
7224            pr "  return 0;\n"
7225        | RConstString _ ->
7226            pr "  if (r == NULL) return -1;\n";
7227            pr "  printf (\"%%s\\n\", r);\n";
7228            pr "  return 0;\n"
7229        | RConstOptString _ ->
7230            pr "  printf (\"%%s\\n\", r ? : \"(null)\");\n";
7231            pr "  return 0;\n"
7232        | RString _ ->
7233            pr "  if (r == NULL) return -1;\n";
7234            pr "  printf (\"%%s\\n\", r);\n";
7235            pr "  free (r);\n";
7236            pr "  return 0;\n"
7237        | RStringList _ ->
7238            pr "  if (r == NULL) return -1;\n";
7239            pr "  print_strings (r);\n";
7240            pr "  free_strings (r);\n";
7241            pr "  return 0;\n"
7242        | RStruct (_, typ) ->
7243            pr "  if (r == NULL) return -1;\n";
7244            pr "  print_%s (r);\n" typ;
7245            pr "  guestfs_free_%s (r);\n" typ;
7246            pr "  return 0;\n"
7247        | RStructList (_, typ) ->
7248            pr "  if (r == NULL) return -1;\n";
7249            pr "  print_%s_list (r);\n" typ;
7250            pr "  guestfs_free_%s_list (r);\n" typ;
7251            pr "  return 0;\n"
7252        | RHashtable _ ->
7253            pr "  if (r == NULL) return -1;\n";
7254            pr "  print_table (r);\n";
7255            pr "  free_strings (r);\n";
7256            pr "  return 0;\n"
7257        | RBufferOut _ ->
7258            pr "  if (r == NULL) return -1;\n";
7259            pr "  if (full_write (1, r, size) != size) {\n";
7260            pr "    perror (\"write\");\n";
7261            pr "    free (r);\n";
7262            pr "    return -1;\n";
7263            pr "  }\n";
7264            pr "  free (r);\n";
7265            pr "  return 0;\n"
7266       );
7267       pr "}\n";
7268       pr "\n"
7269   ) all_functions;
7270
7271   (* run_action function *)
7272   pr "int run_action (const char *cmd, int argc, char *argv[])\n";
7273   pr "{\n";
7274   List.iter (
7275     fun (name, _, _, flags, _, _, _) ->
7276       let name2 = replace_char name '_' '-' in
7277       let alias =
7278         try find_map (function FishAlias n -> Some n | _ -> None) flags
7279         with Not_found -> name in
7280       pr "  if (";
7281       pr "STRCASEEQ (cmd, \"%s\")" name;
7282       if name <> name2 then
7283         pr " || STRCASEEQ (cmd, \"%s\")" name2;
7284       if name <> alias then
7285         pr " || STRCASEEQ (cmd, \"%s\")" alias;
7286       pr ")\n";
7287       pr "    return run_%s (cmd, argc, argv);\n" name;
7288       pr "  else\n";
7289   ) all_functions;
7290   pr "    {\n";
7291   pr "      fprintf (stderr, _(\"%%s: unknown command\\n\"), cmd);\n";
7292   pr "      return -1;\n";
7293   pr "    }\n";
7294   pr "  return 0;\n";
7295   pr "}\n";
7296   pr "\n"
7297
7298 (* Readline completion for guestfish. *)
7299 and generate_fish_completion () =
7300   generate_header CStyle GPLv2plus;
7301
7302   let all_functions =
7303     List.filter (
7304       fun (_, _, _, flags, _, _, _) -> not (List.mem NotInFish flags)
7305     ) all_functions in
7306
7307   pr "\
7308 #include <config.h>
7309
7310 #include <stdio.h>
7311 #include <stdlib.h>
7312 #include <string.h>
7313
7314 #ifdef HAVE_LIBREADLINE
7315 #include <readline/readline.h>
7316 #endif
7317
7318 #include \"fish.h\"
7319
7320 #ifdef HAVE_LIBREADLINE
7321
7322 static const char *const commands[] = {
7323   BUILTIN_COMMANDS_FOR_COMPLETION,
7324 ";
7325
7326   (* Get the commands, including the aliases.  They don't need to be
7327    * sorted - the generator() function just does a dumb linear search.
7328    *)
7329   let commands =
7330     List.map (
7331       fun (name, _, _, flags, _, _, _) ->
7332         let name2 = replace_char name '_' '-' in
7333         let alias =
7334           try find_map (function FishAlias n -> Some n | _ -> None) flags
7335           with Not_found -> name in
7336
7337         if name <> alias then [name2; alias] else [name2]
7338     ) all_functions in
7339   let commands = List.flatten commands in
7340
7341   List.iter (pr "  \"%s\",\n") commands;
7342
7343   pr "  NULL
7344 };
7345
7346 static char *
7347 generator (const char *text, int state)
7348 {
7349   static int index, len;
7350   const char *name;
7351
7352   if (!state) {
7353     index = 0;
7354     len = strlen (text);
7355   }
7356
7357   rl_attempted_completion_over = 1;
7358
7359   while ((name = commands[index]) != NULL) {
7360     index++;
7361     if (STRCASEEQLEN (name, text, len))
7362       return strdup (name);
7363   }
7364
7365   return NULL;
7366 }
7367
7368 #endif /* HAVE_LIBREADLINE */
7369
7370 char **do_completion (const char *text, int start, int end)
7371 {
7372   char **matches = NULL;
7373
7374 #ifdef HAVE_LIBREADLINE
7375   rl_completion_append_character = ' ';
7376
7377   if (start == 0)
7378     matches = rl_completion_matches (text, generator);
7379   else if (complete_dest_paths)
7380     matches = rl_completion_matches (text, complete_dest_paths_generator);
7381 #endif
7382
7383   return matches;
7384 }
7385 ";
7386
7387 (* Generate the POD documentation for guestfish. *)
7388 and generate_fish_actions_pod () =
7389   let all_functions_sorted =
7390     List.filter (
7391       fun (_, _, _, flags, _, _, _) ->
7392         not (List.mem NotInFish flags || List.mem NotInDocs flags)
7393     ) all_functions_sorted in
7394
7395   let rex = Str.regexp "C<guestfs_\\([^>]+\\)>" in
7396
7397   List.iter (
7398     fun (name, style, _, flags, _, _, longdesc) ->
7399       let longdesc =
7400         Str.global_substitute rex (
7401           fun s ->
7402             let sub =
7403               try Str.matched_group 1 s
7404               with Not_found ->
7405                 failwithf "error substituting C<guestfs_...> in longdesc of function %s" name in
7406             "C<" ^ replace_char sub '_' '-' ^ ">"
7407         ) longdesc in
7408       let name = replace_char name '_' '-' in
7409       let alias =
7410         try find_map (function FishAlias n -> Some n | _ -> None) flags
7411         with Not_found -> name in
7412
7413       pr "=head2 %s" name;
7414       if name <> alias then
7415         pr " | %s" alias;
7416       pr "\n";
7417       pr "\n";
7418       pr " %s" name;
7419       List.iter (
7420         function
7421         | Pathname n | Device n | Dev_or_Path n | String n -> pr " %s" n
7422         | OptString n -> pr " %s" n
7423         | StringList n | DeviceList n -> pr " '%s ...'" n
7424         | Bool _ -> pr " true|false"
7425         | Int n -> pr " %s" n
7426         | Int64 n -> pr " %s" n
7427         | FileIn n | FileOut n -> pr " (%s|-)" n
7428       ) (snd style);
7429       pr "\n";
7430       pr "\n";
7431       pr "%s\n\n" longdesc;
7432
7433       if List.exists (function FileIn _ | FileOut _ -> true
7434                       | _ -> false) (snd style) then
7435         pr "Use C<-> instead of a filename to read/write from stdin/stdout.\n\n";
7436
7437       if List.mem ProtocolLimitWarning flags then
7438         pr "%s\n\n" protocol_limit_warning;
7439
7440       if List.mem DangerWillRobinson flags then
7441         pr "%s\n\n" danger_will_robinson;
7442
7443       match deprecation_notice flags with
7444       | None -> ()
7445       | Some txt -> pr "%s\n\n" txt
7446   ) all_functions_sorted
7447
7448 (* Generate a C function prototype. *)
7449 and generate_prototype ?(extern = true) ?(static = false) ?(semicolon = true)
7450     ?(single_line = false) ?(newline = false) ?(in_daemon = false)
7451     ?(prefix = "")
7452     ?handle name style =
7453   if extern then pr "extern ";
7454   if static then pr "static ";
7455   (match fst style with
7456    | RErr -> pr "int "
7457    | RInt _ -> pr "int "
7458    | RInt64 _ -> pr "int64_t "
7459    | RBool _ -> pr "int "
7460    | RConstString _ | RConstOptString _ -> pr "const char *"
7461    | RString _ | RBufferOut _ -> pr "char *"
7462    | RStringList _ | RHashtable _ -> pr "char **"
7463    | RStruct (_, typ) ->
7464        if not in_daemon then pr "struct guestfs_%s *" typ
7465        else pr "guestfs_int_%s *" typ
7466    | RStructList (_, typ) ->
7467        if not in_daemon then pr "struct guestfs_%s_list *" typ
7468        else pr "guestfs_int_%s_list *" typ
7469   );
7470   let is_RBufferOut = match fst style with RBufferOut _ -> true | _ -> false in
7471   pr "%s%s (" prefix name;
7472   if handle = None && List.length (snd style) = 0 && not is_RBufferOut then
7473     pr "void"
7474   else (
7475     let comma = ref false in
7476     (match handle with
7477      | None -> ()
7478      | Some handle -> pr "guestfs_h *%s" handle; comma := true
7479     );
7480     let next () =
7481       if !comma then (
7482         if single_line then pr ", " else pr ",\n\t\t"
7483       );
7484       comma := true
7485     in
7486     List.iter (
7487       function
7488       | Pathname n
7489       | Device n | Dev_or_Path n
7490       | String n
7491       | OptString n ->
7492           next ();
7493           pr "const char *%s" n
7494       | StringList n | DeviceList n ->
7495           next ();
7496           pr "char *const *%s" n
7497       | Bool n -> next (); pr "int %s" n
7498       | Int n -> next (); pr "int %s" n
7499       | Int64 n -> next (); pr "int64_t %s" n
7500       | FileIn n
7501       | FileOut n ->
7502           if not in_daemon then (next (); pr "const char *%s" n)
7503     ) (snd style);
7504     if is_RBufferOut then (next (); pr "size_t *size_r");
7505   );
7506   pr ")";
7507   if semicolon then pr ";";
7508   if newline then pr "\n"
7509
7510 (* Generate C call arguments, eg "(handle, foo, bar)" *)
7511 and generate_c_call_args ?handle ?(decl = false) style =
7512   pr "(";
7513   let comma = ref false in
7514   let next () =
7515     if !comma then pr ", ";
7516     comma := true
7517   in
7518   (match handle with
7519    | None -> ()
7520    | Some handle -> pr "%s" handle; comma := true
7521   );
7522   List.iter (
7523     fun arg ->
7524       next ();
7525       pr "%s" (name_of_argt arg)
7526   ) (snd style);
7527   (* For RBufferOut calls, add implicit &size parameter. *)
7528   if not decl then (
7529     match fst style with
7530     | RBufferOut _ ->
7531         next ();
7532         pr "&size"
7533     | _ -> ()
7534   );
7535   pr ")"
7536
7537 (* Generate the OCaml bindings interface. *)
7538 and generate_ocaml_mli () =
7539   generate_header OCamlStyle LGPLv2plus;
7540
7541   pr "\
7542 (** For API documentation you should refer to the C API
7543     in the guestfs(3) manual page.  The OCaml API uses almost
7544     exactly the same calls. *)
7545
7546 type t
7547 (** A [guestfs_h] handle. *)
7548
7549 exception Error of string
7550 (** This exception is raised when there is an error. *)
7551
7552 exception Handle_closed of string
7553 (** This exception is raised if you use a {!Guestfs.t} handle
7554     after calling {!close} on it.  The string is the name of
7555     the function. *)
7556
7557 val create : unit -> t
7558 (** Create a {!Guestfs.t} handle. *)
7559
7560 val close : t -> unit
7561 (** Close the {!Guestfs.t} handle and free up all resources used
7562     by it immediately.
7563
7564     Handles are closed by the garbage collector when they become
7565     unreferenced, but callers can call this in order to provide
7566     predictable cleanup. *)
7567
7568 ";
7569   generate_ocaml_structure_decls ();
7570
7571   (* The actions. *)
7572   List.iter (
7573     fun (name, style, _, _, _, shortdesc, _) ->
7574       generate_ocaml_prototype name style;
7575       pr "(** %s *)\n" shortdesc;
7576       pr "\n"
7577   ) all_functions_sorted
7578
7579 (* Generate the OCaml bindings implementation. *)
7580 and generate_ocaml_ml () =
7581   generate_header OCamlStyle LGPLv2plus;
7582
7583   pr "\
7584 type t
7585
7586 exception Error of string
7587 exception Handle_closed of string
7588
7589 external create : unit -> t = \"ocaml_guestfs_create\"
7590 external close : t -> unit = \"ocaml_guestfs_close\"
7591
7592 (* Give the exceptions names, so they can be raised from the C code. *)
7593 let () =
7594   Callback.register_exception \"ocaml_guestfs_error\" (Error \"\");
7595   Callback.register_exception \"ocaml_guestfs_closed\" (Handle_closed \"\")
7596
7597 ";
7598
7599   generate_ocaml_structure_decls ();
7600
7601   (* The actions. *)
7602   List.iter (
7603     fun (name, style, _, _, _, shortdesc, _) ->
7604       generate_ocaml_prototype ~is_external:true name style;
7605   ) all_functions_sorted
7606
7607 (* Generate the OCaml bindings C implementation. *)
7608 and generate_ocaml_c () =
7609   generate_header CStyle LGPLv2plus;
7610
7611   pr "\
7612 #include <stdio.h>
7613 #include <stdlib.h>
7614 #include <string.h>
7615
7616 #include <caml/config.h>
7617 #include <caml/alloc.h>
7618 #include <caml/callback.h>
7619 #include <caml/fail.h>
7620 #include <caml/memory.h>
7621 #include <caml/mlvalues.h>
7622 #include <caml/signals.h>
7623
7624 #include <guestfs.h>
7625
7626 #include \"guestfs_c.h\"
7627
7628 /* Copy a hashtable of string pairs into an assoc-list.  We return
7629  * the list in reverse order, but hashtables aren't supposed to be
7630  * ordered anyway.
7631  */
7632 static CAMLprim value
7633 copy_table (char * const * argv)
7634 {
7635   CAMLparam0 ();
7636   CAMLlocal5 (rv, pairv, kv, vv, cons);
7637   int i;
7638
7639   rv = Val_int (0);
7640   for (i = 0; argv[i] != NULL; i += 2) {
7641     kv = caml_copy_string (argv[i]);
7642     vv = caml_copy_string (argv[i+1]);
7643     pairv = caml_alloc (2, 0);
7644     Store_field (pairv, 0, kv);
7645     Store_field (pairv, 1, vv);
7646     cons = caml_alloc (2, 0);
7647     Store_field (cons, 1, rv);
7648     rv = cons;
7649     Store_field (cons, 0, pairv);
7650   }
7651
7652   CAMLreturn (rv);
7653 }
7654
7655 ";
7656
7657   (* Struct copy functions. *)
7658
7659   let emit_ocaml_copy_list_function typ =
7660     pr "static CAMLprim value\n";
7661     pr "copy_%s_list (const struct guestfs_%s_list *%ss)\n" typ typ typ;
7662     pr "{\n";
7663     pr "  CAMLparam0 ();\n";
7664     pr "  CAMLlocal2 (rv, v);\n";
7665     pr "  unsigned int i;\n";
7666     pr "\n";
7667     pr "  if (%ss->len == 0)\n" typ;
7668     pr "    CAMLreturn (Atom (0));\n";
7669     pr "  else {\n";
7670     pr "    rv = caml_alloc (%ss->len, 0);\n" typ;
7671     pr "    for (i = 0; i < %ss->len; ++i) {\n" typ;
7672     pr "      v = copy_%s (&%ss->val[i]);\n" typ typ;
7673     pr "      caml_modify (&Field (rv, i), v);\n";
7674     pr "    }\n";
7675     pr "    CAMLreturn (rv);\n";
7676     pr "  }\n";
7677     pr "}\n";
7678     pr "\n";
7679   in
7680
7681   List.iter (
7682     fun (typ, cols) ->
7683       let has_optpercent_col =
7684         List.exists (function (_, FOptPercent) -> true | _ -> false) cols in
7685
7686       pr "static CAMLprim value\n";
7687       pr "copy_%s (const struct guestfs_%s *%s)\n" typ typ typ;
7688       pr "{\n";
7689       pr "  CAMLparam0 ();\n";
7690       if has_optpercent_col then
7691         pr "  CAMLlocal3 (rv, v, v2);\n"
7692       else
7693         pr "  CAMLlocal2 (rv, v);\n";
7694       pr "\n";
7695       pr "  rv = caml_alloc (%d, 0);\n" (List.length cols);
7696       iteri (
7697         fun i col ->
7698           (match col with
7699            | name, FString ->
7700                pr "  v = caml_copy_string (%s->%s);\n" typ name
7701            | name, FBuffer ->
7702                pr "  v = caml_alloc_string (%s->%s_len);\n" typ name;
7703                pr "  memcpy (String_val (v), %s->%s, %s->%s_len);\n"
7704                  typ name typ name
7705            | name, FUUID ->
7706                pr "  v = caml_alloc_string (32);\n";
7707                pr "  memcpy (String_val (v), %s->%s, 32);\n" typ name
7708            | name, (FBytes|FInt64|FUInt64) ->
7709                pr "  v = caml_copy_int64 (%s->%s);\n" typ name
7710            | name, (FInt32|FUInt32) ->
7711                pr "  v = caml_copy_int32 (%s->%s);\n" typ name
7712            | name, FOptPercent ->
7713                pr "  if (%s->%s >= 0) { /* Some %s */\n" typ name name;
7714                pr "    v2 = caml_copy_double (%s->%s);\n" typ name;
7715                pr "    v = caml_alloc (1, 0);\n";
7716                pr "    Store_field (v, 0, v2);\n";
7717                pr "  } else /* None */\n";
7718                pr "    v = Val_int (0);\n";
7719            | name, FChar ->
7720                pr "  v = Val_int (%s->%s);\n" typ name
7721           );
7722           pr "  Store_field (rv, %d, v);\n" i
7723       ) cols;
7724       pr "  CAMLreturn (rv);\n";
7725       pr "}\n";
7726       pr "\n";
7727   ) structs;
7728
7729   (* Emit a copy_TYPE_list function definition only if that function is used. *)
7730   List.iter (
7731     function
7732     | typ, (RStructListOnly | RStructAndList) ->
7733         (* generate the function for typ *)
7734         emit_ocaml_copy_list_function typ
7735     | typ, _ -> () (* empty *)
7736   ) (rstructs_used_by all_functions);
7737
7738   (* The wrappers. *)
7739   List.iter (
7740     fun (name, style, _, _, _, _, _) ->
7741       pr "/* Automatically generated wrapper for function\n";
7742       pr " * ";
7743       generate_ocaml_prototype name style;
7744       pr " */\n";
7745       pr "\n";
7746
7747       let params =
7748         "gv" :: List.map (fun arg -> name_of_argt arg ^ "v") (snd style) in
7749
7750       let needs_extra_vs =
7751         match fst style with RConstOptString _ -> true | _ -> false in
7752
7753       pr "/* Emit prototype to appease gcc's -Wmissing-prototypes. */\n";
7754       pr "CAMLprim value ocaml_guestfs_%s (value %s" name (List.hd params);
7755       List.iter (pr ", value %s") (List.tl params); pr ");\n";
7756       pr "\n";
7757
7758       pr "CAMLprim value\n";
7759       pr "ocaml_guestfs_%s (value %s" name (List.hd params);
7760       List.iter (pr ", value %s") (List.tl params);
7761       pr ")\n";
7762       pr "{\n";
7763
7764       (match params with
7765        | [p1; p2; p3; p4; p5] ->
7766            pr "  CAMLparam5 (%s);\n" (String.concat ", " params)
7767        | p1 :: p2 :: p3 :: p4 :: p5 :: rest ->
7768            pr "  CAMLparam5 (%s);\n" (String.concat ", " [p1; p2; p3; p4; p5]);
7769            pr "  CAMLxparam%d (%s);\n"
7770              (List.length rest) (String.concat ", " rest)
7771        | ps ->
7772            pr "  CAMLparam%d (%s);\n" (List.length ps) (String.concat ", " ps)
7773       );
7774       if not needs_extra_vs then
7775         pr "  CAMLlocal1 (rv);\n"
7776       else
7777         pr "  CAMLlocal3 (rv, v, v2);\n";
7778       pr "\n";
7779
7780       pr "  guestfs_h *g = Guestfs_val (gv);\n";
7781       pr "  if (g == NULL)\n";
7782       pr "    ocaml_guestfs_raise_closed (\"%s\");\n" name;
7783       pr "\n";
7784
7785       List.iter (
7786         function
7787         | Pathname n
7788         | Device n | Dev_or_Path n
7789         | String n
7790         | FileIn n
7791         | FileOut n ->
7792             pr "  const char *%s = String_val (%sv);\n" n n
7793         | OptString n ->
7794             pr "  const char *%s =\n" n;
7795             pr "    %sv != Val_int (0) ? String_val (Field (%sv, 0)) : NULL;\n"
7796               n n
7797         | StringList n | DeviceList n ->
7798             pr "  char **%s = ocaml_guestfs_strings_val (g, %sv);\n" n n
7799         | Bool n ->
7800             pr "  int %s = Bool_val (%sv);\n" n n
7801         | Int n ->
7802             pr "  int %s = Int_val (%sv);\n" n n
7803         | Int64 n ->
7804             pr "  int64_t %s = Int64_val (%sv);\n" n n
7805       ) (snd style);
7806       let error_code =
7807         match fst style with
7808         | RErr -> pr "  int r;\n"; "-1"
7809         | RInt _ -> pr "  int r;\n"; "-1"
7810         | RInt64 _ -> pr "  int64_t r;\n"; "-1"
7811         | RBool _ -> pr "  int r;\n"; "-1"
7812         | RConstString _ | RConstOptString _ ->
7813             pr "  const char *r;\n"; "NULL"
7814         | RString _ -> pr "  char *r;\n"; "NULL"
7815         | RStringList _ ->
7816             pr "  int i;\n";
7817             pr "  char **r;\n";
7818             "NULL"
7819         | RStruct (_, typ) ->
7820             pr "  struct guestfs_%s *r;\n" typ; "NULL"
7821         | RStructList (_, typ) ->
7822             pr "  struct guestfs_%s_list *r;\n" typ; "NULL"
7823         | RHashtable _ ->
7824             pr "  int i;\n";
7825             pr "  char **r;\n";
7826             "NULL"
7827         | RBufferOut _ ->
7828             pr "  char *r;\n";
7829             pr "  size_t size;\n";
7830             "NULL" in
7831       pr "\n";
7832
7833       pr "  caml_enter_blocking_section ();\n";
7834       pr "  r = guestfs_%s " name;
7835       generate_c_call_args ~handle:"g" style;
7836       pr ";\n";
7837       pr "  caml_leave_blocking_section ();\n";
7838
7839       List.iter (
7840         function
7841         | StringList n | DeviceList n ->
7842             pr "  ocaml_guestfs_free_strings (%s);\n" n;
7843         | Pathname _ | Device _ | Dev_or_Path _ | String _ | OptString _
7844         | Bool _ | Int _ | Int64 _
7845         | FileIn _ | FileOut _ -> ()
7846       ) (snd style);
7847
7848       pr "  if (r == %s)\n" error_code;
7849       pr "    ocaml_guestfs_raise_error (g, \"%s\");\n" name;
7850       pr "\n";
7851
7852       (match fst style with
7853        | RErr -> pr "  rv = Val_unit;\n"
7854        | RInt _ -> pr "  rv = Val_int (r);\n"
7855        | RInt64 _ ->
7856            pr "  rv = caml_copy_int64 (r);\n"
7857        | RBool _ -> pr "  rv = Val_bool (r);\n"
7858        | RConstString _ ->
7859            pr "  rv = caml_copy_string (r);\n"
7860        | RConstOptString _ ->
7861            pr "  if (r) { /* Some string */\n";
7862            pr "    v = caml_alloc (1, 0);\n";
7863            pr "    v2 = caml_copy_string (r);\n";
7864            pr "    Store_field (v, 0, v2);\n";
7865            pr "  } else /* None */\n";
7866            pr "    v = Val_int (0);\n";
7867        | RString _ ->
7868            pr "  rv = caml_copy_string (r);\n";
7869            pr "  free (r);\n"
7870        | RStringList _ ->
7871            pr "  rv = caml_copy_string_array ((const char **) r);\n";
7872            pr "  for (i = 0; r[i] != NULL; ++i) free (r[i]);\n";
7873            pr "  free (r);\n"
7874        | RStruct (_, typ) ->
7875            pr "  rv = copy_%s (r);\n" typ;
7876            pr "  guestfs_free_%s (r);\n" typ;
7877        | RStructList (_, typ) ->
7878            pr "  rv = copy_%s_list (r);\n" typ;
7879            pr "  guestfs_free_%s_list (r);\n" typ;
7880        | RHashtable _ ->
7881            pr "  rv = copy_table (r);\n";
7882            pr "  for (i = 0; r[i] != NULL; ++i) free (r[i]);\n";
7883            pr "  free (r);\n";
7884        | RBufferOut _ ->
7885            pr "  rv = caml_alloc_string (size);\n";
7886            pr "  memcpy (String_val (rv), r, size);\n";
7887       );
7888
7889       pr "  CAMLreturn (rv);\n";
7890       pr "}\n";
7891       pr "\n";
7892
7893       if List.length params > 5 then (
7894         pr "/* Emit prototype to appease gcc's -Wmissing-prototypes. */\n";
7895         pr "CAMLprim value ";
7896         pr "ocaml_guestfs_%s_byte (value *argv, int argn);\n" name;
7897         pr "CAMLprim value\n";
7898         pr "ocaml_guestfs_%s_byte (value *argv, int argn)\n" name;
7899         pr "{\n";
7900         pr "  return ocaml_guestfs_%s (argv[0]" name;
7901         iteri (fun i _ -> pr ", argv[%d]" i) (List.tl params);
7902         pr ");\n";
7903         pr "}\n";
7904         pr "\n"
7905       )
7906   ) all_functions_sorted
7907
7908 and generate_ocaml_structure_decls () =
7909   List.iter (
7910     fun (typ, cols) ->
7911       pr "type %s = {\n" typ;
7912       List.iter (
7913         function
7914         | name, FString -> pr "  %s : string;\n" name
7915         | name, FBuffer -> pr "  %s : string;\n" name
7916         | name, FUUID -> pr "  %s : string;\n" name
7917         | name, (FBytes|FInt64|FUInt64) -> pr "  %s : int64;\n" name
7918         | name, (FInt32|FUInt32) -> pr "  %s : int32;\n" name
7919         | name, FChar -> pr "  %s : char;\n" name
7920         | name, FOptPercent -> pr "  %s : float option;\n" name
7921       ) cols;
7922       pr "}\n";
7923       pr "\n"
7924   ) structs
7925
7926 and generate_ocaml_prototype ?(is_external = false) name style =
7927   if is_external then pr "external " else pr "val ";
7928   pr "%s : t -> " name;
7929   List.iter (
7930     function
7931     | Pathname _ | Device _ | Dev_or_Path _ | String _ | FileIn _ | FileOut _ -> pr "string -> "
7932     | OptString _ -> pr "string option -> "
7933     | StringList _ | DeviceList _ -> pr "string array -> "
7934     | Bool _ -> pr "bool -> "
7935     | Int _ -> pr "int -> "
7936     | Int64 _ -> pr "int64 -> "
7937   ) (snd style);
7938   (match fst style with
7939    | RErr -> pr "unit" (* all errors are turned into exceptions *)
7940    | RInt _ -> pr "int"
7941    | RInt64 _ -> pr "int64"
7942    | RBool _ -> pr "bool"
7943    | RConstString _ -> pr "string"
7944    | RConstOptString _ -> pr "string option"
7945    | RString _ | RBufferOut _ -> pr "string"
7946    | RStringList _ -> pr "string array"
7947    | RStruct (_, typ) -> pr "%s" typ
7948    | RStructList (_, typ) -> pr "%s array" typ
7949    | RHashtable _ -> pr "(string * string) list"
7950   );
7951   if is_external then (
7952     pr " = ";
7953     if List.length (snd style) + 1 > 5 then
7954       pr "\"ocaml_guestfs_%s_byte\" " name;
7955     pr "\"ocaml_guestfs_%s\"" name
7956   );
7957   pr "\n"
7958
7959 (* Generate Perl xs code, a sort of crazy variation of C with macros. *)
7960 and generate_perl_xs () =
7961   generate_header CStyle LGPLv2plus;
7962
7963   pr "\
7964 #include \"EXTERN.h\"
7965 #include \"perl.h\"
7966 #include \"XSUB.h\"
7967
7968 #include <guestfs.h>
7969
7970 #ifndef PRId64
7971 #define PRId64 \"lld\"
7972 #endif
7973
7974 static SV *
7975 my_newSVll(long long val) {
7976 #ifdef USE_64_BIT_ALL
7977   return newSViv(val);
7978 #else
7979   char buf[100];
7980   int len;
7981   len = snprintf(buf, 100, \"%%\" PRId64, val);
7982   return newSVpv(buf, len);
7983 #endif
7984 }
7985
7986 #ifndef PRIu64
7987 #define PRIu64 \"llu\"
7988 #endif
7989
7990 static SV *
7991 my_newSVull(unsigned long long val) {
7992 #ifdef USE_64_BIT_ALL
7993   return newSVuv(val);
7994 #else
7995   char buf[100];
7996   int len;
7997   len = snprintf(buf, 100, \"%%\" PRIu64, val);
7998   return newSVpv(buf, len);
7999 #endif
8000 }
8001
8002 /* http://www.perlmonks.org/?node_id=680842 */
8003 static char **
8004 XS_unpack_charPtrPtr (SV *arg) {
8005   char **ret;
8006   AV *av;
8007   I32 i;
8008
8009   if (!arg || !SvOK (arg) || !SvROK (arg) || SvTYPE (SvRV (arg)) != SVt_PVAV)
8010     croak (\"array reference expected\");
8011
8012   av = (AV *)SvRV (arg);
8013   ret = malloc ((av_len (av) + 1 + 1) * sizeof (char *));
8014   if (!ret)
8015     croak (\"malloc failed\");
8016
8017   for (i = 0; i <= av_len (av); i++) {
8018     SV **elem = av_fetch (av, i, 0);
8019
8020     if (!elem || !*elem)
8021       croak (\"missing element in list\");
8022
8023     ret[i] = SvPV_nolen (*elem);
8024   }
8025
8026   ret[i] = NULL;
8027
8028   return ret;
8029 }
8030
8031 MODULE = Sys::Guestfs  PACKAGE = Sys::Guestfs
8032
8033 PROTOTYPES: ENABLE
8034
8035 guestfs_h *
8036 _create ()
8037    CODE:
8038       RETVAL = guestfs_create ();
8039       if (!RETVAL)
8040         croak (\"could not create guestfs handle\");
8041       guestfs_set_error_handler (RETVAL, NULL, NULL);
8042  OUTPUT:
8043       RETVAL
8044
8045 void
8046 DESTROY (g)
8047       guestfs_h *g;
8048  PPCODE:
8049       guestfs_close (g);
8050
8051 ";
8052
8053   List.iter (
8054     fun (name, style, _, _, _, _, _) ->
8055       (match fst style with
8056        | RErr -> pr "void\n"
8057        | RInt _ -> pr "SV *\n"
8058        | RInt64 _ -> pr "SV *\n"
8059        | RBool _ -> pr "SV *\n"
8060        | RConstString _ -> pr "SV *\n"
8061        | RConstOptString _ -> pr "SV *\n"
8062        | RString _ -> pr "SV *\n"
8063        | RBufferOut _ -> pr "SV *\n"
8064        | RStringList _
8065        | RStruct _ | RStructList _
8066        | RHashtable _ ->
8067            pr "void\n" (* all lists returned implictly on the stack *)
8068       );
8069       (* Call and arguments. *)
8070       pr "%s " name;
8071       generate_c_call_args ~handle:"g" ~decl:true style;
8072       pr "\n";
8073       pr "      guestfs_h *g;\n";
8074       iteri (
8075         fun i ->
8076           function
8077           | Pathname n | Device n | Dev_or_Path n | String n | FileIn n | FileOut n ->
8078               pr "      char *%s;\n" n
8079           | OptString n ->
8080               (* http://www.perlmonks.org/?node_id=554277
8081                * Note that the implicit handle argument means we have
8082                * to add 1 to the ST(x) operator.
8083                *)
8084               pr "      char *%s = SvOK(ST(%d)) ? SvPV_nolen(ST(%d)) : NULL;\n" n (i+1) (i+1)
8085           | StringList n | DeviceList n -> pr "      char **%s;\n" n
8086           | Bool n -> pr "      int %s;\n" n
8087           | Int n -> pr "      int %s;\n" n
8088           | Int64 n -> pr "      int64_t %s;\n" n
8089       ) (snd style);
8090
8091       let do_cleanups () =
8092         List.iter (
8093           function
8094           | Pathname _ | Device _ | Dev_or_Path _ | String _ | OptString _
8095           | Bool _ | Int _ | Int64 _
8096           | FileIn _ | FileOut _ -> ()
8097           | StringList n | DeviceList n -> pr "      free (%s);\n" n
8098         ) (snd style)
8099       in
8100
8101       (* Code. *)
8102       (match fst style with
8103        | RErr ->
8104            pr "PREINIT:\n";
8105            pr "      int r;\n";
8106            pr " PPCODE:\n";
8107            pr "      r = guestfs_%s " name;
8108            generate_c_call_args ~handle:"g" style;
8109            pr ";\n";
8110            do_cleanups ();
8111            pr "      if (r == -1)\n";
8112            pr "        croak (\"%s: %%s\", guestfs_last_error (g));\n" name;
8113        | RInt n
8114        | RBool n ->
8115            pr "PREINIT:\n";
8116            pr "      int %s;\n" n;
8117            pr "   CODE:\n";
8118            pr "      %s = guestfs_%s " n name;
8119            generate_c_call_args ~handle:"g" style;
8120            pr ";\n";
8121            do_cleanups ();
8122            pr "      if (%s == -1)\n" n;
8123            pr "        croak (\"%s: %%s\", guestfs_last_error (g));\n" name;
8124            pr "      RETVAL = newSViv (%s);\n" n;
8125            pr " OUTPUT:\n";
8126            pr "      RETVAL\n"
8127        | RInt64 n ->
8128            pr "PREINIT:\n";
8129            pr "      int64_t %s;\n" n;
8130            pr "   CODE:\n";
8131            pr "      %s = guestfs_%s " n name;
8132            generate_c_call_args ~handle:"g" style;
8133            pr ";\n";
8134            do_cleanups ();
8135            pr "      if (%s == -1)\n" n;
8136            pr "        croak (\"%s: %%s\", guestfs_last_error (g));\n" name;
8137            pr "      RETVAL = my_newSVll (%s);\n" n;
8138            pr " OUTPUT:\n";
8139            pr "      RETVAL\n"
8140        | RConstString n ->
8141            pr "PREINIT:\n";
8142            pr "      const char *%s;\n" n;
8143            pr "   CODE:\n";
8144            pr "      %s = guestfs_%s " n name;
8145            generate_c_call_args ~handle:"g" style;
8146            pr ";\n";
8147            do_cleanups ();
8148            pr "      if (%s == NULL)\n" n;
8149            pr "        croak (\"%s: %%s\", guestfs_last_error (g));\n" name;
8150            pr "      RETVAL = newSVpv (%s, 0);\n" n;
8151            pr " OUTPUT:\n";
8152            pr "      RETVAL\n"
8153        | RConstOptString n ->
8154            pr "PREINIT:\n";
8155            pr "      const char *%s;\n" n;
8156            pr "   CODE:\n";
8157            pr "      %s = guestfs_%s " n name;
8158            generate_c_call_args ~handle:"g" style;
8159            pr ";\n";
8160            do_cleanups ();
8161            pr "      if (%s == NULL)\n" n;
8162            pr "        RETVAL = &PL_sv_undef;\n";
8163            pr "      else\n";
8164            pr "        RETVAL = newSVpv (%s, 0);\n" n;
8165            pr " OUTPUT:\n";
8166            pr "      RETVAL\n"
8167        | RString n ->
8168            pr "PREINIT:\n";
8169            pr "      char *%s;\n" n;
8170            pr "   CODE:\n";
8171            pr "      %s = guestfs_%s " n name;
8172            generate_c_call_args ~handle:"g" style;
8173            pr ";\n";
8174            do_cleanups ();
8175            pr "      if (%s == NULL)\n" n;
8176            pr "        croak (\"%s: %%s\", guestfs_last_error (g));\n" name;
8177            pr "      RETVAL = newSVpv (%s, 0);\n" n;
8178            pr "      free (%s);\n" n;
8179            pr " OUTPUT:\n";
8180            pr "      RETVAL\n"
8181        | RStringList n | RHashtable n ->
8182            pr "PREINIT:\n";
8183            pr "      char **%s;\n" n;
8184            pr "      int i, n;\n";
8185            pr " PPCODE:\n";
8186            pr "      %s = guestfs_%s " n name;
8187            generate_c_call_args ~handle:"g" style;
8188            pr ";\n";
8189            do_cleanups ();
8190            pr "      if (%s == NULL)\n" n;
8191            pr "        croak (\"%s: %%s\", guestfs_last_error (g));\n" name;
8192            pr "      for (n = 0; %s[n] != NULL; ++n) /**/;\n" n;
8193            pr "      EXTEND (SP, n);\n";
8194            pr "      for (i = 0; i < n; ++i) {\n";
8195            pr "        PUSHs (sv_2mortal (newSVpv (%s[i], 0)));\n" n;
8196            pr "        free (%s[i]);\n" n;
8197            pr "      }\n";
8198            pr "      free (%s);\n" n;
8199        | RStruct (n, typ) ->
8200            let cols = cols_of_struct typ in
8201            generate_perl_struct_code typ cols name style n do_cleanups
8202        | RStructList (n, typ) ->
8203            let cols = cols_of_struct typ in
8204            generate_perl_struct_list_code typ cols name style n do_cleanups
8205        | RBufferOut n ->
8206            pr "PREINIT:\n";
8207            pr "      char *%s;\n" n;
8208            pr "      size_t size;\n";
8209            pr "   CODE:\n";
8210            pr "      %s = guestfs_%s " n name;
8211            generate_c_call_args ~handle:"g" style;
8212            pr ";\n";
8213            do_cleanups ();
8214            pr "      if (%s == NULL)\n" n;
8215            pr "        croak (\"%s: %%s\", guestfs_last_error (g));\n" name;
8216            pr "      RETVAL = newSVpv (%s, size);\n" n;
8217            pr "      free (%s);\n" n;
8218            pr " OUTPUT:\n";
8219            pr "      RETVAL\n"
8220       );
8221
8222       pr "\n"
8223   ) all_functions
8224
8225 and generate_perl_struct_list_code typ cols name style n do_cleanups =
8226   pr "PREINIT:\n";
8227   pr "      struct guestfs_%s_list *%s;\n" typ n;
8228   pr "      int i;\n";
8229   pr "      HV *hv;\n";
8230   pr " PPCODE:\n";
8231   pr "      %s = guestfs_%s " n name;
8232   generate_c_call_args ~handle:"g" style;
8233   pr ";\n";
8234   do_cleanups ();
8235   pr "      if (%s == NULL)\n" n;
8236   pr "        croak (\"%s: %%s\", guestfs_last_error (g));\n" name;
8237   pr "      EXTEND (SP, %s->len);\n" n;
8238   pr "      for (i = 0; i < %s->len; ++i) {\n" n;
8239   pr "        hv = newHV ();\n";
8240   List.iter (
8241     function
8242     | name, FString ->
8243         pr "        (void) hv_store (hv, \"%s\", %d, newSVpv (%s->val[i].%s, 0), 0);\n"
8244           name (String.length name) n name
8245     | name, FUUID ->
8246         pr "        (void) hv_store (hv, \"%s\", %d, newSVpv (%s->val[i].%s, 32), 0);\n"
8247           name (String.length name) n name
8248     | name, FBuffer ->
8249         pr "        (void) hv_store (hv, \"%s\", %d, newSVpv (%s->val[i].%s, %s->val[i].%s_len), 0);\n"
8250           name (String.length name) n name n name
8251     | name, (FBytes|FUInt64) ->
8252         pr "        (void) hv_store (hv, \"%s\", %d, my_newSVull (%s->val[i].%s), 0);\n"
8253           name (String.length name) n name
8254     | name, FInt64 ->
8255         pr "        (void) hv_store (hv, \"%s\", %d, my_newSVll (%s->val[i].%s), 0);\n"
8256           name (String.length name) n name
8257     | name, (FInt32|FUInt32) ->
8258         pr "        (void) hv_store (hv, \"%s\", %d, newSVnv (%s->val[i].%s), 0);\n"
8259           name (String.length name) n name
8260     | name, FChar ->
8261         pr "        (void) hv_store (hv, \"%s\", %d, newSVpv (&%s->val[i].%s, 1), 0);\n"
8262           name (String.length name) n name
8263     | name, FOptPercent ->
8264         pr "        (void) hv_store (hv, \"%s\", %d, newSVnv (%s->val[i].%s), 0);\n"
8265           name (String.length name) n name
8266   ) cols;
8267   pr "        PUSHs (sv_2mortal (newRV ((SV *) hv)));\n";
8268   pr "      }\n";
8269   pr "      guestfs_free_%s_list (%s);\n" typ n
8270
8271 and generate_perl_struct_code typ cols name style n do_cleanups =
8272   pr "PREINIT:\n";
8273   pr "      struct guestfs_%s *%s;\n" typ n;
8274   pr " PPCODE:\n";
8275   pr "      %s = guestfs_%s " n name;
8276   generate_c_call_args ~handle:"g" style;
8277   pr ";\n";
8278   do_cleanups ();
8279   pr "      if (%s == NULL)\n" n;
8280   pr "        croak (\"%s: %%s\", guestfs_last_error (g));\n" name;
8281   pr "      EXTEND (SP, 2 * %d);\n" (List.length cols);
8282   List.iter (
8283     fun ((name, _) as col) ->
8284       pr "      PUSHs (sv_2mortal (newSVpv (\"%s\", 0)));\n" name;
8285
8286       match col with
8287       | name, FString ->
8288           pr "      PUSHs (sv_2mortal (newSVpv (%s->%s, 0)));\n"
8289             n name
8290       | name, FBuffer ->
8291           pr "      PUSHs (sv_2mortal (newSVpv (%s->%s, %s->%s_len)));\n"
8292             n name n name
8293       | name, FUUID ->
8294           pr "      PUSHs (sv_2mortal (newSVpv (%s->%s, 32)));\n"
8295             n name
8296       | name, (FBytes|FUInt64) ->
8297           pr "      PUSHs (sv_2mortal (my_newSVull (%s->%s)));\n"
8298             n name
8299       | name, FInt64 ->
8300           pr "      PUSHs (sv_2mortal (my_newSVll (%s->%s)));\n"
8301             n name
8302       | name, (FInt32|FUInt32) ->
8303           pr "      PUSHs (sv_2mortal (newSVnv (%s->%s)));\n"
8304             n name
8305       | name, FChar ->
8306           pr "      PUSHs (sv_2mortal (newSVpv (&%s->%s, 1)));\n"
8307             n name
8308       | name, FOptPercent ->
8309           pr "      PUSHs (sv_2mortal (newSVnv (%s->%s)));\n"
8310             n name
8311   ) cols;
8312   pr "      free (%s);\n" n
8313
8314 (* Generate Sys/Guestfs.pm. *)
8315 and generate_perl_pm () =
8316   generate_header HashStyle LGPLv2plus;
8317
8318   pr "\
8319 =pod
8320
8321 =head1 NAME
8322
8323 Sys::Guestfs - Perl bindings for libguestfs
8324
8325 =head1 SYNOPSIS
8326
8327  use Sys::Guestfs;
8328
8329  my $h = Sys::Guestfs->new ();
8330  $h->add_drive ('guest.img');
8331  $h->launch ();
8332  $h->mount ('/dev/sda1', '/');
8333  $h->touch ('/hello');
8334  $h->sync ();
8335
8336 =head1 DESCRIPTION
8337
8338 The C<Sys::Guestfs> module provides a Perl XS binding to the
8339 libguestfs API for examining and modifying virtual machine
8340 disk images.
8341
8342 Amongst the things this is good for: making batch configuration
8343 changes to guests, getting disk used/free statistics (see also:
8344 virt-df), migrating between virtualization systems (see also:
8345 virt-p2v), performing partial backups, performing partial guest
8346 clones, cloning guests and changing registry/UUID/hostname info, and
8347 much else besides.
8348
8349 Libguestfs uses Linux kernel and qemu code, and can access any type of
8350 guest filesystem that Linux and qemu can, including but not limited
8351 to: ext2/3/4, btrfs, FAT and NTFS, LVM, many different disk partition
8352 schemes, qcow, qcow2, vmdk.
8353
8354 Libguestfs provides ways to enumerate guest storage (eg. partitions,
8355 LVs, what filesystem is in each LV, etc.).  It can also run commands
8356 in the context of the guest.  Also you can access filesystems over FTP.
8357
8358 See also L<Sys::Guestfs::Lib(3)> for a set of useful library
8359 functions for using libguestfs from Perl, including integration
8360 with libvirt.
8361
8362 =head1 ERRORS
8363
8364 All errors turn into calls to C<croak> (see L<Carp(3)>).
8365
8366 =head1 METHODS
8367
8368 =over 4
8369
8370 =cut
8371
8372 package Sys::Guestfs;
8373
8374 use strict;
8375 use warnings;
8376
8377 require XSLoader;
8378 XSLoader::load ('Sys::Guestfs');
8379
8380 =item $h = Sys::Guestfs->new ();
8381
8382 Create a new guestfs handle.
8383
8384 =cut
8385
8386 sub new {
8387   my $proto = shift;
8388   my $class = ref ($proto) || $proto;
8389
8390   my $self = Sys::Guestfs::_create ();
8391   bless $self, $class;
8392   return $self;
8393 }
8394
8395 ";
8396
8397   (* Actions.  We only need to print documentation for these as
8398    * they are pulled in from the XS code automatically.
8399    *)
8400   List.iter (
8401     fun (name, style, _, flags, _, _, longdesc) ->
8402       if not (List.mem NotInDocs flags) then (
8403         let longdesc = replace_str longdesc "C<guestfs_" "C<$h-E<gt>" in
8404         pr "=item ";
8405         generate_perl_prototype name style;
8406         pr "\n\n";
8407         pr "%s\n\n" longdesc;
8408         if List.mem ProtocolLimitWarning flags then
8409           pr "%s\n\n" protocol_limit_warning;
8410         if List.mem DangerWillRobinson flags then
8411           pr "%s\n\n" danger_will_robinson;
8412         match deprecation_notice flags with
8413         | None -> ()
8414         | Some txt -> pr "%s\n\n" txt
8415       )
8416   ) all_functions_sorted;
8417
8418   (* End of file. *)
8419   pr "\
8420 =cut
8421
8422 1;
8423
8424 =back
8425
8426 =head1 COPYRIGHT
8427
8428 Copyright (C) %s Red Hat Inc.
8429
8430 =head1 LICENSE
8431
8432 Please see the file COPYING.LIB for the full license.
8433
8434 =head1 SEE ALSO
8435
8436 L<guestfs(3)>,
8437 L<guestfish(1)>,
8438 L<http://libguestfs.org>,
8439 L<Sys::Guestfs::Lib(3)>.
8440
8441 =cut
8442 " copyright_years
8443
8444 and generate_perl_prototype name style =
8445   (match fst style with
8446    | RErr -> ()
8447    | RBool n
8448    | RInt n
8449    | RInt64 n
8450    | RConstString n
8451    | RConstOptString n
8452    | RString n
8453    | RBufferOut n -> pr "$%s = " n
8454    | RStruct (n,_)
8455    | RHashtable n -> pr "%%%s = " n
8456    | RStringList n
8457    | RStructList (n,_) -> pr "@%s = " n
8458   );
8459   pr "$h->%s (" name;
8460   let comma = ref false in
8461   List.iter (
8462     fun arg ->
8463       if !comma then pr ", ";
8464       comma := true;
8465       match arg with
8466       | Pathname n | Device n | Dev_or_Path n | String n
8467       | OptString n | Bool n | Int n | Int64 n | FileIn n | FileOut n ->
8468           pr "$%s" n
8469       | StringList n | DeviceList n ->
8470           pr "\\@%s" n
8471   ) (snd style);
8472   pr ");"
8473
8474 (* Generate Python C module. *)
8475 and generate_python_c () =
8476   generate_header CStyle LGPLv2plus;
8477
8478   pr "\
8479 #include <Python.h>
8480
8481 #include <stdio.h>
8482 #include <stdlib.h>
8483 #include <assert.h>
8484
8485 #include \"guestfs.h\"
8486
8487 typedef struct {
8488   PyObject_HEAD
8489   guestfs_h *g;
8490 } Pyguestfs_Object;
8491
8492 static guestfs_h *
8493 get_handle (PyObject *obj)
8494 {
8495   assert (obj);
8496   assert (obj != Py_None);
8497   return ((Pyguestfs_Object *) obj)->g;
8498 }
8499
8500 static PyObject *
8501 put_handle (guestfs_h *g)
8502 {
8503   assert (g);
8504   return
8505     PyCObject_FromVoidPtrAndDesc ((void *) g, (char *) \"guestfs_h\", NULL);
8506 }
8507
8508 /* This list should be freed (but not the strings) after use. */
8509 static char **
8510 get_string_list (PyObject *obj)
8511 {
8512   int i, len;
8513   char **r;
8514
8515   assert (obj);
8516
8517   if (!PyList_Check (obj)) {
8518     PyErr_SetString (PyExc_RuntimeError, \"expecting a list parameter\");
8519     return NULL;
8520   }
8521
8522   len = PyList_Size (obj);
8523   r = malloc (sizeof (char *) * (len+1));
8524   if (r == NULL) {
8525     PyErr_SetString (PyExc_RuntimeError, \"get_string_list: out of memory\");
8526     return NULL;
8527   }
8528
8529   for (i = 0; i < len; ++i)
8530     r[i] = PyString_AsString (PyList_GetItem (obj, i));
8531   r[len] = NULL;
8532
8533   return r;
8534 }
8535
8536 static PyObject *
8537 put_string_list (char * const * const argv)
8538 {
8539   PyObject *list;
8540   int argc, i;
8541
8542   for (argc = 0; argv[argc] != NULL; ++argc)
8543     ;
8544
8545   list = PyList_New (argc);
8546   for (i = 0; i < argc; ++i)
8547     PyList_SetItem (list, i, PyString_FromString (argv[i]));
8548
8549   return list;
8550 }
8551
8552 static PyObject *
8553 put_table (char * const * const argv)
8554 {
8555   PyObject *list, *item;
8556   int argc, i;
8557
8558   for (argc = 0; argv[argc] != NULL; ++argc)
8559     ;
8560
8561   list = PyList_New (argc >> 1);
8562   for (i = 0; i < argc; i += 2) {
8563     item = PyTuple_New (2);
8564     PyTuple_SetItem (item, 0, PyString_FromString (argv[i]));
8565     PyTuple_SetItem (item, 1, PyString_FromString (argv[i+1]));
8566     PyList_SetItem (list, i >> 1, item);
8567   }
8568
8569   return list;
8570 }
8571
8572 static void
8573 free_strings (char **argv)
8574 {
8575   int argc;
8576
8577   for (argc = 0; argv[argc] != NULL; ++argc)
8578     free (argv[argc]);
8579   free (argv);
8580 }
8581
8582 static PyObject *
8583 py_guestfs_create (PyObject *self, PyObject *args)
8584 {
8585   guestfs_h *g;
8586
8587   g = guestfs_create ();
8588   if (g == NULL) {
8589     PyErr_SetString (PyExc_RuntimeError,
8590                      \"guestfs.create: failed to allocate handle\");
8591     return NULL;
8592   }
8593   guestfs_set_error_handler (g, NULL, NULL);
8594   return put_handle (g);
8595 }
8596
8597 static PyObject *
8598 py_guestfs_close (PyObject *self, PyObject *args)
8599 {
8600   PyObject *py_g;
8601   guestfs_h *g;
8602
8603   if (!PyArg_ParseTuple (args, (char *) \"O:guestfs_close\", &py_g))
8604     return NULL;
8605   g = get_handle (py_g);
8606
8607   guestfs_close (g);
8608
8609   Py_INCREF (Py_None);
8610   return Py_None;
8611 }
8612
8613 ";
8614
8615   let emit_put_list_function typ =
8616     pr "static PyObject *\n";
8617     pr "put_%s_list (struct guestfs_%s_list *%ss)\n" typ typ typ;
8618     pr "{\n";
8619     pr "  PyObject *list;\n";
8620     pr "  int i;\n";
8621     pr "\n";
8622     pr "  list = PyList_New (%ss->len);\n" typ;
8623     pr "  for (i = 0; i < %ss->len; ++i)\n" typ;
8624     pr "    PyList_SetItem (list, i, put_%s (&%ss->val[i]));\n" typ typ;
8625     pr "  return list;\n";
8626     pr "};\n";
8627     pr "\n"
8628   in
8629
8630   (* Structures, turned into Python dictionaries. *)
8631   List.iter (
8632     fun (typ, cols) ->
8633       pr "static PyObject *\n";
8634       pr "put_%s (struct guestfs_%s *%s)\n" typ typ typ;
8635       pr "{\n";
8636       pr "  PyObject *dict;\n";
8637       pr "\n";
8638       pr "  dict = PyDict_New ();\n";
8639       List.iter (
8640         function
8641         | name, FString ->
8642             pr "  PyDict_SetItemString (dict, \"%s\",\n" name;
8643             pr "                        PyString_FromString (%s->%s));\n"
8644               typ name
8645         | name, FBuffer ->
8646             pr "  PyDict_SetItemString (dict, \"%s\",\n" name;
8647             pr "                        PyString_FromStringAndSize (%s->%s, %s->%s_len));\n"
8648               typ name typ name
8649         | name, FUUID ->
8650             pr "  PyDict_SetItemString (dict, \"%s\",\n" name;
8651             pr "                        PyString_FromStringAndSize (%s->%s, 32));\n"
8652               typ name
8653         | name, (FBytes|FUInt64) ->
8654             pr "  PyDict_SetItemString (dict, \"%s\",\n" name;
8655             pr "                        PyLong_FromUnsignedLongLong (%s->%s));\n"
8656               typ name
8657         | name, FInt64 ->
8658             pr "  PyDict_SetItemString (dict, \"%s\",\n" name;
8659             pr "                        PyLong_FromLongLong (%s->%s));\n"
8660               typ name
8661         | name, FUInt32 ->
8662             pr "  PyDict_SetItemString (dict, \"%s\",\n" name;
8663             pr "                        PyLong_FromUnsignedLong (%s->%s));\n"
8664               typ name
8665         | name, FInt32 ->
8666             pr "  PyDict_SetItemString (dict, \"%s\",\n" name;
8667             pr "                        PyLong_FromLong (%s->%s));\n"
8668               typ name
8669         | name, FOptPercent ->
8670             pr "  if (%s->%s >= 0)\n" typ name;
8671             pr "    PyDict_SetItemString (dict, \"%s\",\n" name;
8672             pr "                          PyFloat_FromDouble ((double) %s->%s));\n"
8673               typ name;
8674             pr "  else {\n";
8675             pr "    Py_INCREF (Py_None);\n";
8676             pr "    PyDict_SetItemString (dict, \"%s\", Py_None);\n" name;
8677             pr "  }\n"
8678         | name, FChar ->
8679             pr "  PyDict_SetItemString (dict, \"%s\",\n" name;
8680             pr "                        PyString_FromStringAndSize (&dirent->%s, 1));\n" name
8681       ) cols;
8682       pr "  return dict;\n";
8683       pr "};\n";
8684       pr "\n";
8685
8686   ) structs;
8687
8688   (* Emit a put_TYPE_list function definition only if that function is used. *)
8689   List.iter (
8690     function
8691     | typ, (RStructListOnly | RStructAndList) ->
8692         (* generate the function for typ *)
8693         emit_put_list_function typ
8694     | typ, _ -> () (* empty *)
8695   ) (rstructs_used_by all_functions);
8696
8697   (* Python wrapper functions. *)
8698   List.iter (
8699     fun (name, style, _, _, _, _, _) ->
8700       pr "static PyObject *\n";
8701       pr "py_guestfs_%s (PyObject *self, PyObject *args)\n" name;
8702       pr "{\n";
8703
8704       pr "  PyObject *py_g;\n";
8705       pr "  guestfs_h *g;\n";
8706       pr "  PyObject *py_r;\n";
8707
8708       let error_code =
8709         match fst style with
8710         | RErr | RInt _ | RBool _ -> pr "  int r;\n"; "-1"
8711         | RInt64 _ -> pr "  int64_t r;\n"; "-1"
8712         | RConstString _ | RConstOptString _ ->
8713             pr "  const char *r;\n"; "NULL"
8714         | RString _ -> pr "  char *r;\n"; "NULL"
8715         | RStringList _ | RHashtable _ -> pr "  char **r;\n"; "NULL"
8716         | RStruct (_, typ) -> pr "  struct guestfs_%s *r;\n" typ; "NULL"
8717         | RStructList (_, typ) ->
8718             pr "  struct guestfs_%s_list *r;\n" typ; "NULL"
8719         | RBufferOut _ ->
8720             pr "  char *r;\n";
8721             pr "  size_t size;\n";
8722             "NULL" in
8723
8724       List.iter (
8725         function
8726         | Pathname n | Device n | Dev_or_Path n | String n | FileIn n | FileOut n ->
8727             pr "  const char *%s;\n" n
8728         | OptString n -> pr "  const char *%s;\n" n
8729         | StringList n | DeviceList n ->
8730             pr "  PyObject *py_%s;\n" n;
8731             pr "  char **%s;\n" n
8732         | Bool n -> pr "  int %s;\n" n
8733         | Int n -> pr "  int %s;\n" n
8734         | Int64 n -> pr "  long long %s;\n" n
8735       ) (snd style);
8736
8737       pr "\n";
8738
8739       (* Convert the parameters. *)
8740       pr "  if (!PyArg_ParseTuple (args, (char *) \"O";
8741       List.iter (
8742         function
8743         | Pathname _ | Device _ | Dev_or_Path _ | String _ | FileIn _ | FileOut _ -> pr "s"
8744         | OptString _ -> pr "z"
8745         | StringList _ | DeviceList _ -> pr "O"
8746         | Bool _ -> pr "i" (* XXX Python has booleans? *)
8747         | Int _ -> pr "i"
8748         | Int64 _ -> pr "L" (* XXX Whoever thought it was a good idea to
8749                              * emulate C's int/long/long long in Python?
8750                              *)
8751       ) (snd style);
8752       pr ":guestfs_%s\",\n" name;
8753       pr "                         &py_g";
8754       List.iter (
8755         function
8756         | Pathname n | Device n | Dev_or_Path n | String n | FileIn n | FileOut n -> pr ", &%s" n
8757         | OptString n -> pr ", &%s" n
8758         | StringList n | DeviceList n -> pr ", &py_%s" n
8759         | Bool n -> pr ", &%s" n
8760         | Int n -> pr ", &%s" n
8761         | Int64 n -> pr ", &%s" n
8762       ) (snd style);
8763
8764       pr "))\n";
8765       pr "    return NULL;\n";
8766
8767       pr "  g = get_handle (py_g);\n";
8768       List.iter (
8769         function
8770         | Pathname _ | Device _ | Dev_or_Path _ | String _
8771         | FileIn _ | FileOut _ | OptString _ | Bool _ | Int _ | Int64 _ -> ()
8772         | StringList n | DeviceList n ->
8773             pr "  %s = get_string_list (py_%s);\n" n n;
8774             pr "  if (!%s) return NULL;\n" n
8775       ) (snd style);
8776
8777       pr "\n";
8778
8779       pr "  r = guestfs_%s " name;
8780       generate_c_call_args ~handle:"g" style;
8781       pr ";\n";
8782
8783       List.iter (
8784         function
8785         | Pathname _ | Device _ | Dev_or_Path _ | String _
8786         | FileIn _ | FileOut _ | OptString _ | Bool _ | Int _ | Int64 _ -> ()
8787         | StringList n | DeviceList n ->
8788             pr "  free (%s);\n" n
8789       ) (snd style);
8790
8791       pr "  if (r == %s) {\n" error_code;
8792       pr "    PyErr_SetString (PyExc_RuntimeError, guestfs_last_error (g));\n";
8793       pr "    return NULL;\n";
8794       pr "  }\n";
8795       pr "\n";
8796
8797       (match fst style with
8798        | RErr ->
8799            pr "  Py_INCREF (Py_None);\n";
8800            pr "  py_r = Py_None;\n"
8801        | RInt _
8802        | RBool _ -> pr "  py_r = PyInt_FromLong ((long) r);\n"
8803        | RInt64 _ -> pr "  py_r = PyLong_FromLongLong (r);\n"
8804        | RConstString _ -> pr "  py_r = PyString_FromString (r);\n"
8805        | RConstOptString _ ->
8806            pr "  if (r)\n";
8807            pr "    py_r = PyString_FromString (r);\n";
8808            pr "  else {\n";
8809            pr "    Py_INCREF (Py_None);\n";
8810            pr "    py_r = Py_None;\n";
8811            pr "  }\n"
8812        | RString _ ->
8813            pr "  py_r = PyString_FromString (r);\n";
8814            pr "  free (r);\n"
8815        | RStringList _ ->
8816            pr "  py_r = put_string_list (r);\n";
8817            pr "  free_strings (r);\n"
8818        | RStruct (_, typ) ->
8819            pr "  py_r = put_%s (r);\n" typ;
8820            pr "  guestfs_free_%s (r);\n" typ
8821        | RStructList (_, typ) ->
8822            pr "  py_r = put_%s_list (r);\n" typ;
8823            pr "  guestfs_free_%s_list (r);\n" typ
8824        | RHashtable n ->
8825            pr "  py_r = put_table (r);\n";
8826            pr "  free_strings (r);\n"
8827        | RBufferOut _ ->
8828            pr "  py_r = PyString_FromStringAndSize (r, size);\n";
8829            pr "  free (r);\n"
8830       );
8831
8832       pr "  return py_r;\n";
8833       pr "}\n";
8834       pr "\n"
8835   ) all_functions;
8836
8837   (* Table of functions. *)
8838   pr "static PyMethodDef methods[] = {\n";
8839   pr "  { (char *) \"create\", py_guestfs_create, METH_VARARGS, NULL },\n";
8840   pr "  { (char *) \"close\", py_guestfs_close, METH_VARARGS, NULL },\n";
8841   List.iter (
8842     fun (name, _, _, _, _, _, _) ->
8843       pr "  { (char *) \"%s\", py_guestfs_%s, METH_VARARGS, NULL },\n"
8844         name name
8845   ) all_functions;
8846   pr "  { NULL, NULL, 0, NULL }\n";
8847   pr "};\n";
8848   pr "\n";
8849
8850   (* Init function. *)
8851   pr "\
8852 void
8853 initlibguestfsmod (void)
8854 {
8855   static int initialized = 0;
8856
8857   if (initialized) return;
8858   Py_InitModule ((char *) \"libguestfsmod\", methods);
8859   initialized = 1;
8860 }
8861 "
8862
8863 (* Generate Python module. *)
8864 and generate_python_py () =
8865   generate_header HashStyle LGPLv2plus;
8866
8867   pr "\
8868 u\"\"\"Python bindings for libguestfs
8869
8870 import guestfs
8871 g = guestfs.GuestFS ()
8872 g.add_drive (\"guest.img\")
8873 g.launch ()
8874 parts = g.list_partitions ()
8875
8876 The guestfs module provides a Python binding to the libguestfs API
8877 for examining and modifying virtual machine disk images.
8878
8879 Amongst the things this is good for: making batch configuration
8880 changes to guests, getting disk used/free statistics (see also:
8881 virt-df), migrating between virtualization systems (see also:
8882 virt-p2v), performing partial backups, performing partial guest
8883 clones, cloning guests and changing registry/UUID/hostname info, and
8884 much else besides.
8885
8886 Libguestfs uses Linux kernel and qemu code, and can access any type of
8887 guest filesystem that Linux and qemu can, including but not limited
8888 to: ext2/3/4, btrfs, FAT and NTFS, LVM, many different disk partition
8889 schemes, qcow, qcow2, vmdk.
8890
8891 Libguestfs provides ways to enumerate guest storage (eg. partitions,
8892 LVs, what filesystem is in each LV, etc.).  It can also run commands
8893 in the context of the guest.  Also you can access filesystems over FTP.
8894
8895 Errors which happen while using the API are turned into Python
8896 RuntimeError exceptions.
8897
8898 To create a guestfs handle you usually have to perform the following
8899 sequence of calls:
8900
8901 # Create the handle, call add_drive at least once, and possibly
8902 # several times if the guest has multiple block devices:
8903 g = guestfs.GuestFS ()
8904 g.add_drive (\"guest.img\")
8905
8906 # Launch the qemu subprocess and wait for it to become ready:
8907 g.launch ()
8908
8909 # Now you can issue commands, for example:
8910 logvols = g.lvs ()
8911
8912 \"\"\"
8913
8914 import libguestfsmod
8915
8916 class GuestFS:
8917     \"\"\"Instances of this class are libguestfs API handles.\"\"\"
8918
8919     def __init__ (self):
8920         \"\"\"Create a new libguestfs handle.\"\"\"
8921         self._o = libguestfsmod.create ()
8922
8923     def __del__ (self):
8924         libguestfsmod.close (self._o)
8925
8926 ";
8927
8928   List.iter (
8929     fun (name, style, _, flags, _, _, longdesc) ->
8930       pr "    def %s " name;
8931       generate_py_call_args ~handle:"self" (snd style);
8932       pr ":\n";
8933
8934       if not (List.mem NotInDocs flags) then (
8935         let doc = replace_str longdesc "C<guestfs_" "C<g." in
8936         let doc =
8937           match fst style with
8938           | RErr | RInt _ | RInt64 _ | RBool _
8939           | RConstOptString _ | RConstString _
8940           | RString _ | RBufferOut _ -> doc
8941           | RStringList _ ->
8942               doc ^ "\n\nThis function returns a list of strings."
8943           | RStruct (_, typ) ->
8944               doc ^ sprintf "\n\nThis function returns a dictionary, with keys matching the various fields in the guestfs_%s structure." typ
8945           | RStructList (_, typ) ->
8946               doc ^ sprintf "\n\nThis function returns a list of %ss.  Each %s is represented as a dictionary." typ typ
8947           | RHashtable _ ->
8948               doc ^ "\n\nThis function returns a dictionary." in
8949         let doc =
8950           if List.mem ProtocolLimitWarning flags then
8951             doc ^ "\n\n" ^ protocol_limit_warning
8952           else doc in
8953         let doc =
8954           if List.mem DangerWillRobinson flags then
8955             doc ^ "\n\n" ^ danger_will_robinson
8956           else doc in
8957         let doc =
8958           match deprecation_notice flags with
8959           | None -> doc
8960           | Some txt -> doc ^ "\n\n" ^ txt in
8961         let doc = pod2text ~width:60 name doc in
8962         let doc = List.map (fun line -> replace_str line "\\" "\\\\") doc in
8963         let doc = String.concat "\n        " doc in
8964         pr "        u\"\"\"%s\"\"\"\n" doc;
8965       );
8966       pr "        return libguestfsmod.%s " name;
8967       generate_py_call_args ~handle:"self._o" (snd style);
8968       pr "\n";
8969       pr "\n";
8970   ) all_functions
8971
8972 (* Generate Python call arguments, eg "(handle, foo, bar)" *)
8973 and generate_py_call_args ~handle args =
8974   pr "(%s" handle;
8975   List.iter (fun arg -> pr ", %s" (name_of_argt arg)) args;
8976   pr ")"
8977
8978 (* Useful if you need the longdesc POD text as plain text.  Returns a
8979  * list of lines.
8980  *
8981  * Because this is very slow (the slowest part of autogeneration),
8982  * we memoize the results.
8983  *)
8984 and pod2text ~width name longdesc =
8985   let key = width, name, longdesc in
8986   try Hashtbl.find pod2text_memo key
8987   with Not_found ->
8988     let filename, chan = Filename.open_temp_file "gen" ".tmp" in
8989     fprintf chan "=head1 %s\n\n%s\n" name longdesc;
8990     close_out chan;
8991     let cmd = sprintf "pod2text -w %d %s" width (Filename.quote filename) in
8992     let chan = open_process_in cmd in
8993     let lines = ref [] in
8994     let rec loop i =
8995       let line = input_line chan in
8996       if i = 1 then             (* discard the first line of output *)
8997         loop (i+1)
8998       else (
8999         let line = triml line in
9000         lines := line :: !lines;
9001         loop (i+1)
9002       ) in
9003     let lines = try loop 1 with End_of_file -> List.rev !lines in
9004     unlink filename;
9005     (match close_process_in chan with
9006      | WEXITED 0 -> ()
9007      | WEXITED i ->
9008          failwithf "pod2text: process exited with non-zero status (%d)" i
9009      | WSIGNALED i | WSTOPPED i ->
9010          failwithf "pod2text: process signalled or stopped by signal %d" i
9011     );
9012     Hashtbl.add pod2text_memo key lines;
9013     pod2text_memo_updated ();
9014     lines
9015
9016 (* Generate ruby bindings. *)
9017 and generate_ruby_c () =
9018   generate_header CStyle LGPLv2plus;
9019
9020   pr "\
9021 #include <stdio.h>
9022 #include <stdlib.h>
9023
9024 #include <ruby.h>
9025
9026 #include \"guestfs.h\"
9027
9028 #include \"extconf.h\"
9029
9030 /* For Ruby < 1.9 */
9031 #ifndef RARRAY_LEN
9032 #define RARRAY_LEN(r) (RARRAY((r))->len)
9033 #endif
9034
9035 static VALUE m_guestfs;                 /* guestfs module */
9036 static VALUE c_guestfs;                 /* guestfs_h handle */
9037 static VALUE e_Error;                   /* used for all errors */
9038
9039 static void ruby_guestfs_free (void *p)
9040 {
9041   if (!p) return;
9042   guestfs_close ((guestfs_h *) p);
9043 }
9044
9045 static VALUE ruby_guestfs_create (VALUE m)
9046 {
9047   guestfs_h *g;
9048
9049   g = guestfs_create ();
9050   if (!g)
9051     rb_raise (e_Error, \"failed to create guestfs handle\");
9052
9053   /* Don't print error messages to stderr by default. */
9054   guestfs_set_error_handler (g, NULL, NULL);
9055
9056   /* Wrap it, and make sure the close function is called when the
9057    * handle goes away.
9058    */
9059   return Data_Wrap_Struct (c_guestfs, NULL, ruby_guestfs_free, g);
9060 }
9061
9062 static VALUE ruby_guestfs_close (VALUE gv)
9063 {
9064   guestfs_h *g;
9065   Data_Get_Struct (gv, guestfs_h, g);
9066
9067   ruby_guestfs_free (g);
9068   DATA_PTR (gv) = NULL;
9069
9070   return Qnil;
9071 }
9072
9073 ";
9074
9075   List.iter (
9076     fun (name, style, _, _, _, _, _) ->
9077       pr "static VALUE ruby_guestfs_%s (VALUE gv" name;
9078       List.iter (fun arg -> pr ", VALUE %sv" (name_of_argt arg)) (snd style);
9079       pr ")\n";
9080       pr "{\n";
9081       pr "  guestfs_h *g;\n";
9082       pr "  Data_Get_Struct (gv, guestfs_h, g);\n";
9083       pr "  if (!g)\n";
9084       pr "    rb_raise (rb_eArgError, \"%%s: used handle after closing it\", \"%s\");\n"
9085         name;
9086       pr "\n";
9087
9088       List.iter (
9089         function
9090         | Pathname n | Device n | Dev_or_Path n | String n | FileIn n | FileOut n ->
9091             pr "  Check_Type (%sv, T_STRING);\n" n;
9092             pr "  const char *%s = StringValueCStr (%sv);\n" n n;
9093             pr "  if (!%s)\n" n;
9094             pr "    rb_raise (rb_eTypeError, \"expected string for parameter %%s of %%s\",\n";
9095             pr "              \"%s\", \"%s\");\n" n name
9096         | OptString n ->
9097             pr "  const char *%s = !NIL_P (%sv) ? StringValueCStr (%sv) : NULL;\n" n n n
9098         | StringList n | DeviceList n ->
9099             pr "  char **%s;\n" n;
9100             pr "  Check_Type (%sv, T_ARRAY);\n" n;
9101             pr "  {\n";
9102             pr "    int i, len;\n";
9103             pr "    len = RARRAY_LEN (%sv);\n" n;
9104             pr "    %s = guestfs_safe_malloc (g, sizeof (char *) * (len+1));\n"
9105               n;
9106             pr "    for (i = 0; i < len; ++i) {\n";
9107             pr "      VALUE v = rb_ary_entry (%sv, i);\n" n;
9108             pr "      %s[i] = StringValueCStr (v);\n" n;
9109             pr "    }\n";
9110             pr "    %s[len] = NULL;\n" n;
9111             pr "  }\n";
9112         | Bool n ->
9113             pr "  int %s = RTEST (%sv);\n" n n
9114         | Int n ->
9115             pr "  int %s = NUM2INT (%sv);\n" n n
9116         | Int64 n ->
9117             pr "  long long %s = NUM2LL (%sv);\n" n n
9118       ) (snd style);
9119       pr "\n";
9120
9121       let error_code =
9122         match fst style with
9123         | RErr | RInt _ | RBool _ -> pr "  int r;\n"; "-1"
9124         | RInt64 _ -> pr "  int64_t r;\n"; "-1"
9125         | RConstString _ | RConstOptString _ ->
9126             pr "  const char *r;\n"; "NULL"
9127         | RString _ -> pr "  char *r;\n"; "NULL"
9128         | RStringList _ | RHashtable _ -> pr "  char **r;\n"; "NULL"
9129         | RStruct (_, typ) -> pr "  struct guestfs_%s *r;\n" typ; "NULL"
9130         | RStructList (_, typ) ->
9131             pr "  struct guestfs_%s_list *r;\n" typ; "NULL"
9132         | RBufferOut _ ->
9133             pr "  char *r;\n";
9134             pr "  size_t size;\n";
9135             "NULL" in
9136       pr "\n";
9137
9138       pr "  r = guestfs_%s " name;
9139       generate_c_call_args ~handle:"g" style;
9140       pr ";\n";
9141
9142       List.iter (
9143         function
9144         | Pathname _ | Device _ | Dev_or_Path _ | String _
9145         | FileIn _ | FileOut _ | OptString _ | Bool _ | Int _ | Int64 _ -> ()
9146         | StringList n | DeviceList n ->
9147             pr "  free (%s);\n" n
9148       ) (snd style);
9149
9150       pr "  if (r == %s)\n" error_code;
9151       pr "    rb_raise (e_Error, \"%%s\", guestfs_last_error (g));\n";
9152       pr "\n";
9153
9154       (match fst style with
9155        | RErr ->
9156            pr "  return Qnil;\n"
9157        | RInt _ | RBool _ ->
9158            pr "  return INT2NUM (r);\n"
9159        | RInt64 _ ->
9160            pr "  return ULL2NUM (r);\n"
9161        | RConstString _ ->
9162            pr "  return rb_str_new2 (r);\n";
9163        | RConstOptString _ ->
9164            pr "  if (r)\n";
9165            pr "    return rb_str_new2 (r);\n";
9166            pr "  else\n";
9167            pr "    return Qnil;\n";
9168        | RString _ ->
9169            pr "  VALUE rv = rb_str_new2 (r);\n";
9170            pr "  free (r);\n";
9171            pr "  return rv;\n";
9172        | RStringList _ ->
9173            pr "  int i, len = 0;\n";
9174            pr "  for (i = 0; r[i] != NULL; ++i) len++;\n";
9175            pr "  VALUE rv = rb_ary_new2 (len);\n";
9176            pr "  for (i = 0; r[i] != NULL; ++i) {\n";
9177            pr "    rb_ary_push (rv, rb_str_new2 (r[i]));\n";
9178            pr "    free (r[i]);\n";
9179            pr "  }\n";
9180            pr "  free (r);\n";
9181            pr "  return rv;\n"
9182        | RStruct (_, typ) ->
9183            let cols = cols_of_struct typ in
9184            generate_ruby_struct_code typ cols
9185        | RStructList (_, typ) ->
9186            let cols = cols_of_struct typ in
9187            generate_ruby_struct_list_code typ cols
9188        | RHashtable _ ->
9189            pr "  VALUE rv = rb_hash_new ();\n";
9190            pr "  int i;\n";
9191            pr "  for (i = 0; r[i] != NULL; i+=2) {\n";
9192            pr "    rb_hash_aset (rv, rb_str_new2 (r[i]), rb_str_new2 (r[i+1]));\n";
9193            pr "    free (r[i]);\n";
9194            pr "    free (r[i+1]);\n";
9195            pr "  }\n";
9196            pr "  free (r);\n";
9197            pr "  return rv;\n"
9198        | RBufferOut _ ->
9199            pr "  VALUE rv = rb_str_new (r, size);\n";
9200            pr "  free (r);\n";
9201            pr "  return rv;\n";
9202       );
9203
9204       pr "}\n";
9205       pr "\n"
9206   ) all_functions;
9207
9208   pr "\
9209 /* Initialize the module. */
9210 void Init__guestfs ()
9211 {
9212   m_guestfs = rb_define_module (\"Guestfs\");
9213   c_guestfs = rb_define_class_under (m_guestfs, \"Guestfs\", rb_cObject);
9214   e_Error = rb_define_class_under (m_guestfs, \"Error\", rb_eStandardError);
9215
9216   rb_define_module_function (m_guestfs, \"create\", ruby_guestfs_create, 0);
9217   rb_define_method (c_guestfs, \"close\", ruby_guestfs_close, 0);
9218
9219 ";
9220   (* Define the rest of the methods. *)
9221   List.iter (
9222     fun (name, style, _, _, _, _, _) ->
9223       pr "  rb_define_method (c_guestfs, \"%s\",\n" name;
9224       pr "        ruby_guestfs_%s, %d);\n" name (List.length (snd style))
9225   ) all_functions;
9226
9227   pr "}\n"
9228
9229 (* Ruby code to return a struct. *)
9230 and generate_ruby_struct_code typ cols =
9231   pr "  VALUE rv = rb_hash_new ();\n";
9232   List.iter (
9233     function
9234     | name, FString ->
9235         pr "  rb_hash_aset (rv, rb_str_new2 (\"%s\"), rb_str_new2 (r->%s));\n" name name
9236     | name, FBuffer ->
9237         pr "  rb_hash_aset (rv, rb_str_new2 (\"%s\"), rb_str_new (r->%s, r->%s_len));\n" name name name
9238     | name, FUUID ->
9239         pr "  rb_hash_aset (rv, rb_str_new2 (\"%s\"), rb_str_new (r->%s, 32));\n" name name
9240     | name, (FBytes|FUInt64) ->
9241         pr "  rb_hash_aset (rv, rb_str_new2 (\"%s\"), ULL2NUM (r->%s));\n" name name
9242     | name, FInt64 ->
9243         pr "  rb_hash_aset (rv, rb_str_new2 (\"%s\"), LL2NUM (r->%s));\n" name name
9244     | name, FUInt32 ->
9245         pr "  rb_hash_aset (rv, rb_str_new2 (\"%s\"), UINT2NUM (r->%s));\n" name name
9246     | name, FInt32 ->
9247         pr "  rb_hash_aset (rv, rb_str_new2 (\"%s\"), INT2NUM (r->%s));\n" name name
9248     | name, FOptPercent ->
9249         pr "  rb_hash_aset (rv, rb_str_new2 (\"%s\"), rb_dbl2big (r->%s));\n" name name
9250     | name, FChar -> (* XXX wrong? *)
9251         pr "  rb_hash_aset (rv, rb_str_new2 (\"%s\"), ULL2NUM (r->%s));\n" name name
9252   ) cols;
9253   pr "  guestfs_free_%s (r);\n" typ;
9254   pr "  return rv;\n"
9255
9256 (* Ruby code to return a struct list. *)
9257 and generate_ruby_struct_list_code typ cols =
9258   pr "  VALUE rv = rb_ary_new2 (r->len);\n";
9259   pr "  int i;\n";
9260   pr "  for (i = 0; i < r->len; ++i) {\n";
9261   pr "    VALUE hv = rb_hash_new ();\n";
9262   List.iter (
9263     function
9264     | name, FString ->
9265         pr "    rb_hash_aset (hv, rb_str_new2 (\"%s\"), rb_str_new2 (r->val[i].%s));\n" name name
9266     | name, FBuffer ->
9267         pr "    rb_hash_aset (hv, rb_str_new2 (\"%s\"), rb_str_new (r->val[i].%s, r->val[i].%s_len));\n" name name name
9268     | name, FUUID ->
9269         pr "    rb_hash_aset (hv, rb_str_new2 (\"%s\"), rb_str_new (r->val[i].%s, 32));\n" name name
9270     | name, (FBytes|FUInt64) ->
9271         pr "    rb_hash_aset (hv, rb_str_new2 (\"%s\"), ULL2NUM (r->val[i].%s));\n" name name
9272     | name, FInt64 ->
9273         pr "    rb_hash_aset (hv, rb_str_new2 (\"%s\"), LL2NUM (r->val[i].%s));\n" name name
9274     | name, FUInt32 ->
9275         pr "    rb_hash_aset (hv, rb_str_new2 (\"%s\"), UINT2NUM (r->val[i].%s));\n" name name
9276     | name, FInt32 ->
9277         pr "    rb_hash_aset (hv, rb_str_new2 (\"%s\"), INT2NUM (r->val[i].%s));\n" name name
9278     | name, FOptPercent ->
9279         pr "    rb_hash_aset (hv, rb_str_new2 (\"%s\"), rb_dbl2big (r->val[i].%s));\n" name name
9280     | name, FChar -> (* XXX wrong? *)
9281         pr "    rb_hash_aset (hv, rb_str_new2 (\"%s\"), ULL2NUM (r->val[i].%s));\n" name name
9282   ) cols;
9283   pr "    rb_ary_push (rv, hv);\n";
9284   pr "  }\n";
9285   pr "  guestfs_free_%s_list (r);\n" typ;
9286   pr "  return rv;\n"
9287
9288 (* Generate Java bindings GuestFS.java file. *)
9289 and generate_java_java () =
9290   generate_header CStyle LGPLv2plus;
9291
9292   pr "\
9293 package com.redhat.et.libguestfs;
9294
9295 import java.util.HashMap;
9296 import com.redhat.et.libguestfs.LibGuestFSException;
9297 import com.redhat.et.libguestfs.PV;
9298 import com.redhat.et.libguestfs.VG;
9299 import com.redhat.et.libguestfs.LV;
9300 import com.redhat.et.libguestfs.Stat;
9301 import com.redhat.et.libguestfs.StatVFS;
9302 import com.redhat.et.libguestfs.IntBool;
9303 import com.redhat.et.libguestfs.Dirent;
9304
9305 /**
9306  * The GuestFS object is a libguestfs handle.
9307  *
9308  * @author rjones
9309  */
9310 public class GuestFS {
9311   // Load the native code.
9312   static {
9313     System.loadLibrary (\"guestfs_jni\");
9314   }
9315
9316   /**
9317    * The native guestfs_h pointer.
9318    */
9319   long g;
9320
9321   /**
9322    * Create a libguestfs handle.
9323    *
9324    * @throws LibGuestFSException
9325    */
9326   public GuestFS () throws LibGuestFSException
9327   {
9328     g = _create ();
9329   }
9330   private native long _create () throws LibGuestFSException;
9331
9332   /**
9333    * Close a libguestfs handle.
9334    *
9335    * You can also leave handles to be collected by the garbage
9336    * collector, but this method ensures that the resources used
9337    * by the handle are freed up immediately.  If you call any
9338    * other methods after closing the handle, you will get an
9339    * exception.
9340    *
9341    * @throws LibGuestFSException
9342    */
9343   public void close () throws LibGuestFSException
9344   {
9345     if (g != 0)
9346       _close (g);
9347     g = 0;
9348   }
9349   private native void _close (long g) throws LibGuestFSException;
9350
9351   public void finalize () throws LibGuestFSException
9352   {
9353     close ();
9354   }
9355
9356 ";
9357
9358   List.iter (
9359     fun (name, style, _, flags, _, shortdesc, longdesc) ->
9360       if not (List.mem NotInDocs flags); then (
9361         let doc = replace_str longdesc "C<guestfs_" "C<g." in
9362         let doc =
9363           if List.mem ProtocolLimitWarning flags then
9364             doc ^ "\n\n" ^ protocol_limit_warning
9365           else doc in
9366         let doc =
9367           if List.mem DangerWillRobinson flags then
9368             doc ^ "\n\n" ^ danger_will_robinson
9369           else doc in
9370         let doc =
9371           match deprecation_notice flags with
9372           | None -> doc
9373           | Some txt -> doc ^ "\n\n" ^ txt in
9374         let doc = pod2text ~width:60 name doc in
9375         let doc = List.map (            (* RHBZ#501883 *)
9376           function
9377           | "" -> "<p>"
9378           | nonempty -> nonempty
9379         ) doc in
9380         let doc = String.concat "\n   * " doc in
9381
9382         pr "  /**\n";
9383         pr "   * %s\n" shortdesc;
9384         pr "   * <p>\n";
9385         pr "   * %s\n" doc;
9386         pr "   * @throws LibGuestFSException\n";
9387         pr "   */\n";
9388         pr "  ";
9389       );
9390       generate_java_prototype ~public:true ~semicolon:false name style;
9391       pr "\n";
9392       pr "  {\n";
9393       pr "    if (g == 0)\n";
9394       pr "      throw new LibGuestFSException (\"%s: handle is closed\");\n"
9395         name;
9396       pr "    ";
9397       if fst style <> RErr then pr "return ";
9398       pr "_%s " name;
9399       generate_java_call_args ~handle:"g" (snd style);
9400       pr ";\n";
9401       pr "  }\n";
9402       pr "  ";
9403       generate_java_prototype ~privat:true ~native:true name style;
9404       pr "\n";
9405       pr "\n";
9406   ) all_functions;
9407
9408   pr "}\n"
9409
9410 (* Generate Java call arguments, eg "(handle, foo, bar)" *)
9411 and generate_java_call_args ~handle args =
9412   pr "(%s" handle;
9413   List.iter (fun arg -> pr ", %s" (name_of_argt arg)) args;
9414   pr ")"
9415
9416 and generate_java_prototype ?(public=false) ?(privat=false) ?(native=false)
9417     ?(semicolon=true) name style =
9418   if privat then pr "private ";
9419   if public then pr "public ";
9420   if native then pr "native ";
9421
9422   (* return type *)
9423   (match fst style with
9424    | RErr -> pr "void ";
9425    | RInt _ -> pr "int ";
9426    | RInt64 _ -> pr "long ";
9427    | RBool _ -> pr "boolean ";
9428    | RConstString _ | RConstOptString _ | RString _
9429    | RBufferOut _ -> pr "String ";
9430    | RStringList _ -> pr "String[] ";
9431    | RStruct (_, typ) ->
9432        let name = java_name_of_struct typ in
9433        pr "%s " name;
9434    | RStructList (_, typ) ->
9435        let name = java_name_of_struct typ in
9436        pr "%s[] " name;
9437    | RHashtable _ -> pr "HashMap<String,String> ";
9438   );
9439
9440   if native then pr "_%s " name else pr "%s " name;
9441   pr "(";
9442   let needs_comma = ref false in
9443   if native then (
9444     pr "long g";
9445     needs_comma := true
9446   );
9447
9448   (* args *)
9449   List.iter (
9450     fun arg ->
9451       if !needs_comma then pr ", ";
9452       needs_comma := true;
9453
9454       match arg with
9455       | Pathname n
9456       | Device n | Dev_or_Path n
9457       | String n
9458       | OptString n
9459       | FileIn n
9460       | FileOut n ->
9461           pr "String %s" n
9462       | StringList n | DeviceList n ->
9463           pr "String[] %s" n
9464       | Bool n ->
9465           pr "boolean %s" n
9466       | Int n ->
9467           pr "int %s" n
9468       | Int64 n ->
9469           pr "long %s" n
9470   ) (snd style);
9471
9472   pr ")\n";
9473   pr "    throws LibGuestFSException";
9474   if semicolon then pr ";"
9475
9476 and generate_java_struct jtyp cols () =
9477   generate_header CStyle LGPLv2plus;
9478
9479   pr "\
9480 package com.redhat.et.libguestfs;
9481
9482 /**
9483  * Libguestfs %s structure.
9484  *
9485  * @author rjones
9486  * @see GuestFS
9487  */
9488 public class %s {
9489 " jtyp jtyp;
9490
9491   List.iter (
9492     function
9493     | name, FString
9494     | name, FUUID
9495     | name, FBuffer -> pr "  public String %s;\n" name
9496     | name, (FBytes|FUInt64|FInt64) -> pr "  public long %s;\n" name
9497     | name, (FUInt32|FInt32) -> pr "  public int %s;\n" name
9498     | name, FChar -> pr "  public char %s;\n" name
9499     | name, FOptPercent ->
9500         pr "  /* The next field is [0..100] or -1 meaning 'not present': */\n";
9501         pr "  public float %s;\n" name
9502   ) cols;
9503
9504   pr "}\n"
9505
9506 and generate_java_c () =
9507   generate_header CStyle LGPLv2plus;
9508
9509   pr "\
9510 #include <stdio.h>
9511 #include <stdlib.h>
9512 #include <string.h>
9513
9514 #include \"com_redhat_et_libguestfs_GuestFS.h\"
9515 #include \"guestfs.h\"
9516
9517 /* Note that this function returns.  The exception is not thrown
9518  * until after the wrapper function returns.
9519  */
9520 static void
9521 throw_exception (JNIEnv *env, const char *msg)
9522 {
9523   jclass cl;
9524   cl = (*env)->FindClass (env,
9525                           \"com/redhat/et/libguestfs/LibGuestFSException\");
9526   (*env)->ThrowNew (env, cl, msg);
9527 }
9528
9529 JNIEXPORT jlong JNICALL
9530 Java_com_redhat_et_libguestfs_GuestFS__1create
9531   (JNIEnv *env, jobject obj)
9532 {
9533   guestfs_h *g;
9534
9535   g = guestfs_create ();
9536   if (g == NULL) {
9537     throw_exception (env, \"GuestFS.create: failed to allocate handle\");
9538     return 0;
9539   }
9540   guestfs_set_error_handler (g, NULL, NULL);
9541   return (jlong) (long) g;
9542 }
9543
9544 JNIEXPORT void JNICALL
9545 Java_com_redhat_et_libguestfs_GuestFS__1close
9546   (JNIEnv *env, jobject obj, jlong jg)
9547 {
9548   guestfs_h *g = (guestfs_h *) (long) jg;
9549   guestfs_close (g);
9550 }
9551
9552 ";
9553
9554   List.iter (
9555     fun (name, style, _, _, _, _, _) ->
9556       pr "JNIEXPORT ";
9557       (match fst style with
9558        | RErr -> pr "void ";
9559        | RInt _ -> pr "jint ";
9560        | RInt64 _ -> pr "jlong ";
9561        | RBool _ -> pr "jboolean ";
9562        | RConstString _ | RConstOptString _ | RString _
9563        | RBufferOut _ -> pr "jstring ";
9564        | RStruct _ | RHashtable _ ->
9565            pr "jobject ";
9566        | RStringList _ | RStructList _ ->
9567            pr "jobjectArray ";
9568       );
9569       pr "JNICALL\n";
9570       pr "Java_com_redhat_et_libguestfs_GuestFS_";
9571       pr "%s" (replace_str ("_" ^ name) "_" "_1");
9572       pr "\n";
9573       pr "  (JNIEnv *env, jobject obj, jlong jg";
9574       List.iter (
9575         function
9576         | Pathname n
9577         | Device n | Dev_or_Path n
9578         | String n
9579         | OptString n
9580         | FileIn n
9581         | FileOut n ->
9582             pr ", jstring j%s" n
9583         | StringList n | DeviceList n ->
9584             pr ", jobjectArray j%s" n
9585         | Bool n ->
9586             pr ", jboolean j%s" n
9587         | Int n ->
9588             pr ", jint j%s" n
9589         | Int64 n ->
9590             pr ", jlong j%s" n
9591       ) (snd style);
9592       pr ")\n";
9593       pr "{\n";
9594       pr "  guestfs_h *g = (guestfs_h *) (long) jg;\n";
9595       let error_code, no_ret =
9596         match fst style with
9597         | RErr -> pr "  int r;\n"; "-1", ""
9598         | RBool _
9599         | RInt _ -> pr "  int r;\n"; "-1", "0"
9600         | RInt64 _ -> pr "  int64_t r;\n"; "-1", "0"
9601         | RConstString _ -> pr "  const char *r;\n"; "NULL", "NULL"
9602         | RConstOptString _ -> pr "  const char *r;\n"; "NULL", "NULL"
9603         | RString _ ->
9604             pr "  jstring jr;\n";
9605             pr "  char *r;\n"; "NULL", "NULL"
9606         | RStringList _ ->
9607             pr "  jobjectArray jr;\n";
9608             pr "  int r_len;\n";
9609             pr "  jclass cl;\n";
9610             pr "  jstring jstr;\n";
9611             pr "  char **r;\n"; "NULL", "NULL"
9612         | RStruct (_, typ) ->
9613             pr "  jobject jr;\n";
9614             pr "  jclass cl;\n";
9615             pr "  jfieldID fl;\n";
9616             pr "  struct guestfs_%s *r;\n" typ; "NULL", "NULL"
9617         | RStructList (_, typ) ->
9618             pr "  jobjectArray jr;\n";
9619             pr "  jclass cl;\n";
9620             pr "  jfieldID fl;\n";
9621             pr "  jobject jfl;\n";
9622             pr "  struct guestfs_%s_list *r;\n" typ; "NULL", "NULL"
9623         | RHashtable _ -> pr "  char **r;\n"; "NULL", "NULL"
9624         | RBufferOut _ ->
9625             pr "  jstring jr;\n";
9626             pr "  char *r;\n";
9627             pr "  size_t size;\n";
9628             "NULL", "NULL" in
9629       List.iter (
9630         function
9631         | Pathname n
9632         | Device n | Dev_or_Path n
9633         | String n
9634         | OptString n
9635         | FileIn n
9636         | FileOut n ->
9637             pr "  const char *%s;\n" n
9638         | StringList n | DeviceList n ->
9639             pr "  int %s_len;\n" n;
9640             pr "  const char **%s;\n" n
9641         | Bool n
9642         | Int n ->
9643             pr "  int %s;\n" n
9644         | Int64 n ->
9645             pr "  int64_t %s;\n" n
9646       ) (snd style);
9647
9648       let needs_i =
9649         (match fst style with
9650          | RStringList _ | RStructList _ -> true
9651          | RErr | RBool _ | RInt _ | RInt64 _ | RConstString _
9652          | RConstOptString _
9653          | RString _ | RBufferOut _ | RStruct _ | RHashtable _ -> false) ||
9654           List.exists (function
9655                        | StringList _ -> true
9656                        | DeviceList _ -> true
9657                        | _ -> false) (snd style) in
9658       if needs_i then
9659         pr "  int i;\n";
9660
9661       pr "\n";
9662
9663       (* Get the parameters. *)
9664       List.iter (
9665         function
9666         | Pathname n
9667         | Device n | Dev_or_Path n
9668         | String n
9669         | FileIn n
9670         | FileOut n ->
9671             pr "  %s = (*env)->GetStringUTFChars (env, j%s, NULL);\n" n n
9672         | OptString n ->
9673             (* This is completely undocumented, but Java null becomes
9674              * a NULL parameter.
9675              *)
9676             pr "  %s = j%s ? (*env)->GetStringUTFChars (env, j%s, NULL) : NULL;\n" n n n
9677         | StringList n | DeviceList n ->
9678             pr "  %s_len = (*env)->GetArrayLength (env, j%s);\n" n n;
9679             pr "  %s = guestfs_safe_malloc (g, sizeof (char *) * (%s_len+1));\n" n n;
9680             pr "  for (i = 0; i < %s_len; ++i) {\n" n;
9681             pr "    jobject o = (*env)->GetObjectArrayElement (env, j%s, i);\n"
9682               n;
9683             pr "    %s[i] = (*env)->GetStringUTFChars (env, o, NULL);\n" n;
9684             pr "  }\n";
9685             pr "  %s[%s_len] = NULL;\n" n n;
9686         | Bool n
9687         | Int n
9688         | Int64 n ->
9689             pr "  %s = j%s;\n" n n
9690       ) (snd style);
9691
9692       (* Make the call. *)
9693       pr "  r = guestfs_%s " name;
9694       generate_c_call_args ~handle:"g" style;
9695       pr ";\n";
9696
9697       (* Release the parameters. *)
9698       List.iter (
9699         function
9700         | Pathname n
9701         | Device n | Dev_or_Path n
9702         | String n
9703         | FileIn n
9704         | FileOut n ->
9705             pr "  (*env)->ReleaseStringUTFChars (env, j%s, %s);\n" n n
9706         | OptString n ->
9707             pr "  if (j%s)\n" n;
9708             pr "    (*env)->ReleaseStringUTFChars (env, j%s, %s);\n" n n
9709         | StringList n | DeviceList n ->
9710             pr "  for (i = 0; i < %s_len; ++i) {\n" n;
9711             pr "    jobject o = (*env)->GetObjectArrayElement (env, j%s, i);\n"
9712               n;
9713             pr "    (*env)->ReleaseStringUTFChars (env, o, %s[i]);\n" n;
9714             pr "  }\n";
9715             pr "  free (%s);\n" n
9716         | Bool n
9717         | Int n
9718         | Int64 n -> ()
9719       ) (snd style);
9720
9721       (* Check for errors. *)
9722       pr "  if (r == %s) {\n" error_code;
9723       pr "    throw_exception (env, guestfs_last_error (g));\n";
9724       pr "    return %s;\n" no_ret;
9725       pr "  }\n";
9726
9727       (* Return value. *)
9728       (match fst style with
9729        | RErr -> ()
9730        | RInt _ -> pr "  return (jint) r;\n"
9731        | RBool _ -> pr "  return (jboolean) r;\n"
9732        | RInt64 _ -> pr "  return (jlong) r;\n"
9733        | RConstString _ -> pr "  return (*env)->NewStringUTF (env, r);\n"
9734        | RConstOptString _ ->
9735            pr "  return (*env)->NewStringUTF (env, r); /* XXX r NULL? */\n"
9736        | RString _ ->
9737            pr "  jr = (*env)->NewStringUTF (env, r);\n";
9738            pr "  free (r);\n";
9739            pr "  return jr;\n"
9740        | RStringList _ ->
9741            pr "  for (r_len = 0; r[r_len] != NULL; ++r_len) ;\n";
9742            pr "  cl = (*env)->FindClass (env, \"java/lang/String\");\n";
9743            pr "  jstr = (*env)->NewStringUTF (env, \"\");\n";
9744            pr "  jr = (*env)->NewObjectArray (env, r_len, cl, jstr);\n";
9745            pr "  for (i = 0; i < r_len; ++i) {\n";
9746            pr "    jstr = (*env)->NewStringUTF (env, r[i]);\n";
9747            pr "    (*env)->SetObjectArrayElement (env, jr, i, jstr);\n";
9748            pr "    free (r[i]);\n";
9749            pr "  }\n";
9750            pr "  free (r);\n";
9751            pr "  return jr;\n"
9752        | RStruct (_, typ) ->
9753            let jtyp = java_name_of_struct typ in
9754            let cols = cols_of_struct typ in
9755            generate_java_struct_return typ jtyp cols
9756        | RStructList (_, typ) ->
9757            let jtyp = java_name_of_struct typ in
9758            let cols = cols_of_struct typ in
9759            generate_java_struct_list_return typ jtyp cols
9760        | RHashtable _ ->
9761            (* XXX *)
9762            pr "  throw_exception (env, \"%s: internal error: please let us know how to make a Java HashMap from JNI bindings!\");\n" name;
9763            pr "  return NULL;\n"
9764        | RBufferOut _ ->
9765            pr "  jr = (*env)->NewStringUTF (env, r); /* XXX size */\n";
9766            pr "  free (r);\n";
9767            pr "  return jr;\n"
9768       );
9769
9770       pr "}\n";
9771       pr "\n"
9772   ) all_functions
9773
9774 and generate_java_struct_return typ jtyp cols =
9775   pr "  cl = (*env)->FindClass (env, \"com/redhat/et/libguestfs/%s\");\n" jtyp;
9776   pr "  jr = (*env)->AllocObject (env, cl);\n";
9777   List.iter (
9778     function
9779     | name, FString ->
9780         pr "  fl = (*env)->GetFieldID (env, cl, \"%s\", \"Ljava/lang/String;\");\n" name;
9781         pr "  (*env)->SetObjectField (env, jr, fl, (*env)->NewStringUTF (env, r->%s));\n" name;
9782     | name, FUUID ->
9783         pr "  {\n";
9784         pr "    char s[33];\n";
9785         pr "    memcpy (s, r->%s, 32);\n" name;
9786         pr "    s[32] = 0;\n";
9787         pr "    fl = (*env)->GetFieldID (env, cl, \"%s\", \"Ljava/lang/String;\");\n" name;
9788         pr "    (*env)->SetObjectField (env, jr, fl, (*env)->NewStringUTF (env, s));\n";
9789         pr "  }\n";
9790     | name, FBuffer ->
9791         pr "  {\n";
9792         pr "    int len = r->%s_len;\n" name;
9793         pr "    char s[len+1];\n";
9794         pr "    memcpy (s, r->%s, len);\n" name;
9795         pr "    s[len] = 0;\n";
9796         pr "    fl = (*env)->GetFieldID (env, cl, \"%s\", \"Ljava/lang/String;\");\n" name;
9797         pr "    (*env)->SetObjectField (env, jr, fl, (*env)->NewStringUTF (env, s));\n";
9798         pr "  }\n";
9799     | name, (FBytes|FUInt64|FInt64) ->
9800         pr "  fl = (*env)->GetFieldID (env, cl, \"%s\", \"J\");\n" name;
9801         pr "  (*env)->SetLongField (env, jr, fl, r->%s);\n" name;
9802     | name, (FUInt32|FInt32) ->
9803         pr "  fl = (*env)->GetFieldID (env, cl, \"%s\", \"I\");\n" name;
9804         pr "  (*env)->SetLongField (env, jr, fl, r->%s);\n" name;
9805     | name, FOptPercent ->
9806         pr "  fl = (*env)->GetFieldID (env, cl, \"%s\", \"F\");\n" name;
9807         pr "  (*env)->SetFloatField (env, jr, fl, r->%s);\n" name;
9808     | name, FChar ->
9809         pr "  fl = (*env)->GetFieldID (env, cl, \"%s\", \"C\");\n" name;
9810         pr "  (*env)->SetLongField (env, jr, fl, r->%s);\n" name;
9811   ) cols;
9812   pr "  free (r);\n";
9813   pr "  return jr;\n"
9814
9815 and generate_java_struct_list_return typ jtyp cols =
9816   pr "  cl = (*env)->FindClass (env, \"com/redhat/et/libguestfs/%s\");\n" jtyp;
9817   pr "  jr = (*env)->NewObjectArray (env, r->len, cl, NULL);\n";
9818   pr "  for (i = 0; i < r->len; ++i) {\n";
9819   pr "    jfl = (*env)->AllocObject (env, cl);\n";
9820   List.iter (
9821     function
9822     | name, FString ->
9823         pr "    fl = (*env)->GetFieldID (env, cl, \"%s\", \"Ljava/lang/String;\");\n" name;
9824         pr "    (*env)->SetObjectField (env, jfl, fl, (*env)->NewStringUTF (env, r->val[i].%s));\n" name;
9825     | name, FUUID ->
9826         pr "    {\n";
9827         pr "      char s[33];\n";
9828         pr "      memcpy (s, r->val[i].%s, 32);\n" name;
9829         pr "      s[32] = 0;\n";
9830         pr "      fl = (*env)->GetFieldID (env, cl, \"%s\", \"Ljava/lang/String;\");\n" name;
9831         pr "      (*env)->SetObjectField (env, jfl, fl, (*env)->NewStringUTF (env, s));\n";
9832         pr "    }\n";
9833     | name, FBuffer ->
9834         pr "    {\n";
9835         pr "      int len = r->val[i].%s_len;\n" name;
9836         pr "      char s[len+1];\n";
9837         pr "      memcpy (s, r->val[i].%s, len);\n" name;
9838         pr "      s[len] = 0;\n";
9839         pr "      fl = (*env)->GetFieldID (env, cl, \"%s\", \"Ljava/lang/String;\");\n" name;
9840         pr "      (*env)->SetObjectField (env, jfl, fl, (*env)->NewStringUTF (env, s));\n";
9841         pr "    }\n";
9842     | name, (FBytes|FUInt64|FInt64) ->
9843         pr "    fl = (*env)->GetFieldID (env, cl, \"%s\", \"J\");\n" name;
9844         pr "    (*env)->SetLongField (env, jfl, fl, r->val[i].%s);\n" name;
9845     | name, (FUInt32|FInt32) ->
9846         pr "    fl = (*env)->GetFieldID (env, cl, \"%s\", \"I\");\n" name;
9847         pr "    (*env)->SetLongField (env, jfl, fl, r->val[i].%s);\n" name;
9848     | name, FOptPercent ->
9849         pr "    fl = (*env)->GetFieldID (env, cl, \"%s\", \"F\");\n" name;
9850         pr "    (*env)->SetFloatField (env, jfl, fl, r->val[i].%s);\n" name;
9851     | name, FChar ->
9852         pr "    fl = (*env)->GetFieldID (env, cl, \"%s\", \"C\");\n" name;
9853         pr "    (*env)->SetLongField (env, jfl, fl, r->val[i].%s);\n" name;
9854   ) cols;
9855   pr "    (*env)->SetObjectArrayElement (env, jfl, i, jfl);\n";
9856   pr "  }\n";
9857   pr "  guestfs_free_%s_list (r);\n" typ;
9858   pr "  return jr;\n"
9859
9860 and generate_java_makefile_inc () =
9861   generate_header HashStyle GPLv2plus;
9862
9863   pr "java_built_sources = \\\n";
9864   List.iter (
9865     fun (typ, jtyp) ->
9866         pr "\tcom/redhat/et/libguestfs/%s.java \\\n" jtyp;
9867   ) java_structs;
9868   pr "\tcom/redhat/et/libguestfs/GuestFS.java\n"
9869
9870 and generate_haskell_hs () =
9871   generate_header HaskellStyle LGPLv2plus;
9872
9873   (* XXX We only know how to generate partial FFI for Haskell
9874    * at the moment.  Please help out!
9875    *)
9876   let can_generate style =
9877     match style with
9878     | RErr, _
9879     | RInt _, _
9880     | RInt64 _, _ -> true
9881     | RBool _, _
9882     | RConstString _, _
9883     | RConstOptString _, _
9884     | RString _, _
9885     | RStringList _, _
9886     | RStruct _, _
9887     | RStructList _, _
9888     | RHashtable _, _
9889     | RBufferOut _, _ -> false in
9890
9891   pr "\
9892 {-# INCLUDE <guestfs.h> #-}
9893 {-# LANGUAGE ForeignFunctionInterface #-}
9894
9895 module Guestfs (
9896   create";
9897
9898   (* List out the names of the actions we want to export. *)
9899   List.iter (
9900     fun (name, style, _, _, _, _, _) ->
9901       if can_generate style then pr ",\n  %s" name
9902   ) all_functions;
9903
9904   pr "
9905   ) where
9906
9907 -- Unfortunately some symbols duplicate ones already present
9908 -- in Prelude.  We don't know which, so we hard-code a list
9909 -- here.
9910 import Prelude hiding (truncate)
9911
9912 import Foreign
9913 import Foreign.C
9914 import Foreign.C.Types
9915 import IO
9916 import Control.Exception
9917 import Data.Typeable
9918
9919 data GuestfsS = GuestfsS            -- represents the opaque C struct
9920 type GuestfsP = Ptr GuestfsS        -- guestfs_h *
9921 type GuestfsH = ForeignPtr GuestfsS -- guestfs_h * with attached finalizer
9922
9923 -- XXX define properly later XXX
9924 data PV = PV
9925 data VG = VG
9926 data LV = LV
9927 data IntBool = IntBool
9928 data Stat = Stat
9929 data StatVFS = StatVFS
9930 data Hashtable = Hashtable
9931
9932 foreign import ccall unsafe \"guestfs_create\" c_create
9933   :: IO GuestfsP
9934 foreign import ccall unsafe \"&guestfs_close\" c_close
9935   :: FunPtr (GuestfsP -> IO ())
9936 foreign import ccall unsafe \"guestfs_set_error_handler\" c_set_error_handler
9937   :: GuestfsP -> Ptr CInt -> Ptr CInt -> IO ()
9938
9939 create :: IO GuestfsH
9940 create = do
9941   p <- c_create
9942   c_set_error_handler p nullPtr nullPtr
9943   h <- newForeignPtr c_close p
9944   return h
9945
9946 foreign import ccall unsafe \"guestfs_last_error\" c_last_error
9947   :: GuestfsP -> IO CString
9948
9949 -- last_error :: GuestfsH -> IO (Maybe String)
9950 -- last_error h = do
9951 --   str <- withForeignPtr h (\\p -> c_last_error p)
9952 --   maybePeek peekCString str
9953
9954 last_error :: GuestfsH -> IO (String)
9955 last_error h = do
9956   str <- withForeignPtr h (\\p -> c_last_error p)
9957   if (str == nullPtr)
9958     then return \"no error\"
9959     else peekCString str
9960
9961 ";
9962
9963   (* Generate wrappers for each foreign function. *)
9964   List.iter (
9965     fun (name, style, _, _, _, _, _) ->
9966       if can_generate style then (
9967         pr "foreign import ccall unsafe \"guestfs_%s\" c_%s\n" name name;
9968         pr "  :: ";
9969         generate_haskell_prototype ~handle:"GuestfsP" style;
9970         pr "\n";
9971         pr "\n";
9972         pr "%s :: " name;
9973         generate_haskell_prototype ~handle:"GuestfsH" ~hs:true style;
9974         pr "\n";
9975         pr "%s %s = do\n" name
9976           (String.concat " " ("h" :: List.map name_of_argt (snd style)));
9977         pr "  r <- ";
9978         (* Convert pointer arguments using with* functions. *)
9979         List.iter (
9980           function
9981           | FileIn n
9982           | FileOut n
9983           | Pathname n | Device n | Dev_or_Path n | String n -> pr "withCString %s $ \\%s -> " n n
9984           | OptString n -> pr "maybeWith withCString %s $ \\%s -> " n n
9985           | StringList n | DeviceList n -> pr "withMany withCString %s $ \\%s -> withArray0 nullPtr %s $ \\%s -> " n n n n
9986           | Bool _ | Int _ | Int64 _ -> ()
9987         ) (snd style);
9988         (* Convert integer arguments. *)
9989         let args =
9990           List.map (
9991             function
9992             | Bool n -> sprintf "(fromBool %s)" n
9993             | Int n -> sprintf "(fromIntegral %s)" n
9994             | Int64 n -> sprintf "(fromIntegral %s)" n
9995             | FileIn n | FileOut n
9996             | Pathname n | Device n | Dev_or_Path n | String n | OptString n | StringList n | DeviceList n -> n
9997           ) (snd style) in
9998         pr "withForeignPtr h (\\p -> c_%s %s)\n" name
9999           (String.concat " " ("p" :: args));
10000         (match fst style with
10001          | RErr | RInt _ | RInt64 _ | RBool _ ->
10002              pr "  if (r == -1)\n";
10003              pr "    then do\n";
10004              pr "      err <- last_error h\n";
10005              pr "      fail err\n";
10006          | RConstString _ | RConstOptString _ | RString _
10007          | RStringList _ | RStruct _
10008          | RStructList _ | RHashtable _ | RBufferOut _ ->
10009              pr "  if (r == nullPtr)\n";
10010              pr "    then do\n";
10011              pr "      err <- last_error h\n";
10012              pr "      fail err\n";
10013         );
10014         (match fst style with
10015          | RErr ->
10016              pr "    else return ()\n"
10017          | RInt _ ->
10018              pr "    else return (fromIntegral r)\n"
10019          | RInt64 _ ->
10020              pr "    else return (fromIntegral r)\n"
10021          | RBool _ ->
10022              pr "    else return (toBool r)\n"
10023          | RConstString _
10024          | RConstOptString _
10025          | RString _
10026          | RStringList _
10027          | RStruct _
10028          | RStructList _
10029          | RHashtable _
10030          | RBufferOut _ ->
10031              pr "    else return ()\n" (* XXXXXXXXXXXXXXXXXXXX *)
10032         );
10033         pr "\n";
10034       )
10035   ) all_functions
10036
10037 and generate_haskell_prototype ~handle ?(hs = false) style =
10038   pr "%s -> " handle;
10039   let string = if hs then "String" else "CString" in
10040   let int = if hs then "Int" else "CInt" in
10041   let bool = if hs then "Bool" else "CInt" in
10042   let int64 = if hs then "Integer" else "Int64" in
10043   List.iter (
10044     fun arg ->
10045       (match arg with
10046        | Pathname _ | Device _ | Dev_or_Path _ | String _ -> pr "%s" string
10047        | OptString _ -> if hs then pr "Maybe String" else pr "CString"
10048        | StringList _ | DeviceList _ -> if hs then pr "[String]" else pr "Ptr CString"
10049        | Bool _ -> pr "%s" bool
10050        | Int _ -> pr "%s" int
10051        | Int64 _ -> pr "%s" int
10052        | FileIn _ -> pr "%s" string
10053        | FileOut _ -> pr "%s" string
10054       );
10055       pr " -> ";
10056   ) (snd style);
10057   pr "IO (";
10058   (match fst style with
10059    | RErr -> if not hs then pr "CInt"
10060    | RInt _ -> pr "%s" int
10061    | RInt64 _ -> pr "%s" int64
10062    | RBool _ -> pr "%s" bool
10063    | RConstString _ -> pr "%s" string
10064    | RConstOptString _ -> pr "Maybe %s" string
10065    | RString _ -> pr "%s" string
10066    | RStringList _ -> pr "[%s]" string
10067    | RStruct (_, typ) ->
10068        let name = java_name_of_struct typ in
10069        pr "%s" name
10070    | RStructList (_, typ) ->
10071        let name = java_name_of_struct typ in
10072        pr "[%s]" name
10073    | RHashtable _ -> pr "Hashtable"
10074    | RBufferOut _ -> pr "%s" string
10075   );
10076   pr ")"
10077
10078 and generate_csharp () =
10079   generate_header CPlusPlusStyle LGPLv2plus;
10080
10081   (* XXX Make this configurable by the C# assembly users. *)
10082   let library = "libguestfs.so.0" in
10083
10084   pr "\
10085 // These C# bindings are highly experimental at present.
10086 //
10087 // Firstly they only work on Linux (ie. Mono).  In order to get them
10088 // to work on Windows (ie. .Net) you would need to port the library
10089 // itself to Windows first.
10090 //
10091 // The second issue is that some calls are known to be incorrect and
10092 // can cause Mono to segfault.  Particularly: calls which pass or
10093 // return string[], or return any structure value.  This is because
10094 // we haven't worked out the correct way to do this from C#.
10095 //
10096 // The third issue is that when compiling you get a lot of warnings.
10097 // We are not sure whether the warnings are important or not.
10098 //
10099 // Fourthly we do not routinely build or test these bindings as part
10100 // of the make && make check cycle, which means that regressions might
10101 // go unnoticed.
10102 //
10103 // Suggestions and patches are welcome.
10104
10105 // To compile:
10106 //
10107 // gmcs Libguestfs.cs
10108 // mono Libguestfs.exe
10109 //
10110 // (You'll probably want to add a Test class / static main function
10111 // otherwise this won't do anything useful).
10112
10113 using System;
10114 using System.IO;
10115 using System.Runtime.InteropServices;
10116 using System.Runtime.Serialization;
10117 using System.Collections;
10118
10119 namespace Guestfs
10120 {
10121   class Error : System.ApplicationException
10122   {
10123     public Error (string message) : base (message) {}
10124     protected Error (SerializationInfo info, StreamingContext context) {}
10125   }
10126
10127   class Guestfs
10128   {
10129     IntPtr _handle;
10130
10131     [DllImport (\"%s\")]
10132     static extern IntPtr guestfs_create ();
10133
10134     public Guestfs ()
10135     {
10136       _handle = guestfs_create ();
10137       if (_handle == IntPtr.Zero)
10138         throw new Error (\"could not create guestfs handle\");
10139     }
10140
10141     [DllImport (\"%s\")]
10142     static extern void guestfs_close (IntPtr h);
10143
10144     ~Guestfs ()
10145     {
10146       guestfs_close (_handle);
10147     }
10148
10149     [DllImport (\"%s\")]
10150     static extern string guestfs_last_error (IntPtr h);
10151
10152 " library library library;
10153
10154   (* Generate C# structure bindings.  We prefix struct names with
10155    * underscore because C# cannot have conflicting struct names and
10156    * method names (eg. "class stat" and "stat").
10157    *)
10158   List.iter (
10159     fun (typ, cols) ->
10160       pr "    [StructLayout (LayoutKind.Sequential)]\n";
10161       pr "    public class _%s {\n" typ;
10162       List.iter (
10163         function
10164         | name, FChar -> pr "      char %s;\n" name
10165         | name, FString -> pr "      string %s;\n" name
10166         | name, FBuffer ->
10167             pr "      uint %s_len;\n" name;
10168             pr "      string %s;\n" name
10169         | name, FUUID ->
10170             pr "      [MarshalAs (UnmanagedType.ByValTStr, SizeConst=16)]\n";
10171             pr "      string %s;\n" name
10172         | name, FUInt32 -> pr "      uint %s;\n" name
10173         | name, FInt32 -> pr "      int %s;\n" name
10174         | name, (FUInt64|FBytes) -> pr "      ulong %s;\n" name
10175         | name, FInt64 -> pr "      long %s;\n" name
10176         | name, FOptPercent -> pr "      float %s; /* [0..100] or -1 */\n" name
10177       ) cols;
10178       pr "    }\n";
10179       pr "\n"
10180   ) structs;
10181
10182   (* Generate C# function bindings. *)
10183   List.iter (
10184     fun (name, style, _, _, _, shortdesc, _) ->
10185       let rec csharp_return_type () =
10186         match fst style with
10187         | RErr -> "void"
10188         | RBool n -> "bool"
10189         | RInt n -> "int"
10190         | RInt64 n -> "long"
10191         | RConstString n
10192         | RConstOptString n
10193         | RString n
10194         | RBufferOut n -> "string"
10195         | RStruct (_,n) -> "_" ^ n
10196         | RHashtable n -> "Hashtable"
10197         | RStringList n -> "string[]"
10198         | RStructList (_,n) -> sprintf "_%s[]" n
10199
10200       and c_return_type () =
10201         match fst style with
10202         | RErr
10203         | RBool _
10204         | RInt _ -> "int"
10205         | RInt64 _ -> "long"
10206         | RConstString _
10207         | RConstOptString _
10208         | RString _
10209         | RBufferOut _ -> "string"
10210         | RStruct (_,n) -> "_" ^ n
10211         | RHashtable _
10212         | RStringList _ -> "string[]"
10213         | RStructList (_,n) -> sprintf "_%s[]" n
10214     
10215       and c_error_comparison () =
10216         match fst style with
10217         | RErr
10218         | RBool _
10219         | RInt _
10220         | RInt64 _ -> "== -1"
10221         | RConstString _
10222         | RConstOptString _
10223         | RString _
10224         | RBufferOut _
10225         | RStruct (_,_)
10226         | RHashtable _
10227         | RStringList _
10228         | RStructList (_,_) -> "== null"
10229     
10230       and generate_extern_prototype () =
10231         pr "    static extern %s guestfs_%s (IntPtr h"
10232           (c_return_type ()) name;
10233         List.iter (
10234           function
10235           | Pathname n | Device n | Dev_or_Path n | String n | OptString n
10236           | FileIn n | FileOut n ->
10237               pr ", [In] string %s" n
10238           | StringList n | DeviceList n ->
10239               pr ", [In] string[] %s" n
10240           | Bool n ->
10241               pr ", bool %s" n
10242           | Int n ->
10243               pr ", int %s" n
10244           | Int64 n ->
10245               pr ", long %s" n
10246         ) (snd style);
10247         pr ");\n"
10248
10249       and generate_public_prototype () =
10250         pr "    public %s %s (" (csharp_return_type ()) name;
10251         let comma = ref false in
10252         let next () =
10253           if !comma then pr ", ";
10254           comma := true
10255         in
10256         List.iter (
10257           function
10258           | Pathname n | Device n | Dev_or_Path n | String n | OptString n
10259           | FileIn n | FileOut n ->
10260               next (); pr "string %s" n
10261           | StringList n | DeviceList n ->
10262               next (); pr "string[] %s" n
10263           | Bool n ->
10264               next (); pr "bool %s" n
10265           | Int n ->
10266               next (); pr "int %s" n
10267           | Int64 n ->
10268               next (); pr "long %s" n
10269         ) (snd style);
10270         pr ")\n"
10271
10272       and generate_call () =
10273         pr "guestfs_%s (_handle" name;
10274         List.iter (fun arg -> pr ", %s" (name_of_argt arg)) (snd style);
10275         pr ");\n";
10276       in
10277
10278       pr "    [DllImport (\"%s\")]\n" library;
10279       generate_extern_prototype ();
10280       pr "\n";
10281       pr "    /// <summary>\n";
10282       pr "    /// %s\n" shortdesc;
10283       pr "    /// </summary>\n";
10284       generate_public_prototype ();
10285       pr "    {\n";
10286       pr "      %s r;\n" (c_return_type ());
10287       pr "      r = ";
10288       generate_call ();
10289       pr "      if (r %s)\n" (c_error_comparison ());
10290       pr "        throw new Error (\"%s: \" + guestfs_last_error (_handle));\n"
10291         name;
10292       (match fst style with
10293        | RErr -> ()
10294        | RBool _ ->
10295            pr "      return r != 0 ? true : false;\n"
10296        | RHashtable _ ->
10297            pr "      Hashtable rr = new Hashtable ();\n";
10298            pr "      for (int i = 0; i < r.Length; i += 2)\n";
10299            pr "        rr.Add (r[i], r[i+1]);\n";
10300            pr "      return rr;\n"
10301        | RInt _ | RInt64 _ | RConstString _ | RConstOptString _
10302        | RString _ | RBufferOut _ | RStruct _ | RStringList _
10303        | RStructList _ ->
10304            pr "      return r;\n"
10305       );
10306       pr "    }\n";
10307       pr "\n";
10308   ) all_functions_sorted;
10309
10310   pr "  }
10311 }
10312 "
10313
10314 and generate_bindtests () =
10315   generate_header CStyle LGPLv2plus;
10316
10317   pr "\
10318 #include <stdio.h>
10319 #include <stdlib.h>
10320 #include <inttypes.h>
10321 #include <string.h>
10322
10323 #include \"guestfs.h\"
10324 #include \"guestfs-internal.h\"
10325 #include \"guestfs-internal-actions.h\"
10326 #include \"guestfs_protocol.h\"
10327
10328 #define error guestfs_error
10329 #define safe_calloc guestfs_safe_calloc
10330 #define safe_malloc guestfs_safe_malloc
10331
10332 static void
10333 print_strings (char *const *argv)
10334 {
10335   int argc;
10336
10337   printf (\"[\");
10338   for (argc = 0; argv[argc] != NULL; ++argc) {
10339     if (argc > 0) printf (\", \");
10340     printf (\"\\\"%%s\\\"\", argv[argc]);
10341   }
10342   printf (\"]\\n\");
10343 }
10344
10345 /* The test0 function prints its parameters to stdout. */
10346 ";
10347
10348   let test0, tests =
10349     match test_functions with
10350     | [] -> assert false
10351     | test0 :: tests -> test0, tests in
10352
10353   let () =
10354     let (name, style, _, _, _, _, _) = test0 in
10355     generate_prototype ~extern:false ~semicolon:false ~newline:true
10356       ~handle:"g" ~prefix:"guestfs__" name style;
10357     pr "{\n";
10358     List.iter (
10359       function
10360       | Pathname n
10361       | Device n | Dev_or_Path n
10362       | String n
10363       | FileIn n
10364       | FileOut n -> pr "  printf (\"%%s\\n\", %s);\n" n
10365       | OptString n -> pr "  printf (\"%%s\\n\", %s ? %s : \"null\");\n" n n
10366       | StringList n | DeviceList n -> pr "  print_strings (%s);\n" n
10367       | Bool n -> pr "  printf (\"%%s\\n\", %s ? \"true\" : \"false\");\n" n
10368       | Int n -> pr "  printf (\"%%d\\n\", %s);\n" n
10369       | Int64 n -> pr "  printf (\"%%\" PRIi64 \"\\n\", %s);\n" n
10370     ) (snd style);
10371     pr "  /* Java changes stdout line buffering so we need this: */\n";
10372     pr "  fflush (stdout);\n";
10373     pr "  return 0;\n";
10374     pr "}\n";
10375     pr "\n" in
10376
10377   List.iter (
10378     fun (name, style, _, _, _, _, _) ->
10379       if String.sub name (String.length name - 3) 3 <> "err" then (
10380         pr "/* Test normal return. */\n";
10381         generate_prototype ~extern:false ~semicolon:false ~newline:true
10382           ~handle:"g" ~prefix:"guestfs__" name style;
10383         pr "{\n";
10384         (match fst style with
10385          | RErr ->
10386              pr "  return 0;\n"
10387          | RInt _ ->
10388              pr "  int r;\n";
10389              pr "  sscanf (val, \"%%d\", &r);\n";
10390              pr "  return r;\n"
10391          | RInt64 _ ->
10392              pr "  int64_t r;\n";
10393              pr "  sscanf (val, \"%%\" SCNi64, &r);\n";
10394              pr "  return r;\n"
10395          | RBool _ ->
10396              pr "  return STREQ (val, \"true\");\n"
10397          | RConstString _
10398          | RConstOptString _ ->
10399              (* Can't return the input string here.  Return a static
10400               * string so we ensure we get a segfault if the caller
10401               * tries to free it.
10402               *)
10403              pr "  return \"static string\";\n"
10404          | RString _ ->
10405              pr "  return strdup (val);\n"
10406          | RStringList _ ->
10407              pr "  char **strs;\n";
10408              pr "  int n, i;\n";
10409              pr "  sscanf (val, \"%%d\", &n);\n";
10410              pr "  strs = safe_malloc (g, (n+1) * sizeof (char *));\n";
10411              pr "  for (i = 0; i < n; ++i) {\n";
10412              pr "    strs[i] = safe_malloc (g, 16);\n";
10413              pr "    snprintf (strs[i], 16, \"%%d\", i);\n";
10414              pr "  }\n";
10415              pr "  strs[n] = NULL;\n";
10416              pr "  return strs;\n"
10417          | RStruct (_, typ) ->
10418              pr "  struct guestfs_%s *r;\n" typ;
10419              pr "  r = safe_calloc (g, sizeof *r, 1);\n";
10420              pr "  return r;\n"
10421          | RStructList (_, typ) ->
10422              pr "  struct guestfs_%s_list *r;\n" typ;
10423              pr "  r = safe_calloc (g, sizeof *r, 1);\n";
10424              pr "  sscanf (val, \"%%d\", &r->len);\n";
10425              pr "  r->val = safe_calloc (g, r->len, sizeof *r->val);\n";
10426              pr "  return r;\n"
10427          | RHashtable _ ->
10428              pr "  char **strs;\n";
10429              pr "  int n, i;\n";
10430              pr "  sscanf (val, \"%%d\", &n);\n";
10431              pr "  strs = safe_malloc (g, (n*2+1) * sizeof (*strs));\n";
10432              pr "  for (i = 0; i < n; ++i) {\n";
10433              pr "    strs[i*2] = safe_malloc (g, 16);\n";
10434              pr "    strs[i*2+1] = safe_malloc (g, 16);\n";
10435              pr "    snprintf (strs[i*2], 16, \"%%d\", i);\n";
10436              pr "    snprintf (strs[i*2+1], 16, \"%%d\", i);\n";
10437              pr "  }\n";
10438              pr "  strs[n*2] = NULL;\n";
10439              pr "  return strs;\n"
10440          | RBufferOut _ ->
10441              pr "  return strdup (val);\n"
10442         );
10443         pr "}\n";
10444         pr "\n"
10445       ) else (
10446         pr "/* Test error return. */\n";
10447         generate_prototype ~extern:false ~semicolon:false ~newline:true
10448           ~handle:"g" ~prefix:"guestfs__" name style;
10449         pr "{\n";
10450         pr "  error (g, \"error\");\n";
10451         (match fst style with
10452          | RErr | RInt _ | RInt64 _ | RBool _ ->
10453              pr "  return -1;\n"
10454          | RConstString _ | RConstOptString _
10455          | RString _ | RStringList _ | RStruct _
10456          | RStructList _
10457          | RHashtable _
10458          | RBufferOut _ ->
10459              pr "  return NULL;\n"
10460         );
10461         pr "}\n";
10462         pr "\n"
10463       )
10464   ) tests
10465
10466 and generate_ocaml_bindtests () =
10467   generate_header OCamlStyle GPLv2plus;
10468
10469   pr "\
10470 let () =
10471   let g = Guestfs.create () in
10472 ";
10473
10474   let mkargs args =
10475     String.concat " " (
10476       List.map (
10477         function
10478         | CallString s -> "\"" ^ s ^ "\""
10479         | CallOptString None -> "None"
10480         | CallOptString (Some s) -> sprintf "(Some \"%s\")" s
10481         | CallStringList xs ->
10482             "[|" ^ String.concat ";" (List.map (sprintf "\"%s\"") xs) ^ "|]"
10483         | CallInt i when i >= 0 -> string_of_int i
10484         | CallInt i (* when i < 0 *) -> "(" ^ string_of_int i ^ ")"
10485         | CallInt64 i when i >= 0L -> Int64.to_string i ^ "L"
10486         | CallInt64 i (* when i < 0L *) -> "(" ^ Int64.to_string i ^ "L)"
10487         | CallBool b -> string_of_bool b
10488       ) args
10489     )
10490   in
10491
10492   generate_lang_bindtests (
10493     fun f args -> pr "  Guestfs.%s g %s;\n" f (mkargs args)
10494   );
10495
10496   pr "print_endline \"EOF\"\n"
10497
10498 and generate_perl_bindtests () =
10499   pr "#!/usr/bin/perl -w\n";
10500   generate_header HashStyle GPLv2plus;
10501
10502   pr "\
10503 use strict;
10504
10505 use Sys::Guestfs;
10506
10507 my $g = Sys::Guestfs->new ();
10508 ";
10509
10510   let mkargs args =
10511     String.concat ", " (
10512       List.map (
10513         function
10514         | CallString s -> "\"" ^ s ^ "\""
10515         | CallOptString None -> "undef"
10516         | CallOptString (Some s) -> sprintf "\"%s\"" s
10517         | CallStringList xs ->
10518             "[" ^ String.concat "," (List.map (sprintf "\"%s\"") xs) ^ "]"
10519         | CallInt i -> string_of_int i
10520         | CallInt64 i -> Int64.to_string i
10521         | CallBool b -> if b then "1" else "0"
10522       ) args
10523     )
10524   in
10525
10526   generate_lang_bindtests (
10527     fun f args -> pr "$g->%s (%s);\n" f (mkargs args)
10528   );
10529
10530   pr "print \"EOF\\n\"\n"
10531
10532 and generate_python_bindtests () =
10533   generate_header HashStyle GPLv2plus;
10534
10535   pr "\
10536 import guestfs
10537
10538 g = guestfs.GuestFS ()
10539 ";
10540
10541   let mkargs args =
10542     String.concat ", " (
10543       List.map (
10544         function
10545         | CallString s -> "\"" ^ s ^ "\""
10546         | CallOptString None -> "None"
10547         | CallOptString (Some s) -> sprintf "\"%s\"" s
10548         | CallStringList xs ->
10549             "[" ^ String.concat "," (List.map (sprintf "\"%s\"") xs) ^ "]"
10550         | CallInt i -> string_of_int i
10551         | CallInt64 i -> Int64.to_string i
10552         | CallBool b -> if b then "1" else "0"
10553       ) args
10554     )
10555   in
10556
10557   generate_lang_bindtests (
10558     fun f args -> pr "g.%s (%s)\n" f (mkargs args)
10559   );
10560
10561   pr "print \"EOF\"\n"
10562
10563 and generate_ruby_bindtests () =
10564   generate_header HashStyle GPLv2plus;
10565
10566   pr "\
10567 require 'guestfs'
10568
10569 g = Guestfs::create()
10570 ";
10571
10572   let mkargs args =
10573     String.concat ", " (
10574       List.map (
10575         function
10576         | CallString s -> "\"" ^ s ^ "\""
10577         | CallOptString None -> "nil"
10578         | CallOptString (Some s) -> sprintf "\"%s\"" s
10579         | CallStringList xs ->
10580             "[" ^ String.concat "," (List.map (sprintf "\"%s\"") xs) ^ "]"
10581         | CallInt i -> string_of_int i
10582         | CallInt64 i -> Int64.to_string i
10583         | CallBool b -> string_of_bool b
10584       ) args
10585     )
10586   in
10587
10588   generate_lang_bindtests (
10589     fun f args -> pr "g.%s(%s)\n" f (mkargs args)
10590   );
10591
10592   pr "print \"EOF\\n\"\n"
10593
10594 and generate_java_bindtests () =
10595   generate_header CStyle GPLv2plus;
10596
10597   pr "\
10598 import com.redhat.et.libguestfs.*;
10599
10600 public class Bindtests {
10601     public static void main (String[] argv)
10602     {
10603         try {
10604             GuestFS g = new GuestFS ();
10605 ";
10606
10607   let mkargs args =
10608     String.concat ", " (
10609       List.map (
10610         function
10611         | CallString s -> "\"" ^ s ^ "\""
10612         | CallOptString None -> "null"
10613         | CallOptString (Some s) -> sprintf "\"%s\"" s
10614         | CallStringList xs ->
10615             "new String[]{" ^
10616               String.concat "," (List.map (sprintf "\"%s\"") xs) ^ "}"
10617         | CallInt i -> string_of_int i
10618         | CallInt64 i -> Int64.to_string i
10619         | CallBool b -> string_of_bool b
10620       ) args
10621     )
10622   in
10623
10624   generate_lang_bindtests (
10625     fun f args -> pr "            g.%s (%s);\n" f (mkargs args)
10626   );
10627
10628   pr "
10629             System.out.println (\"EOF\");
10630         }
10631         catch (Exception exn) {
10632             System.err.println (exn);
10633             System.exit (1);
10634         }
10635     }
10636 }
10637 "
10638
10639 and generate_haskell_bindtests () =
10640   generate_header HaskellStyle GPLv2plus;
10641
10642   pr "\
10643 module Bindtests where
10644 import qualified Guestfs
10645
10646 main = do
10647   g <- Guestfs.create
10648 ";
10649
10650   let mkargs args =
10651     String.concat " " (
10652       List.map (
10653         function
10654         | CallString s -> "\"" ^ s ^ "\""
10655         | CallOptString None -> "Nothing"
10656         | CallOptString (Some s) -> sprintf "(Just \"%s\")" s
10657         | CallStringList xs ->
10658             "[" ^ String.concat "," (List.map (sprintf "\"%s\"") xs) ^ "]"
10659         | CallInt i when i < 0 -> "(" ^ string_of_int i ^ ")"
10660         | CallInt i -> string_of_int i
10661         | CallInt64 i when i < 0L -> "(" ^ Int64.to_string i ^ ")"
10662         | CallInt64 i -> Int64.to_string i
10663         | CallBool true -> "True"
10664         | CallBool false -> "False"
10665       ) args
10666     )
10667   in
10668
10669   generate_lang_bindtests (
10670     fun f args -> pr "  Guestfs.%s g %s\n" f (mkargs args)
10671   );
10672
10673   pr "  putStrLn \"EOF\"\n"
10674
10675 (* Language-independent bindings tests - we do it this way to
10676  * ensure there is parity in testing bindings across all languages.
10677  *)
10678 and generate_lang_bindtests call =
10679   call "test0" [CallString "abc"; CallOptString (Some "def");
10680                 CallStringList []; CallBool false;
10681                 CallInt 0; CallInt64 0L; CallString "123"; CallString "456"];
10682   call "test0" [CallString "abc"; CallOptString None;
10683                 CallStringList []; CallBool false;
10684                 CallInt 0; CallInt64 0L; CallString "123"; CallString "456"];
10685   call "test0" [CallString ""; CallOptString (Some "def");
10686                 CallStringList []; CallBool false;
10687                 CallInt 0; CallInt64 0L; CallString "123"; CallString "456"];
10688   call "test0" [CallString ""; CallOptString (Some "");
10689                 CallStringList []; CallBool false;
10690                 CallInt 0; CallInt64 0L; CallString "123"; CallString "456"];
10691   call "test0" [CallString "abc"; CallOptString (Some "def");
10692                 CallStringList ["1"]; CallBool false;
10693                 CallInt 0; CallInt64 0L; CallString "123"; CallString "456"];
10694   call "test0" [CallString "abc"; CallOptString (Some "def");
10695                 CallStringList ["1"; "2"]; CallBool false;
10696                 CallInt 0; CallInt64 0L; CallString "123"; CallString "456"];
10697   call "test0" [CallString "abc"; CallOptString (Some "def");
10698                 CallStringList ["1"]; CallBool true;
10699                 CallInt 0; CallInt64 0L; CallString "123"; CallString "456"];
10700   call "test0" [CallString "abc"; CallOptString (Some "def");
10701                 CallStringList ["1"]; CallBool false;
10702                 CallInt (-1); CallInt64 (-1L); CallString "123"; CallString "456"];
10703   call "test0" [CallString "abc"; CallOptString (Some "def");
10704                 CallStringList ["1"]; CallBool false;
10705                 CallInt (-2); CallInt64 (-2L); CallString "123"; CallString "456"];
10706   call "test0" [CallString "abc"; CallOptString (Some "def");
10707                 CallStringList ["1"]; CallBool false;
10708                 CallInt 1; CallInt64 1L; CallString "123"; CallString "456"];
10709   call "test0" [CallString "abc"; CallOptString (Some "def");
10710                 CallStringList ["1"]; CallBool false;
10711                 CallInt 2; CallInt64 2L; CallString "123"; CallString "456"];
10712   call "test0" [CallString "abc"; CallOptString (Some "def");
10713                 CallStringList ["1"]; CallBool false;
10714                 CallInt 4095; CallInt64 4095L; CallString "123"; CallString "456"];
10715   call "test0" [CallString "abc"; CallOptString (Some "def");
10716                 CallStringList ["1"]; CallBool false;
10717                 CallInt 0; CallInt64 0L; CallString ""; CallString ""]
10718
10719 (* XXX Add here tests of the return and error functions. *)
10720
10721 (* Code to generator bindings for virt-inspector.  Currently only
10722  * implemented for OCaml code (for virt-p2v 2.0).
10723  *)
10724 let rng_input = "inspector/virt-inspector.rng"
10725
10726 (* Read the input file and parse it into internal structures.  This is
10727  * by no means a complete RELAX NG parser, but is just enough to be
10728  * able to parse the specific input file.
10729  *)
10730 type rng =
10731   | Element of string * rng list        (* <element name=name/> *)
10732   | Attribute of string * rng list        (* <attribute name=name/> *)
10733   | Interleave of rng list                (* <interleave/> *)
10734   | ZeroOrMore of rng                        (* <zeroOrMore/> *)
10735   | OneOrMore of rng                        (* <oneOrMore/> *)
10736   | Optional of rng                        (* <optional/> *)
10737   | Choice of string list                (* <choice><value/>*</choice> *)
10738   | Value of string                        (* <value>str</value> *)
10739   | Text                                (* <text/> *)
10740
10741 let rec string_of_rng = function
10742   | Element (name, xs) ->
10743       "Element (\"" ^ name ^ "\", (" ^ string_of_rng_list xs ^ "))"
10744   | Attribute (name, xs) ->
10745       "Attribute (\"" ^ name ^ "\", (" ^ string_of_rng_list xs ^ "))"
10746   | Interleave xs -> "Interleave (" ^ string_of_rng_list xs ^ ")"
10747   | ZeroOrMore rng -> "ZeroOrMore (" ^ string_of_rng rng ^ ")"
10748   | OneOrMore rng -> "OneOrMore (" ^ string_of_rng rng ^ ")"
10749   | Optional rng -> "Optional (" ^ string_of_rng rng ^ ")"
10750   | Choice values -> "Choice [" ^ String.concat ", " values ^ "]"
10751   | Value value -> "Value \"" ^ value ^ "\""
10752   | Text -> "Text"
10753
10754 and string_of_rng_list xs =
10755   String.concat ", " (List.map string_of_rng xs)
10756
10757 let rec parse_rng ?defines context = function
10758   | [] -> []
10759   | Xml.Element ("element", ["name", name], children) :: rest ->
10760       Element (name, parse_rng ?defines context children)
10761       :: parse_rng ?defines context rest
10762   | Xml.Element ("attribute", ["name", name], children) :: rest ->
10763       Attribute (name, parse_rng ?defines context children)
10764       :: parse_rng ?defines context rest
10765   | Xml.Element ("interleave", [], children) :: rest ->
10766       Interleave (parse_rng ?defines context children)
10767       :: parse_rng ?defines context rest
10768   | Xml.Element ("zeroOrMore", [], [child]) :: rest ->
10769       let rng = parse_rng ?defines context [child] in
10770       (match rng with
10771        | [child] -> ZeroOrMore child :: parse_rng ?defines context rest
10772        | _ ->
10773            failwithf "%s: <zeroOrMore> contains more than one child element"
10774              context
10775       )
10776   | Xml.Element ("oneOrMore", [], [child]) :: rest ->
10777       let rng = parse_rng ?defines context [child] in
10778       (match rng with
10779        | [child] -> OneOrMore child :: parse_rng ?defines context rest
10780        | _ ->
10781            failwithf "%s: <oneOrMore> contains more than one child element"
10782              context
10783       )
10784   | Xml.Element ("optional", [], [child]) :: rest ->
10785       let rng = parse_rng ?defines context [child] in
10786       (match rng with
10787        | [child] -> Optional child :: parse_rng ?defines context rest
10788        | _ ->
10789            failwithf "%s: <optional> contains more than one child element"
10790              context
10791       )
10792   | Xml.Element ("choice", [], children) :: rest ->
10793       let values = List.map (
10794         function Xml.Element ("value", [], [Xml.PCData value]) -> value
10795         | _ ->
10796             failwithf "%s: can't handle anything except <value> in <choice>"
10797               context
10798       ) children in
10799       Choice values
10800       :: parse_rng ?defines context rest
10801   | Xml.Element ("value", [], [Xml.PCData value]) :: rest ->
10802       Value value :: parse_rng ?defines context rest
10803   | Xml.Element ("text", [], []) :: rest ->
10804       Text :: parse_rng ?defines context rest
10805   | Xml.Element ("ref", ["name", name], []) :: rest ->
10806       (* Look up the reference.  Because of limitations in this parser,
10807        * we can't handle arbitrarily nested <ref> yet.  You can only
10808        * use <ref> from inside <start>.
10809        *)
10810       (match defines with
10811        | None ->
10812            failwithf "%s: contains <ref>, but no refs are defined yet" context
10813        | Some map ->
10814            let rng = StringMap.find name map in
10815            rng @ parse_rng ?defines context rest
10816       )
10817   | x :: _ ->
10818       failwithf "%s: can't handle '%s' in schema" context (Xml.to_string x)
10819
10820 let grammar =
10821   let xml = Xml.parse_file rng_input in
10822   match xml with
10823   | Xml.Element ("grammar", _,
10824                  Xml.Element ("start", _, gram) :: defines) ->
10825       (* The <define/> elements are referenced in the <start> section,
10826        * so build a map of those first.
10827        *)
10828       let defines = List.fold_left (
10829         fun map ->
10830           function Xml.Element ("define", ["name", name], defn) ->
10831             StringMap.add name defn map
10832           | _ ->
10833               failwithf "%s: expected <define name=name/>" rng_input
10834       ) StringMap.empty defines in
10835       let defines = StringMap.mapi parse_rng defines in
10836
10837       (* Parse the <start> clause, passing the defines. *)
10838       parse_rng ~defines "<start>" gram
10839   | _ ->
10840       failwithf "%s: input is not <grammar><start/><define>*</grammar>"
10841         rng_input
10842
10843 let name_of_field = function
10844   | Element (name, _) | Attribute (name, _)
10845   | ZeroOrMore (Element (name, _))
10846   | OneOrMore (Element (name, _))
10847   | Optional (Element (name, _)) -> name
10848   | Optional (Attribute (name, _)) -> name
10849   | Text -> (* an unnamed field in an element *)
10850       "data"
10851   | rng ->
10852       failwithf "name_of_field failed at: %s" (string_of_rng rng)
10853
10854 (* At the moment this function only generates OCaml types.  However we
10855  * should parameterize it later so it can generate types/structs in a
10856  * variety of languages.
10857  *)
10858 let generate_types xs =
10859   (* A simple type is one that can be printed out directly, eg.
10860    * "string option".  A complex type is one which has a name and has
10861    * to be defined via another toplevel definition, eg. a struct.
10862    *
10863    * generate_type generates code for either simple or complex types.
10864    * In the simple case, it returns the string ("string option").  In
10865    * the complex case, it returns the name ("mountpoint").  In the
10866    * complex case it has to print out the definition before returning,
10867    * so it should only be called when we are at the beginning of a
10868    * new line (BOL context).
10869    *)
10870   let rec generate_type = function
10871     | Text ->                                (* string *)
10872         "string", true
10873     | Choice values ->                        (* [`val1|`val2|...] *)
10874         "[" ^ String.concat "|" (List.map ((^)"`") values) ^ "]", true
10875     | ZeroOrMore rng ->                        (* <rng> list *)
10876         let t, is_simple = generate_type rng in
10877         t ^ " list (* 0 or more *)", is_simple
10878     | OneOrMore rng ->                        (* <rng> list *)
10879         let t, is_simple = generate_type rng in
10880         t ^ " list (* 1 or more *)", is_simple
10881                                         (* virt-inspector hack: bool *)
10882     | Optional (Attribute (name, [Value "1"])) ->
10883         "bool", true
10884     | Optional rng ->                        (* <rng> list *)
10885         let t, is_simple = generate_type rng in
10886         t ^ " option", is_simple
10887                                         (* type name = { fields ... } *)
10888     | Element (name, fields) when is_attrs_interleave fields ->
10889         generate_type_struct name (get_attrs_interleave fields)
10890     | Element (name, [field])                (* type name = field *)
10891     | Attribute (name, [field]) ->
10892         let t, is_simple = generate_type field in
10893         if is_simple then (t, true)
10894         else (
10895           pr "type %s = %s\n" name t;
10896           name, false
10897         )
10898     | Element (name, fields) ->              (* type name = { fields ... } *)
10899         generate_type_struct name fields
10900     | rng ->
10901         failwithf "generate_type failed at: %s" (string_of_rng rng)
10902
10903   and is_attrs_interleave = function
10904     | [Interleave _] -> true
10905     | Attribute _ :: fields -> is_attrs_interleave fields
10906     | Optional (Attribute _) :: fields -> is_attrs_interleave fields
10907     | _ -> false
10908
10909   and get_attrs_interleave = function
10910     | [Interleave fields] -> fields
10911     | ((Attribute _) as field) :: fields
10912     | ((Optional (Attribute _)) as field) :: fields ->
10913         field :: get_attrs_interleave fields
10914     | _ -> assert false
10915
10916   and generate_types xs =
10917     List.iter (fun x -> ignore (generate_type x)) xs
10918
10919   and generate_type_struct name fields =
10920     (* Calculate the types of the fields first.  We have to do this
10921      * before printing anything so we are still in BOL context.
10922      *)
10923     let types = List.map fst (List.map generate_type fields) in
10924
10925     (* Special case of a struct containing just a string and another
10926      * field.  Turn it into an assoc list.
10927      *)
10928     match types with
10929     | ["string"; other] ->
10930         let fname1, fname2 =
10931           match fields with
10932           | [f1; f2] -> name_of_field f1, name_of_field f2
10933           | _ -> assert false in
10934         pr "type %s = string * %s (* %s -> %s *)\n" name other fname1 fname2;
10935         name, false
10936
10937     | types ->
10938         pr "type %s = {\n" name;
10939         List.iter (
10940           fun (field, ftype) ->
10941             let fname = name_of_field field in
10942             pr "  %s_%s : %s;\n" name fname ftype
10943         ) (List.combine fields types);
10944         pr "}\n";
10945         (* Return the name of this type, and
10946          * false because it's not a simple type.
10947          *)
10948         name, false
10949   in
10950
10951   generate_types xs
10952
10953 let generate_parsers xs =
10954   (* As for generate_type above, generate_parser makes a parser for
10955    * some type, and returns the name of the parser it has generated.
10956    * Because it (may) need to print something, it should always be
10957    * called in BOL context.
10958    *)
10959   let rec generate_parser = function
10960     | Text ->                                (* string *)
10961         "string_child_or_empty"
10962     | Choice values ->                        (* [`val1|`val2|...] *)
10963         sprintf "(fun x -> match Xml.pcdata (first_child x) with %s | str -> failwith (\"unexpected field value: \" ^ str))"
10964           (String.concat "|"
10965              (List.map (fun v -> sprintf "%S -> `%s" v v) values))
10966     | ZeroOrMore rng ->                        (* <rng> list *)
10967         let pa = generate_parser rng in
10968         sprintf "(fun x -> List.map %s (Xml.children x))" pa
10969     | OneOrMore rng ->                        (* <rng> list *)
10970         let pa = generate_parser rng in
10971         sprintf "(fun x -> List.map %s (Xml.children x))" pa
10972                                         (* virt-inspector hack: bool *)
10973     | Optional (Attribute (name, [Value "1"])) ->
10974         sprintf "(fun x -> try ignore (Xml.attrib x %S); true with Xml.No_attribute _ -> false)" name
10975     | Optional rng ->                        (* <rng> list *)
10976         let pa = generate_parser rng in
10977         sprintf "(function None -> None | Some x -> Some (%s x))" pa
10978                                         (* type name = { fields ... } *)
10979     | Element (name, fields) when is_attrs_interleave fields ->
10980         generate_parser_struct name (get_attrs_interleave fields)
10981     | Element (name, [field]) ->        (* type name = field *)
10982         let pa = generate_parser field in
10983         let parser_name = sprintf "parse_%s_%d" name (unique ()) in
10984         pr "let %s =\n" parser_name;
10985         pr "  %s\n" pa;
10986         pr "let parse_%s = %s\n" name parser_name;
10987         parser_name
10988     | Attribute (name, [field]) ->
10989         let pa = generate_parser field in
10990         let parser_name = sprintf "parse_%s_%d" name (unique ()) in
10991         pr "let %s =\n" parser_name;
10992         pr "  %s\n" pa;
10993         pr "let parse_%s = %s\n" name parser_name;
10994         parser_name
10995     | Element (name, fields) ->              (* type name = { fields ... } *)
10996         generate_parser_struct name ([], fields)
10997     | rng ->
10998         failwithf "generate_parser failed at: %s" (string_of_rng rng)
10999
11000   and is_attrs_interleave = function
11001     | [Interleave _] -> true
11002     | Attribute _ :: fields -> is_attrs_interleave fields
11003     | Optional (Attribute _) :: fields -> is_attrs_interleave fields
11004     | _ -> false
11005
11006   and get_attrs_interleave = function
11007     | [Interleave fields] -> [], fields
11008     | ((Attribute _) as field) :: fields
11009     | ((Optional (Attribute _)) as field) :: fields ->
11010         let attrs, interleaves = get_attrs_interleave fields in
11011         (field :: attrs), interleaves
11012     | _ -> assert false
11013
11014   and generate_parsers xs =
11015     List.iter (fun x -> ignore (generate_parser x)) xs
11016
11017   and generate_parser_struct name (attrs, interleaves) =
11018     (* Generate parsers for the fields first.  We have to do this
11019      * before printing anything so we are still in BOL context.
11020      *)
11021     let fields = attrs @ interleaves in
11022     let pas = List.map generate_parser fields in
11023
11024     (* Generate an intermediate tuple from all the fields first.
11025      * If the type is just a string + another field, then we will
11026      * return this directly, otherwise it is turned into a record.
11027      *
11028      * RELAX NG note: This code treats <interleave> and plain lists of
11029      * fields the same.  In other words, it doesn't bother enforcing
11030      * any ordering of fields in the XML.
11031      *)
11032     pr "let parse_%s x =\n" name;
11033     pr "  let t = (\n    ";
11034     let comma = ref false in
11035     List.iter (
11036       fun x ->
11037         if !comma then pr ",\n    ";
11038         comma := true;
11039         match x with
11040         | Optional (Attribute (fname, [field])), pa ->
11041             pr "%s x" pa
11042         | Optional (Element (fname, [field])), pa ->
11043             pr "%s (optional_child %S x)" pa fname
11044         | Attribute (fname, [Text]), _ ->
11045             pr "attribute %S x" fname
11046         | (ZeroOrMore _ | OneOrMore _), pa ->
11047             pr "%s x" pa
11048         | Text, pa ->
11049             pr "%s x" pa
11050         | (field, pa) ->
11051             let fname = name_of_field field in
11052             pr "%s (child %S x)" pa fname
11053     ) (List.combine fields pas);
11054     pr "\n  ) in\n";
11055
11056     (match fields with
11057      | [Element (_, [Text]) | Attribute (_, [Text]); _] ->
11058          pr "  t\n"
11059
11060      | _ ->
11061          pr "  (Obj.magic t : %s)\n" name
11062 (*
11063          List.iter (
11064            function
11065            | (Optional (Attribute (fname, [field])), pa) ->
11066                pr "  %s_%s =\n" name fname;
11067                pr "    %s x;\n" pa
11068            | (Optional (Element (fname, [field])), pa) ->
11069                pr "  %s_%s =\n" name fname;
11070                pr "    (let x = optional_child %S x in\n" fname;
11071                pr "     %s x);\n" pa
11072            | (field, pa) ->
11073                let fname = name_of_field field in
11074                pr "  %s_%s =\n" name fname;
11075                pr "    (let x = child %S x in\n" fname;
11076                pr "     %s x);\n" pa
11077          ) (List.combine fields pas);
11078          pr "}\n"
11079 *)
11080     );
11081     sprintf "parse_%s" name
11082   in
11083
11084   generate_parsers xs
11085
11086 (* Generate ocaml/guestfs_inspector.mli. *)
11087 let generate_ocaml_inspector_mli () =
11088   generate_header ~extra_inputs:[rng_input] OCamlStyle LGPLv2plus;
11089
11090   pr "\
11091 (** This is an OCaml language binding to the external [virt-inspector]
11092     program.
11093
11094     For more information, please read the man page [virt-inspector(1)].
11095 *)
11096
11097 ";
11098
11099   generate_types grammar;
11100   pr "(** The nested information returned from the {!inspect} function. *)\n";
11101   pr "\n";
11102
11103   pr "\
11104 val inspect : ?connect:string -> ?xml:string -> string list -> operatingsystems
11105 (** To inspect a libvirt domain called [name], pass a singleton
11106     list: [inspect [name]].  When using libvirt only, you may
11107     optionally pass a libvirt URI using [inspect ~connect:uri ...].
11108
11109     To inspect a disk image or images, pass a list of the filenames
11110     of the disk images: [inspect filenames]
11111
11112     This function inspects the given guest or disk images and
11113     returns a list of operating system(s) found and a large amount
11114     of information about them.  In the vast majority of cases,
11115     a virtual machine only contains a single operating system.
11116
11117     If the optional [~xml] parameter is given, then this function
11118     skips running the external virt-inspector program and just
11119     parses the given XML directly (which is expected to be XML
11120     produced from a previous run of virt-inspector).  The list of
11121     names and connect URI are ignored in this case.
11122
11123     This function can throw a wide variety of exceptions, for example
11124     if the external virt-inspector program cannot be found, or if
11125     it doesn't generate valid XML.
11126 *)
11127 "
11128
11129 (* Generate ocaml/guestfs_inspector.ml. *)
11130 let generate_ocaml_inspector_ml () =
11131   generate_header ~extra_inputs:[rng_input] OCamlStyle LGPLv2plus;
11132
11133   pr "open Unix\n";
11134   pr "\n";
11135
11136   generate_types grammar;
11137   pr "\n";
11138
11139   pr "\
11140 (* Misc functions which are used by the parser code below. *)
11141 let first_child = function
11142   | Xml.Element (_, _, c::_) -> c
11143   | Xml.Element (name, _, []) ->
11144       failwith (\"expected <\" ^ name ^ \"/> to have a child node\")
11145   | Xml.PCData str ->
11146       failwith (\"expected XML tag, but read PCDATA '\" ^ str ^ \"' instead\")
11147
11148 let string_child_or_empty = function
11149   | Xml.Element (_, _, [Xml.PCData s]) -> s
11150   | Xml.Element (_, _, []) -> \"\"
11151   | Xml.Element (x, _, _) ->
11152       failwith (\"expected XML tag with a single PCDATA child, but got \" ^
11153                 x ^ \" instead\")
11154   | Xml.PCData str ->
11155       failwith (\"expected XML tag, but read PCDATA '\" ^ str ^ \"' instead\")
11156
11157 let optional_child name xml =
11158   let children = Xml.children xml in
11159   try
11160     Some (List.find (function
11161                      | Xml.Element (n, _, _) when n = name -> true
11162                      | _ -> false) children)
11163   with
11164     Not_found -> None
11165
11166 let child name xml =
11167   match optional_child name xml with
11168   | Some c -> c
11169   | None ->
11170       failwith (\"mandatory field <\" ^ name ^ \"/> missing in XML output\")
11171
11172 let attribute name xml =
11173   try Xml.attrib xml name
11174   with Xml.No_attribute _ ->
11175     failwith (\"mandatory attribute \" ^ name ^ \" missing in XML output\")
11176
11177 ";
11178
11179   generate_parsers grammar;
11180   pr "\n";
11181
11182   pr "\
11183 (* Run external virt-inspector, then use parser to parse the XML. *)
11184 let inspect ?connect ?xml names =
11185   let xml =
11186     match xml with
11187     | None ->
11188         if names = [] then invalid_arg \"inspect: no names given\";
11189         let cmd = [ \"virt-inspector\"; \"--xml\" ] @
11190           (match connect with None -> [] | Some uri -> [ \"--connect\"; uri ]) @
11191           names in
11192         let cmd = List.map Filename.quote cmd in
11193         let cmd = String.concat \" \" cmd in
11194         let chan = open_process_in cmd in
11195         let xml = Xml.parse_in chan in
11196         (match close_process_in chan with
11197          | WEXITED 0 -> ()
11198          | WEXITED _ -> failwith \"external virt-inspector command failed\"
11199          | WSIGNALED i | WSTOPPED i ->
11200              failwith (\"external virt-inspector command died or stopped on sig \" ^
11201                        string_of_int i)
11202         );
11203         xml
11204     | Some doc ->
11205         Xml.parse_string doc in
11206   parse_operatingsystems xml
11207 "
11208
11209 (* This is used to generate the src/MAX_PROC_NR file which
11210  * contains the maximum procedure number, a surrogate for the
11211  * ABI version number.  See src/Makefile.am for the details.
11212  *)
11213 and generate_max_proc_nr () =
11214   let proc_nrs = List.map (
11215     fun (_, _, proc_nr, _, _, _, _) -> proc_nr
11216   ) daemon_functions in
11217
11218   let max_proc_nr = List.fold_left max 0 proc_nrs in
11219
11220   pr "%d\n" max_proc_nr
11221
11222 let output_to filename k =
11223   let filename_new = filename ^ ".new" in
11224   chan := open_out filename_new;
11225   k ();
11226   close_out !chan;
11227   chan := Pervasives.stdout;
11228
11229   (* Is the new file different from the current file? *)
11230   if Sys.file_exists filename && files_equal filename filename_new then
11231     unlink filename_new                 (* same, so skip it *)
11232   else (
11233     (* different, overwrite old one *)
11234     (try chmod filename 0o644 with Unix_error _ -> ());
11235     rename filename_new filename;
11236     chmod filename 0o444;
11237     printf "written %s\n%!" filename;
11238   )
11239
11240 let perror msg = function
11241   | Unix_error (err, _, _) ->
11242       eprintf "%s: %s\n" msg (error_message err)
11243   | exn ->
11244       eprintf "%s: %s\n" msg (Printexc.to_string exn)
11245
11246 (* Main program. *)
11247 let () =
11248   let lock_fd =
11249     try openfile "HACKING" [O_RDWR] 0
11250     with
11251     | Unix_error (ENOENT, _, _) ->
11252         eprintf "\
11253 You are probably running this from the wrong directory.
11254 Run it from the top source directory using the command
11255   src/generator.ml
11256 ";
11257         exit 1
11258     | exn ->
11259         perror "open: HACKING" exn;
11260         exit 1 in
11261
11262   (* Acquire a lock so parallel builds won't try to run the generator
11263    * twice at the same time.  Subsequent builds will wait for the first
11264    * one to finish.  Note the lock is released implicitly when the
11265    * program exits.
11266    *)
11267   (try lockf lock_fd F_LOCK 1
11268    with exn ->
11269      perror "lock: HACKING" exn;
11270      exit 1);
11271
11272   check_functions ();
11273
11274   output_to "src/guestfs_protocol.x" generate_xdr;
11275   output_to "src/guestfs-structs.h" generate_structs_h;
11276   output_to "src/guestfs-actions.h" generate_actions_h;
11277   output_to "src/guestfs-internal-actions.h" generate_internal_actions_h;
11278   output_to "src/guestfs-actions.c" generate_client_actions;
11279   output_to "src/guestfs-bindtests.c" generate_bindtests;
11280   output_to "src/guestfs-structs.pod" generate_structs_pod;
11281   output_to "src/guestfs-actions.pod" generate_actions_pod;
11282   output_to "src/guestfs-availability.pod" generate_availability_pod;
11283   output_to "src/MAX_PROC_NR" generate_max_proc_nr;
11284   output_to "src/libguestfs.syms" generate_linker_script;
11285   output_to "daemon/actions.h" generate_daemon_actions_h;
11286   output_to "daemon/stubs.c" generate_daemon_actions;
11287   output_to "daemon/names.c" generate_daemon_names;
11288   output_to "daemon/optgroups.c" generate_daemon_optgroups_c;
11289   output_to "daemon/optgroups.h" generate_daemon_optgroups_h;
11290   output_to "capitests/tests.c" generate_tests;
11291   output_to "fish/cmds.c" generate_fish_cmds;
11292   output_to "fish/completion.c" generate_fish_completion;
11293   output_to "fish/guestfish-actions.pod" generate_fish_actions_pod;
11294   output_to "ocaml/guestfs.mli" generate_ocaml_mli;
11295   output_to "ocaml/guestfs.ml" generate_ocaml_ml;
11296   output_to "ocaml/guestfs_c_actions.c" generate_ocaml_c;
11297   output_to "ocaml/bindtests.ml" generate_ocaml_bindtests;
11298   output_to "ocaml/guestfs_inspector.mli" generate_ocaml_inspector_mli;
11299   output_to "ocaml/guestfs_inspector.ml" generate_ocaml_inspector_ml;
11300   output_to "perl/Guestfs.xs" generate_perl_xs;
11301   output_to "perl/lib/Sys/Guestfs.pm" generate_perl_pm;
11302   output_to "perl/bindtests.pl" generate_perl_bindtests;
11303   output_to "python/guestfs-py.c" generate_python_c;
11304   output_to "python/guestfs.py" generate_python_py;
11305   output_to "python/bindtests.py" generate_python_bindtests;
11306   output_to "ruby/ext/guestfs/_guestfs.c" generate_ruby_c;
11307   output_to "ruby/bindtests.rb" generate_ruby_bindtests;
11308   output_to "java/com/redhat/et/libguestfs/GuestFS.java" generate_java_java;
11309
11310   List.iter (
11311     fun (typ, jtyp) ->
11312       let cols = cols_of_struct typ in
11313       let filename = sprintf "java/com/redhat/et/libguestfs/%s.java" jtyp in
11314       output_to filename (generate_java_struct jtyp cols);
11315   ) java_structs;
11316
11317   output_to "java/Makefile.inc" generate_java_makefile_inc;
11318   output_to "java/com_redhat_et_libguestfs_GuestFS.c" generate_java_c;
11319   output_to "java/Bindtests.java" generate_java_bindtests;
11320   output_to "haskell/Guestfs.hs" generate_haskell_hs;
11321   output_to "haskell/Bindtests.hs" generate_haskell_bindtests;
11322   output_to "csharp/Libguestfs.cs" generate_csharp;
11323
11324   (* Always generate this file last, and unconditionally.  It's used
11325    * by the Makefile to know when we must re-run the generator.
11326    *)
11327   let chan = open_out "src/stamp-generator" in
11328   fprintf chan "1\n";
11329   close_out chan;
11330
11331   printf "generated %d lines of code\n" !lines