New API: write for creating files with fixed content (RHBZ#501889).
[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 #directory "+../pkg-lib/xml-light";; (* for GODI users *)
46 #load "xml-light.cma";;
47
48 open Unix
49 open Printf
50
51 type style = ret * args
52 and ret =
53     (* "RErr" as a return value means an int used as a simple error
54      * indication, ie. 0 or -1.
55      *)
56   | RErr
57
58     (* "RInt" as a return value means an int which is -1 for error
59      * or any value >= 0 on success.  Only use this for smallish
60      * positive ints (0 <= i < 2^30).
61      *)
62   | RInt of string
63
64     (* "RInt64" is the same as RInt, but is guaranteed to be able
65      * to return a full 64 bit value, _except_ that -1 means error
66      * (so -1 cannot be a valid, non-error return value).
67      *)
68   | RInt64 of string
69
70     (* "RBool" is a bool return value which can be true/false or
71      * -1 for error.
72      *)
73   | RBool of string
74
75     (* "RConstString" is a string that refers to a constant value.
76      * The return value must NOT be NULL (since NULL indicates
77      * an error).
78      *
79      * Try to avoid using this.  In particular you cannot use this
80      * for values returned from the daemon, because there is no
81      * thread-safe way to return them in the C API.
82      *)
83   | RConstString of string
84
85     (* "RConstOptString" is an even more broken version of
86      * "RConstString".  The returned string may be NULL and there
87      * is no way to return an error indication.  Avoid using this!
88      *)
89   | RConstOptString of string
90
91     (* "RString" is a returned string.  It must NOT be NULL, since
92      * a NULL return indicates an error.  The caller frees this.
93      *)
94   | RString of string
95
96     (* "RStringList" is a list of strings.  No string in the list
97      * can be NULL.  The caller frees the strings and the array.
98      *)
99   | RStringList of string
100
101     (* "RStruct" is a function which returns a single named structure
102      * or an error indication (in C, a struct, and in other languages
103      * with varying representations, but usually very efficient).  See
104      * after the function list below for the structures.
105      *)
106   | RStruct of string * string          (* name of retval, name of struct *)
107
108     (* "RStructList" is a function which returns either a list/array
109      * of structures (could be zero-length), or an error indication.
110      *)
111   | RStructList of string * string      (* name of retval, name of struct *)
112
113     (* Key-value pairs of untyped strings.  Turns into a hashtable or
114      * dictionary in languages which support it.  DON'T use this as a
115      * general "bucket" for results.  Prefer a stronger typed return
116      * value if one is available, or write a custom struct.  Don't use
117      * this if the list could potentially be very long, since it is
118      * inefficient.  Keys should be unique.  NULLs are not permitted.
119      *)
120   | RHashtable of string
121
122     (* "RBufferOut" is handled almost exactly like RString, but
123      * it allows the string to contain arbitrary 8 bit data including
124      * ASCII NUL.  In the C API this causes an implicit extra parameter
125      * to be added of type <size_t *size_r>.  The extra parameter
126      * returns the actual size of the return buffer in bytes.
127      *
128      * Other programming languages support strings with arbitrary 8 bit
129      * data.
130      *
131      * At the RPC layer we have to use the opaque<> type instead of
132      * string<>.  Returned data is still limited to the max message
133      * size (ie. ~ 2 MB).
134      *)
135   | RBufferOut of string
136
137 and args = argt list    (* Function parameters, guestfs handle is implicit. *)
138
139     (* Note in future we should allow a "variable args" parameter as
140      * the final parameter, to allow commands like
141      *   chmod mode file [file(s)...]
142      * This is not implemented yet, but many commands (such as chmod)
143      * are currently defined with the argument order keeping this future
144      * possibility in mind.
145      *)
146 and argt =
147   | String of string    (* const char *name, cannot be NULL *)
148   | Device of string    (* /dev device name, cannot be NULL *)
149   | Pathname of string  (* file name, cannot be NULL *)
150   | Dev_or_Path of string (* /dev device name or Pathname, cannot be NULL *)
151   | OptString of string (* const char *name, may be NULL *)
152   | StringList of string(* list of strings (each string cannot be NULL) *)
153   | DeviceList of string(* list of Device names (each cannot be NULL) *)
154   | Bool of string      (* boolean *)
155   | Int of string       (* int (smallish ints, signed, <= 31 bits) *)
156   | Int64 of string     (* any 64 bit int *)
157     (* These are treated as filenames (simple string parameters) in
158      * the C API and bindings.  But in the RPC protocol, we transfer
159      * the actual file content up to or down from the daemon.
160      * FileIn: local machine -> daemon (in request)
161      * FileOut: daemon -> local machine (in reply)
162      * In guestfish (only), the special name "-" means read from
163      * stdin or write to stdout.
164      *)
165   | FileIn of string
166   | FileOut of string
167     (* Opaque buffer which can contain arbitrary 8 bit data.
168      * In the C API, this is expressed as <const char *, size_t> 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 type flags =
179   | ProtocolLimitWarning  (* display warning about protocol size limits *)
180   | DangerWillRobinson    (* flags particularly dangerous commands *)
181   | FishAlias of string   (* provide an alias for this cmd in guestfish *)
182   | FishOutput of fish_output_t (* how to display output in guestfish *)
183   | NotInFish             (* do not export via guestfish *)
184   | NotInDocs             (* do not add this function to documentation *)
185   | DeprecatedBy of string (* function is deprecated, use .. instead *)
186   | Optional of string    (* function is part of an optional group *)
187
188 and fish_output_t =
189   | FishOutputOctal       (* for int return, print in octal *)
190   | FishOutputHexadecimal (* for int return, print in hex *)
191
192 (* You can supply zero or as many tests as you want per API call.
193  *
194  * Note that the test environment has 3 block devices, of size 500MB,
195  * 50MB and 10MB (respectively /dev/sda, /dev/sdb, /dev/sdc), and
196  * a fourth ISO block device with some known files on it (/dev/sdd).
197  *
198  * Note for partitioning purposes, the 500MB device has 1015 cylinders.
199  * Number of cylinders was 63 for IDE emulated disks with precisely
200  * the same size.  How exactly this is calculated is a mystery.
201  *
202  * The ISO block device (/dev/sdd) comes from images/test.iso.
203  *
204  * To be able to run the tests in a reasonable amount of time,
205  * the virtual machine and block devices are reused between tests.
206  * So don't try testing kill_subprocess :-x
207  *
208  * Between each test we blockdev-setrw, umount-all, lvm-remove-all.
209  *
210  * Don't assume anything about the previous contents of the block
211  * devices.  Use 'Init*' to create some initial scenarios.
212  *
213  * You can add a prerequisite clause to any individual test.  This
214  * is a run-time check, which, if it fails, causes the test to be
215  * skipped.  Useful if testing a command which might not work on
216  * all variations of libguestfs builds.  A test that has prerequisite
217  * of 'Always' is run unconditionally.
218  *
219  * In addition, packagers can skip individual tests by setting the
220  * environment variables:     eg:
221  *   SKIP_TEST_<CMD>_<NUM>=1  SKIP_TEST_COMMAND_3=1  (skips test #3 of command)
222  *   SKIP_TEST_<CMD>=1        SKIP_TEST_ZEROFREE=1   (skips all zerofree tests)
223  *)
224 type tests = (test_init * test_prereq * test) list
225 and test =
226     (* Run the command sequence and just expect nothing to fail. *)
227   | TestRun of seq
228
229     (* Run the command sequence and expect the output of the final
230      * command to be the string.
231      *)
232   | TestOutput of seq * string
233
234     (* Run the command sequence and expect the output of the final
235      * command to be the list of strings.
236      *)
237   | TestOutputList of seq * string list
238
239     (* Run the command sequence and expect the output of the final
240      * command to be the list of block devices (could be either
241      * "/dev/sd.." or "/dev/hd.." form - we don't check the 5th
242      * character of each string).
243      *)
244   | TestOutputListOfDevices of seq * string list
245
246     (* Run the command sequence and expect the output of the final
247      * command to be the integer.
248      *)
249   | TestOutputInt of seq * int
250
251     (* Run the command sequence and expect the output of the final
252      * command to be <op> <int>, eg. ">=", "1".
253      *)
254   | TestOutputIntOp of seq * string * int
255
256     (* Run the command sequence and expect the output of the final
257      * command to be a true value (!= 0 or != NULL).
258      *)
259   | TestOutputTrue of seq
260
261     (* Run the command sequence and expect the output of the final
262      * command to be a false value (== 0 or == NULL, but not an error).
263      *)
264   | TestOutputFalse of seq
265
266     (* Run the command sequence and expect the output of the final
267      * command to be a list of the given length (but don't care about
268      * content).
269      *)
270   | TestOutputLength of seq * int
271
272     (* Run the command sequence and expect the output of the final
273      * command to be a buffer (RBufferOut), ie. string + size.
274      *)
275   | TestOutputBuffer of seq * string
276
277     (* Run the command sequence and expect the output of the final
278      * command to be a structure.
279      *)
280   | TestOutputStruct of seq * test_field_compare list
281
282     (* Run the command sequence and expect the final command (only)
283      * to fail.
284      *)
285   | TestLastFail of seq
286
287 and test_field_compare =
288   | CompareWithInt of string * int
289   | CompareWithIntOp of string * string * int
290   | CompareWithString of string * string
291   | CompareFieldsIntEq of string * string
292   | CompareFieldsStrEq of string * string
293
294 (* Test prerequisites. *)
295 and test_prereq =
296     (* Test always runs. *)
297   | Always
298
299     (* Test is currently disabled - eg. it fails, or it tests some
300      * unimplemented feature.
301      *)
302   | Disabled
303
304     (* 'string' is some C code (a function body) that should return
305      * true or false.  The test will run if the code returns true.
306      *)
307   | If of string
308
309     (* As for 'If' but the test runs _unless_ the code returns true. *)
310   | Unless of string
311
312 (* Some initial scenarios for testing. *)
313 and test_init =
314     (* Do nothing, block devices could contain random stuff including
315      * LVM PVs, and some filesystems might be mounted.  This is usually
316      * a bad idea.
317      *)
318   | InitNone
319
320     (* Block devices are empty and no filesystems are mounted. *)
321   | InitEmpty
322
323     (* /dev/sda contains a single partition /dev/sda1, with random
324      * content.  /dev/sdb and /dev/sdc may have random content.
325      * No LVM.
326      *)
327   | InitPartition
328
329     (* /dev/sda contains a single partition /dev/sda1, which is formatted
330      * as ext2, empty [except for lost+found] and mounted on /.
331      * /dev/sdb and /dev/sdc may have random content.
332      * No LVM.
333      *)
334   | InitBasicFS
335
336     (* /dev/sda:
337      *   /dev/sda1 (is a PV):
338      *     /dev/VG/LV (size 8MB):
339      *       formatted as ext2, empty [except for lost+found], mounted on /
340      * /dev/sdb and /dev/sdc may have random content.
341      *)
342   | InitBasicFSonLVM
343
344     (* /dev/sdd (the ISO, see images/ directory in source)
345      * is mounted on /
346      *)
347   | InitISOFS
348
349 (* Sequence of commands for testing. *)
350 and seq = cmd list
351 and cmd = string list
352
353 (* Note about long descriptions: When referring to another
354  * action, use the format C<guestfs_other> (ie. the full name of
355  * the C function).  This will be replaced as appropriate in other
356  * language bindings.
357  *
358  * Apart from that, long descriptions are just perldoc paragraphs.
359  *)
360
361 (* Generate a random UUID (used in tests). *)
362 let uuidgen () =
363   let chan = open_process_in "uuidgen" in
364   let uuid = input_line chan in
365   (match close_process_in chan with
366    | WEXITED 0 -> ()
367    | WEXITED _ ->
368        failwith "uuidgen: process exited with non-zero status"
369    | WSIGNALED _ | WSTOPPED _ ->
370        failwith "uuidgen: process signalled or stopped by signal"
371   );
372   uuid
373
374 (* These test functions are used in the language binding tests. *)
375
376 let test_all_args = [
377   String "str";
378   OptString "optstr";
379   StringList "strlist";
380   Bool "b";
381   Int "integer";
382   Int64 "integer64";
383   FileIn "filein";
384   FileOut "fileout";
385   BufferIn "bufferin";
386 ]
387
388 let test_all_rets = [
389   (* except for RErr, which is tested thoroughly elsewhere *)
390   "test0rint",         RInt "valout";
391   "test0rint64",       RInt64 "valout";
392   "test0rbool",        RBool "valout";
393   "test0rconststring", RConstString "valout";
394   "test0rconstoptstring", RConstOptString "valout";
395   "test0rstring",      RString "valout";
396   "test0rstringlist",  RStringList "valout";
397   "test0rstruct",      RStruct ("valout", "lvm_pv");
398   "test0rstructlist",  RStructList ("valout", "lvm_pv");
399   "test0rhashtable",   RHashtable "valout";
400 ]
401
402 let test_functions = [
403   ("test0", (RErr, test_all_args), -1, [NotInFish; NotInDocs],
404    [],
405    "internal test function - do not use",
406    "\
407 This is an internal test function which is used to test whether
408 the automatically generated bindings can handle every possible
409 parameter type correctly.
410
411 It echos the contents of each parameter to stdout.
412
413 You probably don't want to call this function.");
414 ] @ List.flatten (
415   List.map (
416     fun (name, ret) ->
417       [(name, (ret, [String "val"]), -1, [NotInFish; NotInDocs],
418         [],
419         "internal test function - do not use",
420         "\
421 This is an internal test function which is used to test whether
422 the automatically generated bindings can handle every possible
423 return type correctly.
424
425 It converts string C<val> to the return type.
426
427 You probably don't want to call this function.");
428        (name ^ "err", (ret, []), -1, [NotInFish; NotInDocs],
429         [],
430         "internal test function - do not use",
431         "\
432 This is an internal test function which is used to test whether
433 the automatically generated bindings can handle every possible
434 return type correctly.
435
436 This function always returns an error.
437
438 You probably don't want to call this function.")]
439   ) test_all_rets
440 )
441
442 (* non_daemon_functions are any functions which don't get processed
443  * in the daemon, eg. functions for setting and getting local
444  * configuration values.
445  *)
446
447 let non_daemon_functions = test_functions @ [
448   ("launch", (RErr, []), -1, [FishAlias "run"],
449    [],
450    "launch the qemu subprocess",
451    "\
452 Internally libguestfs is implemented by running a virtual machine
453 using L<qemu(1)>.
454
455 You should call this after configuring the handle
456 (eg. adding drives) but before performing any actions.");
457
458   ("wait_ready", (RErr, []), -1, [NotInFish],
459    [],
460    "wait until the qemu subprocess launches (no op)",
461    "\
462 This function is a no op.
463
464 In versions of the API E<lt> 1.0.71 you had to call this function
465 just after calling C<guestfs_launch> to wait for the launch
466 to complete.  However this is no longer necessary because
467 C<guestfs_launch> now does the waiting.
468
469 If you see any calls to this function in code then you can just
470 remove them, unless you want to retain compatibility with older
471 versions of the API.");
472
473   ("kill_subprocess", (RErr, []), -1, [],
474    [],
475    "kill the qemu subprocess",
476    "\
477 This kills the qemu subprocess.  You should never need to call this.");
478
479   ("add_drive", (RErr, [String "filename"]), -1, [FishAlias "add"],
480    [],
481    "add an image to examine or modify",
482    "\
483 This function adds a virtual machine disk image C<filename> to the
484 guest.  The first time you call this function, the disk appears as IDE
485 disk 0 (C</dev/sda>) in the guest, the second time as C</dev/sdb>, and
486 so on.
487
488 You don't necessarily need to be root when using libguestfs.  However
489 you obviously do need sufficient permissions to access the filename
490 for whatever operations you want to perform (ie. read access if you
491 just want to read the image or write access if you want to modify the
492 image).
493
494 This is equivalent to the qemu parameter
495 C<-drive file=filename,cache=off,if=...>.
496
497 C<cache=off> is omitted in cases where it is not supported by
498 the underlying filesystem.
499
500 C<if=...> is set at compile time by the configuration option
501 C<./configure --with-drive-if=...>.  In the rare case where you
502 might need to change this at run time, use C<guestfs_add_drive_with_if>
503 or C<guestfs_add_drive_ro_with_if>.
504
505 Note that this call checks for the existence of C<filename>.  This
506 stops you from specifying other types of drive which are supported
507 by qemu such as C<nbd:> and C<http:> URLs.  To specify those, use
508 the general C<guestfs_config> call instead.");
509
510   ("add_cdrom", (RErr, [String "filename"]), -1, [FishAlias "cdrom"],
511    [],
512    "add a CD-ROM disk image to examine",
513    "\
514 This function adds a virtual CD-ROM disk image to the guest.
515
516 This is equivalent to the qemu parameter C<-cdrom filename>.
517
518 Notes:
519
520 =over 4
521
522 =item *
523
524 This call checks for the existence of C<filename>.  This
525 stops you from specifying other types of drive which are supported
526 by qemu such as C<nbd:> and C<http:> URLs.  To specify those, use
527 the general C<guestfs_config> call instead.
528
529 =item *
530
531 If you just want to add an ISO file (often you use this as an
532 efficient way to transfer large files into the guest), then you
533 should probably use C<guestfs_add_drive_ro> instead.
534
535 =back");
536
537   ("add_drive_ro", (RErr, [String "filename"]), -1, [FishAlias "add-ro"],
538    [],
539    "add a drive in snapshot mode (read-only)",
540    "\
541 This adds a drive in snapshot mode, making it effectively
542 read-only.
543
544 Note that writes to the device are allowed, and will be seen for
545 the duration of the guestfs handle, but they are written
546 to a temporary file which is discarded as soon as the guestfs
547 handle is closed.  We don't currently have any method to enable
548 changes to be committed, although qemu can support this.
549
550 This is equivalent to the qemu parameter
551 C<-drive file=filename,snapshot=on,readonly=on,if=...>.
552
553 C<if=...> is set at compile time by the configuration option
554 C<./configure --with-drive-if=...>.  In the rare case where you
555 might need to change this at run time, use C<guestfs_add_drive_with_if>
556 or C<guestfs_add_drive_ro_with_if>.
557
558 C<readonly=on> is only added where qemu supports this option.
559
560 Note that this call checks for the existence of C<filename>.  This
561 stops you from specifying other types of drive which are supported
562 by qemu such as C<nbd:> and C<http:> URLs.  To specify those, use
563 the general C<guestfs_config> call instead.");
564
565   ("config", (RErr, [String "qemuparam"; OptString "qemuvalue"]), -1, [],
566    [],
567    "add qemu parameters",
568    "\
569 This can be used to add arbitrary qemu command line parameters
570 of the form C<-param value>.  Actually it's not quite arbitrary - we
571 prevent you from setting some parameters which would interfere with
572 parameters that we use.
573
574 The first character of C<param> string must be a C<-> (dash).
575
576 C<value> can be NULL.");
577
578   ("set_qemu", (RErr, [String "qemu"]), -1, [FishAlias "qemu"],
579    [],
580    "set the qemu binary",
581    "\
582 Set the qemu binary that we will use.
583
584 The default is chosen when the library was compiled by the
585 configure script.
586
587 You can also override this by setting the C<LIBGUESTFS_QEMU>
588 environment variable.
589
590 Setting C<qemu> to C<NULL> restores the default qemu binary.
591
592 Note that you should call this function as early as possible
593 after creating the handle.  This is because some pre-launch
594 operations depend on testing qemu features (by running C<qemu -help>).
595 If the qemu binary changes, we don't retest features, and
596 so you might see inconsistent results.  Using the environment
597 variable C<LIBGUESTFS_QEMU> is safest of all since that picks
598 the qemu binary at the same time as the handle is created.");
599
600   ("get_qemu", (RConstString "qemu", []), -1, [],
601    [InitNone, Always, TestRun (
602       [["get_qemu"]])],
603    "get the qemu binary",
604    "\
605 Return the current qemu binary.
606
607 This is always non-NULL.  If it wasn't set already, then this will
608 return the default qemu binary name.");
609
610   ("set_path", (RErr, [String "searchpath"]), -1, [FishAlias "path"],
611    [],
612    "set the search path",
613    "\
614 Set the path that libguestfs searches for kernel and initrd.img.
615
616 The default is C<$libdir/guestfs> unless overridden by setting
617 C<LIBGUESTFS_PATH> environment variable.
618
619 Setting C<path> to C<NULL> restores the default path.");
620
621   ("get_path", (RConstString "path", []), -1, [],
622    [InitNone, Always, TestRun (
623       [["get_path"]])],
624    "get the search path",
625    "\
626 Return the current search path.
627
628 This is always non-NULL.  If it wasn't set already, then this will
629 return the default path.");
630
631   ("set_append", (RErr, [OptString "append"]), -1, [FishAlias "append"],
632    [],
633    "add options to kernel command line",
634    "\
635 This function is used to add additional options to the
636 guest kernel command line.
637
638 The default is C<NULL> unless overridden by setting
639 C<LIBGUESTFS_APPEND> environment variable.
640
641 Setting C<append> to C<NULL> means I<no> additional options
642 are passed (libguestfs always adds a few of its own).");
643
644   ("get_append", (RConstOptString "append", []), -1, [],
645    (* This cannot be tested with the current framework.  The
646     * function can return NULL in normal operations, which the
647     * test framework interprets as an error.
648     *)
649    [],
650    "get the additional kernel options",
651    "\
652 Return the additional kernel options which are added to the
653 guest kernel command line.
654
655 If C<NULL> then no options are added.");
656
657   ("set_autosync", (RErr, [Bool "autosync"]), -1, [FishAlias "autosync"],
658    [],
659    "set autosync mode",
660    "\
661 If C<autosync> is true, this enables autosync.  Libguestfs will make a
662 best effort attempt to run C<guestfs_umount_all> followed by
663 C<guestfs_sync> when the handle is closed
664 (also if the program exits without closing handles).
665
666 This is disabled by default (except in guestfish where it is
667 enabled by default).");
668
669   ("get_autosync", (RBool "autosync", []), -1, [],
670    [InitNone, Always, TestRun (
671       [["get_autosync"]])],
672    "get autosync mode",
673    "\
674 Get the autosync flag.");
675
676   ("set_verbose", (RErr, [Bool "verbose"]), -1, [FishAlias "verbose"],
677    [],
678    "set verbose mode",
679    "\
680 If C<verbose> is true, this turns on verbose messages (to C<stderr>).
681
682 Verbose messages are disabled unless the environment variable
683 C<LIBGUESTFS_DEBUG> is defined and set to C<1>.");
684
685   ("get_verbose", (RBool "verbose", []), -1, [],
686    [],
687    "get verbose mode",
688    "\
689 This returns the verbose messages flag.");
690
691   ("is_ready", (RBool "ready", []), -1, [],
692    [InitNone, Always, TestOutputTrue (
693       [["is_ready"]])],
694    "is ready to accept commands",
695    "\
696 This returns true iff this handle is ready to accept commands
697 (in the C<READY> state).
698
699 For more information on states, see L<guestfs(3)>.");
700
701   ("is_config", (RBool "config", []), -1, [],
702    [InitNone, Always, TestOutputFalse (
703       [["is_config"]])],
704    "is in configuration state",
705    "\
706 This returns true iff this handle is being configured
707 (in the C<CONFIG> state).
708
709 For more information on states, see L<guestfs(3)>.");
710
711   ("is_launching", (RBool "launching", []), -1, [],
712    [InitNone, Always, TestOutputFalse (
713       [["is_launching"]])],
714    "is launching subprocess",
715    "\
716 This returns true iff this handle is launching the subprocess
717 (in the C<LAUNCHING> state).
718
719 For more information on states, see L<guestfs(3)>.");
720
721   ("is_busy", (RBool "busy", []), -1, [],
722    [InitNone, Always, TestOutputFalse (
723       [["is_busy"]])],
724    "is busy processing a command",
725    "\
726 This returns true iff this handle is busy processing a command
727 (in the C<BUSY> state).
728
729 For more information on states, see L<guestfs(3)>.");
730
731   ("get_state", (RInt "state", []), -1, [],
732    [],
733    "get the current state",
734    "\
735 This returns the current state as an opaque integer.  This is
736 only useful for printing debug and internal error messages.
737
738 For more information on states, see L<guestfs(3)>.");
739
740   ("set_memsize", (RErr, [Int "memsize"]), -1, [FishAlias "memsize"],
741    [InitNone, Always, TestOutputInt (
742       [["set_memsize"; "500"];
743        ["get_memsize"]], 500)],
744    "set memory allocated to the qemu subprocess",
745    "\
746 This sets the memory size in megabytes allocated to the
747 qemu subprocess.  This only has any effect if called before
748 C<guestfs_launch>.
749
750 You can also change this by setting the environment
751 variable C<LIBGUESTFS_MEMSIZE> before the handle is
752 created.
753
754 For more information on the architecture of libguestfs,
755 see L<guestfs(3)>.");
756
757   ("get_memsize", (RInt "memsize", []), -1, [],
758    [InitNone, Always, TestOutputIntOp (
759       [["get_memsize"]], ">=", 256)],
760    "get memory allocated to the qemu subprocess",
761    "\
762 This gets the memory size in megabytes allocated to the
763 qemu subprocess.
764
765 If C<guestfs_set_memsize> was not called
766 on this handle, and if C<LIBGUESTFS_MEMSIZE> was not set,
767 then this returns the compiled-in default value for memsize.
768
769 For more information on the architecture of libguestfs,
770 see L<guestfs(3)>.");
771
772   ("get_pid", (RInt "pid", []), -1, [FishAlias "pid"],
773    [InitNone, Always, TestOutputIntOp (
774       [["get_pid"]], ">=", 1)],
775    "get PID of qemu subprocess",
776    "\
777 Return the process ID of the qemu subprocess.  If there is no
778 qemu subprocess, then this will return an error.
779
780 This is an internal call used for debugging and testing.");
781
782   ("version", (RStruct ("version", "version"), []), -1, [],
783    [InitNone, Always, TestOutputStruct (
784       [["version"]], [CompareWithInt ("major", 1)])],
785    "get the library version number",
786    "\
787 Return the libguestfs version number that the program is linked
788 against.
789
790 Note that because of dynamic linking this is not necessarily
791 the version of libguestfs that you compiled against.  You can
792 compile the program, and then at runtime dynamically link
793 against a completely different C<libguestfs.so> library.
794
795 This call was added in version C<1.0.58>.  In previous
796 versions of libguestfs there was no way to get the version
797 number.  From C code you can use ELF weak linking tricks to find out if
798 this symbol exists (if it doesn't, then it's an earlier version).
799
800 The call returns a structure with four elements.  The first
801 three (C<major>, C<minor> and C<release>) are numbers and
802 correspond to the usual version triplet.  The fourth element
803 (C<extra>) is a string and is normally empty, but may be
804 used for distro-specific information.
805
806 To construct the original version string:
807 C<$major.$minor.$release$extra>
808
809 I<Note:> Don't use this call to test for availability
810 of features.  Distro backports makes this unreliable.  Use
811 C<guestfs_available> instead.");
812
813   ("set_selinux", (RErr, [Bool "selinux"]), -1, [FishAlias "selinux"],
814    [InitNone, Always, TestOutputTrue (
815       [["set_selinux"; "true"];
816        ["get_selinux"]])],
817    "set SELinux enabled or disabled at appliance boot",
818    "\
819 This sets the selinux flag that is passed to the appliance
820 at boot time.  The default is C<selinux=0> (disabled).
821
822 Note that if SELinux is enabled, it is always in
823 Permissive mode (C<enforcing=0>).
824
825 For more information on the architecture of libguestfs,
826 see L<guestfs(3)>.");
827
828   ("get_selinux", (RBool "selinux", []), -1, [],
829    [],
830    "get SELinux enabled flag",
831    "\
832 This returns the current setting of the selinux flag which
833 is passed to the appliance at boot time.  See C<guestfs_set_selinux>.
834
835 For more information on the architecture of libguestfs,
836 see L<guestfs(3)>.");
837
838   ("set_trace", (RErr, [Bool "trace"]), -1, [FishAlias "trace"],
839    [InitNone, Always, TestOutputFalse (
840       [["set_trace"; "false"];
841        ["get_trace"]])],
842    "enable or disable command traces",
843    "\
844 If the command trace flag is set to 1, then commands are
845 printed on stdout before they are executed in a format
846 which is very similar to the one used by guestfish.  In
847 other words, you can run a program with this enabled, and
848 you will get out a script which you can feed to guestfish
849 to perform the same set of actions.
850
851 If you want to trace C API calls into libguestfs (and
852 other libraries) then possibly a better way is to use
853 the external ltrace(1) command.
854
855 Command traces are disabled unless the environment variable
856 C<LIBGUESTFS_TRACE> is defined and set to C<1>.");
857
858   ("get_trace", (RBool "trace", []), -1, [],
859    [],
860    "get command trace enabled flag",
861    "\
862 Return the command trace flag.");
863
864   ("set_direct", (RErr, [Bool "direct"]), -1, [FishAlias "direct"],
865    [InitNone, Always, TestOutputFalse (
866       [["set_direct"; "false"];
867        ["get_direct"]])],
868    "enable or disable direct appliance mode",
869    "\
870 If the direct appliance mode flag is enabled, then stdin and
871 stdout are passed directly through to the appliance once it
872 is launched.
873
874 One consequence of this is that log messages aren't caught
875 by the library and handled by C<guestfs_set_log_message_callback>,
876 but go straight to stdout.
877
878 You probably don't want to use this unless you know what you
879 are doing.
880
881 The default is disabled.");
882
883   ("get_direct", (RBool "direct", []), -1, [],
884    [],
885    "get direct appliance mode flag",
886    "\
887 Return the direct appliance mode flag.");
888
889   ("set_recovery_proc", (RErr, [Bool "recoveryproc"]), -1, [FishAlias "recovery-proc"],
890    [InitNone, Always, TestOutputTrue (
891       [["set_recovery_proc"; "true"];
892        ["get_recovery_proc"]])],
893    "enable or disable the recovery process",
894    "\
895 If this is called with the parameter C<false> then
896 C<guestfs_launch> does not create a recovery process.  The
897 purpose of the recovery process is to stop runaway qemu
898 processes in the case where the main program aborts abruptly.
899
900 This only has any effect if called before C<guestfs_launch>,
901 and the default is true.
902
903 About the only time when you would want to disable this is
904 if the main process will fork itself into the background
905 (\"daemonize\" itself).  In this case the recovery process
906 thinks that the main program has disappeared and so kills
907 qemu, which is not very helpful.");
908
909   ("get_recovery_proc", (RBool "recoveryproc", []), -1, [],
910    [],
911    "get recovery process enabled flag",
912    "\
913 Return the recovery process enabled flag.");
914
915   ("add_drive_with_if", (RErr, [String "filename"; String "iface"]), -1, [],
916    [],
917    "add a drive specifying the QEMU block emulation to use",
918    "\
919 This is the same as C<guestfs_add_drive> but it allows you
920 to specify the QEMU interface emulation to use at run time.");
921
922   ("add_drive_ro_with_if", (RErr, [String "filename"; String "iface"]), -1, [],
923    [],
924    "add a drive read-only specifying the QEMU block emulation to use",
925    "\
926 This is the same as C<guestfs_add_drive_ro> but it allows you
927 to specify the QEMU interface emulation to use at run time.");
928
929 ]
930
931 (* daemon_functions are any functions which cause some action
932  * to take place in the daemon.
933  *)
934
935 let daemon_functions = [
936   ("mount", (RErr, [Device "device"; String "mountpoint"]), 1, [],
937    [InitEmpty, Always, TestOutput (
938       [["part_disk"; "/dev/sda"; "mbr"];
939        ["mkfs"; "ext2"; "/dev/sda1"];
940        ["mount"; "/dev/sda1"; "/"];
941        ["write"; "/new"; "new file contents"];
942        ["cat"; "/new"]], "new file contents")],
943    "mount a guest disk at a position in the filesystem",
944    "\
945 Mount a guest disk at a position in the filesystem.  Block devices
946 are named C</dev/sda>, C</dev/sdb> and so on, as they were added to
947 the guest.  If those block devices contain partitions, they will have
948 the usual names (eg. C</dev/sda1>).  Also LVM C</dev/VG/LV>-style
949 names can be used.
950
951 The rules are the same as for L<mount(2)>:  A filesystem must
952 first be mounted on C</> before others can be mounted.  Other
953 filesystems can only be mounted on directories which already
954 exist.
955
956 The mounted filesystem is writable, if we have sufficient permissions
957 on the underlying device.
958
959 B<Important note:>
960 When you use this call, the filesystem options C<sync> and C<noatime>
961 are set implicitly.  This was originally done because we thought it
962 would improve reliability, but it turns out that I<-o sync> has a
963 very large negative performance impact and negligible effect on
964 reliability.  Therefore we recommend that you avoid using
965 C<guestfs_mount> in any code that needs performance, and instead
966 use C<guestfs_mount_options> (use an empty string for the first
967 parameter if you don't want any options).");
968
969   ("sync", (RErr, []), 2, [],
970    [ InitEmpty, Always, TestRun [["sync"]]],
971    "sync disks, writes are flushed through to the disk image",
972    "\
973 This syncs the disk, so that any writes are flushed through to the
974 underlying disk image.
975
976 You should always call this if you have modified a disk image, before
977 closing the handle.");
978
979   ("touch", (RErr, [Pathname "path"]), 3, [],
980    [InitBasicFS, Always, TestOutputTrue (
981       [["touch"; "/new"];
982        ["exists"; "/new"]])],
983    "update file timestamps or create a new file",
984    "\
985 Touch acts like the L<touch(1)> command.  It can be used to
986 update the timestamps on a file, or, if the file does not exist,
987 to create a new zero-length file.");
988
989   ("cat", (RString "content", [Pathname "path"]), 4, [ProtocolLimitWarning],
990    [InitISOFS, Always, TestOutput (
991       [["cat"; "/known-2"]], "abcdef\n")],
992    "list the contents of a file",
993    "\
994 Return the contents of the file named C<path>.
995
996 Note that this function cannot correctly handle binary files
997 (specifically, files containing C<\\0> character which is treated
998 as end of string).  For those you need to use the C<guestfs_read_file>
999 or C<guestfs_download> functions which have a more complex interface.");
1000
1001   ("ll", (RString "listing", [Pathname "directory"]), 5, [],
1002    [], (* XXX Tricky to test because it depends on the exact format
1003         * of the 'ls -l' command, which changes between F10 and F11.
1004         *)
1005    "list the files in a directory (long format)",
1006    "\
1007 List the files in C<directory> (relative to the root directory,
1008 there is no cwd) in the format of 'ls -la'.
1009
1010 This command is mostly useful for interactive sessions.  It
1011 is I<not> intended that you try to parse the output string.");
1012
1013   ("ls", (RStringList "listing", [Pathname "directory"]), 6, [],
1014    [InitBasicFS, Always, TestOutputList (
1015       [["touch"; "/new"];
1016        ["touch"; "/newer"];
1017        ["touch"; "/newest"];
1018        ["ls"; "/"]], ["lost+found"; "new"; "newer"; "newest"])],
1019    "list the files in a directory",
1020    "\
1021 List the files in C<directory> (relative to the root directory,
1022 there is no cwd).  The '.' and '..' entries are not returned, but
1023 hidden files are shown.
1024
1025 This command is mostly useful for interactive sessions.  Programs
1026 should probably use C<guestfs_readdir> instead.");
1027
1028   ("list_devices", (RStringList "devices", []), 7, [],
1029    [InitEmpty, Always, TestOutputListOfDevices (
1030       [["list_devices"]], ["/dev/sda"; "/dev/sdb"; "/dev/sdc"; "/dev/sdd"])],
1031    "list the block devices",
1032    "\
1033 List all the block devices.
1034
1035 The full block device names are returned, eg. C</dev/sda>");
1036
1037   ("list_partitions", (RStringList "partitions", []), 8, [],
1038    [InitBasicFS, Always, TestOutputListOfDevices (
1039       [["list_partitions"]], ["/dev/sda1"]);
1040     InitEmpty, Always, TestOutputListOfDevices (
1041       [["sfdiskM"; "/dev/sda"; ",100 ,200 ,"];
1042        ["list_partitions"]], ["/dev/sda1"; "/dev/sda2"; "/dev/sda3"])],
1043    "list the partitions",
1044    "\
1045 List all the partitions detected on all block devices.
1046
1047 The full partition device names are returned, eg. C</dev/sda1>
1048
1049 This does not return logical volumes.  For that you will need to
1050 call C<guestfs_lvs>.");
1051
1052   ("pvs", (RStringList "physvols", []), 9, [Optional "lvm2"],
1053    [InitBasicFSonLVM, Always, TestOutputListOfDevices (
1054       [["pvs"]], ["/dev/sda1"]);
1055     InitEmpty, Always, TestOutputListOfDevices (
1056       [["sfdiskM"; "/dev/sda"; ",100 ,200 ,"];
1057        ["pvcreate"; "/dev/sda1"];
1058        ["pvcreate"; "/dev/sda2"];
1059        ["pvcreate"; "/dev/sda3"];
1060        ["pvs"]], ["/dev/sda1"; "/dev/sda2"; "/dev/sda3"])],
1061    "list the LVM physical volumes (PVs)",
1062    "\
1063 List all the physical volumes detected.  This is the equivalent
1064 of the L<pvs(8)> command.
1065
1066 This returns a list of just the device names that contain
1067 PVs (eg. C</dev/sda2>).
1068
1069 See also C<guestfs_pvs_full>.");
1070
1071   ("vgs", (RStringList "volgroups", []), 10, [Optional "lvm2"],
1072    [InitBasicFSonLVM, Always, TestOutputList (
1073       [["vgs"]], ["VG"]);
1074     InitEmpty, Always, TestOutputList (
1075       [["sfdiskM"; "/dev/sda"; ",100 ,200 ,"];
1076        ["pvcreate"; "/dev/sda1"];
1077        ["pvcreate"; "/dev/sda2"];
1078        ["pvcreate"; "/dev/sda3"];
1079        ["vgcreate"; "VG1"; "/dev/sda1 /dev/sda2"];
1080        ["vgcreate"; "VG2"; "/dev/sda3"];
1081        ["vgs"]], ["VG1"; "VG2"])],
1082    "list the LVM volume groups (VGs)",
1083    "\
1084 List all the volumes groups detected.  This is the equivalent
1085 of the L<vgs(8)> command.
1086
1087 This returns a list of just the volume group names that were
1088 detected (eg. C<VolGroup00>).
1089
1090 See also C<guestfs_vgs_full>.");
1091
1092   ("lvs", (RStringList "logvols", []), 11, [Optional "lvm2"],
1093    [InitBasicFSonLVM, Always, TestOutputList (
1094       [["lvs"]], ["/dev/VG/LV"]);
1095     InitEmpty, Always, TestOutputList (
1096       [["sfdiskM"; "/dev/sda"; ",100 ,200 ,"];
1097        ["pvcreate"; "/dev/sda1"];
1098        ["pvcreate"; "/dev/sda2"];
1099        ["pvcreate"; "/dev/sda3"];
1100        ["vgcreate"; "VG1"; "/dev/sda1 /dev/sda2"];
1101        ["vgcreate"; "VG2"; "/dev/sda3"];
1102        ["lvcreate"; "LV1"; "VG1"; "50"];
1103        ["lvcreate"; "LV2"; "VG1"; "50"];
1104        ["lvcreate"; "LV3"; "VG2"; "50"];
1105        ["lvs"]], ["/dev/VG1/LV1"; "/dev/VG1/LV2"; "/dev/VG2/LV3"])],
1106    "list the LVM logical volumes (LVs)",
1107    "\
1108 List all the logical volumes detected.  This is the equivalent
1109 of the L<lvs(8)> command.
1110
1111 This returns a list of the logical volume device names
1112 (eg. C</dev/VolGroup00/LogVol00>).
1113
1114 See also C<guestfs_lvs_full>.");
1115
1116   ("pvs_full", (RStructList ("physvols", "lvm_pv"), []), 12, [Optional "lvm2"],
1117    [], (* XXX how to test? *)
1118    "list the LVM physical volumes (PVs)",
1119    "\
1120 List all the physical volumes detected.  This is the equivalent
1121 of the L<pvs(8)> command.  The \"full\" version includes all fields.");
1122
1123   ("vgs_full", (RStructList ("volgroups", "lvm_vg"), []), 13, [Optional "lvm2"],
1124    [], (* XXX how to test? *)
1125    "list the LVM volume groups (VGs)",
1126    "\
1127 List all the volumes groups detected.  This is the equivalent
1128 of the L<vgs(8)> command.  The \"full\" version includes all fields.");
1129
1130   ("lvs_full", (RStructList ("logvols", "lvm_lv"), []), 14, [Optional "lvm2"],
1131    [], (* XXX how to test? *)
1132    "list the LVM logical volumes (LVs)",
1133    "\
1134 List all the logical volumes detected.  This is the equivalent
1135 of the L<lvs(8)> command.  The \"full\" version includes all fields.");
1136
1137   ("read_lines", (RStringList "lines", [Pathname "path"]), 15, [],
1138    [InitISOFS, Always, TestOutputList (
1139       [["read_lines"; "/known-4"]], ["abc"; "def"; "ghi"]);
1140     InitISOFS, Always, TestOutputList (
1141       [["read_lines"; "/empty"]], [])],
1142    "read file as lines",
1143    "\
1144 Return the contents of the file named C<path>.
1145
1146 The file contents are returned as a list of lines.  Trailing
1147 C<LF> and C<CRLF> character sequences are I<not> returned.
1148
1149 Note that this function cannot correctly handle binary files
1150 (specifically, files containing C<\\0> character which is treated
1151 as end of line).  For those you need to use the C<guestfs_read_file>
1152 function which has a more complex interface.");
1153
1154   ("aug_init", (RErr, [Pathname "root"; Int "flags"]), 16, [Optional "augeas"],
1155    [], (* XXX Augeas code needs tests. *)
1156    "create a new Augeas handle",
1157    "\
1158 Create a new Augeas handle for editing configuration files.
1159 If there was any previous Augeas handle associated with this
1160 guestfs session, then it is closed.
1161
1162 You must call this before using any other C<guestfs_aug_*>
1163 commands.
1164
1165 C<root> is the filesystem root.  C<root> must not be NULL,
1166 use C</> instead.
1167
1168 The flags are the same as the flags defined in
1169 E<lt>augeas.hE<gt>, the logical I<or> of the following
1170 integers:
1171
1172 =over 4
1173
1174 =item C<AUG_SAVE_BACKUP> = 1
1175
1176 Keep the original file with a C<.augsave> extension.
1177
1178 =item C<AUG_SAVE_NEWFILE> = 2
1179
1180 Save changes into a file with extension C<.augnew>, and
1181 do not overwrite original.  Overrides C<AUG_SAVE_BACKUP>.
1182
1183 =item C<AUG_TYPE_CHECK> = 4
1184
1185 Typecheck lenses (can be expensive).
1186
1187 =item C<AUG_NO_STDINC> = 8
1188
1189 Do not use standard load path for modules.
1190
1191 =item C<AUG_SAVE_NOOP> = 16
1192
1193 Make save a no-op, just record what would have been changed.
1194
1195 =item C<AUG_NO_LOAD> = 32
1196
1197 Do not load the tree in C<guestfs_aug_init>.
1198
1199 =back
1200
1201 To close the handle, you can call C<guestfs_aug_close>.
1202
1203 To find out more about Augeas, see L<http://augeas.net/>.");
1204
1205   ("aug_close", (RErr, []), 26, [Optional "augeas"],
1206    [], (* XXX Augeas code needs tests. *)
1207    "close the current Augeas handle",
1208    "\
1209 Close the current Augeas handle and free up any resources
1210 used by it.  After calling this, you have to call
1211 C<guestfs_aug_init> again before you can use any other
1212 Augeas functions.");
1213
1214   ("aug_defvar", (RInt "nrnodes", [String "name"; OptString "expr"]), 17, [Optional "augeas"],
1215    [], (* XXX Augeas code needs tests. *)
1216    "define an Augeas variable",
1217    "\
1218 Defines an Augeas variable C<name> whose value is the result
1219 of evaluating C<expr>.  If C<expr> is NULL, then C<name> is
1220 undefined.
1221
1222 On success this returns the number of nodes in C<expr>, or
1223 C<0> if C<expr> evaluates to something which is not a nodeset.");
1224
1225   ("aug_defnode", (RStruct ("nrnodescreated", "int_bool"), [String "name"; String "expr"; String "val"]), 18, [Optional "augeas"],
1226    [], (* XXX Augeas code needs tests. *)
1227    "define an Augeas node",
1228    "\
1229 Defines a variable C<name> whose value is the result of
1230 evaluating C<expr>.
1231
1232 If C<expr> evaluates to an empty nodeset, a node is created,
1233 equivalent to calling C<guestfs_aug_set> C<expr>, C<value>.
1234 C<name> will be the nodeset containing that single node.
1235
1236 On success this returns a pair containing the
1237 number of nodes in the nodeset, and a boolean flag
1238 if a node was created.");
1239
1240   ("aug_get", (RString "val", [String "augpath"]), 19, [Optional "augeas"],
1241    [], (* XXX Augeas code needs tests. *)
1242    "look up the value of an Augeas path",
1243    "\
1244 Look up the value associated with C<path>.  If C<path>
1245 matches exactly one node, the C<value> is returned.");
1246
1247   ("aug_set", (RErr, [String "augpath"; String "val"]), 20, [Optional "augeas"],
1248    [], (* XXX Augeas code needs tests. *)
1249    "set Augeas path to value",
1250    "\
1251 Set the value associated with C<path> to C<val>.
1252
1253 In the Augeas API, it is possible to clear a node by setting
1254 the value to NULL.  Due to an oversight in the libguestfs API
1255 you cannot do that with this call.  Instead you must use the
1256 C<guestfs_aug_clear> call.");
1257
1258   ("aug_insert", (RErr, [String "augpath"; String "label"; Bool "before"]), 21, [Optional "augeas"],
1259    [], (* XXX Augeas code needs tests. *)
1260    "insert a sibling Augeas node",
1261    "\
1262 Create a new sibling C<label> for C<path>, inserting it into
1263 the tree before or after C<path> (depending on the boolean
1264 flag C<before>).
1265
1266 C<path> must match exactly one existing node in the tree, and
1267 C<label> must be a label, ie. not contain C</>, C<*> or end
1268 with a bracketed index C<[N]>.");
1269
1270   ("aug_rm", (RInt "nrnodes", [String "augpath"]), 22, [Optional "augeas"],
1271    [], (* XXX Augeas code needs tests. *)
1272    "remove an Augeas path",
1273    "\
1274 Remove C<path> and all of its children.
1275
1276 On success this returns the number of entries which were removed.");
1277
1278   ("aug_mv", (RErr, [String "src"; String "dest"]), 23, [Optional "augeas"],
1279    [], (* XXX Augeas code needs tests. *)
1280    "move Augeas node",
1281    "\
1282 Move the node C<src> to C<dest>.  C<src> must match exactly
1283 one node.  C<dest> is overwritten if it exists.");
1284
1285   ("aug_match", (RStringList "matches", [String "augpath"]), 24, [Optional "augeas"],
1286    [], (* XXX Augeas code needs tests. *)
1287    "return Augeas nodes which match augpath",
1288    "\
1289 Returns a list of paths which match the path expression C<path>.
1290 The returned paths are sufficiently qualified so that they match
1291 exactly one node in the current tree.");
1292
1293   ("aug_save", (RErr, []), 25, [Optional "augeas"],
1294    [], (* XXX Augeas code needs tests. *)
1295    "write all pending Augeas changes to disk",
1296    "\
1297 This writes all pending changes to disk.
1298
1299 The flags which were passed to C<guestfs_aug_init> affect exactly
1300 how files are saved.");
1301
1302   ("aug_load", (RErr, []), 27, [Optional "augeas"],
1303    [], (* XXX Augeas code needs tests. *)
1304    "load files into the tree",
1305    "\
1306 Load files into the tree.
1307
1308 See C<aug_load> in the Augeas documentation for the full gory
1309 details.");
1310
1311   ("aug_ls", (RStringList "matches", [String "augpath"]), 28, [Optional "augeas"],
1312    [], (* XXX Augeas code needs tests. *)
1313    "list Augeas nodes under augpath",
1314    "\
1315 This is just a shortcut for listing C<guestfs_aug_match>
1316 C<path/*> and sorting the resulting nodes into alphabetical order.");
1317
1318   ("rm", (RErr, [Pathname "path"]), 29, [],
1319    [InitBasicFS, Always, TestRun
1320       [["touch"; "/new"];
1321        ["rm"; "/new"]];
1322     InitBasicFS, Always, TestLastFail
1323       [["rm"; "/new"]];
1324     InitBasicFS, Always, TestLastFail
1325       [["mkdir"; "/new"];
1326        ["rm"; "/new"]]],
1327    "remove a file",
1328    "\
1329 Remove the single file C<path>.");
1330
1331   ("rmdir", (RErr, [Pathname "path"]), 30, [],
1332    [InitBasicFS, Always, TestRun
1333       [["mkdir"; "/new"];
1334        ["rmdir"; "/new"]];
1335     InitBasicFS, Always, TestLastFail
1336       [["rmdir"; "/new"]];
1337     InitBasicFS, Always, TestLastFail
1338       [["touch"; "/new"];
1339        ["rmdir"; "/new"]]],
1340    "remove a directory",
1341    "\
1342 Remove the single directory C<path>.");
1343
1344   ("rm_rf", (RErr, [Pathname "path"]), 31, [],
1345    [InitBasicFS, Always, TestOutputFalse
1346       [["mkdir"; "/new"];
1347        ["mkdir"; "/new/foo"];
1348        ["touch"; "/new/foo/bar"];
1349        ["rm_rf"; "/new"];
1350        ["exists"; "/new"]]],
1351    "remove a file or directory recursively",
1352    "\
1353 Remove the file or directory C<path>, recursively removing the
1354 contents if its a directory.  This is like the C<rm -rf> shell
1355 command.");
1356
1357   ("mkdir", (RErr, [Pathname "path"]), 32, [],
1358    [InitBasicFS, Always, TestOutputTrue
1359       [["mkdir"; "/new"];
1360        ["is_dir"; "/new"]];
1361     InitBasicFS, Always, TestLastFail
1362       [["mkdir"; "/new/foo/bar"]]],
1363    "create a directory",
1364    "\
1365 Create a directory named C<path>.");
1366
1367   ("mkdir_p", (RErr, [Pathname "path"]), 33, [],
1368    [InitBasicFS, Always, TestOutputTrue
1369       [["mkdir_p"; "/new/foo/bar"];
1370        ["is_dir"; "/new/foo/bar"]];
1371     InitBasicFS, Always, TestOutputTrue
1372       [["mkdir_p"; "/new/foo/bar"];
1373        ["is_dir"; "/new/foo"]];
1374     InitBasicFS, Always, TestOutputTrue
1375       [["mkdir_p"; "/new/foo/bar"];
1376        ["is_dir"; "/new"]];
1377     (* Regression tests for RHBZ#503133: *)
1378     InitBasicFS, Always, TestRun
1379       [["mkdir"; "/new"];
1380        ["mkdir_p"; "/new"]];
1381     InitBasicFS, Always, TestLastFail
1382       [["touch"; "/new"];
1383        ["mkdir_p"; "/new"]]],
1384    "create a directory and parents",
1385    "\
1386 Create a directory named C<path>, creating any parent directories
1387 as necessary.  This is like the C<mkdir -p> shell command.");
1388
1389   ("chmod", (RErr, [Int "mode"; Pathname "path"]), 34, [],
1390    [], (* XXX Need stat command to test *)
1391    "change file mode",
1392    "\
1393 Change the mode (permissions) of C<path> to C<mode>.  Only
1394 numeric modes are supported.
1395
1396 I<Note>: When using this command from guestfish, C<mode>
1397 by default would be decimal, unless you prefix it with
1398 C<0> to get octal, ie. use C<0700> not C<700>.
1399
1400 The mode actually set is affected by the umask.");
1401
1402   ("chown", (RErr, [Int "owner"; Int "group"; Pathname "path"]), 35, [],
1403    [], (* XXX Need stat command to test *)
1404    "change file owner and group",
1405    "\
1406 Change the file owner to C<owner> and group to C<group>.
1407
1408 Only numeric uid and gid are supported.  If you want to use
1409 names, you will need to locate and parse the password file
1410 yourself (Augeas support makes this relatively easy).");
1411
1412   ("exists", (RBool "existsflag", [Pathname "path"]), 36, [],
1413    [InitISOFS, Always, TestOutputTrue (
1414       [["exists"; "/empty"]]);
1415     InitISOFS, Always, TestOutputTrue (
1416       [["exists"; "/directory"]])],
1417    "test if file or directory exists",
1418    "\
1419 This returns C<true> if and only if there is a file, directory
1420 (or anything) with the given C<path> name.
1421
1422 See also C<guestfs_is_file>, C<guestfs_is_dir>, C<guestfs_stat>.");
1423
1424   ("is_file", (RBool "fileflag", [Pathname "path"]), 37, [],
1425    [InitISOFS, Always, TestOutputTrue (
1426       [["is_file"; "/known-1"]]);
1427     InitISOFS, Always, TestOutputFalse (
1428       [["is_file"; "/directory"]])],
1429    "test if file exists",
1430    "\
1431 This returns C<true> if and only if there is a file
1432 with the given C<path> name.  Note that it returns false for
1433 other objects like directories.
1434
1435 See also C<guestfs_stat>.");
1436
1437   ("is_dir", (RBool "dirflag", [Pathname "path"]), 38, [],
1438    [InitISOFS, Always, TestOutputFalse (
1439       [["is_dir"; "/known-3"]]);
1440     InitISOFS, Always, TestOutputTrue (
1441       [["is_dir"; "/directory"]])],
1442    "test if file exists",
1443    "\
1444 This returns C<true> if and only if there is a directory
1445 with the given C<path> name.  Note that it returns false for
1446 other objects like files.
1447
1448 See also C<guestfs_stat>.");
1449
1450   ("pvcreate", (RErr, [Device "device"]), 39, [Optional "lvm2"],
1451    [InitEmpty, Always, TestOutputListOfDevices (
1452       [["sfdiskM"; "/dev/sda"; ",100 ,200 ,"];
1453        ["pvcreate"; "/dev/sda1"];
1454        ["pvcreate"; "/dev/sda2"];
1455        ["pvcreate"; "/dev/sda3"];
1456        ["pvs"]], ["/dev/sda1"; "/dev/sda2"; "/dev/sda3"])],
1457    "create an LVM physical volume",
1458    "\
1459 This creates an LVM physical volume on the named C<device>,
1460 where C<device> should usually be a partition name such
1461 as C</dev/sda1>.");
1462
1463   ("vgcreate", (RErr, [String "volgroup"; DeviceList "physvols"]), 40, [Optional "lvm2"],
1464    [InitEmpty, Always, TestOutputList (
1465       [["sfdiskM"; "/dev/sda"; ",100 ,200 ,"];
1466        ["pvcreate"; "/dev/sda1"];
1467        ["pvcreate"; "/dev/sda2"];
1468        ["pvcreate"; "/dev/sda3"];
1469        ["vgcreate"; "VG1"; "/dev/sda1 /dev/sda2"];
1470        ["vgcreate"; "VG2"; "/dev/sda3"];
1471        ["vgs"]], ["VG1"; "VG2"])],
1472    "create an LVM volume group",
1473    "\
1474 This creates an LVM volume group called C<volgroup>
1475 from the non-empty list of physical volumes C<physvols>.");
1476
1477   ("lvcreate", (RErr, [String "logvol"; String "volgroup"; Int "mbytes"]), 41, [Optional "lvm2"],
1478    [InitEmpty, Always, TestOutputList (
1479       [["sfdiskM"; "/dev/sda"; ",100 ,200 ,"];
1480        ["pvcreate"; "/dev/sda1"];
1481        ["pvcreate"; "/dev/sda2"];
1482        ["pvcreate"; "/dev/sda3"];
1483        ["vgcreate"; "VG1"; "/dev/sda1 /dev/sda2"];
1484        ["vgcreate"; "VG2"; "/dev/sda3"];
1485        ["lvcreate"; "LV1"; "VG1"; "50"];
1486        ["lvcreate"; "LV2"; "VG1"; "50"];
1487        ["lvcreate"; "LV3"; "VG2"; "50"];
1488        ["lvcreate"; "LV4"; "VG2"; "50"];
1489        ["lvcreate"; "LV5"; "VG2"; "50"];
1490        ["lvs"]],
1491       ["/dev/VG1/LV1"; "/dev/VG1/LV2";
1492        "/dev/VG2/LV3"; "/dev/VG2/LV4"; "/dev/VG2/LV5"])],
1493    "create an LVM logical volume",
1494    "\
1495 This creates an LVM logical volume called C<logvol>
1496 on the volume group C<volgroup>, with C<size> megabytes.");
1497
1498   ("mkfs", (RErr, [String "fstype"; Device "device"]), 42, [],
1499    [InitEmpty, Always, TestOutput (
1500       [["part_disk"; "/dev/sda"; "mbr"];
1501        ["mkfs"; "ext2"; "/dev/sda1"];
1502        ["mount_options"; ""; "/dev/sda1"; "/"];
1503        ["write"; "/new"; "new file contents"];
1504        ["cat"; "/new"]], "new file contents")],
1505    "make a filesystem",
1506    "\
1507 This creates a filesystem on C<device> (usually a partition
1508 or LVM logical volume).  The filesystem type is C<fstype>, for
1509 example C<ext3>.");
1510
1511   ("sfdisk", (RErr, [Device "device";
1512                      Int "cyls"; Int "heads"; Int "sectors";
1513                      StringList "lines"]), 43, [DangerWillRobinson],
1514    [],
1515    "create partitions on a block device",
1516    "\
1517 This is a direct interface to the L<sfdisk(8)> program for creating
1518 partitions on block devices.
1519
1520 C<device> should be a block device, for example C</dev/sda>.
1521
1522 C<cyls>, C<heads> and C<sectors> are the number of cylinders, heads
1523 and sectors on the device, which are passed directly to sfdisk as
1524 the I<-C>, I<-H> and I<-S> parameters.  If you pass C<0> for any
1525 of these, then the corresponding parameter is omitted.  Usually for
1526 'large' disks, you can just pass C<0> for these, but for small
1527 (floppy-sized) disks, sfdisk (or rather, the kernel) cannot work
1528 out the right geometry and you will need to tell it.
1529
1530 C<lines> is a list of lines that we feed to C<sfdisk>.  For more
1531 information refer to the L<sfdisk(8)> manpage.
1532
1533 To create a single partition occupying the whole disk, you would
1534 pass C<lines> as a single element list, when the single element being
1535 the string C<,> (comma).
1536
1537 See also: C<guestfs_sfdisk_l>, C<guestfs_sfdisk_N>,
1538 C<guestfs_part_init>");
1539
1540   ("write_file", (RErr, [Pathname "path"; String "content"; Int "size"]), 44, [ProtocolLimitWarning; DeprecatedBy "write"],
1541    [],
1542    "create a file",
1543    "\
1544 This call creates a file called C<path>.  The contents of the
1545 file is the string C<content> (which can contain any 8 bit data),
1546 with length C<size>.
1547
1548 As a special case, if C<size> is C<0>
1549 then the length is calculated using C<strlen> (so in this case
1550 the content cannot contain embedded ASCII NULs).
1551
1552 I<NB.> Owing to a bug, writing content containing ASCII NUL
1553 characters does I<not> work, even if the length is specified.");
1554
1555   ("umount", (RErr, [String "pathordevice"]), 45, [FishAlias "unmount"],
1556    [InitEmpty, Always, TestOutputListOfDevices (
1557       [["part_disk"; "/dev/sda"; "mbr"];
1558        ["mkfs"; "ext2"; "/dev/sda1"];
1559        ["mount_options"; ""; "/dev/sda1"; "/"];
1560        ["mounts"]], ["/dev/sda1"]);
1561     InitEmpty, Always, TestOutputList (
1562       [["part_disk"; "/dev/sda"; "mbr"];
1563        ["mkfs"; "ext2"; "/dev/sda1"];
1564        ["mount_options"; ""; "/dev/sda1"; "/"];
1565        ["umount"; "/"];
1566        ["mounts"]], [])],
1567    "unmount a filesystem",
1568    "\
1569 This unmounts the given filesystem.  The filesystem may be
1570 specified either by its mountpoint (path) or the device which
1571 contains the filesystem.");
1572
1573   ("mounts", (RStringList "devices", []), 46, [],
1574    [InitBasicFS, Always, TestOutputListOfDevices (
1575       [["mounts"]], ["/dev/sda1"])],
1576    "show mounted filesystems",
1577    "\
1578 This returns the list of currently mounted filesystems.  It returns
1579 the list of devices (eg. C</dev/sda1>, C</dev/VG/LV>).
1580
1581 Some internal mounts are not shown.
1582
1583 See also: C<guestfs_mountpoints>");
1584
1585   ("umount_all", (RErr, []), 47, [FishAlias "unmount-all"],
1586    [InitBasicFS, Always, TestOutputList (
1587       [["umount_all"];
1588        ["mounts"]], []);
1589     (* check that umount_all can unmount nested mounts correctly: *)
1590     InitEmpty, Always, TestOutputList (
1591       [["sfdiskM"; "/dev/sda"; ",100 ,200 ,"];
1592        ["mkfs"; "ext2"; "/dev/sda1"];
1593        ["mkfs"; "ext2"; "/dev/sda2"];
1594        ["mkfs"; "ext2"; "/dev/sda3"];
1595        ["mount_options"; ""; "/dev/sda1"; "/"];
1596        ["mkdir"; "/mp1"];
1597        ["mount_options"; ""; "/dev/sda2"; "/mp1"];
1598        ["mkdir"; "/mp1/mp2"];
1599        ["mount_options"; ""; "/dev/sda3"; "/mp1/mp2"];
1600        ["mkdir"; "/mp1/mp2/mp3"];
1601        ["umount_all"];
1602        ["mounts"]], [])],
1603    "unmount all filesystems",
1604    "\
1605 This unmounts all mounted filesystems.
1606
1607 Some internal mounts are not unmounted by this call.");
1608
1609   ("lvm_remove_all", (RErr, []), 48, [DangerWillRobinson; Optional "lvm2"],
1610    [],
1611    "remove all LVM LVs, VGs and PVs",
1612    "\
1613 This command removes all LVM logical volumes, volume groups
1614 and physical volumes.");
1615
1616   ("file", (RString "description", [Dev_or_Path "path"]), 49, [],
1617    [InitISOFS, Always, TestOutput (
1618       [["file"; "/empty"]], "empty");
1619     InitISOFS, Always, TestOutput (
1620       [["file"; "/known-1"]], "ASCII text");
1621     InitISOFS, Always, TestLastFail (
1622       [["file"; "/notexists"]])],
1623    "determine file type",
1624    "\
1625 This call uses the standard L<file(1)> command to determine
1626 the type or contents of the file.  This also works on devices,
1627 for example to find out whether a partition contains a filesystem.
1628
1629 This call will also transparently look inside various types
1630 of compressed file.
1631
1632 The exact command which runs is C<file -zbsL path>.  Note in
1633 particular that the filename is not prepended to the output
1634 (the C<-b> option).");
1635
1636   ("command", (RString "output", [StringList "arguments"]), 50, [ProtocolLimitWarning],
1637    [InitBasicFS, Always, TestOutput (
1638       [["upload"; "test-command"; "/test-command"];
1639        ["chmod"; "0o755"; "/test-command"];
1640        ["command"; "/test-command 1"]], "Result1");
1641     InitBasicFS, Always, TestOutput (
1642       [["upload"; "test-command"; "/test-command"];
1643        ["chmod"; "0o755"; "/test-command"];
1644        ["command"; "/test-command 2"]], "Result2\n");
1645     InitBasicFS, Always, TestOutput (
1646       [["upload"; "test-command"; "/test-command"];
1647        ["chmod"; "0o755"; "/test-command"];
1648        ["command"; "/test-command 3"]], "\nResult3");
1649     InitBasicFS, Always, TestOutput (
1650       [["upload"; "test-command"; "/test-command"];
1651        ["chmod"; "0o755"; "/test-command"];
1652        ["command"; "/test-command 4"]], "\nResult4\n");
1653     InitBasicFS, Always, TestOutput (
1654       [["upload"; "test-command"; "/test-command"];
1655        ["chmod"; "0o755"; "/test-command"];
1656        ["command"; "/test-command 5"]], "\nResult5\n\n");
1657     InitBasicFS, Always, TestOutput (
1658       [["upload"; "test-command"; "/test-command"];
1659        ["chmod"; "0o755"; "/test-command"];
1660        ["command"; "/test-command 6"]], "\n\nResult6\n\n");
1661     InitBasicFS, Always, TestOutput (
1662       [["upload"; "test-command"; "/test-command"];
1663        ["chmod"; "0o755"; "/test-command"];
1664        ["command"; "/test-command 7"]], "");
1665     InitBasicFS, Always, TestOutput (
1666       [["upload"; "test-command"; "/test-command"];
1667        ["chmod"; "0o755"; "/test-command"];
1668        ["command"; "/test-command 8"]], "\n");
1669     InitBasicFS, Always, TestOutput (
1670       [["upload"; "test-command"; "/test-command"];
1671        ["chmod"; "0o755"; "/test-command"];
1672        ["command"; "/test-command 9"]], "\n\n");
1673     InitBasicFS, Always, TestOutput (
1674       [["upload"; "test-command"; "/test-command"];
1675        ["chmod"; "0o755"; "/test-command"];
1676        ["command"; "/test-command 10"]], "Result10-1\nResult10-2\n");
1677     InitBasicFS, Always, TestOutput (
1678       [["upload"; "test-command"; "/test-command"];
1679        ["chmod"; "0o755"; "/test-command"];
1680        ["command"; "/test-command 11"]], "Result11-1\nResult11-2");
1681     InitBasicFS, Always, TestLastFail (
1682       [["upload"; "test-command"; "/test-command"];
1683        ["chmod"; "0o755"; "/test-command"];
1684        ["command"; "/test-command"]])],
1685    "run a command from the guest filesystem",
1686    "\
1687 This call runs a command from the guest filesystem.  The
1688 filesystem must be mounted, and must contain a compatible
1689 operating system (ie. something Linux, with the same
1690 or compatible processor architecture).
1691
1692 The single parameter is an argv-style list of arguments.
1693 The first element is the name of the program to run.
1694 Subsequent elements are parameters.  The list must be
1695 non-empty (ie. must contain a program name).  Note that
1696 the command runs directly, and is I<not> invoked via
1697 the shell (see C<guestfs_sh>).
1698
1699 The return value is anything printed to I<stdout> by
1700 the command.
1701
1702 If the command returns a non-zero exit status, then
1703 this function returns an error message.  The error message
1704 string is the content of I<stderr> from the command.
1705
1706 The C<$PATH> environment variable will contain at least
1707 C</usr/bin> and C</bin>.  If you require a program from
1708 another location, you should provide the full path in the
1709 first parameter.
1710
1711 Shared libraries and data files required by the program
1712 must be available on filesystems which are mounted in the
1713 correct places.  It is the caller's responsibility to ensure
1714 all filesystems that are needed are mounted at the right
1715 locations.");
1716
1717   ("command_lines", (RStringList "lines", [StringList "arguments"]), 51, [ProtocolLimitWarning],
1718    [InitBasicFS, Always, TestOutputList (
1719       [["upload"; "test-command"; "/test-command"];
1720        ["chmod"; "0o755"; "/test-command"];
1721        ["command_lines"; "/test-command 1"]], ["Result1"]);
1722     InitBasicFS, Always, TestOutputList (
1723       [["upload"; "test-command"; "/test-command"];
1724        ["chmod"; "0o755"; "/test-command"];
1725        ["command_lines"; "/test-command 2"]], ["Result2"]);
1726     InitBasicFS, Always, TestOutputList (
1727       [["upload"; "test-command"; "/test-command"];
1728        ["chmod"; "0o755"; "/test-command"];
1729        ["command_lines"; "/test-command 3"]], ["";"Result3"]);
1730     InitBasicFS, Always, TestOutputList (
1731       [["upload"; "test-command"; "/test-command"];
1732        ["chmod"; "0o755"; "/test-command"];
1733        ["command_lines"; "/test-command 4"]], ["";"Result4"]);
1734     InitBasicFS, Always, TestOutputList (
1735       [["upload"; "test-command"; "/test-command"];
1736        ["chmod"; "0o755"; "/test-command"];
1737        ["command_lines"; "/test-command 5"]], ["";"Result5";""]);
1738     InitBasicFS, Always, TestOutputList (
1739       [["upload"; "test-command"; "/test-command"];
1740        ["chmod"; "0o755"; "/test-command"];
1741        ["command_lines"; "/test-command 6"]], ["";"";"Result6";""]);
1742     InitBasicFS, Always, TestOutputList (
1743       [["upload"; "test-command"; "/test-command"];
1744        ["chmod"; "0o755"; "/test-command"];
1745        ["command_lines"; "/test-command 7"]], []);
1746     InitBasicFS, Always, TestOutputList (
1747       [["upload"; "test-command"; "/test-command"];
1748        ["chmod"; "0o755"; "/test-command"];
1749        ["command_lines"; "/test-command 8"]], [""]);
1750     InitBasicFS, Always, TestOutputList (
1751       [["upload"; "test-command"; "/test-command"];
1752        ["chmod"; "0o755"; "/test-command"];
1753        ["command_lines"; "/test-command 9"]], ["";""]);
1754     InitBasicFS, Always, TestOutputList (
1755       [["upload"; "test-command"; "/test-command"];
1756        ["chmod"; "0o755"; "/test-command"];
1757        ["command_lines"; "/test-command 10"]], ["Result10-1";"Result10-2"]);
1758     InitBasicFS, Always, TestOutputList (
1759       [["upload"; "test-command"; "/test-command"];
1760        ["chmod"; "0o755"; "/test-command"];
1761        ["command_lines"; "/test-command 11"]], ["Result11-1";"Result11-2"])],
1762    "run a command, returning lines",
1763    "\
1764 This is the same as C<guestfs_command>, but splits the
1765 result into a list of lines.
1766
1767 See also: C<guestfs_sh_lines>");
1768
1769   ("stat", (RStruct ("statbuf", "stat"), [Pathname "path"]), 52, [],
1770    [InitISOFS, Always, TestOutputStruct (
1771       [["stat"; "/empty"]], [CompareWithInt ("size", 0)])],
1772    "get file information",
1773    "\
1774 Returns file information for the given C<path>.
1775
1776 This is the same as the C<stat(2)> system call.");
1777
1778   ("lstat", (RStruct ("statbuf", "stat"), [Pathname "path"]), 53, [],
1779    [InitISOFS, Always, TestOutputStruct (
1780       [["lstat"; "/empty"]], [CompareWithInt ("size", 0)])],
1781    "get file information for a symbolic link",
1782    "\
1783 Returns file information for the given C<path>.
1784
1785 This is the same as C<guestfs_stat> except that if C<path>
1786 is a symbolic link, then the link is stat-ed, not the file it
1787 refers to.
1788
1789 This is the same as the C<lstat(2)> system call.");
1790
1791   ("statvfs", (RStruct ("statbuf", "statvfs"), [Pathname "path"]), 54, [],
1792    [InitISOFS, Always, TestOutputStruct (
1793       [["statvfs"; "/"]], [CompareWithInt ("namemax", 255)])],
1794    "get file system statistics",
1795    "\
1796 Returns file system statistics for any mounted file system.
1797 C<path> should be a file or directory in the mounted file system
1798 (typically it is the mount point itself, but it doesn't need to be).
1799
1800 This is the same as the C<statvfs(2)> system call.");
1801
1802   ("tune2fs_l", (RHashtable "superblock", [Device "device"]), 55, [],
1803    [], (* XXX test *)
1804    "get ext2/ext3/ext4 superblock details",
1805    "\
1806 This returns the contents of the ext2, ext3 or ext4 filesystem
1807 superblock on C<device>.
1808
1809 It is the same as running C<tune2fs -l device>.  See L<tune2fs(8)>
1810 manpage for more details.  The list of fields returned isn't
1811 clearly defined, and depends on both the version of C<tune2fs>
1812 that libguestfs was built against, and the filesystem itself.");
1813
1814   ("blockdev_setro", (RErr, [Device "device"]), 56, [],
1815    [InitEmpty, Always, TestOutputTrue (
1816       [["blockdev_setro"; "/dev/sda"];
1817        ["blockdev_getro"; "/dev/sda"]])],
1818    "set block device to read-only",
1819    "\
1820 Sets the block device named C<device> to read-only.
1821
1822 This uses the L<blockdev(8)> command.");
1823
1824   ("blockdev_setrw", (RErr, [Device "device"]), 57, [],
1825    [InitEmpty, Always, TestOutputFalse (
1826       [["blockdev_setrw"; "/dev/sda"];
1827        ["blockdev_getro"; "/dev/sda"]])],
1828    "set block device to read-write",
1829    "\
1830 Sets the block device named C<device> to read-write.
1831
1832 This uses the L<blockdev(8)> command.");
1833
1834   ("blockdev_getro", (RBool "ro", [Device "device"]), 58, [],
1835    [InitEmpty, Always, TestOutputTrue (
1836       [["blockdev_setro"; "/dev/sda"];
1837        ["blockdev_getro"; "/dev/sda"]])],
1838    "is block device set to read-only",
1839    "\
1840 Returns a boolean indicating if the block device is read-only
1841 (true if read-only, false if not).
1842
1843 This uses the L<blockdev(8)> command.");
1844
1845   ("blockdev_getss", (RInt "sectorsize", [Device "device"]), 59, [],
1846    [InitEmpty, Always, TestOutputInt (
1847       [["blockdev_getss"; "/dev/sda"]], 512)],
1848    "get sectorsize of block device",
1849    "\
1850 This returns the size of sectors on a block device.
1851 Usually 512, but can be larger for modern devices.
1852
1853 (Note, this is not the size in sectors, use C<guestfs_blockdev_getsz>
1854 for that).
1855
1856 This uses the L<blockdev(8)> command.");
1857
1858   ("blockdev_getbsz", (RInt "blocksize", [Device "device"]), 60, [],
1859    [InitEmpty, Always, TestOutputInt (
1860       [["blockdev_getbsz"; "/dev/sda"]], 4096)],
1861    "get blocksize of block device",
1862    "\
1863 This returns the block size of a device.
1864
1865 (Note this is different from both I<size in blocks> and
1866 I<filesystem block size>).
1867
1868 This uses the L<blockdev(8)> command.");
1869
1870   ("blockdev_setbsz", (RErr, [Device "device"; Int "blocksize"]), 61, [],
1871    [], (* XXX test *)
1872    "set blocksize of block device",
1873    "\
1874 This sets the block size of a device.
1875
1876 (Note this is different from both I<size in blocks> and
1877 I<filesystem block size>).
1878
1879 This uses the L<blockdev(8)> command.");
1880
1881   ("blockdev_getsz", (RInt64 "sizeinsectors", [Device "device"]), 62, [],
1882    [InitEmpty, Always, TestOutputInt (
1883       [["blockdev_getsz"; "/dev/sda"]], 1024000)],
1884    "get total size of device in 512-byte sectors",
1885    "\
1886 This returns the size of the device in units of 512-byte sectors
1887 (even if the sectorsize isn't 512 bytes ... weird).
1888
1889 See also C<guestfs_blockdev_getss> for the real sector size of
1890 the device, and C<guestfs_blockdev_getsize64> for the more
1891 useful I<size in bytes>.
1892
1893 This uses the L<blockdev(8)> command.");
1894
1895   ("blockdev_getsize64", (RInt64 "sizeinbytes", [Device "device"]), 63, [],
1896    [InitEmpty, Always, TestOutputInt (
1897       [["blockdev_getsize64"; "/dev/sda"]], 524288000)],
1898    "get total size of device in bytes",
1899    "\
1900 This returns the size of the device in bytes.
1901
1902 See also C<guestfs_blockdev_getsz>.
1903
1904 This uses the L<blockdev(8)> command.");
1905
1906   ("blockdev_flushbufs", (RErr, [Device "device"]), 64, [],
1907    [InitEmpty, Always, TestRun
1908       [["blockdev_flushbufs"; "/dev/sda"]]],
1909    "flush device buffers",
1910    "\
1911 This tells the kernel to flush internal buffers associated
1912 with C<device>.
1913
1914 This uses the L<blockdev(8)> command.");
1915
1916   ("blockdev_rereadpt", (RErr, [Device "device"]), 65, [],
1917    [InitEmpty, Always, TestRun
1918       [["blockdev_rereadpt"; "/dev/sda"]]],
1919    "reread partition table",
1920    "\
1921 Reread the partition table on C<device>.
1922
1923 This uses the L<blockdev(8)> command.");
1924
1925   ("upload", (RErr, [FileIn "filename"; Dev_or_Path "remotefilename"]), 66, [],
1926    [InitBasicFS, Always, TestOutput (
1927       (* Pick a file from cwd which isn't likely to change. *)
1928       [["upload"; "../COPYING.LIB"; "/COPYING.LIB"];
1929        ["checksum"; "md5"; "/COPYING.LIB"]],
1930       Digest.to_hex (Digest.file "COPYING.LIB"))],
1931    "upload a file from the local machine",
1932    "\
1933 Upload local file C<filename> to C<remotefilename> on the
1934 filesystem.
1935
1936 C<filename> can also be a named pipe.
1937
1938 See also C<guestfs_download>.");
1939
1940   ("download", (RErr, [Dev_or_Path "remotefilename"; FileOut "filename"]), 67, [],
1941    [InitBasicFS, Always, TestOutput (
1942       (* Pick a file from cwd which isn't likely to change. *)
1943       [["upload"; "../COPYING.LIB"; "/COPYING.LIB"];
1944        ["download"; "/COPYING.LIB"; "testdownload.tmp"];
1945        ["upload"; "testdownload.tmp"; "/upload"];
1946        ["checksum"; "md5"; "/upload"]],
1947       Digest.to_hex (Digest.file "COPYING.LIB"))],
1948    "download a file to the local machine",
1949    "\
1950 Download file C<remotefilename> and save it as C<filename>
1951 on the local machine.
1952
1953 C<filename> can also be a named pipe.
1954
1955 See also C<guestfs_upload>, C<guestfs_cat>.");
1956
1957   ("checksum", (RString "checksum", [String "csumtype"; Pathname "path"]), 68, [],
1958    [InitISOFS, Always, TestOutput (
1959       [["checksum"; "crc"; "/known-3"]], "2891671662");
1960     InitISOFS, Always, TestLastFail (
1961       [["checksum"; "crc"; "/notexists"]]);
1962     InitISOFS, Always, TestOutput (
1963       [["checksum"; "md5"; "/known-3"]], "46d6ca27ee07cdc6fa99c2e138cc522c");
1964     InitISOFS, Always, TestOutput (
1965       [["checksum"; "sha1"; "/known-3"]], "b7ebccc3ee418311091c3eda0a45b83c0a770f15");
1966     InitISOFS, Always, TestOutput (
1967       [["checksum"; "sha224"; "/known-3"]], "d2cd1774b28f3659c14116be0a6dc2bb5c4b350ce9cd5defac707741");
1968     InitISOFS, Always, TestOutput (
1969       [["checksum"; "sha256"; "/known-3"]], "75bb71b90cd20cb13f86d2bea8dad63ac7194e7517c3b52b8d06ff52d3487d30");
1970     InitISOFS, Always, TestOutput (
1971       [["checksum"; "sha384"; "/known-3"]], "5fa7883430f357b5d7b7271d3a1d2872b51d73cba72731de6863d3dea55f30646af2799bef44d5ea776a5ec7941ac640");
1972     InitISOFS, Always, TestOutput (
1973       [["checksum"; "sha512"; "/known-3"]], "2794062c328c6b216dca90443b7f7134c5f40e56bd0ed7853123275a09982a6f992e6ca682f9d2fba34a4c5e870d8fe077694ff831e3032a004ee077e00603f6");
1974     (* Test for RHBZ#579608, absolute symbolic links. *)
1975     InitISOFS, Always, TestOutput (
1976       [["checksum"; "sha512"; "/abssymlink"]], "5f57d0639bc95081c53afc63a449403883818edc64da48930ad6b1a4fb49be90404686877743fbcd7c99811f3def7df7bc22635c885c6a8cf79c806b43451c1a")],
1977    "compute MD5, SHAx or CRC checksum of file",
1978    "\
1979 This call computes the MD5, SHAx or CRC checksum of the
1980 file named C<path>.
1981
1982 The type of checksum to compute is given by the C<csumtype>
1983 parameter which must have one of the following values:
1984
1985 =over 4
1986
1987 =item C<crc>
1988
1989 Compute the cyclic redundancy check (CRC) specified by POSIX
1990 for the C<cksum> command.
1991
1992 =item C<md5>
1993
1994 Compute the MD5 hash (using the C<md5sum> program).
1995
1996 =item C<sha1>
1997
1998 Compute the SHA1 hash (using the C<sha1sum> program).
1999
2000 =item C<sha224>
2001
2002 Compute the SHA224 hash (using the C<sha224sum> program).
2003
2004 =item C<sha256>
2005
2006 Compute the SHA256 hash (using the C<sha256sum> program).
2007
2008 =item C<sha384>
2009
2010 Compute the SHA384 hash (using the C<sha384sum> program).
2011
2012 =item C<sha512>
2013
2014 Compute the SHA512 hash (using the C<sha512sum> program).
2015
2016 =back
2017
2018 The checksum is returned as a printable string.
2019
2020 To get the checksum for a device, use C<guestfs_checksum_device>.
2021
2022 To get the checksums for many files, use C<guestfs_checksums_out>.");
2023
2024   ("tar_in", (RErr, [FileIn "tarfile"; Pathname "directory"]), 69, [],
2025    [InitBasicFS, Always, TestOutput (
2026       [["tar_in"; "../images/helloworld.tar"; "/"];
2027        ["cat"; "/hello"]], "hello\n")],
2028    "unpack tarfile to directory",
2029    "\
2030 This command uploads and unpacks local file C<tarfile> (an
2031 I<uncompressed> tar file) into C<directory>.
2032
2033 To upload a compressed tarball, use C<guestfs_tgz_in>
2034 or C<guestfs_txz_in>.");
2035
2036   ("tar_out", (RErr, [String "directory"; FileOut "tarfile"]), 70, [],
2037    [],
2038    "pack directory into tarfile",
2039    "\
2040 This command packs the contents of C<directory> and downloads
2041 it to local file C<tarfile>.
2042
2043 To download a compressed tarball, use C<guestfs_tgz_out>
2044 or C<guestfs_txz_out>.");
2045
2046   ("tgz_in", (RErr, [FileIn "tarball"; Pathname "directory"]), 71, [],
2047    [InitBasicFS, Always, TestOutput (
2048       [["tgz_in"; "../images/helloworld.tar.gz"; "/"];
2049        ["cat"; "/hello"]], "hello\n")],
2050    "unpack compressed tarball to directory",
2051    "\
2052 This command uploads and unpacks local file C<tarball> (a
2053 I<gzip compressed> tar file) into C<directory>.
2054
2055 To upload an uncompressed tarball, use C<guestfs_tar_in>.");
2056
2057   ("tgz_out", (RErr, [Pathname "directory"; FileOut "tarball"]), 72, [],
2058    [],
2059    "pack directory into compressed tarball",
2060    "\
2061 This command packs the contents of C<directory> and downloads
2062 it to local file C<tarball>.
2063
2064 To download an uncompressed tarball, use C<guestfs_tar_out>.");
2065
2066   ("mount_ro", (RErr, [Device "device"; String "mountpoint"]), 73, [],
2067    [InitBasicFS, Always, TestLastFail (
2068       [["umount"; "/"];
2069        ["mount_ro"; "/dev/sda1"; "/"];
2070        ["touch"; "/new"]]);
2071     InitBasicFS, Always, TestOutput (
2072       [["write"; "/new"; "data"];
2073        ["umount"; "/"];
2074        ["mount_ro"; "/dev/sda1"; "/"];
2075        ["cat"; "/new"]], "data")],
2076    "mount a guest disk, read-only",
2077    "\
2078 This is the same as the C<guestfs_mount> command, but it
2079 mounts the filesystem with the read-only (I<-o ro>) flag.");
2080
2081   ("mount_options", (RErr, [String "options"; Device "device"; String "mountpoint"]), 74, [],
2082    [],
2083    "mount a guest disk with mount options",
2084    "\
2085 This is the same as the C<guestfs_mount> command, but it
2086 allows you to set the mount options as for the
2087 L<mount(8)> I<-o> flag.
2088
2089 If the C<options> parameter is an empty string, then
2090 no options are passed (all options default to whatever
2091 the filesystem uses).");
2092
2093   ("mount_vfs", (RErr, [String "options"; String "vfstype"; Device "device"; String "mountpoint"]), 75, [],
2094    [],
2095    "mount a guest disk with mount options and vfstype",
2096    "\
2097 This is the same as the C<guestfs_mount> command, but it
2098 allows you to set both the mount options and the vfstype
2099 as for the L<mount(8)> I<-o> and I<-t> flags.");
2100
2101   ("debug", (RString "result", [String "subcmd"; StringList "extraargs"]), 76, [],
2102    [],
2103    "debugging and internals",
2104    "\
2105 The C<guestfs_debug> command exposes some internals of
2106 C<guestfsd> (the guestfs daemon) that runs inside the
2107 qemu subprocess.
2108
2109 There is no comprehensive help for this command.  You have
2110 to look at the file C<daemon/debug.c> in the libguestfs source
2111 to find out what you can do.");
2112
2113   ("lvremove", (RErr, [Device "device"]), 77, [Optional "lvm2"],
2114    [InitEmpty, Always, TestOutputList (
2115       [["part_disk"; "/dev/sda"; "mbr"];
2116        ["pvcreate"; "/dev/sda1"];
2117        ["vgcreate"; "VG"; "/dev/sda1"];
2118        ["lvcreate"; "LV1"; "VG"; "50"];
2119        ["lvcreate"; "LV2"; "VG"; "50"];
2120        ["lvremove"; "/dev/VG/LV1"];
2121        ["lvs"]], ["/dev/VG/LV2"]);
2122     InitEmpty, Always, TestOutputList (
2123       [["part_disk"; "/dev/sda"; "mbr"];
2124        ["pvcreate"; "/dev/sda1"];
2125        ["vgcreate"; "VG"; "/dev/sda1"];
2126        ["lvcreate"; "LV1"; "VG"; "50"];
2127        ["lvcreate"; "LV2"; "VG"; "50"];
2128        ["lvremove"; "/dev/VG"];
2129        ["lvs"]], []);
2130     InitEmpty, Always, TestOutputList (
2131       [["part_disk"; "/dev/sda"; "mbr"];
2132        ["pvcreate"; "/dev/sda1"];
2133        ["vgcreate"; "VG"; "/dev/sda1"];
2134        ["lvcreate"; "LV1"; "VG"; "50"];
2135        ["lvcreate"; "LV2"; "VG"; "50"];
2136        ["lvremove"; "/dev/VG"];
2137        ["vgs"]], ["VG"])],
2138    "remove an LVM logical volume",
2139    "\
2140 Remove an LVM logical volume C<device>, where C<device> is
2141 the path to the LV, such as C</dev/VG/LV>.
2142
2143 You can also remove all LVs in a volume group by specifying
2144 the VG name, C</dev/VG>.");
2145
2146   ("vgremove", (RErr, [String "vgname"]), 78, [Optional "lvm2"],
2147    [InitEmpty, Always, TestOutputList (
2148       [["part_disk"; "/dev/sda"; "mbr"];
2149        ["pvcreate"; "/dev/sda1"];
2150        ["vgcreate"; "VG"; "/dev/sda1"];
2151        ["lvcreate"; "LV1"; "VG"; "50"];
2152        ["lvcreate"; "LV2"; "VG"; "50"];
2153        ["vgremove"; "VG"];
2154        ["lvs"]], []);
2155     InitEmpty, Always, TestOutputList (
2156       [["part_disk"; "/dev/sda"; "mbr"];
2157        ["pvcreate"; "/dev/sda1"];
2158        ["vgcreate"; "VG"; "/dev/sda1"];
2159        ["lvcreate"; "LV1"; "VG"; "50"];
2160        ["lvcreate"; "LV2"; "VG"; "50"];
2161        ["vgremove"; "VG"];
2162        ["vgs"]], [])],
2163    "remove an LVM volume group",
2164    "\
2165 Remove an LVM volume group C<vgname>, (for example C<VG>).
2166
2167 This also forcibly removes all logical volumes in the volume
2168 group (if any).");
2169
2170   ("pvremove", (RErr, [Device "device"]), 79, [Optional "lvm2"],
2171    [InitEmpty, Always, TestOutputListOfDevices (
2172       [["part_disk"; "/dev/sda"; "mbr"];
2173        ["pvcreate"; "/dev/sda1"];
2174        ["vgcreate"; "VG"; "/dev/sda1"];
2175        ["lvcreate"; "LV1"; "VG"; "50"];
2176        ["lvcreate"; "LV2"; "VG"; "50"];
2177        ["vgremove"; "VG"];
2178        ["pvremove"; "/dev/sda1"];
2179        ["lvs"]], []);
2180     InitEmpty, Always, TestOutputListOfDevices (
2181       [["part_disk"; "/dev/sda"; "mbr"];
2182        ["pvcreate"; "/dev/sda1"];
2183        ["vgcreate"; "VG"; "/dev/sda1"];
2184        ["lvcreate"; "LV1"; "VG"; "50"];
2185        ["lvcreate"; "LV2"; "VG"; "50"];
2186        ["vgremove"; "VG"];
2187        ["pvremove"; "/dev/sda1"];
2188        ["vgs"]], []);
2189     InitEmpty, Always, TestOutputListOfDevices (
2190       [["part_disk"; "/dev/sda"; "mbr"];
2191        ["pvcreate"; "/dev/sda1"];
2192        ["vgcreate"; "VG"; "/dev/sda1"];
2193        ["lvcreate"; "LV1"; "VG"; "50"];
2194        ["lvcreate"; "LV2"; "VG"; "50"];
2195        ["vgremove"; "VG"];
2196        ["pvremove"; "/dev/sda1"];
2197        ["pvs"]], [])],
2198    "remove an LVM physical volume",
2199    "\
2200 This wipes a physical volume C<device> so that LVM will no longer
2201 recognise it.
2202
2203 The implementation uses the C<pvremove> command which refuses to
2204 wipe physical volumes that contain any volume groups, so you have
2205 to remove those first.");
2206
2207   ("set_e2label", (RErr, [Device "device"; String "label"]), 80, [],
2208    [InitBasicFS, Always, TestOutput (
2209       [["set_e2label"; "/dev/sda1"; "testlabel"];
2210        ["get_e2label"; "/dev/sda1"]], "testlabel")],
2211    "set the ext2/3/4 filesystem label",
2212    "\
2213 This sets the ext2/3/4 filesystem label of the filesystem on
2214 C<device> to C<label>.  Filesystem labels are limited to
2215 16 characters.
2216
2217 You can use either C<guestfs_tune2fs_l> or C<guestfs_get_e2label>
2218 to return the existing label on a filesystem.");
2219
2220   ("get_e2label", (RString "label", [Device "device"]), 81, [],
2221    [],
2222    "get the ext2/3/4 filesystem label",
2223    "\
2224 This returns the ext2/3/4 filesystem label of the filesystem on
2225 C<device>.");
2226
2227   ("set_e2uuid", (RErr, [Device "device"; String "uuid"]), 82, [],
2228    (let uuid = uuidgen () in
2229     [InitBasicFS, Always, TestOutput (
2230        [["set_e2uuid"; "/dev/sda1"; uuid];
2231         ["get_e2uuid"; "/dev/sda1"]], uuid);
2232      InitBasicFS, Always, TestOutput (
2233        [["set_e2uuid"; "/dev/sda1"; "clear"];
2234         ["get_e2uuid"; "/dev/sda1"]], "");
2235      (* We can't predict what UUIDs will be, so just check the commands run. *)
2236      InitBasicFS, Always, TestRun (
2237        [["set_e2uuid"; "/dev/sda1"; "random"]]);
2238      InitBasicFS, Always, TestRun (
2239        [["set_e2uuid"; "/dev/sda1"; "time"]])]),
2240    "set the ext2/3/4 filesystem UUID",
2241    "\
2242 This sets the ext2/3/4 filesystem UUID of the filesystem on
2243 C<device> to C<uuid>.  The format of the UUID and alternatives
2244 such as C<clear>, C<random> and C<time> are described in the
2245 L<tune2fs(8)> manpage.
2246
2247 You can use either C<guestfs_tune2fs_l> or C<guestfs_get_e2uuid>
2248 to return the existing UUID of a filesystem.");
2249
2250   ("get_e2uuid", (RString "uuid", [Device "device"]), 83, [],
2251    [],
2252    "get the ext2/3/4 filesystem UUID",
2253    "\
2254 This returns the ext2/3/4 filesystem UUID of the filesystem on
2255 C<device>.");
2256
2257   ("fsck", (RInt "status", [String "fstype"; Device "device"]), 84, [FishOutput FishOutputHexadecimal],
2258    [InitBasicFS, Always, TestOutputInt (
2259       [["umount"; "/dev/sda1"];
2260        ["fsck"; "ext2"; "/dev/sda1"]], 0);
2261     InitBasicFS, Always, TestOutputInt (
2262       [["umount"; "/dev/sda1"];
2263        ["zero"; "/dev/sda1"];
2264        ["fsck"; "ext2"; "/dev/sda1"]], 8)],
2265    "run the filesystem checker",
2266    "\
2267 This runs the filesystem checker (fsck) on C<device> which
2268 should have filesystem type C<fstype>.
2269
2270 The returned integer is the status.  See L<fsck(8)> for the
2271 list of status codes from C<fsck>.
2272
2273 Notes:
2274
2275 =over 4
2276
2277 =item *
2278
2279 Multiple status codes can be summed together.
2280
2281 =item *
2282
2283 A non-zero return code can mean \"success\", for example if
2284 errors have been corrected on the filesystem.
2285
2286 =item *
2287
2288 Checking or repairing NTFS volumes is not supported
2289 (by linux-ntfs).
2290
2291 =back
2292
2293 This command is entirely equivalent to running C<fsck -a -t fstype device>.");
2294
2295   ("zero", (RErr, [Device "device"]), 85, [],
2296    [InitBasicFS, Always, TestOutput (
2297       [["umount"; "/dev/sda1"];
2298        ["zero"; "/dev/sda1"];
2299        ["file"; "/dev/sda1"]], "data")],
2300    "write zeroes to the device",
2301    "\
2302 This command writes zeroes over the first few blocks of C<device>.
2303
2304 How many blocks are zeroed isn't specified (but it's I<not> enough
2305 to securely wipe the device).  It should be sufficient to remove
2306 any partition tables, filesystem superblocks and so on.
2307
2308 See also: C<guestfs_zero_device>, C<guestfs_scrub_device>.");
2309
2310   ("grub_install", (RErr, [Pathname "root"; Device "device"]), 86, [],
2311    (* Test disabled because grub-install incompatible with virtio-blk driver.
2312     * See also: https://bugzilla.redhat.com/show_bug.cgi?id=479760
2313     *)
2314    [InitBasicFS, Disabled, TestOutputTrue (
2315       [["grub_install"; "/"; "/dev/sda1"];
2316        ["is_dir"; "/boot"]])],
2317    "install GRUB",
2318    "\
2319 This command installs GRUB (the Grand Unified Bootloader) on
2320 C<device>, with the root directory being C<root>.");
2321
2322   ("cp", (RErr, [Pathname "src"; Pathname "dest"]), 87, [],
2323    [InitBasicFS, Always, TestOutput (
2324       [["write"; "/old"; "file content"];
2325        ["cp"; "/old"; "/new"];
2326        ["cat"; "/new"]], "file content");
2327     InitBasicFS, Always, TestOutputTrue (
2328       [["write"; "/old"; "file content"];
2329        ["cp"; "/old"; "/new"];
2330        ["is_file"; "/old"]]);
2331     InitBasicFS, Always, TestOutput (
2332       [["write"; "/old"; "file content"];
2333        ["mkdir"; "/dir"];
2334        ["cp"; "/old"; "/dir/new"];
2335        ["cat"; "/dir/new"]], "file content")],
2336    "copy a file",
2337    "\
2338 This copies a file from C<src> to C<dest> where C<dest> is
2339 either a destination filename or destination directory.");
2340
2341   ("cp_a", (RErr, [Pathname "src"; Pathname "dest"]), 88, [],
2342    [InitBasicFS, Always, TestOutput (
2343       [["mkdir"; "/olddir"];
2344        ["mkdir"; "/newdir"];
2345        ["write"; "/olddir/file"; "file content"];
2346        ["cp_a"; "/olddir"; "/newdir"];
2347        ["cat"; "/newdir/olddir/file"]], "file content")],
2348    "copy a file or directory recursively",
2349    "\
2350 This copies a file or directory from C<src> to C<dest>
2351 recursively using the C<cp -a> command.");
2352
2353   ("mv", (RErr, [Pathname "src"; Pathname "dest"]), 89, [],
2354    [InitBasicFS, Always, TestOutput (
2355       [["write"; "/old"; "file content"];
2356        ["mv"; "/old"; "/new"];
2357        ["cat"; "/new"]], "file content");
2358     InitBasicFS, Always, TestOutputFalse (
2359       [["write"; "/old"; "file content"];
2360        ["mv"; "/old"; "/new"];
2361        ["is_file"; "/old"]])],
2362    "move a file",
2363    "\
2364 This moves a file from C<src> to C<dest> where C<dest> is
2365 either a destination filename or destination directory.");
2366
2367   ("drop_caches", (RErr, [Int "whattodrop"]), 90, [],
2368    [InitEmpty, Always, TestRun (
2369       [["drop_caches"; "3"]])],
2370    "drop kernel page cache, dentries and inodes",
2371    "\
2372 This instructs the guest kernel to drop its page cache,
2373 and/or dentries and inode caches.  The parameter C<whattodrop>
2374 tells the kernel what precisely to drop, see
2375 L<http://linux-mm.org/Drop_Caches>
2376
2377 Setting C<whattodrop> to 3 should drop everything.
2378
2379 This automatically calls L<sync(2)> before the operation,
2380 so that the maximum guest memory is freed.");
2381
2382   ("dmesg", (RString "kmsgs", []), 91, [],
2383    [InitEmpty, Always, TestRun (
2384       [["dmesg"]])],
2385    "return kernel messages",
2386    "\
2387 This returns the kernel messages (C<dmesg> output) from
2388 the guest kernel.  This is sometimes useful for extended
2389 debugging of problems.
2390
2391 Another way to get the same information is to enable
2392 verbose messages with C<guestfs_set_verbose> or by setting
2393 the environment variable C<LIBGUESTFS_DEBUG=1> before
2394 running the program.");
2395
2396   ("ping_daemon", (RErr, []), 92, [],
2397    [InitEmpty, Always, TestRun (
2398       [["ping_daemon"]])],
2399    "ping the guest daemon",
2400    "\
2401 This is a test probe into the guestfs daemon running inside
2402 the qemu subprocess.  Calling this function checks that the
2403 daemon responds to the ping message, without affecting the daemon
2404 or attached block device(s) in any other way.");
2405
2406   ("equal", (RBool "equality", [Pathname "file1"; Pathname "file2"]), 93, [],
2407    [InitBasicFS, Always, TestOutputTrue (
2408       [["write"; "/file1"; "contents of a file"];
2409        ["cp"; "/file1"; "/file2"];
2410        ["equal"; "/file1"; "/file2"]]);
2411     InitBasicFS, Always, TestOutputFalse (
2412       [["write"; "/file1"; "contents of a file"];
2413        ["write"; "/file2"; "contents of another file"];
2414        ["equal"; "/file1"; "/file2"]]);
2415     InitBasicFS, Always, TestLastFail (
2416       [["equal"; "/file1"; "/file2"]])],
2417    "test if two files have equal contents",
2418    "\
2419 This compares the two files C<file1> and C<file2> and returns
2420 true if their content is exactly equal, or false otherwise.
2421
2422 The external L<cmp(1)> program is used for the comparison.");
2423
2424   ("strings", (RStringList "stringsout", [Pathname "path"]), 94, [ProtocolLimitWarning],
2425    [InitISOFS, Always, TestOutputList (
2426       [["strings"; "/known-5"]], ["abcdefghi"; "jklmnopqr"]);
2427     InitISOFS, Always, TestOutputList (
2428       [["strings"; "/empty"]], []);
2429     (* Test for RHBZ#579608, absolute symbolic links. *)
2430     InitISOFS, Always, TestRun (
2431       [["strings"; "/abssymlink"]])],
2432    "print the printable strings in a file",
2433    "\
2434 This runs the L<strings(1)> command on a file and returns
2435 the list of printable strings found.");
2436
2437   ("strings_e", (RStringList "stringsout", [String "encoding"; Pathname "path"]), 95, [ProtocolLimitWarning],
2438    [InitISOFS, Always, TestOutputList (
2439       [["strings_e"; "b"; "/known-5"]], []);
2440     InitBasicFS, Always, TestOutputList (
2441       [["write"; "/new"; "\000h\000e\000l\000l\000o\000\n\000w\000o\000r\000l\000d\000\n"];
2442        ["strings_e"; "b"; "/new"]], ["hello"; "world"])],
2443    "print the printable strings in a file",
2444    "\
2445 This is like the C<guestfs_strings> command, but allows you to
2446 specify the encoding of strings that are looked for in
2447 the source file C<path>.
2448
2449 Allowed encodings are:
2450
2451 =over 4
2452
2453 =item s
2454
2455 Single 7-bit-byte characters like ASCII and the ASCII-compatible
2456 parts of ISO-8859-X (this is what C<guestfs_strings> uses).
2457
2458 =item S
2459
2460 Single 8-bit-byte characters.
2461
2462 =item b
2463
2464 16-bit big endian strings such as those encoded in
2465 UTF-16BE or UCS-2BE.
2466
2467 =item l (lower case letter L)
2468
2469 16-bit little endian such as UTF-16LE and UCS-2LE.
2470 This is useful for examining binaries in Windows guests.
2471
2472 =item B
2473
2474 32-bit big endian such as UCS-4BE.
2475
2476 =item L
2477
2478 32-bit little endian such as UCS-4LE.
2479
2480 =back
2481
2482 The returned strings are transcoded to UTF-8.");
2483
2484   ("hexdump", (RString "dump", [Pathname "path"]), 96, [ProtocolLimitWarning],
2485    [InitISOFS, Always, TestOutput (
2486       [["hexdump"; "/known-4"]], "00000000  61 62 63 0a 64 65 66 0a  67 68 69                 |abc.def.ghi|\n0000000b\n");
2487     (* Test for RHBZ#501888c2 regression which caused large hexdump
2488      * commands to segfault.
2489      *)
2490     InitISOFS, Always, TestRun (
2491       [["hexdump"; "/100krandom"]]);
2492     (* Test for RHBZ#579608, absolute symbolic links. *)
2493     InitISOFS, Always, TestRun (
2494       [["hexdump"; "/abssymlink"]])],
2495    "dump a file in hexadecimal",
2496    "\
2497 This runs C<hexdump -C> on the given C<path>.  The result is
2498 the human-readable, canonical hex dump of the file.");
2499
2500   ("zerofree", (RErr, [Device "device"]), 97, [Optional "zerofree"],
2501    [InitNone, Always, TestOutput (
2502       [["part_disk"; "/dev/sda"; "mbr"];
2503        ["mkfs"; "ext3"; "/dev/sda1"];
2504        ["mount_options"; ""; "/dev/sda1"; "/"];
2505        ["write"; "/new"; "test file"];
2506        ["umount"; "/dev/sda1"];
2507        ["zerofree"; "/dev/sda1"];
2508        ["mount_options"; ""; "/dev/sda1"; "/"];
2509        ["cat"; "/new"]], "test file")],
2510    "zero unused inodes and disk blocks on ext2/3 filesystem",
2511    "\
2512 This runs the I<zerofree> program on C<device>.  This program
2513 claims to zero unused inodes and disk blocks on an ext2/3
2514 filesystem, thus making it possible to compress the filesystem
2515 more effectively.
2516
2517 You should B<not> run this program if the filesystem is
2518 mounted.
2519
2520 It is possible that using this program can damage the filesystem
2521 or data on the filesystem.");
2522
2523   ("pvresize", (RErr, [Device "device"]), 98, [Optional "lvm2"],
2524    [],
2525    "resize an LVM physical volume",
2526    "\
2527 This resizes (expands or shrinks) an existing LVM physical
2528 volume to match the new size of the underlying device.");
2529
2530   ("sfdisk_N", (RErr, [Device "device"; Int "partnum";
2531                        Int "cyls"; Int "heads"; Int "sectors";
2532                        String "line"]), 99, [DangerWillRobinson],
2533    [],
2534    "modify a single partition on a block device",
2535    "\
2536 This runs L<sfdisk(8)> option to modify just the single
2537 partition C<n> (note: C<n> counts from 1).
2538
2539 For other parameters, see C<guestfs_sfdisk>.  You should usually
2540 pass C<0> for the cyls/heads/sectors parameters.
2541
2542 See also: C<guestfs_part_add>");
2543
2544   ("sfdisk_l", (RString "partitions", [Device "device"]), 100, [],
2545    [],
2546    "display the partition table",
2547    "\
2548 This displays the partition table on C<device>, in the
2549 human-readable output of the L<sfdisk(8)> command.  It is
2550 not intended to be parsed.
2551
2552 See also: C<guestfs_part_list>");
2553
2554   ("sfdisk_kernel_geometry", (RString "partitions", [Device "device"]), 101, [],
2555    [],
2556    "display the kernel geometry",
2557    "\
2558 This displays the kernel's idea of the geometry of C<device>.
2559
2560 The result is in human-readable format, and not designed to
2561 be parsed.");
2562
2563   ("sfdisk_disk_geometry", (RString "partitions", [Device "device"]), 102, [],
2564    [],
2565    "display the disk geometry from the partition table",
2566    "\
2567 This displays the disk geometry of C<device> read from the
2568 partition table.  Especially in the case where the underlying
2569 block device has been resized, this can be different from the
2570 kernel's idea of the geometry (see C<guestfs_sfdisk_kernel_geometry>).
2571
2572 The result is in human-readable format, and not designed to
2573 be parsed.");
2574
2575   ("vg_activate_all", (RErr, [Bool "activate"]), 103, [Optional "lvm2"],
2576    [],
2577    "activate or deactivate all volume groups",
2578    "\
2579 This command activates or (if C<activate> is false) deactivates
2580 all logical volumes in all volume groups.
2581 If activated, then they are made known to the
2582 kernel, ie. they appear as C</dev/mapper> devices.  If deactivated,
2583 then those devices disappear.
2584
2585 This command is the same as running C<vgchange -a y|n>");
2586
2587   ("vg_activate", (RErr, [Bool "activate"; StringList "volgroups"]), 104, [Optional "lvm2"],
2588    [],
2589    "activate or deactivate some volume groups",
2590    "\
2591 This command activates or (if C<activate> is false) deactivates
2592 all logical volumes in the listed volume groups C<volgroups>.
2593 If activated, then they are made known to the
2594 kernel, ie. they appear as C</dev/mapper> devices.  If deactivated,
2595 then those devices disappear.
2596
2597 This command is the same as running C<vgchange -a y|n volgroups...>
2598
2599 Note that if C<volgroups> is an empty list then B<all> volume groups
2600 are activated or deactivated.");
2601
2602   ("lvresize", (RErr, [Device "device"; Int "mbytes"]), 105, [Optional "lvm2"],
2603    [InitNone, Always, TestOutput (
2604       [["part_disk"; "/dev/sda"; "mbr"];
2605        ["pvcreate"; "/dev/sda1"];
2606        ["vgcreate"; "VG"; "/dev/sda1"];
2607        ["lvcreate"; "LV"; "VG"; "10"];
2608        ["mkfs"; "ext2"; "/dev/VG/LV"];
2609        ["mount_options"; ""; "/dev/VG/LV"; "/"];
2610        ["write"; "/new"; "test content"];
2611        ["umount"; "/"];
2612        ["lvresize"; "/dev/VG/LV"; "20"];
2613        ["e2fsck_f"; "/dev/VG/LV"];
2614        ["resize2fs"; "/dev/VG/LV"];
2615        ["mount_options"; ""; "/dev/VG/LV"; "/"];
2616        ["cat"; "/new"]], "test content");
2617     InitNone, Always, TestRun (
2618       (* Make an LV smaller to test RHBZ#587484. *)
2619       [["part_disk"; "/dev/sda"; "mbr"];
2620        ["pvcreate"; "/dev/sda1"];
2621        ["vgcreate"; "VG"; "/dev/sda1"];
2622        ["lvcreate"; "LV"; "VG"; "20"];
2623        ["lvresize"; "/dev/VG/LV"; "10"]])],
2624    "resize an LVM logical volume",
2625    "\
2626 This resizes (expands or shrinks) an existing LVM logical
2627 volume to C<mbytes>.  When reducing, data in the reduced part
2628 is lost.");
2629
2630   ("resize2fs", (RErr, [Device "device"]), 106, [],
2631    [], (* lvresize tests this *)
2632    "resize an ext2/ext3 filesystem",
2633    "\
2634 This resizes an ext2 or ext3 filesystem to match the size of
2635 the underlying device.
2636
2637 I<Note:> It is sometimes required that you run C<guestfs_e2fsck_f>
2638 on the C<device> before calling this command.  For unknown reasons
2639 C<resize2fs> sometimes gives an error about this and sometimes not.
2640 In any case, it is always safe to call C<guestfs_e2fsck_f> before
2641 calling this function.");
2642
2643   ("find", (RStringList "names", [Pathname "directory"]), 107, [ProtocolLimitWarning],
2644    [InitBasicFS, Always, TestOutputList (
2645       [["find"; "/"]], ["lost+found"]);
2646     InitBasicFS, Always, TestOutputList (
2647       [["touch"; "/a"];
2648        ["mkdir"; "/b"];
2649        ["touch"; "/b/c"];
2650        ["find"; "/"]], ["a"; "b"; "b/c"; "lost+found"]);
2651     InitBasicFS, Always, TestOutputList (
2652       [["mkdir_p"; "/a/b/c"];
2653        ["touch"; "/a/b/c/d"];
2654        ["find"; "/a/b/"]], ["c"; "c/d"])],
2655    "find all files and directories",
2656    "\
2657 This command lists out all files and directories, recursively,
2658 starting at C<directory>.  It is essentially equivalent to
2659 running the shell command C<find directory -print> but some
2660 post-processing happens on the output, described below.
2661
2662 This returns a list of strings I<without any prefix>.  Thus
2663 if the directory structure was:
2664
2665  /tmp/a
2666  /tmp/b
2667  /tmp/c/d
2668
2669 then the returned list from C<guestfs_find> C</tmp> would be
2670 4 elements:
2671
2672  a
2673  b
2674  c
2675  c/d
2676
2677 If C<directory> is not a directory, then this command returns
2678 an error.
2679
2680 The returned list is sorted.
2681
2682 See also C<guestfs_find0>.");
2683
2684   ("e2fsck_f", (RErr, [Device "device"]), 108, [],
2685    [], (* lvresize tests this *)
2686    "check an ext2/ext3 filesystem",
2687    "\
2688 This runs C<e2fsck -p -f device>, ie. runs the ext2/ext3
2689 filesystem checker on C<device>, noninteractively (C<-p>),
2690 even if the filesystem appears to be clean (C<-f>).
2691
2692 This command is only needed because of C<guestfs_resize2fs>
2693 (q.v.).  Normally you should use C<guestfs_fsck>.");
2694
2695   ("sleep", (RErr, [Int "secs"]), 109, [],
2696    [InitNone, Always, TestRun (
2697       [["sleep"; "1"]])],
2698    "sleep for some seconds",
2699    "\
2700 Sleep for C<secs> seconds.");
2701
2702   ("ntfs_3g_probe", (RInt "status", [Bool "rw"; Device "device"]), 110, [Optional "ntfs3g"],
2703    [InitNone, Always, TestOutputInt (
2704       [["part_disk"; "/dev/sda"; "mbr"];
2705        ["mkfs"; "ntfs"; "/dev/sda1"];
2706        ["ntfs_3g_probe"; "true"; "/dev/sda1"]], 0);
2707     InitNone, Always, TestOutputInt (
2708       [["part_disk"; "/dev/sda"; "mbr"];
2709        ["mkfs"; "ext2"; "/dev/sda1"];
2710        ["ntfs_3g_probe"; "true"; "/dev/sda1"]], 12)],
2711    "probe NTFS volume",
2712    "\
2713 This command runs the L<ntfs-3g.probe(8)> command which probes
2714 an NTFS C<device> for mountability.  (Not all NTFS volumes can
2715 be mounted read-write, and some cannot be mounted at all).
2716
2717 C<rw> is a boolean flag.  Set it to true if you want to test
2718 if the volume can be mounted read-write.  Set it to false if
2719 you want to test if the volume can be mounted read-only.
2720
2721 The return value is an integer which C<0> if the operation
2722 would succeed, or some non-zero value documented in the
2723 L<ntfs-3g.probe(8)> manual page.");
2724
2725   ("sh", (RString "output", [String "command"]), 111, [],
2726    [], (* XXX needs tests *)
2727    "run a command via the shell",
2728    "\
2729 This call runs a command from the guest filesystem via the
2730 guest's C</bin/sh>.
2731
2732 This is like C<guestfs_command>, but passes the command to:
2733
2734  /bin/sh -c \"command\"
2735
2736 Depending on the guest's shell, this usually results in
2737 wildcards being expanded, shell expressions being interpolated
2738 and so on.
2739
2740 All the provisos about C<guestfs_command> apply to this call.");
2741
2742   ("sh_lines", (RStringList "lines", [String "command"]), 112, [],
2743    [], (* XXX needs tests *)
2744    "run a command via the shell returning lines",
2745    "\
2746 This is the same as C<guestfs_sh>, but splits the result
2747 into a list of lines.
2748
2749 See also: C<guestfs_command_lines>");
2750
2751   ("glob_expand", (RStringList "paths", [Pathname "pattern"]), 113, [],
2752    (* Use Pathname here, and hence ABS_PATH (pattern,... in generated
2753     * code in stubs.c, since all valid glob patterns must start with "/".
2754     * There is no concept of "cwd" in libguestfs, hence no "."-relative names.
2755     *)
2756    [InitBasicFS, Always, TestOutputList (
2757       [["mkdir_p"; "/a/b/c"];
2758        ["touch"; "/a/b/c/d"];
2759        ["touch"; "/a/b/c/e"];
2760        ["glob_expand"; "/a/b/c/*"]], ["/a/b/c/d"; "/a/b/c/e"]);
2761     InitBasicFS, Always, TestOutputList (
2762       [["mkdir_p"; "/a/b/c"];
2763        ["touch"; "/a/b/c/d"];
2764        ["touch"; "/a/b/c/e"];
2765        ["glob_expand"; "/a/*/c/*"]], ["/a/b/c/d"; "/a/b/c/e"]);
2766     InitBasicFS, Always, TestOutputList (
2767       [["mkdir_p"; "/a/b/c"];
2768        ["touch"; "/a/b/c/d"];
2769        ["touch"; "/a/b/c/e"];
2770        ["glob_expand"; "/a/*/x/*"]], [])],
2771    "expand a wildcard path",
2772    "\
2773 This command searches for all the pathnames matching
2774 C<pattern> according to the wildcard expansion rules
2775 used by the shell.
2776
2777 If no paths match, then this returns an empty list
2778 (note: not an error).
2779
2780 It is just a wrapper around the C L<glob(3)> function
2781 with flags C<GLOB_MARK|GLOB_BRACE>.
2782 See that manual page for more details.");
2783
2784   ("scrub_device", (RErr, [Device "device"]), 114, [DangerWillRobinson; Optional "scrub"],
2785    [InitNone, Always, TestRun ( (* use /dev/sdc because it's smaller *)
2786       [["scrub_device"; "/dev/sdc"]])],
2787    "scrub (securely wipe) a device",
2788    "\
2789 This command writes patterns over C<device> to make data retrieval
2790 more difficult.
2791
2792 It is an interface to the L<scrub(1)> program.  See that
2793 manual page for more details.");
2794
2795   ("scrub_file", (RErr, [Pathname "file"]), 115, [Optional "scrub"],
2796    [InitBasicFS, Always, TestRun (
2797       [["write"; "/file"; "content"];
2798        ["scrub_file"; "/file"]])],
2799    "scrub (securely wipe) a file",
2800    "\
2801 This command writes patterns over a file to make data retrieval
2802 more difficult.
2803
2804 The file is I<removed> after scrubbing.
2805
2806 It is an interface to the L<scrub(1)> program.  See that
2807 manual page for more details.");
2808
2809   ("scrub_freespace", (RErr, [Pathname "dir"]), 116, [Optional "scrub"],
2810    [], (* XXX needs testing *)
2811    "scrub (securely wipe) free space",
2812    "\
2813 This command creates the directory C<dir> and then fills it
2814 with files until the filesystem is full, and scrubs the files
2815 as for C<guestfs_scrub_file>, and deletes them.
2816 The intention is to scrub any free space on the partition
2817 containing C<dir>.
2818
2819 It is an interface to the L<scrub(1)> program.  See that
2820 manual page for more details.");
2821
2822   ("mkdtemp", (RString "dir", [Pathname "template"]), 117, [],
2823    [InitBasicFS, Always, TestRun (
2824       [["mkdir"; "/tmp"];
2825        ["mkdtemp"; "/tmp/tmpXXXXXX"]])],
2826    "create a temporary directory",
2827    "\
2828 This command creates a temporary directory.  The
2829 C<template> parameter should be a full pathname for the
2830 temporary directory name with the final six characters being
2831 \"XXXXXX\".
2832
2833 For example: \"/tmp/myprogXXXXXX\" or \"/Temp/myprogXXXXXX\",
2834 the second one being suitable for Windows filesystems.
2835
2836 The name of the temporary directory that was created
2837 is returned.
2838
2839 The temporary directory is created with mode 0700
2840 and is owned by root.
2841
2842 The caller is responsible for deleting the temporary
2843 directory and its contents after use.
2844
2845 See also: L<mkdtemp(3)>");
2846
2847   ("wc_l", (RInt "lines", [Pathname "path"]), 118, [],
2848    [InitISOFS, Always, TestOutputInt (
2849       [["wc_l"; "/10klines"]], 10000);
2850     (* Test for RHBZ#579608, absolute symbolic links. *)
2851     InitISOFS, Always, TestOutputInt (
2852       [["wc_l"; "/abssymlink"]], 10000)],
2853    "count lines in a file",
2854    "\
2855 This command counts the lines in a file, using the
2856 C<wc -l> external command.");
2857
2858   ("wc_w", (RInt "words", [Pathname "path"]), 119, [],
2859    [InitISOFS, Always, TestOutputInt (
2860       [["wc_w"; "/10klines"]], 10000)],
2861    "count words in a file",
2862    "\
2863 This command counts the words in a file, using the
2864 C<wc -w> external command.");
2865
2866   ("wc_c", (RInt "chars", [Pathname "path"]), 120, [],
2867    [InitISOFS, Always, TestOutputInt (
2868       [["wc_c"; "/100kallspaces"]], 102400)],
2869    "count characters in a file",
2870    "\
2871 This command counts the characters in a file, using the
2872 C<wc -c> external command.");
2873
2874   ("head", (RStringList "lines", [Pathname "path"]), 121, [ProtocolLimitWarning],
2875    [InitISOFS, Always, TestOutputList (
2876       [["head"; "/10klines"]], ["0abcdefghijklmnopqrstuvwxyz";"1abcdefghijklmnopqrstuvwxyz";"2abcdefghijklmnopqrstuvwxyz";"3abcdefghijklmnopqrstuvwxyz";"4abcdefghijklmnopqrstuvwxyz";"5abcdefghijklmnopqrstuvwxyz";"6abcdefghijklmnopqrstuvwxyz";"7abcdefghijklmnopqrstuvwxyz";"8abcdefghijklmnopqrstuvwxyz";"9abcdefghijklmnopqrstuvwxyz"]);
2877     (* Test for RHBZ#579608, absolute symbolic links. *)
2878     InitISOFS, Always, TestOutputList (
2879       [["head"; "/abssymlink"]], ["0abcdefghijklmnopqrstuvwxyz";"1abcdefghijklmnopqrstuvwxyz";"2abcdefghijklmnopqrstuvwxyz";"3abcdefghijklmnopqrstuvwxyz";"4abcdefghijklmnopqrstuvwxyz";"5abcdefghijklmnopqrstuvwxyz";"6abcdefghijklmnopqrstuvwxyz";"7abcdefghijklmnopqrstuvwxyz";"8abcdefghijklmnopqrstuvwxyz";"9abcdefghijklmnopqrstuvwxyz"])],
2880    "return first 10 lines of a file",
2881    "\
2882 This command returns up to the first 10 lines of a file as
2883 a list of strings.");
2884
2885   ("head_n", (RStringList "lines", [Int "nrlines"; Pathname "path"]), 122, [ProtocolLimitWarning],
2886    [InitISOFS, Always, TestOutputList (
2887       [["head_n"; "3"; "/10klines"]], ["0abcdefghijklmnopqrstuvwxyz";"1abcdefghijklmnopqrstuvwxyz";"2abcdefghijklmnopqrstuvwxyz"]);
2888     InitISOFS, Always, TestOutputList (
2889       [["head_n"; "-9997"; "/10klines"]], ["0abcdefghijklmnopqrstuvwxyz";"1abcdefghijklmnopqrstuvwxyz";"2abcdefghijklmnopqrstuvwxyz"]);
2890     InitISOFS, Always, TestOutputList (
2891       [["head_n"; "0"; "/10klines"]], [])],
2892    "return first N lines of a file",
2893    "\
2894 If the parameter C<nrlines> is a positive number, this returns the first
2895 C<nrlines> lines of the file C<path>.
2896
2897 If the parameter C<nrlines> is a negative number, this returns lines
2898 from the file C<path>, excluding the last C<nrlines> lines.
2899
2900 If the parameter C<nrlines> is zero, this returns an empty list.");
2901
2902   ("tail", (RStringList "lines", [Pathname "path"]), 123, [ProtocolLimitWarning],
2903    [InitISOFS, Always, TestOutputList (
2904       [["tail"; "/10klines"]], ["9990abcdefghijklmnopqrstuvwxyz";"9991abcdefghijklmnopqrstuvwxyz";"9992abcdefghijklmnopqrstuvwxyz";"9993abcdefghijklmnopqrstuvwxyz";"9994abcdefghijklmnopqrstuvwxyz";"9995abcdefghijklmnopqrstuvwxyz";"9996abcdefghijklmnopqrstuvwxyz";"9997abcdefghijklmnopqrstuvwxyz";"9998abcdefghijklmnopqrstuvwxyz";"9999abcdefghijklmnopqrstuvwxyz"])],
2905    "return last 10 lines of a file",
2906    "\
2907 This command returns up to the last 10 lines of a file as
2908 a list of strings.");
2909
2910   ("tail_n", (RStringList "lines", [Int "nrlines"; Pathname "path"]), 124, [ProtocolLimitWarning],
2911    [InitISOFS, Always, TestOutputList (
2912       [["tail_n"; "3"; "/10klines"]], ["9997abcdefghijklmnopqrstuvwxyz";"9998abcdefghijklmnopqrstuvwxyz";"9999abcdefghijklmnopqrstuvwxyz"]);
2913     InitISOFS, Always, TestOutputList (
2914       [["tail_n"; "-9998"; "/10klines"]], ["9997abcdefghijklmnopqrstuvwxyz";"9998abcdefghijklmnopqrstuvwxyz";"9999abcdefghijklmnopqrstuvwxyz"]);
2915     InitISOFS, Always, TestOutputList (
2916       [["tail_n"; "0"; "/10klines"]], [])],
2917    "return last N lines of a file",
2918    "\
2919 If the parameter C<nrlines> is a positive number, this returns the last
2920 C<nrlines> lines of the file C<path>.
2921
2922 If the parameter C<nrlines> is a negative number, this returns lines
2923 from the file C<path>, starting with the C<-nrlines>th line.
2924
2925 If the parameter C<nrlines> is zero, this returns an empty list.");
2926
2927   ("df", (RString "output", []), 125, [],
2928    [], (* XXX Tricky to test because it depends on the exact format
2929         * of the 'df' command and other imponderables.
2930         *)
2931    "report file system disk space usage",
2932    "\
2933 This command runs the C<df> command to report disk space used.
2934
2935 This command is mostly useful for interactive sessions.  It
2936 is I<not> intended that you try to parse the output string.
2937 Use C<statvfs> from programs.");
2938
2939   ("df_h", (RString "output", []), 126, [],
2940    [], (* XXX Tricky to test because it depends on the exact format
2941         * of the 'df' command and other imponderables.
2942         *)
2943    "report file system disk space usage (human readable)",
2944    "\
2945 This command runs the C<df -h> command to report disk space used
2946 in human-readable format.
2947
2948 This command is mostly useful for interactive sessions.  It
2949 is I<not> intended that you try to parse the output string.
2950 Use C<statvfs> from programs.");
2951
2952   ("du", (RInt64 "sizekb", [Pathname "path"]), 127, [],
2953    [InitISOFS, Always, TestOutputInt (
2954       [["du"; "/directory"]], 2 (* ISO fs blocksize is 2K *))],
2955    "estimate file space usage",
2956    "\
2957 This command runs the C<du -s> command to estimate file space
2958 usage for C<path>.
2959
2960 C<path> can be a file or a directory.  If C<path> is a directory
2961 then the estimate includes the contents of the directory and all
2962 subdirectories (recursively).
2963
2964 The result is the estimated size in I<kilobytes>
2965 (ie. units of 1024 bytes).");
2966
2967   ("initrd_list", (RStringList "filenames", [Pathname "path"]), 128, [],
2968    [InitISOFS, Always, TestOutputList (
2969       [["initrd_list"; "/initrd"]], ["empty";"known-1";"known-2";"known-3";"known-4"; "known-5"])],
2970    "list files in an initrd",
2971    "\
2972 This command lists out files contained in an initrd.
2973
2974 The files are listed without any initial C</> character.  The
2975 files are listed in the order they appear (not necessarily
2976 alphabetical).  Directory names are listed as separate items.
2977
2978 Old Linux kernels (2.4 and earlier) used a compressed ext2
2979 filesystem as initrd.  We I<only> support the newer initramfs
2980 format (compressed cpio files).");
2981
2982   ("mount_loop", (RErr, [Pathname "file"; Pathname "mountpoint"]), 129, [],
2983    [],
2984    "mount a file using the loop device",
2985    "\
2986 This command lets you mount C<file> (a filesystem image
2987 in a file) on a mount point.  It is entirely equivalent to
2988 the command C<mount -o loop file mountpoint>.");
2989
2990   ("mkswap", (RErr, [Device "device"]), 130, [],
2991    [InitEmpty, Always, TestRun (
2992       [["part_disk"; "/dev/sda"; "mbr"];
2993        ["mkswap"; "/dev/sda1"]])],
2994    "create a swap partition",
2995    "\
2996 Create a swap partition on C<device>.");
2997
2998   ("mkswap_L", (RErr, [String "label"; Device "device"]), 131, [],
2999    [InitEmpty, Always, TestRun (
3000       [["part_disk"; "/dev/sda"; "mbr"];
3001        ["mkswap_L"; "hello"; "/dev/sda1"]])],
3002    "create a swap partition with a label",
3003    "\
3004 Create a swap partition on C<device> with label C<label>.
3005
3006 Note that you cannot attach a swap label to a block device
3007 (eg. C</dev/sda>), just to a partition.  This appears to be
3008 a limitation of the kernel or swap tools.");
3009
3010   ("mkswap_U", (RErr, [String "uuid"; Device "device"]), 132, [Optional "linuxfsuuid"],
3011    (let uuid = uuidgen () in
3012     [InitEmpty, Always, TestRun (
3013        [["part_disk"; "/dev/sda"; "mbr"];
3014         ["mkswap_U"; uuid; "/dev/sda1"]])]),
3015    "create a swap partition with an explicit UUID",
3016    "\
3017 Create a swap partition on C<device> with UUID C<uuid>.");
3018
3019   ("mknod", (RErr, [Int "mode"; Int "devmajor"; Int "devminor"; Pathname "path"]), 133, [Optional "mknod"],
3020    [InitBasicFS, Always, TestOutputStruct (
3021       [["mknod"; "0o10777"; "0"; "0"; "/node"];
3022        (* NB: default umask 022 means 0777 -> 0755 in these tests *)
3023        ["stat"; "/node"]], [CompareWithInt ("mode", 0o10755)]);
3024     InitBasicFS, Always, TestOutputStruct (
3025       [["mknod"; "0o60777"; "66"; "99"; "/node"];
3026        ["stat"; "/node"]], [CompareWithInt ("mode", 0o60755)])],
3027    "make block, character or FIFO devices",
3028    "\
3029 This call creates block or character special devices, or
3030 named pipes (FIFOs).
3031
3032 The C<mode> parameter should be the mode, using the standard
3033 constants.  C<devmajor> and C<devminor> are the
3034 device major and minor numbers, only used when creating block
3035 and character special devices.
3036
3037 Note that, just like L<mknod(2)>, the mode must be bitwise
3038 OR'd with S_IFBLK, S_IFCHR, S_IFIFO or S_IFSOCK (otherwise this call
3039 just creates a regular file).  These constants are
3040 available in the standard Linux header files, or you can use
3041 C<guestfs_mknod_b>, C<guestfs_mknod_c> or C<guestfs_mkfifo>
3042 which are wrappers around this command which bitwise OR
3043 in the appropriate constant for you.
3044
3045 The mode actually set is affected by the umask.");
3046
3047   ("mkfifo", (RErr, [Int "mode"; Pathname "path"]), 134, [Optional "mknod"],
3048    [InitBasicFS, Always, TestOutputStruct (
3049       [["mkfifo"; "0o777"; "/node"];
3050        ["stat"; "/node"]], [CompareWithInt ("mode", 0o10755)])],
3051    "make FIFO (named pipe)",
3052    "\
3053 This call creates a FIFO (named pipe) called C<path> with
3054 mode C<mode>.  It is just a convenient wrapper around
3055 C<guestfs_mknod>.
3056
3057 The mode actually set is affected by the umask.");
3058
3059   ("mknod_b", (RErr, [Int "mode"; Int "devmajor"; Int "devminor"; Pathname "path"]), 135, [Optional "mknod"],
3060    [InitBasicFS, Always, TestOutputStruct (
3061       [["mknod_b"; "0o777"; "99"; "66"; "/node"];
3062        ["stat"; "/node"]], [CompareWithInt ("mode", 0o60755)])],
3063    "make block device node",
3064    "\
3065 This call creates a block device node called C<path> with
3066 mode C<mode> and device major/minor C<devmajor> and C<devminor>.
3067 It is just a convenient wrapper around C<guestfs_mknod>.
3068
3069 The mode actually set is affected by the umask.");
3070
3071   ("mknod_c", (RErr, [Int "mode"; Int "devmajor"; Int "devminor"; Pathname "path"]), 136, [Optional "mknod"],
3072    [InitBasicFS, Always, TestOutputStruct (
3073       [["mknod_c"; "0o777"; "99"; "66"; "/node"];
3074        ["stat"; "/node"]], [CompareWithInt ("mode", 0o20755)])],
3075    "make char device node",
3076    "\
3077 This call creates a char device node called C<path> with
3078 mode C<mode> and device major/minor C<devmajor> and C<devminor>.
3079 It is just a convenient wrapper around C<guestfs_mknod>.
3080
3081 The mode actually set is affected by the umask.");
3082
3083   ("umask", (RInt "oldmask", [Int "mask"]), 137, [FishOutput FishOutputOctal],
3084    [InitEmpty, Always, TestOutputInt (
3085       [["umask"; "0o22"]], 0o22)],
3086    "set file mode creation mask (umask)",
3087    "\
3088 This function sets the mask used for creating new files and
3089 device nodes to C<mask & 0777>.
3090
3091 Typical umask values would be C<022> which creates new files
3092 with permissions like \"-rw-r--r--\" or \"-rwxr-xr-x\", and
3093 C<002> which creates new files with permissions like
3094 \"-rw-rw-r--\" or \"-rwxrwxr-x\".
3095
3096 The default umask is C<022>.  This is important because it
3097 means that directories and device nodes will be created with
3098 C<0644> or C<0755> mode even if you specify C<0777>.
3099
3100 See also C<guestfs_get_umask>,
3101 L<umask(2)>, C<guestfs_mknod>, C<guestfs_mkdir>.
3102
3103 This call returns the previous umask.");
3104
3105   ("readdir", (RStructList ("entries", "dirent"), [Pathname "dir"]), 138, [],
3106    [],
3107    "read directories entries",
3108    "\
3109 This returns the list of directory entries in directory C<dir>.
3110
3111 All entries in the directory are returned, including C<.> and
3112 C<..>.  The entries are I<not> sorted, but returned in the same
3113 order as the underlying filesystem.
3114
3115 Also this call returns basic file type information about each
3116 file.  The C<ftyp> field will contain one of the following characters:
3117
3118 =over 4
3119
3120 =item 'b'
3121
3122 Block special
3123
3124 =item 'c'
3125
3126 Char special
3127
3128 =item 'd'
3129
3130 Directory
3131
3132 =item 'f'
3133
3134 FIFO (named pipe)
3135
3136 =item 'l'
3137
3138 Symbolic link
3139
3140 =item 'r'
3141
3142 Regular file
3143
3144 =item 's'
3145
3146 Socket
3147
3148 =item 'u'
3149
3150 Unknown file type
3151
3152 =item '?'
3153
3154 The L<readdir(3)> returned a C<d_type> field with an
3155 unexpected value
3156
3157 =back
3158
3159 This function is primarily intended for use by programs.  To
3160 get a simple list of names, use C<guestfs_ls>.  To get a printable
3161 directory for human consumption, use C<guestfs_ll>.");
3162
3163   ("sfdiskM", (RErr, [Device "device"; StringList "lines"]), 139, [DangerWillRobinson],
3164    [],
3165    "create partitions on a block device",
3166    "\
3167 This is a simplified interface to the C<guestfs_sfdisk>
3168 command, where partition sizes are specified in megabytes
3169 only (rounded to the nearest cylinder) and you don't need
3170 to specify the cyls, heads and sectors parameters which
3171 were rarely if ever used anyway.
3172
3173 See also: C<guestfs_sfdisk>, the L<sfdisk(8)> manpage
3174 and C<guestfs_part_disk>");
3175
3176   ("zfile", (RString "description", [String "meth"; Pathname "path"]), 140, [DeprecatedBy "file"],
3177    [],
3178    "determine file type inside a compressed file",
3179    "\
3180 This command runs C<file> after first decompressing C<path>
3181 using C<method>.
3182
3183 C<method> must be one of C<gzip>, C<compress> or C<bzip2>.
3184
3185 Since 1.0.63, use C<guestfs_file> instead which can now
3186 process compressed files.");
3187
3188   ("getxattrs", (RStructList ("xattrs", "xattr"), [Pathname "path"]), 141, [Optional "linuxxattrs"],
3189    [],
3190    "list extended attributes of a file or directory",
3191    "\
3192 This call lists the extended attributes of the file or directory
3193 C<path>.
3194
3195 At the system call level, this is a combination of the
3196 L<listxattr(2)> and L<getxattr(2)> calls.
3197
3198 See also: C<guestfs_lgetxattrs>, L<attr(5)>.");
3199
3200   ("lgetxattrs", (RStructList ("xattrs", "xattr"), [Pathname "path"]), 142, [Optional "linuxxattrs"],
3201    [],
3202    "list extended attributes of a file or directory",
3203    "\
3204 This is the same as C<guestfs_getxattrs>, but if C<path>
3205 is a symbolic link, then it returns the extended attributes
3206 of the link itself.");
3207
3208   ("setxattr", (RErr, [String "xattr";
3209                        String "val"; Int "vallen"; (* will be BufferIn *)
3210                        Pathname "path"]), 143, [Optional "linuxxattrs"],
3211    [],
3212    "set extended attribute of a file or directory",
3213    "\
3214 This call sets the extended attribute named C<xattr>
3215 of the file C<path> to the value C<val> (of length C<vallen>).
3216 The value is arbitrary 8 bit data.
3217
3218 See also: C<guestfs_lsetxattr>, L<attr(5)>.");
3219
3220   ("lsetxattr", (RErr, [String "xattr";
3221                         String "val"; Int "vallen"; (* will be BufferIn *)
3222                         Pathname "path"]), 144, [Optional "linuxxattrs"],
3223    [],
3224    "set extended attribute of a file or directory",
3225    "\
3226 This is the same as C<guestfs_setxattr>, but if C<path>
3227 is a symbolic link, then it sets an extended attribute
3228 of the link itself.");
3229
3230   ("removexattr", (RErr, [String "xattr"; Pathname "path"]), 145, [Optional "linuxxattrs"],
3231    [],
3232    "remove extended attribute of a file or directory",
3233    "\
3234 This call removes the extended attribute named C<xattr>
3235 of the file C<path>.
3236
3237 See also: C<guestfs_lremovexattr>, L<attr(5)>.");
3238
3239   ("lremovexattr", (RErr, [String "xattr"; Pathname "path"]), 146, [Optional "linuxxattrs"],
3240    [],
3241    "remove extended attribute of a file or directory",
3242    "\
3243 This is the same as C<guestfs_removexattr>, but if C<path>
3244 is a symbolic link, then it removes an extended attribute
3245 of the link itself.");
3246
3247   ("mountpoints", (RHashtable "mps", []), 147, [],
3248    [],
3249    "show mountpoints",
3250    "\
3251 This call is similar to C<guestfs_mounts>.  That call returns
3252 a list of devices.  This one returns a hash table (map) of
3253 device name to directory where the device is mounted.");
3254
3255   ("mkmountpoint", (RErr, [String "exemptpath"]), 148, [],
3256    (* This is a special case: while you would expect a parameter
3257     * of type "Pathname", that doesn't work, because it implies
3258     * NEED_ROOT in the generated calling code in stubs.c, and
3259     * this function cannot use NEED_ROOT.
3260     *)
3261    [],
3262    "create a mountpoint",
3263    "\
3264 C<guestfs_mkmountpoint> and C<guestfs_rmmountpoint> are
3265 specialized calls that can be used to create extra mountpoints
3266 before mounting the first filesystem.
3267
3268 These calls are I<only> necessary in some very limited circumstances,
3269 mainly the case where you want to mount a mix of unrelated and/or
3270 read-only filesystems together.
3271
3272 For example, live CDs often contain a \"Russian doll\" nest of
3273 filesystems, an ISO outer layer, with a squashfs image inside, with
3274 an ext2/3 image inside that.  You can unpack this as follows
3275 in guestfish:
3276
3277  add-ro Fedora-11-i686-Live.iso
3278  run
3279  mkmountpoint /cd
3280  mkmountpoint /squash
3281  mkmountpoint /ext3
3282  mount /dev/sda /cd
3283  mount-loop /cd/LiveOS/squashfs.img /squash
3284  mount-loop /squash/LiveOS/ext3fs.img /ext3
3285
3286 The inner filesystem is now unpacked under the /ext3 mountpoint.");
3287
3288   ("rmmountpoint", (RErr, [String "exemptpath"]), 149, [],
3289    [],
3290    "remove a mountpoint",
3291    "\
3292 This calls removes a mountpoint that was previously created
3293 with C<guestfs_mkmountpoint>.  See C<guestfs_mkmountpoint>
3294 for full details.");
3295
3296   ("read_file", (RBufferOut "content", [Pathname "path"]), 150, [ProtocolLimitWarning],
3297    [InitISOFS, Always, TestOutputBuffer (
3298       [["read_file"; "/known-4"]], "abc\ndef\nghi");
3299     (* Test various near large, large and too large files (RHBZ#589039). *)
3300     InitBasicFS, Always, TestLastFail (
3301       [["touch"; "/a"];
3302        ["truncate_size"; "/a"; "4194303"]; (* GUESTFS_MESSAGE_MAX - 1 *)
3303        ["read_file"; "/a"]]);
3304     InitBasicFS, Always, TestLastFail (
3305       [["touch"; "/a"];
3306        ["truncate_size"; "/a"; "4194304"]; (* GUESTFS_MESSAGE_MAX *)
3307        ["read_file"; "/a"]]);
3308     InitBasicFS, Always, TestLastFail (
3309       [["touch"; "/a"];
3310        ["truncate_size"; "/a"; "41943040"]; (* GUESTFS_MESSAGE_MAX * 10 *)
3311        ["read_file"; "/a"]])],
3312    "read a file",
3313    "\
3314 This calls returns the contents of the file C<path> as a
3315 buffer.
3316
3317 Unlike C<guestfs_cat>, this function can correctly
3318 handle files that contain embedded ASCII NUL characters.
3319 However unlike C<guestfs_download>, this function is limited
3320 in the total size of file that can be handled.");
3321
3322   ("grep", (RStringList "lines", [String "regex"; Pathname "path"]), 151, [ProtocolLimitWarning],
3323    [InitISOFS, Always, TestOutputList (
3324       [["grep"; "abc"; "/test-grep.txt"]], ["abc"; "abc123"]);
3325     InitISOFS, Always, TestOutputList (
3326       [["grep"; "nomatch"; "/test-grep.txt"]], []);
3327     (* Test for RHBZ#579608, absolute symbolic links. *)
3328     InitISOFS, Always, TestOutputList (
3329       [["grep"; "nomatch"; "/abssymlink"]], [])],
3330    "return lines matching a pattern",
3331    "\
3332 This calls the external C<grep> program and returns the
3333 matching lines.");
3334
3335   ("egrep", (RStringList "lines", [String "regex"; Pathname "path"]), 152, [ProtocolLimitWarning],
3336    [InitISOFS, Always, TestOutputList (
3337       [["egrep"; "abc"; "/test-grep.txt"]], ["abc"; "abc123"])],
3338    "return lines matching a pattern",
3339    "\
3340 This calls the external C<egrep> program and returns the
3341 matching lines.");
3342
3343   ("fgrep", (RStringList "lines", [String "pattern"; Pathname "path"]), 153, [ProtocolLimitWarning],
3344    [InitISOFS, Always, TestOutputList (
3345       [["fgrep"; "abc"; "/test-grep.txt"]], ["abc"; "abc123"])],
3346    "return lines matching a pattern",
3347    "\
3348 This calls the external C<fgrep> program and returns the
3349 matching lines.");
3350
3351   ("grepi", (RStringList "lines", [String "regex"; Pathname "path"]), 154, [ProtocolLimitWarning],
3352    [InitISOFS, Always, TestOutputList (
3353       [["grepi"; "abc"; "/test-grep.txt"]], ["abc"; "abc123"; "ABC"])],
3354    "return lines matching a pattern",
3355    "\
3356 This calls the external C<grep -i> program and returns the
3357 matching lines.");
3358
3359   ("egrepi", (RStringList "lines", [String "regex"; Pathname "path"]), 155, [ProtocolLimitWarning],
3360    [InitISOFS, Always, TestOutputList (
3361       [["egrepi"; "abc"; "/test-grep.txt"]], ["abc"; "abc123"; "ABC"])],
3362    "return lines matching a pattern",
3363    "\
3364 This calls the external C<egrep -i> program and returns the
3365 matching lines.");
3366
3367   ("fgrepi", (RStringList "lines", [String "pattern"; Pathname "path"]), 156, [ProtocolLimitWarning],
3368    [InitISOFS, Always, TestOutputList (
3369       [["fgrepi"; "abc"; "/test-grep.txt"]], ["abc"; "abc123"; "ABC"])],
3370    "return lines matching a pattern",
3371    "\
3372 This calls the external C<fgrep -i> program and returns the
3373 matching lines.");
3374
3375   ("zgrep", (RStringList "lines", [String "regex"; Pathname "path"]), 157, [ProtocolLimitWarning],
3376    [InitISOFS, Always, TestOutputList (
3377       [["zgrep"; "abc"; "/test-grep.txt.gz"]], ["abc"; "abc123"])],
3378    "return lines matching a pattern",
3379    "\
3380 This calls the external C<zgrep> program and returns the
3381 matching lines.");
3382
3383   ("zegrep", (RStringList "lines", [String "regex"; Pathname "path"]), 158, [ProtocolLimitWarning],
3384    [InitISOFS, Always, TestOutputList (
3385       [["zegrep"; "abc"; "/test-grep.txt.gz"]], ["abc"; "abc123"])],
3386    "return lines matching a pattern",
3387    "\
3388 This calls the external C<zegrep> program and returns the
3389 matching lines.");
3390
3391   ("zfgrep", (RStringList "lines", [String "pattern"; Pathname "path"]), 159, [ProtocolLimitWarning],
3392    [InitISOFS, Always, TestOutputList (
3393       [["zfgrep"; "abc"; "/test-grep.txt.gz"]], ["abc"; "abc123"])],
3394    "return lines matching a pattern",
3395    "\
3396 This calls the external C<zfgrep> program and returns the
3397 matching lines.");
3398
3399   ("zgrepi", (RStringList "lines", [String "regex"; Pathname "path"]), 160, [ProtocolLimitWarning],
3400    [InitISOFS, Always, TestOutputList (
3401       [["zgrepi"; "abc"; "/test-grep.txt.gz"]], ["abc"; "abc123"; "ABC"])],
3402    "return lines matching a pattern",
3403    "\
3404 This calls the external C<zgrep -i> program and returns the
3405 matching lines.");
3406
3407   ("zegrepi", (RStringList "lines", [String "regex"; Pathname "path"]), 161, [ProtocolLimitWarning],
3408    [InitISOFS, Always, TestOutputList (
3409       [["zegrepi"; "abc"; "/test-grep.txt.gz"]], ["abc"; "abc123"; "ABC"])],
3410    "return lines matching a pattern",
3411    "\
3412 This calls the external C<zegrep -i> program and returns the
3413 matching lines.");
3414
3415   ("zfgrepi", (RStringList "lines", [String "pattern"; Pathname "path"]), 162, [ProtocolLimitWarning],
3416    [InitISOFS, Always, TestOutputList (
3417       [["zfgrepi"; "abc"; "/test-grep.txt.gz"]], ["abc"; "abc123"; "ABC"])],
3418    "return lines matching a pattern",
3419    "\
3420 This calls the external C<zfgrep -i> program and returns the
3421 matching lines.");
3422
3423   ("realpath", (RString "rpath", [Pathname "path"]), 163, [Optional "realpath"],
3424    [InitISOFS, Always, TestOutput (
3425       [["realpath"; "/../directory"]], "/directory")],
3426    "canonicalized absolute pathname",
3427    "\
3428 Return the canonicalized absolute pathname of C<path>.  The
3429 returned path has no C<.>, C<..> or symbolic link path elements.");
3430
3431   ("ln", (RErr, [String "target"; Pathname "linkname"]), 164, [],
3432    [InitBasicFS, Always, TestOutputStruct (
3433       [["touch"; "/a"];
3434        ["ln"; "/a"; "/b"];
3435        ["stat"; "/b"]], [CompareWithInt ("nlink", 2)])],
3436    "create a hard link",
3437    "\
3438 This command creates a hard link using the C<ln> command.");
3439
3440   ("ln_f", (RErr, [String "target"; Pathname "linkname"]), 165, [],
3441    [InitBasicFS, Always, TestOutputStruct (
3442       [["touch"; "/a"];
3443        ["touch"; "/b"];
3444        ["ln_f"; "/a"; "/b"];
3445        ["stat"; "/b"]], [CompareWithInt ("nlink", 2)])],
3446    "create a hard link",
3447    "\
3448 This command creates a hard link using the C<ln -f> command.
3449 The C<-f> option removes the link (C<linkname>) if it exists already.");
3450
3451   ("ln_s", (RErr, [String "target"; Pathname "linkname"]), 166, [],
3452    [InitBasicFS, Always, TestOutputStruct (
3453       [["touch"; "/a"];
3454        ["ln_s"; "a"; "/b"];
3455        ["lstat"; "/b"]], [CompareWithInt ("mode", 0o120777)])],
3456    "create a symbolic link",
3457    "\
3458 This command creates a symbolic link using the C<ln -s> command.");
3459
3460   ("ln_sf", (RErr, [String "target"; Pathname "linkname"]), 167, [],
3461    [InitBasicFS, Always, TestOutput (
3462       [["mkdir_p"; "/a/b"];
3463        ["touch"; "/a/b/c"];
3464        ["ln_sf"; "../d"; "/a/b/c"];
3465        ["readlink"; "/a/b/c"]], "../d")],
3466    "create a symbolic link",
3467    "\
3468 This command creates a symbolic link using the C<ln -sf> command,
3469 The C<-f> option removes the link (C<linkname>) if it exists already.");
3470
3471   ("readlink", (RString "link", [Pathname "path"]), 168, [],
3472    [] (* XXX tested above *),
3473    "read the target of a symbolic link",
3474    "\
3475 This command reads the target of a symbolic link.");
3476
3477   ("fallocate", (RErr, [Pathname "path"; Int "len"]), 169, [],
3478    [InitBasicFS, Always, TestOutputStruct (
3479       [["fallocate"; "/a"; "1000000"];
3480        ["stat"; "/a"]], [CompareWithInt ("size", 1_000_000)])],
3481    "preallocate a file in the guest filesystem",
3482    "\
3483 This command preallocates a file (containing zero bytes) named
3484 C<path> of size C<len> bytes.  If the file exists already, it
3485 is overwritten.
3486
3487 Do not confuse this with the guestfish-specific
3488 C<alloc> command which allocates a file in the host and
3489 attaches it as a device.");
3490
3491   ("swapon_device", (RErr, [Device "device"]), 170, [],
3492    [InitPartition, Always, TestRun (
3493       [["mkswap"; "/dev/sda1"];
3494        ["swapon_device"; "/dev/sda1"];
3495        ["swapoff_device"; "/dev/sda1"]])],
3496    "enable swap on device",
3497    "\
3498 This command enables the libguestfs appliance to use the
3499 swap device or partition named C<device>.  The increased
3500 memory is made available for all commands, for example
3501 those run using C<guestfs_command> or C<guestfs_sh>.
3502
3503 Note that you should not swap to existing guest swap
3504 partitions unless you know what you are doing.  They may
3505 contain hibernation information, or other information that
3506 the guest doesn't want you to trash.  You also risk leaking
3507 information about the host to the guest this way.  Instead,
3508 attach a new host device to the guest and swap on that.");
3509
3510   ("swapoff_device", (RErr, [Device "device"]), 171, [],
3511    [], (* XXX tested by swapon_device *)
3512    "disable swap on device",
3513    "\
3514 This command disables the libguestfs appliance swap
3515 device or partition named C<device>.
3516 See C<guestfs_swapon_device>.");
3517
3518   ("swapon_file", (RErr, [Pathname "file"]), 172, [],
3519    [InitBasicFS, Always, TestRun (
3520       [["fallocate"; "/swap"; "8388608"];
3521        ["mkswap_file"; "/swap"];
3522        ["swapon_file"; "/swap"];
3523        ["swapoff_file"; "/swap"]])],
3524    "enable swap on file",
3525    "\
3526 This command enables swap to a file.
3527 See C<guestfs_swapon_device> for other notes.");
3528
3529   ("swapoff_file", (RErr, [Pathname "file"]), 173, [],
3530    [], (* XXX tested by swapon_file *)
3531    "disable swap on file",
3532    "\
3533 This command disables the libguestfs appliance swap on file.");
3534
3535   ("swapon_label", (RErr, [String "label"]), 174, [],
3536    [InitEmpty, Always, TestRun (
3537       [["part_disk"; "/dev/sdb"; "mbr"];
3538        ["mkswap_L"; "swapit"; "/dev/sdb1"];
3539        ["swapon_label"; "swapit"];
3540        ["swapoff_label"; "swapit"];
3541        ["zero"; "/dev/sdb"];
3542        ["blockdev_rereadpt"; "/dev/sdb"]])],
3543    "enable swap on labeled swap partition",
3544    "\
3545 This command enables swap to a labeled swap partition.
3546 See C<guestfs_swapon_device> for other notes.");
3547
3548   ("swapoff_label", (RErr, [String "label"]), 175, [],
3549    [], (* XXX tested by swapon_label *)
3550    "disable swap on labeled swap partition",
3551    "\
3552 This command disables the libguestfs appliance swap on
3553 labeled swap partition.");
3554
3555   ("swapon_uuid", (RErr, [String "uuid"]), 176, [Optional "linuxfsuuid"],
3556    (let uuid = uuidgen () in
3557     [InitEmpty, Always, TestRun (
3558        [["mkswap_U"; uuid; "/dev/sdb"];
3559         ["swapon_uuid"; uuid];
3560         ["swapoff_uuid"; uuid]])]),
3561    "enable swap on swap partition by UUID",
3562    "\
3563 This command enables swap to a swap partition with the given UUID.
3564 See C<guestfs_swapon_device> for other notes.");
3565
3566   ("swapoff_uuid", (RErr, [String "uuid"]), 177, [Optional "linuxfsuuid"],
3567    [], (* XXX tested by swapon_uuid *)
3568    "disable swap on swap partition by UUID",
3569    "\
3570 This command disables the libguestfs appliance swap partition
3571 with the given UUID.");
3572
3573   ("mkswap_file", (RErr, [Pathname "path"]), 178, [],
3574    [InitBasicFS, Always, TestRun (
3575       [["fallocate"; "/swap"; "8388608"];
3576        ["mkswap_file"; "/swap"]])],
3577    "create a swap file",
3578    "\
3579 Create a swap file.
3580
3581 This command just writes a swap file signature to an existing
3582 file.  To create the file itself, use something like C<guestfs_fallocate>.");
3583
3584   ("inotify_init", (RErr, [Int "maxevents"]), 179, [Optional "inotify"],
3585    [InitISOFS, Always, TestRun (
3586       [["inotify_init"; "0"]])],
3587    "create an inotify handle",
3588    "\
3589 This command creates a new inotify handle.
3590 The inotify subsystem can be used to notify events which happen to
3591 objects in the guest filesystem.
3592
3593 C<maxevents> is the maximum number of events which will be
3594 queued up between calls to C<guestfs_inotify_read> or
3595 C<guestfs_inotify_files>.
3596 If this is passed as C<0>, then the kernel (or previously set)
3597 default is used.  For Linux 2.6.29 the default was 16384 events.
3598 Beyond this limit, the kernel throws away events, but records
3599 the fact that it threw them away by setting a flag
3600 C<IN_Q_OVERFLOW> in the returned structure list (see
3601 C<guestfs_inotify_read>).
3602
3603 Before any events are generated, you have to add some
3604 watches to the internal watch list.  See:
3605 C<guestfs_inotify_add_watch>,
3606 C<guestfs_inotify_rm_watch> and
3607 C<guestfs_inotify_watch_all>.
3608
3609 Queued up events should be read periodically by calling
3610 C<guestfs_inotify_read>
3611 (or C<guestfs_inotify_files> which is just a helpful
3612 wrapper around C<guestfs_inotify_read>).  If you don't
3613 read the events out often enough then you risk the internal
3614 queue overflowing.
3615
3616 The handle should be closed after use by calling
3617 C<guestfs_inotify_close>.  This also removes any
3618 watches automatically.
3619
3620 See also L<inotify(7)> for an overview of the inotify interface
3621 as exposed by the Linux kernel, which is roughly what we expose
3622 via libguestfs.  Note that there is one global inotify handle
3623 per libguestfs instance.");
3624
3625   ("inotify_add_watch", (RInt64 "wd", [Pathname "path"; Int "mask"]), 180, [Optional "inotify"],
3626    [InitBasicFS, Always, TestOutputList (
3627       [["inotify_init"; "0"];
3628        ["inotify_add_watch"; "/"; "1073741823"];
3629        ["touch"; "/a"];
3630        ["touch"; "/b"];
3631        ["inotify_files"]], ["a"; "b"])],
3632    "add an inotify watch",
3633    "\
3634 Watch C<path> for the events listed in C<mask>.
3635
3636 Note that if C<path> is a directory then events within that
3637 directory are watched, but this does I<not> happen recursively
3638 (in subdirectories).
3639
3640 Note for non-C or non-Linux callers: the inotify events are
3641 defined by the Linux kernel ABI and are listed in
3642 C</usr/include/sys/inotify.h>.");
3643
3644   ("inotify_rm_watch", (RErr, [Int(*XXX64*) "wd"]), 181, [Optional "inotify"],
3645    [],
3646    "remove an inotify watch",
3647    "\
3648 Remove a previously defined inotify watch.
3649 See C<guestfs_inotify_add_watch>.");
3650
3651   ("inotify_read", (RStructList ("events", "inotify_event"), []), 182, [Optional "inotify"],
3652    [],
3653    "return list of inotify events",
3654    "\
3655 Return the complete queue of events that have happened
3656 since the previous read call.
3657
3658 If no events have happened, this returns an empty list.
3659
3660 I<Note>: In order to make sure that all events have been
3661 read, you must call this function repeatedly until it
3662 returns an empty list.  The reason is that the call will
3663 read events up to the maximum appliance-to-host message
3664 size and leave remaining events in the queue.");
3665
3666   ("inotify_files", (RStringList "paths", []), 183, [Optional "inotify"],
3667    [],
3668    "return list of watched files that had events",
3669    "\
3670 This function is a helpful wrapper around C<guestfs_inotify_read>
3671 which just returns a list of pathnames of objects that were
3672 touched.  The returned pathnames are sorted and deduplicated.");
3673
3674   ("inotify_close", (RErr, []), 184, [Optional "inotify"],
3675    [],
3676    "close the inotify handle",
3677    "\
3678 This closes the inotify handle which was previously
3679 opened by inotify_init.  It removes all watches, throws
3680 away any pending events, and deallocates all resources.");
3681
3682   ("setcon", (RErr, [String "context"]), 185, [Optional "selinux"],
3683    [],
3684    "set SELinux security context",
3685    "\
3686 This sets the SELinux security context of the daemon
3687 to the string C<context>.
3688
3689 See the documentation about SELINUX in L<guestfs(3)>.");
3690
3691   ("getcon", (RString "context", []), 186, [Optional "selinux"],
3692    [],
3693    "get SELinux security context",
3694    "\
3695 This gets the SELinux security context of the daemon.
3696
3697 See the documentation about SELINUX in L<guestfs(3)>,
3698 and C<guestfs_setcon>");
3699
3700   ("mkfs_b", (RErr, [String "fstype"; Int "blocksize"; Device "device"]), 187, [],
3701    [InitEmpty, Always, TestOutput (
3702       [["part_disk"; "/dev/sda"; "mbr"];
3703        ["mkfs_b"; "ext2"; "4096"; "/dev/sda1"];
3704        ["mount_options"; ""; "/dev/sda1"; "/"];
3705        ["write"; "/new"; "new file contents"];
3706        ["cat"; "/new"]], "new file contents")],
3707    "make a filesystem with block size",
3708    "\
3709 This call is similar to C<guestfs_mkfs>, but it allows you to
3710 control the block size of the resulting filesystem.  Supported
3711 block sizes depend on the filesystem type, but typically they
3712 are C<1024>, C<2048> or C<4096> only.");
3713
3714   ("mke2journal", (RErr, [Int "blocksize"; Device "device"]), 188, [],
3715    [InitEmpty, Always, TestOutput (
3716       [["sfdiskM"; "/dev/sda"; ",100 ,"];
3717        ["mke2journal"; "4096"; "/dev/sda1"];
3718        ["mke2fs_J"; "ext2"; "4096"; "/dev/sda2"; "/dev/sda1"];
3719        ["mount_options"; ""; "/dev/sda2"; "/"];
3720        ["write"; "/new"; "new file contents"];
3721        ["cat"; "/new"]], "new file contents")],
3722    "make ext2/3/4 external journal",
3723    "\
3724 This creates an ext2 external journal on C<device>.  It is equivalent
3725 to the command:
3726
3727  mke2fs -O journal_dev -b blocksize device");
3728
3729   ("mke2journal_L", (RErr, [Int "blocksize"; String "label"; Device "device"]), 189, [],
3730    [InitEmpty, Always, TestOutput (
3731       [["sfdiskM"; "/dev/sda"; ",100 ,"];
3732        ["mke2journal_L"; "4096"; "JOURNAL"; "/dev/sda1"];
3733        ["mke2fs_JL"; "ext2"; "4096"; "/dev/sda2"; "JOURNAL"];
3734        ["mount_options"; ""; "/dev/sda2"; "/"];
3735        ["write"; "/new"; "new file contents"];
3736        ["cat"; "/new"]], "new file contents")],
3737    "make ext2/3/4 external journal with label",
3738    "\
3739 This creates an ext2 external journal on C<device> with label C<label>.");
3740
3741   ("mke2journal_U", (RErr, [Int "blocksize"; String "uuid"; Device "device"]), 190, [Optional "linuxfsuuid"],
3742    (let uuid = uuidgen () in
3743     [InitEmpty, Always, TestOutput (
3744        [["sfdiskM"; "/dev/sda"; ",100 ,"];
3745         ["mke2journal_U"; "4096"; uuid; "/dev/sda1"];
3746         ["mke2fs_JU"; "ext2"; "4096"; "/dev/sda2"; uuid];
3747         ["mount_options"; ""; "/dev/sda2"; "/"];
3748         ["write"; "/new"; "new file contents"];
3749         ["cat"; "/new"]], "new file contents")]),
3750    "make ext2/3/4 external journal with UUID",
3751    "\
3752 This creates an ext2 external journal on C<device> with UUID C<uuid>.");
3753
3754   ("mke2fs_J", (RErr, [String "fstype"; Int "blocksize"; Device "device"; Device "journal"]), 191, [],
3755    [],
3756    "make ext2/3/4 filesystem with external journal",
3757    "\
3758 This creates an ext2/3/4 filesystem on C<device> with
3759 an external journal on C<journal>.  It is equivalent
3760 to the command:
3761
3762  mke2fs -t fstype -b blocksize -J device=<journal> <device>
3763
3764 See also C<guestfs_mke2journal>.");
3765
3766   ("mke2fs_JL", (RErr, [String "fstype"; Int "blocksize"; Device "device"; String "label"]), 192, [],
3767    [],
3768    "make ext2/3/4 filesystem with external journal",
3769    "\
3770 This creates an ext2/3/4 filesystem on C<device> with
3771 an external journal on the journal labeled C<label>.
3772
3773 See also C<guestfs_mke2journal_L>.");
3774
3775   ("mke2fs_JU", (RErr, [String "fstype"; Int "blocksize"; Device "device"; String "uuid"]), 193, [Optional "linuxfsuuid"],
3776    [],
3777    "make ext2/3/4 filesystem with external journal",
3778    "\
3779 This creates an ext2/3/4 filesystem on C<device> with
3780 an external journal on the journal with UUID C<uuid>.
3781
3782 See also C<guestfs_mke2journal_U>.");
3783
3784   ("modprobe", (RErr, [String "modulename"]), 194, [Optional "linuxmodules"],
3785    [InitNone, Always, TestRun [["modprobe"; "fat"]]],
3786    "load a kernel module",
3787    "\
3788 This loads a kernel module in the appliance.
3789
3790 The kernel module must have been whitelisted when libguestfs
3791 was built (see C<appliance/kmod.whitelist.in> in the source).");
3792
3793   ("echo_daemon", (RString "output", [StringList "words"]), 195, [],
3794    [InitNone, Always, TestOutput (
3795       [["echo_daemon"; "This is a test"]], "This is a test"
3796     )],
3797    "echo arguments back to the client",
3798    "\
3799 This command concatenate the list of C<words> passed with single spaces between
3800 them and returns the resulting string.
3801
3802 You can use this command to test the connection through to the daemon.
3803
3804 See also C<guestfs_ping_daemon>.");
3805
3806   ("find0", (RErr, [Pathname "directory"; FileOut "files"]), 196, [],
3807    [], (* There is a regression test for this. *)
3808    "find all files and directories, returning NUL-separated list",
3809    "\
3810 This command lists out all files and directories, recursively,
3811 starting at C<directory>, placing the resulting list in the
3812 external file called C<files>.
3813
3814 This command works the same way as C<guestfs_find> with the
3815 following exceptions:
3816
3817 =over 4
3818
3819 =item *
3820
3821 The resulting list is written to an external file.
3822
3823 =item *
3824
3825 Items (filenames) in the result are separated
3826 by C<\\0> characters.  See L<find(1)> option I<-print0>.
3827
3828 =item *
3829
3830 This command is not limited in the number of names that it
3831 can return.
3832
3833 =item *
3834
3835 The result list is not sorted.
3836
3837 =back");
3838
3839   ("case_sensitive_path", (RString "rpath", [Pathname "path"]), 197, [],
3840    [InitISOFS, Always, TestOutput (
3841       [["case_sensitive_path"; "/DIRECTORY"]], "/directory");
3842     InitISOFS, Always, TestOutput (
3843       [["case_sensitive_path"; "/DIRECTORY/"]], "/directory");
3844     InitISOFS, Always, TestOutput (
3845       [["case_sensitive_path"; "/Known-1"]], "/known-1");
3846     InitISOFS, Always, TestLastFail (
3847       [["case_sensitive_path"; "/Known-1/"]]);
3848     InitBasicFS, Always, TestOutput (
3849       [["mkdir"; "/a"];
3850        ["mkdir"; "/a/bbb"];
3851        ["touch"; "/a/bbb/c"];
3852        ["case_sensitive_path"; "/A/bbB/C"]], "/a/bbb/c");
3853     InitBasicFS, Always, TestOutput (
3854       [["mkdir"; "/a"];
3855        ["mkdir"; "/a/bbb"];
3856        ["touch"; "/a/bbb/c"];
3857        ["case_sensitive_path"; "/A////bbB/C"]], "/a/bbb/c");
3858     InitBasicFS, Always, TestLastFail (
3859       [["mkdir"; "/a"];
3860        ["mkdir"; "/a/bbb"];
3861        ["touch"; "/a/bbb/c"];
3862        ["case_sensitive_path"; "/A/bbb/../bbb/C"]])],
3863    "return true path on case-insensitive filesystem",
3864    "\
3865 This can be used to resolve case insensitive paths on
3866 a filesystem which is case sensitive.  The use case is
3867 to resolve paths which you have read from Windows configuration
3868 files or the Windows Registry, to the true path.
3869
3870 The command handles a peculiarity of the Linux ntfs-3g
3871 filesystem driver (and probably others), which is that although
3872 the underlying filesystem is case-insensitive, the driver
3873 exports the filesystem to Linux as case-sensitive.
3874
3875 One consequence of this is that special directories such
3876 as C<c:\\windows> may appear as C</WINDOWS> or C</windows>
3877 (or other things) depending on the precise details of how
3878 they were created.  In Windows itself this would not be
3879 a problem.
3880
3881 Bug or feature?  You decide:
3882 L<http://www.tuxera.com/community/ntfs-3g-faq/#posixfilenames1>
3883
3884 This function resolves the true case of each element in the
3885 path and returns the case-sensitive path.
3886
3887 Thus C<guestfs_case_sensitive_path> (\"/Windows/System32\")
3888 might return C<\"/WINDOWS/system32\"> (the exact return value
3889 would depend on details of how the directories were originally
3890 created under Windows).
3891
3892 I<Note>:
3893 This function does not handle drive names, backslashes etc.
3894
3895 See also C<guestfs_realpath>.");
3896
3897   ("vfs_type", (RString "fstype", [Device "device"]), 198, [],
3898    [InitBasicFS, Always, TestOutput (
3899       [["vfs_type"; "/dev/sda1"]], "ext2")],
3900    "get the Linux VFS type corresponding to a mounted device",
3901    "\
3902 This command gets the block device type corresponding to
3903 a mounted device called C<device>.
3904
3905 Usually the result is the name of the Linux VFS module that
3906 is used to mount this device (probably determined automatically
3907 if you used the C<guestfs_mount> call).");
3908
3909   ("truncate", (RErr, [Pathname "path"]), 199, [],
3910    [InitBasicFS, Always, TestOutputStruct (
3911       [["write"; "/test"; "some stuff so size is not zero"];
3912        ["truncate"; "/test"];
3913        ["stat"; "/test"]], [CompareWithInt ("size", 0)])],
3914    "truncate a file to zero size",
3915    "\
3916 This command truncates C<path> to a zero-length file.  The
3917 file must exist already.");
3918
3919   ("truncate_size", (RErr, [Pathname "path"; Int64 "size"]), 200, [],
3920    [InitBasicFS, Always, TestOutputStruct (
3921       [["touch"; "/test"];
3922        ["truncate_size"; "/test"; "1000"];
3923        ["stat"; "/test"]], [CompareWithInt ("size", 1000)])],
3924    "truncate a file to a particular size",
3925    "\
3926 This command truncates C<path> to size C<size> bytes.  The file
3927 must exist already.  If the file is smaller than C<size> then
3928 the file is extended to the required size with null bytes.");
3929
3930   ("utimens", (RErr, [Pathname "path"; Int64 "atsecs"; Int64 "atnsecs"; Int64 "mtsecs"; Int64 "mtnsecs"]), 201, [],
3931    [InitBasicFS, Always, TestOutputStruct (
3932       [["touch"; "/test"];
3933        ["utimens"; "/test"; "12345"; "67890"; "9876"; "5432"];
3934        ["stat"; "/test"]], [CompareWithInt ("mtime", 9876)])],
3935    "set timestamp of a file with nanosecond precision",
3936    "\
3937 This command sets the timestamps of a file with nanosecond
3938 precision.
3939
3940 C<atsecs, atnsecs> are the last access time (atime) in secs and
3941 nanoseconds from the epoch.
3942
3943 C<mtsecs, mtnsecs> are the last modification time (mtime) in
3944 secs and nanoseconds from the epoch.
3945
3946 If the C<*nsecs> field contains the special value C<-1> then
3947 the corresponding timestamp is set to the current time.  (The
3948 C<*secs> field is ignored in this case).
3949
3950 If the C<*nsecs> field contains the special value C<-2> then
3951 the corresponding timestamp is left unchanged.  (The
3952 C<*secs> field is ignored in this case).");
3953
3954   ("mkdir_mode", (RErr, [Pathname "path"; Int "mode"]), 202, [],
3955    [InitBasicFS, Always, TestOutputStruct (
3956       [["mkdir_mode"; "/test"; "0o111"];
3957        ["stat"; "/test"]], [CompareWithInt ("mode", 0o40111)])],
3958    "create a directory with a particular mode",
3959    "\
3960 This command creates a directory, setting the initial permissions
3961 of the directory to C<mode>.
3962
3963 For common Linux filesystems, the actual mode which is set will
3964 be C<mode & ~umask & 01777>.  Non-native-Linux filesystems may
3965 interpret the mode in other ways.
3966
3967 See also C<guestfs_mkdir>, C<guestfs_umask>");
3968
3969   ("lchown", (RErr, [Int "owner"; Int "group"; Pathname "path"]), 203, [],
3970    [], (* XXX *)
3971    "change file owner and group",
3972    "\
3973 Change the file owner to C<owner> and group to C<group>.
3974 This is like C<guestfs_chown> but if C<path> is a symlink then
3975 the link itself is changed, not the target.
3976
3977 Only numeric uid and gid are supported.  If you want to use
3978 names, you will need to locate and parse the password file
3979 yourself (Augeas support makes this relatively easy).");
3980
3981   ("lstatlist", (RStructList ("statbufs", "stat"), [Pathname "path"; StringList "names"]), 204, [],
3982    [], (* XXX *)
3983    "lstat on multiple files",
3984    "\
3985 This call allows you to perform the C<guestfs_lstat> operation
3986 on multiple files, where all files are in the directory C<path>.
3987 C<names> is the list of files from this directory.
3988
3989 On return you get a list of stat structs, with a one-to-one
3990 correspondence to the C<names> list.  If any name did not exist
3991 or could not be lstat'd, then the C<ino> field of that structure
3992 is set to C<-1>.
3993
3994 This call is intended for programs that want to efficiently
3995 list a directory contents without making many round-trips.
3996 See also C<guestfs_lxattrlist> for a similarly efficient call
3997 for getting extended attributes.  Very long directory listings
3998 might cause the protocol message size to be exceeded, causing
3999 this call to fail.  The caller must split up such requests
4000 into smaller groups of names.");
4001
4002   ("lxattrlist", (RStructList ("xattrs", "xattr"), [Pathname "path"; StringList "names"]), 205, [Optional "linuxxattrs"],
4003    [], (* XXX *)
4004    "lgetxattr on multiple files",
4005    "\
4006 This call allows you to get the extended attributes
4007 of multiple files, where all files are in the directory C<path>.
4008 C<names> is the list of files from this directory.
4009
4010 On return you get a flat list of xattr structs which must be
4011 interpreted sequentially.  The first xattr struct always has a zero-length
4012 C<attrname>.  C<attrval> in this struct is zero-length
4013 to indicate there was an error doing C<lgetxattr> for this
4014 file, I<or> is a C string which is a decimal number
4015 (the number of following attributes for this file, which could
4016 be C<\"0\">).  Then after the first xattr struct are the
4017 zero or more attributes for the first named file.
4018 This repeats for the second and subsequent files.
4019
4020 This call is intended for programs that want to efficiently
4021 list a directory contents without making many round-trips.
4022 See also C<guestfs_lstatlist> for a similarly efficient call
4023 for getting standard stats.  Very long directory listings
4024 might cause the protocol message size to be exceeded, causing
4025 this call to fail.  The caller must split up such requests
4026 into smaller groups of names.");
4027
4028   ("readlinklist", (RStringList "links", [Pathname "path"; StringList "names"]), 206, [],
4029    [], (* XXX *)
4030    "readlink on multiple files",
4031    "\
4032 This call allows you to do a C<readlink> operation
4033 on multiple files, where all files are in the directory C<path>.
4034 C<names> is the list of files from this directory.
4035
4036 On return you get a list of strings, with a one-to-one
4037 correspondence to the C<names> list.  Each string is the
4038 value of the symbol link.
4039
4040 If the C<readlink(2)> operation fails on any name, then
4041 the corresponding result string is the empty string C<\"\">.
4042 However the whole operation is completed even if there
4043 were C<readlink(2)> errors, and so you can call this
4044 function with names where you don't know if they are
4045 symbolic links already (albeit slightly less efficient).
4046
4047 This call is intended for programs that want to efficiently
4048 list a directory contents without making many round-trips.
4049 Very long directory listings might cause the protocol
4050 message size to be exceeded, causing
4051 this call to fail.  The caller must split up such requests
4052 into smaller groups of names.");
4053
4054   ("pread", (RBufferOut "content", [Pathname "path"; Int "count"; Int64 "offset"]), 207, [ProtocolLimitWarning],
4055    [InitISOFS, Always, TestOutputBuffer (
4056       [["pread"; "/known-4"; "1"; "3"]], "\n");
4057     InitISOFS, Always, TestOutputBuffer (
4058       [["pread"; "/empty"; "0"; "100"]], "")],
4059    "read part of a file",
4060    "\
4061 This command lets you read part of a file.  It reads C<count>
4062 bytes of the file, starting at C<offset>, from file C<path>.
4063
4064 This may read fewer bytes than requested.  For further details
4065 see the L<pread(2)> system call.");
4066
4067   ("part_init", (RErr, [Device "device"; String "parttype"]), 208, [],
4068    [InitEmpty, Always, TestRun (
4069       [["part_init"; "/dev/sda"; "gpt"]])],
4070    "create an empty partition table",
4071    "\
4072 This creates an empty partition table on C<device> of one of the
4073 partition types listed below.  Usually C<parttype> should be
4074 either C<msdos> or C<gpt> (for large disks).
4075
4076 Initially there are no partitions.  Following this, you should
4077 call C<guestfs_part_add> for each partition required.
4078
4079 Possible values for C<parttype> are:
4080
4081 =over 4
4082
4083 =item B<efi> | B<gpt>
4084
4085 Intel EFI / GPT partition table.
4086
4087 This is recommended for >= 2 TB partitions that will be accessed
4088 from Linux and Intel-based Mac OS X.  It also has limited backwards
4089 compatibility with the C<mbr> format.
4090
4091 =item B<mbr> | B<msdos>
4092
4093 The standard PC \"Master Boot Record\" (MBR) format used
4094 by MS-DOS and Windows.  This partition type will B<only> work
4095 for device sizes up to 2 TB.  For large disks we recommend
4096 using C<gpt>.
4097
4098 =back
4099
4100 Other partition table types that may work but are not
4101 supported include:
4102
4103 =over 4
4104
4105 =item B<aix>
4106
4107 AIX disk labels.
4108
4109 =item B<amiga> | B<rdb>
4110
4111 Amiga \"Rigid Disk Block\" format.
4112
4113 =item B<bsd>
4114
4115 BSD disk labels.
4116
4117 =item B<dasd>
4118
4119 DASD, used on IBM mainframes.
4120
4121 =item B<dvh>
4122
4123 MIPS/SGI volumes.
4124
4125 =item B<mac>
4126
4127 Old Mac partition format.  Modern Macs use C<gpt>.
4128
4129 =item B<pc98>
4130
4131 NEC PC-98 format, common in Japan apparently.
4132
4133 =item B<sun>
4134
4135 Sun disk labels.
4136
4137 =back");
4138
4139   ("part_add", (RErr, [Device "device"; String "prlogex"; Int64 "startsect"; Int64 "endsect"]), 209, [],
4140    [InitEmpty, Always, TestRun (
4141       [["part_init"; "/dev/sda"; "mbr"];
4142        ["part_add"; "/dev/sda"; "primary"; "1"; "-1"]]);
4143     InitEmpty, Always, TestRun (
4144       [["part_init"; "/dev/sda"; "gpt"];
4145        ["part_add"; "/dev/sda"; "primary"; "34"; "127"];
4146        ["part_add"; "/dev/sda"; "primary"; "128"; "-34"]]);
4147     InitEmpty, Always, TestRun (
4148       [["part_init"; "/dev/sda"; "mbr"];
4149        ["part_add"; "/dev/sda"; "primary"; "32"; "127"];
4150        ["part_add"; "/dev/sda"; "primary"; "128"; "255"];
4151        ["part_add"; "/dev/sda"; "primary"; "256"; "511"];
4152        ["part_add"; "/dev/sda"; "primary"; "512"; "-1"]])],
4153    "add a partition to the device",
4154    "\
4155 This command adds a partition to C<device>.  If there is no partition
4156 table on the device, call C<guestfs_part_init> first.
4157
4158 The C<prlogex> parameter is the type of partition.  Normally you
4159 should pass C<p> or C<primary> here, but MBR partition tables also
4160 support C<l> (or C<logical>) and C<e> (or C<extended>) partition
4161 types.
4162
4163 C<startsect> and C<endsect> are the start and end of the partition
4164 in I<sectors>.  C<endsect> may be negative, which means it counts
4165 backwards from the end of the disk (C<-1> is the last sector).
4166
4167 Creating a partition which covers the whole disk is not so easy.
4168 Use C<guestfs_part_disk> to do that.");
4169
4170   ("part_disk", (RErr, [Device "device"; String "parttype"]), 210, [DangerWillRobinson],
4171    [InitEmpty, Always, TestRun (
4172       [["part_disk"; "/dev/sda"; "mbr"]]);
4173     InitEmpty, Always, TestRun (
4174       [["part_disk"; "/dev/sda"; "gpt"]])],
4175    "partition whole disk with a single primary partition",
4176    "\
4177 This command is simply a combination of C<guestfs_part_init>
4178 followed by C<guestfs_part_add> to create a single primary partition
4179 covering the whole disk.
4180
4181 C<parttype> is the partition table type, usually C<mbr> or C<gpt>,
4182 but other possible values are described in C<guestfs_part_init>.");
4183
4184   ("part_set_bootable", (RErr, [Device "device"; Int "partnum"; Bool "bootable"]), 211, [],
4185    [InitEmpty, Always, TestRun (
4186       [["part_disk"; "/dev/sda"; "mbr"];
4187        ["part_set_bootable"; "/dev/sda"; "1"; "true"]])],
4188    "make a partition bootable",
4189    "\
4190 This sets the bootable flag on partition numbered C<partnum> on
4191 device C<device>.  Note that partitions are numbered from 1.
4192
4193 The bootable flag is used by some operating systems (notably
4194 Windows) to determine which partition to boot from.  It is by
4195 no means universally recognized.");
4196
4197   ("part_set_name", (RErr, [Device "device"; Int "partnum"; String "name"]), 212, [],
4198    [InitEmpty, Always, TestRun (
4199       [["part_disk"; "/dev/sda"; "gpt"];
4200        ["part_set_name"; "/dev/sda"; "1"; "thepartname"]])],
4201    "set partition name",
4202    "\
4203 This sets the partition name on partition numbered C<partnum> on
4204 device C<device>.  Note that partitions are numbered from 1.
4205
4206 The partition name can only be set on certain types of partition
4207 table.  This works on C<gpt> but not on C<mbr> partitions.");
4208
4209   ("part_list", (RStructList ("partitions", "partition"), [Device "device"]), 213, [],
4210    [], (* XXX Add a regression test for this. *)
4211    "list partitions on a device",
4212    "\
4213 This command parses the partition table on C<device> and
4214 returns the list of partitions found.
4215
4216 The fields in the returned structure are:
4217
4218 =over 4
4219
4220 =item B<part_num>
4221
4222 Partition number, counting from 1.
4223
4224 =item B<part_start>
4225
4226 Start of the partition I<in bytes>.  To get sectors you have to
4227 divide by the device's sector size, see C<guestfs_blockdev_getss>.
4228
4229 =item B<part_end>
4230
4231 End of the partition in bytes.
4232
4233 =item B<part_size>
4234
4235 Size of the partition in bytes.
4236
4237 =back");
4238
4239   ("part_get_parttype", (RString "parttype", [Device "device"]), 214, [],
4240    [InitEmpty, Always, TestOutput (
4241       [["part_disk"; "/dev/sda"; "gpt"];
4242        ["part_get_parttype"; "/dev/sda"]], "gpt")],
4243    "get the partition table type",
4244    "\
4245 This command examines the partition table on C<device> and
4246 returns the partition table type (format) being used.
4247
4248 Common return values include: C<msdos> (a DOS/Windows style MBR
4249 partition table), C<gpt> (a GPT/EFI-style partition table).  Other
4250 values are possible, although unusual.  See C<guestfs_part_init>
4251 for a full list.");
4252
4253   ("fill", (RErr, [Int "c"; Int "len"; Pathname "path"]), 215, [],
4254    [InitBasicFS, Always, TestOutputBuffer (
4255       [["fill"; "0x63"; "10"; "/test"];
4256        ["read_file"; "/test"]], "cccccccccc")],
4257    "fill a file with octets",
4258    "\
4259 This command creates a new file called C<path>.  The initial
4260 content of the file is C<len> octets of C<c>, where C<c>
4261 must be a number in the range C<[0..255]>.
4262
4263 To fill a file with zero bytes (sparsely), it is
4264 much more efficient to use C<guestfs_truncate_size>.
4265 To create a file with a pattern of repeating bytes
4266 use C<guestfs_fill_pattern>.");
4267
4268   ("available", (RErr, [StringList "groups"]), 216, [],
4269    [InitNone, Always, TestRun [["available"; ""]]],
4270    "test availability of some parts of the API",
4271    "\
4272 This command is used to check the availability of some
4273 groups of functionality in the appliance, which not all builds of
4274 the libguestfs appliance will be able to provide.
4275
4276 The libguestfs groups, and the functions that those
4277 groups correspond to, are listed in L<guestfs(3)/AVAILABILITY>.
4278
4279 The argument C<groups> is a list of group names, eg:
4280 C<[\"inotify\", \"augeas\"]> would check for the availability of
4281 the Linux inotify functions and Augeas (configuration file
4282 editing) functions.
4283
4284 The command returns no error if I<all> requested groups are available.
4285
4286 It fails with an error if one or more of the requested
4287 groups is unavailable in the appliance.
4288
4289 If an unknown group name is included in the
4290 list of groups then an error is always returned.
4291
4292 I<Notes:>
4293
4294 =over 4
4295
4296 =item *
4297
4298 You must call C<guestfs_launch> before calling this function.
4299
4300 The reason is because we don't know what groups are
4301 supported by the appliance/daemon until it is running and can
4302 be queried.
4303
4304 =item *
4305
4306 If a group of functions is available, this does not necessarily
4307 mean that they will work.  You still have to check for errors
4308 when calling individual API functions even if they are
4309 available.
4310
4311 =item *
4312
4313 It is usually the job of distro packagers to build
4314 complete functionality into the libguestfs appliance.
4315 Upstream libguestfs, if built from source with all
4316 requirements satisfied, will support everything.
4317
4318 =item *
4319
4320 This call was added in version C<1.0.80>.  In previous
4321 versions of libguestfs all you could do would be to speculatively
4322 execute a command to find out if the daemon implemented it.
4323 See also C<guestfs_version>.
4324
4325 =back");
4326
4327   ("dd", (RErr, [Dev_or_Path "src"; Dev_or_Path "dest"]), 217, [],
4328    [InitBasicFS, Always, TestOutputBuffer (
4329       [["write"; "/src"; "hello, world"];
4330        ["dd"; "/src"; "/dest"];
4331        ["read_file"; "/dest"]], "hello, world")],
4332    "copy from source to destination using dd",
4333    "\
4334 This command copies from one source device or file C<src>
4335 to another destination device or file C<dest>.  Normally you
4336 would use this to copy to or from a device or partition, for
4337 example to duplicate a filesystem.
4338
4339 If the destination is a device, it must be as large or larger
4340 than the source file or device, otherwise the copy will fail.
4341 This command cannot do partial copies (see C<guestfs_copy_size>).");
4342
4343   ("filesize", (RInt64 "size", [Pathname "file"]), 218, [],
4344    [InitBasicFS, Always, TestOutputInt (
4345       [["write"; "/file"; "hello, world"];
4346        ["filesize"; "/file"]], 12)],
4347    "return the size of the file in bytes",
4348    "\
4349 This command returns the size of C<file> in bytes.
4350
4351 To get other stats about a file, use C<guestfs_stat>, C<guestfs_lstat>,
4352 C<guestfs_is_dir>, C<guestfs_is_file> etc.
4353 To get the size of block devices, use C<guestfs_blockdev_getsize64>.");
4354
4355   ("lvrename", (RErr, [String "logvol"; String "newlogvol"]), 219, [],
4356    [InitBasicFSonLVM, Always, TestOutputList (
4357       [["lvrename"; "/dev/VG/LV"; "/dev/VG/LV2"];
4358        ["lvs"]], ["/dev/VG/LV2"])],
4359    "rename an LVM logical volume",
4360    "\
4361 Rename a logical volume C<logvol> with the new name C<newlogvol>.");
4362
4363   ("vgrename", (RErr, [String "volgroup"; String "newvolgroup"]), 220, [],
4364    [InitBasicFSonLVM, Always, TestOutputList (
4365       [["umount"; "/"];
4366        ["vg_activate"; "false"; "VG"];
4367        ["vgrename"; "VG"; "VG2"];
4368        ["vg_activate"; "true"; "VG2"];
4369        ["mount_options"; ""; "/dev/VG2/LV"; "/"];
4370        ["vgs"]], ["VG2"])],
4371    "rename an LVM volume group",
4372    "\
4373 Rename a volume group C<volgroup> with the new name C<newvolgroup>.");
4374
4375   ("initrd_cat", (RBufferOut "content", [Pathname "initrdpath"; String "filename"]), 221, [ProtocolLimitWarning],
4376    [InitISOFS, Always, TestOutputBuffer (
4377       [["initrd_cat"; "/initrd"; "known-4"]], "abc\ndef\nghi")],
4378    "list the contents of a single file in an initrd",
4379    "\
4380 This command unpacks the file C<filename> from the initrd file
4381 called C<initrdpath>.  The filename must be given I<without> the
4382 initial C</> character.
4383
4384 For example, in guestfish you could use the following command
4385 to examine the boot script (usually called C</init>)
4386 contained in a Linux initrd or initramfs image:
4387
4388  initrd-cat /boot/initrd-<version>.img init
4389
4390 See also C<guestfs_initrd_list>.");
4391
4392   ("pvuuid", (RString "uuid", [Device "device"]), 222, [],
4393    [],
4394    "get the UUID of a physical volume",
4395    "\
4396 This command returns the UUID of the LVM PV C<device>.");
4397
4398   ("vguuid", (RString "uuid", [String "vgname"]), 223, [],
4399    [],
4400    "get the UUID of a volume group",
4401    "\
4402 This command returns the UUID of the LVM VG named C<vgname>.");
4403
4404   ("lvuuid", (RString "uuid", [Device "device"]), 224, [],
4405    [],
4406    "get the UUID of a logical volume",
4407    "\
4408 This command returns the UUID of the LVM LV C<device>.");
4409
4410   ("vgpvuuids", (RStringList "uuids", [String "vgname"]), 225, [],
4411    [],
4412    "get the PV UUIDs containing the volume group",
4413    "\
4414 Given a VG called C<vgname>, this returns the UUIDs of all
4415 the physical volumes that this volume group resides on.
4416
4417 You can use this along with C<guestfs_pvs> and C<guestfs_pvuuid>
4418 calls to associate physical volumes and volume groups.
4419
4420 See also C<guestfs_vglvuuids>.");
4421
4422   ("vglvuuids", (RStringList "uuids", [String "vgname"]), 226, [],
4423    [],
4424    "get the LV UUIDs of all LVs in the volume group",
4425    "\
4426 Given a VG called C<vgname>, this returns the UUIDs of all
4427 the logical volumes created in this volume group.
4428
4429 You can use this along with C<guestfs_lvs> and C<guestfs_lvuuid>
4430 calls to associate logical volumes and volume groups.
4431
4432 See also C<guestfs_vgpvuuids>.");
4433
4434   ("copy_size", (RErr, [Dev_or_Path "src"; Dev_or_Path "dest"; Int64 "size"]), 227, [],
4435    [InitBasicFS, Always, TestOutputBuffer (
4436       [["write"; "/src"; "hello, world"];
4437        ["copy_size"; "/src"; "/dest"; "5"];
4438        ["read_file"; "/dest"]], "hello")],
4439    "copy size bytes from source to destination using dd",
4440    "\
4441 This command copies exactly C<size> bytes from one source device
4442 or file C<src> to another destination device or file C<dest>.
4443
4444 Note this will fail if the source is too short or if the destination
4445 is not large enough.");
4446
4447   ("zero_device", (RErr, [Device "device"]), 228, [DangerWillRobinson],
4448    [InitBasicFSonLVM, Always, TestRun (
4449       [["zero_device"; "/dev/VG/LV"]])],
4450    "write zeroes to an entire device",
4451    "\
4452 This command writes zeroes over the entire C<device>.  Compare
4453 with C<guestfs_zero> which just zeroes the first few blocks of
4454 a device.");
4455
4456   ("txz_in", (RErr, [FileIn "tarball"; Pathname "directory"]), 229, [],
4457    [InitBasicFS, Always, TestOutput (
4458       [["txz_in"; "../images/helloworld.tar.xz"; "/"];
4459        ["cat"; "/hello"]], "hello\n")],
4460    "unpack compressed tarball to directory",
4461    "\
4462 This command uploads and unpacks local file C<tarball> (an
4463 I<xz compressed> tar file) into C<directory>.");
4464
4465   ("txz_out", (RErr, [Pathname "directory"; FileOut "tarball"]), 230, [],
4466    [],
4467    "pack directory into compressed tarball",
4468    "\
4469 This command packs the contents of C<directory> and downloads
4470 it to local file C<tarball> (as an xz compressed tar archive).");
4471
4472   ("ntfsresize", (RErr, [Device "device"]), 231, [Optional "ntfsprogs"],
4473    [],
4474    "resize an NTFS filesystem",
4475    "\
4476 This command resizes an NTFS filesystem, expanding or
4477 shrinking it to the size of the underlying device.
4478 See also L<ntfsresize(8)>.");
4479
4480   ("vgscan", (RErr, []), 232, [],
4481    [InitEmpty, Always, TestRun (
4482       [["vgscan"]])],
4483    "rescan for LVM physical volumes, volume groups and logical volumes",
4484    "\
4485 This rescans all block devices and rebuilds the list of LVM
4486 physical volumes, volume groups and logical volumes.");
4487
4488   ("part_del", (RErr, [Device "device"; Int "partnum"]), 233, [],
4489    [InitEmpty, Always, TestRun (
4490       [["part_init"; "/dev/sda"; "mbr"];
4491        ["part_add"; "/dev/sda"; "primary"; "1"; "-1"];
4492        ["part_del"; "/dev/sda"; "1"]])],
4493    "delete a partition",
4494    "\
4495 This command deletes the partition numbered C<partnum> on C<device>.
4496
4497 Note that in the case of MBR partitioning, deleting an
4498 extended partition also deletes any logical partitions
4499 it contains.");
4500
4501   ("part_get_bootable", (RBool "bootable", [Device "device"; Int "partnum"]), 234, [],
4502    [InitEmpty, Always, TestOutputTrue (
4503       [["part_init"; "/dev/sda"; "mbr"];
4504        ["part_add"; "/dev/sda"; "primary"; "1"; "-1"];
4505        ["part_set_bootable"; "/dev/sda"; "1"; "true"];
4506        ["part_get_bootable"; "/dev/sda"; "1"]])],
4507    "return true if a partition is bootable",
4508    "\
4509 This command returns true if the partition C<partnum> on
4510 C<device> has the bootable flag set.
4511
4512 See also C<guestfs_part_set_bootable>.");
4513
4514   ("part_get_mbr_id", (RInt "idbyte", [Device "device"; Int "partnum"]), 235, [FishOutput FishOutputHexadecimal],
4515    [InitEmpty, Always, TestOutputInt (
4516       [["part_init"; "/dev/sda"; "mbr"];
4517        ["part_add"; "/dev/sda"; "primary"; "1"; "-1"];
4518        ["part_set_mbr_id"; "/dev/sda"; "1"; "0x7f"];
4519        ["part_get_mbr_id"; "/dev/sda"; "1"]], 0x7f)],
4520    "get the MBR type byte (ID byte) from a partition",
4521    "\
4522 Returns the MBR type byte (also known as the ID byte) from
4523 the numbered partition C<partnum>.
4524
4525 Note that only MBR (old DOS-style) partitions have type bytes.
4526 You will get undefined results for other partition table
4527 types (see C<guestfs_part_get_parttype>).");
4528
4529   ("part_set_mbr_id", (RErr, [Device "device"; Int "partnum"; Int "idbyte"]), 236, [],
4530    [], (* tested by part_get_mbr_id *)
4531    "set the MBR type byte (ID byte) of a partition",
4532    "\
4533 Sets the MBR type byte (also known as the ID byte) of
4534 the numbered partition C<partnum> to C<idbyte>.  Note
4535 that the type bytes quoted in most documentation are
4536 in fact hexadecimal numbers, but usually documented
4537 without any leading \"0x\" which might be confusing.
4538
4539 Note that only MBR (old DOS-style) partitions have type bytes.
4540 You will get undefined results for other partition table
4541 types (see C<guestfs_part_get_parttype>).");
4542
4543   ("checksum_device", (RString "checksum", [String "csumtype"; Device "device"]), 237, [],
4544    [InitISOFS, Always, TestOutput (
4545       [["checksum_device"; "md5"; "/dev/sdd"]],
4546       (Digest.to_hex (Digest.file "images/test.iso")))],
4547    "compute MD5, SHAx or CRC checksum of the contents of a device",
4548    "\
4549 This call computes the MD5, SHAx or CRC checksum of the
4550 contents of the device named C<device>.  For the types of
4551 checksums supported see the C<guestfs_checksum> command.");
4552
4553   ("lvresize_free", (RErr, [Device "lv"; Int "percent"]), 238, [Optional "lvm2"],
4554    [InitNone, Always, TestRun (
4555       [["part_disk"; "/dev/sda"; "mbr"];
4556        ["pvcreate"; "/dev/sda1"];
4557        ["vgcreate"; "VG"; "/dev/sda1"];
4558        ["lvcreate"; "LV"; "VG"; "10"];
4559        ["lvresize_free"; "/dev/VG/LV"; "100"]])],
4560    "expand an LV to fill free space",
4561    "\
4562 This expands an existing logical volume C<lv> so that it fills
4563 C<pc>% of the remaining free space in the volume group.  Commonly
4564 you would call this with pc = 100 which expands the logical volume
4565 as much as possible, using all remaining free space in the volume
4566 group.");
4567
4568   ("aug_clear", (RErr, [String "augpath"]), 239, [Optional "augeas"],
4569    [], (* XXX Augeas code needs tests. *)
4570    "clear Augeas path",
4571    "\
4572 Set the value associated with C<path> to C<NULL>.  This
4573 is the same as the L<augtool(1)> C<clear> command.");
4574
4575   ("get_umask", (RInt "mask", []), 240, [FishOutput FishOutputOctal],
4576    [InitEmpty, Always, TestOutputInt (
4577       [["get_umask"]], 0o22)],
4578    "get the current umask",
4579    "\
4580 Return the current umask.  By default the umask is C<022>
4581 unless it has been set by calling C<guestfs_umask>.");
4582
4583   ("debug_upload", (RErr, [FileIn "filename"; String "tmpname"; Int "mode"]), 241, [],
4584    [],
4585    "upload a file to the appliance (internal use only)",
4586    "\
4587 The C<guestfs_debug_upload> command uploads a file to
4588 the libguestfs appliance.
4589
4590 There is no comprehensive help for this command.  You have
4591 to look at the file C<daemon/debug.c> in the libguestfs source
4592 to find out what it is for.");
4593
4594   ("base64_in", (RErr, [FileIn "base64file"; Pathname "filename"]), 242, [],
4595    [InitBasicFS, Always, TestOutput (
4596       [["base64_in"; "../images/hello.b64"; "/hello"];
4597        ["cat"; "/hello"]], "hello\n")],
4598    "upload base64-encoded data to file",
4599    "\
4600 This command uploads base64-encoded data from C<base64file>
4601 to C<filename>.");
4602
4603   ("base64_out", (RErr, [Pathname "filename"; FileOut "base64file"]), 243, [],
4604    [],
4605    "download file and encode as base64",
4606    "\
4607 This command downloads the contents of C<filename>, writing
4608 it out to local file C<base64file> encoded as base64.");
4609
4610   ("checksums_out", (RErr, [String "csumtype"; Pathname "directory"; FileOut "sumsfile"]), 244, [],
4611    [],
4612    "compute MD5, SHAx or CRC checksum of files in a directory",
4613    "\
4614 This command computes the checksums of all regular files in
4615 C<directory> and then emits a list of those checksums to
4616 the local output file C<sumsfile>.
4617
4618 This can be used for verifying the integrity of a virtual
4619 machine.  However to be properly secure you should pay
4620 attention to the output of the checksum command (it uses
4621 the ones from GNU coreutils).  In particular when the
4622 filename is not printable, coreutils uses a special
4623 backslash syntax.  For more information, see the GNU
4624 coreutils info file.");
4625
4626   ("fill_pattern", (RErr, [String "pattern"; Int "len"; Pathname "path"]), 245, [],
4627    [InitBasicFS, Always, TestOutputBuffer (
4628       [["fill_pattern"; "abcdefghijklmnopqrstuvwxyz"; "28"; "/test"];
4629        ["read_file"; "/test"]], "abcdefghijklmnopqrstuvwxyzab")],
4630    "fill a file with a repeating pattern of bytes",
4631    "\
4632 This function is like C<guestfs_fill> except that it creates
4633 a new file of length C<len> containing the repeating pattern
4634 of bytes in C<pattern>.  The pattern is truncated if necessary
4635 to ensure the length of the file is exactly C<len> bytes.");
4636
4637   ("write", (RErr, [Pathname "path"; BufferIn "content"]), 246, [ProtocolLimitWarning],
4638    [InitBasicFS, Always, TestOutput (
4639       [["write"; "/new"; "new file contents"];
4640        ["cat"; "/new"]], "new file contents");
4641     InitBasicFS, Always, TestOutput (
4642       [["write"; "/new"; "\nnew file contents\n"];
4643        ["cat"; "/new"]], "\nnew file contents\n");
4644     InitBasicFS, Always, TestOutput (
4645       [["write"; "/new"; "\n\n"];
4646        ["cat"; "/new"]], "\n\n");
4647     InitBasicFS, Always, TestOutput (
4648       [["write"; "/new"; ""];
4649        ["cat"; "/new"]], "");
4650     InitBasicFS, Always, TestOutput (
4651       [["write"; "/new"; "\n\n\n"];
4652        ["cat"; "/new"]], "\n\n\n");
4653     InitBasicFS, Always, TestOutput (
4654       [["write"; "/new"; "\n"];
4655        ["cat"; "/new"]], "\n")],
4656    "create a new file",
4657    "\
4658 This call creates a file called C<path>.  The content of the
4659 file is the string C<content> (which can contain any 8 bit data).");
4660
4661 ]
4662
4663 let all_functions = non_daemon_functions @ daemon_functions
4664
4665 (* In some places we want the functions to be displayed sorted
4666  * alphabetically, so this is useful:
4667  *)
4668 let all_functions_sorted =
4669   List.sort (fun (n1,_,_,_,_,_,_) (n2,_,_,_,_,_,_) ->
4670                compare n1 n2) all_functions
4671
4672 (* This is used to generate the src/MAX_PROC_NR file which
4673  * contains the maximum procedure number, a surrogate for the
4674  * ABI version number.  See src/Makefile.am for the details.
4675  *)
4676 let max_proc_nr =
4677   let proc_nrs = List.map (
4678     fun (_, _, proc_nr, _, _, _, _) -> proc_nr
4679   ) daemon_functions in
4680   List.fold_left max 0 proc_nrs
4681
4682 (* Field types for structures. *)
4683 type field =
4684   | FChar                       (* C 'char' (really, a 7 bit byte). *)
4685   | FString                     (* nul-terminated ASCII string, NOT NULL. *)
4686   | FBuffer                     (* opaque buffer of bytes, (char *, int) pair *)
4687   | FUInt32
4688   | FInt32
4689   | FUInt64
4690   | FInt64
4691   | FBytes                      (* Any int measure that counts bytes. *)
4692   | FUUID                       (* 32 bytes long, NOT nul-terminated. *)
4693   | FOptPercent                 (* [0..100], or -1 meaning "not present". *)
4694
4695 (* Because we generate extra parsing code for LVM command line tools,
4696  * we have to pull out the LVM columns separately here.
4697  *)
4698 let lvm_pv_cols = [
4699   "pv_name", FString;
4700   "pv_uuid", FUUID;
4701   "pv_fmt", FString;
4702   "pv_size", FBytes;
4703   "dev_size", FBytes;
4704   "pv_free", FBytes;
4705   "pv_used", FBytes;
4706   "pv_attr", FString (* XXX *);
4707   "pv_pe_count", FInt64;
4708   "pv_pe_alloc_count", FInt64;
4709   "pv_tags", FString;
4710   "pe_start", FBytes;
4711   "pv_mda_count", FInt64;
4712   "pv_mda_free", FBytes;
4713   (* Not in Fedora 10:
4714      "pv_mda_size", FBytes;
4715   *)
4716 ]
4717 let lvm_vg_cols = [
4718   "vg_name", FString;
4719   "vg_uuid", FUUID;
4720   "vg_fmt", FString;
4721   "vg_attr", FString (* XXX *);
4722   "vg_size", FBytes;
4723   "vg_free", FBytes;
4724   "vg_sysid", FString;
4725   "vg_extent_size", FBytes;
4726   "vg_extent_count", FInt64;
4727   "vg_free_count", FInt64;
4728   "max_lv", FInt64;
4729   "max_pv", FInt64;
4730   "pv_count", FInt64;
4731   "lv_count", FInt64;
4732   "snap_count", FInt64;
4733   "vg_seqno", FInt64;
4734   "vg_tags", FString;
4735   "vg_mda_count", FInt64;
4736   "vg_mda_free", FBytes;
4737   (* Not in Fedora 10:
4738      "vg_mda_size", FBytes;
4739   *)
4740 ]
4741 let lvm_lv_cols = [
4742   "lv_name", FString;
4743   "lv_uuid", FUUID;
4744   "lv_attr", FString (* XXX *);
4745   "lv_major", FInt64;
4746   "lv_minor", FInt64;
4747   "lv_kernel_major", FInt64;
4748   "lv_kernel_minor", FInt64;
4749   "lv_size", FBytes;
4750   "seg_count", FInt64;
4751   "origin", FString;
4752   "snap_percent", FOptPercent;
4753   "copy_percent", FOptPercent;
4754   "move_pv", FString;
4755   "lv_tags", FString;
4756   "mirror_log", FString;
4757   "modules", FString;
4758 ]
4759
4760 (* Names and fields in all structures (in RStruct and RStructList)
4761  * that we support.
4762  *)
4763 let structs = [
4764   (* The old RIntBool return type, only ever used for aug_defnode.  Do
4765    * not use this struct in any new code.
4766    *)
4767   "int_bool", [
4768     "i", FInt32;                (* for historical compatibility *)
4769     "b", FInt32;                (* for historical compatibility *)
4770   ];
4771
4772   (* LVM PVs, VGs, LVs. *)
4773   "lvm_pv", lvm_pv_cols;
4774   "lvm_vg", lvm_vg_cols;
4775   "lvm_lv", lvm_lv_cols;
4776
4777   (* Column names and types from stat structures.
4778    * NB. Can't use things like 'st_atime' because glibc header files
4779    * define some of these as macros.  Ugh.
4780    *)
4781   "stat", [
4782     "dev", FInt64;
4783     "ino", FInt64;
4784     "mode", FInt64;
4785     "nlink", FInt64;
4786     "uid", FInt64;
4787     "gid", FInt64;
4788     "rdev", FInt64;
4789     "size", FInt64;
4790     "blksize", FInt64;
4791     "blocks", FInt64;
4792     "atime", FInt64;
4793     "mtime", FInt64;
4794     "ctime", FInt64;
4795   ];
4796   "statvfs", [
4797     "bsize", FInt64;
4798     "frsize", FInt64;
4799     "blocks", FInt64;
4800     "bfree", FInt64;
4801     "bavail", FInt64;
4802     "files", FInt64;
4803     "ffree", FInt64;
4804     "favail", FInt64;
4805     "fsid", FInt64;
4806     "flag", FInt64;
4807     "namemax", FInt64;
4808   ];
4809
4810   (* Column names in dirent structure. *)
4811   "dirent", [
4812     "ino", FInt64;
4813     (* 'b' 'c' 'd' 'f' (FIFO) 'l' 'r' (regular file) 's' 'u' '?' *)
4814     "ftyp", FChar;
4815     "name", FString;
4816   ];
4817
4818   (* Version numbers. *)
4819   "version", [
4820     "major", FInt64;
4821     "minor", FInt64;
4822     "release", FInt64;
4823     "extra", FString;
4824   ];
4825
4826   (* Extended attribute. *)
4827   "xattr", [
4828     "attrname", FString;
4829     "attrval", FBuffer;
4830   ];
4831
4832   (* Inotify events. *)
4833   "inotify_event", [
4834     "in_wd", FInt64;
4835     "in_mask", FUInt32;
4836     "in_cookie", FUInt32;
4837     "in_name", FString;
4838   ];
4839
4840   (* Partition table entry. *)
4841   "partition", [
4842     "part_num", FInt32;
4843     "part_start", FBytes;
4844     "part_end", FBytes;
4845     "part_size", FBytes;
4846   ];
4847 ] (* end of structs *)
4848
4849 (* Ugh, Java has to be different ..
4850  * These names are also used by the Haskell bindings.
4851  *)
4852 let java_structs = [
4853   "int_bool", "IntBool";
4854   "lvm_pv", "PV";
4855   "lvm_vg", "VG";
4856   "lvm_lv", "LV";
4857   "stat", "Stat";
4858   "statvfs", "StatVFS";
4859   "dirent", "Dirent";
4860   "version", "Version";
4861   "xattr", "XAttr";
4862   "inotify_event", "INotifyEvent";
4863   "partition", "Partition";
4864 ]
4865
4866 (* What structs are actually returned. *)
4867 type rstructs_used_t = RStructOnly | RStructListOnly | RStructAndList
4868
4869 (* Returns a list of RStruct/RStructList structs that are returned
4870  * by any function.  Each element of returned list is a pair:
4871  *
4872  * (structname, RStructOnly)
4873  *    == there exists function which returns RStruct (_, structname)
4874  * (structname, RStructListOnly)
4875  *    == there exists function which returns RStructList (_, structname)
4876  * (structname, RStructAndList)
4877  *    == there are functions returning both RStruct (_, structname)
4878  *                                      and RStructList (_, structname)
4879  *)
4880 let rstructs_used_by functions =
4881   (* ||| is a "logical OR" for rstructs_used_t *)
4882   let (|||) a b =
4883     match a, b with
4884     | RStructAndList, _
4885     | _, RStructAndList -> RStructAndList
4886     | RStructOnly, RStructListOnly
4887     | RStructListOnly, RStructOnly -> RStructAndList
4888     | RStructOnly, RStructOnly -> RStructOnly
4889     | RStructListOnly, RStructListOnly -> RStructListOnly
4890   in
4891
4892   let h = Hashtbl.create 13 in
4893
4894   (* if elem->oldv exists, update entry using ||| operator,
4895    * else just add elem->newv to the hash
4896    *)
4897   let update elem newv =
4898     try  let oldv = Hashtbl.find h elem in
4899          Hashtbl.replace h elem (newv ||| oldv)
4900     with Not_found -> Hashtbl.add h elem newv
4901   in
4902
4903   List.iter (
4904     fun (_, style, _, _, _, _, _) ->
4905       match fst style with
4906       | RStruct (_, structname) -> update structname RStructOnly
4907       | RStructList (_, structname) -> update structname RStructListOnly
4908       | _ -> ()
4909   ) functions;
4910
4911   (* return key->values as a list of (key,value) *)
4912   Hashtbl.fold (fun key value xs -> (key, value) :: xs) h []
4913
4914 (* Used for testing language bindings. *)
4915 type callt =
4916   | CallString of string
4917   | CallOptString of string option
4918   | CallStringList of string list
4919   | CallInt of int
4920   | CallInt64 of int64
4921   | CallBool of bool
4922   | CallBuffer of string
4923
4924 (* Used to memoize the result of pod2text. *)
4925 let pod2text_memo_filename = "src/.pod2text.data"
4926 let pod2text_memo : ((int * string * string), string list) Hashtbl.t =
4927   try
4928     let chan = open_in pod2text_memo_filename in
4929     let v = input_value chan in
4930     close_in chan;
4931     v
4932   with
4933     _ -> Hashtbl.create 13
4934 let pod2text_memo_updated () =
4935   let chan = open_out pod2text_memo_filename in
4936   output_value chan pod2text_memo;
4937   close_out chan
4938
4939 (* Useful functions.
4940  * Note we don't want to use any external OCaml libraries which
4941  * makes this a bit harder than it should be.
4942  *)
4943 module StringMap = Map.Make (String)
4944
4945 let failwithf fs = ksprintf failwith fs
4946
4947 let unique = let i = ref 0 in fun () -> incr i; !i
4948
4949 let replace_char s c1 c2 =
4950   let s2 = String.copy s in
4951   let r = ref false in
4952   for i = 0 to String.length s2 - 1 do
4953     if String.unsafe_get s2 i = c1 then (
4954       String.unsafe_set s2 i c2;
4955       r := true
4956     )
4957   done;
4958   if not !r then s else s2
4959
4960 let isspace c =
4961   c = ' '
4962   (* || c = '\f' *) || c = '\n' || c = '\r' || c = '\t' (* || c = '\v' *)
4963
4964 let triml ?(test = isspace) str =
4965   let i = ref 0 in
4966   let n = ref (String.length str) in
4967   while !n > 0 && test str.[!i]; do
4968     decr n;
4969     incr i
4970   done;
4971   if !i = 0 then str
4972   else String.sub str !i !n
4973
4974 let trimr ?(test = isspace) str =
4975   let n = ref (String.length str) in
4976   while !n > 0 && test str.[!n-1]; do
4977     decr n
4978   done;
4979   if !n = String.length str then str
4980   else String.sub str 0 !n
4981
4982 let trim ?(test = isspace) str =
4983   trimr ~test (triml ~test str)
4984
4985 let rec find s sub =
4986   let len = String.length s in
4987   let sublen = String.length sub in
4988   let rec loop i =
4989     if i <= len-sublen then (
4990       let rec loop2 j =
4991         if j < sublen then (
4992           if s.[i+j] = sub.[j] then loop2 (j+1)
4993           else -1
4994         ) else
4995           i (* found *)
4996       in
4997       let r = loop2 0 in
4998       if r = -1 then loop (i+1) else r
4999     ) else
5000       -1 (* not found *)
5001   in
5002   loop 0
5003
5004 let rec replace_str s s1 s2 =
5005   let len = String.length s in
5006   let sublen = String.length s1 in
5007   let i = find s s1 in
5008   if i = -1 then s
5009   else (
5010     let s' = String.sub s 0 i in
5011     let s'' = String.sub s (i+sublen) (len-i-sublen) in
5012     s' ^ s2 ^ replace_str s'' s1 s2
5013   )
5014
5015 let rec string_split sep str =
5016   let len = String.length str in
5017   let seplen = String.length sep in
5018   let i = find str sep in
5019   if i = -1 then [str]
5020   else (
5021     let s' = String.sub str 0 i in
5022     let s'' = String.sub str (i+seplen) (len-i-seplen) in
5023     s' :: string_split sep s''
5024   )
5025
5026 let files_equal n1 n2 =
5027   let cmd = sprintf "cmp -s %s %s" (Filename.quote n1) (Filename.quote n2) in
5028   match Sys.command cmd with
5029   | 0 -> true
5030   | 1 -> false
5031   | i -> failwithf "%s: failed with error code %d" cmd i
5032
5033 let rec filter_map f = function
5034   | [] -> []
5035   | x :: xs ->
5036       match f x with
5037       | Some y -> y :: filter_map f xs
5038       | None -> filter_map f xs
5039
5040 let rec find_map f = function
5041   | [] -> raise Not_found
5042   | x :: xs ->
5043       match f x with
5044       | Some y -> y
5045       | None -> find_map f xs
5046
5047 let iteri f xs =
5048   let rec loop i = function
5049     | [] -> ()
5050     | x :: xs -> f i x; loop (i+1) xs
5051   in
5052   loop 0 xs
5053
5054 let mapi f xs =
5055   let rec loop i = function
5056     | [] -> []
5057     | x :: xs -> let r = f i x in r :: loop (i+1) xs
5058   in
5059   loop 0 xs
5060
5061 let count_chars c str =
5062   let count = ref 0 in
5063   for i = 0 to String.length str - 1 do
5064     if c = String.unsafe_get str i then incr count
5065   done;
5066   !count
5067
5068 let explode str =
5069   let r = ref [] in
5070   for i = 0 to String.length str - 1 do
5071     let c = String.unsafe_get str i in
5072     r := c :: !r;
5073   done;
5074   List.rev !r
5075
5076 let map_chars f str =
5077   List.map f (explode str)
5078
5079 let name_of_argt = function
5080   | Pathname n | Device n | Dev_or_Path n | String n | OptString n
5081   | StringList n | DeviceList n | Bool n | Int n | Int64 n
5082   | FileIn n | FileOut n | BufferIn n -> n
5083
5084 let java_name_of_struct typ =
5085   try List.assoc typ java_structs
5086   with Not_found ->
5087     failwithf
5088       "java_name_of_struct: no java_structs entry corresponding to %s" typ
5089
5090 let cols_of_struct typ =
5091   try List.assoc typ structs
5092   with Not_found ->
5093     failwithf "cols_of_struct: unknown struct %s" typ
5094
5095 let seq_of_test = function
5096   | TestRun s | TestOutput (s, _) | TestOutputList (s, _)
5097   | TestOutputListOfDevices (s, _)
5098   | TestOutputInt (s, _) | TestOutputIntOp (s, _, _)
5099   | TestOutputTrue s | TestOutputFalse s
5100   | TestOutputLength (s, _) | TestOutputBuffer (s, _)
5101   | TestOutputStruct (s, _)
5102   | TestLastFail s -> s
5103
5104 (* Handling for function flags. *)
5105 let protocol_limit_warning =
5106   "Because of the message protocol, there is a transfer limit
5107 of somewhere between 2MB and 4MB.  See L<guestfs(3)/PROTOCOL LIMITS>."
5108
5109 let danger_will_robinson =
5110   "B<This command is dangerous.  Without careful use you
5111 can easily destroy all your data>."
5112
5113 let deprecation_notice flags =
5114   try
5115     let alt =
5116       find_map (function DeprecatedBy str -> Some str | _ -> None) flags in
5117     let txt =
5118       sprintf "This function is deprecated.
5119 In new code, use the C<%s> call instead.
5120
5121 Deprecated functions will not be removed from the API, but the
5122 fact that they are deprecated indicates that there are problems
5123 with correct use of these functions." alt in
5124     Some txt
5125   with
5126     Not_found -> None
5127
5128 (* Create list of optional groups. *)
5129 let optgroups =
5130   let h = Hashtbl.create 13 in
5131   List.iter (
5132     fun (name, _, _, flags, _, _, _) ->
5133       List.iter (
5134         function
5135         | Optional group ->
5136             let names = try Hashtbl.find h group with Not_found -> [] in
5137             Hashtbl.replace h group (name :: names)
5138         | _ -> ()
5139       ) flags
5140   ) daemon_functions;
5141   let groups = Hashtbl.fold (fun k _ ks -> k :: ks) h [] in
5142   let groups =
5143     List.map (
5144       fun group -> group, List.sort compare (Hashtbl.find h group)
5145     ) groups in
5146   List.sort (fun x y -> compare (fst x) (fst y)) groups
5147
5148 (* Check function names etc. for consistency. *)
5149 let check_functions () =
5150   let contains_uppercase str =
5151     let len = String.length str in
5152     let rec loop i =
5153       if i >= len then false
5154       else (
5155         let c = str.[i] in
5156         if c >= 'A' && c <= 'Z' then true
5157         else loop (i+1)
5158       )
5159     in
5160     loop 0
5161   in
5162
5163   (* Check function names. *)
5164   List.iter (
5165     fun (name, _, _, _, _, _, _) ->
5166       if String.length name >= 7 && String.sub name 0 7 = "guestfs" then
5167         failwithf "function name %s does not need 'guestfs' prefix" name;
5168       if name = "" then
5169         failwithf "function name is empty";
5170       if name.[0] < 'a' || name.[0] > 'z' then
5171         failwithf "function name %s must start with lowercase a-z" name;
5172       if String.contains name '-' then
5173         failwithf "function name %s should not contain '-', use '_' instead."
5174           name
5175   ) all_functions;
5176
5177   (* Check function parameter/return names. *)
5178   List.iter (
5179     fun (name, style, _, _, _, _, _) ->
5180       let check_arg_ret_name n =
5181         if contains_uppercase n then
5182           failwithf "%s param/ret %s should not contain uppercase chars"
5183             name n;
5184         if String.contains n '-' || String.contains n '_' then
5185           failwithf "%s param/ret %s should not contain '-' or '_'"
5186             name n;
5187         if n = "value" then
5188           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;
5189         if n = "int" || n = "char" || n = "short" || n = "long" then
5190           failwithf "%s has a param/ret which conflicts with a C type (eg. 'int', 'char' etc.)" name;
5191         if n = "i" || n = "n" then
5192           failwithf "%s has a param/ret called 'i' or 'n', which will cause some conflicts in the generated code" name;
5193         if n = "argv" || n = "args" then
5194           failwithf "%s has a param/ret called 'argv' or 'args', which will cause some conflicts in the generated code" name;
5195
5196         (* List Haskell, OCaml and C keywords here.
5197          * http://www.haskell.org/haskellwiki/Keywords
5198          * http://caml.inria.fr/pub/docs/manual-ocaml/lex.html#operator-char
5199          * http://en.wikipedia.org/wiki/C_syntax#Reserved_keywords
5200          * Formatted via: cat c haskell ocaml|sort -u|grep -vE '_|^val$' \
5201          *   |perl -pe 's/(.+)/"$1";/'|fmt -70
5202          * Omitting _-containing words, since they're handled above.
5203          * Omitting the OCaml reserved word, "val", is ok,
5204          * and saves us from renaming several parameters.
5205          *)
5206         let reserved = [
5207           "and"; "as"; "asr"; "assert"; "auto"; "begin"; "break"; "case";
5208           "char"; "class"; "const"; "constraint"; "continue"; "data";
5209           "default"; "deriving"; "do"; "done"; "double"; "downto"; "else";
5210           "end"; "enum"; "exception"; "extern"; "external"; "false"; "float";
5211           "for"; "forall"; "foreign"; "fun"; "function"; "functor"; "goto";
5212           "hiding"; "if"; "import"; "in"; "include"; "infix"; "infixl";
5213           "infixr"; "inherit"; "initializer"; "inline"; "instance"; "int";
5214           "interface";
5215           "land"; "lazy"; "let"; "long"; "lor"; "lsl"; "lsr"; "lxor";
5216           "match"; "mdo"; "method"; "mod"; "module"; "mutable"; "new";
5217           "newtype"; "object"; "of"; "open"; "or"; "private"; "qualified";
5218           "rec"; "register"; "restrict"; "return"; "short"; "sig"; "signed";
5219           "sizeof"; "static"; "struct"; "switch"; "then"; "to"; "true"; "try";
5220           "type"; "typedef"; "union"; "unsigned"; "virtual"; "void";
5221           "volatile"; "when"; "where"; "while";
5222           ] in
5223         if List.mem n reserved then
5224           failwithf "%s has param/ret using reserved word %s" name n;
5225       in
5226
5227       (match fst style with
5228        | RErr -> ()
5229        | RInt n | RInt64 n | RBool n
5230        | RConstString n | RConstOptString n | RString n
5231        | RStringList n | RStruct (n, _) | RStructList (n, _)
5232        | RHashtable n | RBufferOut n ->
5233            check_arg_ret_name n
5234       );
5235       List.iter (fun arg -> check_arg_ret_name (name_of_argt arg)) (snd style)
5236   ) all_functions;
5237
5238   (* Check short descriptions. *)
5239   List.iter (
5240     fun (name, _, _, _, _, shortdesc, _) ->
5241       if shortdesc.[0] <> Char.lowercase shortdesc.[0] then
5242         failwithf "short description of %s should begin with lowercase." name;
5243       let c = shortdesc.[String.length shortdesc-1] in
5244       if c = '\n' || c = '.' then
5245         failwithf "short description of %s should not end with . or \\n." name
5246   ) all_functions;
5247
5248   (* Check long descriptions. *)
5249   List.iter (
5250     fun (name, _, _, _, _, _, longdesc) ->
5251       if longdesc.[String.length longdesc-1] = '\n' then
5252         failwithf "long description of %s should not end with \\n." name
5253   ) all_functions;
5254
5255   (* Check proc_nrs. *)
5256   List.iter (
5257     fun (name, _, proc_nr, _, _, _, _) ->
5258       if proc_nr <= 0 then
5259         failwithf "daemon function %s should have proc_nr > 0" name
5260   ) daemon_functions;
5261
5262   List.iter (
5263     fun (name, _, proc_nr, _, _, _, _) ->
5264       if proc_nr <> -1 then
5265         failwithf "non-daemon function %s should have proc_nr -1" name
5266   ) non_daemon_functions;
5267
5268   let proc_nrs =
5269     List.map (fun (name, _, proc_nr, _, _, _, _) -> name, proc_nr)
5270       daemon_functions in
5271   let proc_nrs =
5272     List.sort (fun (_,nr1) (_,nr2) -> compare nr1 nr2) proc_nrs in
5273   let rec loop = function
5274     | [] -> ()
5275     | [_] -> ()
5276     | (name1,nr1) :: ((name2,nr2) :: _ as rest) when nr1 < nr2 ->
5277         loop rest
5278     | (name1,nr1) :: (name2,nr2) :: _ ->
5279         failwithf "%s and %s have conflicting procedure numbers (%d, %d)"
5280           name1 name2 nr1 nr2
5281   in
5282   loop proc_nrs;
5283
5284   (* Check tests. *)
5285   List.iter (
5286     function
5287       (* Ignore functions that have no tests.  We generate a
5288        * warning when the user does 'make check' instead.
5289        *)
5290     | name, _, _, _, [], _, _ -> ()
5291     | name, _, _, _, tests, _, _ ->
5292         let funcs =
5293           List.map (
5294             fun (_, _, test) ->
5295               match seq_of_test test with
5296               | [] ->
5297                   failwithf "%s has a test containing an empty sequence" name
5298               | cmds -> List.map List.hd cmds
5299           ) tests in
5300         let funcs = List.flatten funcs in
5301
5302         let tested = List.mem name funcs in
5303
5304         if not tested then
5305           failwithf "function %s has tests but does not test itself" name
5306   ) all_functions
5307
5308 (* 'pr' prints to the current output file. *)
5309 let chan = ref Pervasives.stdout
5310 let lines = ref 0
5311 let pr fs =
5312   ksprintf
5313     (fun str ->
5314        let i = count_chars '\n' str in
5315        lines := !lines + i;
5316        output_string !chan str
5317     ) fs
5318
5319 let copyright_years =
5320   let this_year = 1900 + (localtime (time ())).tm_year in
5321   if this_year > 2009 then sprintf "2009-%04d" this_year else "2009"
5322
5323 (* Generate a header block in a number of standard styles. *)
5324 type comment_style =
5325     CStyle | CPlusPlusStyle | HashStyle | OCamlStyle | HaskellStyle
5326 type license = GPLv2plus | LGPLv2plus
5327
5328 let generate_header ?(extra_inputs = []) comment license =
5329   let inputs = "src/generator.ml" :: extra_inputs in
5330   let c = match comment with
5331     | CStyle ->         pr "/* "; " *"
5332     | CPlusPlusStyle -> pr "// "; "//"
5333     | HashStyle ->      pr "# ";  "#"
5334     | OCamlStyle ->     pr "(* "; " *"
5335     | HaskellStyle ->   pr "{- "; "  " in
5336   pr "libguestfs generated file\n";
5337   pr "%s WARNING: THIS FILE IS GENERATED FROM:\n" c;
5338   List.iter (pr "%s   %s\n" c) inputs;
5339   pr "%s ANY CHANGES YOU MAKE TO THIS FILE WILL BE LOST.\n" c;
5340   pr "%s\n" c;
5341   pr "%s Copyright (C) %s Red Hat Inc.\n" c copyright_years;
5342   pr "%s\n" c;
5343   (match license with
5344    | GPLv2plus ->
5345        pr "%s This program is free software; you can redistribute it and/or modify\n" c;
5346        pr "%s it under the terms of the GNU General Public License as published by\n" c;
5347        pr "%s the Free Software Foundation; either version 2 of the License, or\n" c;
5348        pr "%s (at your option) any later version.\n" c;
5349        pr "%s\n" c;
5350        pr "%s This program is distributed in the hope that it will be useful,\n" c;
5351        pr "%s but WITHOUT ANY WARRANTY; without even the implied warranty of\n" c;
5352        pr "%s MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n" c;
5353        pr "%s GNU General Public License for more details.\n" c;
5354        pr "%s\n" c;
5355        pr "%s You should have received a copy of the GNU General Public License along\n" c;
5356        pr "%s with this program; if not, write to the Free Software Foundation, Inc.,\n" c;
5357        pr "%s 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.\n" c;
5358
5359    | LGPLv2plus ->
5360        pr "%s This library is free software; you can redistribute it and/or\n" c;
5361        pr "%s modify it under the terms of the GNU Lesser General Public\n" c;
5362        pr "%s License as published by the Free Software Foundation; either\n" c;
5363        pr "%s version 2 of the License, or (at your option) any later version.\n" c;
5364        pr "%s\n" c;
5365        pr "%s This library is distributed in the hope that it will be useful,\n" c;
5366        pr "%s but WITHOUT ANY WARRANTY; without even the implied warranty of\n" c;
5367        pr "%s MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n" c;
5368        pr "%s Lesser General Public License for more details.\n" c;
5369        pr "%s\n" c;
5370        pr "%s You should have received a copy of the GNU Lesser General Public\n" c;
5371        pr "%s License along with this library; if not, write to the Free Software\n" c;
5372        pr "%s Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA\n" c;
5373   );
5374   (match comment with
5375    | CStyle -> pr " */\n"
5376    | CPlusPlusStyle
5377    | HashStyle -> ()
5378    | OCamlStyle -> pr " *)\n"
5379    | HaskellStyle -> pr "-}\n"
5380   );
5381   pr "\n"
5382
5383 (* Start of main code generation functions below this line. *)
5384
5385 (* Generate the pod documentation for the C API. *)
5386 let rec generate_actions_pod () =
5387   List.iter (
5388     fun (shortname, style, _, flags, _, _, longdesc) ->
5389       if not (List.mem NotInDocs flags) then (
5390         let name = "guestfs_" ^ shortname in
5391         pr "=head2 %s\n\n" name;
5392         pr " ";
5393         generate_prototype ~extern:false ~handle:"g" name style;
5394         pr "\n\n";
5395         pr "%s\n\n" longdesc;
5396         (match fst style with
5397          | RErr ->
5398              pr "This function returns 0 on success or -1 on error.\n\n"
5399          | RInt _ ->
5400              pr "On error this function returns -1.\n\n"
5401          | RInt64 _ ->
5402              pr "On error this function returns -1.\n\n"
5403          | RBool _ ->
5404              pr "This function returns a C truth value on success or -1 on error.\n\n"
5405          | RConstString _ ->
5406              pr "This function returns a string, or NULL on error.
5407 The string is owned by the guest handle and must I<not> be freed.\n\n"
5408          | RConstOptString _ ->
5409              pr "This function returns a string which may be NULL.
5410 There is way to return an error from this function.
5411 The string is owned by the guest handle and must I<not> be freed.\n\n"
5412          | RString _ ->
5413              pr "This function returns a string, or NULL on error.
5414 I<The caller must free the returned string after use>.\n\n"
5415          | RStringList _ ->
5416              pr "This function returns a NULL-terminated array of strings
5417 (like L<environ(3)>), or NULL if there was an error.
5418 I<The caller must free the strings and the array after use>.\n\n"
5419          | RStruct (_, typ) ->
5420              pr "This function returns a C<struct guestfs_%s *>,
5421 or NULL if there was an error.
5422 I<The caller must call C<guestfs_free_%s> after use>.\n\n" typ typ
5423          | RStructList (_, typ) ->
5424              pr "This function returns a C<struct guestfs_%s_list *>
5425 (see E<lt>guestfs-structs.hE<gt>),
5426 or NULL if there was an error.
5427 I<The caller must call C<guestfs_free_%s_list> after use>.\n\n" typ typ
5428          | RHashtable _ ->
5429              pr "This function returns a NULL-terminated array of
5430 strings, or NULL if there was an error.
5431 The array of strings will always have length C<2n+1>, where
5432 C<n> keys and values alternate, followed by the trailing NULL entry.
5433 I<The caller must free the strings and the array after use>.\n\n"
5434          | RBufferOut _ ->
5435              pr "This function returns a buffer, or NULL on error.
5436 The size of the returned buffer is written to C<*size_r>.
5437 I<The caller must free the returned buffer after use>.\n\n"
5438         );
5439         if List.mem ProtocolLimitWarning flags then
5440           pr "%s\n\n" protocol_limit_warning;
5441         if List.mem DangerWillRobinson flags then
5442           pr "%s\n\n" danger_will_robinson;
5443         match deprecation_notice flags with
5444         | None -> ()
5445         | Some txt -> pr "%s\n\n" txt
5446       )
5447   ) all_functions_sorted
5448
5449 and generate_structs_pod () =
5450   (* Structs documentation. *)
5451   List.iter (
5452     fun (typ, cols) ->
5453       pr "=head2 guestfs_%s\n" typ;
5454       pr "\n";
5455       pr " struct guestfs_%s {\n" typ;
5456       List.iter (
5457         function
5458         | name, FChar -> pr "   char %s;\n" name
5459         | name, FUInt32 -> pr "   uint32_t %s;\n" name
5460         | name, FInt32 -> pr "   int32_t %s;\n" name
5461         | name, (FUInt64|FBytes) -> pr "   uint64_t %s;\n" name
5462         | name, FInt64 -> pr "   int64_t %s;\n" name
5463         | name, FString -> pr "   char *%s;\n" name
5464         | name, FBuffer ->
5465             pr "   /* The next two fields describe a byte array. */\n";
5466             pr "   uint32_t %s_len;\n" name;
5467             pr "   char *%s;\n" name
5468         | name, FUUID ->
5469             pr "   /* The next field is NOT nul-terminated, be careful when printing it: */\n";
5470             pr "   char %s[32];\n" name
5471         | name, FOptPercent ->
5472             pr "   /* The next field is [0..100] or -1 meaning 'not present': */\n";
5473             pr "   float %s;\n" name
5474       ) cols;
5475       pr " };\n";
5476       pr " \n";
5477       pr " struct guestfs_%s_list {\n" typ;
5478       pr "   uint32_t len; /* Number of elements in list. */\n";
5479       pr "   struct guestfs_%s *val; /* Elements. */\n" typ;
5480       pr " };\n";
5481       pr " \n";
5482       pr " void guestfs_free_%s (struct guestfs_free_%s *);\n" typ typ;
5483       pr " void guestfs_free_%s_list (struct guestfs_free_%s_list *);\n"
5484         typ typ;
5485       pr "\n"
5486   ) structs
5487
5488 and generate_availability_pod () =
5489   (* Availability documentation. *)
5490   pr "=over 4\n";
5491   pr "\n";
5492   List.iter (
5493     fun (group, functions) ->
5494       pr "=item B<%s>\n" group;
5495       pr "\n";
5496       pr "The following functions:\n";
5497       List.iter (pr "L</guestfs_%s>\n") functions;
5498       pr "\n"
5499   ) optgroups;
5500   pr "=back\n";
5501   pr "\n"
5502
5503 (* Generate the protocol (XDR) file, 'guestfs_protocol.x' and
5504  * indirectly 'guestfs_protocol.h' and 'guestfs_protocol.c'.
5505  *
5506  * We have to use an underscore instead of a dash because otherwise
5507  * rpcgen generates incorrect code.
5508  *
5509  * This header is NOT exported to clients, but see also generate_structs_h.
5510  *)
5511 and generate_xdr () =
5512   generate_header CStyle LGPLv2plus;
5513
5514   (* This has to be defined to get around a limitation in Sun's rpcgen. *)
5515   pr "typedef string str<>;\n";
5516   pr "\n";
5517
5518   (* Internal structures. *)
5519   List.iter (
5520     function
5521     | typ, cols ->
5522         pr "struct guestfs_int_%s {\n" typ;
5523         List.iter (function
5524                    | name, FChar -> pr "  char %s;\n" name
5525                    | name, FString -> pr "  string %s<>;\n" name
5526                    | name, FBuffer -> pr "  opaque %s<>;\n" name
5527                    | name, FUUID -> pr "  opaque %s[32];\n" name
5528                    | name, (FInt32|FUInt32) -> pr "  int %s;\n" name
5529                    | name, (FInt64|FUInt64|FBytes) -> pr "  hyper %s;\n" name
5530                    | name, FOptPercent -> pr "  float %s;\n" name
5531                   ) cols;
5532         pr "};\n";
5533         pr "\n";
5534         pr "typedef struct guestfs_int_%s guestfs_int_%s_list<>;\n" typ typ;
5535         pr "\n";
5536   ) structs;
5537
5538   List.iter (
5539     fun (shortname, style, _, _, _, _, _) ->
5540       let name = "guestfs_" ^ shortname in
5541
5542       (match snd style with
5543        | [] -> ()
5544        | args ->
5545            pr "struct %s_args {\n" name;
5546            List.iter (
5547              function
5548              | Pathname n | Device n | Dev_or_Path n | String n ->
5549                  pr "  string %s<>;\n" n
5550              | OptString n -> pr "  str *%s;\n" n
5551              | StringList n | DeviceList n -> pr "  str %s<>;\n" n
5552              | Bool n -> pr "  bool %s;\n" n
5553              | Int n -> pr "  int %s;\n" n
5554              | Int64 n -> pr "  hyper %s;\n" n
5555              | BufferIn n ->
5556                  pr "  opaque %s<>;\n" n
5557              | FileIn _ | FileOut _ -> ()
5558            ) args;
5559            pr "};\n\n"
5560       );
5561       (match fst style with
5562        | RErr -> ()
5563        | RInt n ->
5564            pr "struct %s_ret {\n" name;
5565            pr "  int %s;\n" n;
5566            pr "};\n\n"
5567        | RInt64 n ->
5568            pr "struct %s_ret {\n" name;
5569            pr "  hyper %s;\n" n;
5570            pr "};\n\n"
5571        | RBool n ->
5572            pr "struct %s_ret {\n" name;
5573            pr "  bool %s;\n" n;
5574            pr "};\n\n"
5575        | RConstString _ | RConstOptString _ ->
5576            failwithf "RConstString|RConstOptString cannot be used by daemon functions"
5577        | RString n ->
5578            pr "struct %s_ret {\n" name;
5579            pr "  string %s<>;\n" n;
5580            pr "};\n\n"
5581        | RStringList n ->
5582            pr "struct %s_ret {\n" name;
5583            pr "  str %s<>;\n" n;
5584            pr "};\n\n"
5585        | RStruct (n, typ) ->
5586            pr "struct %s_ret {\n" name;
5587            pr "  guestfs_int_%s %s;\n" typ n;
5588            pr "};\n\n"
5589        | RStructList (n, typ) ->
5590            pr "struct %s_ret {\n" name;
5591            pr "  guestfs_int_%s_list %s;\n" typ n;
5592            pr "};\n\n"
5593        | RHashtable n ->
5594            pr "struct %s_ret {\n" name;
5595            pr "  str %s<>;\n" n;
5596            pr "};\n\n"
5597        | RBufferOut n ->
5598            pr "struct %s_ret {\n" name;
5599            pr "  opaque %s<>;\n" n;
5600            pr "};\n\n"
5601       );
5602   ) daemon_functions;
5603
5604   (* Table of procedure numbers. *)
5605   pr "enum guestfs_procedure {\n";
5606   List.iter (
5607     fun (shortname, _, proc_nr, _, _, _, _) ->
5608       pr "  GUESTFS_PROC_%s = %d,\n" (String.uppercase shortname) proc_nr
5609   ) daemon_functions;
5610   pr "  GUESTFS_PROC_NR_PROCS\n";
5611   pr "};\n";
5612   pr "\n";
5613
5614   (* Having to choose a maximum message size is annoying for several
5615    * reasons (it limits what we can do in the API), but it (a) makes
5616    * the protocol a lot simpler, and (b) provides a bound on the size
5617    * of the daemon which operates in limited memory space.
5618    *)
5619   pr "const GUESTFS_MESSAGE_MAX = %d;\n" (4 * 1024 * 1024);
5620   pr "\n";
5621
5622   (* Message header, etc. *)
5623   pr "\
5624 /* The communication protocol is now documented in the guestfs(3)
5625  * manpage.
5626  */
5627
5628 const GUESTFS_PROGRAM = 0x2000F5F5;
5629 const GUESTFS_PROTOCOL_VERSION = 1;
5630
5631 /* These constants must be larger than any possible message length. */
5632 const GUESTFS_LAUNCH_FLAG = 0xf5f55ff5;
5633 const GUESTFS_CANCEL_FLAG = 0xffffeeee;
5634
5635 enum guestfs_message_direction {
5636   GUESTFS_DIRECTION_CALL = 0,        /* client -> daemon */
5637   GUESTFS_DIRECTION_REPLY = 1        /* daemon -> client */
5638 };
5639
5640 enum guestfs_message_status {
5641   GUESTFS_STATUS_OK = 0,
5642   GUESTFS_STATUS_ERROR = 1
5643 };
5644
5645 const GUESTFS_ERROR_LEN = 256;
5646
5647 struct guestfs_message_error {
5648   string error_message<GUESTFS_ERROR_LEN>;
5649 };
5650
5651 struct guestfs_message_header {
5652   unsigned prog;                     /* GUESTFS_PROGRAM */
5653   unsigned vers;                     /* GUESTFS_PROTOCOL_VERSION */
5654   guestfs_procedure proc;            /* GUESTFS_PROC_x */
5655   guestfs_message_direction direction;
5656   unsigned serial;                   /* message serial number */
5657   guestfs_message_status status;
5658 };
5659
5660 const GUESTFS_MAX_CHUNK_SIZE = 8192;
5661
5662 struct guestfs_chunk {
5663   int cancel;                        /* if non-zero, transfer is cancelled */
5664   /* data size is 0 bytes if the transfer has finished successfully */
5665   opaque data<GUESTFS_MAX_CHUNK_SIZE>;
5666 };
5667 "
5668
5669 (* Generate the guestfs-structs.h file. *)
5670 and generate_structs_h () =
5671   generate_header CStyle LGPLv2plus;
5672
5673   (* This is a public exported header file containing various
5674    * structures.  The structures are carefully written to have
5675    * exactly the same in-memory format as the XDR structures that
5676    * we use on the wire to the daemon.  The reason for creating
5677    * copies of these structures here is just so we don't have to
5678    * export the whole of guestfs_protocol.h (which includes much
5679    * unrelated and XDR-dependent stuff that we don't want to be
5680    * public, or required by clients).
5681    *
5682    * To reiterate, we will pass these structures to and from the
5683    * client with a simple assignment or memcpy, so the format
5684    * must be identical to what rpcgen / the RFC defines.
5685    *)
5686
5687   (* Public structures. *)
5688   List.iter (
5689     fun (typ, cols) ->
5690       pr "struct guestfs_%s {\n" typ;
5691       List.iter (
5692         function
5693         | name, FChar -> pr "  char %s;\n" name
5694         | name, FString -> pr "  char *%s;\n" name
5695         | name, FBuffer ->
5696             pr "  uint32_t %s_len;\n" name;
5697             pr "  char *%s;\n" name
5698         | name, FUUID -> pr "  char %s[32]; /* this is NOT nul-terminated, be careful when printing */\n" name
5699         | name, FUInt32 -> pr "  uint32_t %s;\n" name
5700         | name, FInt32 -> pr "  int32_t %s;\n" name
5701         | name, (FUInt64|FBytes) -> pr "  uint64_t %s;\n" name
5702         | name, FInt64 -> pr "  int64_t %s;\n" name
5703         | name, FOptPercent -> pr "  float %s; /* [0..100] or -1 */\n" name
5704       ) cols;
5705       pr "};\n";
5706       pr "\n";
5707       pr "struct guestfs_%s_list {\n" typ;
5708       pr "  uint32_t len;\n";
5709       pr "  struct guestfs_%s *val;\n" typ;
5710       pr "};\n";
5711       pr "\n";
5712       pr "extern void guestfs_free_%s (struct guestfs_%s *);\n" typ typ;
5713       pr "extern void guestfs_free_%s_list (struct guestfs_%s_list *);\n" typ typ;
5714       pr "\n"
5715   ) structs
5716
5717 (* Generate the guestfs-actions.h file. *)
5718 and generate_actions_h () =
5719   generate_header CStyle LGPLv2plus;
5720   List.iter (
5721     fun (shortname, style, _, _, _, _, _) ->
5722       let name = "guestfs_" ^ shortname in
5723       generate_prototype ~single_line:true ~newline:true ~handle:"g"
5724         name style
5725   ) all_functions
5726
5727 (* Generate the guestfs-internal-actions.h file. *)
5728 and generate_internal_actions_h () =
5729   generate_header CStyle LGPLv2plus;
5730   List.iter (
5731     fun (shortname, style, _, _, _, _, _) ->
5732       let name = "guestfs__" ^ shortname in
5733       generate_prototype ~single_line:true ~newline:true ~handle:"g"
5734         name style
5735   ) non_daemon_functions
5736
5737 (* Generate the client-side dispatch stubs. *)
5738 and generate_client_actions () =
5739   generate_header CStyle LGPLv2plus;
5740
5741   pr "\
5742 #include <stdio.h>
5743 #include <stdlib.h>
5744 #include <stdint.h>
5745 #include <string.h>
5746 #include <inttypes.h>
5747
5748 #include \"guestfs.h\"
5749 #include \"guestfs-internal.h\"
5750 #include \"guestfs-internal-actions.h\"
5751 #include \"guestfs_protocol.h\"
5752
5753 #define error guestfs_error
5754 //#define perrorf guestfs_perrorf
5755 #define safe_malloc guestfs_safe_malloc
5756 #define safe_realloc guestfs_safe_realloc
5757 //#define safe_strdup guestfs_safe_strdup
5758 #define safe_memdup guestfs_safe_memdup
5759
5760 /* Check the return message from a call for validity. */
5761 static int
5762 check_reply_header (guestfs_h *g,
5763                     const struct guestfs_message_header *hdr,
5764                     unsigned int proc_nr, unsigned int serial)
5765 {
5766   if (hdr->prog != GUESTFS_PROGRAM) {
5767     error (g, \"wrong program (%%d/%%d)\", hdr->prog, GUESTFS_PROGRAM);
5768     return -1;
5769   }
5770   if (hdr->vers != GUESTFS_PROTOCOL_VERSION) {
5771     error (g, \"wrong protocol version (%%d/%%d)\",
5772            hdr->vers, GUESTFS_PROTOCOL_VERSION);
5773     return -1;
5774   }
5775   if (hdr->direction != GUESTFS_DIRECTION_REPLY) {
5776     error (g, \"unexpected message direction (%%d/%%d)\",
5777            hdr->direction, GUESTFS_DIRECTION_REPLY);
5778     return -1;
5779   }
5780   if (hdr->proc != proc_nr) {
5781     error (g, \"unexpected procedure number (%%d/%%d)\", hdr->proc, proc_nr);
5782     return -1;
5783   }
5784   if (hdr->serial != serial) {
5785     error (g, \"unexpected serial (%%d/%%d)\", hdr->serial, serial);
5786     return -1;
5787   }
5788
5789   return 0;
5790 }
5791
5792 /* Check we are in the right state to run a high-level action. */
5793 static int
5794 check_state (guestfs_h *g, const char *caller)
5795 {
5796   if (!guestfs__is_ready (g)) {
5797     if (guestfs__is_config (g) || guestfs__is_launching (g))
5798       error (g, \"%%s: call launch before using this function\\n(in guestfish, don't forget to use the 'run' command)\",
5799         caller);
5800     else
5801       error (g, \"%%s called from the wrong state, %%d != READY\",
5802         caller, guestfs__get_state (g));
5803     return -1;
5804   }
5805   return 0;
5806 }
5807
5808 ";
5809
5810   (* Generate code to generate guestfish call traces. *)
5811   let trace_call shortname style =
5812     pr "  if (guestfs__get_trace (g)) {\n";
5813
5814     let needs_i =
5815       List.exists (function
5816                    | StringList _ | DeviceList _ -> true
5817                    | _ -> false) (snd style) in
5818     if needs_i then (
5819       pr "    int i;\n";
5820       pr "\n"
5821     );
5822
5823     pr "    printf (\"%s\");\n" shortname;
5824     List.iter (
5825       function
5826       | String n                        (* strings *)
5827       | Device n
5828       | Pathname n
5829       | Dev_or_Path n
5830       | FileIn n
5831       | FileOut n
5832       | BufferIn n ->
5833           (* guestfish doesn't support string escaping, so neither do we *)
5834           pr "    printf (\" \\\"%%s\\\"\", %s);\n" n
5835       | OptString n ->                  (* string option *)
5836           pr "    if (%s) printf (\" \\\"%%s\\\"\", %s);\n" n n;
5837           pr "    else printf (\" null\");\n"
5838       | StringList n
5839       | DeviceList n ->                 (* string list *)
5840           pr "    putchar (' ');\n";
5841           pr "    putchar ('\"');\n";
5842           pr "    for (i = 0; %s[i]; ++i) {\n" n;
5843           pr "      if (i > 0) putchar (' ');\n";
5844           pr "      fputs (%s[i], stdout);\n" n;
5845           pr "    }\n";
5846           pr "    putchar ('\"');\n";
5847       | Bool n ->                       (* boolean *)
5848           pr "    fputs (%s ? \" true\" : \" false\", stdout);\n" n
5849       | Int n ->                        (* int *)
5850           pr "    printf (\" %%d\", %s);\n" n
5851       | Int64 n ->
5852           pr "    printf (\" %%\" PRIi64, %s);\n" n
5853     ) (snd style);
5854     pr "    putchar ('\\n');\n";
5855     pr "  }\n";
5856     pr "\n";
5857   in
5858
5859   (* For non-daemon functions, generate a wrapper around each function. *)
5860   List.iter (
5861     fun (shortname, style, _, _, _, _, _) ->
5862       let name = "guestfs_" ^ shortname in
5863
5864       generate_prototype ~extern:false ~semicolon:false ~newline:true
5865         ~handle:"g" name style;
5866       pr "{\n";
5867       trace_call shortname style;
5868       pr "  return guestfs__%s " shortname;
5869       generate_c_call_args ~handle:"g" style;
5870       pr ";\n";
5871       pr "}\n";
5872       pr "\n"
5873   ) non_daemon_functions;
5874
5875   (* Client-side stubs for each function. *)
5876   List.iter (
5877     fun (shortname, style, _, _, _, _, _) ->
5878       let name = "guestfs_" ^ shortname in
5879
5880       (* Generate the action stub. *)
5881       generate_prototype ~extern:false ~semicolon:false ~newline:true
5882         ~handle:"g" name style;
5883
5884       let error_code =
5885         match fst style with
5886         | RErr | RInt _ | RInt64 _ | RBool _ -> "-1"
5887         | RConstString _ | RConstOptString _ ->
5888             failwithf "RConstString|RConstOptString cannot be used by daemon functions"
5889         | RString _ | RStringList _
5890         | RStruct _ | RStructList _
5891         | RHashtable _ | RBufferOut _ ->
5892             "NULL" in
5893
5894       pr "{\n";
5895
5896       (match snd style with
5897        | [] -> ()
5898        | _ -> pr "  struct %s_args args;\n" name
5899       );
5900
5901       pr "  guestfs_message_header hdr;\n";
5902       pr "  guestfs_message_error err;\n";
5903       let has_ret =
5904         match fst style with
5905         | RErr -> false
5906         | RConstString _ | RConstOptString _ ->
5907             failwithf "RConstString|RConstOptString cannot be used by daemon functions"
5908         | RInt _ | RInt64 _
5909         | RBool _ | RString _ | RStringList _
5910         | RStruct _ | RStructList _
5911         | RHashtable _ | RBufferOut _ ->
5912             pr "  struct %s_ret ret;\n" name;
5913             true in
5914
5915       pr "  int serial;\n";
5916       pr "  int r;\n";
5917       pr "\n";
5918       trace_call shortname style;
5919       pr "  if (check_state (g, \"%s\") == -1) return %s;\n"
5920         shortname error_code;
5921       pr "  guestfs___set_busy (g);\n";
5922       pr "\n";
5923
5924       (* Send the main header and arguments. *)
5925       (match snd style with
5926        | [] ->
5927            pr "  serial = guestfs___send (g, GUESTFS_PROC_%s, NULL, NULL);\n"
5928              (String.uppercase shortname)
5929        | args ->
5930            List.iter (
5931              function
5932              | Pathname n | Device n | Dev_or_Path n | String n ->
5933                  pr "  args.%s = (char *) %s;\n" n n
5934              | OptString n ->
5935                  pr "  args.%s = %s ? (char **) &%s : NULL;\n" n n n
5936              | StringList n | DeviceList n ->
5937                  pr "  args.%s.%s_val = (char **) %s;\n" n n n;
5938                  pr "  for (args.%s.%s_len = 0; %s[args.%s.%s_len]; args.%s.%s_len++) ;\n" n n n n n n n;
5939              | Bool n ->
5940                  pr "  args.%s = %s;\n" n n
5941              | Int n ->
5942                  pr "  args.%s = %s;\n" n n
5943              | Int64 n ->
5944                  pr "  args.%s = %s;\n" n n
5945              | FileIn _ | FileOut _ -> ()
5946              | BufferIn n ->
5947                  pr "  /* Just catch grossly large sizes. XDR encoding will make this precise. */\n";
5948                  pr "  if (%s_size >= GUESTFS_MESSAGE_MAX) {\n" n;
5949                  pr "    error (g, \"%%s: size of input buffer too large\", \"%s\");\n"
5950                    shortname;
5951                  pr "    guestfs___end_busy (g);\n";
5952                  pr "    return %s;\n" error_code;
5953                  pr "  }\n";
5954                  pr "  args.%s.%s_val = (char *) %s;\n" n n n;
5955                  pr "  args.%s.%s_len = %s_size;\n" n n n
5956            ) args;
5957            pr "  serial = guestfs___send (g, GUESTFS_PROC_%s,\n"
5958              (String.uppercase shortname);
5959            pr "        (xdrproc_t) xdr_%s_args, (char *) &args);\n"
5960              name;
5961       );
5962       pr "  if (serial == -1) {\n";
5963       pr "    guestfs___end_busy (g);\n";
5964       pr "    return %s;\n" error_code;
5965       pr "  }\n";
5966       pr "\n";
5967
5968       (* Send any additional files (FileIn) requested. *)
5969       let need_read_reply_label = ref false in
5970       List.iter (
5971         function
5972         | FileIn n ->
5973             pr "  r = guestfs___send_file (g, %s);\n" n;
5974             pr "  if (r == -1) {\n";
5975             pr "    guestfs___end_busy (g);\n";
5976             pr "    return %s;\n" error_code;
5977             pr "  }\n";
5978             pr "  if (r == -2) /* daemon cancelled */\n";
5979             pr "    goto read_reply;\n";
5980             need_read_reply_label := true;
5981             pr "\n";
5982         | _ -> ()
5983       ) (snd style);
5984
5985       (* Wait for the reply from the remote end. *)
5986       if !need_read_reply_label then pr " read_reply:\n";
5987       pr "  memset (&hdr, 0, sizeof hdr);\n";
5988       pr "  memset (&err, 0, sizeof err);\n";
5989       if has_ret then pr "  memset (&ret, 0, sizeof ret);\n";
5990       pr "\n";
5991       pr "  r = guestfs___recv (g, \"%s\", &hdr, &err,\n        " shortname;
5992       if not has_ret then
5993         pr "NULL, NULL"
5994       else
5995         pr "(xdrproc_t) xdr_guestfs_%s_ret, (char *) &ret" shortname;
5996       pr ");\n";
5997
5998       pr "  if (r == -1) {\n";
5999       pr "    guestfs___end_busy (g);\n";
6000       pr "    return %s;\n" error_code;
6001       pr "  }\n";
6002       pr "\n";
6003
6004       pr "  if (check_reply_header (g, &hdr, GUESTFS_PROC_%s, serial) == -1) {\n"
6005         (String.uppercase shortname);
6006       pr "    guestfs___end_busy (g);\n";
6007       pr "    return %s;\n" error_code;
6008       pr "  }\n";
6009       pr "\n";
6010
6011       pr "  if (hdr.status == GUESTFS_STATUS_ERROR) {\n";
6012       pr "    error (g, \"%%s: %%s\", \"%s\", err.error_message);\n" shortname;
6013       pr "    free (err.error_message);\n";
6014       pr "    guestfs___end_busy (g);\n";
6015       pr "    return %s;\n" error_code;
6016       pr "  }\n";
6017       pr "\n";
6018
6019       (* Expecting to receive further files (FileOut)? *)
6020       List.iter (
6021         function
6022         | FileOut n ->
6023             pr "  if (guestfs___recv_file (g, %s) == -1) {\n" n;
6024             pr "    guestfs___end_busy (g);\n";
6025             pr "    return %s;\n" error_code;
6026             pr "  }\n";
6027             pr "\n";
6028         | _ -> ()
6029       ) (snd style);
6030
6031       pr "  guestfs___end_busy (g);\n";
6032
6033       (match fst style with
6034        | RErr -> pr "  return 0;\n"
6035        | RInt n | RInt64 n | RBool n ->
6036            pr "  return ret.%s;\n" n
6037        | RConstString _ | RConstOptString _ ->
6038            failwithf "RConstString|RConstOptString cannot be used by daemon functions"
6039        | RString n ->
6040            pr "  return ret.%s; /* caller will free */\n" n
6041        | RStringList n | RHashtable n ->
6042            pr "  /* caller will free this, but we need to add a NULL entry */\n";
6043            pr "  ret.%s.%s_val =\n" n n;
6044            pr "    safe_realloc (g, ret.%s.%s_val,\n" n n;
6045            pr "                  sizeof (char *) * (ret.%s.%s_len + 1));\n"
6046              n n;
6047            pr "  ret.%s.%s_val[ret.%s.%s_len] = NULL;\n" n n n n;
6048            pr "  return ret.%s.%s_val;\n" n n
6049        | RStruct (n, _) ->
6050            pr "  /* caller will free this */\n";
6051            pr "  return safe_memdup (g, &ret.%s, sizeof (ret.%s));\n" n n
6052        | RStructList (n, _) ->
6053            pr "  /* caller will free this */\n";
6054            pr "  return safe_memdup (g, &ret.%s, sizeof (ret.%s));\n" n n
6055        | RBufferOut n ->
6056            pr "  /* RBufferOut is tricky: If the buffer is zero-length, then\n";
6057            pr "   * _val might be NULL here.  To make the API saner for\n";
6058            pr "   * callers, we turn this case into a unique pointer (using\n";
6059            pr "   * malloc(1)).\n";
6060            pr "   */\n";
6061            pr "  if (ret.%s.%s_len > 0) {\n" n n;
6062            pr "    *size_r = ret.%s.%s_len;\n" n n;
6063            pr "    return ret.%s.%s_val; /* caller will free */\n" n n;
6064            pr "  } else {\n";
6065            pr "    free (ret.%s.%s_val);\n" n n;
6066            pr "    char *p = safe_malloc (g, 1);\n";
6067            pr "    *size_r = ret.%s.%s_len;\n" n n;
6068            pr "    return p;\n";
6069            pr "  }\n";
6070       );
6071
6072       pr "}\n\n"
6073   ) daemon_functions;
6074
6075   (* Functions to free structures. *)
6076   pr "/* Structure-freeing functions.  These rely on the fact that the\n";
6077   pr " * structure format is identical to the XDR format.  See note in\n";
6078   pr " * generator.ml.\n";
6079   pr " */\n";
6080   pr "\n";
6081
6082   List.iter (
6083     fun (typ, _) ->
6084       pr "void\n";
6085       pr "guestfs_free_%s (struct guestfs_%s *x)\n" typ typ;
6086       pr "{\n";
6087       pr "  xdr_free ((xdrproc_t) xdr_guestfs_int_%s, (char *) x);\n" typ;
6088       pr "  free (x);\n";
6089       pr "}\n";
6090       pr "\n";
6091
6092       pr "void\n";
6093       pr "guestfs_free_%s_list (struct guestfs_%s_list *x)\n" typ typ;
6094       pr "{\n";
6095       pr "  xdr_free ((xdrproc_t) xdr_guestfs_int_%s_list, (char *) x);\n" typ;
6096       pr "  free (x);\n";
6097       pr "}\n";
6098       pr "\n";
6099
6100   ) structs;
6101
6102 (* Generate daemon/actions.h. *)
6103 and generate_daemon_actions_h () =
6104   generate_header CStyle GPLv2plus;
6105
6106   pr "#include \"../src/guestfs_protocol.h\"\n";
6107   pr "\n";
6108
6109   List.iter (
6110     fun (name, style, _, _, _, _, _) ->
6111       generate_prototype
6112         ~single_line:true ~newline:true ~in_daemon:true ~prefix:"do_"
6113         name style;
6114   ) daemon_functions
6115
6116 (* Generate the linker script which controls the visibility of
6117  * symbols in the public ABI and ensures no other symbols get
6118  * exported accidentally.
6119  *)
6120 and generate_linker_script () =
6121   generate_header HashStyle GPLv2plus;
6122
6123   let globals = [
6124     "guestfs_create";
6125     "guestfs_close";
6126     "guestfs_get_error_handler";
6127     "guestfs_get_out_of_memory_handler";
6128     "guestfs_last_error";
6129     "guestfs_set_error_handler";
6130     "guestfs_set_launch_done_callback";
6131     "guestfs_set_log_message_callback";
6132     "guestfs_set_out_of_memory_handler";
6133     "guestfs_set_subprocess_quit_callback";
6134
6135     (* Unofficial parts of the API: the bindings code use these
6136      * functions, so it is useful to export them.
6137      *)
6138     "guestfs_safe_calloc";
6139     "guestfs_safe_malloc";
6140   ] in
6141   let functions =
6142     List.map (fun (name, _, _, _, _, _, _) -> "guestfs_" ^ name)
6143       all_functions in
6144   let structs =
6145     List.concat (
6146       List.map (fun (typ, _) ->
6147                   ["guestfs_free_" ^ typ; "guestfs_free_" ^ typ ^ "_list"])
6148         structs
6149     ) in
6150   let globals = List.sort compare (globals @ functions @ structs) in
6151
6152   pr "{\n";
6153   pr "    global:\n";
6154   List.iter (pr "        %s;\n") globals;
6155   pr "\n";
6156
6157   pr "    local:\n";
6158   pr "        *;\n";
6159   pr "};\n"
6160
6161 (* Generate the server-side stubs. *)
6162 and generate_daemon_actions () =
6163   generate_header CStyle GPLv2plus;
6164
6165   pr "#include <config.h>\n";
6166   pr "\n";
6167   pr "#include <stdio.h>\n";
6168   pr "#include <stdlib.h>\n";
6169   pr "#include <string.h>\n";
6170   pr "#include <inttypes.h>\n";
6171   pr "#include <rpc/types.h>\n";
6172   pr "#include <rpc/xdr.h>\n";
6173   pr "\n";
6174   pr "#include \"daemon.h\"\n";
6175   pr "#include \"c-ctype.h\"\n";
6176   pr "#include \"../src/guestfs_protocol.h\"\n";
6177   pr "#include \"actions.h\"\n";
6178   pr "\n";
6179
6180   List.iter (
6181     fun (name, style, _, _, _, _, _) ->
6182       (* Generate server-side stubs. *)
6183       pr "static void %s_stub (XDR *xdr_in)\n" name;
6184       pr "{\n";
6185       let error_code =
6186         match fst style with
6187         | RErr | RInt _ -> pr "  int r;\n"; "-1"
6188         | RInt64 _ -> pr "  int64_t r;\n"; "-1"
6189         | RBool _ -> pr "  int r;\n"; "-1"
6190         | RConstString _ | RConstOptString _ ->
6191             failwithf "RConstString|RConstOptString cannot be used by daemon functions"
6192         | RString _ -> pr "  char *r;\n"; "NULL"
6193         | RStringList _ | RHashtable _ -> pr "  char **r;\n"; "NULL"
6194         | RStruct (_, typ) -> pr "  guestfs_int_%s *r;\n" typ; "NULL"
6195         | RStructList (_, typ) -> pr "  guestfs_int_%s_list *r;\n" typ; "NULL"
6196         | RBufferOut _ ->
6197             pr "  size_t size = 1;\n";
6198             pr "  char *r;\n";
6199             "NULL" in
6200
6201       (match snd style with
6202        | [] -> ()
6203        | args ->
6204            pr "  struct guestfs_%s_args args;\n" name;
6205            List.iter (
6206              function
6207              | Device n | Dev_or_Path n
6208              | Pathname n
6209              | String n -> ()
6210              | OptString n -> pr "  char *%s;\n" n
6211              | StringList n | DeviceList n -> pr "  char **%s;\n" n
6212              | Bool n -> pr "  int %s;\n" n
6213              | Int n -> pr "  int %s;\n" n
6214              | Int64 n -> pr "  int64_t %s;\n" n
6215              | FileIn _ | FileOut _ -> ()
6216              | BufferIn n ->
6217                  pr "  const char *%s;\n" n;
6218                  pr "  size_t %s_size;\n" n
6219            ) args
6220       );
6221       pr "\n";
6222
6223       let is_filein =
6224         List.exists (function FileIn _ -> true | _ -> false) (snd style) in
6225
6226       (match snd style with
6227        | [] -> ()
6228        | args ->
6229            pr "  memset (&args, 0, sizeof args);\n";
6230            pr "\n";
6231            pr "  if (!xdr_guestfs_%s_args (xdr_in, &args)) {\n" name;
6232            if is_filein then
6233              pr "    if (cancel_receive () != -2)\n";
6234            pr "      reply_with_error (\"daemon failed to decode procedure arguments\");\n";
6235            pr "    goto done;\n";
6236            pr "  }\n";
6237            let pr_args n =
6238              pr "  char *%s = args.%s;\n" n n
6239            in
6240            let pr_list_handling_code n =
6241              pr "  %s = realloc (args.%s.%s_val,\n" n n n;
6242              pr "                sizeof (char *) * (args.%s.%s_len+1));\n" n n;
6243              pr "  if (%s == NULL) {\n" n;
6244              if is_filein then
6245                pr "    if (cancel_receive () != -2)\n";
6246              pr "      reply_with_perror (\"realloc\");\n";
6247              pr "    goto done;\n";
6248              pr "  }\n";
6249              pr "  %s[args.%s.%s_len] = NULL;\n" n n n;
6250              pr "  args.%s.%s_val = %s;\n" n n n;
6251            in
6252            List.iter (
6253              function
6254              | Pathname n ->
6255                  pr_args n;
6256                  pr "  ABS_PATH (%s, %s, goto done);\n"
6257                    n (if is_filein then "cancel_receive ()" else "0");
6258              | Device n ->
6259                  pr_args n;
6260                  pr "  RESOLVE_DEVICE (%s, %s, goto done);\n"
6261                    n (if is_filein then "cancel_receive ()" else "0");
6262              | Dev_or_Path n ->
6263                  pr_args n;
6264                  pr "  REQUIRE_ROOT_OR_RESOLVE_DEVICE (%s, %s, goto done);\n"
6265                    n (if is_filein then "cancel_receive ()" else "0");
6266              | String n -> pr_args n
6267              | OptString n -> pr "  %s = args.%s ? *args.%s : NULL;\n" n n n
6268              | StringList n ->
6269                  pr_list_handling_code n;
6270              | DeviceList n ->
6271                  pr_list_handling_code n;
6272                  pr "  /* Ensure that each is a device,\n";
6273                  pr "   * and perform device name translation. */\n";
6274                  pr "  { int pvi; for (pvi = 0; physvols[pvi] != NULL; ++pvi)\n";
6275                  pr "    RESOLVE_DEVICE (physvols[pvi], %s, goto done);\n"
6276                    (if is_filein then "cancel_receive ()" else "0");
6277                  pr "  }\n";
6278              | Bool n -> pr "  %s = args.%s;\n" n n
6279              | Int n -> pr "  %s = args.%s;\n" n n
6280              | Int64 n -> pr "  %s = args.%s;\n" n n
6281              | FileIn _ | FileOut _ -> ()
6282              | BufferIn n ->
6283                  pr "  %s = args.%s.%s_val;\n" n n n;
6284                  pr "  %s_size = args.%s.%s_len;\n" n n n
6285            ) args;
6286            pr "\n"
6287       );
6288
6289       (* this is used at least for do_equal *)
6290       if List.exists (function Pathname _ -> true | _ -> false) (snd style) then (
6291         (* Emit NEED_ROOT just once, even when there are two or
6292            more Pathname args *)
6293         pr "  NEED_ROOT (%s, goto done);\n"
6294           (if is_filein then "cancel_receive ()" else "0");
6295       );
6296
6297       (* Don't want to call the impl with any FileIn or FileOut
6298        * parameters, since these go "outside" the RPC protocol.
6299        *)
6300       let args' =
6301         List.filter (function FileIn _ | FileOut _ -> false | _ -> true)
6302           (snd style) in
6303       pr "  r = do_%s " name;
6304       generate_c_call_args (fst style, args');
6305       pr ";\n";
6306
6307       (match fst style with
6308        | RErr | RInt _ | RInt64 _ | RBool _
6309        | RConstString _ | RConstOptString _
6310        | RString _ | RStringList _ | RHashtable _
6311        | RStruct (_, _) | RStructList (_, _) ->
6312            pr "  if (r == %s)\n" error_code;
6313            pr "    /* do_%s has already called reply_with_error */\n" name;
6314            pr "    goto done;\n";
6315            pr "\n"
6316        | RBufferOut _ ->
6317            pr "  /* size == 0 && r == NULL could be a non-error case (just\n";
6318            pr "   * an ordinary zero-length buffer), so be careful ...\n";
6319            pr "   */\n";
6320            pr "  if (size == 1 && r == %s)\n" error_code;
6321            pr "    /* do_%s has already called reply_with_error */\n" name;
6322            pr "    goto done;\n";
6323            pr "\n"
6324       );
6325
6326       (* If there are any FileOut parameters, then the impl must
6327        * send its own reply.
6328        *)
6329       let no_reply =
6330         List.exists (function FileOut _ -> true | _ -> false) (snd style) in
6331       if no_reply then
6332         pr "  /* do_%s has already sent a reply */\n" name
6333       else (
6334         match fst style with
6335         | RErr -> pr "  reply (NULL, NULL);\n"
6336         | RInt n | RInt64 n | RBool n ->
6337             pr "  struct guestfs_%s_ret ret;\n" name;
6338             pr "  ret.%s = r;\n" n;
6339             pr "  reply ((xdrproc_t) &xdr_guestfs_%s_ret, (char *) &ret);\n"
6340               name
6341         | RConstString _ | RConstOptString _ ->
6342             failwithf "RConstString|RConstOptString cannot be used by daemon functions"
6343         | RString n ->
6344             pr "  struct guestfs_%s_ret ret;\n" name;
6345             pr "  ret.%s = r;\n" n;
6346             pr "  reply ((xdrproc_t) &xdr_guestfs_%s_ret, (char *) &ret);\n"
6347               name;
6348             pr "  free (r);\n"
6349         | RStringList n | RHashtable n ->
6350             pr "  struct guestfs_%s_ret ret;\n" name;
6351             pr "  ret.%s.%s_len = count_strings (r);\n" n n;
6352             pr "  ret.%s.%s_val = r;\n" n n;
6353             pr "  reply ((xdrproc_t) &xdr_guestfs_%s_ret, (char *) &ret);\n"
6354               name;
6355             pr "  free_strings (r);\n"
6356         | RStruct (n, _) ->
6357             pr "  struct guestfs_%s_ret ret;\n" name;
6358             pr "  ret.%s = *r;\n" n;
6359             pr "  reply ((xdrproc_t) xdr_guestfs_%s_ret, (char *) &ret);\n"
6360               name;
6361             pr "  xdr_free ((xdrproc_t) xdr_guestfs_%s_ret, (char *) &ret);\n"
6362               name
6363         | RStructList (n, _) ->
6364             pr "  struct guestfs_%s_ret ret;\n" name;
6365             pr "  ret.%s = *r;\n" n;
6366             pr "  reply ((xdrproc_t) xdr_guestfs_%s_ret, (char *) &ret);\n"
6367               name;
6368             pr "  xdr_free ((xdrproc_t) xdr_guestfs_%s_ret, (char *) &ret);\n"
6369               name
6370         | RBufferOut n ->
6371             pr "  struct guestfs_%s_ret ret;\n" name;
6372             pr "  ret.%s.%s_val = r;\n" n n;
6373             pr "  ret.%s.%s_len = size;\n" n n;
6374             pr "  reply ((xdrproc_t) &xdr_guestfs_%s_ret, (char *) &ret);\n"
6375               name;
6376             pr "  free (r);\n"
6377       );
6378
6379       (* Free the args. *)
6380       pr "done:\n";
6381       (match snd style with
6382        | [] -> ()
6383        | _ ->
6384            pr "  xdr_free ((xdrproc_t) xdr_guestfs_%s_args, (char *) &args);\n"
6385              name
6386       );
6387       pr "  return;\n";
6388       pr "}\n\n";
6389   ) daemon_functions;
6390
6391   (* Dispatch function. *)
6392   pr "void dispatch_incoming_message (XDR *xdr_in)\n";
6393   pr "{\n";
6394   pr "  switch (proc_nr) {\n";
6395
6396   List.iter (
6397     fun (name, style, _, _, _, _, _) ->
6398       pr "    case GUESTFS_PROC_%s:\n" (String.uppercase name);
6399       pr "      %s_stub (xdr_in);\n" name;
6400       pr "      break;\n"
6401   ) daemon_functions;
6402
6403   pr "    default:\n";
6404   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";
6405   pr "  }\n";
6406   pr "}\n";
6407   pr "\n";
6408
6409   (* LVM columns and tokenization functions. *)
6410   (* XXX This generates crap code.  We should rethink how we
6411    * do this parsing.
6412    *)
6413   List.iter (
6414     function
6415     | typ, cols ->
6416         pr "static const char *lvm_%s_cols = \"%s\";\n"
6417           typ (String.concat "," (List.map fst cols));
6418         pr "\n";
6419
6420         pr "static int lvm_tokenize_%s (char *str, guestfs_int_lvm_%s *r)\n" typ typ;
6421         pr "{\n";
6422         pr "  char *tok, *p, *next;\n";
6423         pr "  int i, j;\n";
6424         pr "\n";
6425         (*
6426           pr "  fprintf (stderr, \"%%s: <<%%s>>\\n\", __func__, str);\n";
6427           pr "\n";
6428         *)
6429         pr "  if (!str) {\n";
6430         pr "    fprintf (stderr, \"%%s: failed: passed a NULL string\\n\", __func__);\n";
6431         pr "    return -1;\n";
6432         pr "  }\n";
6433         pr "  if (!*str || c_isspace (*str)) {\n";
6434         pr "    fprintf (stderr, \"%%s: failed: passed a empty string or one beginning with whitespace\\n\", __func__);\n";
6435         pr "    return -1;\n";
6436         pr "  }\n";
6437         pr "  tok = str;\n";
6438         List.iter (
6439           fun (name, coltype) ->
6440             pr "  if (!tok) {\n";
6441             pr "    fprintf (stderr, \"%%s: failed: string finished early, around token %%s\\n\", __func__, \"%s\");\n" name;
6442             pr "    return -1;\n";
6443             pr "  }\n";
6444             pr "  p = strchrnul (tok, ',');\n";
6445             pr "  if (*p) next = p+1; else next = NULL;\n";
6446             pr "  *p = '\\0';\n";
6447             (match coltype with
6448              | FString ->
6449                  pr "  r->%s = strdup (tok);\n" name;
6450                  pr "  if (r->%s == NULL) {\n" name;
6451                  pr "    perror (\"strdup\");\n";
6452                  pr "    return -1;\n";
6453                  pr "  }\n"
6454              | FUUID ->
6455                  pr "  for (i = j = 0; i < 32; ++j) {\n";
6456                  pr "    if (tok[j] == '\\0') {\n";
6457                  pr "      fprintf (stderr, \"%%s: failed to parse UUID from '%%s'\\n\", __func__, tok);\n";
6458                  pr "      return -1;\n";
6459                  pr "    } else if (tok[j] != '-')\n";
6460                  pr "      r->%s[i++] = tok[j];\n" name;
6461                  pr "  }\n";
6462              | FBytes ->
6463                  pr "  if (sscanf (tok, \"%%\"SCNu64, &r->%s) != 1) {\n" name;
6464                  pr "    fprintf (stderr, \"%%s: failed to parse size '%%s' from token %%s\\n\", __func__, tok, \"%s\");\n" name;
6465                  pr "    return -1;\n";
6466                  pr "  }\n";
6467              | FInt64 ->
6468                  pr "  if (sscanf (tok, \"%%\"SCNi64, &r->%s) != 1) {\n" name;
6469                  pr "    fprintf (stderr, \"%%s: failed to parse int '%%s' from token %%s\\n\", __func__, tok, \"%s\");\n" name;
6470                  pr "    return -1;\n";
6471                  pr "  }\n";
6472              | FOptPercent ->
6473                  pr "  if (tok[0] == '\\0')\n";
6474                  pr "    r->%s = -1;\n" name;
6475                  pr "  else if (sscanf (tok, \"%%f\", &r->%s) != 1) {\n" name;
6476                  pr "    fprintf (stderr, \"%%s: failed to parse float '%%s' from token %%s\\n\", __func__, tok, \"%s\");\n" name;
6477                  pr "    return -1;\n";
6478                  pr "  }\n";
6479              | FBuffer | FInt32 | FUInt32 | FUInt64 | FChar ->
6480                  assert false (* can never be an LVM column *)
6481             );
6482             pr "  tok = next;\n";
6483         ) cols;
6484
6485         pr "  if (tok != NULL) {\n";
6486         pr "    fprintf (stderr, \"%%s: failed: extra tokens at end of string\\n\", __func__);\n";
6487         pr "    return -1;\n";
6488         pr "  }\n";
6489         pr "  return 0;\n";
6490         pr "}\n";
6491         pr "\n";
6492
6493         pr "guestfs_int_lvm_%s_list *\n" typ;
6494         pr "parse_command_line_%ss (void)\n" typ;
6495         pr "{\n";
6496         pr "  char *out, *err;\n";
6497         pr "  char *p, *pend;\n";
6498         pr "  int r, i;\n";
6499         pr "  guestfs_int_lvm_%s_list *ret;\n" typ;
6500         pr "  void *newp;\n";
6501         pr "\n";
6502         pr "  ret = malloc (sizeof *ret);\n";
6503         pr "  if (!ret) {\n";
6504         pr "    reply_with_perror (\"malloc\");\n";
6505         pr "    return NULL;\n";
6506         pr "  }\n";
6507         pr "\n";
6508         pr "  ret->guestfs_int_lvm_%s_list_len = 0;\n" typ;
6509         pr "  ret->guestfs_int_lvm_%s_list_val = NULL;\n" typ;
6510         pr "\n";
6511         pr "  r = command (&out, &err,\n";
6512         pr "           \"lvm\", \"%ss\",\n" typ;
6513         pr "           \"-o\", lvm_%s_cols, \"--unbuffered\", \"--noheadings\",\n" typ;
6514         pr "           \"--nosuffix\", \"--separator\", \",\", \"--units\", \"b\", NULL);\n";
6515         pr "  if (r == -1) {\n";
6516         pr "    reply_with_error (\"%%s\", err);\n";
6517         pr "    free (out);\n";
6518         pr "    free (err);\n";
6519         pr "    free (ret);\n";
6520         pr "    return NULL;\n";
6521         pr "  }\n";
6522         pr "\n";
6523         pr "  free (err);\n";
6524         pr "\n";
6525         pr "  /* Tokenize each line of the output. */\n";
6526         pr "  p = out;\n";
6527         pr "  i = 0;\n";
6528         pr "  while (p) {\n";
6529         pr "    pend = strchr (p, '\\n');       /* Get the next line of output. */\n";
6530         pr "    if (pend) {\n";
6531         pr "      *pend = '\\0';\n";
6532         pr "      pend++;\n";
6533         pr "    }\n";
6534         pr "\n";
6535         pr "    while (*p && c_isspace (*p))    /* Skip any leading whitespace. */\n";
6536         pr "      p++;\n";
6537         pr "\n";
6538         pr "    if (!*p) {                      /* Empty line?  Skip it. */\n";
6539         pr "      p = pend;\n";
6540         pr "      continue;\n";
6541         pr "    }\n";
6542         pr "\n";
6543         pr "    /* Allocate some space to store this next entry. */\n";
6544         pr "    newp = realloc (ret->guestfs_int_lvm_%s_list_val,\n" typ;
6545         pr "                sizeof (guestfs_int_lvm_%s) * (i+1));\n" typ;
6546         pr "    if (newp == NULL) {\n";
6547         pr "      reply_with_perror (\"realloc\");\n";
6548         pr "      free (ret->guestfs_int_lvm_%s_list_val);\n" typ;
6549         pr "      free (ret);\n";
6550         pr "      free (out);\n";
6551         pr "      return NULL;\n";
6552         pr "    }\n";
6553         pr "    ret->guestfs_int_lvm_%s_list_val = newp;\n" typ;
6554         pr "\n";
6555         pr "    /* Tokenize the next entry. */\n";
6556         pr "    r = lvm_tokenize_%s (p, &ret->guestfs_int_lvm_%s_list_val[i]);\n" typ typ;
6557         pr "    if (r == -1) {\n";
6558         pr "      reply_with_error (\"failed to parse output of '%ss' command\");\n" typ;
6559         pr "      free (ret->guestfs_int_lvm_%s_list_val);\n" typ;
6560         pr "      free (ret);\n";
6561         pr "      free (out);\n";
6562         pr "      return NULL;\n";
6563         pr "    }\n";
6564         pr "\n";
6565         pr "    ++i;\n";
6566         pr "    p = pend;\n";
6567         pr "  }\n";
6568         pr "\n";
6569         pr "  ret->guestfs_int_lvm_%s_list_len = i;\n" typ;
6570         pr "\n";
6571         pr "  free (out);\n";
6572         pr "  return ret;\n";
6573         pr "}\n"
6574
6575   ) ["pv", lvm_pv_cols; "vg", lvm_vg_cols; "lv", lvm_lv_cols]
6576
6577 (* Generate a list of function names, for debugging in the daemon.. *)
6578 and generate_daemon_names () =
6579   generate_header CStyle GPLv2plus;
6580
6581   pr "#include <config.h>\n";
6582   pr "\n";
6583   pr "#include \"daemon.h\"\n";
6584   pr "\n";
6585
6586   pr "/* This array is indexed by proc_nr.  See guestfs_protocol.x. */\n";
6587   pr "const char *function_names[] = {\n";
6588   List.iter (
6589     fun (name, _, proc_nr, _, _, _, _) -> pr "  [%d] = \"%s\",\n" proc_nr name
6590   ) daemon_functions;
6591   pr "};\n";
6592
6593 (* Generate the optional groups for the daemon to implement
6594  * guestfs_available.
6595  *)
6596 and generate_daemon_optgroups_c () =
6597   generate_header CStyle GPLv2plus;
6598
6599   pr "#include <config.h>\n";
6600   pr "\n";
6601   pr "#include \"daemon.h\"\n";
6602   pr "#include \"optgroups.h\"\n";
6603   pr "\n";
6604
6605   pr "struct optgroup optgroups[] = {\n";
6606   List.iter (
6607     fun (group, _) ->
6608       pr "  { \"%s\", optgroup_%s_available },\n" group group
6609   ) optgroups;
6610   pr "  { NULL, NULL }\n";
6611   pr "};\n"
6612
6613 and generate_daemon_optgroups_h () =
6614   generate_header CStyle GPLv2plus;
6615
6616   List.iter (
6617     fun (group, _) ->
6618       pr "extern int optgroup_%s_available (void);\n" group
6619   ) optgroups
6620
6621 (* Generate the tests. *)
6622 and generate_tests () =
6623   generate_header CStyle GPLv2plus;
6624
6625   pr "\
6626 #include <stdio.h>
6627 #include <stdlib.h>
6628 #include <string.h>
6629 #include <unistd.h>
6630 #include <sys/types.h>
6631 #include <fcntl.h>
6632
6633 #include \"guestfs.h\"
6634 #include \"guestfs-internal.h\"
6635
6636 static guestfs_h *g;
6637 static int suppress_error = 0;
6638
6639 static void print_error (guestfs_h *g, void *data, const char *msg)
6640 {
6641   if (!suppress_error)
6642     fprintf (stderr, \"%%s\\n\", msg);
6643 }
6644
6645 /* FIXME: nearly identical code appears in fish.c */
6646 static void print_strings (char *const *argv)
6647 {
6648   int argc;
6649
6650   for (argc = 0; argv[argc] != NULL; ++argc)
6651     printf (\"\\t%%s\\n\", argv[argc]);
6652 }
6653
6654 /*
6655 static void print_table (char const *const *argv)
6656 {
6657   int i;
6658
6659   for (i = 0; argv[i] != NULL; i += 2)
6660     printf (\"%%s: %%s\\n\", argv[i], argv[i+1]);
6661 }
6662 */
6663
6664 ";
6665
6666   (* Generate a list of commands which are not tested anywhere. *)
6667   pr "static void no_test_warnings (void)\n";
6668   pr "{\n";
6669
6670   let hash : (string, bool) Hashtbl.t = Hashtbl.create 13 in
6671   List.iter (
6672     fun (_, _, _, _, tests, _, _) ->
6673       let tests = filter_map (
6674         function
6675         | (_, (Always|If _|Unless _), test) -> Some test
6676         | (_, Disabled, _) -> None
6677       ) tests in
6678       let seq = List.concat (List.map seq_of_test tests) in
6679       let cmds_tested = List.map List.hd seq in
6680       List.iter (fun cmd -> Hashtbl.replace hash cmd true) cmds_tested
6681   ) all_functions;
6682
6683   List.iter (
6684     fun (name, _, _, _, _, _, _) ->
6685       if not (Hashtbl.mem hash name) then
6686         pr "  fprintf (stderr, \"warning: \\\"guestfs_%s\\\" has no tests\\n\");\n" name
6687   ) all_functions;
6688
6689   pr "}\n";
6690   pr "\n";
6691
6692   (* Generate the actual tests.  Note that we generate the tests
6693    * in reverse order, deliberately, so that (in general) the
6694    * newest tests run first.  This makes it quicker and easier to
6695    * debug them.
6696    *)
6697   let test_names =
6698     List.map (
6699       fun (name, _, _, flags, tests, _, _) ->
6700         mapi (generate_one_test name flags) tests
6701     ) (List.rev all_functions) in
6702   let test_names = List.concat test_names in
6703   let nr_tests = List.length test_names in
6704
6705   pr "\
6706 int main (int argc, char *argv[])
6707 {
6708   char c = 0;
6709   unsigned long int n_failed = 0;
6710   const char *filename;
6711   int fd;
6712   int nr_tests, test_num = 0;
6713
6714   setbuf (stdout, NULL);
6715
6716   no_test_warnings ();
6717
6718   g = guestfs_create ();
6719   if (g == NULL) {
6720     printf (\"guestfs_create FAILED\\n\");
6721     exit (EXIT_FAILURE);
6722   }
6723
6724   guestfs_set_error_handler (g, print_error, NULL);
6725
6726   guestfs_set_path (g, \"../appliance\");
6727
6728   filename = \"test1.img\";
6729   fd = open (filename, O_WRONLY|O_CREAT|O_NOCTTY|O_NONBLOCK|O_TRUNC, 0666);
6730   if (fd == -1) {
6731     perror (filename);
6732     exit (EXIT_FAILURE);
6733   }
6734   if (lseek (fd, %d, SEEK_SET) == -1) {
6735     perror (\"lseek\");
6736     close (fd);
6737     unlink (filename);
6738     exit (EXIT_FAILURE);
6739   }
6740   if (write (fd, &c, 1) == -1) {
6741     perror (\"write\");
6742     close (fd);
6743     unlink (filename);
6744     exit (EXIT_FAILURE);
6745   }
6746   if (close (fd) == -1) {
6747     perror (filename);
6748     unlink (filename);
6749     exit (EXIT_FAILURE);
6750   }
6751   if (guestfs_add_drive (g, filename) == -1) {
6752     printf (\"guestfs_add_drive %%s FAILED\\n\", filename);
6753     exit (EXIT_FAILURE);
6754   }
6755
6756   filename = \"test2.img\";
6757   fd = open (filename, O_WRONLY|O_CREAT|O_NOCTTY|O_NONBLOCK|O_TRUNC, 0666);
6758   if (fd == -1) {
6759     perror (filename);
6760     exit (EXIT_FAILURE);
6761   }
6762   if (lseek (fd, %d, SEEK_SET) == -1) {
6763     perror (\"lseek\");
6764     close (fd);
6765     unlink (filename);
6766     exit (EXIT_FAILURE);
6767   }
6768   if (write (fd, &c, 1) == -1) {
6769     perror (\"write\");
6770     close (fd);
6771     unlink (filename);
6772     exit (EXIT_FAILURE);
6773   }
6774   if (close (fd) == -1) {
6775     perror (filename);
6776     unlink (filename);
6777     exit (EXIT_FAILURE);
6778   }
6779   if (guestfs_add_drive (g, filename) == -1) {
6780     printf (\"guestfs_add_drive %%s FAILED\\n\", filename);
6781     exit (EXIT_FAILURE);
6782   }
6783
6784   filename = \"test3.img\";
6785   fd = open (filename, O_WRONLY|O_CREAT|O_NOCTTY|O_NONBLOCK|O_TRUNC, 0666);
6786   if (fd == -1) {
6787     perror (filename);
6788     exit (EXIT_FAILURE);
6789   }
6790   if (lseek (fd, %d, SEEK_SET) == -1) {
6791     perror (\"lseek\");
6792     close (fd);
6793     unlink (filename);
6794     exit (EXIT_FAILURE);
6795   }
6796   if (write (fd, &c, 1) == -1) {
6797     perror (\"write\");
6798     close (fd);
6799     unlink (filename);
6800     exit (EXIT_FAILURE);
6801   }
6802   if (close (fd) == -1) {
6803     perror (filename);
6804     unlink (filename);
6805     exit (EXIT_FAILURE);
6806   }
6807   if (guestfs_add_drive (g, filename) == -1) {
6808     printf (\"guestfs_add_drive %%s FAILED\\n\", filename);
6809     exit (EXIT_FAILURE);
6810   }
6811
6812   if (guestfs_add_drive_ro (g, \"../images/test.iso\") == -1) {
6813     printf (\"guestfs_add_drive_ro ../images/test.iso FAILED\\n\");
6814     exit (EXIT_FAILURE);
6815   }
6816
6817   /* Set a timeout in case qemu hangs during launch (RHBZ#505329). */
6818   alarm (600);
6819
6820   if (guestfs_launch (g) == -1) {
6821     printf (\"guestfs_launch FAILED\\n\");
6822     exit (EXIT_FAILURE);
6823   }
6824
6825   /* Cancel previous alarm. */
6826   alarm (0);
6827
6828   nr_tests = %d;
6829
6830 " (500 * 1024 * 1024) (50 * 1024 * 1024) (10 * 1024 * 1024) nr_tests;
6831
6832   iteri (
6833     fun i test_name ->
6834       pr "  test_num++;\n";
6835       pr "  if (guestfs_get_verbose (g))\n";
6836       pr "    printf (\"-------------------------------------------------------------------------------\\n\");\n";
6837       pr "  printf (\"%%3d/%%3d %s\\n\", test_num, nr_tests);\n" test_name;
6838       pr "  if (%s () == -1) {\n" test_name;
6839       pr "    printf (\"%s FAILED\\n\");\n" test_name;
6840       pr "    n_failed++;\n";
6841       pr "  }\n";
6842   ) test_names;
6843   pr "\n";
6844
6845   pr "  guestfs_close (g);\n";
6846   pr "  unlink (\"test1.img\");\n";
6847   pr "  unlink (\"test2.img\");\n";
6848   pr "  unlink (\"test3.img\");\n";
6849   pr "\n";
6850
6851   pr "  if (n_failed > 0) {\n";
6852   pr "    printf (\"***** %%lu / %%d tests FAILED *****\\n\", n_failed, nr_tests);\n";
6853   pr "    exit (EXIT_FAILURE);\n";
6854   pr "  }\n";
6855   pr "\n";
6856
6857   pr "  exit (EXIT_SUCCESS);\n";
6858   pr "}\n"
6859
6860 and generate_one_test name flags i (init, prereq, test) =
6861   let test_name = sprintf "test_%s_%d" name i in
6862
6863   pr "\
6864 static int %s_skip (void)
6865 {
6866   const char *str;
6867
6868   str = getenv (\"TEST_ONLY\");
6869   if (str)
6870     return strstr (str, \"%s\") == NULL;
6871   str = getenv (\"SKIP_%s\");
6872   if (str && STREQ (str, \"1\")) return 1;
6873   str = getenv (\"SKIP_TEST_%s\");
6874   if (str && STREQ (str, \"1\")) return 1;
6875   return 0;
6876 }
6877
6878 " test_name name (String.uppercase test_name) (String.uppercase name);
6879
6880   (match prereq with
6881    | Disabled | Always -> ()
6882    | If code | Unless code ->
6883        pr "static int %s_prereq (void)\n" test_name;
6884        pr "{\n";
6885        pr "  %s\n" code;
6886        pr "}\n";
6887        pr "\n";
6888   );
6889
6890   pr "\
6891 static int %s (void)
6892 {
6893   if (%s_skip ()) {
6894     printf (\"        %%s skipped (reason: environment variable set)\\n\", \"%s\");
6895     return 0;
6896   }
6897
6898 " test_name test_name test_name;
6899
6900   (* Optional functions should only be tested if the relevant
6901    * support is available in the daemon.
6902    *)
6903   List.iter (
6904     function
6905     | Optional group ->
6906         pr "  {\n";
6907         pr "    const char *groups[] = { \"%s\", NULL };\n" group;
6908         pr "    int r;\n";
6909         pr "    suppress_error = 1;\n";
6910         pr "    r = guestfs_available (g, (char **) groups);\n";
6911         pr "    suppress_error = 0;\n";
6912         pr "    if (r == -1) {\n";
6913         pr "      printf (\"        %%s skipped (reason: group %%s not available in daemon)\\n\", \"%s\", groups[0]);\n" test_name;
6914         pr "      return 0;\n";
6915         pr "    }\n";
6916         pr "  }\n";
6917     | _ -> ()
6918   ) flags;
6919
6920   (match prereq with
6921    | Disabled ->
6922        pr "  printf (\"        %%s skipped (reason: test disabled in generator)\\n\", \"%s\");\n" test_name
6923    | If _ ->
6924        pr "  if (! %s_prereq ()) {\n" test_name;
6925        pr "    printf (\"        %%s skipped (reason: test prerequisite)\\n\", \"%s\");\n" test_name;
6926        pr "    return 0;\n";
6927        pr "  }\n";
6928        pr "\n";
6929        generate_one_test_body name i test_name init test;
6930    | Unless _ ->
6931        pr "  if (%s_prereq ()) {\n" test_name;
6932        pr "    printf (\"        %%s skipped (reason: test prerequisite)\\n\", \"%s\");\n" test_name;
6933        pr "    return 0;\n";
6934        pr "  }\n";
6935        pr "\n";
6936        generate_one_test_body name i test_name init test;
6937    | Always ->
6938        generate_one_test_body name i test_name init test
6939   );
6940
6941   pr "  return 0;\n";
6942   pr "}\n";
6943   pr "\n";
6944   test_name
6945
6946 and generate_one_test_body name i test_name init test =
6947   (match init with
6948    | InitNone (* XXX at some point, InitNone and InitEmpty became
6949                * folded together as the same thing.  Really we should
6950                * make InitNone do nothing at all, but the tests may
6951                * need to be checked to make sure this is OK.
6952                *)
6953    | InitEmpty ->
6954        pr "  /* InitNone|InitEmpty for %s */\n" test_name;
6955        List.iter (generate_test_command_call test_name)
6956          [["blockdev_setrw"; "/dev/sda"];
6957           ["umount_all"];
6958           ["lvm_remove_all"]]
6959    | InitPartition ->
6960        pr "  /* InitPartition for %s: create /dev/sda1 */\n" test_name;
6961        List.iter (generate_test_command_call test_name)
6962          [["blockdev_setrw"; "/dev/sda"];
6963           ["umount_all"];
6964           ["lvm_remove_all"];
6965           ["part_disk"; "/dev/sda"; "mbr"]]
6966    | InitBasicFS ->
6967        pr "  /* InitBasicFS for %s: create ext2 on /dev/sda1 */\n" test_name;
6968        List.iter (generate_test_command_call test_name)
6969          [["blockdev_setrw"; "/dev/sda"];
6970           ["umount_all"];
6971           ["lvm_remove_all"];
6972           ["part_disk"; "/dev/sda"; "mbr"];
6973           ["mkfs"; "ext2"; "/dev/sda1"];
6974           ["mount_options"; ""; "/dev/sda1"; "/"]]
6975    | InitBasicFSonLVM ->
6976        pr "  /* InitBasicFSonLVM for %s: create ext2 on /dev/VG/LV */\n"
6977          test_name;
6978        List.iter (generate_test_command_call test_name)
6979          [["blockdev_setrw"; "/dev/sda"];
6980           ["umount_all"];
6981           ["lvm_remove_all"];
6982           ["part_disk"; "/dev/sda"; "mbr"];
6983           ["pvcreate"; "/dev/sda1"];
6984           ["vgcreate"; "VG"; "/dev/sda1"];
6985           ["lvcreate"; "LV"; "VG"; "8"];
6986           ["mkfs"; "ext2"; "/dev/VG/LV"];
6987           ["mount_options"; ""; "/dev/VG/LV"; "/"]]
6988    | InitISOFS ->
6989        pr "  /* InitISOFS for %s */\n" test_name;
6990        List.iter (generate_test_command_call test_name)
6991          [["blockdev_setrw"; "/dev/sda"];
6992           ["umount_all"];
6993           ["lvm_remove_all"];
6994           ["mount_ro"; "/dev/sdd"; "/"]]
6995   );
6996
6997   let get_seq_last = function
6998     | [] ->
6999         failwithf "%s: you cannot use [] (empty list) when expecting a command"
7000           test_name
7001     | seq ->
7002         let seq = List.rev seq in
7003         List.rev (List.tl seq), List.hd seq
7004   in
7005
7006   match test with
7007   | TestRun seq ->
7008       pr "  /* TestRun for %s (%d) */\n" name i;
7009       List.iter (generate_test_command_call test_name) seq
7010   | TestOutput (seq, expected) ->
7011       pr "  /* TestOutput for %s (%d) */\n" name i;
7012       pr "  const char *expected = \"%s\";\n" (c_quote expected);
7013       let seq, last = get_seq_last seq in
7014       let test () =
7015         pr "    if (STRNEQ (r, expected)) {\n";
7016         pr "      fprintf (stderr, \"%s: expected \\\"%%s\\\" but got \\\"%%s\\\"\\n\", expected, r);\n" test_name;
7017         pr "      return -1;\n";
7018         pr "    }\n"
7019       in
7020       List.iter (generate_test_command_call test_name) seq;
7021       generate_test_command_call ~test test_name last
7022   | TestOutputList (seq, expected) ->
7023       pr "  /* TestOutputList for %s (%d) */\n" name i;
7024       let seq, last = get_seq_last seq in
7025       let test () =
7026         iteri (
7027           fun i str ->
7028             pr "    if (!r[%d]) {\n" i;
7029             pr "      fprintf (stderr, \"%s: short list returned from command\\n\");\n" test_name;
7030             pr "      print_strings (r);\n";
7031             pr "      return -1;\n";
7032             pr "    }\n";
7033             pr "    {\n";
7034             pr "      const char *expected = \"%s\";\n" (c_quote str);
7035             pr "      if (STRNEQ (r[%d], expected)) {\n" i;
7036             pr "        fprintf (stderr, \"%s: expected \\\"%%s\\\" but got \\\"%%s\\\"\\n\", expected, r[%d]);\n" test_name i;
7037             pr "        return -1;\n";
7038             pr "      }\n";
7039             pr "    }\n"
7040         ) expected;
7041         pr "    if (r[%d] != NULL) {\n" (List.length expected);
7042         pr "      fprintf (stderr, \"%s: extra elements returned from command\\n\");\n"
7043           test_name;
7044         pr "      print_strings (r);\n";
7045         pr "      return -1;\n";
7046         pr "    }\n"
7047       in
7048       List.iter (generate_test_command_call test_name) seq;
7049       generate_test_command_call ~test test_name last
7050   | TestOutputListOfDevices (seq, expected) ->
7051       pr "  /* TestOutputListOfDevices for %s (%d) */\n" name i;
7052       let seq, last = get_seq_last seq in
7053       let test () =
7054         iteri (
7055           fun i str ->
7056             pr "    if (!r[%d]) {\n" i;
7057             pr "      fprintf (stderr, \"%s: short list returned from command\\n\");\n" test_name;
7058             pr "      print_strings (r);\n";
7059             pr "      return -1;\n";
7060             pr "    }\n";
7061             pr "    {\n";
7062             pr "      const char *expected = \"%s\";\n" (c_quote str);
7063             pr "      r[%d][5] = 's';\n" i;
7064             pr "      if (STRNEQ (r[%d], expected)) {\n" i;
7065             pr "        fprintf (stderr, \"%s: expected \\\"%%s\\\" but got \\\"%%s\\\"\\n\", expected, r[%d]);\n" test_name i;
7066             pr "        return -1;\n";
7067             pr "      }\n";
7068             pr "    }\n"
7069         ) expected;
7070         pr "    if (r[%d] != NULL) {\n" (List.length expected);
7071         pr "      fprintf (stderr, \"%s: extra elements returned from command\\n\");\n"
7072           test_name;
7073         pr "      print_strings (r);\n";
7074         pr "      return -1;\n";
7075         pr "    }\n"
7076       in
7077       List.iter (generate_test_command_call test_name) seq;
7078       generate_test_command_call ~test test_name last
7079   | TestOutputInt (seq, expected) ->
7080       pr "  /* TestOutputInt for %s (%d) */\n" name i;
7081       let seq, last = get_seq_last seq in
7082       let test () =
7083         pr "    if (r != %d) {\n" expected;
7084         pr "      fprintf (stderr, \"%s: expected %d but got %%d\\n\","
7085           test_name expected;
7086         pr "               (int) r);\n";
7087         pr "      return -1;\n";
7088         pr "    }\n"
7089       in
7090       List.iter (generate_test_command_call test_name) seq;
7091       generate_test_command_call ~test test_name last
7092   | TestOutputIntOp (seq, op, expected) ->
7093       pr "  /* TestOutputIntOp for %s (%d) */\n" name i;
7094       let seq, last = get_seq_last seq in
7095       let test () =
7096         pr "    if (! (r %s %d)) {\n" op expected;
7097         pr "      fprintf (stderr, \"%s: expected %s %d but got %%d\\n\","
7098           test_name op expected;
7099         pr "               (int) r);\n";
7100         pr "      return -1;\n";
7101         pr "    }\n"
7102       in
7103       List.iter (generate_test_command_call test_name) seq;
7104       generate_test_command_call ~test test_name last
7105   | TestOutputTrue seq ->
7106       pr "  /* TestOutputTrue for %s (%d) */\n" name i;
7107       let seq, last = get_seq_last seq in
7108       let test () =
7109         pr "    if (!r) {\n";
7110         pr "      fprintf (stderr, \"%s: expected true, got false\\n\");\n"
7111           test_name;
7112         pr "      return -1;\n";
7113         pr "    }\n"
7114       in
7115       List.iter (generate_test_command_call test_name) seq;
7116       generate_test_command_call ~test test_name last
7117   | TestOutputFalse seq ->
7118       pr "  /* TestOutputFalse for %s (%d) */\n" name i;
7119       let seq, last = get_seq_last seq in
7120       let test () =
7121         pr "    if (r) {\n";
7122         pr "      fprintf (stderr, \"%s: expected false, got true\\n\");\n"
7123           test_name;
7124         pr "      return -1;\n";
7125         pr "    }\n"
7126       in
7127       List.iter (generate_test_command_call test_name) seq;
7128       generate_test_command_call ~test test_name last
7129   | TestOutputLength (seq, expected) ->
7130       pr "  /* TestOutputLength for %s (%d) */\n" name i;
7131       let seq, last = get_seq_last seq in
7132       let test () =
7133         pr "    int j;\n";
7134         pr "    for (j = 0; j < %d; ++j)\n" expected;
7135         pr "      if (r[j] == NULL) {\n";
7136         pr "        fprintf (stderr, \"%s: short list returned\\n\");\n"
7137           test_name;
7138         pr "        print_strings (r);\n";
7139         pr "        return -1;\n";
7140         pr "      }\n";
7141         pr "    if (r[j] != NULL) {\n";
7142         pr "      fprintf (stderr, \"%s: long list returned\\n\");\n"
7143           test_name;
7144         pr "      print_strings (r);\n";
7145         pr "      return -1;\n";
7146         pr "    }\n"
7147       in
7148       List.iter (generate_test_command_call test_name) seq;
7149       generate_test_command_call ~test test_name last
7150   | TestOutputBuffer (seq, expected) ->
7151       pr "  /* TestOutputBuffer for %s (%d) */\n" name i;
7152       pr "  const char *expected = \"%s\";\n" (c_quote expected);
7153       let seq, last = get_seq_last seq in
7154       let len = String.length expected in
7155       let test () =
7156         pr "    if (size != %d) {\n" len;
7157         pr "      fprintf (stderr, \"%s: returned size of buffer wrong, expected %d but got %%zu\\n\", size);\n" test_name len;
7158         pr "      return -1;\n";
7159         pr "    }\n";
7160         pr "    if (STRNEQLEN (r, expected, size)) {\n";
7161         pr "      fprintf (stderr, \"%s: expected \\\"%%s\\\" but got \\\"%%s\\\"\\n\", expected, r);\n" test_name;
7162         pr "      return -1;\n";
7163         pr "    }\n"
7164       in
7165       List.iter (generate_test_command_call test_name) seq;
7166       generate_test_command_call ~test test_name last
7167   | TestOutputStruct (seq, checks) ->
7168       pr "  /* TestOutputStruct for %s (%d) */\n" name i;
7169       let seq, last = get_seq_last seq in
7170       let test () =
7171         List.iter (
7172           function
7173           | CompareWithInt (field, expected) ->
7174               pr "    if (r->%s != %d) {\n" field expected;
7175               pr "      fprintf (stderr, \"%s: %s was %%d, expected %d\\n\",\n"
7176                 test_name field expected;
7177               pr "               (int) r->%s);\n" field;
7178               pr "      return -1;\n";
7179               pr "    }\n"
7180           | CompareWithIntOp (field, op, expected) ->
7181               pr "    if (!(r->%s %s %d)) {\n" field op expected;
7182               pr "      fprintf (stderr, \"%s: %s was %%d, expected %s %d\\n\",\n"
7183                 test_name field op expected;
7184               pr "               (int) r->%s);\n" field;
7185               pr "      return -1;\n";
7186               pr "    }\n"
7187           | CompareWithString (field, expected) ->
7188               pr "    if (STRNEQ (r->%s, \"%s\")) {\n" field expected;
7189               pr "      fprintf (stderr, \"%s: %s was \"%%s\", expected \"%s\"\\n\",\n"
7190                 test_name field expected;
7191               pr "               r->%s);\n" field;
7192               pr "      return -1;\n";
7193               pr "    }\n"
7194           | CompareFieldsIntEq (field1, field2) ->
7195               pr "    if (r->%s != r->%s) {\n" field1 field2;
7196               pr "      fprintf (stderr, \"%s: %s (%%d) <> %s (%%d)\\n\",\n"
7197                 test_name field1 field2;
7198               pr "               (int) r->%s, (int) r->%s);\n" field1 field2;
7199               pr "      return -1;\n";
7200               pr "    }\n"
7201           | CompareFieldsStrEq (field1, field2) ->
7202               pr "    if (STRNEQ (r->%s, r->%s)) {\n" field1 field2;
7203               pr "      fprintf (stderr, \"%s: %s (\"%%s\") <> %s (\"%%s\")\\n\",\n"
7204                 test_name field1 field2;
7205               pr "               r->%s, r->%s);\n" field1 field2;
7206               pr "      return -1;\n";
7207               pr "    }\n"
7208         ) checks
7209       in
7210       List.iter (generate_test_command_call test_name) seq;
7211       generate_test_command_call ~test test_name last
7212   | TestLastFail seq ->
7213       pr "  /* TestLastFail for %s (%d) */\n" name i;
7214       let seq, last = get_seq_last seq in
7215       List.iter (generate_test_command_call test_name) seq;
7216       generate_test_command_call test_name ~expect_error:true last
7217
7218 (* Generate the code to run a command, leaving the result in 'r'.
7219  * If you expect to get an error then you should set expect_error:true.
7220  *)
7221 and generate_test_command_call ?(expect_error = false) ?test test_name cmd =
7222   match cmd with
7223   | [] -> assert false
7224   | name :: args ->
7225       (* Look up the command to find out what args/ret it has. *)
7226       let style =
7227         try
7228           let _, style, _, _, _, _, _ =
7229             List.find (fun (n, _, _, _, _, _, _) -> n = name) all_functions in
7230           style
7231         with Not_found ->
7232           failwithf "%s: in test, command %s was not found" test_name name in
7233
7234       if List.length (snd style) <> List.length args then
7235         failwithf "%s: in test, wrong number of args given to %s"
7236           test_name name;
7237
7238       pr "  {\n";
7239
7240       List.iter (
7241         function
7242         | OptString n, "NULL" -> ()
7243         | Pathname n, arg
7244         | Device n, arg
7245         | Dev_or_Path n, arg
7246         | String n, arg
7247         | OptString n, arg ->
7248             pr "    const char *%s = \"%s\";\n" n (c_quote arg);
7249         | BufferIn n, arg ->
7250             pr "    const char *%s = \"%s\";\n" n (c_quote arg);
7251             pr "    size_t %s_size = %d;\n" n (String.length arg)
7252         | Int _, _
7253         | Int64 _, _
7254         | Bool _, _
7255         | FileIn _, _ | FileOut _, _ -> ()
7256         | StringList n, "" | DeviceList n, "" ->
7257             pr "    const char *const %s[1] = { NULL };\n" n
7258         | StringList n, arg | DeviceList n, arg ->
7259             let strs = string_split " " arg in
7260             iteri (
7261               fun i str ->
7262                 pr "    const char *%s_%d = \"%s\";\n" n i (c_quote str);
7263             ) strs;
7264             pr "    const char *const %s[] = {\n" n;
7265             iteri (
7266               fun i _ -> pr "      %s_%d,\n" n i
7267             ) strs;
7268             pr "      NULL\n";
7269             pr "    };\n";
7270       ) (List.combine (snd style) args);
7271
7272       let error_code =
7273         match fst style with
7274         | RErr | RInt _ | RBool _ -> pr "    int r;\n"; "-1"
7275         | RInt64 _ -> pr "    int64_t r;\n"; "-1"
7276         | RConstString _ | RConstOptString _ ->
7277             pr "    const char *r;\n"; "NULL"
7278         | RString _ -> pr "    char *r;\n"; "NULL"
7279         | RStringList _ | RHashtable _ ->
7280             pr "    char **r;\n";
7281             pr "    int i;\n";
7282             "NULL"
7283         | RStruct (_, typ) ->
7284             pr "    struct guestfs_%s *r;\n" typ; "NULL"
7285         | RStructList (_, typ) ->
7286             pr "    struct guestfs_%s_list *r;\n" typ; "NULL"
7287         | RBufferOut _ ->
7288             pr "    char *r;\n";
7289             pr "    size_t size;\n";
7290             "NULL" in
7291
7292       pr "    suppress_error = %d;\n" (if expect_error then 1 else 0);
7293       pr "    r = guestfs_%s (g" name;
7294
7295       (* Generate the parameters. *)
7296       List.iter (
7297         function
7298         | OptString _, "NULL" -> pr ", NULL"
7299         | Pathname n, _
7300         | Device n, _ | Dev_or_Path n, _
7301         | String n, _
7302         | OptString n, _ ->
7303             pr ", %s" n
7304         | BufferIn n, _ ->
7305             pr ", %s, %s_size" n n
7306         | FileIn _, arg | FileOut _, arg ->
7307             pr ", \"%s\"" (c_quote arg)
7308         | StringList n, _ | DeviceList n, _ ->
7309             pr ", (char **) %s" n
7310         | Int _, arg ->
7311             let i =
7312               try int_of_string arg
7313               with Failure "int_of_string" ->
7314                 failwithf "%s: expecting an int, but got '%s'" test_name arg in
7315             pr ", %d" i
7316         | Int64 _, arg ->
7317             let i =
7318               try Int64.of_string arg
7319               with Failure "int_of_string" ->
7320                 failwithf "%s: expecting an int64, but got '%s'" test_name arg in
7321             pr ", %Ld" i
7322         | Bool _, arg ->
7323             let b = bool_of_string arg in pr ", %d" (if b then 1 else 0)
7324       ) (List.combine (snd style) args);
7325
7326       (match fst style with
7327        | RBufferOut _ -> pr ", &size"
7328        | _ -> ()
7329       );
7330
7331       pr ");\n";
7332
7333       if not expect_error then
7334         pr "    if (r == %s)\n" error_code
7335       else
7336         pr "    if (r != %s)\n" error_code;
7337       pr "      return -1;\n";
7338
7339       (* Insert the test code. *)
7340       (match test with
7341        | None -> ()
7342        | Some f -> f ()
7343       );
7344
7345       (match fst style with
7346        | RErr | RInt _ | RInt64 _ | RBool _
7347        | RConstString _ | RConstOptString _ -> ()
7348        | RString _ | RBufferOut _ -> pr "    free (r);\n"
7349        | RStringList _ | RHashtable _ ->
7350            pr "    for (i = 0; r[i] != NULL; ++i)\n";
7351            pr "      free (r[i]);\n";
7352            pr "    free (r);\n"
7353        | RStruct (_, typ) ->
7354            pr "    guestfs_free_%s (r);\n" typ
7355        | RStructList (_, typ) ->
7356            pr "    guestfs_free_%s_list (r);\n" typ
7357       );
7358
7359       pr "  }\n"
7360
7361 and c_quote str =
7362   let str = replace_str str "\r" "\\r" in
7363   let str = replace_str str "\n" "\\n" in
7364   let str = replace_str str "\t" "\\t" in
7365   let str = replace_str str "\000" "\\0" in
7366   str
7367
7368 (* Generate a lot of different functions for guestfish. *)
7369 and generate_fish_cmds () =
7370   generate_header CStyle GPLv2plus;
7371
7372   let all_functions =
7373     List.filter (
7374       fun (_, _, _, flags, _, _, _) -> not (List.mem NotInFish flags)
7375     ) all_functions in
7376   let all_functions_sorted =
7377     List.filter (
7378       fun (_, _, _, flags, _, _, _) -> not (List.mem NotInFish flags)
7379     ) all_functions_sorted in
7380
7381   pr "#include <config.h>\n";
7382   pr "\n";
7383   pr "#include <stdio.h>\n";
7384   pr "#include <stdlib.h>\n";
7385   pr "#include <string.h>\n";
7386   pr "#include <inttypes.h>\n";
7387   pr "\n";
7388   pr "#include <guestfs.h>\n";
7389   pr "#include \"c-ctype.h\"\n";
7390   pr "#include \"full-write.h\"\n";
7391   pr "#include \"xstrtol.h\"\n";
7392   pr "#include \"fish.h\"\n";
7393   pr "\n";
7394
7395   (* list_commands function, which implements guestfish -h *)
7396   pr "void list_commands (void)\n";
7397   pr "{\n";
7398   pr "  printf (\"    %%-16s     %%s\\n\", _(\"Command\"), _(\"Description\"));\n";
7399   pr "  list_builtin_commands ();\n";
7400   List.iter (
7401     fun (name, _, _, flags, _, shortdesc, _) ->
7402       let name = replace_char name '_' '-' in
7403       pr "  printf (\"%%-20s %%s\\n\", \"%s\", _(\"%s\"));\n"
7404         name shortdesc
7405   ) all_functions_sorted;
7406   pr "  printf (\"    %%s\\n\",";
7407   pr "          _(\"Use -h <cmd> / help <cmd> to show detailed help for a command.\"));\n";
7408   pr "}\n";
7409   pr "\n";
7410
7411   (* display_command function, which implements guestfish -h cmd *)
7412   pr "void display_command (const char *cmd)\n";
7413   pr "{\n";
7414   List.iter (
7415     fun (name, style, _, flags, _, shortdesc, longdesc) ->
7416       let name2 = replace_char name '_' '-' in
7417       let alias =
7418         try find_map (function FishAlias n -> Some n | _ -> None) flags
7419         with Not_found -> name in
7420       let longdesc = replace_str longdesc "C<guestfs_" "C<" in
7421       let synopsis =
7422         match snd style with
7423         | [] -> name2
7424         | args ->
7425             sprintf "%s %s"
7426               name2 (String.concat " " (List.map name_of_argt args)) in
7427
7428       let warnings =
7429         if List.mem ProtocolLimitWarning flags then
7430           ("\n\n" ^ protocol_limit_warning)
7431         else "" in
7432
7433       (* For DangerWillRobinson commands, we should probably have
7434        * guestfish prompt before allowing you to use them (especially
7435        * in interactive mode). XXX
7436        *)
7437       let warnings =
7438         warnings ^
7439           if List.mem DangerWillRobinson flags then
7440             ("\n\n" ^ danger_will_robinson)
7441           else "" in
7442
7443       let warnings =
7444         warnings ^
7445           match deprecation_notice flags with
7446           | None -> ""
7447           | Some txt -> "\n\n" ^ txt in
7448
7449       let describe_alias =
7450         if name <> alias then
7451           sprintf "\n\nYou can use '%s' as an alias for this command." alias
7452         else "" in
7453
7454       pr "  if (";
7455       pr "STRCASEEQ (cmd, \"%s\")" name;
7456       if name <> name2 then
7457         pr " || STRCASEEQ (cmd, \"%s\")" name2;
7458       if name <> alias then
7459         pr " || STRCASEEQ (cmd, \"%s\")" alias;
7460       pr ")\n";
7461       pr "    pod2text (\"%s\", _(\"%s\"), %S);\n"
7462         name2 shortdesc
7463         ("=head1 SYNOPSIS\n\n " ^ synopsis ^ "\n\n" ^
7464          "=head1 DESCRIPTION\n\n" ^
7465          longdesc ^ warnings ^ describe_alias);
7466       pr "  else\n"
7467   ) all_functions;
7468   pr "    display_builtin_command (cmd);\n";
7469   pr "}\n";
7470   pr "\n";
7471
7472   let emit_print_list_function typ =
7473     pr "static void print_%s_list (struct guestfs_%s_list *%ss)\n"
7474       typ typ typ;
7475     pr "{\n";
7476     pr "  unsigned int i;\n";
7477     pr "\n";
7478     pr "  for (i = 0; i < %ss->len; ++i) {\n" typ;
7479     pr "    printf (\"[%%d] = {\\n\", i);\n";
7480     pr "    print_%s_indent (&%ss->val[i], \"  \");\n" typ typ;
7481     pr "    printf (\"}\\n\");\n";
7482     pr "  }\n";
7483     pr "}\n";
7484     pr "\n";
7485   in
7486
7487   (* print_* functions *)
7488   List.iter (
7489     fun (typ, cols) ->
7490       let needs_i =
7491         List.exists (function (_, (FUUID|FBuffer)) -> true | _ -> false) cols in
7492
7493       pr "static void print_%s_indent (struct guestfs_%s *%s, const char *indent)\n" typ typ typ;
7494       pr "{\n";
7495       if needs_i then (
7496         pr "  unsigned int i;\n";
7497         pr "\n"
7498       );
7499       List.iter (
7500         function
7501         | name, FString ->
7502             pr "  printf (\"%%s%s: %%s\\n\", indent, %s->%s);\n" name typ name
7503         | name, FUUID ->
7504             pr "  printf (\"%%s%s: \", indent);\n" name;
7505             pr "  for (i = 0; i < 32; ++i)\n";
7506             pr "    printf (\"%%c\", %s->%s[i]);\n" typ name;
7507             pr "  printf (\"\\n\");\n"
7508         | name, FBuffer ->
7509             pr "  printf (\"%%s%s: \", indent);\n" name;
7510             pr "  for (i = 0; i < %s->%s_len; ++i)\n" typ name;
7511             pr "    if (c_isprint (%s->%s[i]))\n" typ name;
7512             pr "      printf (\"%%c\", %s->%s[i]);\n" typ name;
7513             pr "    else\n";
7514             pr "      printf (\"\\\\x%%02x\", %s->%s[i]);\n" typ name;
7515             pr "  printf (\"\\n\");\n"
7516         | name, (FUInt64|FBytes) ->
7517             pr "  printf (\"%%s%s: %%\" PRIu64 \"\\n\", indent, %s->%s);\n"
7518               name typ name
7519         | name, FInt64 ->
7520             pr "  printf (\"%%s%s: %%\" PRIi64 \"\\n\", indent, %s->%s);\n"
7521               name typ name
7522         | name, FUInt32 ->
7523             pr "  printf (\"%%s%s: %%\" PRIu32 \"\\n\", indent, %s->%s);\n"
7524               name typ name
7525         | name, FInt32 ->
7526             pr "  printf (\"%%s%s: %%\" PRIi32 \"\\n\", indent, %s->%s);\n"
7527               name typ name
7528         | name, FChar ->
7529             pr "  printf (\"%%s%s: %%c\\n\", indent, %s->%s);\n"
7530               name typ name
7531         | name, FOptPercent ->
7532             pr "  if (%s->%s >= 0) printf (\"%%s%s: %%g %%%%\\n\", indent, %s->%s);\n"
7533               typ name name typ name;
7534             pr "  else printf (\"%%s%s: \\n\", indent);\n" name
7535       ) cols;
7536       pr "}\n";
7537       pr "\n";
7538   ) structs;
7539
7540   (* Emit a print_TYPE_list function definition only if that function is used. *)
7541   List.iter (
7542     function
7543     | typ, (RStructListOnly | RStructAndList) ->
7544         (* generate the function for typ *)
7545         emit_print_list_function typ
7546     | typ, _ -> () (* empty *)
7547   ) (rstructs_used_by all_functions);
7548
7549   (* Emit a print_TYPE function definition only if that function is used. *)
7550   List.iter (
7551     function
7552     | typ, (RStructOnly | RStructAndList) ->
7553         pr "static void print_%s (struct guestfs_%s *%s)\n" typ typ typ;
7554         pr "{\n";
7555         pr "  print_%s_indent (%s, \"\");\n" typ typ;
7556         pr "}\n";
7557         pr "\n";
7558     | typ, _ -> () (* empty *)
7559   ) (rstructs_used_by all_functions);
7560
7561   (* run_<action> actions *)
7562   List.iter (
7563     fun (name, style, _, flags, _, _, _) ->
7564       pr "static int run_%s (const char *cmd, int argc, char *argv[])\n" name;
7565       pr "{\n";
7566       (match fst style with
7567        | RErr
7568        | RInt _
7569        | RBool _ -> pr "  int r;\n"
7570        | RInt64 _ -> pr "  int64_t r;\n"
7571        | RConstString _ | RConstOptString _ -> pr "  const char *r;\n"
7572        | RString _ -> pr "  char *r;\n"
7573        | RStringList _ | RHashtable _ -> pr "  char **r;\n"
7574        | RStruct (_, typ) -> pr "  struct guestfs_%s *r;\n" typ
7575        | RStructList (_, typ) -> pr "  struct guestfs_%s_list *r;\n" typ
7576        | RBufferOut _ ->
7577            pr "  char *r;\n";
7578            pr "  size_t size;\n";
7579       );
7580       List.iter (
7581         function
7582         | Device n
7583         | String n
7584         | OptString n -> pr "  const char *%s;\n" n
7585         | Pathname n
7586         | Dev_or_Path n
7587         | FileIn n
7588         | FileOut n -> pr "  char *%s;\n" n
7589         | BufferIn n ->
7590             pr "  const char *%s;\n" n;
7591             pr "  size_t %s_size;\n" n
7592         | StringList n | DeviceList n -> pr "  char **%s;\n" n
7593         | Bool n -> pr "  int %s;\n" n
7594         | Int n -> pr "  int %s;\n" n
7595         | Int64 n -> pr "  int64_t %s;\n" n
7596       ) (snd style);
7597
7598       (* Check and convert parameters. *)
7599       let argc_expected = List.length (snd style) in
7600       pr "  if (argc != %d) {\n" argc_expected;
7601       pr "    fprintf (stderr, _(\"%%s should have %%d parameter(s)\\n\"), cmd, %d);\n"
7602         argc_expected;
7603       pr "    fprintf (stderr, _(\"type 'help %%s' for help on %%s\\n\"), cmd, cmd);\n";
7604       pr "    return -1;\n";
7605       pr "  }\n";
7606
7607       let parse_integer fn fntyp rtyp range name i =
7608         pr "  {\n";
7609         pr "    strtol_error xerr;\n";
7610         pr "    %s r;\n" fntyp;
7611         pr "\n";
7612         pr "    xerr = %s (argv[%d], NULL, 0, &r, \"\");\n" fn i;
7613         pr "    if (xerr != LONGINT_OK) {\n";
7614         pr "      fprintf (stderr,\n";
7615         pr "               _(\"%%s: %%s: invalid integer parameter (%%s returned %%d)\\n\"),\n";
7616         pr "               cmd, \"%s\", \"%s\", xerr);\n" name fn;
7617         pr "      return -1;\n";
7618         pr "    }\n";
7619         (match range with
7620          | None -> ()
7621          | Some (min, max, comment) ->
7622              pr "    /* %s */\n" comment;
7623              pr "    if (r < %s || r > %s) {\n" min max;
7624              pr "      fprintf (stderr, _(\"%%s: %%s: integer out of range\\n\"), cmd, \"%s\");\n"
7625                name;
7626              pr "      return -1;\n";
7627              pr "    }\n";
7628              pr "    /* The check above should ensure this assignment does not overflow. */\n";
7629         );
7630         pr "    %s = r;\n" name;
7631         pr "  }\n";
7632       in
7633
7634       iteri (
7635         fun i ->
7636           function
7637           | Device name
7638           | String name ->
7639               pr "  %s = argv[%d];\n" name i
7640           | Pathname name
7641           | Dev_or_Path name ->
7642               pr "  %s = resolve_win_path (argv[%d]);\n" name i;
7643               pr "  if (%s == NULL) return -1;\n" name
7644           | OptString name ->
7645               pr "  %s = STRNEQ (argv[%d], \"\") ? argv[%d] : NULL;\n"
7646                 name i i
7647           | BufferIn name ->
7648               pr "  %s = argv[%d];\n" name i;
7649               pr "  %s_size = strlen (argv[%d]);\n" name i
7650           | FileIn name ->
7651               pr "  %s = file_in (argv[%d]);\n" name i;
7652               pr "  if (%s == NULL) return -1;\n" name
7653           | FileOut name ->
7654               pr "  %s = file_out (argv[%d]);\n" name i;
7655               pr "  if (%s == NULL) return -1;\n" name
7656           | StringList name | DeviceList name ->
7657               pr "  %s = parse_string_list (argv[%d]);\n" name i;
7658               pr "  if (%s == NULL) return -1;\n" name;
7659           | Bool name ->
7660               pr "  %s = is_true (argv[%d]) ? 1 : 0;\n" name i
7661           | Int name ->
7662               let range =
7663                 let min = "(-(2LL<<30))"
7664                 and max = "((2LL<<30)-1)"
7665                 and comment =
7666                   "The Int type in the generator is a signed 31 bit int." in
7667                 Some (min, max, comment) in
7668               parse_integer "xstrtoll" "long long" "int" range name i
7669           | Int64 name ->
7670               parse_integer "xstrtoll" "long long" "int64_t" None name i
7671       ) (snd style);
7672
7673       (* Call C API function. *)
7674       pr "  r = guestfs_%s " name;
7675       generate_c_call_args ~handle:"g" style;
7676       pr ";\n";
7677
7678       List.iter (
7679         function
7680         | Device name | String name
7681         | OptString name | Bool name
7682         | Int name | Int64 name
7683         | BufferIn name -> ()
7684         | Pathname name | Dev_or_Path name | FileOut name ->
7685             pr "  free (%s);\n" name
7686         | FileIn name ->
7687             pr "  free_file_in (%s);\n" name
7688         | StringList name | DeviceList name ->
7689             pr "  free_strings (%s);\n" name
7690       ) (snd style);
7691
7692       (* Any output flags? *)
7693       let fish_output =
7694         let flags = filter_map (
7695           function FishOutput flag -> Some flag | _ -> None
7696         ) flags in
7697         match flags with
7698         | [] -> None
7699         | [f] -> Some f
7700         | _ ->
7701             failwithf "%s: more than one FishOutput flag is not allowed" name in
7702
7703       (* Check return value for errors and display command results. *)
7704       (match fst style with
7705        | RErr -> pr "  return r;\n"
7706        | RInt _ ->
7707            pr "  if (r == -1) return -1;\n";
7708            (match fish_output with
7709             | None ->
7710                 pr "  printf (\"%%d\\n\", r);\n";
7711             | Some FishOutputOctal ->
7712                 pr "  printf (\"%%s%%o\\n\", r != 0 ? \"0\" : \"\", r);\n";
7713             | Some FishOutputHexadecimal ->
7714                 pr "  printf (\"%%s%%x\\n\", r != 0 ? \"0x\" : \"\", r);\n");
7715            pr "  return 0;\n"
7716        | RInt64 _ ->
7717            pr "  if (r == -1) return -1;\n";
7718            (match fish_output with
7719             | None ->
7720                 pr "  printf (\"%%\" PRIi64 \"\\n\", r);\n";
7721             | Some FishOutputOctal ->
7722                 pr "  printf (\"%%s%%\" PRIo64 \"\\n\", r != 0 ? \"0\" : \"\", r);\n";
7723             | Some FishOutputHexadecimal ->
7724                 pr "  printf (\"%%s%%\" PRIx64 \"\\n\", r != 0 ? \"0x\" : \"\", r);\n");
7725            pr "  return 0;\n"
7726        | RBool _ ->
7727            pr "  if (r == -1) return -1;\n";
7728            pr "  if (r) printf (\"true\\n\"); else printf (\"false\\n\");\n";
7729            pr "  return 0;\n"
7730        | RConstString _ ->
7731            pr "  if (r == NULL) return -1;\n";
7732            pr "  printf (\"%%s\\n\", r);\n";
7733            pr "  return 0;\n"
7734        | RConstOptString _ ->
7735            pr "  printf (\"%%s\\n\", r ? : \"(null)\");\n";
7736            pr "  return 0;\n"
7737        | RString _ ->
7738            pr "  if (r == NULL) return -1;\n";
7739            pr "  printf (\"%%s\\n\", r);\n";
7740            pr "  free (r);\n";
7741            pr "  return 0;\n"
7742        | RStringList _ ->
7743            pr "  if (r == NULL) return -1;\n";
7744            pr "  print_strings (r);\n";
7745            pr "  free_strings (r);\n";
7746            pr "  return 0;\n"
7747        | RStruct (_, typ) ->
7748            pr "  if (r == NULL) return -1;\n";
7749            pr "  print_%s (r);\n" typ;
7750            pr "  guestfs_free_%s (r);\n" typ;
7751            pr "  return 0;\n"
7752        | RStructList (_, typ) ->
7753            pr "  if (r == NULL) return -1;\n";
7754            pr "  print_%s_list (r);\n" typ;
7755            pr "  guestfs_free_%s_list (r);\n" typ;
7756            pr "  return 0;\n"
7757        | RHashtable _ ->
7758            pr "  if (r == NULL) return -1;\n";
7759            pr "  print_table (r);\n";
7760            pr "  free_strings (r);\n";
7761            pr "  return 0;\n"
7762        | RBufferOut _ ->
7763            pr "  if (r == NULL) return -1;\n";
7764            pr "  if (full_write (1, r, size) != size) {\n";
7765            pr "    perror (\"write\");\n";
7766            pr "    free (r);\n";
7767            pr "    return -1;\n";
7768            pr "  }\n";
7769            pr "  free (r);\n";
7770            pr "  return 0;\n"
7771       );
7772       pr "}\n";
7773       pr "\n"
7774   ) all_functions;
7775
7776   (* run_action function *)
7777   pr "int run_action (const char *cmd, int argc, char *argv[])\n";
7778   pr "{\n";
7779   List.iter (
7780     fun (name, _, _, flags, _, _, _) ->
7781       let name2 = replace_char name '_' '-' in
7782       let alias =
7783         try find_map (function FishAlias n -> Some n | _ -> None) flags
7784         with Not_found -> name in
7785       pr "  if (";
7786       pr "STRCASEEQ (cmd, \"%s\")" name;
7787       if name <> name2 then
7788         pr " || STRCASEEQ (cmd, \"%s\")" name2;
7789       if name <> alias then
7790         pr " || STRCASEEQ (cmd, \"%s\")" alias;
7791       pr ")\n";
7792       pr "    return run_%s (cmd, argc, argv);\n" name;
7793       pr "  else\n";
7794   ) all_functions;
7795   pr "    {\n";
7796   pr "      fprintf (stderr, _(\"%%s: unknown command\\n\"), cmd);\n";
7797   pr "      if (command_num == 1)\n";
7798   pr "        extended_help_message ();\n";
7799   pr "      return -1;\n";
7800   pr "    }\n";
7801   pr "  return 0;\n";
7802   pr "}\n";
7803   pr "\n"
7804
7805 (* Readline completion for guestfish. *)
7806 and generate_fish_completion () =
7807   generate_header CStyle GPLv2plus;
7808
7809   let all_functions =
7810     List.filter (
7811       fun (_, _, _, flags, _, _, _) -> not (List.mem NotInFish flags)
7812     ) all_functions in
7813
7814   pr "\
7815 #include <config.h>
7816
7817 #include <stdio.h>
7818 #include <stdlib.h>
7819 #include <string.h>
7820
7821 #ifdef HAVE_LIBREADLINE
7822 #include <readline/readline.h>
7823 #endif
7824
7825 #include \"fish.h\"
7826
7827 #ifdef HAVE_LIBREADLINE
7828
7829 static const char *const commands[] = {
7830   BUILTIN_COMMANDS_FOR_COMPLETION,
7831 ";
7832
7833   (* Get the commands, including the aliases.  They don't need to be
7834    * sorted - the generator() function just does a dumb linear search.
7835    *)
7836   let commands =
7837     List.map (
7838       fun (name, _, _, flags, _, _, _) ->
7839         let name2 = replace_char name '_' '-' in
7840         let alias =
7841           try find_map (function FishAlias n -> Some n | _ -> None) flags
7842           with Not_found -> name in
7843
7844         if name <> alias then [name2; alias] else [name2]
7845     ) all_functions in
7846   let commands = List.flatten commands in
7847
7848   List.iter (pr "  \"%s\",\n") commands;
7849
7850   pr "  NULL
7851 };
7852
7853 static char *
7854 generator (const char *text, int state)
7855 {
7856   static int index, len;
7857   const char *name;
7858
7859   if (!state) {
7860     index = 0;
7861     len = strlen (text);
7862   }
7863
7864   rl_attempted_completion_over = 1;
7865
7866   while ((name = commands[index]) != NULL) {
7867     index++;
7868     if (STRCASEEQLEN (name, text, len))
7869       return strdup (name);
7870   }
7871
7872   return NULL;
7873 }
7874
7875 #endif /* HAVE_LIBREADLINE */
7876
7877 #ifdef HAVE_RL_COMPLETION_MATCHES
7878 #define RL_COMPLETION_MATCHES rl_completion_matches
7879 #else
7880 #ifdef HAVE_COMPLETION_MATCHES
7881 #define RL_COMPLETION_MATCHES completion_matches
7882 #endif
7883 #endif /* else just fail if we don't have either symbol */
7884
7885 char **
7886 do_completion (const char *text, int start, int end)
7887 {
7888   char **matches = NULL;
7889
7890 #ifdef HAVE_LIBREADLINE
7891   rl_completion_append_character = ' ';
7892
7893   if (start == 0)
7894     matches = RL_COMPLETION_MATCHES (text, generator);
7895   else if (complete_dest_paths)
7896     matches = RL_COMPLETION_MATCHES (text, complete_dest_paths_generator);
7897 #endif
7898
7899   return matches;
7900 }
7901 ";
7902
7903 (* Generate the POD documentation for guestfish. *)
7904 and generate_fish_actions_pod () =
7905   let all_functions_sorted =
7906     List.filter (
7907       fun (_, _, _, flags, _, _, _) ->
7908         not (List.mem NotInFish flags || List.mem NotInDocs flags)
7909     ) all_functions_sorted in
7910
7911   let rex = Str.regexp "C<guestfs_\\([^>]+\\)>" in
7912
7913   List.iter (
7914     fun (name, style, _, flags, _, _, longdesc) ->
7915       let longdesc =
7916         Str.global_substitute rex (
7917           fun s ->
7918             let sub =
7919               try Str.matched_group 1 s
7920               with Not_found ->
7921                 failwithf "error substituting C<guestfs_...> in longdesc of function %s" name in
7922             "C<" ^ replace_char sub '_' '-' ^ ">"
7923         ) longdesc in
7924       let name = replace_char name '_' '-' in
7925       let alias =
7926         try find_map (function FishAlias n -> Some n | _ -> None) flags
7927         with Not_found -> name in
7928
7929       pr "=head2 %s" name;
7930       if name <> alias then
7931         pr " | %s" alias;
7932       pr "\n";
7933       pr "\n";
7934       pr " %s" name;
7935       List.iter (
7936         function
7937         | Pathname n | Device n | Dev_or_Path n | String n -> pr " %s" n
7938         | OptString n -> pr " %s" n
7939         | StringList n | DeviceList n -> pr " '%s ...'" n
7940         | Bool _ -> pr " true|false"
7941         | Int n -> pr " %s" n
7942         | Int64 n -> pr " %s" n
7943         | FileIn n | FileOut n -> pr " (%s|-)" n
7944         | BufferIn n -> pr " %s" n
7945       ) (snd style);
7946       pr "\n";
7947       pr "\n";
7948       pr "%s\n\n" longdesc;
7949
7950       if List.exists (function FileIn _ | FileOut _ -> true
7951                       | _ -> false) (snd style) then
7952         pr "Use C<-> instead of a filename to read/write from stdin/stdout.\n\n";
7953
7954       if List.mem ProtocolLimitWarning flags then
7955         pr "%s\n\n" protocol_limit_warning;
7956
7957       if List.mem DangerWillRobinson flags then
7958         pr "%s\n\n" danger_will_robinson;
7959
7960       match deprecation_notice flags with
7961       | None -> ()
7962       | Some txt -> pr "%s\n\n" txt
7963   ) all_functions_sorted
7964
7965 (* Generate a C function prototype. *)
7966 and generate_prototype ?(extern = true) ?(static = false) ?(semicolon = true)
7967     ?(single_line = false) ?(newline = false) ?(in_daemon = false)
7968     ?(prefix = "")
7969     ?handle name style =
7970   if extern then pr "extern ";
7971   if static then pr "static ";
7972   (match fst style with
7973    | RErr -> pr "int "
7974    | RInt _ -> pr "int "
7975    | RInt64 _ -> pr "int64_t "
7976    | RBool _ -> pr "int "
7977    | RConstString _ | RConstOptString _ -> pr "const char *"
7978    | RString _ | RBufferOut _ -> pr "char *"
7979    | RStringList _ | RHashtable _ -> pr "char **"
7980    | RStruct (_, typ) ->
7981        if not in_daemon then pr "struct guestfs_%s *" typ
7982        else pr "guestfs_int_%s *" typ
7983    | RStructList (_, typ) ->
7984        if not in_daemon then pr "struct guestfs_%s_list *" typ
7985        else pr "guestfs_int_%s_list *" typ
7986   );
7987   let is_RBufferOut = match fst style with RBufferOut _ -> true | _ -> false in
7988   pr "%s%s (" prefix name;
7989   if handle = None && List.length (snd style) = 0 && not is_RBufferOut then
7990     pr "void"
7991   else (
7992     let comma = ref false in
7993     (match handle with
7994      | None -> ()
7995      | Some handle -> pr "guestfs_h *%s" handle; comma := true
7996     );
7997     let next () =
7998       if !comma then (
7999         if single_line then pr ", " else pr ",\n\t\t"
8000       );
8001       comma := true
8002     in
8003     List.iter (
8004       function
8005       | Pathname n
8006       | Device n | Dev_or_Path n
8007       | String n
8008       | OptString n ->
8009           next ();
8010           pr "const char *%s" n
8011       | StringList n | DeviceList n ->
8012           next ();
8013           pr "char *const *%s" n
8014       | Bool n -> next (); pr "int %s" n
8015       | Int n -> next (); pr "int %s" n
8016       | Int64 n -> next (); pr "int64_t %s" n
8017       | FileIn n
8018       | FileOut n ->
8019           if not in_daemon then (next (); pr "const char *%s" n)
8020       | BufferIn n ->
8021           next ();
8022           pr "const char *%s" n;
8023           next ();
8024           pr "size_t %s_size" n
8025     ) (snd style);
8026     if is_RBufferOut then (next (); pr "size_t *size_r");
8027   );
8028   pr ")";
8029   if semicolon then pr ";";
8030   if newline then pr "\n"
8031
8032 (* Generate C call arguments, eg "(handle, foo, bar)" *)
8033 and generate_c_call_args ?handle ?(decl = false) style =
8034   pr "(";
8035   let comma = ref false in
8036   let next () =
8037     if !comma then pr ", ";
8038     comma := true
8039   in
8040   (match handle with
8041    | None -> ()
8042    | Some handle -> pr "%s" handle; comma := true
8043   );
8044   List.iter (
8045     function
8046     | BufferIn n ->
8047         next ();
8048         pr "%s, %s_size" n n
8049     | arg ->
8050         next ();
8051         pr "%s" (name_of_argt arg)
8052   ) (snd style);
8053   (* For RBufferOut calls, add implicit &size parameter. *)
8054   if not decl then (
8055     match fst style with
8056     | RBufferOut _ ->
8057         next ();
8058         pr "&size"
8059     | _ -> ()
8060   );
8061   pr ")"
8062
8063 (* Generate the OCaml bindings interface. *)
8064 and generate_ocaml_mli () =
8065   generate_header OCamlStyle LGPLv2plus;
8066
8067   pr "\
8068 (** For API documentation you should refer to the C API
8069     in the guestfs(3) manual page.  The OCaml API uses almost
8070     exactly the same calls. *)
8071
8072 type t
8073 (** A [guestfs_h] handle. *)
8074
8075 exception Error of string
8076 (** This exception is raised when there is an error. *)
8077
8078 exception Handle_closed of string
8079 (** This exception is raised if you use a {!Guestfs.t} handle
8080     after calling {!close} on it.  The string is the name of
8081     the function. *)
8082
8083 val create : unit -> t
8084 (** Create a {!Guestfs.t} handle. *)
8085
8086 val close : t -> unit
8087 (** Close the {!Guestfs.t} handle and free up all resources used
8088     by it immediately.
8089
8090     Handles are closed by the garbage collector when they become
8091     unreferenced, but callers can call this in order to provide
8092     predictable cleanup. *)
8093
8094 ";
8095   generate_ocaml_structure_decls ();
8096
8097   (* The actions. *)
8098   List.iter (
8099     fun (name, style, _, _, _, shortdesc, _) ->
8100       generate_ocaml_prototype name style;
8101       pr "(** %s *)\n" shortdesc;
8102       pr "\n"
8103   ) all_functions_sorted
8104
8105 (* Generate the OCaml bindings implementation. *)
8106 and generate_ocaml_ml () =
8107   generate_header OCamlStyle LGPLv2plus;
8108
8109   pr "\
8110 type t
8111
8112 exception Error of string
8113 exception Handle_closed of string
8114
8115 external create : unit -> t = \"ocaml_guestfs_create\"
8116 external close : t -> unit = \"ocaml_guestfs_close\"
8117
8118 (* Give the exceptions names, so they can be raised from the C code. *)
8119 let () =
8120   Callback.register_exception \"ocaml_guestfs_error\" (Error \"\");
8121   Callback.register_exception \"ocaml_guestfs_closed\" (Handle_closed \"\")
8122
8123 ";
8124
8125   generate_ocaml_structure_decls ();
8126
8127   (* The actions. *)
8128   List.iter (
8129     fun (name, style, _, _, _, shortdesc, _) ->
8130       generate_ocaml_prototype ~is_external:true name style;
8131   ) all_functions_sorted
8132
8133 (* Generate the OCaml bindings C implementation. *)
8134 and generate_ocaml_c () =
8135   generate_header CStyle LGPLv2plus;
8136
8137   pr "\
8138 #include <stdio.h>
8139 #include <stdlib.h>
8140 #include <string.h>
8141
8142 #include <caml/config.h>
8143 #include <caml/alloc.h>
8144 #include <caml/callback.h>
8145 #include <caml/fail.h>
8146 #include <caml/memory.h>
8147 #include <caml/mlvalues.h>
8148 #include <caml/signals.h>
8149
8150 #include <guestfs.h>
8151
8152 #include \"guestfs_c.h\"
8153
8154 /* Copy a hashtable of string pairs into an assoc-list.  We return
8155  * the list in reverse order, but hashtables aren't supposed to be
8156  * ordered anyway.
8157  */
8158 static CAMLprim value
8159 copy_table (char * const * argv)
8160 {
8161   CAMLparam0 ();
8162   CAMLlocal5 (rv, pairv, kv, vv, cons);
8163   int i;
8164
8165   rv = Val_int (0);
8166   for (i = 0; argv[i] != NULL; i += 2) {
8167     kv = caml_copy_string (argv[i]);
8168     vv = caml_copy_string (argv[i+1]);
8169     pairv = caml_alloc (2, 0);
8170     Store_field (pairv, 0, kv);
8171     Store_field (pairv, 1, vv);
8172     cons = caml_alloc (2, 0);
8173     Store_field (cons, 1, rv);
8174     rv = cons;
8175     Store_field (cons, 0, pairv);
8176   }
8177
8178   CAMLreturn (rv);
8179 }
8180
8181 ";
8182
8183   (* Struct copy functions. *)
8184
8185   let emit_ocaml_copy_list_function typ =
8186     pr "static CAMLprim value\n";
8187     pr "copy_%s_list (const struct guestfs_%s_list *%ss)\n" typ typ typ;
8188     pr "{\n";
8189     pr "  CAMLparam0 ();\n";
8190     pr "  CAMLlocal2 (rv, v);\n";
8191     pr "  unsigned int i;\n";
8192     pr "\n";
8193     pr "  if (%ss->len == 0)\n" typ;
8194     pr "    CAMLreturn (Atom (0));\n";
8195     pr "  else {\n";
8196     pr "    rv = caml_alloc (%ss->len, 0);\n" typ;
8197     pr "    for (i = 0; i < %ss->len; ++i) {\n" typ;
8198     pr "      v = copy_%s (&%ss->val[i]);\n" typ typ;
8199     pr "      caml_modify (&Field (rv, i), v);\n";
8200     pr "    }\n";
8201     pr "    CAMLreturn (rv);\n";
8202     pr "  }\n";
8203     pr "}\n";
8204     pr "\n";
8205   in
8206
8207   List.iter (
8208     fun (typ, cols) ->
8209       let has_optpercent_col =
8210         List.exists (function (_, FOptPercent) -> true | _ -> false) cols in
8211
8212       pr "static CAMLprim value\n";
8213       pr "copy_%s (const struct guestfs_%s *%s)\n" typ typ typ;
8214       pr "{\n";
8215       pr "  CAMLparam0 ();\n";
8216       if has_optpercent_col then
8217         pr "  CAMLlocal3 (rv, v, v2);\n"
8218       else
8219         pr "  CAMLlocal2 (rv, v);\n";
8220       pr "\n";
8221       pr "  rv = caml_alloc (%d, 0);\n" (List.length cols);
8222       iteri (
8223         fun i col ->
8224           (match col with
8225            | name, FString ->
8226                pr "  v = caml_copy_string (%s->%s);\n" typ name
8227            | name, FBuffer ->
8228                pr "  v = caml_alloc_string (%s->%s_len);\n" typ name;
8229                pr "  memcpy (String_val (v), %s->%s, %s->%s_len);\n"
8230                  typ name typ name
8231            | name, FUUID ->
8232                pr "  v = caml_alloc_string (32);\n";
8233                pr "  memcpy (String_val (v), %s->%s, 32);\n" typ name
8234            | name, (FBytes|FInt64|FUInt64) ->
8235                pr "  v = caml_copy_int64 (%s->%s);\n" typ name
8236            | name, (FInt32|FUInt32) ->
8237                pr "  v = caml_copy_int32 (%s->%s);\n" typ name
8238            | name, FOptPercent ->
8239                pr "  if (%s->%s >= 0) { /* Some %s */\n" typ name name;
8240                pr "    v2 = caml_copy_double (%s->%s);\n" typ name;
8241                pr "    v = caml_alloc (1, 0);\n";
8242                pr "    Store_field (v, 0, v2);\n";
8243                pr "  } else /* None */\n";
8244                pr "    v = Val_int (0);\n";
8245            | name, FChar ->
8246                pr "  v = Val_int (%s->%s);\n" typ name
8247           );
8248           pr "  Store_field (rv, %d, v);\n" i
8249       ) cols;
8250       pr "  CAMLreturn (rv);\n";
8251       pr "}\n";
8252       pr "\n";
8253   ) structs;
8254
8255   (* Emit a copy_TYPE_list function definition only if that function is used. *)
8256   List.iter (
8257     function
8258     | typ, (RStructListOnly | RStructAndList) ->
8259         (* generate the function for typ *)
8260         emit_ocaml_copy_list_function typ
8261     | typ, _ -> () (* empty *)
8262   ) (rstructs_used_by all_functions);
8263
8264   (* The wrappers. *)
8265   List.iter (
8266     fun (name, style, _, _, _, _, _) ->
8267       pr "/* Automatically generated wrapper for function\n";
8268       pr " * ";
8269       generate_ocaml_prototype name style;
8270       pr " */\n";
8271       pr "\n";
8272
8273       let params =
8274         "gv" :: List.map (fun arg -> name_of_argt arg ^ "v") (snd style) in
8275
8276       let needs_extra_vs =
8277         match fst style with RConstOptString _ -> true | _ -> false in
8278
8279       pr "/* Emit prototype to appease gcc's -Wmissing-prototypes. */\n";
8280       pr "CAMLprim value ocaml_guestfs_%s (value %s" name (List.hd params);
8281       List.iter (pr ", value %s") (List.tl params); pr ");\n";
8282       pr "\n";
8283
8284       pr "CAMLprim value\n";
8285       pr "ocaml_guestfs_%s (value %s" name (List.hd params);
8286       List.iter (pr ", value %s") (List.tl params);
8287       pr ")\n";
8288       pr "{\n";
8289
8290       (match params with
8291        | [p1; p2; p3; p4; p5] ->
8292            pr "  CAMLparam5 (%s);\n" (String.concat ", " params)
8293        | p1 :: p2 :: p3 :: p4 :: p5 :: rest ->
8294            pr "  CAMLparam5 (%s);\n" (String.concat ", " [p1; p2; p3; p4; p5]);
8295            pr "  CAMLxparam%d (%s);\n"
8296              (List.length rest) (String.concat ", " rest)
8297        | ps ->
8298            pr "  CAMLparam%d (%s);\n" (List.length ps) (String.concat ", " ps)
8299       );
8300       if not needs_extra_vs then
8301         pr "  CAMLlocal1 (rv);\n"
8302       else
8303         pr "  CAMLlocal3 (rv, v, v2);\n";
8304       pr "\n";
8305
8306       pr "  guestfs_h *g = Guestfs_val (gv);\n";
8307       pr "  if (g == NULL)\n";
8308       pr "    ocaml_guestfs_raise_closed (\"%s\");\n" name;
8309       pr "\n";
8310
8311       List.iter (
8312         function
8313         | Pathname n
8314         | Device n | Dev_or_Path n
8315         | String n
8316         | FileIn n
8317         | FileOut n ->
8318             pr "  const char *%s = String_val (%sv);\n" n n
8319         | OptString n ->
8320             pr "  const char *%s =\n" n;
8321             pr "    %sv != Val_int (0) ? String_val (Field (%sv, 0)) : NULL;\n"
8322               n n
8323         | BufferIn n ->
8324             pr "  const char *%s = String_val (%sv);\n" n n;
8325             pr "  size_t %s_size = caml_string_length (%sv);\n" n n
8326         | StringList n | DeviceList n ->
8327             pr "  char **%s = ocaml_guestfs_strings_val (g, %sv);\n" n n
8328         | Bool n ->
8329             pr "  int %s = Bool_val (%sv);\n" n n
8330         | Int n ->
8331             pr "  int %s = Int_val (%sv);\n" n n
8332         | Int64 n ->
8333             pr "  int64_t %s = Int64_val (%sv);\n" n n
8334       ) (snd style);
8335       let error_code =
8336         match fst style with
8337         | RErr -> pr "  int r;\n"; "-1"
8338         | RInt _ -> pr "  int r;\n"; "-1"
8339         | RInt64 _ -> pr "  int64_t r;\n"; "-1"
8340         | RBool _ -> pr "  int r;\n"; "-1"
8341         | RConstString _ | RConstOptString _ ->
8342             pr "  const char *r;\n"; "NULL"
8343         | RString _ -> pr "  char *r;\n"; "NULL"
8344         | RStringList _ ->
8345             pr "  int i;\n";
8346             pr "  char **r;\n";
8347             "NULL"
8348         | RStruct (_, typ) ->
8349             pr "  struct guestfs_%s *r;\n" typ; "NULL"
8350         | RStructList (_, typ) ->
8351             pr "  struct guestfs_%s_list *r;\n" typ; "NULL"
8352         | RHashtable _ ->
8353             pr "  int i;\n";
8354             pr "  char **r;\n";
8355             "NULL"
8356         | RBufferOut _ ->
8357             pr "  char *r;\n";
8358             pr "  size_t size;\n";
8359             "NULL" in
8360       pr "\n";
8361
8362       pr "  caml_enter_blocking_section ();\n";
8363       pr "  r = guestfs_%s " name;
8364       generate_c_call_args ~handle:"g" style;
8365       pr ";\n";
8366       pr "  caml_leave_blocking_section ();\n";
8367
8368       List.iter (
8369         function
8370         | StringList n | DeviceList n ->
8371             pr "  ocaml_guestfs_free_strings (%s);\n" n;
8372         | Pathname _ | Device _ | Dev_or_Path _ | String _ | OptString _
8373         | Bool _ | Int _ | Int64 _
8374         | FileIn _ | FileOut _ | BufferIn _ -> ()
8375       ) (snd style);
8376
8377       pr "  if (r == %s)\n" error_code;
8378       pr "    ocaml_guestfs_raise_error (g, \"%s\");\n" name;
8379       pr "\n";
8380
8381       (match fst style with
8382        | RErr -> pr "  rv = Val_unit;\n"
8383        | RInt _ -> pr "  rv = Val_int (r);\n"
8384        | RInt64 _ ->
8385            pr "  rv = caml_copy_int64 (r);\n"
8386        | RBool _ -> pr "  rv = Val_bool (r);\n"
8387        | RConstString _ ->
8388            pr "  rv = caml_copy_string (r);\n"
8389        | RConstOptString _ ->
8390            pr "  if (r) { /* Some string */\n";
8391            pr "    v = caml_alloc (1, 0);\n";
8392            pr "    v2 = caml_copy_string (r);\n";
8393            pr "    Store_field (v, 0, v2);\n";
8394            pr "  } else /* None */\n";
8395            pr "    v = Val_int (0);\n";
8396        | RString _ ->
8397            pr "  rv = caml_copy_string (r);\n";
8398            pr "  free (r);\n"
8399        | RStringList _ ->
8400            pr "  rv = caml_copy_string_array ((const char **) r);\n";
8401            pr "  for (i = 0; r[i] != NULL; ++i) free (r[i]);\n";
8402            pr "  free (r);\n"
8403        | RStruct (_, typ) ->
8404            pr "  rv = copy_%s (r);\n" typ;
8405            pr "  guestfs_free_%s (r);\n" typ;
8406        | RStructList (_, typ) ->
8407            pr "  rv = copy_%s_list (r);\n" typ;
8408            pr "  guestfs_free_%s_list (r);\n" typ;
8409        | RHashtable _ ->
8410            pr "  rv = copy_table (r);\n";
8411            pr "  for (i = 0; r[i] != NULL; ++i) free (r[i]);\n";
8412            pr "  free (r);\n";
8413        | RBufferOut _ ->
8414            pr "  rv = caml_alloc_string (size);\n";
8415            pr "  memcpy (String_val (rv), r, size);\n";
8416       );
8417
8418       pr "  CAMLreturn (rv);\n";
8419       pr "}\n";
8420       pr "\n";
8421
8422       if List.length params > 5 then (
8423         pr "/* Emit prototype to appease gcc's -Wmissing-prototypes. */\n";
8424         pr "CAMLprim value ";
8425         pr "ocaml_guestfs_%s_byte (value *argv, int argn);\n" name;
8426         pr "CAMLprim value\n";
8427         pr "ocaml_guestfs_%s_byte (value *argv, int argn)\n" name;
8428         pr "{\n";
8429         pr "  return ocaml_guestfs_%s (argv[0]" name;
8430         iteri (fun i _ -> pr ", argv[%d]" i) (List.tl params);
8431         pr ");\n";
8432         pr "}\n";
8433         pr "\n"
8434       )
8435   ) all_functions_sorted
8436
8437 and generate_ocaml_structure_decls () =
8438   List.iter (
8439     fun (typ, cols) ->
8440       pr "type %s = {\n" typ;
8441       List.iter (
8442         function
8443         | name, FString -> pr "  %s : string;\n" name
8444         | name, FBuffer -> pr "  %s : string;\n" name
8445         | name, FUUID -> pr "  %s : string;\n" name
8446         | name, (FBytes|FInt64|FUInt64) -> pr "  %s : int64;\n" name
8447         | name, (FInt32|FUInt32) -> pr "  %s : int32;\n" name
8448         | name, FChar -> pr "  %s : char;\n" name
8449         | name, FOptPercent -> pr "  %s : float option;\n" name
8450       ) cols;
8451       pr "}\n";
8452       pr "\n"
8453   ) structs
8454
8455 and generate_ocaml_prototype ?(is_external = false) name style =
8456   if is_external then pr "external " else pr "val ";
8457   pr "%s : t -> " name;
8458   List.iter (
8459     function
8460     | Pathname _ | Device _ | Dev_or_Path _ | String _ | FileIn _ | FileOut _
8461     | BufferIn _ -> pr "string -> "
8462     | OptString _ -> pr "string option -> "
8463     | StringList _ | DeviceList _ -> pr "string array -> "
8464     | Bool _ -> pr "bool -> "
8465     | Int _ -> pr "int -> "
8466     | Int64 _ -> pr "int64 -> "
8467   ) (snd style);
8468   (match fst style with
8469    | RErr -> pr "unit" (* all errors are turned into exceptions *)
8470    | RInt _ -> pr "int"
8471    | RInt64 _ -> pr "int64"
8472    | RBool _ -> pr "bool"
8473    | RConstString _ -> pr "string"
8474    | RConstOptString _ -> pr "string option"
8475    | RString _ | RBufferOut _ -> pr "string"
8476    | RStringList _ -> pr "string array"
8477    | RStruct (_, typ) -> pr "%s" typ
8478    | RStructList (_, typ) -> pr "%s array" typ
8479    | RHashtable _ -> pr "(string * string) list"
8480   );
8481   if is_external then (
8482     pr " = ";
8483     if List.length (snd style) + 1 > 5 then
8484       pr "\"ocaml_guestfs_%s_byte\" " name;
8485     pr "\"ocaml_guestfs_%s\"" name
8486   );
8487   pr "\n"
8488
8489 (* Generate Perl xs code, a sort of crazy variation of C with macros. *)
8490 and generate_perl_xs () =
8491   generate_header CStyle LGPLv2plus;
8492
8493   pr "\
8494 #include \"EXTERN.h\"
8495 #include \"perl.h\"
8496 #include \"XSUB.h\"
8497
8498 #include <guestfs.h>
8499
8500 #ifndef PRId64
8501 #define PRId64 \"lld\"
8502 #endif
8503
8504 static SV *
8505 my_newSVll(long long val) {
8506 #ifdef USE_64_BIT_ALL
8507   return newSViv(val);
8508 #else
8509   char buf[100];
8510   int len;
8511   len = snprintf(buf, 100, \"%%\" PRId64, val);
8512   return newSVpv(buf, len);
8513 #endif
8514 }
8515
8516 #ifndef PRIu64
8517 #define PRIu64 \"llu\"
8518 #endif
8519
8520 static SV *
8521 my_newSVull(unsigned long long val) {
8522 #ifdef USE_64_BIT_ALL
8523   return newSVuv(val);
8524 #else
8525   char buf[100];
8526   int len;
8527   len = snprintf(buf, 100, \"%%\" PRIu64, val);
8528   return newSVpv(buf, len);
8529 #endif
8530 }
8531
8532 /* http://www.perlmonks.org/?node_id=680842 */
8533 static char **
8534 XS_unpack_charPtrPtr (SV *arg) {
8535   char **ret;
8536   AV *av;
8537   I32 i;
8538
8539   if (!arg || !SvOK (arg) || !SvROK (arg) || SvTYPE (SvRV (arg)) != SVt_PVAV)
8540     croak (\"array reference expected\");
8541
8542   av = (AV *)SvRV (arg);
8543   ret = malloc ((av_len (av) + 1 + 1) * sizeof (char *));
8544   if (!ret)
8545     croak (\"malloc failed\");
8546
8547   for (i = 0; i <= av_len (av); i++) {
8548     SV **elem = av_fetch (av, i, 0);
8549
8550     if (!elem || !*elem)
8551       croak (\"missing element in list\");
8552
8553     ret[i] = SvPV_nolen (*elem);
8554   }
8555
8556   ret[i] = NULL;
8557
8558   return ret;
8559 }
8560
8561 MODULE = Sys::Guestfs  PACKAGE = Sys::Guestfs
8562
8563 PROTOTYPES: ENABLE
8564
8565 guestfs_h *
8566 _create ()
8567    CODE:
8568       RETVAL = guestfs_create ();
8569       if (!RETVAL)
8570         croak (\"could not create guestfs handle\");
8571       guestfs_set_error_handler (RETVAL, NULL, NULL);
8572  OUTPUT:
8573       RETVAL
8574
8575 void
8576 DESTROY (g)
8577       guestfs_h *g;
8578  PPCODE:
8579       guestfs_close (g);
8580
8581 ";
8582
8583   List.iter (
8584     fun (name, style, _, _, _, _, _) ->
8585       (match fst style with
8586        | RErr -> pr "void\n"
8587        | RInt _ -> pr "SV *\n"
8588        | RInt64 _ -> pr "SV *\n"
8589        | RBool _ -> pr "SV *\n"
8590        | RConstString _ -> pr "SV *\n"
8591        | RConstOptString _ -> pr "SV *\n"
8592        | RString _ -> pr "SV *\n"
8593        | RBufferOut _ -> pr "SV *\n"
8594        | RStringList _
8595        | RStruct _ | RStructList _
8596        | RHashtable _ ->
8597            pr "void\n" (* all lists returned implictly on the stack *)
8598       );
8599       (* Call and arguments. *)
8600       pr "%s (g" name;
8601       List.iter (
8602         fun arg -> pr ", %s" (name_of_argt arg)
8603       ) (snd style);
8604       pr ")\n";
8605       pr "      guestfs_h *g;\n";
8606       iteri (
8607         fun i ->
8608           function
8609           | Pathname n | Device n | Dev_or_Path n | String n
8610           | FileIn n | FileOut n ->
8611               pr "      char *%s;\n" n
8612           | BufferIn n ->
8613               pr "      char *%s;\n" n;
8614               pr "      size_t %s_size = SvCUR (ST(%d));\n" n (i+1)
8615           | OptString n ->
8616               (* http://www.perlmonks.org/?node_id=554277
8617                * Note that the implicit handle argument means we have
8618                * to add 1 to the ST(x) operator.
8619                *)
8620               pr "      char *%s = SvOK(ST(%d)) ? SvPV_nolen(ST(%d)) : NULL;\n" n (i+1) (i+1)
8621           | StringList n | DeviceList n -> pr "      char **%s;\n" n
8622           | Bool n -> pr "      int %s;\n" n
8623           | Int n -> pr "      int %s;\n" n
8624           | Int64 n -> pr "      int64_t %s;\n" n
8625       ) (snd style);
8626
8627       let do_cleanups () =
8628         List.iter (
8629           function
8630           | Pathname _ | Device _ | Dev_or_Path _ | String _ | OptString _
8631           | Bool _ | Int _ | Int64 _
8632           | FileIn _ | FileOut _
8633           | BufferIn _ -> ()
8634           | StringList n | DeviceList n -> pr "      free (%s);\n" n
8635         ) (snd style)
8636       in
8637
8638       (* Code. *)
8639       (match fst style with
8640        | RErr ->
8641            pr "PREINIT:\n";
8642            pr "      int r;\n";
8643            pr " PPCODE:\n";
8644            pr "      r = guestfs_%s " name;
8645            generate_c_call_args ~handle:"g" style;
8646            pr ";\n";
8647            do_cleanups ();
8648            pr "      if (r == -1)\n";
8649            pr "        croak (\"%%s\", guestfs_last_error (g));\n";
8650        | RInt n
8651        | RBool n ->
8652            pr "PREINIT:\n";
8653            pr "      int %s;\n" n;
8654            pr "   CODE:\n";
8655            pr "      %s = guestfs_%s " n name;
8656            generate_c_call_args ~handle:"g" style;
8657            pr ";\n";
8658            do_cleanups ();
8659            pr "      if (%s == -1)\n" n;
8660            pr "        croak (\"%%s\", guestfs_last_error (g));\n";
8661            pr "      RETVAL = newSViv (%s);\n" n;
8662            pr " OUTPUT:\n";
8663            pr "      RETVAL\n"
8664        | RInt64 n ->
8665            pr "PREINIT:\n";
8666            pr "      int64_t %s;\n" n;
8667            pr "   CODE:\n";
8668            pr "      %s = guestfs_%s " n name;
8669            generate_c_call_args ~handle:"g" style;
8670            pr ";\n";
8671            do_cleanups ();
8672            pr "      if (%s == -1)\n" n;
8673            pr "        croak (\"%%s\", guestfs_last_error (g));\n";
8674            pr "      RETVAL = my_newSVll (%s);\n" n;
8675            pr " OUTPUT:\n";
8676            pr "      RETVAL\n"
8677        | RConstString n ->
8678            pr "PREINIT:\n";
8679            pr "      const char *%s;\n" n;
8680            pr "   CODE:\n";
8681            pr "      %s = guestfs_%s " n name;
8682            generate_c_call_args ~handle:"g" style;
8683            pr ";\n";
8684            do_cleanups ();
8685            pr "      if (%s == NULL)\n" n;
8686            pr "        croak (\"%%s\", guestfs_last_error (g));\n";
8687            pr "      RETVAL = newSVpv (%s, 0);\n" n;
8688            pr " OUTPUT:\n";
8689            pr "      RETVAL\n"
8690        | RConstOptString n ->
8691            pr "PREINIT:\n";
8692            pr "      const char *%s;\n" n;
8693            pr "   CODE:\n";
8694            pr "      %s = guestfs_%s " n name;
8695            generate_c_call_args ~handle:"g" style;
8696            pr ";\n";
8697            do_cleanups ();
8698            pr "      if (%s == NULL)\n" n;
8699            pr "        RETVAL = &PL_sv_undef;\n";
8700            pr "      else\n";
8701            pr "        RETVAL = newSVpv (%s, 0);\n" n;
8702            pr " OUTPUT:\n";
8703            pr "      RETVAL\n"
8704        | RString n ->
8705            pr "PREINIT:\n";
8706            pr "      char *%s;\n" n;
8707            pr "   CODE:\n";
8708            pr "      %s = guestfs_%s " n name;
8709            generate_c_call_args ~handle:"g" style;
8710            pr ";\n";
8711            do_cleanups ();
8712            pr "      if (%s == NULL)\n" n;
8713            pr "        croak (\"%%s\", guestfs_last_error (g));\n";
8714            pr "      RETVAL = newSVpv (%s, 0);\n" n;
8715            pr "      free (%s);\n" n;
8716            pr " OUTPUT:\n";
8717            pr "      RETVAL\n"
8718        | RStringList n | RHashtable n ->
8719            pr "PREINIT:\n";
8720            pr "      char **%s;\n" n;
8721            pr "      int i, n;\n";
8722            pr " PPCODE:\n";
8723            pr "      %s = guestfs_%s " n name;
8724            generate_c_call_args ~handle:"g" style;
8725            pr ";\n";
8726            do_cleanups ();
8727            pr "      if (%s == NULL)\n" n;
8728            pr "        croak (\"%%s\", guestfs_last_error (g));\n";
8729            pr "      for (n = 0; %s[n] != NULL; ++n) /**/;\n" n;
8730            pr "      EXTEND (SP, n);\n";
8731            pr "      for (i = 0; i < n; ++i) {\n";
8732            pr "        PUSHs (sv_2mortal (newSVpv (%s[i], 0)));\n" n;
8733            pr "        free (%s[i]);\n" n;
8734            pr "      }\n";
8735            pr "      free (%s);\n" n;
8736        | RStruct (n, typ) ->
8737            let cols = cols_of_struct typ in
8738            generate_perl_struct_code typ cols name style n do_cleanups
8739        | RStructList (n, typ) ->
8740            let cols = cols_of_struct typ in
8741            generate_perl_struct_list_code typ cols name style n do_cleanups
8742        | RBufferOut n ->
8743            pr "PREINIT:\n";
8744            pr "      char *%s;\n" n;
8745            pr "      size_t size;\n";
8746            pr "   CODE:\n";
8747            pr "      %s = guestfs_%s " n name;
8748            generate_c_call_args ~handle:"g" style;
8749            pr ";\n";
8750            do_cleanups ();
8751            pr "      if (%s == NULL)\n" n;
8752            pr "        croak (\"%%s\", guestfs_last_error (g));\n";
8753            pr "      RETVAL = newSVpvn (%s, size);\n" n;
8754            pr "      free (%s);\n" n;
8755            pr " OUTPUT:\n";
8756            pr "      RETVAL\n"
8757       );
8758
8759       pr "\n"
8760   ) all_functions
8761
8762 and generate_perl_struct_list_code typ cols name style n do_cleanups =
8763   pr "PREINIT:\n";
8764   pr "      struct guestfs_%s_list *%s;\n" typ n;
8765   pr "      int i;\n";
8766   pr "      HV *hv;\n";
8767   pr " PPCODE:\n";
8768   pr "      %s = guestfs_%s " n name;
8769   generate_c_call_args ~handle:"g" style;
8770   pr ";\n";
8771   do_cleanups ();
8772   pr "      if (%s == NULL)\n" n;
8773   pr "        croak (\"%%s\", guestfs_last_error (g));\n";
8774   pr "      EXTEND (SP, %s->len);\n" n;
8775   pr "      for (i = 0; i < %s->len; ++i) {\n" n;
8776   pr "        hv = newHV ();\n";
8777   List.iter (
8778     function
8779     | name, FString ->
8780         pr "        (void) hv_store (hv, \"%s\", %d, newSVpv (%s->val[i].%s, 0), 0);\n"
8781           name (String.length name) n name
8782     | name, FUUID ->
8783         pr "        (void) hv_store (hv, \"%s\", %d, newSVpv (%s->val[i].%s, 32), 0);\n"
8784           name (String.length name) n name
8785     | name, FBuffer ->
8786         pr "        (void) hv_store (hv, \"%s\", %d, newSVpvn (%s->val[i].%s, %s->val[i].%s_len), 0);\n"
8787           name (String.length name) n name n name
8788     | name, (FBytes|FUInt64) ->
8789         pr "        (void) hv_store (hv, \"%s\", %d, my_newSVull (%s->val[i].%s), 0);\n"
8790           name (String.length name) n name
8791     | name, FInt64 ->
8792         pr "        (void) hv_store (hv, \"%s\", %d, my_newSVll (%s->val[i].%s), 0);\n"
8793           name (String.length name) n name
8794     | name, (FInt32|FUInt32) ->
8795         pr "        (void) hv_store (hv, \"%s\", %d, newSVnv (%s->val[i].%s), 0);\n"
8796           name (String.length name) n name
8797     | name, FChar ->
8798         pr "        (void) hv_store (hv, \"%s\", %d, newSVpv (&%s->val[i].%s, 1), 0);\n"
8799           name (String.length name) n name
8800     | name, FOptPercent ->
8801         pr "        (void) hv_store (hv, \"%s\", %d, newSVnv (%s->val[i].%s), 0);\n"
8802           name (String.length name) n name
8803   ) cols;
8804   pr "        PUSHs (sv_2mortal (newRV ((SV *) hv)));\n";
8805   pr "      }\n";
8806   pr "      guestfs_free_%s_list (%s);\n" typ n
8807
8808 and generate_perl_struct_code typ cols name style n do_cleanups =
8809   pr "PREINIT:\n";
8810   pr "      struct guestfs_%s *%s;\n" typ n;
8811   pr " PPCODE:\n";
8812   pr "      %s = guestfs_%s " n name;
8813   generate_c_call_args ~handle:"g" style;
8814   pr ";\n";
8815   do_cleanups ();
8816   pr "      if (%s == NULL)\n" n;
8817   pr "        croak (\"%%s\", guestfs_last_error (g));\n";
8818   pr "      EXTEND (SP, 2 * %d);\n" (List.length cols);
8819   List.iter (
8820     fun ((name, _) as col) ->
8821       pr "      PUSHs (sv_2mortal (newSVpv (\"%s\", 0)));\n" name;
8822
8823       match col with
8824       | name, FString ->
8825           pr "      PUSHs (sv_2mortal (newSVpv (%s->%s, 0)));\n"
8826             n name
8827       | name, FBuffer ->
8828           pr "      PUSHs (sv_2mortal (newSVpvn (%s->%s, %s->%s_len)));\n"
8829             n name n name
8830       | name, FUUID ->
8831           pr "      PUSHs (sv_2mortal (newSVpv (%s->%s, 32)));\n"
8832             n name
8833       | name, (FBytes|FUInt64) ->
8834           pr "      PUSHs (sv_2mortal (my_newSVull (%s->%s)));\n"
8835             n name
8836       | name, FInt64 ->
8837           pr "      PUSHs (sv_2mortal (my_newSVll (%s->%s)));\n"
8838             n name
8839       | name, (FInt32|FUInt32) ->
8840           pr "      PUSHs (sv_2mortal (newSVnv (%s->%s)));\n"
8841             n name
8842       | name, FChar ->
8843           pr "      PUSHs (sv_2mortal (newSVpv (&%s->%s, 1)));\n"
8844             n name
8845       | name, FOptPercent ->
8846           pr "      PUSHs (sv_2mortal (newSVnv (%s->%s)));\n"
8847             n name
8848   ) cols;
8849   pr "      free (%s);\n" n
8850
8851 (* Generate Sys/Guestfs.pm. *)
8852 and generate_perl_pm () =
8853   generate_header HashStyle LGPLv2plus;
8854
8855   pr "\
8856 =pod
8857
8858 =head1 NAME
8859
8860 Sys::Guestfs - Perl bindings for libguestfs
8861
8862 =head1 SYNOPSIS
8863
8864  use Sys::Guestfs;
8865
8866  my $h = Sys::Guestfs->new ();
8867  $h->add_drive ('guest.img');
8868  $h->launch ();
8869  $h->mount ('/dev/sda1', '/');
8870  $h->touch ('/hello');
8871  $h->sync ();
8872
8873 =head1 DESCRIPTION
8874
8875 The C<Sys::Guestfs> module provides a Perl XS binding to the
8876 libguestfs API for examining and modifying virtual machine
8877 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
8894 FUSE.
8895
8896 See also L<Sys::Guestfs::Lib(3)> for a set of useful library
8897 functions for using libguestfs from Perl, including integration
8898 with libvirt.
8899
8900 =head1 ERRORS
8901
8902 All errors turn into calls to C<croak> (see L<Carp(3)>).
8903
8904 =head1 METHODS
8905
8906 =over 4
8907
8908 =cut
8909
8910 package Sys::Guestfs;
8911
8912 use strict;
8913 use warnings;
8914
8915 # This version number changes whenever a new function
8916 # is added to the libguestfs API.  It is not directly
8917 # related to the libguestfs version number.
8918 use vars qw($VERSION);
8919 $VERSION = '0.%d';
8920
8921 require XSLoader;
8922 XSLoader::load ('Sys::Guestfs');
8923
8924 =item $h = Sys::Guestfs->new ();
8925
8926 Create a new guestfs handle.
8927
8928 =cut
8929
8930 sub new {
8931   my $proto = shift;
8932   my $class = ref ($proto) || $proto;
8933
8934   my $self = Sys::Guestfs::_create ();
8935   bless $self, $class;
8936   return $self;
8937 }
8938
8939 " max_proc_nr;
8940
8941   (* Actions.  We only need to print documentation for these as
8942    * they are pulled in from the XS code automatically.
8943    *)
8944   List.iter (
8945     fun (name, style, _, flags, _, _, longdesc) ->
8946       if not (List.mem NotInDocs flags) then (
8947         let longdesc = replace_str longdesc "C<guestfs_" "C<$h-E<gt>" in
8948         pr "=item ";
8949         generate_perl_prototype name style;
8950         pr "\n\n";
8951         pr "%s\n\n" longdesc;
8952         if List.mem ProtocolLimitWarning flags then
8953           pr "%s\n\n" protocol_limit_warning;
8954         if List.mem DangerWillRobinson flags then
8955           pr "%s\n\n" danger_will_robinson;
8956         match deprecation_notice flags with
8957         | None -> ()
8958         | Some txt -> pr "%s\n\n" txt
8959       )
8960   ) all_functions_sorted;
8961
8962   (* End of file. *)
8963   pr "\
8964 =cut
8965
8966 1;
8967
8968 =back
8969
8970 =head1 COPYRIGHT
8971
8972 Copyright (C) %s Red Hat Inc.
8973
8974 =head1 LICENSE
8975
8976 Please see the file COPYING.LIB for the full license.
8977
8978 =head1 SEE ALSO
8979
8980 L<guestfs(3)>,
8981 L<guestfish(1)>,
8982 L<http://libguestfs.org>,
8983 L<Sys::Guestfs::Lib(3)>.
8984
8985 =cut
8986 " copyright_years
8987
8988 and generate_perl_prototype name style =
8989   (match fst style with
8990    | RErr -> ()
8991    | RBool n
8992    | RInt n
8993    | RInt64 n
8994    | RConstString n
8995    | RConstOptString n
8996    | RString n
8997    | RBufferOut n -> pr "$%s = " n
8998    | RStruct (n,_)
8999    | RHashtable n -> pr "%%%s = " n
9000    | RStringList n
9001    | RStructList (n,_) -> pr "@%s = " n
9002   );
9003   pr "$h->%s (" name;
9004   let comma = ref false in
9005   List.iter (
9006     fun arg ->
9007       if !comma then pr ", ";
9008       comma := true;
9009       match arg with
9010       | Pathname n | Device n | Dev_or_Path n | String n
9011       | OptString n | Bool n | Int n | Int64 n | FileIn n | FileOut n
9012       | BufferIn n ->
9013           pr "$%s" n
9014       | StringList n | DeviceList n ->
9015           pr "\\@%s" n
9016   ) (snd style);
9017   pr ");"
9018
9019 (* Generate Python C module. *)
9020 and generate_python_c () =
9021   generate_header CStyle LGPLv2plus;
9022
9023   pr "\
9024 #define PY_SSIZE_T_CLEAN 1
9025 #include <Python.h>
9026
9027 #include <stdio.h>
9028 #include <stdlib.h>
9029 #include <assert.h>
9030
9031 #include \"guestfs.h\"
9032
9033 typedef struct {
9034   PyObject_HEAD
9035   guestfs_h *g;
9036 } Pyguestfs_Object;
9037
9038 static guestfs_h *
9039 get_handle (PyObject *obj)
9040 {
9041   assert (obj);
9042   assert (obj != Py_None);
9043   return ((Pyguestfs_Object *) obj)->g;
9044 }
9045
9046 static PyObject *
9047 put_handle (guestfs_h *g)
9048 {
9049   assert (g);
9050   return
9051     PyCObject_FromVoidPtrAndDesc ((void *) g, (char *) \"guestfs_h\", NULL);
9052 }
9053
9054 /* This list should be freed (but not the strings) after use. */
9055 static char **
9056 get_string_list (PyObject *obj)
9057 {
9058   int i, len;
9059   char **r;
9060
9061   assert (obj);
9062
9063   if (!PyList_Check (obj)) {
9064     PyErr_SetString (PyExc_RuntimeError, \"expecting a list parameter\");
9065     return NULL;
9066   }
9067
9068   len = PyList_Size (obj);
9069   r = malloc (sizeof (char *) * (len+1));
9070   if (r == NULL) {
9071     PyErr_SetString (PyExc_RuntimeError, \"get_string_list: out of memory\");
9072     return NULL;
9073   }
9074
9075   for (i = 0; i < len; ++i)
9076     r[i] = PyString_AsString (PyList_GetItem (obj, i));
9077   r[len] = NULL;
9078
9079   return r;
9080 }
9081
9082 static PyObject *
9083 put_string_list (char * const * const argv)
9084 {
9085   PyObject *list;
9086   int argc, i;
9087
9088   for (argc = 0; argv[argc] != NULL; ++argc)
9089     ;
9090
9091   list = PyList_New (argc);
9092   for (i = 0; i < argc; ++i)
9093     PyList_SetItem (list, i, PyString_FromString (argv[i]));
9094
9095   return list;
9096 }
9097
9098 static PyObject *
9099 put_table (char * const * const argv)
9100 {
9101   PyObject *list, *item;
9102   int argc, i;
9103
9104   for (argc = 0; argv[argc] != NULL; ++argc)
9105     ;
9106
9107   list = PyList_New (argc >> 1);
9108   for (i = 0; i < argc; i += 2) {
9109     item = PyTuple_New (2);
9110     PyTuple_SetItem (item, 0, PyString_FromString (argv[i]));
9111     PyTuple_SetItem (item, 1, PyString_FromString (argv[i+1]));
9112     PyList_SetItem (list, i >> 1, item);
9113   }
9114
9115   return list;
9116 }
9117
9118 static void
9119 free_strings (char **argv)
9120 {
9121   int argc;
9122
9123   for (argc = 0; argv[argc] != NULL; ++argc)
9124     free (argv[argc]);
9125   free (argv);
9126 }
9127
9128 static PyObject *
9129 py_guestfs_create (PyObject *self, PyObject *args)
9130 {
9131   guestfs_h *g;
9132
9133   g = guestfs_create ();
9134   if (g == NULL) {
9135     PyErr_SetString (PyExc_RuntimeError,
9136                      \"guestfs.create: failed to allocate handle\");
9137     return NULL;
9138   }
9139   guestfs_set_error_handler (g, NULL, NULL);
9140   return put_handle (g);
9141 }
9142
9143 static PyObject *
9144 py_guestfs_close (PyObject *self, PyObject *args)
9145 {
9146   PyObject *py_g;
9147   guestfs_h *g;
9148
9149   if (!PyArg_ParseTuple (args, (char *) \"O:guestfs_close\", &py_g))
9150     return NULL;
9151   g = get_handle (py_g);
9152
9153   guestfs_close (g);
9154
9155   Py_INCREF (Py_None);
9156   return Py_None;
9157 }
9158
9159 ";
9160
9161   let emit_put_list_function typ =
9162     pr "static PyObject *\n";
9163     pr "put_%s_list (struct guestfs_%s_list *%ss)\n" typ typ typ;
9164     pr "{\n";
9165     pr "  PyObject *list;\n";
9166     pr "  int i;\n";
9167     pr "\n";
9168     pr "  list = PyList_New (%ss->len);\n" typ;
9169     pr "  for (i = 0; i < %ss->len; ++i)\n" typ;
9170     pr "    PyList_SetItem (list, i, put_%s (&%ss->val[i]));\n" typ typ;
9171     pr "  return list;\n";
9172     pr "};\n";
9173     pr "\n"
9174   in
9175
9176   (* Structures, turned into Python dictionaries. *)
9177   List.iter (
9178     fun (typ, cols) ->
9179       pr "static PyObject *\n";
9180       pr "put_%s (struct guestfs_%s *%s)\n" typ typ typ;
9181       pr "{\n";
9182       pr "  PyObject *dict;\n";
9183       pr "\n";
9184       pr "  dict = PyDict_New ();\n";
9185       List.iter (
9186         function
9187         | name, FString ->
9188             pr "  PyDict_SetItemString (dict, \"%s\",\n" name;
9189             pr "                        PyString_FromString (%s->%s));\n"
9190               typ name
9191         | name, FBuffer ->
9192             pr "  PyDict_SetItemString (dict, \"%s\",\n" name;
9193             pr "                        PyString_FromStringAndSize (%s->%s, %s->%s_len));\n"
9194               typ name typ name
9195         | name, FUUID ->
9196             pr "  PyDict_SetItemString (dict, \"%s\",\n" name;
9197             pr "                        PyString_FromStringAndSize (%s->%s, 32));\n"
9198               typ name
9199         | name, (FBytes|FUInt64) ->
9200             pr "  PyDict_SetItemString (dict, \"%s\",\n" name;
9201             pr "                        PyLong_FromUnsignedLongLong (%s->%s));\n"
9202               typ name
9203         | name, FInt64 ->
9204             pr "  PyDict_SetItemString (dict, \"%s\",\n" name;
9205             pr "                        PyLong_FromLongLong (%s->%s));\n"
9206               typ name
9207         | name, FUInt32 ->
9208             pr "  PyDict_SetItemString (dict, \"%s\",\n" name;
9209             pr "                        PyLong_FromUnsignedLong (%s->%s));\n"
9210               typ name
9211         | name, FInt32 ->
9212             pr "  PyDict_SetItemString (dict, \"%s\",\n" name;
9213             pr "                        PyLong_FromLong (%s->%s));\n"
9214               typ name
9215         | name, FOptPercent ->
9216             pr "  if (%s->%s >= 0)\n" typ name;
9217             pr "    PyDict_SetItemString (dict, \"%s\",\n" name;
9218             pr "                          PyFloat_FromDouble ((double) %s->%s));\n"
9219               typ name;
9220             pr "  else {\n";
9221             pr "    Py_INCREF (Py_None);\n";
9222             pr "    PyDict_SetItemString (dict, \"%s\", Py_None);\n" name;
9223             pr "  }\n"
9224         | name, FChar ->
9225             pr "  PyDict_SetItemString (dict, \"%s\",\n" name;
9226             pr "                        PyString_FromStringAndSize (&dirent->%s, 1));\n" name
9227       ) cols;
9228       pr "  return dict;\n";
9229       pr "};\n";
9230       pr "\n";
9231
9232   ) structs;
9233
9234   (* Emit a put_TYPE_list function definition only if that function is used. *)
9235   List.iter (
9236     function
9237     | typ, (RStructListOnly | RStructAndList) ->
9238         (* generate the function for typ *)
9239         emit_put_list_function typ
9240     | typ, _ -> () (* empty *)
9241   ) (rstructs_used_by all_functions);
9242
9243   (* Python wrapper functions. *)
9244   List.iter (
9245     fun (name, style, _, _, _, _, _) ->
9246       pr "static PyObject *\n";
9247       pr "py_guestfs_%s (PyObject *self, PyObject *args)\n" name;
9248       pr "{\n";
9249
9250       pr "  PyObject *py_g;\n";
9251       pr "  guestfs_h *g;\n";
9252       pr "  PyObject *py_r;\n";
9253
9254       let error_code =
9255         match fst style with
9256         | RErr | RInt _ | RBool _ -> pr "  int r;\n"; "-1"
9257         | RInt64 _ -> pr "  int64_t r;\n"; "-1"
9258         | RConstString _ | RConstOptString _ ->
9259             pr "  const char *r;\n"; "NULL"
9260         | RString _ -> pr "  char *r;\n"; "NULL"
9261         | RStringList _ | RHashtable _ -> pr "  char **r;\n"; "NULL"
9262         | RStruct (_, typ) -> pr "  struct guestfs_%s *r;\n" typ; "NULL"
9263         | RStructList (_, typ) ->
9264             pr "  struct guestfs_%s_list *r;\n" typ; "NULL"
9265         | RBufferOut _ ->
9266             pr "  char *r;\n";
9267             pr "  size_t size;\n";
9268             "NULL" in
9269
9270       List.iter (
9271         function
9272         | Pathname n | Device n | Dev_or_Path n | String n
9273         | FileIn n | FileOut n ->
9274             pr "  const char *%s;\n" n
9275         | OptString n -> pr "  const char *%s;\n" n
9276         | BufferIn n ->
9277             pr "  const char *%s;\n" n;
9278             pr "  Py_ssize_t %s_size;\n" n
9279         | StringList n | DeviceList n ->
9280             pr "  PyObject *py_%s;\n" n;
9281             pr "  char **%s;\n" n
9282         | Bool n -> pr "  int %s;\n" n
9283         | Int n -> pr "  int %s;\n" n
9284         | Int64 n -> pr "  long long %s;\n" n
9285       ) (snd style);
9286
9287       pr "\n";
9288
9289       (* Convert the parameters. *)
9290       pr "  if (!PyArg_ParseTuple (args, (char *) \"O";
9291       List.iter (
9292         function
9293         | Pathname _ | Device _ | Dev_or_Path _ | String _ | FileIn _ | FileOut _ -> pr "s"
9294         | OptString _ -> pr "z"
9295         | StringList _ | DeviceList _ -> pr "O"
9296         | Bool _ -> pr "i" (* XXX Python has booleans? *)
9297         | Int _ -> pr "i"
9298         | Int64 _ -> pr "L" (* XXX Whoever thought it was a good idea to
9299                              * emulate C's int/long/long long in Python?
9300                              *)
9301         | BufferIn _ -> pr "s#"
9302       ) (snd style);
9303       pr ":guestfs_%s\",\n" name;
9304       pr "                         &py_g";
9305       List.iter (
9306         function
9307         | Pathname n | Device n | Dev_or_Path n | String n | FileIn n | FileOut n -> pr ", &%s" n
9308         | OptString n -> pr ", &%s" n
9309         | StringList n | DeviceList n -> pr ", &py_%s" n
9310         | Bool n -> pr ", &%s" n
9311         | Int n -> pr ", &%s" n
9312         | Int64 n -> pr ", &%s" n
9313         | BufferIn n -> pr ", &%s, &%s_size" n n
9314       ) (snd style);
9315
9316       pr "))\n";
9317       pr "    return NULL;\n";
9318
9319       pr "  g = get_handle (py_g);\n";
9320       List.iter (
9321         function
9322         | Pathname _ | Device _ | Dev_or_Path _ | String _
9323         | FileIn _ | FileOut _ | OptString _ | Bool _ | Int _ | Int64 _
9324         | BufferIn _ -> ()
9325         | StringList n | DeviceList n ->
9326             pr "  %s = get_string_list (py_%s);\n" n n;
9327             pr "  if (!%s) return NULL;\n" n
9328       ) (snd style);
9329
9330       pr "\n";
9331
9332       pr "  r = guestfs_%s " name;
9333       generate_c_call_args ~handle:"g" style;
9334       pr ";\n";
9335
9336       List.iter (
9337         function
9338         | Pathname _ | Device _ | Dev_or_Path _ | String _
9339         | FileIn _ | FileOut _ | OptString _ | Bool _ | Int _ | Int64 _
9340         | BufferIn _ -> ()
9341         | StringList n | DeviceList n ->
9342             pr "  free (%s);\n" n
9343       ) (snd style);
9344
9345       pr "  if (r == %s) {\n" error_code;
9346       pr "    PyErr_SetString (PyExc_RuntimeError, guestfs_last_error (g));\n";
9347       pr "    return NULL;\n";
9348       pr "  }\n";
9349       pr "\n";
9350
9351       (match fst style with
9352        | RErr ->
9353            pr "  Py_INCREF (Py_None);\n";
9354            pr "  py_r = Py_None;\n"
9355        | RInt _
9356        | RBool _ -> pr "  py_r = PyInt_FromLong ((long) r);\n"
9357        | RInt64 _ -> pr "  py_r = PyLong_FromLongLong (r);\n"
9358        | RConstString _ -> pr "  py_r = PyString_FromString (r);\n"
9359        | RConstOptString _ ->
9360            pr "  if (r)\n";
9361            pr "    py_r = PyString_FromString (r);\n";
9362            pr "  else {\n";
9363            pr "    Py_INCREF (Py_None);\n";
9364            pr "    py_r = Py_None;\n";
9365            pr "  }\n"
9366        | RString _ ->
9367            pr "  py_r = PyString_FromString (r);\n";
9368            pr "  free (r);\n"
9369        | RStringList _ ->
9370            pr "  py_r = put_string_list (r);\n";
9371            pr "  free_strings (r);\n"
9372        | RStruct (_, typ) ->
9373            pr "  py_r = put_%s (r);\n" typ;
9374            pr "  guestfs_free_%s (r);\n" typ
9375        | RStructList (_, typ) ->
9376            pr "  py_r = put_%s_list (r);\n" typ;
9377            pr "  guestfs_free_%s_list (r);\n" typ
9378        | RHashtable n ->
9379            pr "  py_r = put_table (r);\n";
9380            pr "  free_strings (r);\n"
9381        | RBufferOut _ ->
9382            pr "  py_r = PyString_FromStringAndSize (r, size);\n";
9383            pr "  free (r);\n"
9384       );
9385
9386       pr "  return py_r;\n";
9387       pr "}\n";
9388       pr "\n"
9389   ) all_functions;
9390
9391   (* Table of functions. *)
9392   pr "static PyMethodDef methods[] = {\n";
9393   pr "  { (char *) \"create\", py_guestfs_create, METH_VARARGS, NULL },\n";
9394   pr "  { (char *) \"close\", py_guestfs_close, METH_VARARGS, NULL },\n";
9395   List.iter (
9396     fun (name, _, _, _, _, _, _) ->
9397       pr "  { (char *) \"%s\", py_guestfs_%s, METH_VARARGS, NULL },\n"
9398         name name
9399   ) all_functions;
9400   pr "  { NULL, NULL, 0, NULL }\n";
9401   pr "};\n";
9402   pr "\n";
9403
9404   (* Init function. *)
9405   pr "\
9406 void
9407 initlibguestfsmod (void)
9408 {
9409   static int initialized = 0;
9410
9411   if (initialized) return;
9412   Py_InitModule ((char *) \"libguestfsmod\", methods);
9413   initialized = 1;
9414 }
9415 "
9416
9417 (* Generate Python module. *)
9418 and generate_python_py () =
9419   generate_header HashStyle LGPLv2plus;
9420
9421   pr "\
9422 u\"\"\"Python bindings for libguestfs
9423
9424 import guestfs
9425 g = guestfs.GuestFS ()
9426 g.add_drive (\"guest.img\")
9427 g.launch ()
9428 parts = g.list_partitions ()
9429
9430 The guestfs module provides a Python binding to the libguestfs API
9431 for examining and modifying virtual machine disk images.
9432
9433 Amongst the things this is good for: making batch configuration
9434 changes to guests, getting disk used/free statistics (see also:
9435 virt-df), migrating between virtualization systems (see also:
9436 virt-p2v), performing partial backups, performing partial guest
9437 clones, cloning guests and changing registry/UUID/hostname info, and
9438 much else besides.
9439
9440 Libguestfs uses Linux kernel and qemu code, and can access any type of
9441 guest filesystem that Linux and qemu can, including but not limited
9442 to: ext2/3/4, btrfs, FAT and NTFS, LVM, many different disk partition
9443 schemes, qcow, qcow2, vmdk.
9444
9445 Libguestfs provides ways to enumerate guest storage (eg. partitions,
9446 LVs, what filesystem is in each LV, etc.).  It can also run commands
9447 in the context of the guest.  Also you can access filesystems over
9448 FUSE.
9449
9450 Errors which happen while using the API are turned into Python
9451 RuntimeError exceptions.
9452
9453 To create a guestfs handle you usually have to perform the following
9454 sequence of calls:
9455
9456 # Create the handle, call add_drive at least once, and possibly
9457 # several times if the guest has multiple block devices:
9458 g = guestfs.GuestFS ()
9459 g.add_drive (\"guest.img\")
9460
9461 # Launch the qemu subprocess and wait for it to become ready:
9462 g.launch ()
9463
9464 # Now you can issue commands, for example:
9465 logvols = g.lvs ()
9466
9467 \"\"\"
9468
9469 import libguestfsmod
9470
9471 class GuestFS:
9472     \"\"\"Instances of this class are libguestfs API handles.\"\"\"
9473
9474     def __init__ (self):
9475         \"\"\"Create a new libguestfs handle.\"\"\"
9476         self._o = libguestfsmod.create ()
9477
9478     def __del__ (self):
9479         libguestfsmod.close (self._o)
9480
9481 ";
9482
9483   List.iter (
9484     fun (name, style, _, flags, _, _, longdesc) ->
9485       pr "    def %s " name;
9486       generate_py_call_args ~handle:"self" (snd style);
9487       pr ":\n";
9488
9489       if not (List.mem NotInDocs flags) then (
9490         let doc = replace_str longdesc "C<guestfs_" "C<g." in
9491         let doc =
9492           match fst style with
9493           | RErr | RInt _ | RInt64 _ | RBool _
9494           | RConstOptString _ | RConstString _
9495           | RString _ | RBufferOut _ -> doc
9496           | RStringList _ ->
9497               doc ^ "\n\nThis function returns a list of strings."
9498           | RStruct (_, typ) ->
9499               doc ^ sprintf "\n\nThis function returns a dictionary, with keys matching the various fields in the guestfs_%s structure." typ
9500           | RStructList (_, typ) ->
9501               doc ^ sprintf "\n\nThis function returns a list of %ss.  Each %s is represented as a dictionary." typ typ
9502           | RHashtable _ ->
9503               doc ^ "\n\nThis function returns a dictionary." in
9504         let doc =
9505           if List.mem ProtocolLimitWarning flags then
9506             doc ^ "\n\n" ^ protocol_limit_warning
9507           else doc in
9508         let doc =
9509           if List.mem DangerWillRobinson flags then
9510             doc ^ "\n\n" ^ danger_will_robinson
9511           else doc in
9512         let doc =
9513           match deprecation_notice flags with
9514           | None -> doc
9515           | Some txt -> doc ^ "\n\n" ^ txt in
9516         let doc = pod2text ~width:60 name doc in
9517         let doc = List.map (fun line -> replace_str line "\\" "\\\\") doc in
9518         let doc = String.concat "\n        " doc in
9519         pr "        u\"\"\"%s\"\"\"\n" doc;
9520       );
9521       pr "        return libguestfsmod.%s " name;
9522       generate_py_call_args ~handle:"self._o" (snd style);
9523       pr "\n";
9524       pr "\n";
9525   ) all_functions
9526
9527 (* Generate Python call arguments, eg "(handle, foo, bar)" *)
9528 and generate_py_call_args ~handle args =
9529   pr "(%s" handle;
9530   List.iter (fun arg -> pr ", %s" (name_of_argt arg)) args;
9531   pr ")"
9532
9533 (* Useful if you need the longdesc POD text as plain text.  Returns a
9534  * list of lines.
9535  *
9536  * Because this is very slow (the slowest part of autogeneration),
9537  * we memoize the results.
9538  *)
9539 and pod2text ~width name longdesc =
9540   let key = width, name, longdesc in
9541   try Hashtbl.find pod2text_memo key
9542   with Not_found ->
9543     let filename, chan = Filename.open_temp_file "gen" ".tmp" in
9544     fprintf chan "=head1 %s\n\n%s\n" name longdesc;
9545     close_out chan;
9546     let cmd = sprintf "pod2text -w %d %s" width (Filename.quote filename) in
9547     let chan = open_process_in cmd in
9548     let lines = ref [] in
9549     let rec loop i =
9550       let line = input_line chan in
9551       if i = 1 then             (* discard the first line of output *)
9552         loop (i+1)
9553       else (
9554         let line = triml line in
9555         lines := line :: !lines;
9556         loop (i+1)
9557       ) in
9558     let lines = try loop 1 with End_of_file -> List.rev !lines in
9559     unlink filename;
9560     (match close_process_in chan with
9561      | WEXITED 0 -> ()
9562      | WEXITED i ->
9563          failwithf "pod2text: process exited with non-zero status (%d)" i
9564      | WSIGNALED i | WSTOPPED i ->
9565          failwithf "pod2text: process signalled or stopped by signal %d" i
9566     );
9567     Hashtbl.add pod2text_memo key lines;
9568     pod2text_memo_updated ();
9569     lines
9570
9571 (* Generate ruby bindings. *)
9572 and generate_ruby_c () =
9573   generate_header CStyle LGPLv2plus;
9574
9575   pr "\
9576 #include <stdio.h>
9577 #include <stdlib.h>
9578
9579 #include <ruby.h>
9580
9581 #include \"guestfs.h\"
9582
9583 #include \"extconf.h\"
9584
9585 /* For Ruby < 1.9 */
9586 #ifndef RARRAY_LEN
9587 #define RARRAY_LEN(r) (RARRAY((r))->len)
9588 #endif
9589
9590 static VALUE m_guestfs;                 /* guestfs module */
9591 static VALUE c_guestfs;                 /* guestfs_h handle */
9592 static VALUE e_Error;                   /* used for all errors */
9593
9594 static void ruby_guestfs_free (void *p)
9595 {
9596   if (!p) return;
9597   guestfs_close ((guestfs_h *) p);
9598 }
9599
9600 static VALUE ruby_guestfs_create (VALUE m)
9601 {
9602   guestfs_h *g;
9603
9604   g = guestfs_create ();
9605   if (!g)
9606     rb_raise (e_Error, \"failed to create guestfs handle\");
9607
9608   /* Don't print error messages to stderr by default. */
9609   guestfs_set_error_handler (g, NULL, NULL);
9610
9611   /* Wrap it, and make sure the close function is called when the
9612    * handle goes away.
9613    */
9614   return Data_Wrap_Struct (c_guestfs, NULL, ruby_guestfs_free, g);
9615 }
9616
9617 static VALUE ruby_guestfs_close (VALUE gv)
9618 {
9619   guestfs_h *g;
9620   Data_Get_Struct (gv, guestfs_h, g);
9621
9622   ruby_guestfs_free (g);
9623   DATA_PTR (gv) = NULL;
9624
9625   return Qnil;
9626 }
9627
9628 ";
9629
9630   List.iter (
9631     fun (name, style, _, _, _, _, _) ->
9632       pr "static VALUE ruby_guestfs_%s (VALUE gv" name;
9633       List.iter (fun arg -> pr ", VALUE %sv" (name_of_argt arg)) (snd style);
9634       pr ")\n";
9635       pr "{\n";
9636       pr "  guestfs_h *g;\n";
9637       pr "  Data_Get_Struct (gv, guestfs_h, g);\n";
9638       pr "  if (!g)\n";
9639       pr "    rb_raise (rb_eArgError, \"%%s: used handle after closing it\", \"%s\");\n"
9640         name;
9641       pr "\n";
9642
9643       List.iter (
9644         function
9645         | Pathname n | Device n | Dev_or_Path n | String n | FileIn n | FileOut n ->
9646             pr "  Check_Type (%sv, T_STRING);\n" n;
9647             pr "  const char *%s = StringValueCStr (%sv);\n" n n;
9648             pr "  if (!%s)\n" n;
9649             pr "    rb_raise (rb_eTypeError, \"expected string for parameter %%s of %%s\",\n";
9650             pr "              \"%s\", \"%s\");\n" n name
9651         | BufferIn n ->
9652             pr "  Check_Type (%sv, T_STRING);\n" n;
9653             pr "  const char *%s = RSTRING (%sv)->ptr;\n" n n;
9654             pr "  if (!%s)\n" n;
9655             pr "    rb_raise (rb_eTypeError, \"expected string for parameter %%s of %%s\",\n";
9656             pr "              \"%s\", \"%s\");\n" n name;
9657             pr "  size_t %s_size = RSTRING (%sv)->len;\n" n n
9658         | OptString n ->
9659             pr "  const char *%s = !NIL_P (%sv) ? StringValueCStr (%sv) : NULL;\n" n n n
9660         | StringList n | DeviceList n ->
9661             pr "  char **%s;\n" n;
9662             pr "  Check_Type (%sv, T_ARRAY);\n" n;
9663             pr "  {\n";
9664             pr "    int i, len;\n";
9665             pr "    len = RARRAY_LEN (%sv);\n" n;
9666             pr "    %s = guestfs_safe_malloc (g, sizeof (char *) * (len+1));\n"
9667               n;
9668             pr "    for (i = 0; i < len; ++i) {\n";
9669             pr "      VALUE v = rb_ary_entry (%sv, i);\n" n;
9670             pr "      %s[i] = StringValueCStr (v);\n" n;
9671             pr "    }\n";
9672             pr "    %s[len] = NULL;\n" n;
9673             pr "  }\n";
9674         | Bool n ->
9675             pr "  int %s = RTEST (%sv);\n" n n
9676         | Int n ->
9677             pr "  int %s = NUM2INT (%sv);\n" n n
9678         | Int64 n ->
9679             pr "  long long %s = NUM2LL (%sv);\n" n n
9680       ) (snd style);
9681       pr "\n";
9682
9683       let error_code =
9684         match fst style with
9685         | RErr | RInt _ | RBool _ -> pr "  int r;\n"; "-1"
9686         | RInt64 _ -> pr "  int64_t r;\n"; "-1"
9687         | RConstString _ | RConstOptString _ ->
9688             pr "  const char *r;\n"; "NULL"
9689         | RString _ -> pr "  char *r;\n"; "NULL"
9690         | RStringList _ | RHashtable _ -> pr "  char **r;\n"; "NULL"
9691         | RStruct (_, typ) -> pr "  struct guestfs_%s *r;\n" typ; "NULL"
9692         | RStructList (_, typ) ->
9693             pr "  struct guestfs_%s_list *r;\n" typ; "NULL"
9694         | RBufferOut _ ->
9695             pr "  char *r;\n";
9696             pr "  size_t size;\n";
9697             "NULL" in
9698       pr "\n";
9699
9700       pr "  r = guestfs_%s " name;
9701       generate_c_call_args ~handle:"g" style;
9702       pr ";\n";
9703
9704       List.iter (
9705         function
9706         | Pathname _ | Device _ | Dev_or_Path _ | String _
9707         | FileIn _ | FileOut _ | OptString _ | Bool _ | Int _ | Int64 _
9708         | BufferIn _ -> ()
9709         | StringList n | DeviceList n ->
9710             pr "  free (%s);\n" n
9711       ) (snd style);
9712
9713       pr "  if (r == %s)\n" error_code;
9714       pr "    rb_raise (e_Error, \"%%s\", guestfs_last_error (g));\n";
9715       pr "\n";
9716
9717       (match fst style with
9718        | RErr ->
9719            pr "  return Qnil;\n"
9720        | RInt _ | RBool _ ->
9721            pr "  return INT2NUM (r);\n"
9722        | RInt64 _ ->
9723            pr "  return ULL2NUM (r);\n"
9724        | RConstString _ ->
9725            pr "  return rb_str_new2 (r);\n";
9726        | RConstOptString _ ->
9727            pr "  if (r)\n";
9728            pr "    return rb_str_new2 (r);\n";
9729            pr "  else\n";
9730            pr "    return Qnil;\n";
9731        | RString _ ->
9732            pr "  VALUE rv = rb_str_new2 (r);\n";
9733            pr "  free (r);\n";
9734            pr "  return rv;\n";
9735        | RStringList _ ->
9736            pr "  int i, len = 0;\n";
9737            pr "  for (i = 0; r[i] != NULL; ++i) len++;\n";
9738            pr "  VALUE rv = rb_ary_new2 (len);\n";
9739            pr "  for (i = 0; r[i] != NULL; ++i) {\n";
9740            pr "    rb_ary_push (rv, rb_str_new2 (r[i]));\n";
9741            pr "    free (r[i]);\n";
9742            pr "  }\n";
9743            pr "  free (r);\n";
9744            pr "  return rv;\n"
9745        | RStruct (_, typ) ->
9746            let cols = cols_of_struct typ in
9747            generate_ruby_struct_code typ cols
9748        | RStructList (_, typ) ->
9749            let cols = cols_of_struct typ in
9750            generate_ruby_struct_list_code typ cols
9751        | RHashtable _ ->
9752            pr "  VALUE rv = rb_hash_new ();\n";
9753            pr "  int i;\n";
9754            pr "  for (i = 0; r[i] != NULL; i+=2) {\n";
9755            pr "    rb_hash_aset (rv, rb_str_new2 (r[i]), rb_str_new2 (r[i+1]));\n";
9756            pr "    free (r[i]);\n";
9757            pr "    free (r[i+1]);\n";
9758            pr "  }\n";
9759            pr "  free (r);\n";
9760            pr "  return rv;\n"
9761        | RBufferOut _ ->
9762            pr "  VALUE rv = rb_str_new (r, size);\n";
9763            pr "  free (r);\n";
9764            pr "  return rv;\n";
9765       );
9766
9767       pr "}\n";
9768       pr "\n"
9769   ) all_functions;
9770
9771   pr "\
9772 /* Initialize the module. */
9773 void Init__guestfs ()
9774 {
9775   m_guestfs = rb_define_module (\"Guestfs\");
9776   c_guestfs = rb_define_class_under (m_guestfs, \"Guestfs\", rb_cObject);
9777   e_Error = rb_define_class_under (m_guestfs, \"Error\", rb_eStandardError);
9778
9779   rb_define_module_function (m_guestfs, \"create\", ruby_guestfs_create, 0);
9780   rb_define_method (c_guestfs, \"close\", ruby_guestfs_close, 0);
9781
9782 ";
9783   (* Define the rest of the methods. *)
9784   List.iter (
9785     fun (name, style, _, _, _, _, _) ->
9786       pr "  rb_define_method (c_guestfs, \"%s\",\n" name;
9787       pr "        ruby_guestfs_%s, %d);\n" name (List.length (snd style))
9788   ) all_functions;
9789
9790   pr "}\n"
9791
9792 (* Ruby code to return a struct. *)
9793 and generate_ruby_struct_code typ cols =
9794   pr "  VALUE rv = rb_hash_new ();\n";
9795   List.iter (
9796     function
9797     | name, FString ->
9798         pr "  rb_hash_aset (rv, rb_str_new2 (\"%s\"), rb_str_new2 (r->%s));\n" name name
9799     | name, FBuffer ->
9800         pr "  rb_hash_aset (rv, rb_str_new2 (\"%s\"), rb_str_new (r->%s, r->%s_len));\n" name name name
9801     | name, FUUID ->
9802         pr "  rb_hash_aset (rv, rb_str_new2 (\"%s\"), rb_str_new (r->%s, 32));\n" name name
9803     | name, (FBytes|FUInt64) ->
9804         pr "  rb_hash_aset (rv, rb_str_new2 (\"%s\"), ULL2NUM (r->%s));\n" name name
9805     | name, FInt64 ->
9806         pr "  rb_hash_aset (rv, rb_str_new2 (\"%s\"), LL2NUM (r->%s));\n" name name
9807     | name, FUInt32 ->
9808         pr "  rb_hash_aset (rv, rb_str_new2 (\"%s\"), UINT2NUM (r->%s));\n" name name
9809     | name, FInt32 ->
9810         pr "  rb_hash_aset (rv, rb_str_new2 (\"%s\"), INT2NUM (r->%s));\n" name name
9811     | name, FOptPercent ->
9812         pr "  rb_hash_aset (rv, rb_str_new2 (\"%s\"), rb_dbl2big (r->%s));\n" name name
9813     | name, FChar -> (* XXX wrong? *)
9814         pr "  rb_hash_aset (rv, rb_str_new2 (\"%s\"), ULL2NUM (r->%s));\n" name name
9815   ) cols;
9816   pr "  guestfs_free_%s (r);\n" typ;
9817   pr "  return rv;\n"
9818
9819 (* Ruby code to return a struct list. *)
9820 and generate_ruby_struct_list_code typ cols =
9821   pr "  VALUE rv = rb_ary_new2 (r->len);\n";
9822   pr "  int i;\n";
9823   pr "  for (i = 0; i < r->len; ++i) {\n";
9824   pr "    VALUE hv = rb_hash_new ();\n";
9825   List.iter (
9826     function
9827     | name, FString ->
9828         pr "    rb_hash_aset (hv, rb_str_new2 (\"%s\"), rb_str_new2 (r->val[i].%s));\n" name name
9829     | name, FBuffer ->
9830         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
9831     | name, FUUID ->
9832         pr "    rb_hash_aset (hv, rb_str_new2 (\"%s\"), rb_str_new (r->val[i].%s, 32));\n" name name
9833     | name, (FBytes|FUInt64) ->
9834         pr "    rb_hash_aset (hv, rb_str_new2 (\"%s\"), ULL2NUM (r->val[i].%s));\n" name name
9835     | name, FInt64 ->
9836         pr "    rb_hash_aset (hv, rb_str_new2 (\"%s\"), LL2NUM (r->val[i].%s));\n" name name
9837     | name, FUInt32 ->
9838         pr "    rb_hash_aset (hv, rb_str_new2 (\"%s\"), UINT2NUM (r->val[i].%s));\n" name name
9839     | name, FInt32 ->
9840         pr "    rb_hash_aset (hv, rb_str_new2 (\"%s\"), INT2NUM (r->val[i].%s));\n" name name
9841     | name, FOptPercent ->
9842         pr "    rb_hash_aset (hv, rb_str_new2 (\"%s\"), rb_dbl2big (r->val[i].%s));\n" name name
9843     | name, FChar -> (* XXX wrong? *)
9844         pr "    rb_hash_aset (hv, rb_str_new2 (\"%s\"), ULL2NUM (r->val[i].%s));\n" name name
9845   ) cols;
9846   pr "    rb_ary_push (rv, hv);\n";
9847   pr "  }\n";
9848   pr "  guestfs_free_%s_list (r);\n" typ;
9849   pr "  return rv;\n"
9850
9851 (* Generate Java bindings GuestFS.java file. *)
9852 and generate_java_java () =
9853   generate_header CStyle LGPLv2plus;
9854
9855   pr "\
9856 package com.redhat.et.libguestfs;
9857
9858 import java.util.HashMap;
9859 import com.redhat.et.libguestfs.LibGuestFSException;
9860 import com.redhat.et.libguestfs.PV;
9861 import com.redhat.et.libguestfs.VG;
9862 import com.redhat.et.libguestfs.LV;
9863 import com.redhat.et.libguestfs.Stat;
9864 import com.redhat.et.libguestfs.StatVFS;
9865 import com.redhat.et.libguestfs.IntBool;
9866 import com.redhat.et.libguestfs.Dirent;
9867
9868 /**
9869  * The GuestFS object is a libguestfs handle.
9870  *
9871  * @author rjones
9872  */
9873 public class GuestFS {
9874   // Load the native code.
9875   static {
9876     System.loadLibrary (\"guestfs_jni\");
9877   }
9878
9879   /**
9880    * The native guestfs_h pointer.
9881    */
9882   long g;
9883
9884   /**
9885    * Create a libguestfs handle.
9886    *
9887    * @throws LibGuestFSException
9888    */
9889   public GuestFS () throws LibGuestFSException
9890   {
9891     g = _create ();
9892   }
9893   private native long _create () throws LibGuestFSException;
9894
9895   /**
9896    * Close a libguestfs handle.
9897    *
9898    * You can also leave handles to be collected by the garbage
9899    * collector, but this method ensures that the resources used
9900    * by the handle are freed up immediately.  If you call any
9901    * other methods after closing the handle, you will get an
9902    * exception.
9903    *
9904    * @throws LibGuestFSException
9905    */
9906   public void close () throws LibGuestFSException
9907   {
9908     if (g != 0)
9909       _close (g);
9910     g = 0;
9911   }
9912   private native void _close (long g) throws LibGuestFSException;
9913
9914   public void finalize () throws LibGuestFSException
9915   {
9916     close ();
9917   }
9918
9919 ";
9920
9921   List.iter (
9922     fun (name, style, _, flags, _, shortdesc, longdesc) ->
9923       if not (List.mem NotInDocs flags); then (
9924         let doc = replace_str longdesc "C<guestfs_" "C<g." in
9925         let doc =
9926           if List.mem ProtocolLimitWarning flags then
9927             doc ^ "\n\n" ^ protocol_limit_warning
9928           else doc in
9929         let doc =
9930           if List.mem DangerWillRobinson flags then
9931             doc ^ "\n\n" ^ danger_will_robinson
9932           else doc in
9933         let doc =
9934           match deprecation_notice flags with
9935           | None -> doc
9936           | Some txt -> doc ^ "\n\n" ^ txt in
9937         let doc = pod2text ~width:60 name doc in
9938         let doc = List.map (            (* RHBZ#501883 *)
9939           function
9940           | "" -> "<p>"
9941           | nonempty -> nonempty
9942         ) doc in
9943         let doc = String.concat "\n   * " doc in
9944
9945         pr "  /**\n";
9946         pr "   * %s\n" shortdesc;
9947         pr "   * <p>\n";
9948         pr "   * %s\n" doc;
9949         pr "   * @throws LibGuestFSException\n";
9950         pr "   */\n";
9951         pr "  ";
9952       );
9953       generate_java_prototype ~public:true ~semicolon:false name style;
9954       pr "\n";
9955       pr "  {\n";
9956       pr "    if (g == 0)\n";
9957       pr "      throw new LibGuestFSException (\"%s: handle is closed\");\n"
9958         name;
9959       pr "    ";
9960       if fst style <> RErr then pr "return ";
9961       pr "_%s " name;
9962       generate_java_call_args ~handle:"g" (snd style);
9963       pr ";\n";
9964       pr "  }\n";
9965       pr "  ";
9966       generate_java_prototype ~privat:true ~native:true name style;
9967       pr "\n";
9968       pr "\n";
9969   ) all_functions;
9970
9971   pr "}\n"
9972
9973 (* Generate Java call arguments, eg "(handle, foo, bar)" *)
9974 and generate_java_call_args ~handle args =
9975   pr "(%s" handle;
9976   List.iter (fun arg -> pr ", %s" (name_of_argt arg)) args;
9977   pr ")"
9978
9979 and generate_java_prototype ?(public=false) ?(privat=false) ?(native=false)
9980     ?(semicolon=true) name style =
9981   if privat then pr "private ";
9982   if public then pr "public ";
9983   if native then pr "native ";
9984
9985   (* return type *)
9986   (match fst style with
9987    | RErr -> pr "void ";
9988    | RInt _ -> pr "int ";
9989    | RInt64 _ -> pr "long ";
9990    | RBool _ -> pr "boolean ";
9991    | RConstString _ | RConstOptString _ | RString _
9992    | RBufferOut _ -> pr "String ";
9993    | RStringList _ -> pr "String[] ";
9994    | RStruct (_, typ) ->
9995        let name = java_name_of_struct typ in
9996        pr "%s " name;
9997    | RStructList (_, typ) ->
9998        let name = java_name_of_struct typ in
9999        pr "%s[] " name;
10000    | RHashtable _ -> pr "HashMap<String,String> ";
10001   );
10002
10003   if native then pr "_%s " name else pr "%s " name;
10004   pr "(";
10005   let needs_comma = ref false in
10006   if native then (
10007     pr "long g";
10008     needs_comma := true
10009   );
10010
10011   (* args *)
10012   List.iter (
10013     fun arg ->
10014       if !needs_comma then pr ", ";
10015       needs_comma := true;
10016
10017       match arg with
10018       | Pathname n
10019       | Device n | Dev_or_Path n
10020       | String n
10021       | OptString n
10022       | FileIn n
10023       | FileOut n ->
10024           pr "String %s" n
10025       | BufferIn n ->
10026           pr "byte[] %s" n
10027       | StringList n | DeviceList n ->
10028           pr "String[] %s" n
10029       | Bool n ->
10030           pr "boolean %s" n
10031       | Int n ->
10032           pr "int %s" n
10033       | Int64 n ->
10034           pr "long %s" n
10035   ) (snd style);
10036
10037   pr ")\n";
10038   pr "    throws LibGuestFSException";
10039   if semicolon then pr ";"
10040
10041 and generate_java_struct jtyp cols () =
10042   generate_header CStyle LGPLv2plus;
10043
10044   pr "\
10045 package com.redhat.et.libguestfs;
10046
10047 /**
10048  * Libguestfs %s structure.
10049  *
10050  * @author rjones
10051  * @see GuestFS
10052  */
10053 public class %s {
10054 " jtyp jtyp;
10055
10056   List.iter (
10057     function
10058     | name, FString
10059     | name, FUUID
10060     | name, FBuffer -> pr "  public String %s;\n" name
10061     | name, (FBytes|FUInt64|FInt64) -> pr "  public long %s;\n" name
10062     | name, (FUInt32|FInt32) -> pr "  public int %s;\n" name
10063     | name, FChar -> pr "  public char %s;\n" name
10064     | name, FOptPercent ->
10065         pr "  /* The next field is [0..100] or -1 meaning 'not present': */\n";
10066         pr "  public float %s;\n" name
10067   ) cols;
10068
10069   pr "}\n"
10070
10071 and generate_java_c () =
10072   generate_header CStyle LGPLv2plus;
10073
10074   pr "\
10075 #include <stdio.h>
10076 #include <stdlib.h>
10077 #include <string.h>
10078
10079 #include \"com_redhat_et_libguestfs_GuestFS.h\"
10080 #include \"guestfs.h\"
10081
10082 /* Note that this function returns.  The exception is not thrown
10083  * until after the wrapper function returns.
10084  */
10085 static void
10086 throw_exception (JNIEnv *env, const char *msg)
10087 {
10088   jclass cl;
10089   cl = (*env)->FindClass (env,
10090                           \"com/redhat/et/libguestfs/LibGuestFSException\");
10091   (*env)->ThrowNew (env, cl, msg);
10092 }
10093
10094 JNIEXPORT jlong JNICALL
10095 Java_com_redhat_et_libguestfs_GuestFS__1create
10096   (JNIEnv *env, jobject obj)
10097 {
10098   guestfs_h *g;
10099
10100   g = guestfs_create ();
10101   if (g == NULL) {
10102     throw_exception (env, \"GuestFS.create: failed to allocate handle\");
10103     return 0;
10104   }
10105   guestfs_set_error_handler (g, NULL, NULL);
10106   return (jlong) (long) g;
10107 }
10108
10109 JNIEXPORT void JNICALL
10110 Java_com_redhat_et_libguestfs_GuestFS__1close
10111   (JNIEnv *env, jobject obj, jlong jg)
10112 {
10113   guestfs_h *g = (guestfs_h *) (long) jg;
10114   guestfs_close (g);
10115 }
10116
10117 ";
10118
10119   List.iter (
10120     fun (name, style, _, _, _, _, _) ->
10121       pr "JNIEXPORT ";
10122       (match fst style with
10123        | RErr -> pr "void ";
10124        | RInt _ -> pr "jint ";
10125        | RInt64 _ -> pr "jlong ";
10126        | RBool _ -> pr "jboolean ";
10127        | RConstString _ | RConstOptString _ | RString _
10128        | RBufferOut _ -> pr "jstring ";
10129        | RStruct _ | RHashtable _ ->
10130            pr "jobject ";
10131        | RStringList _ | RStructList _ ->
10132            pr "jobjectArray ";
10133       );
10134       pr "JNICALL\n";
10135       pr "Java_com_redhat_et_libguestfs_GuestFS_";
10136       pr "%s" (replace_str ("_" ^ name) "_" "_1");
10137       pr "\n";
10138       pr "  (JNIEnv *env, jobject obj, jlong jg";
10139       List.iter (
10140         function
10141         | Pathname n
10142         | Device n | Dev_or_Path n
10143         | String n
10144         | OptString n
10145         | FileIn n
10146         | FileOut n ->
10147             pr ", jstring j%s" n
10148         | BufferIn n ->
10149             pr ", jbyteArray j%s" n
10150         | StringList n | DeviceList n ->
10151             pr ", jobjectArray j%s" n
10152         | Bool n ->
10153             pr ", jboolean j%s" n
10154         | Int n ->
10155             pr ", jint j%s" n
10156         | Int64 n ->
10157             pr ", jlong j%s" n
10158       ) (snd style);
10159       pr ")\n";
10160       pr "{\n";
10161       pr "  guestfs_h *g = (guestfs_h *) (long) jg;\n";
10162       let error_code, no_ret =
10163         match fst style with
10164         | RErr -> pr "  int r;\n"; "-1", ""
10165         | RBool _
10166         | RInt _ -> pr "  int r;\n"; "-1", "0"
10167         | RInt64 _ -> pr "  int64_t r;\n"; "-1", "0"
10168         | RConstString _ -> pr "  const char *r;\n"; "NULL", "NULL"
10169         | RConstOptString _ -> pr "  const char *r;\n"; "NULL", "NULL"
10170         | RString _ ->
10171             pr "  jstring jr;\n";
10172             pr "  char *r;\n"; "NULL", "NULL"
10173         | RStringList _ ->
10174             pr "  jobjectArray jr;\n";
10175             pr "  int r_len;\n";
10176             pr "  jclass cl;\n";
10177             pr "  jstring jstr;\n";
10178             pr "  char **r;\n"; "NULL", "NULL"
10179         | RStruct (_, typ) ->
10180             pr "  jobject jr;\n";
10181             pr "  jclass cl;\n";
10182             pr "  jfieldID fl;\n";
10183             pr "  struct guestfs_%s *r;\n" typ; "NULL", "NULL"
10184         | RStructList (_, typ) ->
10185             pr "  jobjectArray jr;\n";
10186             pr "  jclass cl;\n";
10187             pr "  jfieldID fl;\n";
10188             pr "  jobject jfl;\n";
10189             pr "  struct guestfs_%s_list *r;\n" typ; "NULL", "NULL"
10190         | RHashtable _ -> pr "  char **r;\n"; "NULL", "NULL"
10191         | RBufferOut _ ->
10192             pr "  jstring jr;\n";
10193             pr "  char *r;\n";
10194             pr "  size_t size;\n";
10195             "NULL", "NULL" in
10196       List.iter (
10197         function
10198         | Pathname n
10199         | Device n | Dev_or_Path n
10200         | String n
10201         | OptString n
10202         | FileIn n
10203         | FileOut n ->
10204             pr "  const char *%s;\n" n
10205         | BufferIn n ->
10206             pr "  jbyte *%s;\n" n;
10207             pr "  size_t %s_size;\n" n
10208         | StringList n | DeviceList n ->
10209             pr "  int %s_len;\n" n;
10210             pr "  const char **%s;\n" n
10211         | Bool n
10212         | Int n ->
10213             pr "  int %s;\n" n
10214         | Int64 n ->
10215             pr "  int64_t %s;\n" n
10216       ) (snd style);
10217
10218       let needs_i =
10219         (match fst style with
10220          | RStringList _ | RStructList _ -> true
10221          | RErr | RBool _ | RInt _ | RInt64 _ | RConstString _
10222          | RConstOptString _
10223          | RString _ | RBufferOut _ | RStruct _ | RHashtable _ -> false) ||
10224           List.exists (function
10225                        | StringList _ -> true
10226                        | DeviceList _ -> true
10227                        | _ -> false) (snd style) in
10228       if needs_i then
10229         pr "  int i;\n";
10230
10231       pr "\n";
10232
10233       (* Get the parameters. *)
10234       List.iter (
10235         function
10236         | Pathname n
10237         | Device n | Dev_or_Path n
10238         | String n
10239         | FileIn n
10240         | FileOut n ->
10241             pr "  %s = (*env)->GetStringUTFChars (env, j%s, NULL);\n" n n
10242         | OptString n ->
10243             (* This is completely undocumented, but Java null becomes
10244              * a NULL parameter.
10245              *)
10246             pr "  %s = j%s ? (*env)->GetStringUTFChars (env, j%s, NULL) : NULL;\n" n n n
10247         | BufferIn n ->
10248             pr "  %s = (*env)->GetByteArrayElements (env, j%s, NULL);\n" n n;
10249             pr "  %s_size = (*env)->GetArrayLength (env, j%s);\n" n n
10250         | StringList n | DeviceList n ->
10251             pr "  %s_len = (*env)->GetArrayLength (env, j%s);\n" n n;
10252             pr "  %s = guestfs_safe_malloc (g, sizeof (char *) * (%s_len+1));\n" n n;
10253             pr "  for (i = 0; i < %s_len; ++i) {\n" n;
10254             pr "    jobject o = (*env)->GetObjectArrayElement (env, j%s, i);\n"
10255               n;
10256             pr "    %s[i] = (*env)->GetStringUTFChars (env, o, NULL);\n" n;
10257             pr "  }\n";
10258             pr "  %s[%s_len] = NULL;\n" n n;
10259         | Bool n
10260         | Int n
10261         | Int64 n ->
10262             pr "  %s = j%s;\n" n n
10263       ) (snd style);
10264
10265       (* Make the call. *)
10266       pr "  r = guestfs_%s " name;
10267       generate_c_call_args ~handle:"g" style;
10268       pr ";\n";
10269
10270       (* Release the parameters. *)
10271       List.iter (
10272         function
10273         | Pathname n
10274         | Device n | Dev_or_Path n
10275         | String n
10276         | FileIn n
10277         | FileOut n ->
10278             pr "  (*env)->ReleaseStringUTFChars (env, j%s, %s);\n" n n
10279         | OptString n ->
10280             pr "  if (j%s)\n" n;
10281             pr "    (*env)->ReleaseStringUTFChars (env, j%s, %s);\n" n n
10282         | BufferIn n ->
10283             pr "  (*env)->ReleaseByteArrayElements (env, j%s, %s, 0);\n" n n
10284         | StringList n | DeviceList n ->
10285             pr "  for (i = 0; i < %s_len; ++i) {\n" n;
10286             pr "    jobject o = (*env)->GetObjectArrayElement (env, j%s, i);\n"
10287               n;
10288             pr "    (*env)->ReleaseStringUTFChars (env, o, %s[i]);\n" n;
10289             pr "  }\n";
10290             pr "  free (%s);\n" n
10291         | Bool n
10292         | Int n
10293         | Int64 n -> ()
10294       ) (snd style);
10295
10296       (* Check for errors. *)
10297       pr "  if (r == %s) {\n" error_code;
10298       pr "    throw_exception (env, guestfs_last_error (g));\n";
10299       pr "    return %s;\n" no_ret;
10300       pr "  }\n";
10301
10302       (* Return value. *)
10303       (match fst style with
10304        | RErr -> ()
10305        | RInt _ -> pr "  return (jint) r;\n"
10306        | RBool _ -> pr "  return (jboolean) r;\n"
10307        | RInt64 _ -> pr "  return (jlong) r;\n"
10308        | RConstString _ -> pr "  return (*env)->NewStringUTF (env, r);\n"
10309        | RConstOptString _ ->
10310            pr "  return (*env)->NewStringUTF (env, r); /* XXX r NULL? */\n"
10311        | RString _ ->
10312            pr "  jr = (*env)->NewStringUTF (env, r);\n";
10313            pr "  free (r);\n";
10314            pr "  return jr;\n"
10315        | RStringList _ ->
10316            pr "  for (r_len = 0; r[r_len] != NULL; ++r_len) ;\n";
10317            pr "  cl = (*env)->FindClass (env, \"java/lang/String\");\n";
10318            pr "  jstr = (*env)->NewStringUTF (env, \"\");\n";
10319            pr "  jr = (*env)->NewObjectArray (env, r_len, cl, jstr);\n";
10320            pr "  for (i = 0; i < r_len; ++i) {\n";
10321            pr "    jstr = (*env)->NewStringUTF (env, r[i]);\n";
10322            pr "    (*env)->SetObjectArrayElement (env, jr, i, jstr);\n";
10323            pr "    free (r[i]);\n";
10324            pr "  }\n";
10325            pr "  free (r);\n";
10326            pr "  return jr;\n"
10327        | RStruct (_, typ) ->
10328            let jtyp = java_name_of_struct typ in
10329            let cols = cols_of_struct typ in
10330            generate_java_struct_return typ jtyp cols
10331        | RStructList (_, typ) ->
10332            let jtyp = java_name_of_struct typ in
10333            let cols = cols_of_struct typ in
10334            generate_java_struct_list_return typ jtyp cols
10335        | RHashtable _ ->
10336            (* XXX *)
10337            pr "  throw_exception (env, \"%s: internal error: please let us know how to make a Java HashMap from JNI bindings!\");\n" name;
10338            pr "  return NULL;\n"
10339        | RBufferOut _ ->
10340            pr "  jr = (*env)->NewStringUTF (env, r); /* XXX size */\n";
10341            pr "  free (r);\n";
10342            pr "  return jr;\n"
10343       );
10344
10345       pr "}\n";
10346       pr "\n"
10347   ) all_functions
10348
10349 and generate_java_struct_return typ jtyp cols =
10350   pr "  cl = (*env)->FindClass (env, \"com/redhat/et/libguestfs/%s\");\n" jtyp;
10351   pr "  jr = (*env)->AllocObject (env, cl);\n";
10352   List.iter (
10353     function
10354     | name, FString ->
10355         pr "  fl = (*env)->GetFieldID (env, cl, \"%s\", \"Ljava/lang/String;\");\n" name;
10356         pr "  (*env)->SetObjectField (env, jr, fl, (*env)->NewStringUTF (env, r->%s));\n" name;
10357     | name, FUUID ->
10358         pr "  {\n";
10359         pr "    char s[33];\n";
10360         pr "    memcpy (s, r->%s, 32);\n" name;
10361         pr "    s[32] = 0;\n";
10362         pr "    fl = (*env)->GetFieldID (env, cl, \"%s\", \"Ljava/lang/String;\");\n" name;
10363         pr "    (*env)->SetObjectField (env, jr, fl, (*env)->NewStringUTF (env, s));\n";
10364         pr "  }\n";
10365     | name, FBuffer ->
10366         pr "  {\n";
10367         pr "    int len = r->%s_len;\n" name;
10368         pr "    char s[len+1];\n";
10369         pr "    memcpy (s, r->%s, len);\n" name;
10370         pr "    s[len] = 0;\n";
10371         pr "    fl = (*env)->GetFieldID (env, cl, \"%s\", \"Ljava/lang/String;\");\n" name;
10372         pr "    (*env)->SetObjectField (env, jr, fl, (*env)->NewStringUTF (env, s));\n";
10373         pr "  }\n";
10374     | name, (FBytes|FUInt64|FInt64) ->
10375         pr "  fl = (*env)->GetFieldID (env, cl, \"%s\", \"J\");\n" name;
10376         pr "  (*env)->SetLongField (env, jr, fl, r->%s);\n" name;
10377     | name, (FUInt32|FInt32) ->
10378         pr "  fl = (*env)->GetFieldID (env, cl, \"%s\", \"I\");\n" name;
10379         pr "  (*env)->SetLongField (env, jr, fl, r->%s);\n" name;
10380     | name, FOptPercent ->
10381         pr "  fl = (*env)->GetFieldID (env, cl, \"%s\", \"F\");\n" name;
10382         pr "  (*env)->SetFloatField (env, jr, fl, r->%s);\n" name;
10383     | name, FChar ->
10384         pr "  fl = (*env)->GetFieldID (env, cl, \"%s\", \"C\");\n" name;
10385         pr "  (*env)->SetLongField (env, jr, fl, r->%s);\n" name;
10386   ) cols;
10387   pr "  free (r);\n";
10388   pr "  return jr;\n"
10389
10390 and generate_java_struct_list_return typ jtyp cols =
10391   pr "  cl = (*env)->FindClass (env, \"com/redhat/et/libguestfs/%s\");\n" jtyp;
10392   pr "  jr = (*env)->NewObjectArray (env, r->len, cl, NULL);\n";
10393   pr "  for (i = 0; i < r->len; ++i) {\n";
10394   pr "    jfl = (*env)->AllocObject (env, cl);\n";
10395   List.iter (
10396     function
10397     | name, FString ->
10398         pr "    fl = (*env)->GetFieldID (env, cl, \"%s\", \"Ljava/lang/String;\");\n" name;
10399         pr "    (*env)->SetObjectField (env, jfl, fl, (*env)->NewStringUTF (env, r->val[i].%s));\n" name;
10400     | name, FUUID ->
10401         pr "    {\n";
10402         pr "      char s[33];\n";
10403         pr "      memcpy (s, r->val[i].%s, 32);\n" name;
10404         pr "      s[32] = 0;\n";
10405         pr "      fl = (*env)->GetFieldID (env, cl, \"%s\", \"Ljava/lang/String;\");\n" name;
10406         pr "      (*env)->SetObjectField (env, jfl, fl, (*env)->NewStringUTF (env, s));\n";
10407         pr "    }\n";
10408     | name, FBuffer ->
10409         pr "    {\n";
10410         pr "      int len = r->val[i].%s_len;\n" name;
10411         pr "      char s[len+1];\n";
10412         pr "      memcpy (s, r->val[i].%s, len);\n" name;
10413         pr "      s[len] = 0;\n";
10414         pr "      fl = (*env)->GetFieldID (env, cl, \"%s\", \"Ljava/lang/String;\");\n" name;
10415         pr "      (*env)->SetObjectField (env, jfl, fl, (*env)->NewStringUTF (env, s));\n";
10416         pr "    }\n";
10417     | name, (FBytes|FUInt64|FInt64) ->
10418         pr "    fl = (*env)->GetFieldID (env, cl, \"%s\", \"J\");\n" name;
10419         pr "    (*env)->SetLongField (env, jfl, fl, r->val[i].%s);\n" name;
10420     | name, (FUInt32|FInt32) ->
10421         pr "    fl = (*env)->GetFieldID (env, cl, \"%s\", \"I\");\n" name;
10422         pr "    (*env)->SetLongField (env, jfl, fl, r->val[i].%s);\n" name;
10423     | name, FOptPercent ->
10424         pr "    fl = (*env)->GetFieldID (env, cl, \"%s\", \"F\");\n" name;
10425         pr "    (*env)->SetFloatField (env, jfl, fl, r->val[i].%s);\n" name;
10426     | name, FChar ->
10427         pr "    fl = (*env)->GetFieldID (env, cl, \"%s\", \"C\");\n" name;
10428         pr "    (*env)->SetLongField (env, jfl, fl, r->val[i].%s);\n" name;
10429   ) cols;
10430   pr "    (*env)->SetObjectArrayElement (env, jfl, i, jfl);\n";
10431   pr "  }\n";
10432   pr "  guestfs_free_%s_list (r);\n" typ;
10433   pr "  return jr;\n"
10434
10435 and generate_java_makefile_inc () =
10436   generate_header HashStyle GPLv2plus;
10437
10438   pr "java_built_sources = \\\n";
10439   List.iter (
10440     fun (typ, jtyp) ->
10441         pr "\tcom/redhat/et/libguestfs/%s.java \\\n" jtyp;
10442   ) java_structs;
10443   pr "\tcom/redhat/et/libguestfs/GuestFS.java\n"
10444
10445 and generate_haskell_hs () =
10446   generate_header HaskellStyle LGPLv2plus;
10447
10448   (* XXX We only know how to generate partial FFI for Haskell
10449    * at the moment.  Please help out!
10450    *)
10451   let can_generate style =
10452     match style with
10453     | RErr, _
10454     | RInt _, _
10455     | RInt64 _, _ -> true
10456     | RBool _, _
10457     | RConstString _, _
10458     | RConstOptString _, _
10459     | RString _, _
10460     | RStringList _, _
10461     | RStruct _, _
10462     | RStructList _, _
10463     | RHashtable _, _
10464     | RBufferOut _, _ -> false in
10465
10466   pr "\
10467 {-# INCLUDE <guestfs.h> #-}
10468 {-# LANGUAGE ForeignFunctionInterface #-}
10469
10470 module Guestfs (
10471   create";
10472
10473   (* List out the names of the actions we want to export. *)
10474   List.iter (
10475     fun (name, style, _, _, _, _, _) ->
10476       if can_generate style then pr ",\n  %s" name
10477   ) all_functions;
10478
10479   pr "
10480   ) where
10481
10482 -- Unfortunately some symbols duplicate ones already present
10483 -- in Prelude.  We don't know which, so we hard-code a list
10484 -- here.
10485 import Prelude hiding (truncate)
10486
10487 import Foreign
10488 import Foreign.C
10489 import Foreign.C.Types
10490 import IO
10491 import Control.Exception
10492 import Data.Typeable
10493
10494 data GuestfsS = GuestfsS            -- represents the opaque C struct
10495 type GuestfsP = Ptr GuestfsS        -- guestfs_h *
10496 type GuestfsH = ForeignPtr GuestfsS -- guestfs_h * with attached finalizer
10497
10498 -- XXX define properly later XXX
10499 data PV = PV
10500 data VG = VG
10501 data LV = LV
10502 data IntBool = IntBool
10503 data Stat = Stat
10504 data StatVFS = StatVFS
10505 data Hashtable = Hashtable
10506
10507 foreign import ccall unsafe \"guestfs_create\" c_create
10508   :: IO GuestfsP
10509 foreign import ccall unsafe \"&guestfs_close\" c_close
10510   :: FunPtr (GuestfsP -> IO ())
10511 foreign import ccall unsafe \"guestfs_set_error_handler\" c_set_error_handler
10512   :: GuestfsP -> Ptr CInt -> Ptr CInt -> IO ()
10513
10514 create :: IO GuestfsH
10515 create = do
10516   p <- c_create
10517   c_set_error_handler p nullPtr nullPtr
10518   h <- newForeignPtr c_close p
10519   return h
10520
10521 foreign import ccall unsafe \"guestfs_last_error\" c_last_error
10522   :: GuestfsP -> IO CString
10523
10524 -- last_error :: GuestfsH -> IO (Maybe String)
10525 -- last_error h = do
10526 --   str <- withForeignPtr h (\\p -> c_last_error p)
10527 --   maybePeek peekCString str
10528
10529 last_error :: GuestfsH -> IO (String)
10530 last_error h = do
10531   str <- withForeignPtr h (\\p -> c_last_error p)
10532   if (str == nullPtr)
10533     then return \"no error\"
10534     else peekCString str
10535
10536 ";
10537
10538   (* Generate wrappers for each foreign function. *)
10539   List.iter (
10540     fun (name, style, _, _, _, _, _) ->
10541       if can_generate style then (
10542         pr "foreign import ccall unsafe \"guestfs_%s\" c_%s\n" name name;
10543         pr "  :: ";
10544         generate_haskell_prototype ~handle:"GuestfsP" style;
10545         pr "\n";
10546         pr "\n";
10547         pr "%s :: " name;
10548         generate_haskell_prototype ~handle:"GuestfsH" ~hs:true style;
10549         pr "\n";
10550         pr "%s %s = do\n" name
10551           (String.concat " " ("h" :: List.map name_of_argt (snd style)));
10552         pr "  r <- ";
10553         (* Convert pointer arguments using with* functions. *)
10554         List.iter (
10555           function
10556           | FileIn n
10557           | FileOut n
10558           | Pathname n | Device n | Dev_or_Path n | String n ->
10559               pr "withCString %s $ \\%s -> " n n
10560           | BufferIn n ->
10561               pr "withCStringLen %s $ \\(%s, %s_size) -> " n n n
10562           | OptString n -> pr "maybeWith withCString %s $ \\%s -> " n n
10563           | StringList n | DeviceList n -> pr "withMany withCString %s $ \\%s -> withArray0 nullPtr %s $ \\%s -> " n n n n
10564           | Bool _ | Int _ | Int64 _ -> ()
10565         ) (snd style);
10566         (* Convert integer arguments. *)
10567         let args =
10568           List.map (
10569             function
10570             | Bool n -> sprintf "(fromBool %s)" n
10571             | Int n -> sprintf "(fromIntegral %s)" n
10572             | Int64 n -> sprintf "(fromIntegral %s)" n
10573             | FileIn n | FileOut n
10574             | Pathname n | Device n | Dev_or_Path n | String n | OptString n | StringList n | DeviceList n -> n
10575             | BufferIn n -> sprintf "%s (fromIntegral %s_size)" n n
10576           ) (snd style) in
10577         pr "withForeignPtr h (\\p -> c_%s %s)\n" name
10578           (String.concat " " ("p" :: args));
10579         (match fst style with
10580          | RErr | RInt _ | RInt64 _ | RBool _ ->
10581              pr "  if (r == -1)\n";
10582              pr "    then do\n";
10583              pr "      err <- last_error h\n";
10584              pr "      fail err\n";
10585          | RConstString _ | RConstOptString _ | RString _
10586          | RStringList _ | RStruct _
10587          | RStructList _ | RHashtable _ | RBufferOut _ ->
10588              pr "  if (r == nullPtr)\n";
10589              pr "    then do\n";
10590              pr "      err <- last_error h\n";
10591              pr "      fail err\n";
10592         );
10593         (match fst style with
10594          | RErr ->
10595              pr "    else return ()\n"
10596          | RInt _ ->
10597              pr "    else return (fromIntegral r)\n"
10598          | RInt64 _ ->
10599              pr "    else return (fromIntegral r)\n"
10600          | RBool _ ->
10601              pr "    else return (toBool r)\n"
10602          | RConstString _
10603          | RConstOptString _
10604          | RString _
10605          | RStringList _
10606          | RStruct _
10607          | RStructList _
10608          | RHashtable _
10609          | RBufferOut _ ->
10610              pr "    else return ()\n" (* XXXXXXXXXXXXXXXXXXXX *)
10611         );
10612         pr "\n";
10613       )
10614   ) all_functions
10615
10616 and generate_haskell_prototype ~handle ?(hs = false) style =
10617   pr "%s -> " handle;
10618   let string = if hs then "String" else "CString" in
10619   let int = if hs then "Int" else "CInt" in
10620   let bool = if hs then "Bool" else "CInt" in
10621   let int64 = if hs then "Integer" else "Int64" in
10622   List.iter (
10623     fun arg ->
10624       (match arg with
10625        | Pathname _ | Device _ | Dev_or_Path _ | String _ -> pr "%s" string
10626        | BufferIn _ ->
10627            if hs then pr "String"
10628            else pr "CString -> CInt"
10629        | OptString _ -> if hs then pr "Maybe String" else pr "CString"
10630        | StringList _ | DeviceList _ -> if hs then pr "[String]" else pr "Ptr CString"
10631        | Bool _ -> pr "%s" bool
10632        | Int _ -> pr "%s" int
10633        | Int64 _ -> pr "%s" int
10634        | FileIn _ -> pr "%s" string
10635        | FileOut _ -> pr "%s" string
10636       );
10637       pr " -> ";
10638   ) (snd style);
10639   pr "IO (";
10640   (match fst style with
10641    | RErr -> if not hs then pr "CInt"
10642    | RInt _ -> pr "%s" int
10643    | RInt64 _ -> pr "%s" int64
10644    | RBool _ -> pr "%s" bool
10645    | RConstString _ -> pr "%s" string
10646    | RConstOptString _ -> pr "Maybe %s" string
10647    | RString _ -> pr "%s" string
10648    | RStringList _ -> pr "[%s]" string
10649    | RStruct (_, typ) ->
10650        let name = java_name_of_struct typ in
10651        pr "%s" name
10652    | RStructList (_, typ) ->
10653        let name = java_name_of_struct typ in
10654        pr "[%s]" name
10655    | RHashtable _ -> pr "Hashtable"
10656    | RBufferOut _ -> pr "%s" string
10657   );
10658   pr ")"
10659
10660 and generate_csharp () =
10661   generate_header CPlusPlusStyle LGPLv2plus;
10662
10663   (* XXX Make this configurable by the C# assembly users. *)
10664   let library = "libguestfs.so.0" in
10665
10666   pr "\
10667 // These C# bindings are highly experimental at present.
10668 //
10669 // Firstly they only work on Linux (ie. Mono).  In order to get them
10670 // to work on Windows (ie. .Net) you would need to port the library
10671 // itself to Windows first.
10672 //
10673 // The second issue is that some calls are known to be incorrect and
10674 // can cause Mono to segfault.  Particularly: calls which pass or
10675 // return string[], or return any structure value.  This is because
10676 // we haven't worked out the correct way to do this from C#.
10677 //
10678 // The third issue is that when compiling you get a lot of warnings.
10679 // We are not sure whether the warnings are important or not.
10680 //
10681 // Fourthly we do not routinely build or test these bindings as part
10682 // of the make && make check cycle, which means that regressions might
10683 // go unnoticed.
10684 //
10685 // Suggestions and patches are welcome.
10686
10687 // To compile:
10688 //
10689 // gmcs Libguestfs.cs
10690 // mono Libguestfs.exe
10691 //
10692 // (You'll probably want to add a Test class / static main function
10693 // otherwise this won't do anything useful).
10694
10695 using System;
10696 using System.IO;
10697 using System.Runtime.InteropServices;
10698 using System.Runtime.Serialization;
10699 using System.Collections;
10700
10701 namespace Guestfs
10702 {
10703   class Error : System.ApplicationException
10704   {
10705     public Error (string message) : base (message) {}
10706     protected Error (SerializationInfo info, StreamingContext context) {}
10707   }
10708
10709   class Guestfs
10710   {
10711     IntPtr _handle;
10712
10713     [DllImport (\"%s\")]
10714     static extern IntPtr guestfs_create ();
10715
10716     public Guestfs ()
10717     {
10718       _handle = guestfs_create ();
10719       if (_handle == IntPtr.Zero)
10720         throw new Error (\"could not create guestfs handle\");
10721     }
10722
10723     [DllImport (\"%s\")]
10724     static extern void guestfs_close (IntPtr h);
10725
10726     ~Guestfs ()
10727     {
10728       guestfs_close (_handle);
10729     }
10730
10731     [DllImport (\"%s\")]
10732     static extern string guestfs_last_error (IntPtr h);
10733
10734 " library library library;
10735
10736   (* Generate C# structure bindings.  We prefix struct names with
10737    * underscore because C# cannot have conflicting struct names and
10738    * method names (eg. "class stat" and "stat").
10739    *)
10740   List.iter (
10741     fun (typ, cols) ->
10742       pr "    [StructLayout (LayoutKind.Sequential)]\n";
10743       pr "    public class _%s {\n" typ;
10744       List.iter (
10745         function
10746         | name, FChar -> pr "      char %s;\n" name
10747         | name, FString -> pr "      string %s;\n" name
10748         | name, FBuffer ->
10749             pr "      uint %s_len;\n" name;
10750             pr "      string %s;\n" name
10751         | name, FUUID ->
10752             pr "      [MarshalAs (UnmanagedType.ByValTStr, SizeConst=16)]\n";
10753             pr "      string %s;\n" name
10754         | name, FUInt32 -> pr "      uint %s;\n" name
10755         | name, FInt32 -> pr "      int %s;\n" name
10756         | name, (FUInt64|FBytes) -> pr "      ulong %s;\n" name
10757         | name, FInt64 -> pr "      long %s;\n" name
10758         | name, FOptPercent -> pr "      float %s; /* [0..100] or -1 */\n" name
10759       ) cols;
10760       pr "    }\n";
10761       pr "\n"
10762   ) structs;
10763
10764   (* Generate C# function bindings. *)
10765   List.iter (
10766     fun (name, style, _, _, _, shortdesc, _) ->
10767       let rec csharp_return_type () =
10768         match fst style with
10769         | RErr -> "void"
10770         | RBool n -> "bool"
10771         | RInt n -> "int"
10772         | RInt64 n -> "long"
10773         | RConstString n
10774         | RConstOptString n
10775         | RString n
10776         | RBufferOut n -> "string"
10777         | RStruct (_,n) -> "_" ^ n
10778         | RHashtable n -> "Hashtable"
10779         | RStringList n -> "string[]"
10780         | RStructList (_,n) -> sprintf "_%s[]" n
10781
10782       and c_return_type () =
10783         match fst style with
10784         | RErr
10785         | RBool _
10786         | RInt _ -> "int"
10787         | RInt64 _ -> "long"
10788         | RConstString _
10789         | RConstOptString _
10790         | RString _
10791         | RBufferOut _ -> "string"
10792         | RStruct (_,n) -> "_" ^ n
10793         | RHashtable _
10794         | RStringList _ -> "string[]"
10795         | RStructList (_,n) -> sprintf "_%s[]" n
10796
10797       and c_error_comparison () =
10798         match fst style with
10799         | RErr
10800         | RBool _
10801         | RInt _
10802         | RInt64 _ -> "== -1"
10803         | RConstString _
10804         | RConstOptString _
10805         | RString _
10806         | RBufferOut _
10807         | RStruct (_,_)
10808         | RHashtable _
10809         | RStringList _
10810         | RStructList (_,_) -> "== null"
10811
10812       and generate_extern_prototype () =
10813         pr "    static extern %s guestfs_%s (IntPtr h"
10814           (c_return_type ()) name;
10815         List.iter (
10816           function
10817           | Pathname n | Device n | Dev_or_Path n | String n | OptString n
10818           | FileIn n | FileOut n
10819           | BufferIn n ->
10820               pr ", [In] string %s" n
10821           | StringList n | DeviceList n ->
10822               pr ", [In] string[] %s" n
10823           | Bool n ->
10824               pr ", bool %s" n
10825           | Int n ->
10826               pr ", int %s" n
10827           | Int64 n ->
10828               pr ", long %s" n
10829         ) (snd style);
10830         pr ");\n"
10831
10832       and generate_public_prototype () =
10833         pr "    public %s %s (" (csharp_return_type ()) name;
10834         let comma = ref false in
10835         let next () =
10836           if !comma then pr ", ";
10837           comma := true
10838         in
10839         List.iter (
10840           function
10841           | Pathname n | Device n | Dev_or_Path n | String n | OptString n
10842           | FileIn n | FileOut n
10843           | BufferIn n ->
10844               next (); pr "string %s" n
10845           | StringList n | DeviceList n ->
10846               next (); pr "string[] %s" n
10847           | Bool n ->
10848               next (); pr "bool %s" n
10849           | Int n ->
10850               next (); pr "int %s" n
10851           | Int64 n ->
10852               next (); pr "long %s" n
10853         ) (snd style);
10854         pr ")\n"
10855
10856       and generate_call () =
10857         pr "guestfs_%s (_handle" name;
10858         List.iter (fun arg -> pr ", %s" (name_of_argt arg)) (snd style);
10859         pr ");\n";
10860       in
10861
10862       pr "    [DllImport (\"%s\")]\n" library;
10863       generate_extern_prototype ();
10864       pr "\n";
10865       pr "    /// <summary>\n";
10866       pr "    /// %s\n" shortdesc;
10867       pr "    /// </summary>\n";
10868       generate_public_prototype ();
10869       pr "    {\n";
10870       pr "      %s r;\n" (c_return_type ());
10871       pr "      r = ";
10872       generate_call ();
10873       pr "      if (r %s)\n" (c_error_comparison ());
10874       pr "        throw new Error (guestfs_last_error (_handle));\n";
10875       (match fst style with
10876        | RErr -> ()
10877        | RBool _ ->
10878            pr "      return r != 0 ? true : false;\n"
10879        | RHashtable _ ->
10880            pr "      Hashtable rr = new Hashtable ();\n";
10881            pr "      for (int i = 0; i < r.Length; i += 2)\n";
10882            pr "        rr.Add (r[i], r[i+1]);\n";
10883            pr "      return rr;\n"
10884        | RInt _ | RInt64 _ | RConstString _ | RConstOptString _
10885        | RString _ | RBufferOut _ | RStruct _ | RStringList _
10886        | RStructList _ ->
10887            pr "      return r;\n"
10888       );
10889       pr "    }\n";
10890       pr "\n";
10891   ) all_functions_sorted;
10892
10893   pr "  }
10894 }
10895 "
10896
10897 and generate_bindtests () =
10898   generate_header CStyle LGPLv2plus;
10899
10900   pr "\
10901 #include <stdio.h>
10902 #include <stdlib.h>
10903 #include <inttypes.h>
10904 #include <string.h>
10905
10906 #include \"guestfs.h\"
10907 #include \"guestfs-internal.h\"
10908 #include \"guestfs-internal-actions.h\"
10909 #include \"guestfs_protocol.h\"
10910
10911 #define error guestfs_error
10912 #define safe_calloc guestfs_safe_calloc
10913 #define safe_malloc guestfs_safe_malloc
10914
10915 static void
10916 print_strings (char *const *argv)
10917 {
10918   int argc;
10919
10920   printf (\"[\");
10921   for (argc = 0; argv[argc] != NULL; ++argc) {
10922     if (argc > 0) printf (\", \");
10923     printf (\"\\\"%%s\\\"\", argv[argc]);
10924   }
10925   printf (\"]\\n\");
10926 }
10927
10928 /* The test0 function prints its parameters to stdout. */
10929 ";
10930
10931   let test0, tests =
10932     match test_functions with
10933     | [] -> assert false
10934     | test0 :: tests -> test0, tests in
10935
10936   let () =
10937     let (name, style, _, _, _, _, _) = test0 in
10938     generate_prototype ~extern:false ~semicolon:false ~newline:true
10939       ~handle:"g" ~prefix:"guestfs__" name style;
10940     pr "{\n";
10941     List.iter (
10942       function
10943       | Pathname n
10944       | Device n | Dev_or_Path n
10945       | String n
10946       | FileIn n
10947       | FileOut n -> pr "  printf (\"%%s\\n\", %s);\n" n
10948       | BufferIn n ->
10949           pr "  for (size_t i = 0; i < %s_size; ++i)\n" n;
10950           pr "    printf (\"<%%02x>\", %s[i]);\n" n;
10951           pr "  printf (\"\\n\");\n"
10952       | OptString n -> pr "  printf (\"%%s\\n\", %s ? %s : \"null\");\n" n n
10953       | StringList n | DeviceList n -> pr "  print_strings (%s);\n" n
10954       | Bool n -> pr "  printf (\"%%s\\n\", %s ? \"true\" : \"false\");\n" n
10955       | Int n -> pr "  printf (\"%%d\\n\", %s);\n" n
10956       | Int64 n -> pr "  printf (\"%%\" PRIi64 \"\\n\", %s);\n" n
10957     ) (snd style);
10958     pr "  /* Java changes stdout line buffering so we need this: */\n";
10959     pr "  fflush (stdout);\n";
10960     pr "  return 0;\n";
10961     pr "}\n";
10962     pr "\n" in
10963
10964   List.iter (
10965     fun (name, style, _, _, _, _, _) ->
10966       if String.sub name (String.length name - 3) 3 <> "err" then (
10967         pr "/* Test normal return. */\n";
10968         generate_prototype ~extern:false ~semicolon:false ~newline:true
10969           ~handle:"g" ~prefix:"guestfs__" name style;
10970         pr "{\n";
10971         (match fst style with
10972          | RErr ->
10973              pr "  return 0;\n"
10974          | RInt _ ->
10975              pr "  int r;\n";
10976              pr "  sscanf (val, \"%%d\", &r);\n";
10977              pr "  return r;\n"
10978          | RInt64 _ ->
10979              pr "  int64_t r;\n";
10980              pr "  sscanf (val, \"%%\" SCNi64, &r);\n";
10981              pr "  return r;\n"
10982          | RBool _ ->
10983              pr "  return STREQ (val, \"true\");\n"
10984          | RConstString _
10985          | RConstOptString _ ->
10986              (* Can't return the input string here.  Return a static
10987               * string so we ensure we get a segfault if the caller
10988               * tries to free it.
10989               *)
10990              pr "  return \"static string\";\n"
10991          | RString _ ->
10992              pr "  return strdup (val);\n"
10993          | RStringList _ ->
10994              pr "  char **strs;\n";
10995              pr "  int n, i;\n";
10996              pr "  sscanf (val, \"%%d\", &n);\n";
10997              pr "  strs = safe_malloc (g, (n+1) * sizeof (char *));\n";
10998              pr "  for (i = 0; i < n; ++i) {\n";
10999              pr "    strs[i] = safe_malloc (g, 16);\n";
11000              pr "    snprintf (strs[i], 16, \"%%d\", i);\n";
11001              pr "  }\n";
11002              pr "  strs[n] = NULL;\n";
11003              pr "  return strs;\n"
11004          | RStruct (_, typ) ->
11005              pr "  struct guestfs_%s *r;\n" typ;
11006              pr "  r = safe_calloc (g, sizeof *r, 1);\n";
11007              pr "  return r;\n"
11008          | RStructList (_, typ) ->
11009              pr "  struct guestfs_%s_list *r;\n" typ;
11010              pr "  r = safe_calloc (g, sizeof *r, 1);\n";
11011              pr "  sscanf (val, \"%%d\", &r->len);\n";
11012              pr "  r->val = safe_calloc (g, r->len, sizeof *r->val);\n";
11013              pr "  return r;\n"
11014          | RHashtable _ ->
11015              pr "  char **strs;\n";
11016              pr "  int n, i;\n";
11017              pr "  sscanf (val, \"%%d\", &n);\n";
11018              pr "  strs = safe_malloc (g, (n*2+1) * sizeof (*strs));\n";
11019              pr "  for (i = 0; i < n; ++i) {\n";
11020              pr "    strs[i*2] = safe_malloc (g, 16);\n";
11021              pr "    strs[i*2+1] = safe_malloc (g, 16);\n";
11022              pr "    snprintf (strs[i*2], 16, \"%%d\", i);\n";
11023              pr "    snprintf (strs[i*2+1], 16, \"%%d\", i);\n";
11024              pr "  }\n";
11025              pr "  strs[n*2] = NULL;\n";
11026              pr "  return strs;\n"
11027          | RBufferOut _ ->
11028              pr "  return strdup (val);\n"
11029         );
11030         pr "}\n";
11031         pr "\n"
11032       ) else (
11033         pr "/* Test error return. */\n";
11034         generate_prototype ~extern:false ~semicolon:false ~newline:true
11035           ~handle:"g" ~prefix:"guestfs__" name style;
11036         pr "{\n";
11037         pr "  error (g, \"error\");\n";
11038         (match fst style with
11039          | RErr | RInt _ | RInt64 _ | RBool _ ->
11040              pr "  return -1;\n"
11041          | RConstString _ | RConstOptString _
11042          | RString _ | RStringList _ | RStruct _
11043          | RStructList _
11044          | RHashtable _
11045          | RBufferOut _ ->
11046              pr "  return NULL;\n"
11047         );
11048         pr "}\n";
11049         pr "\n"
11050       )
11051   ) tests
11052
11053 and generate_ocaml_bindtests () =
11054   generate_header OCamlStyle GPLv2plus;
11055
11056   pr "\
11057 let () =
11058   let g = Guestfs.create () in
11059 ";
11060
11061   let mkargs args =
11062     String.concat " " (
11063       List.map (
11064         function
11065         | CallString s -> "\"" ^ s ^ "\""
11066         | CallOptString None -> "None"
11067         | CallOptString (Some s) -> sprintf "(Some \"%s\")" s
11068         | CallStringList xs ->
11069             "[|" ^ String.concat ";" (List.map (sprintf "\"%s\"") xs) ^ "|]"
11070         | CallInt i when i >= 0 -> string_of_int i
11071         | CallInt i (* when i < 0 *) -> "(" ^ string_of_int i ^ ")"
11072         | CallInt64 i when i >= 0L -> Int64.to_string i ^ "L"
11073         | CallInt64 i (* when i < 0L *) -> "(" ^ Int64.to_string i ^ "L)"
11074         | CallBool b -> string_of_bool b
11075         | CallBuffer s -> sprintf "%S" s
11076       ) args
11077     )
11078   in
11079
11080   generate_lang_bindtests (
11081     fun f args -> pr "  Guestfs.%s g %s;\n" f (mkargs args)
11082   );
11083
11084   pr "print_endline \"EOF\"\n"
11085
11086 and generate_perl_bindtests () =
11087   pr "#!/usr/bin/perl -w\n";
11088   generate_header HashStyle GPLv2plus;
11089
11090   pr "\
11091 use strict;
11092
11093 use Sys::Guestfs;
11094
11095 my $g = Sys::Guestfs->new ();
11096 ";
11097
11098   let mkargs args =
11099     String.concat ", " (
11100       List.map (
11101         function
11102         | CallString s -> "\"" ^ s ^ "\""
11103         | CallOptString None -> "undef"
11104         | CallOptString (Some s) -> sprintf "\"%s\"" s
11105         | CallStringList xs ->
11106             "[" ^ String.concat "," (List.map (sprintf "\"%s\"") xs) ^ "]"
11107         | CallInt i -> string_of_int i
11108         | CallInt64 i -> Int64.to_string i
11109         | CallBool b -> if b then "1" else "0"
11110         | CallBuffer s -> "\"" ^ c_quote s ^ "\""
11111       ) args
11112     )
11113   in
11114
11115   generate_lang_bindtests (
11116     fun f args -> pr "$g->%s (%s);\n" f (mkargs args)
11117   );
11118
11119   pr "print \"EOF\\n\"\n"
11120
11121 and generate_python_bindtests () =
11122   generate_header HashStyle GPLv2plus;
11123
11124   pr "\
11125 import guestfs
11126
11127 g = guestfs.GuestFS ()
11128 ";
11129
11130   let mkargs args =
11131     String.concat ", " (
11132       List.map (
11133         function
11134         | CallString s -> "\"" ^ s ^ "\""
11135         | CallOptString None -> "None"
11136         | CallOptString (Some s) -> sprintf "\"%s\"" s
11137         | CallStringList xs ->
11138             "[" ^ String.concat "," (List.map (sprintf "\"%s\"") xs) ^ "]"
11139         | CallInt i -> string_of_int i
11140         | CallInt64 i -> Int64.to_string i
11141         | CallBool b -> if b then "1" else "0"
11142         | CallBuffer s -> "\"" ^ c_quote s ^ "\""
11143       ) args
11144     )
11145   in
11146
11147   generate_lang_bindtests (
11148     fun f args -> pr "g.%s (%s)\n" f (mkargs args)
11149   );
11150
11151   pr "print \"EOF\"\n"
11152
11153 and generate_ruby_bindtests () =
11154   generate_header HashStyle GPLv2plus;
11155
11156   pr "\
11157 require 'guestfs'
11158
11159 g = Guestfs::create()
11160 ";
11161
11162   let mkargs args =
11163     String.concat ", " (
11164       List.map (
11165         function
11166         | CallString s -> "\"" ^ s ^ "\""
11167         | CallOptString None -> "nil"
11168         | CallOptString (Some s) -> sprintf "\"%s\"" s
11169         | CallStringList xs ->
11170             "[" ^ String.concat "," (List.map (sprintf "\"%s\"") xs) ^ "]"
11171         | CallInt i -> string_of_int i
11172         | CallInt64 i -> Int64.to_string i
11173         | CallBool b -> string_of_bool b
11174         | CallBuffer s -> "\"" ^ c_quote s ^ "\""
11175       ) args
11176     )
11177   in
11178
11179   generate_lang_bindtests (
11180     fun f args -> pr "g.%s(%s)\n" f (mkargs args)
11181   );
11182
11183   pr "print \"EOF\\n\"\n"
11184
11185 and generate_java_bindtests () =
11186   generate_header CStyle GPLv2plus;
11187
11188   pr "\
11189 import com.redhat.et.libguestfs.*;
11190
11191 public class Bindtests {
11192     public static void main (String[] argv)
11193     {
11194         try {
11195             GuestFS g = new GuestFS ();
11196 ";
11197
11198   let mkargs args =
11199     String.concat ", " (
11200       List.map (
11201         function
11202         | CallString s -> "\"" ^ s ^ "\""
11203         | CallOptString None -> "null"
11204         | CallOptString (Some s) -> sprintf "\"%s\"" s
11205         | CallStringList xs ->
11206             "new String[]{" ^
11207               String.concat "," (List.map (sprintf "\"%s\"") xs) ^ "}"
11208         | CallInt i -> string_of_int i
11209         | CallInt64 i -> Int64.to_string i
11210         | CallBool b -> string_of_bool b
11211         | CallBuffer s ->
11212             "new byte[] { " ^ String.concat "," (
11213               map_chars (fun c -> string_of_int (Char.code c)) s
11214             ) ^ " }"
11215       ) args
11216     )
11217   in
11218
11219   generate_lang_bindtests (
11220     fun f args -> pr "            g.%s (%s);\n" f (mkargs args)
11221   );
11222
11223   pr "
11224             System.out.println (\"EOF\");
11225         }
11226         catch (Exception exn) {
11227             System.err.println (exn);
11228             System.exit (1);
11229         }
11230     }
11231 }
11232 "
11233
11234 and generate_haskell_bindtests () =
11235   generate_header HaskellStyle GPLv2plus;
11236
11237   pr "\
11238 module Bindtests where
11239 import qualified Guestfs
11240
11241 main = do
11242   g <- Guestfs.create
11243 ";
11244
11245   let mkargs args =
11246     String.concat " " (
11247       List.map (
11248         function
11249         | CallString s -> "\"" ^ s ^ "\""
11250         | CallOptString None -> "Nothing"
11251         | CallOptString (Some s) -> sprintf "(Just \"%s\")" s
11252         | CallStringList xs ->
11253             "[" ^ String.concat "," (List.map (sprintf "\"%s\"") xs) ^ "]"
11254         | CallInt i when i < 0 -> "(" ^ string_of_int i ^ ")"
11255         | CallInt i -> string_of_int i
11256         | CallInt64 i when i < 0L -> "(" ^ Int64.to_string i ^ ")"
11257         | CallInt64 i -> Int64.to_string i
11258         | CallBool true -> "True"
11259         | CallBool false -> "False"
11260         | CallBuffer s -> "\"" ^ c_quote s ^ "\""
11261       ) args
11262     )
11263   in
11264
11265   generate_lang_bindtests (
11266     fun f args -> pr "  Guestfs.%s g %s\n" f (mkargs args)
11267   );
11268
11269   pr "  putStrLn \"EOF\"\n"
11270
11271 (* Language-independent bindings tests - we do it this way to
11272  * ensure there is parity in testing bindings across all languages.
11273  *)
11274 and generate_lang_bindtests call =
11275   call "test0" [CallString "abc"; CallOptString (Some "def");
11276                 CallStringList []; CallBool false;
11277                 CallInt 0; CallInt64 0L; CallString "123"; CallString "456";
11278                 CallBuffer "abc\000abc"];
11279   call "test0" [CallString "abc"; CallOptString None;
11280                 CallStringList []; CallBool false;
11281                 CallInt 0; CallInt64 0L; CallString "123"; CallString "456";
11282                 CallBuffer "abc\000abc"];
11283   call "test0" [CallString ""; CallOptString (Some "def");
11284                 CallStringList []; CallBool false;
11285                 CallInt 0; CallInt64 0L; CallString "123"; CallString "456";
11286                 CallBuffer "abc\000abc"];
11287   call "test0" [CallString ""; CallOptString (Some "");
11288                 CallStringList []; CallBool false;
11289                 CallInt 0; CallInt64 0L; CallString "123"; CallString "456";
11290                 CallBuffer "abc\000abc"];
11291   call "test0" [CallString "abc"; CallOptString (Some "def");
11292                 CallStringList ["1"]; CallBool false;
11293                 CallInt 0; CallInt64 0L; CallString "123"; CallString "456";
11294                 CallBuffer "abc\000abc"];
11295   call "test0" [CallString "abc"; CallOptString (Some "def");
11296                 CallStringList ["1"; "2"]; CallBool false;
11297                 CallInt 0; CallInt64 0L; CallString "123"; CallString "456";
11298                 CallBuffer "abc\000abc"];
11299   call "test0" [CallString "abc"; CallOptString (Some "def");
11300                 CallStringList ["1"]; CallBool true;
11301                 CallInt 0; CallInt64 0L; CallString "123"; CallString "456";
11302                 CallBuffer "abc\000abc"];
11303   call "test0" [CallString "abc"; CallOptString (Some "def");
11304                 CallStringList ["1"]; CallBool false;
11305                 CallInt (-1); CallInt64 (-1L); CallString "123"; CallString "456";
11306                 CallBuffer "abc\000abc"];
11307   call "test0" [CallString "abc"; CallOptString (Some "def");
11308                 CallStringList ["1"]; CallBool false;
11309                 CallInt (-2); CallInt64 (-2L); CallString "123"; CallString "456";
11310                 CallBuffer "abc\000abc"];
11311   call "test0" [CallString "abc"; CallOptString (Some "def");
11312                 CallStringList ["1"]; CallBool false;
11313                 CallInt 1; CallInt64 1L; CallString "123"; CallString "456";
11314                 CallBuffer "abc\000abc"];
11315   call "test0" [CallString "abc"; CallOptString (Some "def");
11316                 CallStringList ["1"]; CallBool false;
11317                 CallInt 2; CallInt64 2L; CallString "123"; CallString "456";
11318                 CallBuffer "abc\000abc"];
11319   call "test0" [CallString "abc"; CallOptString (Some "def");
11320                 CallStringList ["1"]; CallBool false;
11321                 CallInt 4095; CallInt64 4095L; CallString "123"; CallString "456";
11322                 CallBuffer "abc\000abc"];
11323   call "test0" [CallString "abc"; CallOptString (Some "def");
11324                 CallStringList ["1"]; CallBool false;
11325                 CallInt 0; CallInt64 0L; CallString ""; CallString "";
11326                 CallBuffer "abc\000abc"]
11327
11328 (* XXX Add here tests of the return and error functions. *)
11329
11330 (* Code to generator bindings for virt-inspector.  Currently only
11331  * implemented for OCaml code (for virt-p2v 2.0).
11332  *)
11333 let rng_input = "inspector/virt-inspector.rng"
11334
11335 (* Read the input file and parse it into internal structures.  This is
11336  * by no means a complete RELAX NG parser, but is just enough to be
11337  * able to parse the specific input file.
11338  *)
11339 type rng =
11340   | Element of string * rng list        (* <element name=name/> *)
11341   | Attribute of string * rng list        (* <attribute name=name/> *)
11342   | Interleave of rng list                (* <interleave/> *)
11343   | ZeroOrMore of rng                        (* <zeroOrMore/> *)
11344   | OneOrMore of rng                        (* <oneOrMore/> *)
11345   | Optional of rng                        (* <optional/> *)
11346   | Choice of string list                (* <choice><value/>*</choice> *)
11347   | Value of string                        (* <value>str</value> *)
11348   | Text                                (* <text/> *)
11349
11350 let rec string_of_rng = function
11351   | Element (name, xs) ->
11352       "Element (\"" ^ name ^ "\", (" ^ string_of_rng_list xs ^ "))"
11353   | Attribute (name, xs) ->
11354       "Attribute (\"" ^ name ^ "\", (" ^ string_of_rng_list xs ^ "))"
11355   | Interleave xs -> "Interleave (" ^ string_of_rng_list xs ^ ")"
11356   | ZeroOrMore rng -> "ZeroOrMore (" ^ string_of_rng rng ^ ")"
11357   | OneOrMore rng -> "OneOrMore (" ^ string_of_rng rng ^ ")"
11358   | Optional rng -> "Optional (" ^ string_of_rng rng ^ ")"
11359   | Choice values -> "Choice [" ^ String.concat ", " values ^ "]"
11360   | Value value -> "Value \"" ^ value ^ "\""
11361   | Text -> "Text"
11362
11363 and string_of_rng_list xs =
11364   String.concat ", " (List.map string_of_rng xs)
11365
11366 let rec parse_rng ?defines context = function
11367   | [] -> []
11368   | Xml.Element ("element", ["name", name], children) :: rest ->
11369       Element (name, parse_rng ?defines context children)
11370       :: parse_rng ?defines context rest
11371   | Xml.Element ("attribute", ["name", name], children) :: rest ->
11372       Attribute (name, parse_rng ?defines context children)
11373       :: parse_rng ?defines context rest
11374   | Xml.Element ("interleave", [], children) :: rest ->
11375       Interleave (parse_rng ?defines context children)
11376       :: parse_rng ?defines context rest
11377   | Xml.Element ("zeroOrMore", [], [child]) :: rest ->
11378       let rng = parse_rng ?defines context [child] in
11379       (match rng with
11380        | [child] -> ZeroOrMore child :: parse_rng ?defines context rest
11381        | _ ->
11382            failwithf "%s: <zeroOrMore> contains more than one child element"
11383              context
11384       )
11385   | Xml.Element ("oneOrMore", [], [child]) :: rest ->
11386       let rng = parse_rng ?defines context [child] in
11387       (match rng with
11388        | [child] -> OneOrMore child :: parse_rng ?defines context rest
11389        | _ ->
11390            failwithf "%s: <oneOrMore> contains more than one child element"
11391              context
11392       )
11393   | Xml.Element ("optional", [], [child]) :: rest ->
11394       let rng = parse_rng ?defines context [child] in
11395       (match rng with
11396        | [child] -> Optional child :: parse_rng ?defines context rest
11397        | _ ->
11398            failwithf "%s: <optional> contains more than one child element"
11399              context
11400       )
11401   | Xml.Element ("choice", [], children) :: rest ->
11402       let values = List.map (
11403         function Xml.Element ("value", [], [Xml.PCData value]) -> value
11404         | _ ->
11405             failwithf "%s: can't handle anything except <value> in <choice>"
11406               context
11407       ) children in
11408       Choice values
11409       :: parse_rng ?defines context rest
11410   | Xml.Element ("value", [], [Xml.PCData value]) :: rest ->
11411       Value value :: parse_rng ?defines context rest
11412   | Xml.Element ("text", [], []) :: rest ->
11413       Text :: parse_rng ?defines context rest
11414   | Xml.Element ("ref", ["name", name], []) :: rest ->
11415       (* Look up the reference.  Because of limitations in this parser,
11416        * we can't handle arbitrarily nested <ref> yet.  You can only
11417        * use <ref> from inside <start>.
11418        *)
11419       (match defines with
11420        | None ->
11421            failwithf "%s: contains <ref>, but no refs are defined yet" context
11422        | Some map ->
11423            let rng = StringMap.find name map in
11424            rng @ parse_rng ?defines context rest
11425       )
11426   | x :: _ ->
11427       failwithf "%s: can't handle '%s' in schema" context (Xml.to_string x)
11428
11429 let grammar =
11430   let xml = Xml.parse_file rng_input in
11431   match xml with
11432   | Xml.Element ("grammar", _,
11433                  Xml.Element ("start", _, gram) :: defines) ->
11434       (* The <define/> elements are referenced in the <start> section,
11435        * so build a map of those first.
11436        *)
11437       let defines = List.fold_left (
11438         fun map ->
11439           function Xml.Element ("define", ["name", name], defn) ->
11440             StringMap.add name defn map
11441           | _ ->
11442               failwithf "%s: expected <define name=name/>" rng_input
11443       ) StringMap.empty defines in
11444       let defines = StringMap.mapi parse_rng defines in
11445
11446       (* Parse the <start> clause, passing the defines. *)
11447       parse_rng ~defines "<start>" gram
11448   | _ ->
11449       failwithf "%s: input is not <grammar><start/><define>*</grammar>"
11450         rng_input
11451
11452 let name_of_field = function
11453   | Element (name, _) | Attribute (name, _)
11454   | ZeroOrMore (Element (name, _))
11455   | OneOrMore (Element (name, _))
11456   | Optional (Element (name, _)) -> name
11457   | Optional (Attribute (name, _)) -> name
11458   | Text -> (* an unnamed field in an element *)
11459       "data"
11460   | rng ->
11461       failwithf "name_of_field failed at: %s" (string_of_rng rng)
11462
11463 (* At the moment this function only generates OCaml types.  However we
11464  * should parameterize it later so it can generate types/structs in a
11465  * variety of languages.
11466  *)
11467 let generate_types xs =
11468   (* A simple type is one that can be printed out directly, eg.
11469    * "string option".  A complex type is one which has a name and has
11470    * to be defined via another toplevel definition, eg. a struct.
11471    *
11472    * generate_type generates code for either simple or complex types.
11473    * In the simple case, it returns the string ("string option").  In
11474    * the complex case, it returns the name ("mountpoint").  In the
11475    * complex case it has to print out the definition before returning,
11476    * so it should only be called when we are at the beginning of a
11477    * new line (BOL context).
11478    *)
11479   let rec generate_type = function
11480     | Text ->                                (* string *)
11481         "string", true
11482     | Choice values ->                        (* [`val1|`val2|...] *)
11483         "[" ^ String.concat "|" (List.map ((^)"`") values) ^ "]", true
11484     | ZeroOrMore rng ->                        (* <rng> list *)
11485         let t, is_simple = generate_type rng in
11486         t ^ " list (* 0 or more *)", is_simple
11487     | OneOrMore rng ->                        (* <rng> list *)
11488         let t, is_simple = generate_type rng in
11489         t ^ " list (* 1 or more *)", is_simple
11490                                         (* virt-inspector hack: bool *)
11491     | Optional (Attribute (name, [Value "1"])) ->
11492         "bool", true
11493     | Optional rng ->                        (* <rng> list *)
11494         let t, is_simple = generate_type rng in
11495         t ^ " option", is_simple
11496                                         (* type name = { fields ... } *)
11497     | Element (name, fields) when is_attrs_interleave fields ->
11498         generate_type_struct name (get_attrs_interleave fields)
11499     | Element (name, [field])                (* type name = field *)
11500     | Attribute (name, [field]) ->
11501         let t, is_simple = generate_type field in
11502         if is_simple then (t, true)
11503         else (
11504           pr "type %s = %s\n" name t;
11505           name, false
11506         )
11507     | Element (name, fields) ->              (* type name = { fields ... } *)
11508         generate_type_struct name fields
11509     | rng ->
11510         failwithf "generate_type failed at: %s" (string_of_rng rng)
11511
11512   and is_attrs_interleave = function
11513     | [Interleave _] -> true
11514     | Attribute _ :: fields -> is_attrs_interleave fields
11515     | Optional (Attribute _) :: fields -> is_attrs_interleave fields
11516     | _ -> false
11517
11518   and get_attrs_interleave = function
11519     | [Interleave fields] -> fields
11520     | ((Attribute _) as field) :: fields
11521     | ((Optional (Attribute _)) as field) :: fields ->
11522         field :: get_attrs_interleave fields
11523     | _ -> assert false
11524
11525   and generate_types xs =
11526     List.iter (fun x -> ignore (generate_type x)) xs
11527
11528   and generate_type_struct name fields =
11529     (* Calculate the types of the fields first.  We have to do this
11530      * before printing anything so we are still in BOL context.
11531      *)
11532     let types = List.map fst (List.map generate_type fields) in
11533
11534     (* Special case of a struct containing just a string and another
11535      * field.  Turn it into an assoc list.
11536      *)
11537     match types with
11538     | ["string"; other] ->
11539         let fname1, fname2 =
11540           match fields with
11541           | [f1; f2] -> name_of_field f1, name_of_field f2
11542           | _ -> assert false in
11543         pr "type %s = string * %s (* %s -> %s *)\n" name other fname1 fname2;
11544         name, false
11545
11546     | types ->
11547         pr "type %s = {\n" name;
11548         List.iter (
11549           fun (field, ftype) ->
11550             let fname = name_of_field field in
11551             pr "  %s_%s : %s;\n" name fname ftype
11552         ) (List.combine fields types);
11553         pr "}\n";
11554         (* Return the name of this type, and
11555          * false because it's not a simple type.
11556          *)
11557         name, false
11558   in
11559
11560   generate_types xs
11561
11562 let generate_parsers xs =
11563   (* As for generate_type above, generate_parser makes a parser for
11564    * some type, and returns the name of the parser it has generated.
11565    * Because it (may) need to print something, it should always be
11566    * called in BOL context.
11567    *)
11568   let rec generate_parser = function
11569     | Text ->                                (* string *)
11570         "string_child_or_empty"
11571     | Choice values ->                        (* [`val1|`val2|...] *)
11572         sprintf "(fun x -> match Xml.pcdata (first_child x) with %s | str -> failwith (\"unexpected field value: \" ^ str))"
11573           (String.concat "|"
11574              (List.map (fun v -> sprintf "%S -> `%s" v v) values))
11575     | ZeroOrMore rng ->                        (* <rng> list *)
11576         let pa = generate_parser rng in
11577         sprintf "(fun x -> List.map %s (Xml.children x))" pa
11578     | OneOrMore rng ->                        (* <rng> list *)
11579         let pa = generate_parser rng in
11580         sprintf "(fun x -> List.map %s (Xml.children x))" pa
11581                                         (* virt-inspector hack: bool *)
11582     | Optional (Attribute (name, [Value "1"])) ->
11583         sprintf "(fun x -> try ignore (Xml.attrib x %S); true with Xml.No_attribute _ -> false)" name
11584     | Optional rng ->                        (* <rng> list *)
11585         let pa = generate_parser rng in
11586         sprintf "(function None -> None | Some x -> Some (%s x))" pa
11587                                         (* type name = { fields ... } *)
11588     | Element (name, fields) when is_attrs_interleave fields ->
11589         generate_parser_struct name (get_attrs_interleave fields)
11590     | Element (name, [field]) ->        (* type name = field *)
11591         let pa = generate_parser field in
11592         let parser_name = sprintf "parse_%s_%d" name (unique ()) in
11593         pr "let %s =\n" parser_name;
11594         pr "  %s\n" pa;
11595         pr "let parse_%s = %s\n" name parser_name;
11596         parser_name
11597     | Attribute (name, [field]) ->
11598         let pa = generate_parser field in
11599         let parser_name = sprintf "parse_%s_%d" name (unique ()) in
11600         pr "let %s =\n" parser_name;
11601         pr "  %s\n" pa;
11602         pr "let parse_%s = %s\n" name parser_name;
11603         parser_name
11604     | Element (name, fields) ->              (* type name = { fields ... } *)
11605         generate_parser_struct name ([], fields)
11606     | rng ->
11607         failwithf "generate_parser failed at: %s" (string_of_rng rng)
11608
11609   and is_attrs_interleave = function
11610     | [Interleave _] -> true
11611     | Attribute _ :: fields -> is_attrs_interleave fields
11612     | Optional (Attribute _) :: fields -> is_attrs_interleave fields
11613     | _ -> false
11614
11615   and get_attrs_interleave = function
11616     | [Interleave fields] -> [], fields
11617     | ((Attribute _) as field) :: fields
11618     | ((Optional (Attribute _)) as field) :: fields ->
11619         let attrs, interleaves = get_attrs_interleave fields in
11620         (field :: attrs), interleaves
11621     | _ -> assert false
11622
11623   and generate_parsers xs =
11624     List.iter (fun x -> ignore (generate_parser x)) xs
11625
11626   and generate_parser_struct name (attrs, interleaves) =
11627     (* Generate parsers for the fields first.  We have to do this
11628      * before printing anything so we are still in BOL context.
11629      *)
11630     let fields = attrs @ interleaves in
11631     let pas = List.map generate_parser fields in
11632
11633     (* Generate an intermediate tuple from all the fields first.
11634      * If the type is just a string + another field, then we will
11635      * return this directly, otherwise it is turned into a record.
11636      *
11637      * RELAX NG note: This code treats <interleave> and plain lists of
11638      * fields the same.  In other words, it doesn't bother enforcing
11639      * any ordering of fields in the XML.
11640      *)
11641     pr "let parse_%s x =\n" name;
11642     pr "  let t = (\n    ";
11643     let comma = ref false in
11644     List.iter (
11645       fun x ->
11646         if !comma then pr ",\n    ";
11647         comma := true;
11648         match x with
11649         | Optional (Attribute (fname, [field])), pa ->
11650             pr "%s x" pa
11651         | Optional (Element (fname, [field])), pa ->
11652             pr "%s (optional_child %S x)" pa fname
11653         | Attribute (fname, [Text]), _ ->
11654             pr "attribute %S x" fname
11655         | (ZeroOrMore _ | OneOrMore _), pa ->
11656             pr "%s x" pa
11657         | Text, pa ->
11658             pr "%s x" pa
11659         | (field, pa) ->
11660             let fname = name_of_field field in
11661             pr "%s (child %S x)" pa fname
11662     ) (List.combine fields pas);
11663     pr "\n  ) in\n";
11664
11665     (match fields with
11666      | [Element (_, [Text]) | Attribute (_, [Text]); _] ->
11667          pr "  t\n"
11668
11669      | _ ->
11670          pr "  (Obj.magic t : %s)\n" name
11671 (*
11672          List.iter (
11673            function
11674            | (Optional (Attribute (fname, [field])), pa) ->
11675                pr "  %s_%s =\n" name fname;
11676                pr "    %s x;\n" pa
11677            | (Optional (Element (fname, [field])), pa) ->
11678                pr "  %s_%s =\n" name fname;
11679                pr "    (let x = optional_child %S x in\n" fname;
11680                pr "     %s x);\n" pa
11681            | (field, pa) ->
11682                let fname = name_of_field field in
11683                pr "  %s_%s =\n" name fname;
11684                pr "    (let x = child %S x in\n" fname;
11685                pr "     %s x);\n" pa
11686          ) (List.combine fields pas);
11687          pr "}\n"
11688 *)
11689     );
11690     sprintf "parse_%s" name
11691   in
11692
11693   generate_parsers xs
11694
11695 (* Generate ocaml/guestfs_inspector.mli. *)
11696 let generate_ocaml_inspector_mli () =
11697   generate_header ~extra_inputs:[rng_input] OCamlStyle LGPLv2plus;
11698
11699   pr "\
11700 (** This is an OCaml language binding to the external [virt-inspector]
11701     program.
11702
11703     For more information, please read the man page [virt-inspector(1)].
11704 *)
11705
11706 ";
11707
11708   generate_types grammar;
11709   pr "(** The nested information returned from the {!inspect} function. *)\n";
11710   pr "\n";
11711
11712   pr "\
11713 val inspect : ?connect:string -> ?xml:string -> string list -> operatingsystems
11714 (** To inspect a libvirt domain called [name], pass a singleton
11715     list: [inspect [name]].  When using libvirt only, you may
11716     optionally pass a libvirt URI using [inspect ~connect:uri ...].
11717
11718     To inspect a disk image or images, pass a list of the filenames
11719     of the disk images: [inspect filenames]
11720
11721     This function inspects the given guest or disk images and
11722     returns a list of operating system(s) found and a large amount
11723     of information about them.  In the vast majority of cases,
11724     a virtual machine only contains a single operating system.
11725
11726     If the optional [~xml] parameter is given, then this function
11727     skips running the external virt-inspector program and just
11728     parses the given XML directly (which is expected to be XML
11729     produced from a previous run of virt-inspector).  The list of
11730     names and connect URI are ignored in this case.
11731
11732     This function can throw a wide variety of exceptions, for example
11733     if the external virt-inspector program cannot be found, or if
11734     it doesn't generate valid XML.
11735 *)
11736 "
11737
11738 (* Generate ocaml/guestfs_inspector.ml. *)
11739 let generate_ocaml_inspector_ml () =
11740   generate_header ~extra_inputs:[rng_input] OCamlStyle LGPLv2plus;
11741
11742   pr "open Unix\n";
11743   pr "\n";
11744
11745   generate_types grammar;
11746   pr "\n";
11747
11748   pr "\
11749 (* Misc functions which are used by the parser code below. *)
11750 let first_child = function
11751   | Xml.Element (_, _, c::_) -> c
11752   | Xml.Element (name, _, []) ->
11753       failwith (\"expected <\" ^ name ^ \"/> to have a child node\")
11754   | Xml.PCData str ->
11755       failwith (\"expected XML tag, but read PCDATA '\" ^ str ^ \"' instead\")
11756
11757 let string_child_or_empty = function
11758   | Xml.Element (_, _, [Xml.PCData s]) -> s
11759   | Xml.Element (_, _, []) -> \"\"
11760   | Xml.Element (x, _, _) ->
11761       failwith (\"expected XML tag with a single PCDATA child, but got \" ^
11762                 x ^ \" instead\")
11763   | Xml.PCData str ->
11764       failwith (\"expected XML tag, but read PCDATA '\" ^ str ^ \"' instead\")
11765
11766 let optional_child name xml =
11767   let children = Xml.children xml in
11768   try
11769     Some (List.find (function
11770                      | Xml.Element (n, _, _) when n = name -> true
11771                      | _ -> false) children)
11772   with
11773     Not_found -> None
11774
11775 let child name xml =
11776   match optional_child name xml with
11777   | Some c -> c
11778   | None ->
11779       failwith (\"mandatory field <\" ^ name ^ \"/> missing in XML output\")
11780
11781 let attribute name xml =
11782   try Xml.attrib xml name
11783   with Xml.No_attribute _ ->
11784     failwith (\"mandatory attribute \" ^ name ^ \" missing in XML output\")
11785
11786 ";
11787
11788   generate_parsers grammar;
11789   pr "\n";
11790
11791   pr "\
11792 (* Run external virt-inspector, then use parser to parse the XML. *)
11793 let inspect ?connect ?xml names =
11794   let xml =
11795     match xml with
11796     | None ->
11797         if names = [] then invalid_arg \"inspect: no names given\";
11798         let cmd = [ \"virt-inspector\"; \"--xml\" ] @
11799           (match connect with None -> [] | Some uri -> [ \"--connect\"; uri ]) @
11800           names in
11801         let cmd = List.map Filename.quote cmd in
11802         let cmd = String.concat \" \" cmd in
11803         let chan = open_process_in cmd in
11804         let xml = Xml.parse_in chan in
11805         (match close_process_in chan with
11806          | WEXITED 0 -> ()
11807          | WEXITED _ -> failwith \"external virt-inspector command failed\"
11808          | WSIGNALED i | WSTOPPED i ->
11809              failwith (\"external virt-inspector command died or stopped on sig \" ^
11810                        string_of_int i)
11811         );
11812         xml
11813     | Some doc ->
11814         Xml.parse_string doc in
11815   parse_operatingsystems xml
11816 "
11817
11818 and generate_max_proc_nr () =
11819   pr "%d\n" max_proc_nr
11820
11821 let output_to filename k =
11822   let filename_new = filename ^ ".new" in
11823   chan := open_out filename_new;
11824   k ();
11825   close_out !chan;
11826   chan := Pervasives.stdout;
11827
11828   (* Is the new file different from the current file? *)
11829   if Sys.file_exists filename && files_equal filename filename_new then
11830     unlink filename_new                 (* same, so skip it *)
11831   else (
11832     (* different, overwrite old one *)
11833     (try chmod filename 0o644 with Unix_error _ -> ());
11834     rename filename_new filename;
11835     chmod filename 0o444;
11836     printf "written %s\n%!" filename;
11837   )
11838
11839 let perror msg = function
11840   | Unix_error (err, _, _) ->
11841       eprintf "%s: %s\n" msg (error_message err)
11842   | exn ->
11843       eprintf "%s: %s\n" msg (Printexc.to_string exn)
11844
11845 (* Main program. *)
11846 let () =
11847   let lock_fd =
11848     try openfile "HACKING" [O_RDWR] 0
11849     with
11850     | Unix_error (ENOENT, _, _) ->
11851         eprintf "\
11852 You are probably running this from the wrong directory.
11853 Run it from the top source directory using the command
11854   src/generator.ml
11855 ";
11856         exit 1
11857     | exn ->
11858         perror "open: HACKING" exn;
11859         exit 1 in
11860
11861   (* Acquire a lock so parallel builds won't try to run the generator
11862    * twice at the same time.  Subsequent builds will wait for the first
11863    * one to finish.  Note the lock is released implicitly when the
11864    * program exits.
11865    *)
11866   (try lockf lock_fd F_LOCK 1
11867    with exn ->
11868      perror "lock: HACKING" exn;
11869      exit 1);
11870
11871   check_functions ();
11872
11873   output_to "src/guestfs_protocol.x" generate_xdr;
11874   output_to "src/guestfs-structs.h" generate_structs_h;
11875   output_to "src/guestfs-actions.h" generate_actions_h;
11876   output_to "src/guestfs-internal-actions.h" generate_internal_actions_h;
11877   output_to "src/guestfs-actions.c" generate_client_actions;
11878   output_to "src/guestfs-bindtests.c" generate_bindtests;
11879   output_to "src/guestfs-structs.pod" generate_structs_pod;
11880   output_to "src/guestfs-actions.pod" generate_actions_pod;
11881   output_to "src/guestfs-availability.pod" generate_availability_pod;
11882   output_to "src/MAX_PROC_NR" generate_max_proc_nr;
11883   output_to "src/libguestfs.syms" generate_linker_script;
11884   output_to "daemon/actions.h" generate_daemon_actions_h;
11885   output_to "daemon/stubs.c" generate_daemon_actions;
11886   output_to "daemon/names.c" generate_daemon_names;
11887   output_to "daemon/optgroups.c" generate_daemon_optgroups_c;
11888   output_to "daemon/optgroups.h" generate_daemon_optgroups_h;
11889   output_to "capitests/tests.c" generate_tests;
11890   output_to "fish/cmds.c" generate_fish_cmds;
11891   output_to "fish/completion.c" generate_fish_completion;
11892   output_to "fish/guestfish-actions.pod" generate_fish_actions_pod;
11893   output_to "ocaml/guestfs.mli" generate_ocaml_mli;
11894   output_to "ocaml/guestfs.ml" generate_ocaml_ml;
11895   output_to "ocaml/guestfs_c_actions.c" generate_ocaml_c;
11896   output_to "ocaml/bindtests.ml" generate_ocaml_bindtests;
11897   output_to "ocaml/guestfs_inspector.mli" generate_ocaml_inspector_mli;
11898   output_to "ocaml/guestfs_inspector.ml" generate_ocaml_inspector_ml;
11899   output_to "perl/Guestfs.xs" generate_perl_xs;
11900   output_to "perl/lib/Sys/Guestfs.pm" generate_perl_pm;
11901   output_to "perl/bindtests.pl" generate_perl_bindtests;
11902   output_to "python/guestfs-py.c" generate_python_c;
11903   output_to "python/guestfs.py" generate_python_py;
11904   output_to "python/bindtests.py" generate_python_bindtests;
11905   output_to "ruby/ext/guestfs/_guestfs.c" generate_ruby_c;
11906   output_to "ruby/bindtests.rb" generate_ruby_bindtests;
11907   output_to "java/com/redhat/et/libguestfs/GuestFS.java" generate_java_java;
11908
11909   List.iter (
11910     fun (typ, jtyp) ->
11911       let cols = cols_of_struct typ in
11912       let filename = sprintf "java/com/redhat/et/libguestfs/%s.java" jtyp in
11913       output_to filename (generate_java_struct jtyp cols);
11914   ) java_structs;
11915
11916   output_to "java/Makefile.inc" generate_java_makefile_inc;
11917   output_to "java/com_redhat_et_libguestfs_GuestFS.c" generate_java_c;
11918   output_to "java/Bindtests.java" generate_java_bindtests;
11919   output_to "haskell/Guestfs.hs" generate_haskell_hs;
11920   output_to "haskell/Bindtests.hs" generate_haskell_bindtests;
11921   output_to "csharp/Libguestfs.cs" generate_csharp;
11922
11923   (* Always generate this file last, and unconditionally.  It's used
11924    * by the Makefile to know when we must re-run the generator.
11925    *)
11926   let chan = open_out "src/stamp-generator" in
11927   fprintf chan "1\n";
11928   close_out chan;
11929
11930   printf "generated %d lines of code\n" !lines